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