Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (C) 2010 Red Hat, Inc.
   4 * Copyright (C) 2016-2023 Christoph Hellwig.
   5 */
   6#include <linux/module.h>
   7#include <linux/compiler.h>
   8#include <linux/fs.h>
   9#include <linux/iomap.h>
  10#include <linux/pagemap.h>
  11#include <linux/uio.h>
  12#include <linux/buffer_head.h>
  13#include <linux/dax.h>
  14#include <linux/writeback.h>
  15#include <linux/list_sort.h>
  16#include <linux/swap.h>
  17#include <linux/bio.h>
  18#include <linux/sched/signal.h>
  19#include <linux/migrate.h>
  20#include "trace.h"
  21
  22#include "../internal.h"
  23
  24#define IOEND_BATCH_SIZE	4096
  25
  26/*
  27 * Structure allocated for each folio to track per-block uptodate, dirty state
  28 * and I/O completions.
  29 */
  30struct iomap_folio_state {
  31	spinlock_t		state_lock;
  32	unsigned int		read_bytes_pending;
  33	atomic_t		write_bytes_pending;
  34
  35	/*
  36	 * Each block has two bits in this bitmap:
  37	 * Bits [0..blocks_per_folio) has the uptodate status.
  38	 * Bits [b_p_f...(2*b_p_f))   has the dirty status.
  39	 */
  40	unsigned long		state[];
  41};
  42
  43static struct bio_set iomap_ioend_bioset;
  44
  45static inline bool ifs_is_fully_uptodate(struct folio *folio,
  46		struct iomap_folio_state *ifs)
  47{
  48	struct inode *inode = folio->mapping->host;
  49
  50	return bitmap_full(ifs->state, i_blocks_per_folio(inode, folio));
  51}
  52
  53static inline bool ifs_block_is_uptodate(struct iomap_folio_state *ifs,
  54		unsigned int block)
  55{
  56	return test_bit(block, ifs->state);
  57}
  58
  59static bool ifs_set_range_uptodate(struct folio *folio,
  60		struct iomap_folio_state *ifs, size_t off, size_t len)
  61{
  62	struct inode *inode = folio->mapping->host;
  63	unsigned int first_blk = off >> inode->i_blkbits;
  64	unsigned int last_blk = (off + len - 1) >> inode->i_blkbits;
  65	unsigned int nr_blks = last_blk - first_blk + 1;
  66
  67	bitmap_set(ifs->state, first_blk, nr_blks);
  68	return ifs_is_fully_uptodate(folio, ifs);
  69}
  70
  71static void iomap_set_range_uptodate(struct folio *folio, size_t off,
  72		size_t len)
  73{
  74	struct iomap_folio_state *ifs = folio->private;
  75	unsigned long flags;
  76	bool uptodate = true;
  77
  78	if (ifs) {
  79		spin_lock_irqsave(&ifs->state_lock, flags);
  80		uptodate = ifs_set_range_uptodate(folio, ifs, off, len);
  81		spin_unlock_irqrestore(&ifs->state_lock, flags);
  82	}
  83
  84	if (uptodate)
  85		folio_mark_uptodate(folio);
  86}
  87
  88static inline bool ifs_block_is_dirty(struct folio *folio,
  89		struct iomap_folio_state *ifs, int block)
  90{
  91	struct inode *inode = folio->mapping->host;
  92	unsigned int blks_per_folio = i_blocks_per_folio(inode, folio);
  93
  94	return test_bit(block + blks_per_folio, ifs->state);
  95}
  96
  97static unsigned ifs_find_dirty_range(struct folio *folio,
  98		struct iomap_folio_state *ifs, u64 *range_start, u64 range_end)
  99{
 100	struct inode *inode = folio->mapping->host;
 101	unsigned start_blk =
 102		offset_in_folio(folio, *range_start) >> inode->i_blkbits;
 103	unsigned end_blk = min_not_zero(
 104		offset_in_folio(folio, range_end) >> inode->i_blkbits,
 105		i_blocks_per_folio(inode, folio));
 106	unsigned nblks = 1;
 107
 108	while (!ifs_block_is_dirty(folio, ifs, start_blk))
 109		if (++start_blk == end_blk)
 110			return 0;
 111
 112	while (start_blk + nblks < end_blk) {
 113		if (!ifs_block_is_dirty(folio, ifs, start_blk + nblks))
 114			break;
 115		nblks++;
 116	}
 117
 118	*range_start = folio_pos(folio) + (start_blk << inode->i_blkbits);
 119	return nblks << inode->i_blkbits;
 120}
 121
 122static unsigned iomap_find_dirty_range(struct folio *folio, u64 *range_start,
 123		u64 range_end)
 124{
 125	struct iomap_folio_state *ifs = folio->private;
 126
 127	if (*range_start >= range_end)
 128		return 0;
 129
 130	if (ifs)
 131		return ifs_find_dirty_range(folio, ifs, range_start, range_end);
 132	return range_end - *range_start;
 133}
 134
 135static void ifs_clear_range_dirty(struct folio *folio,
 136		struct iomap_folio_state *ifs, size_t off, size_t len)
 137{
 138	struct inode *inode = folio->mapping->host;
 139	unsigned int blks_per_folio = i_blocks_per_folio(inode, folio);
 140	unsigned int first_blk = (off >> inode->i_blkbits);
 141	unsigned int last_blk = (off + len - 1) >> inode->i_blkbits;
 142	unsigned int nr_blks = last_blk - first_blk + 1;
 143	unsigned long flags;
 144
 145	spin_lock_irqsave(&ifs->state_lock, flags);
 146	bitmap_clear(ifs->state, first_blk + blks_per_folio, nr_blks);
 147	spin_unlock_irqrestore(&ifs->state_lock, flags);
 148}
 149
 150static void iomap_clear_range_dirty(struct folio *folio, size_t off, size_t len)
 151{
 152	struct iomap_folio_state *ifs = folio->private;
 153
 154	if (ifs)
 155		ifs_clear_range_dirty(folio, ifs, off, len);
 156}
 157
 158static void ifs_set_range_dirty(struct folio *folio,
 159		struct iomap_folio_state *ifs, size_t off, size_t len)
 160{
 161	struct inode *inode = folio->mapping->host;
 162	unsigned int blks_per_folio = i_blocks_per_folio(inode, folio);
 163	unsigned int first_blk = (off >> inode->i_blkbits);
 164	unsigned int last_blk = (off + len - 1) >> inode->i_blkbits;
 165	unsigned int nr_blks = last_blk - first_blk + 1;
 166	unsigned long flags;
 167
 168	spin_lock_irqsave(&ifs->state_lock, flags);
 169	bitmap_set(ifs->state, first_blk + blks_per_folio, nr_blks);
 170	spin_unlock_irqrestore(&ifs->state_lock, flags);
 171}
 172
 173static void iomap_set_range_dirty(struct folio *folio, size_t off, size_t len)
 174{
 175	struct iomap_folio_state *ifs = folio->private;
 176
 177	if (ifs)
 178		ifs_set_range_dirty(folio, ifs, off, len);
 179}
 180
 181static struct iomap_folio_state *ifs_alloc(struct inode *inode,
 182		struct folio *folio, unsigned int flags)
 183{
 184	struct iomap_folio_state *ifs = folio->private;
 185	unsigned int nr_blocks = i_blocks_per_folio(inode, folio);
 186	gfp_t gfp;
 187
 188	if (ifs || nr_blocks <= 1)
 189		return ifs;
 190
 191	if (flags & IOMAP_NOWAIT)
 192		gfp = GFP_NOWAIT;
 193	else
 194		gfp = GFP_NOFS | __GFP_NOFAIL;
 195
 196	/*
 197	 * ifs->state tracks two sets of state flags when the
 198	 * filesystem block size is smaller than the folio size.
 199	 * The first state tracks per-block uptodate and the
 200	 * second tracks per-block dirty state.
 201	 */
 202	ifs = kzalloc(struct_size(ifs, state,
 203		      BITS_TO_LONGS(2 * nr_blocks)), gfp);
 204	if (!ifs)
 205		return ifs;
 206
 207	spin_lock_init(&ifs->state_lock);
 208	if (folio_test_uptodate(folio))
 209		bitmap_set(ifs->state, 0, nr_blocks);
 210	if (folio_test_dirty(folio))
 211		bitmap_set(ifs->state, nr_blocks, nr_blocks);
 212	folio_attach_private(folio, ifs);
 213
 214	return ifs;
 215}
 216
 217static void ifs_free(struct folio *folio)
 218{
 219	struct iomap_folio_state *ifs = folio_detach_private(folio);
 
 
 220
 221	if (!ifs)
 222		return;
 223	WARN_ON_ONCE(ifs->read_bytes_pending != 0);
 224	WARN_ON_ONCE(atomic_read(&ifs->write_bytes_pending));
 225	WARN_ON_ONCE(ifs_is_fully_uptodate(folio, ifs) !=
 226			folio_test_uptodate(folio));
 227	kfree(ifs);
 228}
 229
 230/*
 231 * Calculate the range inside the folio that we actually need to read.
 232 */
 233static void iomap_adjust_read_range(struct inode *inode, struct folio *folio,
 234		loff_t *pos, loff_t length, size_t *offp, size_t *lenp)
 235{
 236	struct iomap_folio_state *ifs = folio->private;
 237	loff_t orig_pos = *pos;
 238	loff_t isize = i_size_read(inode);
 239	unsigned block_bits = inode->i_blkbits;
 240	unsigned block_size = (1 << block_bits);
 241	size_t poff = offset_in_folio(folio, *pos);
 242	size_t plen = min_t(loff_t, folio_size(folio) - poff, length);
 243	size_t orig_plen = plen;
 244	unsigned first = poff >> block_bits;
 245	unsigned last = (poff + plen - 1) >> block_bits;
 246
 247	/*
 248	 * If the block size is smaller than the page size, we need to check the
 249	 * per-block uptodate status and adjust the offset and length if needed
 250	 * to avoid reading in already uptodate ranges.
 251	 */
 252	if (ifs) {
 253		unsigned int i;
 254
 255		/* move forward for each leading block marked uptodate */
 256		for (i = first; i <= last; i++) {
 257			if (!ifs_block_is_uptodate(ifs, i))
 258				break;
 259			*pos += block_size;
 260			poff += block_size;
 261			plen -= block_size;
 262			first++;
 263		}
 264
 265		/* truncate len if we find any trailing uptodate block(s) */
 266		for ( ; i <= last; i++) {
 267			if (ifs_block_is_uptodate(ifs, i)) {
 268				plen -= (last - i + 1) * block_size;
 269				last = i - 1;
 270				break;
 271			}
 272		}
 273	}
 274
 275	/*
 276	 * If the extent spans the block that contains the i_size, we need to
 277	 * handle both halves separately so that we properly zero data in the
 278	 * page cache for blocks that are entirely outside of i_size.
 279	 */
 280	if (orig_pos <= isize && orig_pos + orig_plen > isize) {
 281		unsigned end = offset_in_folio(folio, isize - 1) >> block_bits;
 282
 283		if (first <= end && last > end)
 284			plen -= (last - end) * block_size;
 285	}
 286
 287	*offp = poff;
 288	*lenp = plen;
 289}
 290
 291static void iomap_finish_folio_read(struct folio *folio, size_t off,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 292		size_t len, int error)
 293{
 294	struct iomap_folio_state *ifs = folio->private;
 295	bool uptodate = !error;
 296	bool finished = true;
 297
 298	if (ifs) {
 299		unsigned long flags;
 300
 301		spin_lock_irqsave(&ifs->state_lock, flags);
 302		if (!error)
 303			uptodate = ifs_set_range_uptodate(folio, ifs, off, len);
 304		ifs->read_bytes_pending -= len;
 305		finished = !ifs->read_bytes_pending;
 306		spin_unlock_irqrestore(&ifs->state_lock, flags);
 307	}
 308
 309	if (finished)
 310		folio_end_read(folio, uptodate);
 311}
 312
 313static void iomap_read_end_io(struct bio *bio)
 314{
 315	int error = blk_status_to_errno(bio->bi_status);
 316	struct folio_iter fi;
 317
 318	bio_for_each_folio_all(fi, bio)
 319		iomap_finish_folio_read(fi.folio, fi.offset, fi.length, error);
 320	bio_put(bio);
 321}
 322
 323struct iomap_readpage_ctx {
 324	struct folio		*cur_folio;
 325	bool			cur_folio_in_bio;
 326	struct bio		*bio;
 327	struct readahead_control *rac;
 328};
 329
 330/**
 331 * iomap_read_inline_data - copy inline data into the page cache
 332 * @iter: iteration structure
 333 * @folio: folio to copy to
 334 *
 335 * Copy the inline data in @iter into @folio and zero out the rest of the folio.
 336 * Only a single IOMAP_INLINE extent is allowed at the end of each file.
 337 * Returns zero for success to complete the read, or the usual negative errno.
 338 */
 339static int iomap_read_inline_data(const struct iomap_iter *iter,
 340		struct folio *folio)
 341{
 
 342	const struct iomap *iomap = iomap_iter_srcmap(iter);
 343	size_t size = i_size_read(iter->inode) - iomap->offset;
 
 344	size_t offset = offset_in_folio(folio, iomap->offset);
 
 345
 346	if (folio_test_uptodate(folio))
 347		return 0;
 348
 
 
 
 
 
 349	if (WARN_ON_ONCE(size > iomap->length))
 350		return -EIO;
 351	if (offset > 0)
 352		ifs_alloc(iter->inode, folio, iter->flags);
 
 
 353
 354	folio_fill_tail(folio, offset, iomap->inline_data, size);
 355	iomap_set_range_uptodate(folio, offset, folio_size(folio) - offset);
 
 
 
 356	return 0;
 357}
 358
 359static inline bool iomap_block_needs_zeroing(const struct iomap_iter *iter,
 360		loff_t pos)
 361{
 362	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 363
 364	return srcmap->type != IOMAP_MAPPED ||
 365		(srcmap->flags & IOMAP_F_NEW) ||
 366		pos >= i_size_read(iter->inode);
 367}
 368
 369static loff_t iomap_readpage_iter(const struct iomap_iter *iter,
 370		struct iomap_readpage_ctx *ctx, loff_t offset)
 371{
 372	const struct iomap *iomap = &iter->iomap;
 373	loff_t pos = iter->pos + offset;
 374	loff_t length = iomap_length(iter) - offset;
 375	struct folio *folio = ctx->cur_folio;
 376	struct iomap_folio_state *ifs;
 377	loff_t orig_pos = pos;
 378	size_t poff, plen;
 379	sector_t sector;
 380
 381	if (iomap->type == IOMAP_INLINE)
 382		return iomap_read_inline_data(iter, folio);
 383
 384	/* zero post-eof blocks as the page may be mapped */
 385	ifs = ifs_alloc(iter->inode, folio, iter->flags);
 386	iomap_adjust_read_range(iter->inode, folio, &pos, length, &poff, &plen);
 387	if (plen == 0)
 388		goto done;
 389
 390	if (iomap_block_needs_zeroing(iter, pos)) {
 391		folio_zero_range(folio, poff, plen);
 392		iomap_set_range_uptodate(folio, poff, plen);
 393		goto done;
 394	}
 395
 396	ctx->cur_folio_in_bio = true;
 397	if (ifs) {
 398		spin_lock_irq(&ifs->state_lock);
 399		ifs->read_bytes_pending += plen;
 400		spin_unlock_irq(&ifs->state_lock);
 401	}
 402
 403	sector = iomap_sector(iomap, pos);
 404	if (!ctx->bio ||
 405	    bio_end_sector(ctx->bio) != sector ||
 406	    !bio_add_folio(ctx->bio, folio, plen, poff)) {
 407		gfp_t gfp = mapping_gfp_constraint(folio->mapping, GFP_KERNEL);
 408		gfp_t orig_gfp = gfp;
 409		unsigned int nr_vecs = DIV_ROUND_UP(length, PAGE_SIZE);
 410
 411		if (ctx->bio)
 412			submit_bio(ctx->bio);
 413
 414		if (ctx->rac) /* same as readahead_gfp_mask */
 415			gfp |= __GFP_NORETRY | __GFP_NOWARN;
 416		ctx->bio = bio_alloc(iomap->bdev, bio_max_segs(nr_vecs),
 417				     REQ_OP_READ, gfp);
 418		/*
 419		 * If the bio_alloc fails, try it again for a single page to
 420		 * avoid having to deal with partial page reads.  This emulates
 421		 * what do_mpage_read_folio does.
 422		 */
 423		if (!ctx->bio) {
 424			ctx->bio = bio_alloc(iomap->bdev, 1, REQ_OP_READ,
 425					     orig_gfp);
 426		}
 427		if (ctx->rac)
 428			ctx->bio->bi_opf |= REQ_RAHEAD;
 429		ctx->bio->bi_iter.bi_sector = sector;
 430		ctx->bio->bi_end_io = iomap_read_end_io;
 431		bio_add_folio_nofail(ctx->bio, folio, plen, poff);
 432	}
 433
 434done:
 435	/*
 436	 * Move the caller beyond our range so that it keeps making progress.
 437	 * For that, we have to include any leading non-uptodate ranges, but
 438	 * we can skip trailing ones as they will be handled in the next
 439	 * iteration.
 440	 */
 441	return pos - orig_pos + plen;
 442}
 443
 444static loff_t iomap_read_folio_iter(const struct iomap_iter *iter,
 445		struct iomap_readpage_ctx *ctx)
 446{
 447	struct folio *folio = ctx->cur_folio;
 448	size_t offset = offset_in_folio(folio, iter->pos);
 449	loff_t length = min_t(loff_t, folio_size(folio) - offset,
 450			      iomap_length(iter));
 451	loff_t done, ret;
 452
 453	for (done = 0; done < length; done += ret) {
 454		ret = iomap_readpage_iter(iter, ctx, done);
 455		if (ret <= 0)
 456			return ret;
 457	}
 458
 459	return done;
 460}
 461
 462int iomap_read_folio(struct folio *folio, const struct iomap_ops *ops)
 463{
 464	struct iomap_iter iter = {
 465		.inode		= folio->mapping->host,
 466		.pos		= folio_pos(folio),
 467		.len		= folio_size(folio),
 468	};
 469	struct iomap_readpage_ctx ctx = {
 470		.cur_folio	= folio,
 471	};
 472	int ret;
 473
 474	trace_iomap_readpage(iter.inode, 1);
 475
 476	while ((ret = iomap_iter(&iter, ops)) > 0)
 477		iter.processed = iomap_read_folio_iter(&iter, &ctx);
 
 
 
 478
 479	if (ctx.bio) {
 480		submit_bio(ctx.bio);
 481		WARN_ON_ONCE(!ctx.cur_folio_in_bio);
 482	} else {
 483		WARN_ON_ONCE(ctx.cur_folio_in_bio);
 484		folio_unlock(folio);
 485	}
 486
 487	/*
 488	 * Just like mpage_readahead and block_read_full_folio, we always
 489	 * return 0 and just set the folio error flag on errors.  This
 490	 * should be cleaned up throughout the stack eventually.
 491	 */
 492	return 0;
 493}
 494EXPORT_SYMBOL_GPL(iomap_read_folio);
 495
 496static loff_t iomap_readahead_iter(const struct iomap_iter *iter,
 497		struct iomap_readpage_ctx *ctx)
 498{
 499	loff_t length = iomap_length(iter);
 500	loff_t done, ret;
 501
 502	for (done = 0; done < length; done += ret) {
 503		if (ctx->cur_folio &&
 504		    offset_in_folio(ctx->cur_folio, iter->pos + done) == 0) {
 505			if (!ctx->cur_folio_in_bio)
 506				folio_unlock(ctx->cur_folio);
 507			ctx->cur_folio = NULL;
 508		}
 509		if (!ctx->cur_folio) {
 510			ctx->cur_folio = readahead_folio(ctx->rac);
 511			ctx->cur_folio_in_bio = false;
 512		}
 513		ret = iomap_readpage_iter(iter, ctx, done);
 514		if (ret <= 0)
 515			return ret;
 516	}
 517
 518	return done;
 519}
 520
 521/**
 522 * iomap_readahead - Attempt to read pages from a file.
 523 * @rac: Describes the pages to be read.
 524 * @ops: The operations vector for the filesystem.
 525 *
 526 * This function is for filesystems to call to implement their readahead
 527 * address_space operation.
 528 *
 529 * Context: The @ops callbacks may submit I/O (eg to read the addresses of
 530 * blocks from disc), and may wait for it.  The caller may be trying to
 531 * access a different page, and so sleeping excessively should be avoided.
 532 * It may allocate memory, but should avoid costly allocations.  This
 533 * function is called with memalloc_nofs set, so allocations will not cause
 534 * the filesystem to be reentered.
 535 */
 536void iomap_readahead(struct readahead_control *rac, const struct iomap_ops *ops)
 537{
 538	struct iomap_iter iter = {
 539		.inode	= rac->mapping->host,
 540		.pos	= readahead_pos(rac),
 541		.len	= readahead_length(rac),
 542	};
 543	struct iomap_readpage_ctx ctx = {
 544		.rac	= rac,
 545	};
 546
 547	trace_iomap_readahead(rac->mapping->host, readahead_count(rac));
 548
 549	while (iomap_iter(&iter, ops) > 0)
 550		iter.processed = iomap_readahead_iter(&iter, &ctx);
 551
 552	if (ctx.bio)
 553		submit_bio(ctx.bio);
 554	if (ctx.cur_folio) {
 555		if (!ctx.cur_folio_in_bio)
 556			folio_unlock(ctx.cur_folio);
 557	}
 558}
 559EXPORT_SYMBOL_GPL(iomap_readahead);
 560
 561/*
 562 * iomap_is_partially_uptodate checks whether blocks within a folio are
 563 * uptodate or not.
 564 *
 565 * Returns true if all blocks which correspond to the specified part
 566 * of the folio are uptodate.
 567 */
 568bool iomap_is_partially_uptodate(struct folio *folio, size_t from, size_t count)
 569{
 570	struct iomap_folio_state *ifs = folio->private;
 571	struct inode *inode = folio->mapping->host;
 572	unsigned first, last, i;
 573
 574	if (!ifs)
 575		return false;
 576
 577	/* Caller's range may extend past the end of this folio */
 578	count = min(folio_size(folio) - from, count);
 579
 580	/* First and last blocks in range within folio */
 581	first = from >> inode->i_blkbits;
 582	last = (from + count - 1) >> inode->i_blkbits;
 583
 584	for (i = first; i <= last; i++)
 585		if (!ifs_block_is_uptodate(ifs, i))
 586			return false;
 587	return true;
 588}
 589EXPORT_SYMBOL_GPL(iomap_is_partially_uptodate);
 590
 591/**
 592 * iomap_get_folio - get a folio reference for writing
 593 * @iter: iteration structure
 594 * @pos: start offset of write
 595 * @len: Suggested size of folio to create.
 596 *
 597 * Returns a locked reference to the folio at @pos, or an error pointer if the
 598 * folio could not be obtained.
 599 */
 600struct folio *iomap_get_folio(struct iomap_iter *iter, loff_t pos, size_t len)
 601{
 602	fgf_t fgp = FGP_WRITEBEGIN | FGP_NOFS;
 603
 604	if (iter->flags & IOMAP_NOWAIT)
 605		fgp |= FGP_NOWAIT;
 606	fgp |= fgf_set_order(len);
 607
 608	return __filemap_get_folio(iter->inode->i_mapping, pos >> PAGE_SHIFT,
 609			fgp, mapping_gfp_mask(iter->inode->i_mapping));
 610}
 611EXPORT_SYMBOL_GPL(iomap_get_folio);
 612
 613bool iomap_release_folio(struct folio *folio, gfp_t gfp_flags)
 614{
 615	trace_iomap_release_folio(folio->mapping->host, folio_pos(folio),
 616			folio_size(folio));
 617
 618	/*
 619	 * If the folio is dirty, we refuse to release our metadata because
 620	 * it may be partially dirty.  Once we track per-block dirty state,
 621	 * we can release the metadata if every block is dirty.
 
 622	 */
 623	if (folio_test_dirty(folio))
 624		return false;
 625	ifs_free(folio);
 626	return true;
 627}
 628EXPORT_SYMBOL_GPL(iomap_release_folio);
 629
 630void iomap_invalidate_folio(struct folio *folio, size_t offset, size_t len)
 631{
 632	trace_iomap_invalidate_folio(folio->mapping->host,
 633					folio_pos(folio) + offset, len);
 634
 635	/*
 636	 * If we're invalidating the entire folio, clear the dirty state
 637	 * from it and release it to avoid unnecessary buildup of the LRU.
 638	 */
 639	if (offset == 0 && len == folio_size(folio)) {
 640		WARN_ON_ONCE(folio_test_writeback(folio));
 641		folio_cancel_dirty(folio);
 642		ifs_free(folio);
 
 
 
 
 
 643	}
 644}
 645EXPORT_SYMBOL_GPL(iomap_invalidate_folio);
 646
 647bool iomap_dirty_folio(struct address_space *mapping, struct folio *folio)
 648{
 649	struct inode *inode = mapping->host;
 650	size_t len = folio_size(folio);
 651
 652	ifs_alloc(inode, folio, 0);
 653	iomap_set_range_dirty(folio, 0, len);
 654	return filemap_dirty_folio(mapping, folio);
 655}
 656EXPORT_SYMBOL_GPL(iomap_dirty_folio);
 657
 658static void
 659iomap_write_failed(struct inode *inode, loff_t pos, unsigned len)
 660{
 661	loff_t i_size = i_size_read(inode);
 662
 663	/*
 664	 * Only truncate newly allocated pages beyoned EOF, even if the
 665	 * write started inside the existing inode size.
 666	 */
 667	if (pos + len > i_size)
 668		truncate_pagecache_range(inode, max(pos, i_size),
 669					 pos + len - 1);
 670}
 671
 672static int iomap_read_folio_sync(loff_t block_start, struct folio *folio,
 673		size_t poff, size_t plen, const struct iomap *iomap)
 674{
 675	struct bio_vec bvec;
 676	struct bio bio;
 677
 678	bio_init(&bio, iomap->bdev, &bvec, 1, REQ_OP_READ);
 679	bio.bi_iter.bi_sector = iomap_sector(iomap, block_start);
 680	bio_add_folio_nofail(&bio, folio, plen, poff);
 681	return submit_bio_wait(&bio);
 682}
 683
 684static int __iomap_write_begin(const struct iomap_iter *iter, loff_t pos,
 685		size_t len, struct folio *folio)
 686{
 687	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 688	struct iomap_folio_state *ifs;
 689	loff_t block_size = i_blocksize(iter->inode);
 690	loff_t block_start = round_down(pos, block_size);
 691	loff_t block_end = round_up(pos + len, block_size);
 692	unsigned int nr_blocks = i_blocks_per_folio(iter->inode, folio);
 693	size_t from = offset_in_folio(folio, pos), to = from + len;
 694	size_t poff, plen;
 695
 696	/*
 697	 * If the write or zeroing completely overlaps the current folio, then
 698	 * entire folio will be dirtied so there is no need for
 699	 * per-block state tracking structures to be attached to this folio.
 700	 * For the unshare case, we must read in the ondisk contents because we
 701	 * are not changing pagecache contents.
 702	 */
 703	if (!(iter->flags & IOMAP_UNSHARE) && pos <= folio_pos(folio) &&
 704	    pos + len >= folio_pos(folio) + folio_size(folio))
 705		return 0;
 
 706
 707	ifs = ifs_alloc(iter->inode, folio, iter->flags);
 708	if ((iter->flags & IOMAP_NOWAIT) && !ifs && nr_blocks > 1)
 709		return -EAGAIN;
 710
 711	if (folio_test_uptodate(folio))
 712		return 0;
 713
 714	do {
 715		iomap_adjust_read_range(iter->inode, folio, &block_start,
 716				block_end - block_start, &poff, &plen);
 717		if (plen == 0)
 718			break;
 719
 720		if (!(iter->flags & IOMAP_UNSHARE) &&
 721		    (from <= poff || from >= poff + plen) &&
 722		    (to <= poff || to >= poff + plen))
 723			continue;
 724
 725		if (iomap_block_needs_zeroing(iter, block_start)) {
 726			if (WARN_ON_ONCE(iter->flags & IOMAP_UNSHARE))
 727				return -EIO;
 728			folio_zero_segments(folio, poff, from, to, poff + plen);
 729		} else {
 730			int status;
 731
 732			if (iter->flags & IOMAP_NOWAIT)
 733				return -EAGAIN;
 734
 735			status = iomap_read_folio_sync(block_start, folio,
 736					poff, plen, srcmap);
 737			if (status)
 738				return status;
 739		}
 740		iomap_set_range_uptodate(folio, poff, plen);
 741	} while ((block_start += plen) < block_end);
 742
 743	return 0;
 744}
 745
 746static struct folio *__iomap_get_folio(struct iomap_iter *iter, loff_t pos,
 747		size_t len)
 748{
 749	const struct iomap_folio_ops *folio_ops = iter->iomap.folio_ops;
 750
 751	if (folio_ops && folio_ops->get_folio)
 752		return folio_ops->get_folio(iter, pos, len);
 753	else
 754		return iomap_get_folio(iter, pos, len);
 755}
 756
 757static void __iomap_put_folio(struct iomap_iter *iter, loff_t pos, size_t ret,
 758		struct folio *folio)
 759{
 760	const struct iomap_folio_ops *folio_ops = iter->iomap.folio_ops;
 761
 762	if (folio_ops && folio_ops->put_folio) {
 763		folio_ops->put_folio(iter->inode, pos, ret, folio);
 764	} else {
 765		folio_unlock(folio);
 766		folio_put(folio);
 767	}
 768}
 769
 770static int iomap_write_begin_inline(const struct iomap_iter *iter,
 771		struct folio *folio)
 772{
 773	/* needs more work for the tailpacking case; disable for now */
 774	if (WARN_ON_ONCE(iomap_iter_srcmap(iter)->offset != 0))
 775		return -EIO;
 776	return iomap_read_inline_data(iter, folio);
 777}
 778
 779static int iomap_write_begin(struct iomap_iter *iter, loff_t pos,
 780		size_t len, struct folio **foliop)
 781{
 782	const struct iomap_folio_ops *folio_ops = iter->iomap.folio_ops;
 783	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 784	struct folio *folio;
 
 785	int status = 0;
 786
 
 
 
 787	BUG_ON(pos + len > iter->iomap.offset + iter->iomap.length);
 788	if (srcmap != &iter->iomap)
 789		BUG_ON(pos + len > srcmap->offset + srcmap->length);
 790
 791	if (fatal_signal_pending(current))
 792		return -EINTR;
 793
 794	if (!mapping_large_folio_support(iter->inode->i_mapping))
 795		len = min_t(size_t, len, PAGE_SIZE - offset_in_page(pos));
 796
 797	folio = __iomap_get_folio(iter, pos, len);
 798	if (IS_ERR(folio))
 799		return PTR_ERR(folio);
 
 
 
 
 
 
 
 
 
 800
 801	/*
 802	 * Now we have a locked folio, before we do anything with it we need to
 803	 * check that the iomap we have cached is not stale. The inode extent
 804	 * mapping can change due to concurrent IO in flight (e.g.
 805	 * IOMAP_UNWRITTEN state can change and memory reclaim could have
 806	 * reclaimed a previously partially written page at this index after IO
 807	 * completion before this write reaches this file offset) and hence we
 808	 * could do the wrong thing here (zero a page range incorrectly or fail
 809	 * to zero) and corrupt data.
 810	 */
 811	if (folio_ops && folio_ops->iomap_valid) {
 812		bool iomap_valid = folio_ops->iomap_valid(iter->inode,
 813							 &iter->iomap);
 814		if (!iomap_valid) {
 815			iter->iomap.flags |= IOMAP_F_STALE;
 816			status = 0;
 817			goto out_unlock;
 818		}
 819	}
 820
 821	if (pos + len > folio_pos(folio) + folio_size(folio))
 822		len = folio_pos(folio) + folio_size(folio) - pos;
 823
 824	if (srcmap->type == IOMAP_INLINE)
 825		status = iomap_write_begin_inline(iter, folio);
 826	else if (srcmap->flags & IOMAP_F_BUFFER_HEAD)
 827		status = __block_write_begin_int(folio, pos, len, NULL, srcmap);
 828	else
 829		status = __iomap_write_begin(iter, pos, len, folio);
 830
 831	if (unlikely(status))
 832		goto out_unlock;
 833
 834	*foliop = folio;
 835	return 0;
 836
 837out_unlock:
 838	__iomap_put_folio(iter, pos, 0, folio);
 
 
 839
 
 
 
 840	return status;
 841}
 842
 843static bool __iomap_write_end(struct inode *inode, loff_t pos, size_t len,
 844		size_t copied, struct folio *folio)
 845{
 
 846	flush_dcache_folio(folio);
 847
 848	/*
 849	 * The blocks that were entirely written will now be uptodate, so we
 850	 * don't have to worry about a read_folio reading them and overwriting a
 851	 * partial write.  However, if we've encountered a short write and only
 852	 * partially written into a block, it will not be marked uptodate, so a
 853	 * read_folio might come in and destroy our partial write.
 854	 *
 855	 * Do the simplest thing and just treat any short write to a
 856	 * non-uptodate page as a zero-length write, and force the caller to
 857	 * redo the whole thing.
 858	 */
 859	if (unlikely(copied < len && !folio_test_uptodate(folio)))
 860		return false;
 861	iomap_set_range_uptodate(folio, offset_in_folio(folio, pos), len);
 862	iomap_set_range_dirty(folio, offset_in_folio(folio, pos), copied);
 863	filemap_dirty_folio(inode->i_mapping, folio);
 864	return true;
 865}
 866
 867static void iomap_write_end_inline(const struct iomap_iter *iter,
 868		struct folio *folio, loff_t pos, size_t copied)
 869{
 870	const struct iomap *iomap = &iter->iomap;
 871	void *addr;
 872
 873	WARN_ON_ONCE(!folio_test_uptodate(folio));
 874	BUG_ON(!iomap_inline_data_valid(iomap));
 875
 876	flush_dcache_folio(folio);
 877	addr = kmap_local_folio(folio, pos);
 878	memcpy(iomap_inline_data(iomap, pos), addr, copied);
 879	kunmap_local(addr);
 880
 881	mark_inode_dirty(iter->inode);
 
 882}
 883
 884/*
 885 * Returns true if all copied bytes have been written to the pagecache,
 886 * otherwise return false.
 887 */
 888static bool iomap_write_end(struct iomap_iter *iter, loff_t pos, size_t len,
 889		size_t copied, struct folio *folio)
 890{
 
 891	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 
 
 892
 893	if (srcmap->type == IOMAP_INLINE) {
 894		iomap_write_end_inline(iter, folio, pos, copied);
 895		return true;
 
 
 
 
 896	}
 897
 898	if (srcmap->flags & IOMAP_F_BUFFER_HEAD) {
 899		size_t bh_written;
 900
 901		bh_written = block_write_end(NULL, iter->inode->i_mapping, pos,
 902					len, copied, folio, NULL);
 903		WARN_ON_ONCE(bh_written != copied && bh_written != 0);
 904		return bh_written == copied;
 
 905	}
 
 906
 907	return __iomap_write_end(iter->inode, pos, len, copied, folio);
 
 
 
 
 
 
 
 
 908}
 909
 910static loff_t iomap_write_iter(struct iomap_iter *iter, struct iov_iter *i)
 911{
 912	loff_t length = iomap_length(iter);
 913	loff_t pos = iter->pos;
 914	ssize_t total_written = 0;
 915	long status = 0;
 916	struct address_space *mapping = iter->inode->i_mapping;
 917	size_t chunk = mapping_max_folio_size(mapping);
 918	unsigned int bdp_flags = (iter->flags & IOMAP_NOWAIT) ? BDP_ASYNC : 0;
 919
 920	do {
 921		struct folio *folio;
 922		loff_t old_size;
 923		size_t offset;		/* Offset into folio */
 924		size_t bytes;		/* Bytes to write to folio */
 925		size_t copied;		/* Bytes copied from user */
 926		size_t written;		/* Bytes have been written */
 927
 928		bytes = iov_iter_count(i);
 929retry:
 930		offset = pos & (chunk - 1);
 931		bytes = min(chunk - offset, bytes);
 932		status = balance_dirty_pages_ratelimited_flags(mapping,
 933							       bdp_flags);
 934		if (unlikely(status))
 935			break;
 936
 937		if (bytes > length)
 938			bytes = length;
 939
 940		/*
 941		 * Bring in the user page that we'll copy from _first_.
 942		 * Otherwise there's a nasty deadlock on copying from the
 943		 * same page as we're writing to, without it being marked
 944		 * up-to-date.
 945		 *
 946		 * For async buffered writes the assumption is that the user
 947		 * page has already been faulted in. This can be optimized by
 948		 * faulting the user page.
 949		 */
 950		if (unlikely(fault_in_iov_iter_readable(i, bytes) == bytes)) {
 951			status = -EFAULT;
 952			break;
 953		}
 954
 955		status = iomap_write_begin(iter, pos, bytes, &folio);
 956		if (unlikely(status)) {
 957			iomap_write_failed(iter->inode, pos, bytes);
 958			break;
 959		}
 960		if (iter->iomap.flags & IOMAP_F_STALE)
 961			break;
 962
 963		offset = offset_in_folio(folio, pos);
 964		if (bytes > folio_size(folio) - offset)
 965			bytes = folio_size(folio) - offset;
 966
 967		if (mapping_writably_mapped(mapping))
 968			flush_dcache_folio(folio);
 969
 970		copied = copy_folio_from_iter_atomic(folio, offset, bytes, i);
 971		written = iomap_write_end(iter, pos, bytes, copied, folio) ?
 972			  copied : 0;
 973
 974		/*
 975		 * Update the in-memory inode size after copying the data into
 976		 * the page cache.  It's up to the file system to write the
 977		 * updated size to disk, preferably after I/O completion so that
 978		 * no stale data is exposed.  Only once that's done can we
 979		 * unlock and release the folio.
 980		 */
 981		old_size = iter->inode->i_size;
 982		if (pos + written > old_size) {
 983			i_size_write(iter->inode, pos + written);
 984			iter->iomap.flags |= IOMAP_F_SIZE_CHANGED;
 985		}
 986		__iomap_put_folio(iter, pos, written, folio);
 987
 988		if (old_size < pos)
 989			pagecache_isize_extended(iter->inode, old_size, pos);
 990
 991		cond_resched();
 992		if (unlikely(written == 0)) {
 993			/*
 994			 * A short copy made iomap_write_end() reject the
 995			 * thing entirely.  Might be memory poisoning
 996			 * halfway through, might be a race with munmap,
 997			 * might be severe memory pressure.
 998			 */
 999			iomap_write_failed(iter->inode, pos, bytes);
1000			iov_iter_revert(i, copied);
1001
1002			if (chunk > PAGE_SIZE)
1003				chunk /= 2;
1004			if (copied) {
1005				bytes = copied;
1006				goto retry;
1007			}
1008		} else {
1009			pos += written;
1010			total_written += written;
1011			length -= written;
1012		}
 
 
 
1013	} while (iov_iter_count(i) && length);
1014
1015	if (status == -EAGAIN) {
1016		iov_iter_revert(i, total_written);
1017		return -EAGAIN;
1018	}
1019	return total_written ? total_written : status;
1020}
1021
1022ssize_t
1023iomap_file_buffered_write(struct kiocb *iocb, struct iov_iter *i,
1024		const struct iomap_ops *ops, void *private)
1025{
1026	struct iomap_iter iter = {
1027		.inode		= iocb->ki_filp->f_mapping->host,
1028		.pos		= iocb->ki_pos,
1029		.len		= iov_iter_count(i),
1030		.flags		= IOMAP_WRITE,
1031		.private	= private,
1032	};
1033	ssize_t ret;
1034
1035	if (iocb->ki_flags & IOCB_NOWAIT)
1036		iter.flags |= IOMAP_NOWAIT;
1037
1038	while ((ret = iomap_iter(&iter, ops)) > 0)
1039		iter.processed = iomap_write_iter(&iter, i);
1040
1041	if (unlikely(iter.pos == iocb->ki_pos))
1042		return ret;
1043	ret = iter.pos - iocb->ki_pos;
1044	iocb->ki_pos = iter.pos;
1045	return ret;
1046}
1047EXPORT_SYMBOL_GPL(iomap_file_buffered_write);
1048
1049static void iomap_write_delalloc_ifs_punch(struct inode *inode,
1050		struct folio *folio, loff_t start_byte, loff_t end_byte,
1051		struct iomap *iomap, iomap_punch_t punch)
1052{
1053	unsigned int first_blk, last_blk, i;
1054	loff_t last_byte;
1055	u8 blkbits = inode->i_blkbits;
1056	struct iomap_folio_state *ifs;
1057
1058	/*
1059	 * When we have per-block dirty tracking, there can be
1060	 * blocks within a folio which are marked uptodate
1061	 * but not dirty. In that case it is necessary to punch
1062	 * out such blocks to avoid leaking any delalloc blocks.
1063	 */
1064	ifs = folio->private;
1065	if (!ifs)
1066		return;
1067
1068	last_byte = min_t(loff_t, end_byte - 1,
1069			folio_pos(folio) + folio_size(folio) - 1);
1070	first_blk = offset_in_folio(folio, start_byte) >> blkbits;
1071	last_blk = offset_in_folio(folio, last_byte) >> blkbits;
1072	for (i = first_blk; i <= last_blk; i++) {
1073		if (!ifs_block_is_dirty(folio, ifs, i))
1074			punch(inode, folio_pos(folio) + (i << blkbits),
1075				    1 << blkbits, iomap);
1076	}
1077}
1078
1079static void iomap_write_delalloc_punch(struct inode *inode, struct folio *folio,
1080		loff_t *punch_start_byte, loff_t start_byte, loff_t end_byte,
1081		struct iomap *iomap, iomap_punch_t punch)
1082{
1083	if (!folio_test_dirty(folio))
1084		return;
1085
1086	/* if dirty, punch up to offset */
1087	if (start_byte > *punch_start_byte) {
1088		punch(inode, *punch_start_byte, start_byte - *punch_start_byte,
1089				iomap);
1090	}
1091
1092	/* Punch non-dirty blocks within folio */
1093	iomap_write_delalloc_ifs_punch(inode, folio, start_byte, end_byte,
1094			iomap, punch);
1095
1096	/*
1097	 * Make sure the next punch start is correctly bound to
1098	 * the end of this data range, not the end of the folio.
1099	 */
1100	*punch_start_byte = min_t(loff_t, end_byte,
1101				folio_pos(folio) + folio_size(folio));
1102}
1103
1104/*
1105 * Scan the data range passed to us for dirty page cache folios. If we find a
1106 * dirty folio, punch out the preceding range and update the offset from which
1107 * the next punch will start from.
1108 *
1109 * We can punch out storage reservations under clean pages because they either
1110 * contain data that has been written back - in which case the delalloc punch
1111 * over that range is a no-op - or they have been read faults in which case they
1112 * contain zeroes and we can remove the delalloc backing range and any new
1113 * writes to those pages will do the normal hole filling operation...
1114 *
1115 * This makes the logic simple: we only need to keep the delalloc extents only
1116 * over the dirty ranges of the page cache.
1117 *
1118 * This function uses [start_byte, end_byte) intervals (i.e. open ended) to
1119 * simplify range iterations.
1120 */
1121static void iomap_write_delalloc_scan(struct inode *inode,
1122		loff_t *punch_start_byte, loff_t start_byte, loff_t end_byte,
1123		struct iomap *iomap, iomap_punch_t punch)
1124{
1125	while (start_byte < end_byte) {
1126		struct folio	*folio;
1127
1128		/* grab locked page */
1129		folio = filemap_lock_folio(inode->i_mapping,
1130				start_byte >> PAGE_SHIFT);
1131		if (IS_ERR(folio)) {
1132			start_byte = ALIGN_DOWN(start_byte, PAGE_SIZE) +
1133					PAGE_SIZE;
1134			continue;
1135		}
1136
1137		iomap_write_delalloc_punch(inode, folio, punch_start_byte,
1138				start_byte, end_byte, iomap, punch);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
1140		/* move offset to start of next folio in range */
1141		start_byte = folio_pos(folio) + folio_size(folio);
1142		folio_unlock(folio);
1143		folio_put(folio);
1144	}
 
1145}
1146
1147/*
1148 * When a short write occurs, the filesystem might need to use ->iomap_end
1149 * to remove space reservations created in ->iomap_begin.
1150 *
1151 * For filesystems that use delayed allocation, there can be dirty pages over
1152 * the delalloc extent outside the range of a short write but still within the
1153 * delalloc extent allocated for this iomap if the write raced with page
1154 * faults.
1155 *
1156 * Punch out all the delalloc blocks in the range given except for those that
1157 * have dirty data still pending in the page cache - those are going to be
1158 * written and so must still retain the delalloc backing for writeback.
1159 *
1160 * The punch() callback *must* only punch delalloc extents in the range passed
1161 * to it. It must skip over all other types of extents in the range and leave
1162 * them completely unchanged. It must do this punch atomically with respect to
1163 * other extent modifications.
1164 *
1165 * The punch() callback may be called with a folio locked to prevent writeback
1166 * extent allocation racing at the edge of the range we are currently punching.
1167 * The locked folio may or may not cover the range being punched, so it is not
1168 * safe for the punch() callback to lock folios itself.
1169 *
1170 * Lock order is:
1171 *
1172 * inode->i_rwsem (shared or exclusive)
1173 *   inode->i_mapping->invalidate_lock (exclusive)
1174 *     folio_lock()
1175 *       ->punch
1176 *         internal filesystem allocation lock
1177 *
1178 * As we are scanning the page cache for data, we don't need to reimplement the
1179 * wheel - mapping_seek_hole_data() does exactly what we need to identify the
1180 * start and end of data ranges correctly even for sub-folio block sizes. This
1181 * byte range based iteration is especially convenient because it means we
1182 * don't have to care about variable size folios, nor where the start or end of
1183 * the data range lies within a folio, if they lie within the same folio or even
1184 * if there are multiple discontiguous data ranges within the folio.
1185 *
1186 * It should be noted that mapping_seek_hole_data() is not aware of EOF, and so
1187 * can return data ranges that exist in the cache beyond EOF. e.g. a page fault
1188 * spanning EOF will initialise the post-EOF data to zeroes and mark it up to
1189 * date. A write page fault can then mark it dirty. If we then fail a write()
1190 * beyond EOF into that up to date cached range, we allocate a delalloc block
1191 * beyond EOF and then have to punch it out. Because the range is up to date,
1192 * mapping_seek_hole_data() will return it, and we will skip the punch because
1193 * the folio is dirty. THis is incorrect - we always need to punch out delalloc
1194 * beyond EOF in this case as writeback will never write back and covert that
1195 * delalloc block beyond EOF. Hence we limit the cached data scan range to EOF,
1196 * resulting in always punching out the range from the EOF to the end of the
1197 * range the iomap spans.
1198 *
1199 * Intervals are of the form [start_byte, end_byte) (i.e. open ended) because it
1200 * matches the intervals returned by mapping_seek_hole_data(). i.e. SEEK_DATA
1201 * returns the start of a data range (start_byte), and SEEK_HOLE(start_byte)
1202 * returns the end of the data range (data_end). Using closed intervals would
1203 * require sprinkling this code with magic "+ 1" and "- 1" arithmetic and expose
1204 * the code to subtle off-by-one bugs....
1205 */
1206void iomap_write_delalloc_release(struct inode *inode, loff_t start_byte,
1207		loff_t end_byte, unsigned flags, struct iomap *iomap,
1208		iomap_punch_t punch)
1209{
1210	loff_t punch_start_byte = start_byte;
1211	loff_t scan_end_byte = min(i_size_read(inode), end_byte);
 
1212
1213	/*
1214	 * The caller must hold invalidate_lock to avoid races with page faults
1215	 * re-instantiating folios and dirtying them via ->page_mkwrite whilst
1216	 * we walk the cache and perform delalloc extent removal.  Failing to do
1217	 * this can leave dirty pages with no space reservation in the cache.
1218	 */
1219	lockdep_assert_held_write(&inode->i_mapping->invalidate_lock);
1220
1221	while (start_byte < scan_end_byte) {
1222		loff_t		data_end;
1223
1224		start_byte = mapping_seek_hole_data(inode->i_mapping,
1225				start_byte, scan_end_byte, SEEK_DATA);
1226		/*
1227		 * If there is no more data to scan, all that is left is to
1228		 * punch out the remaining range.
1229		 *
1230		 * Note that mapping_seek_hole_data is only supposed to return
1231		 * either an offset or -ENXIO, so WARN on any other error as
1232		 * that would be an API change without updating the callers.
1233		 */
1234		if (start_byte == -ENXIO || start_byte == scan_end_byte)
1235			break;
1236		if (WARN_ON_ONCE(start_byte < 0))
1237			return;
 
 
1238		WARN_ON_ONCE(start_byte < punch_start_byte);
1239		WARN_ON_ONCE(start_byte > scan_end_byte);
1240
1241		/*
1242		 * We find the end of this contiguous cached data range by
1243		 * seeking from start_byte to the beginning of the next hole.
1244		 */
1245		data_end = mapping_seek_hole_data(inode->i_mapping, start_byte,
1246				scan_end_byte, SEEK_HOLE);
1247		if (WARN_ON_ONCE(data_end < 0))
1248			return;
1249
1250		/*
1251		 * If we race with post-direct I/O invalidation of the page cache,
1252		 * there might be no data left at start_byte.
1253		 */
1254		if (data_end == start_byte)
1255			continue;
1256
1257		WARN_ON_ONCE(data_end < start_byte);
1258		WARN_ON_ONCE(data_end > scan_end_byte);
1259
1260		iomap_write_delalloc_scan(inode, &punch_start_byte, start_byte,
1261				data_end, iomap, punch);
 
 
1262
1263		/* The next data search starts at the end of this one. */
1264		start_byte = data_end;
1265	}
1266
1267	if (punch_start_byte < end_byte)
1268		punch(inode, punch_start_byte, end_byte - punch_start_byte,
1269				iomap);
 
 
 
1270}
1271EXPORT_SYMBOL_GPL(iomap_write_delalloc_release);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1272
1273static loff_t iomap_unshare_iter(struct iomap_iter *iter)
1274{
1275	struct iomap *iomap = &iter->iomap;
 
1276	loff_t pos = iter->pos;
1277	loff_t length = iomap_length(iter);
 
1278	loff_t written = 0;
1279
1280	if (!iomap_want_unshare_iter(iter))
 
 
 
 
1281		return length;
1282
1283	do {
 
 
1284		struct folio *folio;
1285		int status;
1286		size_t offset;
1287		size_t bytes = min_t(u64, SIZE_MAX, length);
1288		bool ret;
1289
1290		status = iomap_write_begin(iter, pos, bytes, &folio);
1291		if (unlikely(status))
1292			return status;
1293		if (iomap->flags & IOMAP_F_STALE)
1294			break;
1295
1296		offset = offset_in_folio(folio, pos);
1297		if (bytes > folio_size(folio) - offset)
1298			bytes = folio_size(folio) - offset;
1299
1300		ret = iomap_write_end(iter, pos, bytes, bytes, folio);
1301		__iomap_put_folio(iter, pos, bytes, folio);
1302		if (WARN_ON_ONCE(!ret))
1303			return -EIO;
1304
1305		cond_resched();
1306
1307		pos += bytes;
1308		written += bytes;
1309		length -= bytes;
1310
1311		balance_dirty_pages_ratelimited(iter->inode->i_mapping);
1312	} while (length > 0);
1313
1314	return written;
1315}
1316
1317int
1318iomap_file_unshare(struct inode *inode, loff_t pos, loff_t len,
1319		const struct iomap_ops *ops)
1320{
1321	struct iomap_iter iter = {
1322		.inode		= inode,
1323		.pos		= pos,
 
1324		.flags		= IOMAP_WRITE | IOMAP_UNSHARE,
1325	};
1326	loff_t size = i_size_read(inode);
1327	int ret;
1328
1329	if (pos < 0 || pos >= size)
1330		return 0;
1331
1332	iter.len = min(len, size - pos);
1333	while ((ret = iomap_iter(&iter, ops)) > 0)
1334		iter.processed = iomap_unshare_iter(&iter);
1335	return ret;
1336}
1337EXPORT_SYMBOL_GPL(iomap_file_unshare);
1338
1339/*
1340 * Flush the remaining range of the iter and mark the current mapping stale.
1341 * This is used when zero range sees an unwritten mapping that may have had
1342 * dirty pagecache over it.
1343 */
1344static inline int iomap_zero_iter_flush_and_stale(struct iomap_iter *i)
1345{
1346	struct address_space *mapping = i->inode->i_mapping;
1347	loff_t end = i->pos + i->len - 1;
1348
1349	i->iomap.flags |= IOMAP_F_STALE;
1350	return filemap_write_and_wait_range(mapping, i->pos, end);
1351}
1352
1353static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero)
1354{
 
1355	loff_t pos = iter->pos;
1356	loff_t length = iomap_length(iter);
1357	loff_t written = 0;
1358
 
 
 
 
1359	do {
1360		struct folio *folio;
1361		int status;
1362		size_t offset;
1363		size_t bytes = min_t(u64, SIZE_MAX, length);
1364		bool ret;
1365
1366		status = iomap_write_begin(iter, pos, bytes, &folio);
1367		if (status)
1368			return status;
1369		if (iter->iomap.flags & IOMAP_F_STALE)
1370			break;
1371
1372		/* warn about zeroing folios beyond eof that won't write back */
1373		WARN_ON_ONCE(folio_pos(folio) > iter->inode->i_size);
1374		offset = offset_in_folio(folio, pos);
1375		if (bytes > folio_size(folio) - offset)
1376			bytes = folio_size(folio) - offset;
1377
1378		folio_zero_range(folio, offset, bytes);
1379		folio_mark_accessed(folio);
1380
1381		ret = iomap_write_end(iter, pos, bytes, bytes, folio);
1382		__iomap_put_folio(iter, pos, bytes, folio);
1383		if (WARN_ON_ONCE(!ret))
1384			return -EIO;
1385
1386		pos += bytes;
1387		length -= bytes;
1388		written += bytes;
1389	} while (length > 0);
1390
1391	if (did_zero)
1392		*did_zero = true;
1393	return written;
1394}
1395
1396int
1397iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero,
1398		const struct iomap_ops *ops)
1399{
1400	struct iomap_iter iter = {
1401		.inode		= inode,
1402		.pos		= pos,
1403		.len		= len,
1404		.flags		= IOMAP_ZERO,
1405	};
1406	struct address_space *mapping = inode->i_mapping;
1407	unsigned int blocksize = i_blocksize(inode);
1408	unsigned int off = pos & (blocksize - 1);
1409	loff_t plen = min_t(loff_t, len, blocksize - off);
1410	int ret;
1411	bool range_dirty;
1412
1413	/*
1414	 * Zero range can skip mappings that are zero on disk so long as
1415	 * pagecache is clean. If pagecache was dirty prior to zero range, the
1416	 * mapping converts on writeback completion and so must be zeroed.
1417	 *
1418	 * The simplest way to deal with this across a range is to flush
1419	 * pagecache and process the updated mappings. To avoid excessive
1420	 * flushing on partial eof zeroing, special case it to zero the
1421	 * unaligned start portion if already dirty in pagecache.
1422	 */
1423	if (off &&
1424	    filemap_range_needs_writeback(mapping, pos, pos + plen - 1)) {
1425		iter.len = plen;
1426		while ((ret = iomap_iter(&iter, ops)) > 0)
1427			iter.processed = iomap_zero_iter(&iter, did_zero);
1428
1429		iter.len = len - (iter.pos - pos);
1430		if (ret || !iter.len)
1431			return ret;
1432	}
1433
1434	/*
1435	 * To avoid an unconditional flush, check pagecache state and only flush
1436	 * if dirty and the fs returns a mapping that might convert on
1437	 * writeback.
1438	 */
1439	range_dirty = filemap_range_needs_writeback(inode->i_mapping,
1440					iter.pos, iter.pos + iter.len - 1);
1441	while ((ret = iomap_iter(&iter, ops)) > 0) {
1442		const struct iomap *srcmap = iomap_iter_srcmap(&iter);
1443
1444		if (srcmap->type == IOMAP_HOLE ||
1445		    srcmap->type == IOMAP_UNWRITTEN) {
1446			loff_t proc = iomap_length(&iter);
1447
1448			if (range_dirty) {
1449				range_dirty = false;
1450				proc = iomap_zero_iter_flush_and_stale(&iter);
1451			}
1452			iter.processed = proc;
1453			continue;
1454		}
1455
 
1456		iter.processed = iomap_zero_iter(&iter, did_zero);
1457	}
1458	return ret;
1459}
1460EXPORT_SYMBOL_GPL(iomap_zero_range);
1461
1462int
1463iomap_truncate_page(struct inode *inode, loff_t pos, bool *did_zero,
1464		const struct iomap_ops *ops)
1465{
1466	unsigned int blocksize = i_blocksize(inode);
1467	unsigned int off = pos & (blocksize - 1);
1468
1469	/* Block boundary? Nothing to do */
1470	if (!off)
1471		return 0;
1472	return iomap_zero_range(inode, pos, blocksize - off, did_zero, ops);
1473}
1474EXPORT_SYMBOL_GPL(iomap_truncate_page);
1475
1476static loff_t iomap_folio_mkwrite_iter(struct iomap_iter *iter,
1477		struct folio *folio)
1478{
1479	loff_t length = iomap_length(iter);
1480	int ret;
1481
1482	if (iter->iomap.flags & IOMAP_F_BUFFER_HEAD) {
1483		ret = __block_write_begin_int(folio, iter->pos, length, NULL,
1484					      &iter->iomap);
1485		if (ret)
1486			return ret;
1487		block_commit_write(&folio->page, 0, length);
1488	} else {
1489		WARN_ON_ONCE(!folio_test_uptodate(folio));
1490		folio_mark_dirty(folio);
1491	}
1492
1493	return length;
1494}
1495
1496vm_fault_t iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops)
1497{
1498	struct iomap_iter iter = {
1499		.inode		= file_inode(vmf->vma->vm_file),
1500		.flags		= IOMAP_WRITE | IOMAP_FAULT,
1501	};
1502	struct folio *folio = page_folio(vmf->page);
1503	ssize_t ret;
1504
1505	folio_lock(folio);
1506	ret = folio_mkwrite_check_truncate(folio, iter.inode);
1507	if (ret < 0)
1508		goto out_unlock;
1509	iter.pos = folio_pos(folio);
1510	iter.len = ret;
1511	while ((ret = iomap_iter(&iter, ops)) > 0)
1512		iter.processed = iomap_folio_mkwrite_iter(&iter, folio);
1513
1514	if (ret < 0)
1515		goto out_unlock;
1516	folio_wait_stable(folio);
1517	return VM_FAULT_LOCKED;
1518out_unlock:
1519	folio_unlock(folio);
1520	return vmf_fs_error(ret);
1521}
1522EXPORT_SYMBOL_GPL(iomap_page_mkwrite);
1523
1524static void iomap_finish_folio_write(struct inode *inode, struct folio *folio,
1525		size_t len)
1526{
1527	struct iomap_folio_state *ifs = folio->private;
1528
1529	WARN_ON_ONCE(i_blocks_per_folio(inode, folio) > 1 && !ifs);
1530	WARN_ON_ONCE(ifs && atomic_read(&ifs->write_bytes_pending) <= 0);
 
 
1531
1532	if (!ifs || atomic_sub_and_test(len, &ifs->write_bytes_pending))
 
 
 
1533		folio_end_writeback(folio);
1534}
1535
1536/*
1537 * We're now finished for good with this ioend structure.  Update the page
1538 * state, release holds on bios, and finally free up memory.  Do not use the
1539 * ioend after this.
1540 */
1541static u32
1542iomap_finish_ioend(struct iomap_ioend *ioend, int error)
1543{
1544	struct inode *inode = ioend->io_inode;
1545	struct bio *bio = &ioend->io_bio;
1546	struct folio_iter fi;
 
 
 
1547	u32 folio_count = 0;
1548
1549	if (error) {
1550		mapping_set_error(inode->i_mapping, error);
1551		if (!bio_flagged(bio, BIO_QUIET)) {
1552			pr_err_ratelimited(
1553"%s: writeback error on inode %lu, offset %lld, sector %llu",
1554				inode->i_sb->s_id, inode->i_ino,
1555				ioend->io_offset, ioend->io_sector);
 
 
 
 
 
 
 
 
 
 
1556		}
 
1557	}
 
1558
1559	/* walk all folios in bio, ending page IO on them */
1560	bio_for_each_folio_all(fi, bio) {
1561		iomap_finish_folio_write(inode, fi.folio, fi.length);
1562		folio_count++;
1563	}
1564
1565	bio_put(bio);	/* frees the ioend */
1566	return folio_count;
1567}
1568
1569/*
1570 * Ioend completion routine for merged bios. This can only be called from task
1571 * contexts as merged ioends can be of unbound length. Hence we have to break up
1572 * the writeback completions into manageable chunks to avoid long scheduler
1573 * holdoffs. We aim to keep scheduler holdoffs down below 10ms so that we get
1574 * good batch processing throughput without creating adverse scheduler latency
1575 * conditions.
1576 */
1577void
1578iomap_finish_ioends(struct iomap_ioend *ioend, int error)
1579{
1580	struct list_head tmp;
1581	u32 completions;
1582
1583	might_sleep();
1584
1585	list_replace_init(&ioend->io_list, &tmp);
1586	completions = iomap_finish_ioend(ioend, error);
1587
1588	while (!list_empty(&tmp)) {
1589		if (completions > IOEND_BATCH_SIZE * 8) {
1590			cond_resched();
1591			completions = 0;
1592		}
1593		ioend = list_first_entry(&tmp, struct iomap_ioend, io_list);
1594		list_del_init(&ioend->io_list);
1595		completions += iomap_finish_ioend(ioend, error);
1596	}
1597}
1598EXPORT_SYMBOL_GPL(iomap_finish_ioends);
1599
1600/*
1601 * We can merge two adjacent ioends if they have the same set of work to do.
1602 */
1603static bool
1604iomap_ioend_can_merge(struct iomap_ioend *ioend, struct iomap_ioend *next)
1605{
1606	if (ioend->io_bio.bi_status != next->io_bio.bi_status)
1607		return false;
1608	if (next->io_flags & IOMAP_F_BOUNDARY)
1609		return false;
1610	if ((ioend->io_flags & IOMAP_F_SHARED) ^
1611	    (next->io_flags & IOMAP_F_SHARED))
1612		return false;
1613	if ((ioend->io_type == IOMAP_UNWRITTEN) ^
1614	    (next->io_type == IOMAP_UNWRITTEN))
1615		return false;
1616	if (ioend->io_offset + ioend->io_size != next->io_offset)
1617		return false;
1618	/*
1619	 * Do not merge physically discontiguous ioends. The filesystem
1620	 * completion functions will have to iterate the physical
1621	 * discontiguities even if we merge the ioends at a logical level, so
1622	 * we don't gain anything by merging physical discontiguities here.
1623	 *
1624	 * We cannot use bio->bi_iter.bi_sector here as it is modified during
1625	 * submission so does not point to the start sector of the bio at
1626	 * completion.
1627	 */
1628	if (ioend->io_sector + (ioend->io_size >> 9) != next->io_sector)
1629		return false;
1630	return true;
1631}
1632
1633void
1634iomap_ioend_try_merge(struct iomap_ioend *ioend, struct list_head *more_ioends)
1635{
1636	struct iomap_ioend *next;
1637
1638	INIT_LIST_HEAD(&ioend->io_list);
1639
1640	while ((next = list_first_entry_or_null(more_ioends, struct iomap_ioend,
1641			io_list))) {
1642		if (!iomap_ioend_can_merge(ioend, next))
1643			break;
1644		list_move_tail(&next->io_list, &ioend->io_list);
1645		ioend->io_size += next->io_size;
1646	}
1647}
1648EXPORT_SYMBOL_GPL(iomap_ioend_try_merge);
1649
1650static int
1651iomap_ioend_compare(void *priv, const struct list_head *a,
1652		const struct list_head *b)
1653{
1654	struct iomap_ioend *ia = container_of(a, struct iomap_ioend, io_list);
1655	struct iomap_ioend *ib = container_of(b, struct iomap_ioend, io_list);
1656
1657	if (ia->io_offset < ib->io_offset)
1658		return -1;
1659	if (ia->io_offset > ib->io_offset)
1660		return 1;
1661	return 0;
1662}
1663
1664void
1665iomap_sort_ioends(struct list_head *ioend_list)
1666{
1667	list_sort(NULL, ioend_list, iomap_ioend_compare);
1668}
1669EXPORT_SYMBOL_GPL(iomap_sort_ioends);
1670
1671static void iomap_writepage_end_bio(struct bio *bio)
1672{
1673	iomap_finish_ioend(iomap_ioend_from_bio(bio),
1674			blk_status_to_errno(bio->bi_status));
 
1675}
1676
1677/*
1678 * Submit the final bio for an ioend.
1679 *
1680 * If @error is non-zero, it means that we have a situation where some part of
1681 * the submission process has failed after we've marked pages for writeback.
1682 * We cannot cancel ioend directly in that case, so call the bio end I/O handler
1683 * with the error status here to run the normal I/O completion handler to clear
1684 * the writeback bit and let the file system proess the errors.
1685 */
1686static int iomap_submit_ioend(struct iomap_writepage_ctx *wpc, int error)
 
 
1687{
1688	if (!wpc->ioend)
1689		return error;
1690
1691	/*
1692	 * Let the file systems prepare the I/O submission and hook in an I/O
1693	 * comletion handler.  This also needs to happen in case after a
1694	 * failure happened so that the file system end I/O handler gets called
1695	 * to clean up.
1696	 */
1697	if (wpc->ops->prepare_ioend)
1698		error = wpc->ops->prepare_ioend(wpc->ioend, error);
1699
1700	if (error) {
1701		wpc->ioend->io_bio.bi_status = errno_to_blk_status(error);
1702		bio_endio(&wpc->ioend->io_bio);
1703	} else {
1704		submit_bio(&wpc->ioend->io_bio);
 
 
 
 
 
1705	}
1706
1707	wpc->ioend = NULL;
1708	return error;
1709}
1710
1711static struct iomap_ioend *iomap_alloc_ioend(struct iomap_writepage_ctx *wpc,
1712		struct writeback_control *wbc, struct inode *inode, loff_t pos)
 
