blob: 03edf62633dcc4d0a6160b8a0f0874dc831374fd [file] [log] [blame]
Christoph Hellwigae259a92016-06-21 09:23:11 +10001/*
2 * Copyright (C) 2010 Red Hat, Inc.
Christoph Hellwig72b4daa2018-06-19 15:10:57 -07003 * Copyright (c) 2016-2018 Christoph Hellwig.
Christoph Hellwigae259a92016-06-21 09:23:11 +10004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
14#include <linux/module.h>
15#include <linux/compiler.h>
16#include <linux/fs.h>
17#include <linux/iomap.h>
18#include <linux/uaccess.h>
19#include <linux/gfp.h>
Christoph Hellwig9dc55f12018-07-11 22:26:05 -070020#include <linux/migrate.h>
Christoph Hellwigae259a92016-06-21 09:23:11 +100021#include <linux/mm.h>
Christoph Hellwig72b4daa2018-06-19 15:10:57 -070022#include <linux/mm_inline.h>
Christoph Hellwigae259a92016-06-21 09:23:11 +100023#include <linux/swap.h>
24#include <linux/pagemap.h>
Christoph Hellwig8a78cb12018-06-01 09:04:40 -070025#include <linux/pagevec.h>
Christoph Hellwigae259a92016-06-21 09:23:11 +100026#include <linux/file.h>
27#include <linux/uio.h>
28#include <linux/backing-dev.h>
29#include <linux/buffer_head.h>
Christoph Hellwigff6a9292016-11-30 14:36:01 +110030#include <linux/task_io_accounting_ops.h>
Christoph Hellwig9a286f02016-06-21 09:31:39 +100031#include <linux/dax.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010032#include <linux/sched/signal.h>
Darrick J. Wong67482122018-05-10 08:38:15 -070033#include <linux/swap.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010034
Christoph Hellwigae259a92016-06-21 09:23:11 +100035#include "internal.h"
36
Christoph Hellwigae259a92016-06-21 09:23:11 +100037/*
38 * Execute a iomap write on a segment of the mapping that spans a
39 * contiguous range of pages that have identical block mapping state.
40 *
41 * This avoids the need to map pages individually, do individual allocations
42 * for each page and most importantly avoid the need for filesystem specific
43 * locking per page. Instead, all the operations are amortised over the entire
44 * range of pages. It is assumed that the filesystems will lock whatever
45 * resources they require in the iomap_begin call, and release them in the
46 * iomap_end call.
47 */
Christoph Hellwigbefb5032016-09-19 11:24:49 +100048loff_t
Christoph Hellwigae259a92016-06-21 09:23:11 +100049iomap_apply(struct inode *inode, loff_t pos, loff_t length, unsigned flags,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -080050 const struct iomap_ops *ops, void *data, iomap_actor_t actor)
Christoph Hellwigae259a92016-06-21 09:23:11 +100051{
52 struct iomap iomap = { 0 };
53 loff_t written = 0, ret;
54
55 /*
56 * Need to map a range from start position for length bytes. This can
57 * span multiple pages - it is only guaranteed to return a range of a
58 * single type of pages (e.g. all into a hole, all mapped or all
59 * unwritten). Failure at this point has nothing to undo.
60 *
61 * If allocation is required for this range, reserve the space now so
62 * that the allocation is guaranteed to succeed later on. Once we copy
63 * the data into the page cache pages, then we cannot fail otherwise we
64 * expose transient stale data. If the reserve fails, we can safely
65 * back out at this point as there is nothing to undo.
66 */
67 ret = ops->iomap_begin(inode, pos, length, flags, &iomap);
68 if (ret)
69 return ret;
70 if (WARN_ON(iomap.offset > pos))
71 return -EIO;
Darrick J. Wong0c6dda72018-01-26 11:11:20 -080072 if (WARN_ON(iomap.length == 0))
73 return -EIO;
Christoph Hellwigae259a92016-06-21 09:23:11 +100074
75 /*
76 * Cut down the length to the one actually provided by the filesystem,
77 * as it might not be able to give us the whole size that we requested.
78 */
79 if (iomap.offset + iomap.length < pos + length)
80 length = iomap.offset + iomap.length - pos;
81
82 /*
83 * Now that we have guaranteed that the space allocation will succeed.
84 * we can do the copy-in page by page without having to worry about
85 * failures exposing transient data.
86 */
87 written = actor(inode, pos, length, data, &iomap);
88
89 /*
90 * Now the data has been copied, commit the range we've copied. This
91 * should not fail unless the filesystem has had a fatal error.
92 */
Christoph Hellwigf20ac7a2016-08-17 08:42:34 +100093 if (ops->iomap_end) {
94 ret = ops->iomap_end(inode, pos, length,
95 written > 0 ? written : 0,
96 flags, &iomap);
97 }
Christoph Hellwigae259a92016-06-21 09:23:11 +100098
99 return written ? written : ret;
100}
101
Christoph Hellwig57fc5052018-06-01 09:03:08 -0700102static sector_t
103iomap_sector(struct iomap *iomap, loff_t pos)
104{
105 return (iomap->addr + pos - iomap->offset) >> SECTOR_SHIFT;
106}
107
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700108static struct iomap_page *
109iomap_page_create(struct inode *inode, struct page *page)
110{
111 struct iomap_page *iop = to_iomap_page(page);
112
113 if (iop || i_blocksize(inode) == PAGE_SIZE)
114 return iop;
115
116 iop = kmalloc(sizeof(*iop), GFP_NOFS | __GFP_NOFAIL);
117 atomic_set(&iop->read_count, 0);
118 atomic_set(&iop->write_count, 0);
119 bitmap_zero(iop->uptodate, PAGE_SIZE / SECTOR_SIZE);
Piotr Jaroszynskid23792f2019-01-27 08:46:45 -0800120
121 /*
122 * migrate_page_move_mapping() assumes that pages with private data have
123 * their count elevated by 1.
124 */
125 get_page(page);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700126 set_page_private(page, (unsigned long)iop);
127 SetPagePrivate(page);
128 return iop;
129}
130
131static void
132iomap_page_release(struct page *page)
133{
134 struct iomap_page *iop = to_iomap_page(page);
135
136 if (!iop)
137 return;
138 WARN_ON_ONCE(atomic_read(&iop->read_count));
139 WARN_ON_ONCE(atomic_read(&iop->write_count));
140 ClearPagePrivate(page);
141 set_page_private(page, 0);
Piotr Jaroszynskid23792f2019-01-27 08:46:45 -0800142 put_page(page);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700143 kfree(iop);
144}
145
146/*
147 * Calculate the range inside the page that we actually need to read.
148 */
149static void
150iomap_adjust_read_range(struct inode *inode, struct iomap_page *iop,
151 loff_t *pos, loff_t length, unsigned *offp, unsigned *lenp)
152{
Dave Chinnerc3a62b62018-11-21 08:06:37 -0800153 loff_t orig_pos = *pos;
154 loff_t isize = i_size_read(inode);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700155 unsigned block_bits = inode->i_blkbits;
156 unsigned block_size = (1 << block_bits);
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700157 unsigned poff = offset_in_page(*pos);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700158 unsigned plen = min_t(loff_t, PAGE_SIZE - poff, length);
159 unsigned first = poff >> block_bits;
160 unsigned last = (poff + plen - 1) >> block_bits;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700161
162 /*
163 * If the block size is smaller than the page size we need to check the
164 * per-block uptodate status and adjust the offset and length if needed
165 * to avoid reading in already uptodate ranges.
166 */
167 if (iop) {
168 unsigned int i;
169
170 /* move forward for each leading block marked uptodate */
171 for (i = first; i <= last; i++) {
172 if (!test_bit(i, iop->uptodate))
173 break;
174 *pos += block_size;
175 poff += block_size;
176 plen -= block_size;
177 first++;
178 }
179
180 /* truncate len if we find any trailing uptodate block(s) */
181 for ( ; i <= last; i++) {
182 if (test_bit(i, iop->uptodate)) {
183 plen -= (last - i + 1) * block_size;
184 last = i - 1;
185 break;
186 }
187 }
188 }
189
190 /*
191 * If the extent spans the block that contains the i_size we need to
192 * handle both halves separately so that we properly zero data in the
193 * page cache for blocks that are entirely outside of i_size.
194 */
Dave Chinnerc3a62b62018-11-21 08:06:37 -0800195 if (orig_pos <= isize && orig_pos + length > isize) {
196 unsigned end = offset_in_page(isize - 1) >> block_bits;
197
198 if (first <= end && last > end)
199 plen -= (last - end) * block_size;
200 }
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700201
202 *offp = poff;
203 *lenp = plen;
204}
205
206static void
207iomap_set_range_uptodate(struct page *page, unsigned off, unsigned len)
208{
209 struct iomap_page *iop = to_iomap_page(page);
210 struct inode *inode = page->mapping->host;
211 unsigned first = off >> inode->i_blkbits;
212 unsigned last = (off + len - 1) >> inode->i_blkbits;
213 unsigned int i;
214 bool uptodate = true;
215
216 if (iop) {
217 for (i = 0; i < PAGE_SIZE / i_blocksize(inode); i++) {
218 if (i >= first && i <= last)
219 set_bit(i, iop->uptodate);
220 else if (!test_bit(i, iop->uptodate))
221 uptodate = false;
222 }
223 }
224
225 if (uptodate && !PageError(page))
226 SetPageUptodate(page);
227}
228
229static void
230iomap_read_finish(struct iomap_page *iop, struct page *page)
231{
232 if (!iop || atomic_dec_and_test(&iop->read_count))
233 unlock_page(page);
234}
235
236static void
237iomap_read_page_end_io(struct bio_vec *bvec, int error)
238{
239 struct page *page = bvec->bv_page;
240 struct iomap_page *iop = to_iomap_page(page);
241
242 if (unlikely(error)) {
243 ClearPageUptodate(page);
244 SetPageError(page);
245 } else {
246 iomap_set_range_uptodate(page, bvec->bv_offset, bvec->bv_len);
247 }
248
249 iomap_read_finish(iop, page);
250}
251
Christoph Hellwigae259a92016-06-21 09:23:11 +1000252static void
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700253iomap_read_inline_data(struct inode *inode, struct page *page,
254 struct iomap *iomap)
255{
256 size_t size = i_size_read(inode);
257 void *addr;
258
259 if (PageUptodate(page))
260 return;
261
262 BUG_ON(page->index);
263 BUG_ON(size > PAGE_SIZE - offset_in_page(iomap->inline_data));
264
265 addr = kmap_atomic(page);
266 memcpy(addr, iomap->inline_data, size);
267 memset(addr + size, 0, PAGE_SIZE - size);
268 kunmap_atomic(addr);
269 SetPageUptodate(page);
270}
271
272static void
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700273iomap_read_end_io(struct bio *bio)
274{
275 int error = blk_status_to_errno(bio->bi_status);
276 struct bio_vec *bvec;
277 int i;
278
279 bio_for_each_segment_all(bvec, bio, i)
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700280 iomap_read_page_end_io(bvec, error);
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700281 bio_put(bio);
282}
283
284struct iomap_readpage_ctx {
285 struct page *cur_page;
286 bool cur_page_in_bio;
287 bool is_readahead;
288 struct bio *bio;
289 struct list_head *pages;
290};
291
292static loff_t
293iomap_readpage_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
294 struct iomap *iomap)
295{
296 struct iomap_readpage_ctx *ctx = data;
297 struct page *page = ctx->cur_page;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700298 struct iomap_page *iop = iomap_page_create(inode, page);
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700299 bool is_contig = false;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700300 loff_t orig_pos = pos;
301 unsigned poff, plen;
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700302 sector_t sector;
303
Andreas Gruenbacher806a1472018-07-03 09:07:47 -0700304 if (iomap->type == IOMAP_INLINE) {
Darrick J. Wong7d5e0492018-08-10 17:55:57 -0700305 WARN_ON_ONCE(pos);
Andreas Gruenbacher806a1472018-07-03 09:07:47 -0700306 iomap_read_inline_data(inode, page, iomap);
307 return PAGE_SIZE;
308 }
309
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700310 /* zero post-eof blocks as the page may be mapped */
311 iomap_adjust_read_range(inode, iop, &pos, length, &poff, &plen);
312 if (plen == 0)
313 goto done;
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700314
315 if (iomap->type != IOMAP_MAPPED || pos >= i_size_read(inode)) {
316 zero_user(page, poff, plen);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700317 iomap_set_range_uptodate(page, poff, plen);
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700318 goto done;
319 }
320
321 ctx->cur_page_in_bio = true;
322
323 /*
324 * Try to merge into a previous segment if we can.
325 */
326 sector = iomap_sector(iomap, pos);
327 if (ctx->bio && bio_end_sector(ctx->bio) == sector) {
328 if (__bio_try_merge_page(ctx->bio, page, plen, poff))
329 goto done;
330 is_contig = true;
331 }
332
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700333 /*
334 * If we start a new segment we need to increase the read count, and we
335 * need to do so before submitting any previous full bio to make sure
336 * that we don't prematurely unlock the page.
337 */
338 if (iop)
339 atomic_inc(&iop->read_count);
340
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700341 if (!ctx->bio || !is_contig || bio_full(ctx->bio)) {
342 gfp_t gfp = mapping_gfp_constraint(page->mapping, GFP_KERNEL);
343 int nr_vecs = (length + PAGE_SIZE - 1) >> PAGE_SHIFT;
344
345 if (ctx->bio)
346 submit_bio(ctx->bio);
347
348 if (ctx->is_readahead) /* same as readahead_gfp_mask */
349 gfp |= __GFP_NORETRY | __GFP_NOWARN;
350 ctx->bio = bio_alloc(gfp, min(BIO_MAX_PAGES, nr_vecs));
351 ctx->bio->bi_opf = REQ_OP_READ;
352 if (ctx->is_readahead)
353 ctx->bio->bi_opf |= REQ_RAHEAD;
354 ctx->bio->bi_iter.bi_sector = sector;
355 bio_set_dev(ctx->bio, iomap->bdev);
356 ctx->bio->bi_end_io = iomap_read_end_io;
357 }
358
359 __bio_add_page(ctx->bio, page, plen, poff);
360done:
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700361 /*
362 * Move the caller beyond our range so that it keeps making progress.
363 * For that we have to include any leading non-uptodate ranges, but
364 * we can skip trailing ones as they will be handled in the next
365 * iteration.
366 */
367 return pos - orig_pos + plen;
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700368}
369
370int
371iomap_readpage(struct page *page, const struct iomap_ops *ops)
372{
373 struct iomap_readpage_ctx ctx = { .cur_page = page };
374 struct inode *inode = page->mapping->host;
375 unsigned poff;
376 loff_t ret;
377
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700378 for (poff = 0; poff < PAGE_SIZE; poff += ret) {
379 ret = iomap_apply(inode, page_offset(page) + poff,
380 PAGE_SIZE - poff, 0, ops, &ctx,
381 iomap_readpage_actor);
382 if (ret <= 0) {
383 WARN_ON_ONCE(ret == 0);
384 SetPageError(page);
385 break;
386 }
387 }
388
389 if (ctx.bio) {
390 submit_bio(ctx.bio);
391 WARN_ON_ONCE(!ctx.cur_page_in_bio);
392 } else {
393 WARN_ON_ONCE(ctx.cur_page_in_bio);
394 unlock_page(page);
395 }
396
397 /*
398 * Just like mpage_readpages and block_read_full_page we always
399 * return 0 and just mark the page as PageError on errors. This
400 * should be cleaned up all through the stack eventually.
401 */
402 return 0;
403}
404EXPORT_SYMBOL_GPL(iomap_readpage);
405
406static struct page *
407iomap_next_page(struct inode *inode, struct list_head *pages, loff_t pos,
408 loff_t length, loff_t *done)
409{
410 while (!list_empty(pages)) {
411 struct page *page = lru_to_page(pages);
412
413 if (page_offset(page) >= (u64)pos + length)
414 break;
415
416 list_del(&page->lru);
417 if (!add_to_page_cache_lru(page, inode->i_mapping, page->index,
418 GFP_NOFS))
419 return page;
420
421 /*
422 * If we already have a page in the page cache at index we are
423 * done. Upper layers don't care if it is uptodate after the
424 * readpages call itself as every page gets checked again once
425 * actually needed.
426 */
427 *done += PAGE_SIZE;
428 put_page(page);
429 }
430
431 return NULL;
432}
433
434static loff_t
435iomap_readpages_actor(struct inode *inode, loff_t pos, loff_t length,
436 void *data, struct iomap *iomap)
437{
438 struct iomap_readpage_ctx *ctx = data;
439 loff_t done, ret;
440
441 for (done = 0; done < length; done += ret) {
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700442 if (ctx->cur_page && offset_in_page(pos + done) == 0) {
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700443 if (!ctx->cur_page_in_bio)
444 unlock_page(ctx->cur_page);
445 put_page(ctx->cur_page);
446 ctx->cur_page = NULL;
447 }
448 if (!ctx->cur_page) {
449 ctx->cur_page = iomap_next_page(inode, ctx->pages,
450 pos, length, &done);
451 if (!ctx->cur_page)
452 break;
453 ctx->cur_page_in_bio = false;
454 }
455 ret = iomap_readpage_actor(inode, pos + done, length - done,
456 ctx, iomap);
457 }
458
459 return done;
460}
461
462int
463iomap_readpages(struct address_space *mapping, struct list_head *pages,
464 unsigned nr_pages, const struct iomap_ops *ops)
465{
466 struct iomap_readpage_ctx ctx = {
467 .pages = pages,
468 .is_readahead = true,
469 };
470 loff_t pos = page_offset(list_entry(pages->prev, struct page, lru));
471 loff_t last = page_offset(list_entry(pages->next, struct page, lru));
472 loff_t length = last - pos + PAGE_SIZE, ret = 0;
473
474 while (length > 0) {
475 ret = iomap_apply(mapping->host, pos, length, 0, ops,
476 &ctx, iomap_readpages_actor);
477 if (ret <= 0) {
478 WARN_ON_ONCE(ret == 0);
479 goto done;
480 }
481 pos += ret;
482 length -= ret;
483 }
484 ret = 0;
485done:
486 if (ctx.bio)
487 submit_bio(ctx.bio);
488 if (ctx.cur_page) {
489 if (!ctx.cur_page_in_bio)
490 unlock_page(ctx.cur_page);
491 put_page(ctx.cur_page);
492 }
493
494 /*
495 * Check that we didn't lose a page due to the arcance calling
496 * conventions..
497 */
498 WARN_ON_ONCE(!ret && !list_empty(ctx.pages));
499 return ret;
500}
501EXPORT_SYMBOL_GPL(iomap_readpages);
502
Eric Sandeenc9dcb872018-12-21 08:42:50 -0800503/*
504 * iomap_is_partially_uptodate checks whether blocks within a page are
505 * uptodate or not.
506 *
507 * Returns true if all blocks which correspond to a file portion
508 * we want to read within the page are uptodate.
509 */
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700510int
511iomap_is_partially_uptodate(struct page *page, unsigned long from,
512 unsigned long count)
513{
514 struct iomap_page *iop = to_iomap_page(page);
515 struct inode *inode = page->mapping->host;
Eric Sandeenc9dcb872018-12-21 08:42:50 -0800516 unsigned len, first, last;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700517 unsigned i;
518
Eric Sandeenc9dcb872018-12-21 08:42:50 -0800519 /* Limit range to one page */
520 len = min_t(unsigned, PAGE_SIZE - from, count);
521
522 /* First and last blocks in range within page */
523 first = from >> inode->i_blkbits;
524 last = (from + len - 1) >> inode->i_blkbits;
525
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700526 if (iop) {
527 for (i = first; i <= last; i++)
528 if (!test_bit(i, iop->uptodate))
529 return 0;
530 return 1;
531 }
532
533 return 0;
534}
535EXPORT_SYMBOL_GPL(iomap_is_partially_uptodate);
536
537int
538iomap_releasepage(struct page *page, gfp_t gfp_mask)
539{
540 /*
541 * mm accommodates an old ext3 case where clean pages might not have had
542 * the dirty bit cleared. Thus, it can send actual dirty pages to
543 * ->releasepage() via shrink_active_list(), skip those here.
544 */
545 if (PageDirty(page) || PageWriteback(page))
546 return 0;
547 iomap_page_release(page);
548 return 1;
549}
550EXPORT_SYMBOL_GPL(iomap_releasepage);
551
552void
553iomap_invalidatepage(struct page *page, unsigned int offset, unsigned int len)
554{
555 /*
556 * If we are invalidating the entire page, clear the dirty state from it
557 * and release it to avoid unnecessary buildup of the LRU.
558 */
559 if (offset == 0 && len == PAGE_SIZE) {
560 WARN_ON_ONCE(PageWriteback(page));
561 cancel_dirty_page(page);
562 iomap_page_release(page);
563 }
564}
565EXPORT_SYMBOL_GPL(iomap_invalidatepage);
566
567#ifdef CONFIG_MIGRATION
568int
569iomap_migrate_page(struct address_space *mapping, struct page *newpage,
570 struct page *page, enum migrate_mode mode)
571{
572 int ret;
573
574 ret = migrate_page_move_mapping(mapping, newpage, page, NULL, mode, 0);
575 if (ret != MIGRATEPAGE_SUCCESS)
576 return ret;
577
578 if (page_has_private(page)) {
579 ClearPagePrivate(page);
Piotr Jaroszynskid23792f2019-01-27 08:46:45 -0800580 get_page(newpage);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700581 set_page_private(newpage, page_private(page));
582 set_page_private(page, 0);
Piotr Jaroszynskid23792f2019-01-27 08:46:45 -0800583 put_page(page);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700584 SetPagePrivate(newpage);
585 }
586
587 if (mode != MIGRATE_SYNC_NO_COPY)
588 migrate_page_copy(newpage, page);
589 else
590 migrate_page_states(newpage, page);
591 return MIGRATEPAGE_SUCCESS;
592}
593EXPORT_SYMBOL_GPL(iomap_migrate_page);
594#endif /* CONFIG_MIGRATION */
595
Christoph Hellwig72b4daa2018-06-19 15:10:57 -0700596static void
Christoph Hellwigae259a92016-06-21 09:23:11 +1000597iomap_write_failed(struct inode *inode, loff_t pos, unsigned len)
598{
599 loff_t i_size = i_size_read(inode);
600
601 /*
602 * Only truncate newly allocated pages beyoned EOF, even if the
603 * write started inside the existing inode size.
604 */
605 if (pos + len > i_size)
606 truncate_pagecache_range(inode, max(pos, i_size), pos + len);
607}
608
609static int
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700610iomap_read_page_sync(struct inode *inode, loff_t block_start, struct page *page,
611 unsigned poff, unsigned plen, unsigned from, unsigned to,
612 struct iomap *iomap)
613{
614 struct bio_vec bvec;
615 struct bio bio;
616
617 if (iomap->type != IOMAP_MAPPED || block_start >= i_size_read(inode)) {
618 zero_user_segments(page, poff, from, to, poff + plen);
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700619 iomap_set_range_uptodate(page, poff, plen);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700620 return 0;
621 }
622
623 bio_init(&bio, &bvec, 1);
624 bio.bi_opf = REQ_OP_READ;
625 bio.bi_iter.bi_sector = iomap_sector(iomap, block_start);
626 bio_set_dev(&bio, iomap->bdev);
627 __bio_add_page(&bio, page, plen, poff);
628 return submit_bio_wait(&bio);
629}
630
631static int
632__iomap_write_begin(struct inode *inode, loff_t pos, unsigned len,
633 struct page *page, struct iomap *iomap)
634{
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700635 struct iomap_page *iop = iomap_page_create(inode, page);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700636 loff_t block_size = i_blocksize(inode);
637 loff_t block_start = pos & ~(block_size - 1);
638 loff_t block_end = (pos + len + block_size - 1) & ~(block_size - 1);
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700639 unsigned from = offset_in_page(pos), to = from + len, poff, plen;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700640 int status = 0;
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700641
642 if (PageUptodate(page))
643 return 0;
Christoph Hellwig9dc55f12018-07-11 22:26:05 -0700644
645 do {
646 iomap_adjust_read_range(inode, iop, &block_start,
647 block_end - block_start, &poff, &plen);
648 if (plen == 0)
649 break;
650
651 if ((from > poff && from < poff + plen) ||
652 (to > poff && to < poff + plen)) {
653 status = iomap_read_page_sync(inode, block_start, page,
654 poff, plen, from, to, iomap);
655 if (status)
656 break;
657 }
658
659 } while ((block_start += plen) < block_end);
660
661 return status;
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700662}
663
664static int
Christoph Hellwigae259a92016-06-21 09:23:11 +1000665iomap_write_begin(struct inode *inode, loff_t pos, unsigned len, unsigned flags,
666 struct page **pagep, struct iomap *iomap)
667{
668 pgoff_t index = pos >> PAGE_SHIFT;
669 struct page *page;
670 int status = 0;
671
672 BUG_ON(pos + len > iomap->offset + iomap->length);
673
Michal Hockod1908f52017-02-03 13:13:26 -0800674 if (fatal_signal_pending(current))
675 return -EINTR;
676
Christoph Hellwigae259a92016-06-21 09:23:11 +1000677 page = grab_cache_page_write_begin(inode->i_mapping, index, flags);
678 if (!page)
679 return -ENOMEM;
680
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700681 if (iomap->type == IOMAP_INLINE)
682 iomap_read_inline_data(inode, page, iomap);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700683 else if (iomap->flags & IOMAP_F_BUFFER_HEAD)
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700684 status = __block_write_begin_int(page, pos, len, NULL, iomap);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700685 else
686 status = __iomap_write_begin(inode, pos, len, page, iomap);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000687 if (unlikely(status)) {
688 unlock_page(page);
689 put_page(page);
690 page = NULL;
691
692 iomap_write_failed(inode, pos, len);
693 }
694
695 *pagep = page;
696 return status;
697}
698
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700699int
700iomap_set_page_dirty(struct page *page)
701{
702 struct address_space *mapping = page_mapping(page);
703 int newly_dirty;
704
705 if (unlikely(!mapping))
706 return !TestSetPageDirty(page);
707
708 /*
709 * Lock out page->mem_cgroup migration to keep PageDirty
710 * synchronized with per-memcg dirty page counters.
711 */
712 lock_page_memcg(page);
713 newly_dirty = !TestSetPageDirty(page);
714 if (newly_dirty)
715 __set_page_dirty(page, mapping, 0);
716 unlock_page_memcg(page);
717
718 if (newly_dirty)
719 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
720 return newly_dirty;
721}
722EXPORT_SYMBOL_GPL(iomap_set_page_dirty);
723
724static int
725__iomap_write_end(struct inode *inode, loff_t pos, unsigned len,
726 unsigned copied, struct page *page, struct iomap *iomap)
727{
728 flush_dcache_page(page);
729
730 /*
731 * The blocks that were entirely written will now be uptodate, so we
732 * don't have to worry about a readpage reading them and overwriting a
733 * partial write. However if we have encountered a short write and only
734 * partially written into a block, it will not be marked uptodate, so a
735 * readpage might come in and destroy our partial write.
736 *
737 * Do the simplest thing, and just treat any short write to a non
738 * uptodate page as a zero-length write, and force the caller to redo
739 * the whole thing.
740 */
741 if (unlikely(copied < len && !PageUptodate(page))) {
742 copied = 0;
743 } else {
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700744 iomap_set_range_uptodate(page, offset_in_page(pos), len);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700745 iomap_set_page_dirty(page);
746 }
747 return __generic_write_end(inode, pos, copied, page);
748}
749
Christoph Hellwigae259a92016-06-21 09:23:11 +1000750static int
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700751iomap_write_end_inline(struct inode *inode, struct page *page,
752 struct iomap *iomap, loff_t pos, unsigned copied)
753{
754 void *addr;
755
756 WARN_ON_ONCE(!PageUptodate(page));
757 BUG_ON(pos + copied > PAGE_SIZE - offset_in_page(iomap->inline_data));
758
759 addr = kmap_atomic(page);
760 memcpy(iomap->inline_data + pos, addr + pos, copied);
761 kunmap_atomic(addr);
762
763 mark_inode_dirty(inode);
764 __generic_write_end(inode, pos, copied, page);
765 return copied;
766}
767
Christoph Hellwigae259a92016-06-21 09:23:11 +1000768static int
769iomap_write_end(struct inode *inode, loff_t pos, unsigned len,
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700770 unsigned copied, struct page *page, struct iomap *iomap)
Christoph Hellwigae259a92016-06-21 09:23:11 +1000771{
772 int ret;
773
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700774 if (iomap->type == IOMAP_INLINE) {
775 ret = iomap_write_end_inline(inode, page, iomap, pos, copied);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700776 } else if (iomap->flags & IOMAP_F_BUFFER_HEAD) {
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700777 ret = generic_write_end(NULL, inode->i_mapping, pos, len,
778 copied, page, NULL);
Christoph Hellwigc03cea42018-06-19 15:10:58 -0700779 } else {
780 ret = __iomap_write_end(inode, pos, len, copied, page, iomap);
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700781 }
782
Christoph Hellwig63899c62018-06-19 15:10:56 -0700783 if (iomap->page_done)
784 iomap->page_done(inode, pos, copied, page, iomap);
785
Christoph Hellwigae259a92016-06-21 09:23:11 +1000786 if (ret < len)
787 iomap_write_failed(inode, pos, len);
788 return ret;
789}
790
791static loff_t
792iomap_write_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
793 struct iomap *iomap)
794{
795 struct iov_iter *i = data;
796 long status = 0;
797 ssize_t written = 0;
798 unsigned int flags = AOP_FLAG_NOFS;
799
Christoph Hellwigae259a92016-06-21 09:23:11 +1000800 do {
801 struct page *page;
802 unsigned long offset; /* Offset into pagecache page */
803 unsigned long bytes; /* Bytes to write to page */
804 size_t copied; /* Bytes copied from user */
805
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700806 offset = offset_in_page(pos);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000807 bytes = min_t(unsigned long, PAGE_SIZE - offset,
808 iov_iter_count(i));
809again:
810 if (bytes > length)
811 bytes = length;
812
813 /*
814 * Bring in the user page that we will copy from _first_.
815 * Otherwise there's a nasty deadlock on copying from the
816 * same page as we're writing to, without it being marked
817 * up-to-date.
818 *
819 * Not only is this an optimisation, but it is also required
820 * to check that the address is actually valid, when atomic
821 * usercopies are used, below.
822 */
823 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
824 status = -EFAULT;
825 break;
826 }
827
828 status = iomap_write_begin(inode, pos, bytes, flags, &page,
829 iomap);
830 if (unlikely(status))
831 break;
832
833 if (mapping_writably_mapped(inode->i_mapping))
834 flush_dcache_page(page);
835
Christoph Hellwigae259a92016-06-21 09:23:11 +1000836 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000837
838 flush_dcache_page(page);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000839
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700840 status = iomap_write_end(inode, pos, bytes, copied, page,
841 iomap);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000842 if (unlikely(status < 0))
843 break;
844 copied = status;
845
846 cond_resched();
847
848 iov_iter_advance(i, copied);
849 if (unlikely(copied == 0)) {
850 /*
851 * If we were unable to copy any data at all, we must
852 * fall back to a single segment length write.
853 *
854 * If we didn't fallback here, we could livelock
855 * because not all segments in the iov can be copied at
856 * once without a pagefault.
857 */
858 bytes = min_t(unsigned long, PAGE_SIZE - offset,
859 iov_iter_single_seg_count(i));
860 goto again;
861 }
862 pos += copied;
863 written += copied;
864 length -= copied;
865
866 balance_dirty_pages_ratelimited(inode->i_mapping);
867 } while (iov_iter_count(i) && length);
868
869 return written ? written : status;
870}
871
872ssize_t
873iomap_file_buffered_write(struct kiocb *iocb, struct iov_iter *iter,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -0800874 const struct iomap_ops *ops)
Christoph Hellwigae259a92016-06-21 09:23:11 +1000875{
876 struct inode *inode = iocb->ki_filp->f_mapping->host;
877 loff_t pos = iocb->ki_pos, ret = 0, written = 0;
878
879 while (iov_iter_count(iter)) {
880 ret = iomap_apply(inode, pos, iov_iter_count(iter),
881 IOMAP_WRITE, ops, iter, iomap_write_actor);
882 if (ret <= 0)
883 break;
884 pos += ret;
885 written += ret;
886 }
887
888 return written ? written : ret;
889}
890EXPORT_SYMBOL_GPL(iomap_file_buffered_write);
891
Christoph Hellwig5f4e5752016-09-19 10:12:45 +1000892static struct page *
893__iomap_read_page(struct inode *inode, loff_t offset)
894{
895 struct address_space *mapping = inode->i_mapping;
896 struct page *page;
897
898 page = read_mapping_page(mapping, offset >> PAGE_SHIFT, NULL);
899 if (IS_ERR(page))
900 return page;
901 if (!PageUptodate(page)) {
902 put_page(page);
903 return ERR_PTR(-EIO);
904 }
905 return page;
906}
907
908static loff_t
909iomap_dirty_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
910 struct iomap *iomap)
911{
912 long status = 0;
913 ssize_t written = 0;
914
915 do {
916 struct page *page, *rpage;
917 unsigned long offset; /* Offset into pagecache page */
918 unsigned long bytes; /* Bytes to write to page */
919
Andreas Gruenbacher10259de2018-08-10 11:46:14 -0700920 offset = offset_in_page(pos);
Christoph Hellwige28ae8e2017-08-11 12:45:35 -0700921 bytes = min_t(loff_t, PAGE_SIZE - offset, length);
Christoph Hellwig5f4e5752016-09-19 10:12:45 +1000922
923 rpage = __iomap_read_page(inode, pos);
924 if (IS_ERR(rpage))
925 return PTR_ERR(rpage);
926
927 status = iomap_write_begin(inode, pos, bytes,
Tetsuo Handac718a972017-05-08 15:58:59 -0700928 AOP_FLAG_NOFS, &page, iomap);
Christoph Hellwig5f4e5752016-09-19 10:12:45 +1000929 put_page(rpage);
930 if (unlikely(status))
931 return status;
932
933 WARN_ON_ONCE(!PageUptodate(page));
934
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700935 status = iomap_write_end(inode, pos, bytes, bytes, page, iomap);
Christoph Hellwig5f4e5752016-09-19 10:12:45 +1000936 if (unlikely(status <= 0)) {
937 if (WARN_ON_ONCE(status == 0))
938 return -EIO;
939 return status;
940 }
941
942 cond_resched();
943
944 pos += status;
945 written += status;
946 length -= status;
947
948 balance_dirty_pages_ratelimited(inode->i_mapping);
949 } while (length);
950
951 return written;
952}
953
954int
955iomap_file_dirty(struct inode *inode, loff_t pos, loff_t len,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -0800956 const struct iomap_ops *ops)
Christoph Hellwig5f4e5752016-09-19 10:12:45 +1000957{
958 loff_t ret;
959
960 while (len) {
961 ret = iomap_apply(inode, pos, len, IOMAP_WRITE, ops, NULL,
962 iomap_dirty_actor);
963 if (ret <= 0)
964 return ret;
965 pos += ret;
966 len -= ret;
967 }
968
969 return 0;
970}
971EXPORT_SYMBOL_GPL(iomap_file_dirty);
972
Christoph Hellwigae259a92016-06-21 09:23:11 +1000973static int iomap_zero(struct inode *inode, loff_t pos, unsigned offset,
974 unsigned bytes, struct iomap *iomap)
975{
976 struct page *page;
977 int status;
978
Tetsuo Handac718a972017-05-08 15:58:59 -0700979 status = iomap_write_begin(inode, pos, bytes, AOP_FLAG_NOFS, &page,
980 iomap);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000981 if (status)
982 return status;
983
984 zero_user(page, offset, bytes);
985 mark_page_accessed(page);
986
Andreas Gruenbacher19e0c582018-06-19 15:10:56 -0700987 return iomap_write_end(inode, pos, bytes, bytes, page, iomap);
Christoph Hellwigae259a92016-06-21 09:23:11 +1000988}
989
Christoph Hellwig9a286f02016-06-21 09:31:39 +1000990static int iomap_dax_zero(loff_t pos, unsigned offset, unsigned bytes,
991 struct iomap *iomap)
992{
Christoph Hellwig57fc5052018-06-01 09:03:08 -0700993 return __dax_zero_page_range(iomap->bdev, iomap->dax_dev,
994 iomap_sector(iomap, pos & PAGE_MASK), offset, bytes);
Christoph Hellwig9a286f02016-06-21 09:31:39 +1000995}
996
Christoph Hellwigae259a92016-06-21 09:23:11 +1000997static loff_t
998iomap_zero_range_actor(struct inode *inode, loff_t pos, loff_t count,
999 void *data, struct iomap *iomap)
1000{
1001 bool *did_zero = data;
1002 loff_t written = 0;
1003 int status;
1004
1005 /* already zeroed? we're done. */
1006 if (iomap->type == IOMAP_HOLE || iomap->type == IOMAP_UNWRITTEN)
1007 return count;
1008
1009 do {
1010 unsigned offset, bytes;
1011
Andreas Gruenbacher10259de2018-08-10 11:46:14 -07001012 offset = offset_in_page(pos);
Christoph Hellwige28ae8e2017-08-11 12:45:35 -07001013 bytes = min_t(loff_t, PAGE_SIZE - offset, count);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001014
Christoph Hellwig9a286f02016-06-21 09:31:39 +10001015 if (IS_DAX(inode))
1016 status = iomap_dax_zero(pos, offset, bytes, iomap);
1017 else
1018 status = iomap_zero(inode, pos, offset, bytes, iomap);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001019 if (status < 0)
1020 return status;
1021
1022 pos += bytes;
1023 count -= bytes;
1024 written += bytes;
1025 if (did_zero)
1026 *did_zero = true;
1027 } while (count > 0);
1028
1029 return written;
1030}
1031
1032int
1033iomap_zero_range(struct inode *inode, loff_t pos, loff_t len, bool *did_zero,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001034 const struct iomap_ops *ops)
Christoph Hellwigae259a92016-06-21 09:23:11 +10001035{
1036 loff_t ret;
1037
1038 while (len > 0) {
1039 ret = iomap_apply(inode, pos, len, IOMAP_ZERO,
1040 ops, did_zero, iomap_zero_range_actor);
1041 if (ret <= 0)
1042 return ret;
1043
1044 pos += ret;
1045 len -= ret;
1046 }
1047
1048 return 0;
1049}
1050EXPORT_SYMBOL_GPL(iomap_zero_range);
1051
1052int
1053iomap_truncate_page(struct inode *inode, loff_t pos, bool *did_zero,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001054 const struct iomap_ops *ops)
Christoph Hellwigae259a92016-06-21 09:23:11 +10001055{
Fabian Frederick93407472017-02-27 14:28:32 -08001056 unsigned int blocksize = i_blocksize(inode);
1057 unsigned int off = pos & (blocksize - 1);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001058
1059 /* Block boundary? Nothing to do */
1060 if (!off)
1061 return 0;
1062 return iomap_zero_range(inode, pos, blocksize - off, did_zero, ops);
1063}
1064EXPORT_SYMBOL_GPL(iomap_truncate_page);
1065
1066static loff_t
1067iomap_page_mkwrite_actor(struct inode *inode, loff_t pos, loff_t length,
1068 void *data, struct iomap *iomap)
1069{
1070 struct page *page = data;
1071 int ret;
1072
Christoph Hellwigc03cea42018-06-19 15:10:58 -07001073 if (iomap->flags & IOMAP_F_BUFFER_HEAD) {
1074 ret = __block_write_begin_int(page, pos, length, NULL, iomap);
1075 if (ret)
1076 return ret;
1077 block_commit_write(page, 0, length);
1078 } else {
1079 WARN_ON_ONCE(!PageUptodate(page));
Christoph Hellwig9dc55f12018-07-11 22:26:05 -07001080 iomap_page_create(inode, page);
Brian Foster561295a2018-09-29 13:51:01 +10001081 set_page_dirty(page);
Christoph Hellwigc03cea42018-06-19 15:10:58 -07001082 }
Christoph Hellwigae259a92016-06-21 09:23:11 +10001083
Christoph Hellwigae259a92016-06-21 09:23:11 +10001084 return length;
1085}
1086
Dave Jiang11bac802017-02-24 14:56:41 -08001087int iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops)
Christoph Hellwigae259a92016-06-21 09:23:11 +10001088{
1089 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08001090 struct inode *inode = file_inode(vmf->vma->vm_file);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001091 unsigned long length;
1092 loff_t offset, size;
1093 ssize_t ret;
1094
1095 lock_page(page);
1096 size = i_size_read(inode);
1097 if ((page->mapping != inode->i_mapping) ||
1098 (page_offset(page) > size)) {
1099 /* We overload EFAULT to mean page got truncated */
1100 ret = -EFAULT;
1101 goto out_unlock;
1102 }
1103
1104 /* page is wholly or partially inside EOF */
1105 if (((page->index + 1) << PAGE_SHIFT) > size)
Andreas Gruenbacher10259de2018-08-10 11:46:14 -07001106 length = offset_in_page(size);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001107 else
1108 length = PAGE_SIZE;
1109
1110 offset = page_offset(page);
1111 while (length > 0) {
Jan Kara9484ab12016-11-10 10:26:50 +11001112 ret = iomap_apply(inode, offset, length,
1113 IOMAP_WRITE | IOMAP_FAULT, ops, page,
1114 iomap_page_mkwrite_actor);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001115 if (unlikely(ret <= 0))
1116 goto out_unlock;
1117 offset += ret;
1118 length -= ret;
1119 }
1120
Christoph Hellwigae259a92016-06-21 09:23:11 +10001121 wait_for_stable_page(page);
Christoph Hellwige7647fb2017-08-29 10:08:41 -07001122 return VM_FAULT_LOCKED;
Christoph Hellwigae259a92016-06-21 09:23:11 +10001123out_unlock:
1124 unlock_page(page);
Christoph Hellwige7647fb2017-08-29 10:08:41 -07001125 return block_page_mkwrite_return(ret);
Christoph Hellwigae259a92016-06-21 09:23:11 +10001126}
1127EXPORT_SYMBOL_GPL(iomap_page_mkwrite);
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001128
1129struct fiemap_ctx {
1130 struct fiemap_extent_info *fi;
1131 struct iomap prev;
1132};
1133
1134static int iomap_to_fiemap(struct fiemap_extent_info *fi,
1135 struct iomap *iomap, u32 flags)
1136{
1137 switch (iomap->type) {
1138 case IOMAP_HOLE:
1139 /* skip holes */
1140 return 0;
1141 case IOMAP_DELALLOC:
1142 flags |= FIEMAP_EXTENT_DELALLOC | FIEMAP_EXTENT_UNKNOWN;
1143 break;
Christoph Hellwig19319b52018-06-01 09:03:06 -07001144 case IOMAP_MAPPED:
1145 break;
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001146 case IOMAP_UNWRITTEN:
1147 flags |= FIEMAP_EXTENT_UNWRITTEN;
1148 break;
Christoph Hellwig19319b52018-06-01 09:03:06 -07001149 case IOMAP_INLINE:
1150 flags |= FIEMAP_EXTENT_DATA_INLINE;
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001151 break;
1152 }
1153
Christoph Hellwig17de0a92016-08-29 11:33:58 +10001154 if (iomap->flags & IOMAP_F_MERGED)
1155 flags |= FIEMAP_EXTENT_MERGED;
Darrick J. Wonge43c4602016-09-19 10:13:02 +10001156 if (iomap->flags & IOMAP_F_SHARED)
1157 flags |= FIEMAP_EXTENT_SHARED;
Christoph Hellwig17de0a92016-08-29 11:33:58 +10001158
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001159 return fiemap_fill_next_extent(fi, iomap->offset,
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -04001160 iomap->addr != IOMAP_NULL_ADDR ? iomap->addr : 0,
Christoph Hellwig17de0a92016-08-29 11:33:58 +10001161 iomap->length, flags);
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001162}
1163
1164static loff_t
1165iomap_fiemap_actor(struct inode *inode, loff_t pos, loff_t length, void *data,
1166 struct iomap *iomap)
1167{
1168 struct fiemap_ctx *ctx = data;
1169 loff_t ret = length;
1170
1171 if (iomap->type == IOMAP_HOLE)
1172 return length;
1173
1174 ret = iomap_to_fiemap(ctx->fi, &ctx->prev, 0);
1175 ctx->prev = *iomap;
1176 switch (ret) {
1177 case 0: /* success */
1178 return length;
1179 case 1: /* extent array full */
1180 return 0;
1181 default:
1182 return ret;
1183 }
1184}
1185
1186int iomap_fiemap(struct inode *inode, struct fiemap_extent_info *fi,
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001187 loff_t start, loff_t len, const struct iomap_ops *ops)
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001188{
1189 struct fiemap_ctx ctx;
1190 loff_t ret;
1191
1192 memset(&ctx, 0, sizeof(ctx));
1193 ctx.fi = fi;
1194 ctx.prev.type = IOMAP_HOLE;
1195
1196 ret = fiemap_check_flags(fi, FIEMAP_FLAG_SYNC);
1197 if (ret)
1198 return ret;
1199
Dave Chinner8896b8f2016-08-17 08:41:10 +10001200 if (fi->fi_flags & FIEMAP_FLAG_SYNC) {
1201 ret = filemap_write_and_wait(inode->i_mapping);
1202 if (ret)
1203 return ret;
1204 }
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001205
1206 while (len > 0) {
Christoph Hellwigd33fd772016-10-20 15:51:28 +11001207 ret = iomap_apply(inode, start, len, IOMAP_REPORT, ops, &ctx,
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001208 iomap_fiemap_actor);
Dave Chinnerac2dc052016-08-17 08:41:34 +10001209 /* inode with no (attribute) mapping will give ENOENT */
1210 if (ret == -ENOENT)
1211 break;
Christoph Hellwig8be9f562016-06-21 09:38:45 +10001212 if (ret < 0)
1213 return ret;
1214 if (ret == 0)
1215 break;
1216
1217 start += ret;
1218 len -= ret;
1219 }
1220
1221 if (ctx.prev.type != IOMAP_HOLE) {
1222 ret = iomap_to_fiemap(fi, &ctx.prev, FIEMAP_EXTENT_LAST);
1223 if (ret < 0)
1224 return ret;
1225 }
1226
1227 return 0;
1228}
1229EXPORT_SYMBOL_GPL(iomap_fiemap);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001230
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001231/*
1232 * Seek for SEEK_DATA / SEEK_HOLE within @page, starting at @lastoff.
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001233 * Returns true if found and updates @lastoff to the offset in file.
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001234 */
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001235static bool
1236page_seek_hole_data(struct inode *inode, struct page *page, loff_t *lastoff,
1237 int whence)
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001238{
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001239 const struct address_space_operations *ops = inode->i_mapping->a_ops;
1240 unsigned int bsize = i_blocksize(inode), off;
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001241 bool seek_data = whence == SEEK_DATA;
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001242 loff_t poff = page_offset(page);
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001243
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001244 if (WARN_ON_ONCE(*lastoff >= poff + PAGE_SIZE))
1245 return false;
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001246
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001247 if (*lastoff < poff) {
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001248 /*
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001249 * Last offset smaller than the start of the page means we found
1250 * a hole:
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001251 */
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001252 if (whence == SEEK_HOLE)
1253 return true;
1254 *lastoff = poff;
1255 }
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001256
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001257 /*
1258 * Just check the page unless we can and should check block ranges:
1259 */
1260 if (bsize == PAGE_SIZE || !ops->is_partially_uptodate)
1261 return PageUptodate(page) == seek_data;
1262
1263 lock_page(page);
1264 if (unlikely(page->mapping != inode->i_mapping))
1265 goto out_unlock_not_found;
1266
1267 for (off = 0; off < PAGE_SIZE; off += bsize) {
Andreas Gruenbacher10259de2018-08-10 11:46:14 -07001268 if (offset_in_page(*lastoff) >= off + bsize)
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001269 continue;
1270 if (ops->is_partially_uptodate(page, off, bsize) == seek_data) {
1271 unlock_page(page);
1272 return true;
1273 }
1274 *lastoff = poff + off + bsize;
1275 }
1276
1277out_unlock_not_found:
1278 unlock_page(page);
1279 return false;
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001280}
1281
1282/*
1283 * Seek for SEEK_DATA / SEEK_HOLE in the page cache.
1284 *
1285 * Within unwritten extents, the page cache determines which parts are holes
Christoph Hellwigbd56b3e2018-06-01 09:05:14 -07001286 * and which are data: uptodate buffer heads count as data; everything else
1287 * counts as a hole.
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001288 *
1289 * Returns the resulting offset on successs, and -ENOENT otherwise.
1290 */
1291static loff_t
1292page_cache_seek_hole_data(struct inode *inode, loff_t offset, loff_t length,
1293 int whence)
1294{
1295 pgoff_t index = offset >> PAGE_SHIFT;
1296 pgoff_t end = DIV_ROUND_UP(offset + length, PAGE_SIZE);
1297 loff_t lastoff = offset;
1298 struct pagevec pvec;
1299
1300 if (length <= 0)
1301 return -ENOENT;
1302
1303 pagevec_init(&pvec);
1304
1305 do {
1306 unsigned nr_pages, i;
1307
1308 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping, &index,
1309 end - 1);
1310 if (nr_pages == 0)
1311 break;
1312
1313 for (i = 0; i < nr_pages; i++) {
1314 struct page *page = pvec.pages[i];
1315
Christoph Hellwigafd9d6a2018-06-01 09:05:15 -07001316 if (page_seek_hole_data(inode, page, &lastoff, whence))
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001317 goto check_range;
Christoph Hellwig8a78cb12018-06-01 09:04:40 -07001318 lastoff = page_offset(page) + PAGE_SIZE;
1319 }
1320 pagevec_release(&pvec);
1321 } while (index < end);
1322
1323 /* When no page at lastoff and we are not done, we found a hole. */
1324 if (whence != SEEK_HOLE)
1325 goto not_found;
1326
1327check_range:
1328 if (lastoff < offset + length)
1329 goto out;
1330not_found:
1331 lastoff = -ENOENT;
1332out:
1333 pagevec_release(&pvec);
1334 return lastoff;
1335}
1336
1337
Andreas Gruenbacher0ed3b0d2017-06-29 11:43:21 -07001338static loff_t
1339iomap_seek_hole_actor(struct inode *inode, loff_t offset, loff_t length,
1340 void *data, struct iomap *iomap)
1341{
1342 switch (iomap->type) {
1343 case IOMAP_UNWRITTEN:
1344 offset = page_cache_seek_hole_data(inode, offset, length,
1345 SEEK_HOLE);
1346 if (offset < 0)
1347 return length;
1348 /* fall through */
1349 case IOMAP_HOLE:
1350 *(loff_t *)data = offset;
1351 return 0;
1352 default:
1353 return length;
1354 }
1355}
1356
1357loff_t
1358iomap_seek_hole(struct inode *inode, loff_t offset, const struct iomap_ops *ops)
1359{
1360 loff_t size = i_size_read(inode);
1361 loff_t length = size - offset;
1362 loff_t ret;
1363
Darrick J. Wongd6ab17f2017-07-12 10:26:47 -07001364 /* Nothing to be found before or beyond the end of the file. */
1365 if (offset < 0 || offset >= size)
Andreas Gruenbacher0ed3b0d2017-06-29 11:43:21 -07001366 return -ENXIO;
1367
1368 while (length > 0) {
1369 ret = iomap_apply(inode, offset, length, IOMAP_REPORT, ops,
1370 &offset, iomap_seek_hole_actor);
1371 if (ret < 0)
1372 return ret;
1373 if (ret == 0)
1374 break;
1375
1376 offset += ret;
1377 length -= ret;
1378 }
1379
1380 return offset;
1381}
1382EXPORT_SYMBOL_GPL(iomap_seek_hole);
1383
1384static loff_t
1385iomap_seek_data_actor(struct inode *inode, loff_t offset, loff_t length,
1386 void *data, struct iomap *iomap)
1387{
1388 switch (iomap->type) {
1389 case IOMAP_HOLE:
1390 return length;
1391 case IOMAP_UNWRITTEN:
1392 offset = page_cache_seek_hole_data(inode, offset, length,
1393 SEEK_DATA);
1394 if (offset < 0)
1395 return length;
1396 /*FALLTHRU*/
1397 default:
1398 *(loff_t *)data = offset;
1399 return 0;
1400 }
1401}
1402
1403loff_t
1404iomap_seek_data(struct inode *inode, loff_t offset, const struct iomap_ops *ops)
1405{
1406 loff_t size = i_size_read(inode);
1407 loff_t length = size - offset;
1408 loff_t ret;
1409
Darrick J. Wongd6ab17f2017-07-12 10:26:47 -07001410 /* Nothing to be found before or beyond the end of the file. */
1411 if (offset < 0 || offset >= size)
Andreas Gruenbacher0ed3b0d2017-06-29 11:43:21 -07001412 return -ENXIO;
1413
1414 while (length > 0) {
1415 ret = iomap_apply(inode, offset, length, IOMAP_REPORT, ops,
1416 &offset, iomap_seek_data_actor);
1417 if (ret < 0)
1418 return ret;
1419 if (ret == 0)
1420 break;
1421
1422 offset += ret;
1423 length -= ret;
1424 }
1425
1426 if (length <= 0)
1427 return -ENXIO;
1428 return offset;
1429}
1430EXPORT_SYMBOL_GPL(iomap_seek_data);
1431
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001432/*
1433 * Private flags for iomap_dio, must not overlap with the public ones in
1434 * iomap.h:
1435 */
Dave Chinner3460cac2018-05-02 12:54:53 -07001436#define IOMAP_DIO_WRITE_FUA (1 << 28)
Dave Chinner4f8ff442018-05-02 12:54:52 -07001437#define IOMAP_DIO_NEED_SYNC (1 << 29)
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001438#define IOMAP_DIO_WRITE (1 << 30)
1439#define IOMAP_DIO_DIRTY (1 << 31)
1440
1441struct iomap_dio {
1442 struct kiocb *iocb;
1443 iomap_dio_end_io_t *end_io;
1444 loff_t i_size;
1445 loff_t size;
1446 atomic_t ref;
1447 unsigned flags;
1448 int error;
Andreas Gruenbacherebf00be2018-06-19 15:10:55 -07001449 bool wait_for_completion;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001450
1451 union {
1452 /* used during submission and for synchronous completion: */
1453 struct {
1454 struct iov_iter *iter;
1455 struct task_struct *waiter;
1456 struct request_queue *last_queue;
1457 blk_qc_t cookie;
1458 } submit;
1459
1460 /* used for aio completion: */
1461 struct {
1462 struct work_struct work;
1463 } aio;
1464 };
1465};
1466
1467static ssize_t iomap_dio_complete(struct iomap_dio *dio)
1468{
1469 struct kiocb *iocb = dio->iocb;
Lukas Czerner332391a2017-09-21 08:16:29 -06001470 struct inode *inode = file_inode(iocb->ki_filp);
Eryu Guan5e25c262017-10-13 09:47:46 -07001471 loff_t offset = iocb->ki_pos;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001472 ssize_t ret;
1473
1474 if (dio->end_io) {
1475 ret = dio->end_io(iocb,
1476 dio->error ? dio->error : dio->size,
1477 dio->flags);
1478 } else {
1479 ret = dio->error;
1480 }
1481
1482 if (likely(!ret)) {
1483 ret = dio->size;
1484 /* check for short read */
Eryu Guan5e25c262017-10-13 09:47:46 -07001485 if (offset + ret > dio->i_size &&
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001486 !(dio->flags & IOMAP_DIO_WRITE))
Eryu Guan5e25c262017-10-13 09:47:46 -07001487 ret = dio->i_size - offset;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001488 iocb->ki_pos += ret;
1489 }
1490
Eryu Guan5e25c262017-10-13 09:47:46 -07001491 /*
1492 * Try again to invalidate clean pages which might have been cached by
1493 * non-direct readahead, or faulted in by get_user_pages() if the source
1494 * of the write was an mmap'ed region of the file we're writing. Either
1495 * one is a pretty crazy thing to do, so we don't support it 100%. If
1496 * this invalidation fails, tough, the write still worked...
1497 *
1498 * And this page cache invalidation has to be after dio->end_io(), as
1499 * some filesystems convert unwritten extents to real allocations in
1500 * end_io() when necessary, otherwise a racing buffer read would cache
1501 * zeros from unwritten extents.
1502 */
1503 if (!dio->error &&
1504 (dio->flags & IOMAP_DIO_WRITE) && inode->i_mapping->nrpages) {
1505 int err;
1506 err = invalidate_inode_pages2_range(inode->i_mapping,
1507 offset >> PAGE_SHIFT,
1508 (offset + dio->size - 1) >> PAGE_SHIFT);
Darrick J. Wong5a9d9292018-01-08 10:41:39 -08001509 if (err)
1510 dio_warn_stale_pagecache(iocb->ki_filp);
Eryu Guan5e25c262017-10-13 09:47:46 -07001511 }
1512
Dave Chinner4f8ff442018-05-02 12:54:52 -07001513 /*
1514 * If this is a DSYNC write, make sure we push it to stable storage now
1515 * that we've written data.
1516 */
1517 if (ret > 0 && (dio->flags & IOMAP_DIO_NEED_SYNC))
1518 ret = generic_write_sync(iocb, ret);
1519
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001520 inode_dio_end(file_inode(iocb->ki_filp));
1521 kfree(dio);
1522
1523 return ret;
1524}
1525
1526static void iomap_dio_complete_work(struct work_struct *work)
1527{
1528 struct iomap_dio *dio = container_of(work, struct iomap_dio, aio.work);
1529 struct kiocb *iocb = dio->iocb;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001530
Dave Chinner4f8ff442018-05-02 12:54:52 -07001531 iocb->ki_complete(iocb, iomap_dio_complete(dio), 0);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001532}
1533
1534/*
1535 * Set an error in the dio if none is set yet. We have to use cmpxchg
1536 * as the submission context and the completion context(s) can race to
1537 * update the error.
1538 */
1539static inline void iomap_dio_set_error(struct iomap_dio *dio, int ret)
1540{
1541 cmpxchg(&dio->error, 0, ret);
1542}
1543
1544static void iomap_dio_bio_end_io(struct bio *bio)
1545{
1546 struct iomap_dio *dio = bio->bi_private;
1547 bool should_dirty = (dio->flags & IOMAP_DIO_DIRTY);
1548
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001549 if (bio->bi_status)
1550 iomap_dio_set_error(dio, blk_status_to_errno(bio->bi_status));
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001551
1552 if (atomic_dec_and_test(&dio->ref)) {
Andreas Gruenbacherebf00be2018-06-19 15:10:55 -07001553 if (dio->wait_for_completion) {
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001554 struct task_struct *waiter = dio->submit.waiter;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001555 WRITE_ONCE(dio->submit.waiter, NULL);
1556 wake_up_process(waiter);
1557 } else if (dio->flags & IOMAP_DIO_WRITE) {
1558 struct inode *inode = file_inode(dio->iocb->ki_filp);
1559
1560 INIT_WORK(&dio->aio.work, iomap_dio_complete_work);
1561 queue_work(inode->i_sb->s_dio_done_wq, &dio->aio.work);
1562 } else {
1563 iomap_dio_complete_work(&dio->aio.work);
1564 }
1565 }
1566
1567 if (should_dirty) {
1568 bio_check_pages_dirty(bio);
1569 } else {
1570 struct bio_vec *bvec;
1571 int i;
1572
1573 bio_for_each_segment_all(bvec, bio, i)
1574 put_page(bvec->bv_page);
1575 bio_put(bio);
1576 }
1577}
1578
1579static blk_qc_t
1580iomap_dio_zero(struct iomap_dio *dio, struct iomap *iomap, loff_t pos,
1581 unsigned len)
1582{
1583 struct page *page = ZERO_PAGE(0);
1584 struct bio *bio;
1585
1586 bio = bio_alloc(GFP_KERNEL, 1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001587 bio_set_dev(bio, iomap->bdev);
Christoph Hellwig57fc5052018-06-01 09:03:08 -07001588 bio->bi_iter.bi_sector = iomap_sector(iomap, pos);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001589 bio->bi_private = dio;
1590 bio->bi_end_io = iomap_dio_bio_end_io;
1591
1592 get_page(page);
Christoph Hellwig6533b4e2018-06-01 09:03:07 -07001593 __bio_add_page(bio, page, len, 0);
Linus Torvalds5cc60ae2016-12-14 21:35:31 -08001594 bio_set_op_attrs(bio, REQ_OP_WRITE, REQ_SYNC | REQ_IDLE);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001595
1596 atomic_inc(&dio->ref);
1597 return submit_bio(bio);
1598}
1599
1600static loff_t
Christoph Hellwig09230432018-07-03 09:07:46 -07001601iomap_dio_bio_actor(struct inode *inode, loff_t pos, loff_t length,
1602 struct iomap_dio *dio, struct iomap *iomap)
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001603{
Fabian Frederick93407472017-02-27 14:28:32 -08001604 unsigned int blkbits = blksize_bits(bdev_logical_block_size(iomap->bdev));
1605 unsigned int fs_block_size = i_blocksize(inode), pad;
1606 unsigned int align = iov_iter_alignment(dio->submit.iter);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001607 struct iov_iter iter;
1608 struct bio *bio;
1609 bool need_zeroout = false;
Dave Chinner3460cac2018-05-02 12:54:53 -07001610 bool use_fua = false;
Dave Chinner807a5972018-11-19 13:31:11 -08001611 int nr_pages, ret = 0;
Al Virocfe057f2017-09-11 21:17:09 +01001612 size_t copied = 0;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001613
1614 if ((pos | length | align) & ((1 << blkbits) - 1))
1615 return -EINVAL;
1616
Christoph Hellwig09230432018-07-03 09:07:46 -07001617 if (iomap->type == IOMAP_UNWRITTEN) {
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001618 dio->flags |= IOMAP_DIO_UNWRITTEN;
1619 need_zeroout = true;
Christoph Hellwig09230432018-07-03 09:07:46 -07001620 }
1621
1622 if (iomap->flags & IOMAP_F_SHARED)
1623 dio->flags |= IOMAP_DIO_COW;
1624
1625 if (iomap->flags & IOMAP_F_NEW) {
1626 need_zeroout = true;
Dave Chinnerac3ec5a2018-11-19 13:31:10 -08001627 } else if (iomap->type == IOMAP_MAPPED) {
Christoph Hellwig09230432018-07-03 09:07:46 -07001628 /*
Dave Chinnerac3ec5a2018-11-19 13:31:10 -08001629 * Use a FUA write if we need datasync semantics, this is a pure
1630 * data IO that doesn't require any metadata updates (including
1631 * after IO completion such as unwritten extent conversion) and
1632 * the underlying device supports FUA. This allows us to avoid
1633 * cache flushes on IO completion.
Christoph Hellwig09230432018-07-03 09:07:46 -07001634 */
1635 if (!(iomap->flags & (IOMAP_F_SHARED|IOMAP_F_DIRTY)) &&
1636 (dio->flags & IOMAP_DIO_WRITE_FUA) &&
1637 blk_queue_fua(bdev_get_queue(iomap->bdev)))
1638 use_fua = true;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001639 }
1640
1641 /*
1642 * Operate on a partial iter trimmed to the extent we were called for.
1643 * We'll update the iter in the dio once we're done with this extent.
1644 */
1645 iter = *dio->submit.iter;
1646 iov_iter_truncate(&iter, length);
1647
1648 nr_pages = iov_iter_npages(&iter, BIO_MAX_PAGES);
1649 if (nr_pages <= 0)
1650 return nr_pages;
1651
1652 if (need_zeroout) {
1653 /* zero out from the start of the block to the write offset */
1654 pad = pos & (fs_block_size - 1);
1655 if (pad)
1656 iomap_dio_zero(dio, iomap, pos - pad, pad);
1657 }
1658
1659 do {
Al Virocfe057f2017-09-11 21:17:09 +01001660 size_t n;
1661 if (dio->error) {
1662 iov_iter_revert(dio->submit.iter, copied);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001663 return 0;
Al Virocfe057f2017-09-11 21:17:09 +01001664 }
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001665
1666 bio = bio_alloc(GFP_KERNEL, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001667 bio_set_dev(bio, iomap->bdev);
Christoph Hellwig57fc5052018-06-01 09:03:08 -07001668 bio->bi_iter.bi_sector = iomap_sector(iomap, pos);
Jens Axboe45d06cf2017-06-27 11:01:22 -06001669 bio->bi_write_hint = dio->iocb->ki_hint;
Adam Manzanares087e5662018-05-22 10:52:21 -07001670 bio->bi_ioprio = dio->iocb->ki_ioprio;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001671 bio->bi_private = dio;
1672 bio->bi_end_io = iomap_dio_bio_end_io;
1673
1674 ret = bio_iov_iter_get_pages(bio, &iter);
1675 if (unlikely(ret)) {
Dave Chinner807a5972018-11-19 13:31:11 -08001676 /*
1677 * We have to stop part way through an IO. We must fall
1678 * through to the sub-block tail zeroing here, otherwise
1679 * this short IO may expose stale data in the tail of
1680 * the block we haven't written data to.
1681 */
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001682 bio_put(bio);
Dave Chinner807a5972018-11-19 13:31:11 -08001683 goto zero_tail;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001684 }
1685
Al Virocfe057f2017-09-11 21:17:09 +01001686 n = bio->bi_iter.bi_size;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001687 if (dio->flags & IOMAP_DIO_WRITE) {
Dave Chinner3460cac2018-05-02 12:54:53 -07001688 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
1689 if (use_fua)
1690 bio->bi_opf |= REQ_FUA;
1691 else
1692 dio->flags &= ~IOMAP_DIO_WRITE_FUA;
Al Virocfe057f2017-09-11 21:17:09 +01001693 task_io_account_write(n);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001694 } else {
Dave Chinner3460cac2018-05-02 12:54:53 -07001695 bio->bi_opf = REQ_OP_READ;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001696 if (dio->flags & IOMAP_DIO_DIRTY)
1697 bio_set_pages_dirty(bio);
1698 }
1699
Al Virocfe057f2017-09-11 21:17:09 +01001700 iov_iter_advance(dio->submit.iter, n);
1701
1702 dio->size += n;
1703 pos += n;
1704 copied += n;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001705
1706 nr_pages = iov_iter_npages(&iter, BIO_MAX_PAGES);
1707
1708 atomic_inc(&dio->ref);
1709
1710 dio->submit.last_queue = bdev_get_queue(iomap->bdev);
1711 dio->submit.cookie = submit_bio(bio);
1712 } while (nr_pages);
1713
Dave Chinnerb61fdcd2018-11-19 13:31:10 -08001714 /*
1715 * We need to zeroout the tail of a sub-block write if the extent type
1716 * requires zeroing or the write extends beyond EOF. If we don't zero
1717 * the block tail in the latter case, we can expose stale data via mmap
1718 * reads of the EOF block.
1719 */
Dave Chinner807a5972018-11-19 13:31:11 -08001720zero_tail:
Dave Chinnerb61fdcd2018-11-19 13:31:10 -08001721 if (need_zeroout ||
1722 ((dio->flags & IOMAP_DIO_WRITE) && pos >= i_size_read(inode))) {
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001723 /* zero out from the end of the write to the end of the block */
1724 pad = pos & (fs_block_size - 1);
1725 if (pad)
1726 iomap_dio_zero(dio, iomap, pos, fs_block_size - pad);
1727 }
Dave Chinner807a5972018-11-19 13:31:11 -08001728 return copied ? copied : ret;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001729}
1730
Christoph Hellwig09230432018-07-03 09:07:46 -07001731static loff_t
1732iomap_dio_hole_actor(loff_t length, struct iomap_dio *dio)
1733{
1734 length = iov_iter_zero(length, dio->submit.iter);
1735 dio->size += length;
1736 return length;
1737}
1738
1739static loff_t
Andreas Gruenbacherec181f62018-07-03 09:07:47 -07001740iomap_dio_inline_actor(struct inode *inode, loff_t pos, loff_t length,
1741 struct iomap_dio *dio, struct iomap *iomap)
1742{
1743 struct iov_iter *iter = dio->submit.iter;
1744 size_t copied;
1745
1746 BUG_ON(pos + length > PAGE_SIZE - offset_in_page(iomap->inline_data));
1747
1748 if (dio->flags & IOMAP_DIO_WRITE) {
1749 loff_t size = inode->i_size;
1750
1751 if (pos > size)
1752 memset(iomap->inline_data + size, 0, pos - size);
1753 copied = copy_from_iter(iomap->inline_data + pos, length, iter);
1754 if (copied) {
1755 if (pos + copied > size)
1756 i_size_write(inode, pos + copied);
1757 mark_inode_dirty(inode);
1758 }
1759 } else {
1760 copied = copy_to_iter(iomap->inline_data + pos, length, iter);
1761 }
1762 dio->size += copied;
1763 return copied;
1764}
1765
1766static loff_t
Christoph Hellwig09230432018-07-03 09:07:46 -07001767iomap_dio_actor(struct inode *inode, loff_t pos, loff_t length,
1768 void *data, struct iomap *iomap)
1769{
1770 struct iomap_dio *dio = data;
1771
1772 switch (iomap->type) {
1773 case IOMAP_HOLE:
1774 if (WARN_ON_ONCE(dio->flags & IOMAP_DIO_WRITE))
1775 return -EIO;
1776 return iomap_dio_hole_actor(length, dio);
1777 case IOMAP_UNWRITTEN:
1778 if (!(dio->flags & IOMAP_DIO_WRITE))
1779 return iomap_dio_hole_actor(length, dio);
1780 return iomap_dio_bio_actor(inode, pos, length, dio, iomap);
1781 case IOMAP_MAPPED:
1782 return iomap_dio_bio_actor(inode, pos, length, dio, iomap);
Andreas Gruenbacherec181f62018-07-03 09:07:47 -07001783 case IOMAP_INLINE:
1784 return iomap_dio_inline_actor(inode, pos, length, dio, iomap);
Christoph Hellwig09230432018-07-03 09:07:46 -07001785 default:
1786 WARN_ON_ONCE(1);
1787 return -EIO;
1788 }
1789}
1790
Dave Chinner4f8ff442018-05-02 12:54:52 -07001791/*
1792 * iomap_dio_rw() always completes O_[D]SYNC writes regardless of whether the IO
Dave Chinner3460cac2018-05-02 12:54:53 -07001793 * is being issued as AIO or not. This allows us to optimise pure data writes
1794 * to use REQ_FUA rather than requiring generic_write_sync() to issue a
1795 * REQ_FLUSH post write. This is slightly tricky because a single request here
1796 * can be mapped into multiple disjoint IOs and only a subset of the IOs issued
1797 * may be pure data writes. In that case, we still need to do a full data sync
1798 * completion.
Dave Chinner4f8ff442018-05-02 12:54:52 -07001799 */
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001800ssize_t
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001801iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
1802 const struct iomap_ops *ops, iomap_dio_end_io_t end_io)
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001803{
1804 struct address_space *mapping = iocb->ki_filp->f_mapping;
1805 struct inode *inode = file_inode(iocb->ki_filp);
1806 size_t count = iov_iter_count(iter);
Eryu Guanc771c142017-03-02 15:02:06 -08001807 loff_t pos = iocb->ki_pos, start = pos;
1808 loff_t end = iocb->ki_pos + count - 1, ret = 0;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001809 unsigned int flags = IOMAP_DIRECT;
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001810 bool wait_for_completion = is_sync_kiocb(iocb);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001811 struct blk_plug plug;
1812 struct iomap_dio *dio;
1813
1814 lockdep_assert_held(&inode->i_rwsem);
1815
1816 if (!count)
1817 return 0;
1818
1819 dio = kmalloc(sizeof(*dio), GFP_KERNEL);
1820 if (!dio)
1821 return -ENOMEM;
1822
1823 dio->iocb = iocb;
1824 atomic_set(&dio->ref, 1);
1825 dio->size = 0;
1826 dio->i_size = i_size_read(inode);
1827 dio->end_io = end_io;
1828 dio->error = 0;
1829 dio->flags = 0;
1830
1831 dio->submit.iter = iter;
Andreas Gruenbacherebf00be2018-06-19 15:10:55 -07001832 dio->submit.waiter = current;
1833 dio->submit.cookie = BLK_QC_T_NONE;
1834 dio->submit.last_queue = NULL;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001835
1836 if (iov_iter_rw(iter) == READ) {
1837 if (pos >= dio->i_size)
1838 goto out_free_dio;
1839
1840 if (iter->type == ITER_IOVEC)
1841 dio->flags |= IOMAP_DIO_DIRTY;
1842 } else {
Dave Chinner3460cac2018-05-02 12:54:53 -07001843 flags |= IOMAP_WRITE;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001844 dio->flags |= IOMAP_DIO_WRITE;
Dave Chinner3460cac2018-05-02 12:54:53 -07001845
1846 /* for data sync or sync, we need sync completion processing */
Dave Chinner4f8ff442018-05-02 12:54:52 -07001847 if (iocb->ki_flags & IOCB_DSYNC)
1848 dio->flags |= IOMAP_DIO_NEED_SYNC;
Dave Chinner3460cac2018-05-02 12:54:53 -07001849
1850 /*
1851 * For datasync only writes, we optimistically try using FUA for
1852 * this IO. Any non-FUA write that occurs will clear this flag,
1853 * hence we know before completion whether a cache flush is
1854 * necessary.
1855 */
1856 if ((iocb->ki_flags & (IOCB_DSYNC | IOCB_SYNC)) == IOCB_DSYNC)
1857 dio->flags |= IOMAP_DIO_WRITE_FUA;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001858 }
1859
Goldwyn Rodriguesa38d1242017-06-20 07:05:45 -05001860 if (iocb->ki_flags & IOCB_NOWAIT) {
1861 if (filemap_range_has_page(mapping, start, end)) {
1862 ret = -EAGAIN;
1863 goto out_free_dio;
1864 }
1865 flags |= IOMAP_NOWAIT;
1866 }
1867
Andrey Ryabinin55635ba2017-05-03 14:55:59 -07001868 ret = filemap_write_and_wait_range(mapping, start, end);
1869 if (ret)
1870 goto out_free_dio;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001871
Darrick J. Wong5a9d9292018-01-08 10:41:39 -08001872 /*
1873 * Try to invalidate cache pages for the range we're direct
1874 * writing. If this invalidation fails, tough, the write will
1875 * still work, but racing two incompatible write paths is a
1876 * pretty crazy thing to do, so we don't support it 100%.
1877 */
Andrey Ryabinin55635ba2017-05-03 14:55:59 -07001878 ret = invalidate_inode_pages2_range(mapping,
1879 start >> PAGE_SHIFT, end >> PAGE_SHIFT);
Darrick J. Wong5a9d9292018-01-08 10:41:39 -08001880 if (ret)
1881 dio_warn_stale_pagecache(iocb->ki_filp);
Andrey Ryabinin55635ba2017-05-03 14:55:59 -07001882 ret = 0;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001883
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001884 if (iov_iter_rw(iter) == WRITE && !wait_for_completion &&
Chandan Rajendra546e7be2017-09-22 11:47:33 -07001885 !inode->i_sb->s_dio_done_wq) {
1886 ret = sb_init_dio_done_wq(inode->i_sb);
1887 if (ret < 0)
1888 goto out_free_dio;
1889 }
1890
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001891 inode_dio_begin(inode);
1892
1893 blk_start_plug(&plug);
1894 do {
1895 ret = iomap_apply(inode, pos, count, flags, ops, dio,
1896 iomap_dio_actor);
1897 if (ret <= 0) {
1898 /* magic error code to fall back to buffered I/O */
Andreas Gruenbacherebf00be2018-06-19 15:10:55 -07001899 if (ret == -ENOTBLK) {
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001900 wait_for_completion = true;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001901 ret = 0;
Andreas Gruenbacherebf00be2018-06-19 15:10:55 -07001902 }
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001903 break;
1904 }
1905 pos += ret;
Chandan Rajendraa008c312017-04-12 11:03:20 -07001906
Jan Karab59116f2019-11-21 16:14:38 -08001907 if (iov_iter_rw(iter) == READ && pos >= dio->i_size) {
1908 /*
1909 * We only report that we've read data up to i_size.
1910 * Revert iter to a state corresponding to that as
1911 * some callers (such as splice code) rely on it.
1912 */
1913 iov_iter_revert(iter, pos - dio->i_size);
Chandan Rajendraa008c312017-04-12 11:03:20 -07001914 break;
Jan Karab59116f2019-11-21 16:14:38 -08001915 }
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001916 } while ((count = iov_iter_count(iter)) > 0);
1917 blk_finish_plug(&plug);
1918
1919 if (ret < 0)
1920 iomap_dio_set_error(dio, ret);
1921
Dave Chinner3460cac2018-05-02 12:54:53 -07001922 /*
1923 * If all the writes we issued were FUA, we don't need to flush the
1924 * cache on IO completion. Clear the sync flag for this case.
1925 */
1926 if (dio->flags & IOMAP_DIO_WRITE_FUA)
1927 dio->flags &= ~IOMAP_DIO_NEED_SYNC;
1928
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001929 /*
1930 * We are about to drop our additional submission reference, which
1931 * might be the last reference to the dio. There are three three
1932 * different ways we can progress here:
1933 *
1934 * (a) If this is the last reference we will always complete and free
1935 * the dio ourselves.
1936 * (b) If this is not the last reference, and we serve an asynchronous
1937 * iocb, we must never touch the dio after the decrement, the
1938 * I/O completion handler will complete and free it.
1939 * (c) If this is not the last reference, but we serve a synchronous
1940 * iocb, the I/O completion handler will wake us up on the drop
1941 * of the final reference, and we will complete and free it here
1942 * after we got woken by the I/O completion handler.
1943 */
1944 dio->wait_for_completion = wait_for_completion;
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001945 if (!atomic_dec_and_test(&dio->ref)) {
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001946 if (!wait_for_completion)
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001947 return -EIOCBQUEUED;
1948
1949 for (;;) {
1950 set_current_state(TASK_UNINTERRUPTIBLE);
1951 if (!READ_ONCE(dio->submit.waiter))
1952 break;
1953
1954 if (!(iocb->ki_flags & IOCB_HIPRI) ||
1955 !dio->submit.last_queue ||
Christoph Hellwigea435e12017-11-02 21:29:54 +03001956 !blk_poll(dio->submit.last_queue,
Linus Torvalds5cc60ae2016-12-14 21:35:31 -08001957 dio->submit.cookie))
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001958 io_schedule();
1959 }
1960 __set_current_state(TASK_RUNNING);
1961 }
1962
Christoph Hellwigd9ba8422019-01-17 08:58:58 -08001963 return iomap_dio_complete(dio);
Christoph Hellwigff6a9292016-11-30 14:36:01 +11001964
1965out_free_dio:
1966 kfree(dio);
1967 return ret;
1968}
1969EXPORT_SYMBOL_GPL(iomap_dio_rw);
Darrick J. Wong67482122018-05-10 08:38:15 -07001970
1971/* Swapfile activation */
1972
1973#ifdef CONFIG_SWAP
1974struct iomap_swapfile_info {
1975 struct iomap iomap; /* accumulated iomap */
1976 struct swap_info_struct *sis;
1977 uint64_t lowest_ppage; /* lowest physical addr seen (pages) */
1978 uint64_t highest_ppage; /* highest physical addr seen (pages) */
1979 unsigned long nr_pages; /* number of pages collected */
1980 int nr_extents; /* extent count */
1981};
1982
1983/*
1984 * Collect physical extents for this swap file. Physical extents reported to
1985 * the swap code must be trimmed to align to a page boundary. The logical
1986 * offset within the file is irrelevant since the swapfile code maps logical
1987 * page numbers of the swap device to the physical page-aligned extents.
1988 */
1989static int iomap_swapfile_add_extent(struct iomap_swapfile_info *isi)
1990{
1991 struct iomap *iomap = &isi->iomap;
1992 unsigned long nr_pages;
1993 uint64_t first_ppage;
1994 uint64_t first_ppage_reported;
1995 uint64_t next_ppage;
1996 int error;
1997
1998 /*
1999 * Round the start up and the end down so that the physical
2000 * extent aligns to a page boundary.
2001 */
2002 first_ppage = ALIGN(iomap->addr, PAGE_SIZE) >> PAGE_SHIFT;
2003 next_ppage = ALIGN_DOWN(iomap->addr + iomap->length, PAGE_SIZE) >>
2004 PAGE_SHIFT;
2005
2006 /* Skip too-short physical extents. */
2007 if (first_ppage >= next_ppage)
2008 return 0;
2009 nr_pages = next_ppage - first_ppage;
2010
2011 /*
2012 * Calculate how much swap space we're adding; the first page contains
2013 * the swap header and doesn't count. The mm still wants that first
2014 * page fed to add_swap_extent, however.
2015 */
2016 first_ppage_reported = first_ppage;
2017 if (iomap->offset == 0)
2018 first_ppage_reported++;
2019 if (isi->lowest_ppage > first_ppage_reported)
2020 isi->lowest_ppage = first_ppage_reported;
2021 if (isi->highest_ppage < (next_ppage - 1))
2022 isi->highest_ppage = next_ppage - 1;
2023
2024 /* Add extent, set up for the next call. */
2025 error = add_swap_extent(isi->sis, isi->nr_pages, nr_pages, first_ppage);
2026 if (error < 0)
2027 return error;
2028 isi->nr_extents += error;
2029 isi->nr_pages += nr_pages;
2030 return 0;
2031}
2032
2033/*
2034 * Accumulate iomaps for this swap file. We have to accumulate iomaps because
2035 * swap only cares about contiguous page-aligned physical extents and makes no
2036 * distinction between written and unwritten extents.
2037 */
2038static loff_t iomap_swapfile_activate_actor(struct inode *inode, loff_t pos,
2039 loff_t count, void *data, struct iomap *iomap)
2040{
2041 struct iomap_swapfile_info *isi = data;
2042 int error;
2043
Christoph Hellwig19319b52018-06-01 09:03:06 -07002044 switch (iomap->type) {
2045 case IOMAP_MAPPED:
2046 case IOMAP_UNWRITTEN:
2047 /* Only real or unwritten extents. */
2048 break;
2049 case IOMAP_INLINE:
2050 /* No inline data. */
Omar Sandovalec601922018-05-16 11:13:34 -07002051 pr_err("swapon: file is inline\n");
2052 return -EINVAL;
Christoph Hellwig19319b52018-06-01 09:03:06 -07002053 default:
Omar Sandovalec601922018-05-16 11:13:34 -07002054 pr_err("swapon: file has unallocated extents\n");
2055 return -EINVAL;
2056 }
Darrick J. Wong67482122018-05-10 08:38:15 -07002057
Omar Sandovalec601922018-05-16 11:13:34 -07002058 /* No uncommitted metadata or shared blocks. */
2059 if (iomap->flags & IOMAP_F_DIRTY) {
2060 pr_err("swapon: file is not committed\n");
2061 return -EINVAL;
2062 }
2063 if (iomap->flags & IOMAP_F_SHARED) {
2064 pr_err("swapon: file has shared extents\n");
2065 return -EINVAL;
2066 }
Darrick J. Wong67482122018-05-10 08:38:15 -07002067
Omar Sandovalec601922018-05-16 11:13:34 -07002068 /* Only one bdev per swap file. */
2069 if (iomap->bdev != isi->sis->bdev) {
2070 pr_err("swapon: file is on multiple devices\n");
2071 return -EINVAL;
2072 }
Darrick J. Wong67482122018-05-10 08:38:15 -07002073
2074 if (isi->iomap.length == 0) {
2075 /* No accumulated extent, so just store it. */
2076 memcpy(&isi->iomap, iomap, sizeof(isi->iomap));
2077 } else if (isi->iomap.addr + isi->iomap.length == iomap->addr) {
2078 /* Append this to the accumulated extent. */
2079 isi->iomap.length += iomap->length;
2080 } else {
2081 /* Otherwise, add the retained iomap and store this one. */
2082 error = iomap_swapfile_add_extent(isi);
2083 if (error)
2084 return error;
2085 memcpy(&isi->iomap, iomap, sizeof(isi->iomap));
2086 }
Darrick J. Wong67482122018-05-10 08:38:15 -07002087 return count;
Darrick J. Wong67482122018-05-10 08:38:15 -07002088}
2089
2090/*
2091 * Iterate a swap file's iomaps to construct physical extents that can be
2092 * passed to the swapfile subsystem.
2093 */
2094int iomap_swapfile_activate(struct swap_info_struct *sis,
2095 struct file *swap_file, sector_t *pagespan,
2096 const struct iomap_ops *ops)
2097{
2098 struct iomap_swapfile_info isi = {
2099 .sis = sis,
2100 .lowest_ppage = (sector_t)-1ULL,
2101 };
2102 struct address_space *mapping = swap_file->f_mapping;
2103 struct inode *inode = mapping->host;
2104 loff_t pos = 0;
2105 loff_t len = ALIGN_DOWN(i_size_read(inode), PAGE_SIZE);
2106 loff_t ret;
2107
Darrick J. Wong117a1482018-06-05 09:53:05 -07002108 /*
2109 * Persist all file mapping metadata so that we won't have any
2110 * IOMAP_F_DIRTY iomaps.
2111 */
2112 ret = vfs_fsync(swap_file, 1);
Darrick J. Wong67482122018-05-10 08:38:15 -07002113 if (ret)
2114 return ret;
2115
2116 while (len > 0) {
2117 ret = iomap_apply(inode, pos, len, IOMAP_REPORT,
2118 ops, &isi, iomap_swapfile_activate_actor);
2119 if (ret <= 0)
2120 return ret;
2121
2122 pos += ret;
2123 len -= ret;
2124 }
2125
2126 if (isi.iomap.length) {
2127 ret = iomap_swapfile_add_extent(&isi);
2128 if (ret)
2129 return ret;
2130 }
2131
2132 *pagespan = 1 + isi.highest_ppage - isi.lowest_ppage;
2133 sis->max = isi.nr_pages;
2134 sis->pages = isi.nr_pages - 1;
2135 sis->highest_bit = isi.nr_pages - 1;
2136 return isi.nr_extents;
2137}
2138EXPORT_SYMBOL_GPL(iomap_swapfile_activate);
2139#endif /* CONFIG_SWAP */
Christoph Hellwig89eb1902018-06-01 09:03:08 -07002140
2141static loff_t
2142iomap_bmap_actor(struct inode *inode, loff_t pos, loff_t length,
2143 void *data, struct iomap *iomap)
2144{
2145 sector_t *bno = data, addr;
2146
2147 if (iomap->type == IOMAP_MAPPED) {
2148 addr = (pos - iomap->offset + iomap->addr) >> inode->i_blkbits;
2149 if (addr > INT_MAX)
2150 WARN(1, "would truncate bmap result\n");
2151 else
2152 *bno = addr;
2153 }
2154 return 0;
2155}
2156
2157/* legacy ->bmap interface. 0 is the error return (!) */
2158sector_t
2159iomap_bmap(struct address_space *mapping, sector_t bno,
2160 const struct iomap_ops *ops)
2161{
2162 struct inode *inode = mapping->host;
Eric Sandeen79b3dbe2018-08-02 13:09:27 -07002163 loff_t pos = bno << inode->i_blkbits;
Christoph Hellwig89eb1902018-06-01 09:03:08 -07002164 unsigned blocksize = i_blocksize(inode);
2165
2166 if (filemap_write_and_wait(mapping))
2167 return 0;
2168
2169 bno = 0;
2170 iomap_apply(inode, pos, blocksize, 0, ops, &bno, iomap_bmap_actor);
2171 return bno;
2172}
2173EXPORT_SYMBOL_GPL(iomap_bmap);