1713{
1714	struct iomap_ioend *ioend;
1715	struct bio *bio;
1716
1717	bio = bio_alloc_bioset(wpc->iomap.bdev, BIO_MAX_VECS,
1718			       REQ_OP_WRITE | wbc_to_write_flags(wbc),
1719			       GFP_NOFS, &iomap_ioend_bioset);
1720	bio->bi_iter.bi_sector = iomap_sector(&wpc->iomap, pos);
1721	bio->bi_end_io = iomap_writepage_end_bio;
1722	wbc_init_bio(wbc, bio);
1723	bio->bi_write_hint = inode->i_write_hint;
1724
1725	ioend = iomap_ioend_from_bio(bio);
1726	INIT_LIST_HEAD(&ioend->io_list);
1727	ioend->io_type = wpc->iomap.type;
1728	ioend->io_flags = wpc->iomap.flags;
1729	if (pos > wpc->iomap.offset)
1730		wpc->iomap.flags &= ~IOMAP_F_BOUNDARY;
1731	ioend->io_inode = inode;
1732	ioend->io_size = 0;
1733	ioend->io_offset = pos;
1734	ioend->io_sector = bio->bi_iter.bi_sector;
1735
1736	wpc->nr_folios = 0;
1737	return ioend;
1738}
1739
1740static bool iomap_can_add_to_ioend(struct iomap_writepage_ctx *wpc, loff_t pos)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1741{
1742	if (wpc->iomap.offset == pos && (wpc->iomap.flags & IOMAP_F_BOUNDARY))
1743		return false;
1744	if ((wpc->iomap.flags & IOMAP_F_SHARED) !=
1745	    (wpc->ioend->io_flags & IOMAP_F_SHARED))
1746		return false;
1747	if (wpc->iomap.type != wpc->ioend->io_type)
1748		return false;
1749	if (pos != wpc->ioend->io_offset + wpc->ioend->io_size)
1750		return false;
1751	if (iomap_sector(&wpc->iomap, pos) !=
1752	    bio_end_sector(&wpc->ioend->io_bio))
1753		return false;
1754	/*
1755	 * Limit ioend bio chain lengths to minimise IO completion latency. This
1756	 * also prevents long tight loops ending page writeback on all the
1757	 * folios in the ioend.
1758	 */
1759	if (wpc->nr_folios >= IOEND_BATCH_SIZE)
1760		return false;
1761	return true;
1762}
1763
1764/*
1765 * Test to see if we have an existing ioend structure that we could append to
1766 * first; otherwise finish off the current ioend and start another.
1767 *
1768 * If a new ioend is created and cached, the old ioend is submitted to the block
1769 * layer instantly.  Batching optimisations are provided by higher level block
1770 * plugging.
1771 *
1772 * At the end of a writeback pass, there will be a cached ioend remaining on the
1773 * writepage context that the caller will need to submit.
1774 */
1775static int iomap_add_to_ioend(struct iomap_writepage_ctx *wpc,
1776		struct writeback_control *wbc, struct folio *folio,
1777		struct inode *inode, loff_t pos, loff_t end_pos,
1778		unsigned len)
1779{
1780	struct iomap_folio_state *ifs = folio->private;
 
1781	size_t poff = offset_in_folio(folio, pos);
1782	int error;
1783
1784	if (!wpc->ioend || !iomap_can_add_to_ioend(wpc, pos)) {
1785new_ioend:
1786		error = iomap_submit_ioend(wpc, 0);
1787		if (error)
1788			return error;
1789		wpc->ioend = iomap_alloc_ioend(wpc, wbc, inode, pos);
1790	}
1791
1792	if (!bio_add_folio(&wpc->ioend->io_bio, folio, len, poff))
1793		goto new_ioend;
1794
1795	if (ifs)
1796		atomic_add(len, &ifs->write_bytes_pending);
1797
1798	/*
1799	 * Clamp io_offset and io_size to the incore EOF so that ondisk
1800	 * file size updates in the ioend completion are byte-accurate.
1801	 * This avoids recovering files with zeroed tail regions when
1802	 * writeback races with appending writes:
1803	 *
1804	 *    Thread 1:                  Thread 2:
1805	 *    ------------               -----------
1806	 *    write [A, A+B]
1807	 *    update inode size to A+B
1808	 *    submit I/O [A, A+BS]
1809	 *                               write [A+B, A+B+C]
1810	 *                               update inode size to A+B+C
1811	 *    <I/O completes, updates disk size to min(A+B+C, A+BS)>
1812	 *    <power failure>
1813	 *
1814	 *  After reboot:
1815	 *    1) with A+B+C < A+BS, the file has zero padding in range
1816	 *       [A+B, A+B+C]
1817	 *
1818	 *    |<     Block Size (BS)   >|
1819	 *    |DDDDDDDDDDDD0000000000000|
1820	 *    ^           ^        ^
1821	 *    A          A+B     A+B+C
1822	 *                       (EOF)
1823	 *
1824	 *    2) with A+B+C > A+BS, the file has zero padding in range
1825	 *       [A+B, A+BS]
1826	 *
1827	 *    |<     Block Size (BS)   >|<     Block Size (BS)    >|
1828	 *    |DDDDDDDDDDDD0000000000000|00000000000000000000000000|
1829	 *    ^           ^             ^           ^
1830	 *    A          A+B           A+BS       A+B+C
1831	 *                             (EOF)
1832	 *
1833	 *    D = Valid Data
1834	 *    0 = Zero Padding
1835	 *
1836	 * Note that this defeats the ability to chain the ioends of
1837	 * appending writes.
1838	 */
1839	wpc->ioend->io_size += len;
1840	if (wpc->ioend->io_offset + wpc->ioend->io_size > end_pos)
1841		wpc->ioend->io_size = end_pos - wpc->ioend->io_offset;
1842
1843	wbc_account_cgroup_owner(wbc, folio, len);
1844	return 0;
1845}
1846
1847static int iomap_writepage_map_blocks(struct iomap_writepage_ctx *wpc,
1848		struct writeback_control *wbc, struct folio *folio,
1849		struct inode *inode, u64 pos, u64 end_pos,
1850		unsigned dirty_len, unsigned *count)
1851{
1852	int error;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1853
1854	do {
1855		unsigned map_len;
 
 
 
 
 
 
 
 
1856
1857		error = wpc->ops->map_blocks(wpc, inode, pos, dirty_len);
1858		if (error)
1859			break;
1860		trace_iomap_writepage_map(inode, pos, dirty_len, &wpc->iomap);
 
 
 
 
 
 
 
 
 
 
1861
1862		map_len = min_t(u64, dirty_len,
1863			wpc->iomap.offset + wpc->iomap.length - pos);
1864		WARN_ON_ONCE(!folio->private && map_len < dirty_len);
1865
1866		switch (wpc->iomap.type) {
1867		case IOMAP_INLINE:
1868			WARN_ON_ONCE(1);
1869			error = -EIO;
1870			break;
1871		case IOMAP_HOLE:
1872			break;
1873		default:
1874			error = iomap_add_to_ioend(wpc, wbc, folio, inode, pos,
1875					end_pos, map_len);
1876			if (!error)
1877				(*count)++;
1878			break;
1879		}
1880		dirty_len -= map_len;
1881		pos += map_len;
1882	} while (dirty_len && !error);
1883
1884	/*
1885	 * We cannot cancel the ioend directly here on error.  We may have
1886	 * already set other pages under writeback and hence we have to run I/O
1887	 * completion to mark the error state of the pages under writeback
1888	 * appropriately.
1889	 *
1890	 * Just let the file system know what portion of the folio failed to
1891	 * map.
1892	 */
1893	if (error && wpc->ops->discard_folio)
1894		wpc->ops->discard_folio(folio, pos);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1895	return error;
1896}
1897
1898/*
1899 * Check interaction of the folio with the file end.
1900 *
1901 * If the folio is entirely beyond i_size, return false.  If it straddles
1902 * i_size, adjust end_pos and zero all data beyond i_size.
 
1903 */
1904static bool iomap_writepage_handle_eof(struct folio *folio, struct inode *inode,
1905		u64 *end_pos)
1906{
1907	u64 isize = i_size_read(inode);
 
 
 
 
 
1908
1909	if (*end_pos > isize) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1910		size_t poff = offset_in_folio(folio, isize);
1911		pgoff_t end_index = isize >> PAGE_SHIFT;
1912
1913		/*
1914		 * If the folio is entirely ouside of i_size, skip it.
1915		 *
1916		 * This can happen due to a truncate operation that is in
1917		 * progress and in that case truncate will finish it off once
1918		 * we've dropped the folio lock.
1919		 *
1920		 * Note that the pgoff_t used for end_index is an unsigned long.
1921		 * If the given offset is greater than 16TB on a 32-bit system,
1922		 * then if we checked if the folio is fully outside i_size with
1923		 * "if (folio->index >= end_index + 1)", "end_index + 1" would
1924		 * overflow and evaluate to 0.  Hence this folio would be
1925		 * redirtied and written out repeatedly, which would result in
1926		 * an infinite loop; the user program performing this operation
1927		 * would hang.  Instead, we can detect this situation by
1928		 * checking if the folio is totally beyond i_size or if its
1929		 * offset is just equal to the EOF.
1930		 */
1931		if (folio->index > end_index ||
1932		    (folio->index == end_index && poff == 0))
1933			return false;
1934
1935		/*
1936		 * The folio straddles i_size.
1937		 *
1938		 * It must be zeroed out on each and every writepage invocation
1939		 * because it may be mmapped:
1940		 *
1941		 *    A file is mapped in multiples of the page size.  For a
1942		 *    file that is not a multiple of the page size, the
1943		 *    remaining memory is zeroed when mapped, and writes to that
1944		 *    region are not written out to the file.
1945		 *
1946		 * Also adjust the end_pos to the end of file and skip writeback
1947		 * for all blocks entirely beyond i_size.
1948		 */
1949		folio_zero_segment(folio, poff, folio_size(folio));
1950		*end_pos = isize;
1951	}
1952
1953	return true;
1954}
1955
1956static int iomap_writepage_map(struct iomap_writepage_ctx *wpc,
1957		struct writeback_control *wbc, struct folio *folio)
1958{
1959	struct iomap_folio_state *ifs = folio->private;
1960	struct inode *inode = folio->mapping->host;
1961	u64 pos = folio_pos(folio);
1962	u64 end_pos = pos + folio_size(folio);
1963	u64 end_aligned = 0;
1964	unsigned count = 0;
1965	int error = 0;
1966	u32 rlen;
1967
1968	WARN_ON_ONCE(!folio_test_locked(folio));
1969	WARN_ON_ONCE(folio_test_dirty(folio));
1970	WARN_ON_ONCE(folio_test_writeback(folio));
1971
1972	trace_iomap_writepage(inode, pos, folio_size(folio));
1973
1974	if (!iomap_writepage_handle_eof(folio, inode, &end_pos)) {
1975		folio_unlock(folio);
1976		return 0;
1977	}
1978	WARN_ON_ONCE(end_pos <= pos);
1979
1980	if (i_blocks_per_folio(inode, folio) > 1) {
1981		if (!ifs) {
1982			ifs = ifs_alloc(inode, folio, 0);
1983			iomap_set_range_dirty(folio, 0, end_pos - pos);
1984		}
1985
1986		/*
1987		 * Keep the I/O completion handler from clearing the writeback
1988		 * bit until we have submitted all blocks by adding a bias to
1989		 * ifs->write_bytes_pending, which is dropped after submitting
1990		 * all blocks.
1991		 */
1992		WARN_ON_ONCE(atomic_read(&ifs->write_bytes_pending) != 0);
1993		atomic_inc(&ifs->write_bytes_pending);
1994	}
1995
1996	/*
1997	 * Set the writeback bit ASAP, as the I/O completion for the single
1998	 * block per folio case happen hit as soon as we're submitting the bio.
1999	 */
2000	folio_start_writeback(folio);
2001
2002	/*
2003	 * Walk through the folio to find dirty areas to write back.
2004	 */
2005	end_aligned = round_up(end_pos, i_blocksize(inode));
2006	while ((rlen = iomap_find_dirty_range(folio, &pos, end_aligned))) {
2007		error = iomap_writepage_map_blocks(wpc, wbc, folio, inode,
2008				pos, end_pos, rlen, &count);
2009		if (error)
2010			break;
2011		pos += rlen;
2012	}
2013
2014	if (count)
2015		wpc->nr_folios++;
2016
2017	/*
2018	 * We can have dirty bits set past end of file in page_mkwrite path
2019	 * while mapping the last partial folio. Hence it's better to clear
2020	 * all the dirty bits in the folio here.
2021	 */
2022	iomap_clear_range_dirty(folio, 0, folio_size(folio));
2023
2024	/*
2025	 * Usually the writeback bit is cleared by the I/O completion handler.
2026	 * But we may end up either not actually writing any blocks, or (when
2027	 * there are multiple blocks in a folio) all I/O might have finished
2028	 * already at this point.  In that case we need to clear the writeback
2029	 * bit ourselves right after unlocking the page.
2030	 */
2031	folio_unlock(folio);
2032	if (ifs) {
2033		if (atomic_dec_and_test(&ifs->write_bytes_pending))
2034			folio_end_writeback(folio);
2035	} else {
2036		if (!count)
2037			folio_end_writeback(folio);
2038	}
2039	mapping_set_error(inode->i_mapping, error);
2040	return error;
2041}
2042
2043int
2044iomap_writepages(struct address_space *mapping, struct writeback_control *wbc,
2045		struct iomap_writepage_ctx *wpc,
2046		const struct iomap_writeback_ops *ops)
2047{
2048	struct folio *folio = NULL;
2049	int error;
2050
2051	/*
2052	 * Writeback from reclaim context should never happen except in the case
2053	 * of a VM regression so warn about it and refuse to write the data.
2054	 */
2055	if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC | PF_KSWAPD)) ==
2056			PF_MEMALLOC))
2057		return -EIO;
2058
2059	wpc->ops = ops;
2060	while ((folio = writeback_iter(mapping, wbc, folio, &error)))
2061		error = iomap_writepage_map(wpc, wbc, folio);
2062	return iomap_submit_ioend(wpc, error);
 
2063}
2064EXPORT_SYMBOL_GPL(iomap_writepages);
2065
2066static int __init iomap_buffered_init(void)
2067{
2068	return bioset_init(&iomap_ioend_bioset, 4 * (PAGE_SIZE / SECTOR_SIZE),
2069			   offsetof(struct iomap_ioend, io_bio),
2070			   BIOSET_NEED_BVECS);
2071}
2072fs_initcall(iomap_buffered_init);
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (C) 2010 Red Hat, Inc.
   4 * Copyright (C) 2016-2019 Christoph Hellwig.
   5 */
   6#include <linux/module.h>
   7#include <linux/compiler.h>
   8#include <linux/fs.h>
   9#include <linux/iomap.h>
  10#include <linux/pagemap.h>
  11#include <linux/uio.h>
  12#include <linux/buffer_head.h>
  13#include <linux/dax.h>
  14#include <linux/writeback.h>
  15#include <linux/list_sort.h>
  16#include <linux/swap.h>
  17#include <linux/bio.h>
  18#include <linux/sched/signal.h>
  19#include <linux/migrate.h>
  20#include "trace.h"
  21
  22#include "../internal.h"
  23
  24#define IOEND_BATCH_SIZE	4096
  25
  26/*
  27 * Structure allocated for each folio when block size < folio size
  28 * to track sub-folio uptodate status and I/O completions.
  29 */
  30struct iomap_page {
  31	atomic_t		read_bytes_pending;
 
  32	atomic_t		write_bytes_pending;
  33	spinlock_t		uptodate_lock;
  34	unsigned long		uptodate[];
 
 
 
 
 
  35};
  36
  37static inline struct iomap_page *to_iomap_page(struct folio *folio)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  38{
  39	if (folio_test_private(folio))
  40		return folio_get_private(folio);
  41	return NULL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  42}
  43
  44static struct bio_set iomap_ioend_bioset;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  45
  46static struct iomap_page *
  47iomap_page_create(struct inode *inode, struct folio *folio, unsigned int flags)
  48{
  49	struct iomap_page *iop = to_iomap_page(folio);
  50	unsigned int nr_blocks = i_blocks_per_folio(inode, folio);
  51	gfp_t gfp;
  52
  53	if (iop || nr_blocks <= 1)
  54		return iop;
  55
  56	if (flags & IOMAP_NOWAIT)
  57		gfp = GFP_NOWAIT;
  58	else
  59		gfp = GFP_NOFS | __GFP_NOFAIL;
  60
  61	iop = kzalloc(struct_size(iop, uptodate, BITS_TO_LONGS(nr_blocks)),
  62		      gfp);
  63	if (iop) {
  64		spin_lock_init(&iop->uptodate_lock);
  65		if (folio_test_uptodate(folio))
  66			bitmap_fill(iop->uptodate, nr_blocks);
  67		folio_attach_private(folio, iop);
  68	}
  69	return iop;
 
 
 
 
 
 
 
 
 
 
  70}
  71
  72static void iomap_page_release(struct folio *folio)
  73{
  74	struct iomap_page *iop = folio_detach_private(folio);
  75	struct inode *inode = folio->mapping->host;
  76	unsigned int nr_blocks = i_blocks_per_folio(inode, folio);
  77
  78	if (!iop)
  79		return;
  80	WARN_ON_ONCE(atomic_read(&iop->read_bytes_pending));
  81	WARN_ON_ONCE(atomic_read(&iop->write_bytes_pending));
  82	WARN_ON_ONCE(bitmap_full(iop->uptodate, nr_blocks) !=
  83			folio_test_uptodate(folio));
  84	kfree(iop);
  85}
  86
  87/*
  88 * Calculate the range inside the folio that we actually need to read.
  89 */
  90static void iomap_adjust_read_range(struct inode *inode, struct folio *folio,
  91		loff_t *pos, loff_t length, size_t *offp, size_t *lenp)
  92{
  93	struct iomap_page *iop = to_iomap_page(folio);
  94	loff_t orig_pos = *pos;
  95	loff_t isize = i_size_read(inode);
  96	unsigned block_bits = inode->i_blkbits;
  97	unsigned block_size = (1 << block_bits);
  98	size_t poff = offset_in_folio(folio, *pos);
  99	size_t plen = min_t(loff_t, folio_size(folio) - poff, length);
 
 100	unsigned first = poff >> block_bits;
 101	unsigned last = (poff + plen - 1) >> block_bits;
 102
 103	/*
 104	 * If the block size is smaller than the page size, we need to check the
 105	 * per-block uptodate status and adjust the offset and length if needed
 106	 * to avoid reading in already uptodate ranges.
 107	 */
 108	if (iop) {
 109		unsigned int i;
 110
 111		/* move forward for each leading block marked uptodate */
 112		for (i = first; i <= last; i++) {
 113			if (!test_bit(i, iop->uptodate))
 114				break;
 115			*pos += block_size;
 116			poff += block_size;
 117			plen -= block_size;
 118			first++;
 119		}
 120
 121		/* truncate len if we find any trailing uptodate block(s) */
 122		for ( ; i <= last; i++) {
 123			if (test_bit(i, iop->uptodate)) {
 124				plen -= (last - i + 1) * block_size;
 125				last = i - 1;
 126				break;
 127			}
 128		}
 129	}
 130
 131	/*
 132	 * If the extent spans the block that contains the i_size, we need to
 133	 * handle both halves separately so that we properly zero data in the
 134	 * page cache for blocks that are entirely outside of i_size.
 135	 */
 136	if (orig_pos <= isize && orig_pos + length > isize) {
 137		unsigned end = offset_in_folio(folio, isize - 1) >> block_bits;
 138
 139		if (first <= end && last > end)
 140			plen -= (last - end) * block_size;
 141	}
 142
 143	*offp = poff;
 144	*lenp = plen;
 145}
 146
 147static void iomap_iop_set_range_uptodate(struct folio *folio,
 148		struct iomap_page *iop, size_t off, size_t len)
 149{
 150	struct inode *inode = folio->mapping->host;
 151	unsigned first = off >> inode->i_blkbits;
 152	unsigned last = (off + len - 1) >> inode->i_blkbits;
 153	unsigned long flags;
 154
 155	spin_lock_irqsave(&iop->uptodate_lock, flags);
 156	bitmap_set(iop->uptodate, first, last - first + 1);
 157	if (bitmap_full(iop->uptodate, i_blocks_per_folio(inode, folio)))
 158		folio_mark_uptodate(folio);
 159	spin_unlock_irqrestore(&iop->uptodate_lock, flags);
 160}
 161
 162static void iomap_set_range_uptodate(struct folio *folio,
 163		struct iomap_page *iop, size_t off, size_t len)
 164{
 165	if (iop)
 166		iomap_iop_set_range_uptodate(folio, iop, off, len);
 167	else
 168		folio_mark_uptodate(folio);
 169}
 170
 171static void iomap_finish_folio_read(struct folio *folio, size_t offset,
 172		size_t len, int error)
 173{
 174	struct iomap_page *iop = to_iomap_page(folio);
 175
 176	if (unlikely(error)) {
 177		folio_clear_uptodate(folio);
 178		folio_set_error(folio);
 179	} else {
 180		iomap_set_range_uptodate(folio, iop, offset, len);
 
 
 
 
 
 
 181	}
 182
 183	if (!iop || atomic_sub_and_test(len, &iop->read_bytes_pending))
 184		folio_unlock(folio);
 185}
 186
 187static void iomap_read_end_io(struct bio *bio)
 188{
 189	int error = blk_status_to_errno(bio->bi_status);
 190	struct folio_iter fi;
 191
 192	bio_for_each_folio_all(fi, bio)
 193		iomap_finish_folio_read(fi.folio, fi.offset, fi.length, error);
 194	bio_put(bio);
 195}
 196
 197struct iomap_readpage_ctx {
 198	struct folio		*cur_folio;
 199	bool			cur_folio_in_bio;
 200	struct bio		*bio;
 201	struct readahead_control *rac;
 202};
 203
 204/**
 205 * iomap_read_inline_data - copy inline data into the page cache
 206 * @iter: iteration structure
 207 * @folio: folio to copy to
 208 *
 209 * Copy the inline data in @iter into @folio and zero out the rest of the folio.
 210 * Only a single IOMAP_INLINE extent is allowed at the end of each file.
 211 * Returns zero for success to complete the read, or the usual negative errno.
 212 */
 213static int iomap_read_inline_data(const struct iomap_iter *iter,
 214		struct folio *folio)
 215{
 216	struct iomap_page *iop;
 217	const struct iomap *iomap = iomap_iter_srcmap(iter);
 218	size_t size = i_size_read(iter->inode) - iomap->offset;
 219	size_t poff = offset_in_page(iomap->offset);
 220	size_t offset = offset_in_folio(folio, iomap->offset);
 221	void *addr;
 222
 223	if (folio_test_uptodate(folio))
 224		return 0;
 225
 226	if (WARN_ON_ONCE(size > PAGE_SIZE - poff))
 227		return -EIO;
 228	if (WARN_ON_ONCE(size > PAGE_SIZE -
 229			 offset_in_page(iomap->inline_data)))
 230		return -EIO;
 231	if (WARN_ON_ONCE(size > iomap->length))
 232		return -EIO;
 233	if (offset > 0)
 234		iop = iomap_page_create(iter->inode, folio, iter->flags);
 235	else
 236		iop = to_iomap_page(folio);
 237
 238	addr = kmap_local_folio(folio, offset);
 239	memcpy(addr, iomap->inline_data, size);
 240	memset(addr + size, 0, PAGE_SIZE - poff - size);
 241	kunmap_local(addr);
 242	iomap_set_range_uptodate(folio, iop, offset, PAGE_SIZE - poff);
 243	return 0;
 244}
 245
 246static inline bool iomap_block_needs_zeroing(const struct iomap_iter *iter,
 247		loff_t pos)
 248{
 249	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 250
 251	return srcmap->type != IOMAP_MAPPED ||
 252		(srcmap->flags & IOMAP_F_NEW) ||
 253		pos >= i_size_read(iter->inode);
 254}
 255
 256static loff_t iomap_readpage_iter(const struct iomap_iter *iter,
 257		struct iomap_readpage_ctx *ctx, loff_t offset)
 258{
 259	const struct iomap *iomap = &iter->iomap;
 260	loff_t pos = iter->pos + offset;
 261	loff_t length = iomap_length(iter) - offset;
 262	struct folio *folio = ctx->cur_folio;
 263	struct iomap_page *iop;
 264	loff_t orig_pos = pos;
 265	size_t poff, plen;
 266	sector_t sector;
 267
 268	if (iomap->type == IOMAP_INLINE)
 269		return iomap_read_inline_data(iter, folio);
 270
 271	/* zero post-eof blocks as the page may be mapped */
 272	iop = iomap_page_create(iter->inode, folio, iter->flags);
 273	iomap_adjust_read_range(iter->inode, folio, &pos, length, &poff, &plen);
 274	if (plen == 0)
 275		goto done;
 276
 277	if (iomap_block_needs_zeroing(iter, pos)) {
 278		folio_zero_range(folio, poff, plen);
 279		iomap_set_range_uptodate(folio, iop, poff, plen);
 280		goto done;
 281	}
 282
 283	ctx->cur_folio_in_bio = true;
 284	if (iop)
 285		atomic_add(plen, &iop->read_bytes_pending);
 
 
 
 286
 287	sector = iomap_sector(iomap, pos);
 288	if (!ctx->bio ||
 289	    bio_end_sector(ctx->bio) != sector ||
 290	    !bio_add_folio(ctx->bio, folio, plen, poff)) {
 291		gfp_t gfp = mapping_gfp_constraint(folio->mapping, GFP_KERNEL);
 292		gfp_t orig_gfp = gfp;
 293		unsigned int nr_vecs = DIV_ROUND_UP(length, PAGE_SIZE);
 294
 295		if (ctx->bio)
 296			submit_bio(ctx->bio);
 297
 298		if (ctx->rac) /* same as readahead_gfp_mask */
 299			gfp |= __GFP_NORETRY | __GFP_NOWARN;
 300		ctx->bio = bio_alloc(iomap->bdev, bio_max_segs(nr_vecs),
 301				     REQ_OP_READ, gfp);
 302		/*
 303		 * If the bio_alloc fails, try it again for a single page to
 304		 * avoid having to deal with partial page reads.  This emulates
 305		 * what do_mpage_read_folio does.
 306		 */
 307		if (!ctx->bio) {
 308			ctx->bio = bio_alloc(iomap->bdev, 1, REQ_OP_READ,
 309					     orig_gfp);
 310		}
 311		if (ctx->rac)
 312			ctx->bio->bi_opf |= REQ_RAHEAD;
 313		ctx->bio->bi_iter.bi_sector = sector;
 314		ctx->bio->bi_end_io = iomap_read_end_io;
 315		bio_add_folio(ctx->bio, folio, plen, poff);
 316	}
 317
 318done:
 319	/*
 320	 * Move the caller beyond our range so that it keeps making progress.
 321	 * For that, we have to include any leading non-uptodate ranges, but
 322	 * we can skip trailing ones as they will be handled in the next
 323	 * iteration.
 324	 */
 325	return pos - orig_pos + plen;
 326}
 327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 328int iomap_read_folio(struct folio *folio, const struct iomap_ops *ops)
 329{
 330	struct iomap_iter iter = {
 331		.inode		= folio->mapping->host,
 332		.pos		= folio_pos(folio),
 333		.len		= folio_size(folio),
 334	};
 335	struct iomap_readpage_ctx ctx = {
 336		.cur_folio	= folio,
 337	};
 338	int ret;
 339
 340	trace_iomap_readpage(iter.inode, 1);
 341
 342	while ((ret = iomap_iter(&iter, ops)) > 0)
 343		iter.processed = iomap_readpage_iter(&iter, &ctx, 0);
 344
 345	if (ret < 0)
 346		folio_set_error(folio);
 347
 348	if (ctx.bio) {
 349		submit_bio(ctx.bio);
 350		WARN_ON_ONCE(!ctx.cur_folio_in_bio);
 351	} else {
 352		WARN_ON_ONCE(ctx.cur_folio_in_bio);
 353		folio_unlock(folio);
 354	}
 355
 356	/*
 357	 * Just like mpage_readahead and block_read_full_folio, we always
 358	 * return 0 and just set the folio error flag on errors.  This
 359	 * should be cleaned up throughout the stack eventually.
 360	 */
 361	return 0;
 362}
 363EXPORT_SYMBOL_GPL(iomap_read_folio);
 364
 365static loff_t iomap_readahead_iter(const struct iomap_iter *iter,
 366		struct iomap_readpage_ctx *ctx)
 367{
 368	loff_t length = iomap_length(iter);
 369	loff_t done, ret;
 370
 371	for (done = 0; done < length; done += ret) {
 372		if (ctx->cur_folio &&
 373		    offset_in_folio(ctx->cur_folio, iter->pos + done) == 0) {
 374			if (!ctx->cur_folio_in_bio)
 375				folio_unlock(ctx->cur_folio);
 376			ctx->cur_folio = NULL;
 377		}
 378		if (!ctx->cur_folio) {
 379			ctx->cur_folio = readahead_folio(ctx->rac);
 380			ctx->cur_folio_in_bio = false;
 381		}
 382		ret = iomap_readpage_iter(iter, ctx, done);
 383		if (ret <= 0)
 384			return ret;
 385	}
 386
 387	return done;
 388}
 389
 390/**
 391 * iomap_readahead - Attempt to read pages from a file.
 392 * @rac: Describes the pages to be read.
 393 * @ops: The operations vector for the filesystem.
 394 *
 395 * This function is for filesystems to call to implement their readahead
 396 * address_space operation.
 397 *
 398 * Context: The @ops callbacks may submit I/O (eg to read the addresses of
 399 * blocks from disc), and may wait for it.  The caller may be trying to
 400 * access a different page, and so sleeping excessively should be avoided.
 401 * It may allocate memory, but should avoid costly allocations.  This
 402 * function is called with memalloc_nofs set, so allocations will not cause
 403 * the filesystem to be reentered.
 404 */
 405void iomap_readahead(struct readahead_control *rac, const struct iomap_ops *ops)
 406{
 407	struct iomap_iter iter = {
 408		.inode	= rac->mapping->host,
 409		.pos	= readahead_pos(rac),
 410		.len	= readahead_length(rac),
 411	};
 412	struct iomap_readpage_ctx ctx = {
 413		.rac	= rac,
 414	};
 415
 416	trace_iomap_readahead(rac->mapping->host, readahead_count(rac));
 417
 418	while (iomap_iter(&iter, ops) > 0)
 419		iter.processed = iomap_readahead_iter(&iter, &ctx);
 420
 421	if (ctx.bio)
 422		submit_bio(ctx.bio);
 423	if (ctx.cur_folio) {
 424		if (!ctx.cur_folio_in_bio)
 425			folio_unlock(ctx.cur_folio);
 426	}
 427}
 428EXPORT_SYMBOL_GPL(iomap_readahead);
 429
 430/*
 431 * iomap_is_partially_uptodate checks whether blocks within a folio are
 432 * uptodate or not.
 433 *
 434 * Returns true if all blocks which correspond to the specified part
 435 * of the folio are uptodate.
 436 */
 437bool iomap_is_partially_uptodate(struct folio *folio, size_t from, size_t count)
 438{
 439	struct iomap_page *iop = to_iomap_page(folio);
 440	struct inode *inode = folio->mapping->host;
 441	unsigned first, last, i;
 442
 443	if (!iop)
 444		return false;
 445
 446	/* Caller's range may extend past the end of this folio */
 447	count = min(folio_size(folio) - from, count);
 448
 449	/* First and last blocks in range within folio */
 450	first = from >> inode->i_blkbits;
 451	last = (from + count - 1) >> inode->i_blkbits;
 452
 453	for (i = first; i <= last; i++)
 454		if (!test_bit(i, iop->uptodate))
 455			return false;
 456	return true;
 457}
 458EXPORT_SYMBOL_GPL(iomap_is_partially_uptodate);
 459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 460bool iomap_release_folio(struct folio *folio, gfp_t gfp_flags)
 461{
 462	trace_iomap_release_folio(folio->mapping->host, folio_pos(folio),
 463			folio_size(folio));
 464
 465	/*
 466	 * mm accommodates an old ext3 case where clean folios might
 467	 * not have had the dirty bit cleared.  Thus, it can send actual
 468	 * dirty folios to ->release_folio() via shrink_active_list();
 469	 * skip those here.
 470	 */
 471	if (folio_test_dirty(folio) || folio_test_writeback(folio))
 472		return false;
 473	iomap_page_release(folio);
 474	return true;
 475}
 476EXPORT_SYMBOL_GPL(iomap_release_folio);
 477
 478void iomap_invalidate_folio(struct folio *folio, size_t offset, size_t len)
 479{
 480	trace_iomap_invalidate_folio(folio->mapping->host,
 481					folio_pos(folio) + offset, len);
 482
 483	/*
 484	 * If we're invalidating the entire folio, clear the dirty state
 485	 * from it and release it to avoid unnecessary buildup of the LRU.
 486	 */
 487	if (offset == 0 && len == folio_size(folio)) {
 488		WARN_ON_ONCE(folio_test_writeback(folio));
 489		folio_cancel_dirty(folio);
 490		iomap_page_release(folio);
 491	} else if (folio_test_large(folio)) {
 492		/* Must release the iop so the page can be split */
 493		WARN_ON_ONCE(!folio_test_uptodate(folio) &&
 494			     folio_test_dirty(folio));
 495		iomap_page_release(folio);
 496	}
 497}
 498EXPORT_SYMBOL_GPL(iomap_invalidate_folio);
 499
 
 
 
 
 
 
 
 
 
 
 
 500static void
 501iomap_write_failed(struct inode *inode, loff_t pos, unsigned len)
 502{
 503	loff_t i_size = i_size_read(inode);
 504
 505	/*
 506	 * Only truncate newly allocated pages beyoned EOF, even if the
 507	 * write started inside the existing inode size.
 508	 */
 509	if (pos + len > i_size)
 510		truncate_pagecache_range(inode, max(pos, i_size),
 511					 pos + len - 1);
 512}
 513
 514static int iomap_read_folio_sync(loff_t block_start, struct folio *folio,
 515		size_t poff, size_t plen, const struct iomap *iomap)
 516{
 517	struct bio_vec bvec;
 518	struct bio bio;
 519
 520	bio_init(&bio, iomap->bdev, &bvec, 1, REQ_OP_READ);
 521	bio.bi_iter.bi_sector = iomap_sector(iomap, block_start);
 522	bio_add_folio(&bio, folio, plen, poff);
 523	return submit_bio_wait(&bio);
 524}
 525
 526static int __iomap_write_begin(const struct iomap_iter *iter, loff_t pos,
 527		size_t len, struct folio *folio)
 528{
 529	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 530	struct iomap_page *iop;
 531	loff_t block_size = i_blocksize(iter->inode);
 532	loff_t block_start = round_down(pos, block_size);
 533	loff_t block_end = round_up(pos + len, block_size);
 534	unsigned int nr_blocks = i_blocks_per_folio(iter->inode, folio);
 535	size_t from = offset_in_folio(folio, pos), to = from + len;
 536	size_t poff, plen;
 537
 538	if (folio_test_uptodate(folio))
 
 
 
 
 
 
 
 
 539		return 0;
 540	folio_clear_error(folio);
 541
 542	iop = iomap_page_create(iter->inode, folio, iter->flags);
 543	if ((iter->flags & IOMAP_NOWAIT) && !iop && nr_blocks > 1)
 544		return -EAGAIN;
 545
 
 
 
 546	do {
 547		iomap_adjust_read_range(iter->inode, folio, &block_start,
 548				block_end - block_start, &poff, &plen);
 549		if (plen == 0)
 550			break;
 551
 552		if (!(iter->flags & IOMAP_UNSHARE) &&
 553		    (from <= poff || from >= poff + plen) &&
 554		    (to <= poff || to >= poff + plen))
 555			continue;
 556
 557		if (iomap_block_needs_zeroing(iter, block_start)) {
 558			if (WARN_ON_ONCE(iter->flags & IOMAP_UNSHARE))
 559				return -EIO;
 560			folio_zero_segments(folio, poff, from, to, poff + plen);
 561		} else {
 562			int status;
 563
 564			if (iter->flags & IOMAP_NOWAIT)
 565				return -EAGAIN;
 566
 567			status = iomap_read_folio_sync(block_start, folio,
 568					poff, plen, srcmap);
 569			if (status)
 570				return status;
 571		}
 572		iomap_set_range_uptodate(folio, iop, poff, plen);
 573	} while ((block_start += plen) < block_end);
 574
 575	return 0;
 576}
 577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 578static int iomap_write_begin_inline(const struct iomap_iter *iter,
 579		struct folio *folio)
 580{
 581	/* needs more work for the tailpacking case; disable for now */
 582	if (WARN_ON_ONCE(iomap_iter_srcmap(iter)->offset != 0))
 583		return -EIO;
 584	return iomap_read_inline_data(iter, folio);
 585}
 586
 587static int iomap_write_begin(struct iomap_iter *iter, loff_t pos,
 588		size_t len, struct folio **foliop)
 589{
 590	const struct iomap_page_ops *page_ops = iter->iomap.page_ops;
 591	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 592	struct folio *folio;
 593	unsigned fgp = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE | FGP_NOFS;
 594	int status = 0;
 595
 596	if (iter->flags & IOMAP_NOWAIT)
 597		fgp |= FGP_NOWAIT;
 598
 599	BUG_ON(pos + len > iter->iomap.offset + iter->iomap.length);
 600	if (srcmap != &iter->iomap)
 601		BUG_ON(pos + len > srcmap->offset + srcmap->length);
 602
 603	if (fatal_signal_pending(current))
 604		return -EINTR;
 605
 606	if (!mapping_large_folio_support(iter->inode->i_mapping))
 607		len = min_t(size_t, len, PAGE_SIZE - offset_in_page(pos));
 608
 609	if (page_ops && page_ops->page_prepare) {
 610		status = page_ops->page_prepare(iter->inode, pos, len);
 611		if (status)
 612			return status;
 613	}
 614
 615	folio = __filemap_get_folio(iter->inode->i_mapping, pos >> PAGE_SHIFT,
 616			fgp, mapping_gfp_mask(iter->inode->i_mapping));
 617	if (!folio) {
 618		status = (iter->flags & IOMAP_NOWAIT) ? -EAGAIN : -ENOMEM;
 619		goto out_no_page;
 620	}
 621
 622	/*
 623	 * Now we have a locked folio, before we do anything with it we need to
 624	 * check that the iomap we have cached is not stale. The inode extent
 625	 * mapping can change due to concurrent IO in flight (e.g.
 626	 * IOMAP_UNWRITTEN state can change and memory reclaim could have
 627	 * reclaimed a previously partially written page at this index after IO
 628	 * completion before this write reaches this file offset) and hence we
 629	 * could do the wrong thing here (zero a page range incorrectly or fail
 630	 * to zero) and corrupt data.
 631	 */
 632	if (page_ops && page_ops->iomap_valid) {
 633		bool iomap_valid = page_ops->iomap_valid(iter->inode,
 634							&iter->iomap);
 635		if (!iomap_valid) {
 636			iter->iomap.flags |= IOMAP_F_STALE;
 637			status = 0;
 638			goto out_unlock;
 639		}
 640	}
 641
 642	if (pos + len > folio_pos(folio) + folio_size(folio))
 643		len = folio_pos(folio) + folio_size(folio) - pos;
 644
 645	if (srcmap->type == IOMAP_INLINE)
 646		status = iomap_write_begin_inline(iter, folio);
 647	else if (srcmap->flags & IOMAP_F_BUFFER_HEAD)
 648		status = __block_write_begin_int(folio, pos, len, NULL, srcmap);
 649	else
 650		status = __iomap_write_begin(iter, pos, len, folio);
 651
 652	if (unlikely(status))
 653		goto out_unlock;
 654
 655	*foliop = folio;
 656	return 0;
 657
 658out_unlock:
 659	folio_unlock(folio);
 660	folio_put(folio);
 661	iomap_write_failed(iter->inode, pos, len);
 662
 663out_no_page:
 664	if (page_ops && page_ops->page_done)
 665		page_ops->page_done(iter->inode, pos, 0, NULL);
 666	return status;
 667}
 668
 669static size_t __iomap_write_end(struct inode *inode, loff_t pos, size_t len,
 670		size_t copied, struct folio *folio)
 671{
 672	struct iomap_page *iop = to_iomap_page(folio);
 673	flush_dcache_folio(folio);
 674
 675	/*
 676	 * The blocks that were entirely written will now be uptodate, so we
 677	 * don't have to worry about a read_folio reading them and overwriting a
 678	 * partial write.  However, if we've encountered a short write and only
 679	 * partially written into a block, it will not be marked uptodate, so a
 680	 * read_folio might come in and destroy our partial write.
 681	 *
 682	 * Do the simplest thing and just treat any short write to a
 683	 * non-uptodate page as a zero-length write, and force the caller to
 684	 * redo the whole thing.
 685	 */
 686	if (unlikely(copied < len && !folio_test_uptodate(folio)))
 687		return 0;
 688	iomap_set_range_uptodate(folio, iop, offset_in_folio(folio, pos), len);
 
 689	filemap_dirty_folio(inode->i_mapping, folio);
 690	return copied;
 691}
 692
 693static size_t iomap_write_end_inline(const struct iomap_iter *iter,
 694		struct folio *folio, loff_t pos, size_t copied)
 695{
 696	const struct iomap *iomap = &iter->iomap;
 697	void *addr;
 698
 699	WARN_ON_ONCE(!folio_test_uptodate(folio));
 700	BUG_ON(!iomap_inline_data_valid(iomap));
 701
 702	flush_dcache_folio(folio);
 703	addr = kmap_local_folio(folio, pos);
 704	memcpy(iomap_inline_data(iomap, pos), addr, copied);
 705	kunmap_local(addr);
 706
 707	mark_inode_dirty(iter->inode);
 708	return copied;
 709}
 710
 711/* Returns the number of bytes copied.  May be 0.  Cannot be an errno. */
 712static size_t iomap_write_end(struct iomap_iter *iter, loff_t pos, size_t len,
 
 
 
 713		size_t copied, struct folio *folio)
 714{
 715	const struct iomap_page_ops *page_ops = iter->iomap.page_ops;
 716	const struct iomap *srcmap = iomap_iter_srcmap(iter);
 717	loff_t old_size = iter->inode->i_size;
 718	size_t ret;
 719
 720	if (srcmap->type == IOMAP_INLINE) {
 721		ret = iomap_write_end_inline(iter, folio, pos, copied);
 722	} else if (srcmap->flags & IOMAP_F_BUFFER_HEAD) {
 723		ret = block_write_end(NULL, iter->inode->i_mapping, pos, len,
 724				copied, &folio->page, NULL);
 725	} else {
 726		ret = __iomap_write_end(iter->inode, pos, len, copied, folio);
 727	}
 728
 729	/*
 730	 * Update the in-memory inode size after copying the data into the page
 731	 * cache.  It's up to the file system to write the updated size to disk,
 732	 * preferably after I/O completion so that no stale data is exposed.
 733	 */
 734	if (pos + ret > old_size) {
 735		i_size_write(iter->inode, pos + ret);
 736		iter->iomap.flags |= IOMAP_F_SIZE_CHANGED;
 737	}
 738	folio_unlock(folio);
 739
 740	if (old_size < pos)
 741		pagecache_isize_extended(iter->inode, old_size, pos);
 742	if (page_ops && page_ops->page_done)
 743		page_ops->page_done(iter->inode, pos, ret, &folio->page);
 744	folio_put(folio);
 745
 746	if (ret < len)
 747		iomap_write_failed(iter->inode, pos + ret, len - ret);
 748	return ret;
 749}
 750
 751static loff_t iomap_write_iter(struct iomap_iter *iter, struct iov_iter *i)
 752{
 753	loff_t length = iomap_length(iter);
 754	loff_t pos = iter->pos;
 755	ssize_t written = 0;
 756	long status = 0;
 757	struct address_space *mapping = iter->inode->i_mapping;
 
 758	unsigned int bdp_flags = (iter->flags & IOMAP_NOWAIT) ? BDP_ASYNC : 0;
 759
 760	do {
 761		struct folio *folio;
 762		struct page *page;
 763		unsigned long offset;	/* Offset into pagecache page */
 764		unsigned long bytes;	/* Bytes to write to page */
 765		size_t copied;		/* Bytes copied from user */
 
 766
 767		offset = offset_in_page(pos);
 768		bytes = min_t(unsigned long, PAGE_SIZE - offset,
 769						iov_iter_count(i));
 770again:
 771		status = balance_dirty_pages_ratelimited_flags(mapping,
 772							       bdp_flags);
 773		if (unlikely(status))
 774			break;
 775
 776		if (bytes > length)
 777			bytes = length;
 778
 779		/*
 780		 * Bring in the user page that we'll copy from _first_.
 781		 * Otherwise there's a nasty deadlock on copying from the
 782		 * same page as we're writing to, without it being marked
 783		 * up-to-date.
 784		 *
 785		 * For async buffered writes the assumption is that the user
 786		 * page has already been faulted in. This can be optimized by
 787		 * faulting the user page.
 788		 */
 789		if (unlikely(fault_in_iov_iter_readable(i, bytes) == bytes)) {
 790			status = -EFAULT;
 791			break;
 792		}
 793
 794		status = iomap_write_begin(iter, pos, bytes, &folio);
 795		if (unlikely(status))
 
 796			break;
 
 797		if (iter->iomap.flags & IOMAP_F_STALE)
 798			break;
 799
 800		page = folio_file_page(folio, pos >> PAGE_SHIFT);
 
 
 
 801		if (mapping_writably_mapped(mapping))
 802			flush_dcache_page(page);
 803
 804		copied = copy_page_from_iter_atomic(page, offset, bytes, i);
 
 
 805
 806		status = iomap_write_end(iter, pos, bytes, copied, folio);
 
 
 
 
 
 
 
 
 
 
 
 
 807
 808		if (unlikely(copied != status))
 809			iov_iter_revert(i, copied - status);
 810
 811		cond_resched();
 812		if (unlikely(status == 0)) {
 813			/*
 814			 * A short copy made iomap_write_end() reject the
 815			 * thing entirely.  Might be memory poisoning
 816			 * halfway through, might be a race with munmap,
 817			 * might be severe memory pressure.
 818			 */
 819			if (copied)
 
 
 
 
 
 820				bytes = copied;
 821			goto again;
 
 
 
 
 
 822		}
 823		pos += status;
 824		written += status;
 825		length -= status;
 826	} while (iov_iter_count(i) && length);
 827
 828	if (status == -EAGAIN) {
 829		iov_iter_revert(i, written);
 830		return -EAGAIN;
 831	}
 832	return written ? written : status;
 833}
 834
 835ssize_t
 836iomap_file_buffered_write(struct kiocb *iocb, struct iov_iter *i,
 837		const struct iomap_ops *ops)
 838{
 839	struct iomap_iter iter = {
 840		.inode		= iocb->ki_filp->f_mapping->host,
 841		.pos		= iocb->ki_pos,
 842		.len		= iov_iter_count(i),
 843		.flags		= IOMAP_WRITE,
 
 844	};
 845	int ret;
 846
 847	if (iocb->ki_flags & IOCB_NOWAIT)
 848		iter.flags |= IOMAP_NOWAIT;
 849
 850	while ((ret = iomap_iter(&iter, ops)) > 0)
 851		iter.processed = iomap_write_iter(&iter, i);
 852	if (iter.pos == iocb->ki_pos)
 
 853		return ret;
 854	return iter.pos - iocb->ki_pos;
 
 
 855}
 856EXPORT_SYMBOL_GPL(iomap_file_buffered_write);
 857
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 858/*
 859 * Scan the data range passed to us for dirty page cache folios. If we find a
 860 * dirty folio, punch out the preceeding range and update the offset from which
 861 * the next punch will start from.
 862 *
 863 * We can punch out storage reservations under clean pages because they either
 864 * contain data that has been written back - in which case the delalloc punch
 865 * over that range is a no-op - or they have been read faults in which case they
 866 * contain zeroes and we can remove the delalloc backing range and any new
 867 * writes to those pages will do the normal hole filling operation...
 868 *
 869 * This makes the logic simple: we only need to keep the delalloc extents only
 870 * over the dirty ranges of the page cache.
 871 *
 872 * This function uses [start_byte, end_byte) intervals (i.e. open ended) to
 873 * simplify range iterations.
 874 */
 875static int iomap_write_delalloc_scan(struct inode *inode,
 876		loff_t *punch_start_byte, loff_t start_byte, loff_t end_byte,
 877		int (*punch)(struct inode *inode, loff_t offset, loff_t length))
 878{
 879	while (start_byte < end_byte) {
 880		struct folio	*folio;
 881
 882		/* grab locked page */
 883		folio = filemap_lock_folio(inode->i_mapping,
 884				start_byte >> PAGE_SHIFT);
 885		if (!folio) {
 886			start_byte = ALIGN_DOWN(start_byte, PAGE_SIZE) +
 887					PAGE_SIZE;
 888			continue;
 889		}
 890
 891		/* if dirty, punch up to offset */
 892		if (folio_test_dirty(folio)) {
 893			if (start_byte > *punch_start_byte) {
 894				int	error;
 895
 896				error = punch(inode, *punch_start_byte,
 897						start_byte - *punch_start_byte);
 898				if (error) {
 899					folio_unlock(folio);
 900					folio_put(folio);
 901					return error;
 902				}
 903			}
 904
 905			/*
 906			 * Make sure the next punch start is correctly bound to
 907			 * the end of this data range, not the end of the folio.
 908			 */
 909			*punch_start_byte = min_t(loff_t, end_byte,
 910					folio_next_index(folio) << PAGE_SHIFT);
 911		}
 912
 913		/* move offset to start of next folio in range */
 914		start_byte = folio_next_index(folio) << PAGE_SHIFT;
 915		folio_unlock(folio);
 916		folio_put(folio);
 917	}
 918	return 0;
 919}
 920
 921/*
 
 
 
 
 
 
 
 
 922 * Punch out all the delalloc blocks in the range given except for those that
 923 * have dirty data still pending in the page cache - those are going to be
 924 * written and so must still retain the delalloc backing for writeback.
 925 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 926 * As we are scanning the page cache for data, we don't need to reimplement the
 927 * wheel - mapping_seek_hole_data() does exactly what we need to identify the
 928 * start and end of data ranges correctly even for sub-folio block sizes. This
 929 * byte range based iteration is especially convenient because it means we
 930 * don't have to care about variable size folios, nor where the start or end of
 931 * the data range lies within a folio, if they lie within the same folio or even
 932 * if there are multiple discontiguous data ranges within the folio.
 933 *
 934 * It should be noted that mapping_seek_hole_data() is not aware of EOF, and so
 935 * can return data ranges that exist in the cache beyond EOF. e.g. a page fault
 936 * spanning EOF will initialise the post-EOF data to zeroes and mark it up to
 937 * date. A write page fault can then mark it dirty. If we then fail a write()
 938 * beyond EOF into that up to date cached range, we allocate a delalloc block
 939 * beyond EOF and then have to punch it out. Because the range is up to date,
 940 * mapping_seek_hole_data() will return it, and we will skip the punch because
 941 * the folio is dirty. THis is incorrect - we always need to punch out delalloc
 942 * beyond EOF in this case as writeback will never write back and covert that
 943 * delalloc block beyond EOF. Hence we limit the cached data scan range to EOF,
 944 * resulting in always punching out the range from the EOF to the end of the
 945 * range the iomap spans.
 946 *
 947 * Intervals are of the form [start_byte, end_byte) (i.e. open ended) because it
 948 * matches the intervals returned by mapping_seek_hole_data(). i.e. SEEK_DATA
 949 * returns the start of a data range (start_byte), and SEEK_HOLE(start_byte)
 950 * returns the end of the data range (data_end). Using closed intervals would
 951 * require sprinkling this code with magic "+ 1" and "- 1" arithmetic and expose
 952 * the code to subtle off-by-one bugs....
 953 */
 954static int iomap_write_delalloc_release(struct inode *inode,
 955		loff_t start_byte, loff_t end_byte,
 956		int (*punch)(struct inode *inode, loff_t pos, loff_t length))
 957{
 958	loff_t punch_start_byte = start_byte;
 959	loff_t scan_end_byte = min(i_size_read(inode), end_byte);
 960	int error = 0;
 961
 962	/*
 963	 * Lock the mapping to avoid races with page faults re-instantiating
 964	 * folios and dirtying them via ->page_mkwrite whilst we walk the
 965	 * cache and perform delalloc extent removal. Failing to do this can
 966	 * leave dirty pages with no space reservation in the cache.
 967	 */
 968	filemap_invalidate_lock(inode->i_mapping);
 
 969	while (start_byte < scan_end_byte) {
 970		loff_t		data_end;
 971
 972		start_byte = mapping_seek_hole_data(inode->i_mapping,
 973				start_byte, scan_end_byte, SEEK_DATA);
 974		/*
 975		 * If there is no more data to scan, all that is left is to
 976		 * punch out the remaining range.
 
 
 
 
 977		 */
 978		if (start_byte == -ENXIO || start_byte == scan_end_byte)
 979			break;
 980		if (start_byte < 0) {
 981			error = start_byte;
 982			goto out_unlock;
 983		}
 984		WARN_ON_ONCE(start_byte < punch_start_byte);
 985		WARN_ON_ONCE(start_byte > scan_end_byte);
 986
 987		/*
 988		 * We find the end of this contiguous cached data range by
 989		 * seeking from start_byte to the beginning of the next hole.
 990		 */
 991		data_end = mapping_seek_hole_data(inode->i_mapping, start_byte,
 992				scan_end_byte, SEEK_HOLE);
 993		if (data_end < 0) {
 994			error = data_end;
 995			goto out_unlock;
 996		}
 997		WARN_ON_ONCE(data_end <= start_byte);
 
 
 
 
 
 
 998		WARN_ON_ONCE(data_end > scan_end_byte);
 999
1000		error = iomap_write_delalloc_scan(inode, &punch_start_byte,
1001				start_byte, data_end, punch);
1002		if (error)
1003			goto out_unlock;
1004
1005		/* The next data search starts at the end of this one. */
1006		start_byte = data_end;
1007	}
1008
1009	if (punch_start_byte < end_byte)
1010		error = punch(inode, punch_start_byte,
1011				end_byte - punch_start_byte);
1012out_unlock:
1013	filemap_invalidate_unlock(inode->i_mapping);
1014	return error;
1015}
1016
1017/*
1018 * When a short write occurs, the filesystem may need to remove reserved space
1019 * that was allocated in ->iomap_begin from it's ->iomap_end method. For
1020 * filesystems that use delayed allocation, we need to punch out delalloc
1021 * extents from the range that are not dirty in the page cache. As the write can
1022 * race with page faults, there can be dirty pages over the delalloc extent
1023 * outside the range of a short write but still within the delalloc extent
1024 * allocated for this iomap.
1025 *
1026 * This function uses [start_byte, end_byte) intervals (i.e. open ended) to
1027 * simplify range iterations.
1028 *
1029 * The punch() callback *must* only punch delalloc extents in the range passed
1030 * to it. It must skip over all other types of extents in the range and leave
1031 * them completely unchanged. It must do this punch atomically with respect to
1032 * other extent modifications.
1033 *
1034 * The punch() callback may be called with a folio locked to prevent writeback
1035 * extent allocation racing at the edge of the range we are currently punching.
1036 * The locked folio may or may not cover the range being punched, so it is not
1037 * safe for the punch() callback to lock folios itself.
1038 *
1039 * Lock order is:
1040 *
1041 * inode->i_rwsem (shared or exclusive)
1042 *   inode->i_mapping->invalidate_lock (exclusive)
1043 *     folio_lock()
1044 *       ->punch
1045 *         internal filesystem allocation lock
1046 */
1047int iomap_file_buffered_write_punch_delalloc(struct inode *inode,
1048		struct iomap *iomap, loff_t pos, loff_t length,
1049		ssize_t written,
1050		int (*punch)(struct inode *inode, loff_t pos, loff_t length))
1051{
1052	loff_t			start_byte;
1053	loff_t			end_byte;
1054	int			blocksize = i_blocksize(inode);
1055
1056	if (iomap->type != IOMAP_DELALLOC)
1057		return 0;
1058
1059	/* If we didn't reserve the blocks, we're not allowed to punch them. */
1060	if (!(iomap->flags & IOMAP_F_NEW))
1061		return 0;
1062
1063	/*
1064	 * start_byte refers to the first unused block after a short write. If
1065	 * nothing was written, round offset down to point at the first block in
1066	 * the range.
1067	 */
1068	if (unlikely(!written))
1069		start_byte = round_down(pos, blocksize);
1070	else
1071		start_byte = round_up(pos + written, blocksize);
1072	end_byte = round_up(pos + length, blocksize);
1073
1074	/* Nothing to do if we've written the entire delalloc extent */
1075	if (start_byte >= end_byte)
1076		return 0;
1077
1078	return iomap_write_delalloc_release(inode, start_byte, end_byte,
1079					punch);
1080}
1081EXPORT_SYMBOL_GPL(iomap_file_buffered_write_punch_delalloc);
1082
1083static loff_t iomap_unshare_iter(struct iomap_iter *iter)
1084{
1085	struct iomap *iomap = &iter->iomap;
1086	const struct iomap *srcmap = iomap_iter_srcmap(iter);
1087	loff_t pos = iter->pos;
1088	loff_t length = iomap_length(iter);
1089	long status = 0;
1090	loff_t written = 0;
1091
1092	/* don't bother with blocks that are not shared to start with */
1093	if (!(iomap->flags & IOMAP_F_SHARED))
1094		return length;
1095	/* don't bother with holes or unwritten extents */
1096	if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN)
1097		return length;
1098
1099	do {
1100		unsigned long offset = offset_in_page(pos);
1101		unsigned long bytes = min_t(loff_t, PAGE_SIZE - offset, length);
1102		struct folio *folio;
 
 
 
 
1103
1104		status = iomap_write_begin(iter, pos, bytes, &folio);
1105		if (unlikely(status))
1106			return status;
1107		if (iter->iomap.flags & IOMAP_F_STALE)
1108			break;
1109
1110		status = iomap_write_end(iter, pos, bytes, bytes, folio);
1111		if (WARN_ON_ONCE(status == 0))
 
 
 
 
 
1112			return -EIO;
1113
1114		cond_resched();
1115
1116		pos += status;
1117		written += status;
1118		length -= status;
1119
1120		balance_dirty_pages_ratelimited(iter->inode->i_mapping);
1121	} while (length);
1122
1123	return written;
1124}
1125
1126int
1127iomap_file_unshare(struct inode *inode, loff_t pos, loff_t len,
1128		const struct iomap_ops *ops)
1129{
1130	struct iomap_iter iter = {
1131		.inode		= inode,
1132		.pos		= pos,
1133		.len		= len,
1134		.flags		= IOMAP_WRITE | IOMAP_UNSHARE,
1135	};
 
1136	int ret;
1137
 
 
 
 
1138	while ((ret = iomap_iter(&iter, ops)) > 0)
1139		iter.processed = iomap_unshare_iter(&iter);
1140	return ret;
1141}
1142EXPORT_SYMBOL_GPL(iomap_file_unshare);
1143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1144static loff_t iomap_zero_iter(struct iomap_iter *iter, bool *did_zero)
1145{
1146	const struct iomap *srcmap = iomap_iter_srcmap(iter);
1147	loff_t pos = iter->pos;
1148	loff_t length = iomap_length(iter);
1149	loff_t written = 0;
1150
1151	/* already zeroed?  we're done. */
1152	if (srcmap->type == IOMAP_HOLE || srcmap->type == IOMAP_UNWRITTEN)
1153		return length;
1154
1155	do {
1156		struct folio *folio;
1157		int status;
1158		size_t offset;
1159		size_t bytes = min_t(u64, SIZE_MAX, length);
 
1160
1161		status = iomap_write_begin(iter, pos, bytes, &folio);
1162		if (status)
1163			return status;
1164		if (iter->iomap.flags & IOMAP_F_STALE)
1165			break;
1166
 
 
1167		offset = offset_in_folio(folio, pos);
1168		if (bytes > folio_size(folio) - offset)
1169			bytes = folio_size(folio) - offset;
1170
1171		folio_zero_range(folio, offset, bytes);
1172		folio_mark_accessed(folio);
1173
1174		bytes = iomap_write_end(iter, pos, bytes, bytes, folio);
1175		if (WARN_ON_ONCE(bytes == 0))
 
1176			return -EIO;
1177
1178		pos += bytes;
1179		length -= bytes;
1180		written += bytes;
1181	} while (length > 0);
1182
1183	if (did_zero)
1184		*did_zero = true;
1185	return written;
1186}
1187
1188int
1189iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero,
1190		const struct iomap_ops *ops)
1191{
1192	struct iomap_iter iter = {
1193		.inode		= inode,
1194		.pos		= pos,
1195		.len		= len,
1196		.flags		= IOMAP_ZERO,
1197	};
 
 
 
 
1198	int ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1199
1200	while ((ret = iomap_iter(&iter, ops)) > 0)
1201		iter.processed = iomap_zero_iter(&iter, did_zero);
 
1202	return ret;
1203}
1204EXPORT_SYMBOL_GPL(iomap_zero_range);
1205
1206int
1207iomap_truncate_page(struct inode *inode, loff_t pos, bool *did_zero,
1208		const struct iomap_ops *ops)
1209{
1210	unsigned int blocksize = i_blocksize(inode);
1211	unsigned int off = pos & (blocksize - 1);
1212
1213	/* Block boundary? Nothing to do */
1214	if (!off)
1215		return 0;
1216	return iomap_zero_range(inode, pos, blocksize - off, did_zero, ops);
1217}
1218EXPORT_SYMBOL_GPL(iomap_truncate_page);
1219
1220static loff_t iomap_folio_mkwrite_iter(struct iomap_iter *iter,
1221		struct folio *folio)
1222{
1223	loff_t length = iomap_length(iter);
1224	int ret;
1225
1226	if (iter->iomap.flags & IOMAP_F_BUFFER_HEAD) {
1227		ret = __block_write_begin_int(folio, iter->pos, length, NULL,
1228					      &iter->iomap);
1229		if (ret)
1230			return ret;
1231		block_commit_write(&folio->page, 0, length);
1232	} else {
1233		WARN_ON_ONCE(!folio_test_uptodate(folio));
1234		folio_mark_dirty(folio);
1235	}
1236
1237	return length;
1238}
1239
1240vm_fault_t iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops)
1241{
1242	struct iomap_iter iter = {
1243		.inode		= file_inode(vmf->vma->vm_file),
1244		.flags		= IOMAP_WRITE | IOMAP_FAULT,
1245	};
1246	struct folio *folio = page_folio(vmf->page);
1247	ssize_t ret;
1248
1249	folio_lock(folio);
1250	ret = folio_mkwrite_check_truncate(folio, iter.inode);
1251	if (ret < 0)
1252		goto out_unlock;
1253	iter.pos = folio_pos(folio);
1254	iter.len = ret;
1255	while ((ret = iomap_iter(&iter, ops)) > 0)
1256		iter.processed = iomap_folio_mkwrite_iter(&iter, folio);
1257
1258	if (ret < 0)
1259		goto out_unlock;
1260	folio_wait_stable(folio);
1261	return VM_FAULT_LOCKED;
1262out_unlock:
1263	folio_unlock(folio);
1264	return block_page_mkwrite_return(ret);
1265}
1266EXPORT_SYMBOL_GPL(iomap_page_mkwrite);
1267
1268static void iomap_finish_folio_write(struct inode *inode, struct folio *folio,
1269		size_t len, int error)
1270{
1271	struct iomap_page *iop = to_iomap_page(folio);
1272
1273	if (error) {
1274		folio_set_error(folio);
1275		mapping_set_error(inode->i_mapping, error);
1276	}
1277
1278	WARN_ON_ONCE(i_blocks_per_folio(inode, folio) > 1 && !iop);
1279	WARN_ON_ONCE(iop && atomic_read(&iop->write_bytes_pending) <= 0);
1280
1281	if (!iop || atomic_sub_and_test(len, &iop->write_bytes_pending))
1282		folio_end_writeback(folio);
1283}
1284
1285/*
1286 * We're now finished for good with this ioend structure.  Update the page
1287 * state, release holds on bios, and finally free up memory.  Do not use the
1288 * ioend after this.
1289 */
1290static u32
1291iomap_finish_ioend(struct iomap_ioend *ioend, int error)
1292{
1293	struct inode *inode = ioend->io_inode;
1294	struct bio *bio = &ioend->io_inline_bio;
1295	struct bio *last = ioend->io_bio, *next;
1296	u64 start = bio->bi_iter.bi_sector;
1297	loff_t offset = ioend->io_offset;
1298	bool quiet = bio_flagged(bio, BIO_QUIET);
1299	u32 folio_count = 0;
1300
1301	for (bio = &ioend->io_inline_bio; bio; bio = next) {
1302		struct folio_iter fi;
1303
1304		/*
1305		 * For the last bio, bi_private points to the ioend, so we
1306		 * need to explicitly end the iteration here.
1307		 */
1308		if (bio == last)
1309			next = NULL;
1310		else
1311			next = bio->bi_private;
1312
1313		/* walk all folios in bio, ending page IO on them */
1314		bio_for_each_folio_all(fi, bio) {
1315			iomap_finish_folio_write(inode, fi.folio, fi.length,
1316					error);
1317			folio_count++;
1318		}
1319		bio_put(bio);
1320	}
1321	/* The ioend has been freed by bio_put() */
1322
1323	if (unlikely(error && !quiet)) {
1324		printk_ratelimited(KERN_ERR
1325"%s: writeback error on inode %lu, offset %lld, sector %llu",
1326			inode->i_sb->s_id, inode->i_ino, offset, start);
1327	}
 
 
1328	return folio_count;
1329}
1330
1331/*
1332 * Ioend completion routine for merged bios. This can only be called from task
1333 * contexts as merged ioends can be of unbound length. Hence we have to break up
1334 * the writeback completions into manageable chunks to avoid long scheduler
1335 * holdoffs. We aim to keep scheduler holdoffs down below 10ms so that we get
1336 * good batch processing throughput without creating adverse scheduler latency
1337 * conditions.
1338 */
1339void
1340iomap_finish_ioends(struct iomap_ioend *ioend, int error)
1341{
1342	struct list_head tmp;
1343	u32 completions;
1344
1345	might_sleep();
1346
1347	list_replace_init(&ioend->io_list, &tmp);
1348	completions = iomap_finish_ioend(ioend, error);
1349
1350	while (!list_empty(&tmp)) {
1351		if (completions > IOEND_BATCH_SIZE * 8) {
1352			cond_resched();
1353			completions = 0;
1354		}
1355		ioend = list_first_entry(&tmp, struct iomap_ioend, io_list);
1356		list_del_init(&ioend->io_list);
1357		completions += iomap_finish_ioend(ioend, error);
1358	}
1359}
1360EXPORT_SYMBOL_GPL(iomap_finish_ioends);
1361
1362/*
1363 * We can merge two adjacent ioends if they have the same set of work to do.
1364 */
1365static bool
1366iomap_ioend_can_merge(struct iomap_ioend *ioend, struct iomap_ioend *next)
1367{
1368	if (ioend->io_bio->bi_status != next->io_bio->bi_status)
 
 
1369		return false;
1370	if ((ioend->io_flags & IOMAP_F_SHARED) ^
1371	    (next->io_flags & IOMAP_F_SHARED))
1372		return false;
1373	if ((ioend->io_type == IOMAP_UNWRITTEN) ^
1374	    (next->io_type == IOMAP_UNWRITTEN))
1375		return false;
1376	if (ioend->io_offset + ioend->io_size != next->io_offset)
1377		return false;
1378	/*
1379	 * Do not merge physically discontiguous ioends. The filesystem
1380	 * completion functions will have to iterate the physical
1381	 * discontiguities even if we merge the ioends at a logical level, so
1382	 * we don't gain anything by merging physical discontiguities here.
1383	 *
1384	 * We cannot use bio->bi_iter.bi_sector here as it is modified during
1385	 * submission so does not point to the start sector of the bio at
1386	 * completion.
1387	 */
1388	if (ioend->io_sector + (ioend->io_size >> 9) != next->io_sector)
1389		return false;
1390	return true;
1391}
1392
1393void
1394iomap_ioend_try_merge(struct iomap_ioend *ioend, struct list_head *more_ioends)
1395{
1396	struct iomap_ioend *next;
1397
1398	INIT_LIST_HEAD(&ioend->io_list);
1399
1400	while ((next = list_first_entry_or_null(more_ioends, struct iomap_ioend,
1401			io_list))) {
1402		if (!iomap_ioend_can_merge(ioend, next))
1403			break;
1404		list_move_tail(&next->io_list, &ioend->io_list);
1405		ioend->io_size += next->io_size;
1406	}
1407}
1408EXPORT_SYMBOL_GPL(iomap_ioend_try_merge);
1409
1410static int
1411iomap_ioend_compare(void *priv, const struct list_head *a,
1412		const struct list_head *b)
1413{
1414	struct iomap_ioend *ia = container_of(a, struct iomap_ioend, io_list);
1415	struct iomap_ioend *ib = container_of(b, struct iomap_ioend, io_list);
1416
1417	if (ia->io_offset < ib->io_offset)
1418		return -1;
1419	if (ia->io_offset > ib->io_offset)
1420		return 1;
1421	return 0;
1422}
1423
1424void
1425iomap_sort_ioends(struct list_head *ioend_list)
1426{
1427	list_sort(NULL, ioend_list, iomap_ioend_compare);
1428}
1429EXPORT_SYMBOL_GPL(iomap_sort_ioends);
1430
1431static void iomap_writepage_end_bio(struct bio *bio)
1432{
1433	struct iomap_ioend *ioend = bio->bi_private;
1434
1435	iomap_finish_ioend(ioend, blk_status_to_errno(bio->bi_status));
1436}
1437
1438/*
1439 * Submit the final bio for an ioend.
1440 *
1441 * If @error is non-zero, it means that we have a situation where some part of
1442 * the submission process has failed after we've marked pages for writeback
1443 * and unlocked them.  In this situation, we need to fail the bio instead of
1444 * submitting it.  This typically only happens on a filesystem shutdown.
 
1445 */
1446static int
1447iomap_submit_ioend(struct iomap_writepage_ctx *wpc, struct iomap_ioend *ioend,
1448		int error)
1449{
1450	ioend->io_bio->bi_private = ioend;
1451	ioend->io_bio->bi_end_io = iomap_writepage_end_bio;
1452
 
 
 
 
 
 
1453	if (wpc->ops->prepare_ioend)
1454		error = wpc->ops->prepare_ioend(ioend, error);
 
1455	if (error) {
1456		/*
1457		 * If we're failing the IO now, just mark the ioend with an
1458		 * error and finish it.  This will run IO completion immediately
1459		 * as there is only one reference to the ioend at this point in
1460		 * time.
1461		 */
1462		ioend->io_bio->bi_status = errno_to_blk_status(error);
1463		bio_endio(ioend->io_bio);
1464		return error;
1465	}
1466
1467	submit_bio(ioend->io_bio);
1468	return 0;
1469}
1470
1471static struct iomap_ioend *
1472iomap_alloc_ioend(struct inode *inode, struct iomap_writepage_ctx *wpc,
1473		loff_t offset, sector_t sector, struct writeback_control *wbc)
1474{
1475	struct iomap_ioend *ioend;
1476	struct bio *bio;
1477
1478	bio = bio_alloc_bioset(wpc->iomap.bdev, BIO_MAX_VECS,
1479			       REQ_OP_WRITE | wbc_to_write_flags(wbc),
1480			       GFP_NOFS, &iomap_ioend_bioset);
1481	bio->bi_iter.bi_sector = sector;
 
1482	wbc_init_bio(wbc, bio);
 
1483
1484	ioend = container_of(bio, struct iomap_ioend, io_inline_bio);
1485	INIT_LIST_HEAD(&ioend->io_list);
1486	ioend->io_type = wpc->iomap.type;
1487	ioend->io_flags = wpc->iomap.flags;
 
 
1488	ioend->io_inode = inode;
1489	ioend->io_size = 0;
1490	ioend->io_folios = 0;
1491	ioend->io_offset = offset;
1492	ioend->io_bio = bio;
1493	ioend->io_sector = sector;
1494	return ioend;
1495}
1496
1497/*
1498 * Allocate a new bio, and chain the old bio to the new one.
1499 *
1500 * Note that we have to perform the chaining in this unintuitive order
1501 * so that the bi_private linkage is set up in the right direction for the
1502 * traversal in iomap_finish_ioend().
1503 */
1504static struct bio *
1505iomap_chain_bio(struct bio *prev)
1506{
1507	struct bio *new;
1508
1509	new = bio_alloc(prev->bi_bdev, BIO_MAX_VECS, prev->bi_opf, GFP_NOFS);
1510	bio_clone_blkg_association(new, prev);
1511	new->bi_iter.bi_sector = bio_end_sector(prev);
1512
1513	bio_chain(prev, new);
1514	bio_get(prev);		/* for iomap_finish_ioend */
1515	submit_bio(prev);
1516	return new;
1517}
1518
1519static bool
1520iomap_can_add_to_ioend(struct iomap_writepage_ctx *wpc, loff_t offset,
1521		sector_t sector)
1522{
 
 
1523	if ((wpc->iomap.flags & IOMAP_F_SHARED) !=
1524	    (wpc->ioend->io_flags & IOMAP_F_SHARED))
1525		return false;
1526	if (wpc->iomap.type != wpc->ioend->io_type)
1527		return false;
1528	if (offset != wpc->ioend->io_offset + wpc->ioend->io_size)
1529		return false;
1530	if (sector != bio_end_sector(wpc->ioend->io_bio))
 
1531		return false;
1532	/*
1533	 * Limit ioend bio chain lengths to minimise IO completion latency. This
1534	 * also prevents long tight loops ending page writeback on all the
1535	 * folios in the ioend.
1536	 */
1537	if (wpc->ioend->io_folios >= IOEND_BATCH_SIZE)
1538		return false;
1539	return true;
1540}
1541
1542/*
1543 * Test to see if we have an existing ioend structure that we could append to
1544 * first; otherwise finish off the current ioend and start another.
 
 
 
 
 
 
 
1545 */
1546static void
1547iomap_add_to_ioend(struct inode *inode, loff_t pos, struct folio *folio,
1548		struct iomap_page *iop, struct iomap_writepage_ctx *wpc,
1549		struct writeback_control *wbc, struct list_head *iolist)
1550{
1551	sector_t sector = iomap_sector(&wpc->iomap, pos);
1552	unsigned len = i_blocksize(inode);
1553	size_t poff = offset_in_folio(folio, pos);
 
1554
1555	if (!wpc->ioend || !iomap_can_add_to_ioend(wpc, pos, sector)) {
1556		if (wpc->ioend)
1557			list_add(&wpc->ioend->io_list, iolist);
1558		wpc->ioend = iomap_alloc_ioend(inode, wpc, pos, sector, wbc);
 
 
1559	}
1560
1561	if (!bio_add_folio(wpc->ioend->io_bio, folio, len, poff)) {
1562		wpc->ioend->io_bio = iomap_chain_bio(wpc->ioend->io_bio);
1563		bio_add_folio(wpc->ioend->io_bio, folio, len, poff);
1564	}
 
1565
1566	if (iop)
1567		atomic_add(len, &iop->write_bytes_pending);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1568	wpc->ioend->io_size += len;
1569	wbc_account_cgroup_owner(wbc, &folio->page, len);
 
 
 
 
1570}
1571
1572/*
1573 * We implement an immediate ioend submission policy here to avoid needing to
1574 * chain multiple ioends and hence nest mempool allocations which can violate
1575 * the forward progress guarantees we need to provide. The current ioend we're
1576 * adding blocks to is cached in the writepage context, and if the new block
1577 * doesn't append to the cached ioend, it will create a new ioend and cache that
1578 * instead.
1579 *
1580 * If a new ioend is created and cached, the old ioend is returned and queued
1581 * locally for submission once the entire page is processed or an error has been
1582 * detected.  While ioends are submitted immediately after they are completed,
1583 * batching optimisations are provided by higher level block plugging.
1584 *
1585 * At the end of a writeback pass, there will be a cached ioend remaining on the
1586 * writepage context that the caller will need to submit.
1587 */
1588static int
1589iomap_writepage_map(struct iomap_writepage_ctx *wpc,
1590		struct writeback_control *wbc, struct inode *inode,
1591		struct folio *folio, u64 end_pos)
1592{
1593	struct iomap_page *iop = iomap_page_create(inode, folio, 0);
1594	struct iomap_ioend *ioend, *next;
1595	unsigned len = i_blocksize(inode);
1596	unsigned nblocks = i_blocks_per_folio(inode, folio);
1597	u64 pos = folio_pos(folio);
1598	int error = 0, count = 0, i;
1599	LIST_HEAD(submit_list);
1600
1601	WARN_ON_ONCE(iop && atomic_read(&iop->write_bytes_pending) != 0);
1602
1603	/*
1604	 * Walk through the folio to find areas to write back. If we
1605	 * run off the end of the current map or find the current map
1606	 * invalid, grab a new one.
1607	 */
1608	for (i = 0; i < nblocks && pos < end_pos; i++, pos += len) {
1609		if (iop && !test_bit(i, iop->uptodate))
1610			continue;
1611
1612		error = wpc->ops->map_blocks(wpc, inode, pos);
1613		if (error)
1614			break;
1615		trace_iomap_writepage_map(inode, &wpc->iomap);
1616		if (WARN_ON_ONCE(wpc->iomap.type == IOMAP_INLINE))
1617			continue;
1618		if (wpc->iomap.type == IOMAP_HOLE)
1619			continue;
1620		iomap_add_to_ioend(inode, pos, folio, iop, wpc, wbc,
1621				 &submit_list);
1622		count++;
1623	}
1624	if (count)
1625		wpc->ioend->io_folios++;
1626
1627	WARN_ON_ONCE(!wpc->ioend && !list_empty(&submit_list));
1628	WARN_ON_ONCE(!folio_test_locked(folio));
1629	WARN_ON_ONCE(folio_test_writeback(folio));
1630	WARN_ON_ONCE(folio_test_dirty(folio));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1631
1632	/*
1633	 * We cannot cancel the ioend directly here on error.  We may have
1634	 * already set other pages under writeback and hence we have to run I/O
1635	 * completion to mark the error state of the pages under writeback
1636	 * appropriately.
 
 
 
1637	 */
1638	if (unlikely(error)) {
1639		/*
1640		 * Let the filesystem know what portion of the current page
1641		 * failed to map. If the page hasn't been added to ioend, it
1642		 * won't be affected by I/O completion and we must unlock it
1643		 * now.
1644		 */
1645		if (wpc->ops->discard_folio)
1646			wpc->ops->discard_folio(folio, pos);
1647		if (!count) {
1648			folio_unlock(folio);
1649			goto done;
1650		}
1651	}
1652
1653	folio_start_writeback(folio);
1654	folio_unlock(folio);
1655
1656	/*
1657	 * Preserve the original error if there was one; catch
1658	 * submission errors here and propagate into subsequent ioend
1659	 * submissions.
1660	 */
1661	list_for_each_entry_safe(ioend, next, &submit_list, io_list) {
1662		int error2;
1663
1664		list_del_init(&ioend->io_list);
1665		error2 = iomap_submit_ioend(wpc, ioend, error);
1666		if (error2 && !error)
1667			error = error2;
1668	}
1669
1670	/*
1671	 * We can end up here with no error and nothing to write only if we race
1672	 * with a partial page truncate on a sub-page block sized filesystem.
1673	 */
1674	if (!count)
1675		folio_end_writeback(folio);
1676done:
1677	mapping_set_error(inode->i_mapping, error);
1678	return error;
1679}
1680
1681/*
1682 * Write out a dirty page.
1683 *
1684 * For delalloc space on the page, we need to allocate space and flush it.
1685 * For unwritten space on the page, we need to start the conversion to
1686 * regular allocated space.
1687 */
1688static int
1689iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data)
1690{
1691	struct folio *folio = page_folio(page);
1692	struct iomap_writepage_ctx *wpc = data;
1693	struct inode *inode = folio->mapping->host;
1694	u64 end_pos, isize;
1695
1696	trace_iomap_writepage(inode, folio_pos(folio), folio_size(folio));
1697
1698	/*
1699	 * Refuse to write the folio out if we're called from reclaim context.
1700	 *
1701	 * This avoids stack overflows when called from deeply used stacks in
1702	 * random callers for direct reclaim or memcg reclaim.  We explicitly
1703	 * allow reclaim from kswapd as the stack usage there is relatively low.
1704	 *
1705	 * This should never happen except in the case of a VM regression so
1706	 * warn about it.
1707	 */
1708	if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
1709			PF_MEMALLOC))
1710		goto redirty;
1711
1712	/*
1713	 * Is this folio beyond the end of the file?
1714	 *
1715	 * The folio index is less than the end_index, adjust the end_pos
1716	 * to the highest offset that this folio should represent.
1717	 * -----------------------------------------------------
1718	 * |			file mapping	       | <EOF> |
1719	 * -----------------------------------------------------
1720	 * | Page ... | Page N-2 | Page N-1 |  Page N  |       |
1721	 * ^--------------------------------^----------|--------
1722	 * |     desired writeback range    |      see else    |
1723	 * ---------------------------------^------------------|
1724	 */
1725	isize = i_size_read(inode);
1726	end_pos = folio_pos(folio) + folio_size(folio);
1727	if (end_pos > isize) {
1728		/*
1729		 * Check whether the page to write out is beyond or straddles
1730		 * i_size or not.
1731		 * -------------------------------------------------------
1732		 * |		file mapping		        | <EOF>  |
1733		 * -------------------------------------------------------
1734		 * | Page ... | Page N-2 | Page N-1 |  Page N   | Beyond |
1735		 * ^--------------------------------^-----------|---------
1736		 * |				    |      Straddles     |
1737		 * ---------------------------------^-----------|--------|
1738		 */
1739		size_t poff = offset_in_folio(folio, isize);
1740		pgoff_t end_index = isize >> PAGE_SHIFT;
1741
1742		/*
1743		 * Skip the page if it's fully outside i_size, e.g.
1744		 * due to a truncate operation that's in progress.  We've
1745		 * cleaned this page and truncate will finish things off for
1746		 * us.
 
1747		 *
1748		 * Note that the end_index is unsigned long.  If the given
1749		 * offset is greater than 16TB on a 32-bit system then if we
1750		 * checked if the page is fully outside i_size with
1751		 * "if (page->index >= end_index + 1)", "end_index + 1" would
1752		 * overflow and evaluate to 0.  Hence this page would be
1753		 * redirtied and written out repeatedly, which would result in
1754		 * an infinite loop; the user program performing this operation
1755		 * would hang.  Instead, we can detect this situation by
1756		 * checking if the page is totally beyond i_size or if its
1757		 * offset is just equal to the EOF.
1758		 */
1759		if (folio->index > end_index ||
1760		    (folio->index == end_index && poff == 0))
1761			goto unlock;
1762
1763		/*
1764		 * The page straddles i_size.  It must be zeroed out on each
1765		 * and every writepage invocation because it may be mmapped.
1766		 * "A file is mapped in multiples of the page size.  For a file
1767		 * that is not a multiple of the page size, the remaining
1768		 * memory is zeroed when mapped, and writes to that region are
1769		 * not written out to the file."
 
 
 
 
 
 
1770		 */
1771		folio_zero_segment(folio, poff, folio_size(folio));
1772		end_pos = isize;
1773	}
1774
1775	return iomap_writepage_map(wpc, wbc, inode, folio, end_pos);
 
1776
1777redirty:
1778	folio_redirty_for_writepage(wbc, folio);
1779unlock:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1780	folio_unlock(folio);
1781	return 0;
 
 
 
 
 
 
 
 
1782}
1783
1784int
1785iomap_writepages(struct address_space *mapping, struct writeback_control *wbc,
1786		struct iomap_writepage_ctx *wpc,
1787		const struct iomap_writeback_ops *ops)
1788{
1789	int			ret;
 
 
 
 
 
 
 
 
 
1790
1791	wpc->ops = ops;
1792	ret = write_cache_pages(mapping, wbc, iomap_do_writepage, wpc);
1793	if (!wpc->ioend)
1794		return ret;
1795	return iomap_submit_ioend(wpc, wpc->ioend, ret);
1796}
1797EXPORT_SYMBOL_GPL(iomap_writepages);
1798
1799static int __init iomap_init(void)
1800{
1801	return bioset_init(&iomap_ioend_bioset, 4 * (PAGE_SIZE / SECTOR_SIZE),
1802			   offsetof(struct iomap_ioend, io_inline_bio),
1803			   BIOSET_NEED_BVECS);
1804}
1805fs_initcall(iomap_init);