blob: 65454a4f4d93302739f1c5058c206f5ef645ce8f [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11007#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11008#include "xfs_format.h"
9#include "xfs_log_format.h"
10#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110013#include "xfs_trans.h"
Christoph Hellwig281627d2012-03-13 08:41:05 +000014#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_iomap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000018#include "xfs_trace.h"
Dave Chinner3ed3a432010-03-05 02:00:42 +000019#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100020#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_bmap_btree.h"
Darrick J. Wongef473662016-10-03 09:11:34 -070022#include "xfs_reflink.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mpage.h>
Christoph Hellwig10ce4442006-01-11 20:48:14 +110025#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/writeback.h>
27
Dave Chinnerfbcc0252016-02-15 17:21:19 +110028/*
29 * structure owned by writepages passed to individual writepage calls
30 */
31struct xfs_writepage_ctx {
32 struct xfs_bmbt_irec imap;
33 bool imap_valid;
34 unsigned int io_type;
Dave Chinnerfbcc0252016-02-15 17:21:19 +110035 struct xfs_ioend *ioend;
36 sector_t last_block;
37};
38
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039void
Nathan Scottf51623b2006-03-14 13:26:27 +110040xfs_count_page_state(
41 struct page *page,
42 int *delalloc,
Nathan Scottf51623b2006-03-14 13:26:27 +110043 int *unwritten)
44{
45 struct buffer_head *bh, *head;
46
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100047 *delalloc = *unwritten = 0;
Nathan Scottf51623b2006-03-14 13:26:27 +110048
49 bh = head = page_buffers(page);
50 do {
Christoph Hellwig20cb52e2010-06-24 09:46:01 +100051 if (buffer_unwritten(bh))
Nathan Scottf51623b2006-03-14 13:26:27 +110052 (*unwritten) = 1;
53 else if (buffer_delay(bh))
54 (*delalloc) = 1;
55 } while ((bh = bh->b_this_page) != head);
56}
57
Ross Zwisler20a90f52016-02-26 15:19:52 -080058struct block_device *
Christoph Hellwig6214ed42007-09-14 15:23:17 +100059xfs_find_bdev_for_inode(
Christoph Hellwig046f1682010-04-28 12:28:52 +000060 struct inode *inode)
Christoph Hellwig6214ed42007-09-14 15:23:17 +100061{
Christoph Hellwig046f1682010-04-28 12:28:52 +000062 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig6214ed42007-09-14 15:23:17 +100063 struct xfs_mount *mp = ip->i_mount;
64
Eric Sandeen71ddabb2007-11-23 16:29:42 +110065 if (XFS_IS_REALTIME_INODE(ip))
Christoph Hellwig6214ed42007-09-14 15:23:17 +100066 return mp->m_rtdev_targp->bt_bdev;
67 else
68 return mp->m_ddev_targp->bt_bdev;
69}
70
Dan Williams486aff52017-08-24 15:12:50 -070071struct dax_device *
72xfs_find_daxdev_for_inode(
73 struct inode *inode)
74{
75 struct xfs_inode *ip = XFS_I(inode);
76 struct xfs_mount *mp = ip->i_mount;
77
78 if (XFS_IS_REALTIME_INODE(ip))
79 return mp->m_rtdev_targp->bt_daxdev;
80 else
81 return mp->m_ddev_targp->bt_daxdev;
82}
83
Christoph Hellwig0829c362005-09-02 16:58:49 +100084/*
Dave Chinner37992c12016-04-06 08:12:28 +100085 * We're now finished for good with this page. Update the page state via the
86 * associated buffer_heads, paying attention to the start and end offsets that
87 * we need to process on the page.
Dave Chinner28b783e2016-07-22 09:56:38 +100088 *
Christoph Hellwig8353a812017-09-02 09:53:41 -070089 * Note that we open code the action in end_buffer_async_write here so that we
90 * only have to iterate over the buffers attached to the page once. This is not
91 * only more efficient, but also ensures that we only calls end_page_writeback
92 * at the end of the iteration, and thus avoids the pitfall of having the page
93 * and buffers potentially freed after every call to end_buffer_async_write.
Dave Chinner37992c12016-04-06 08:12:28 +100094 */
95static void
96xfs_finish_page_writeback(
97 struct inode *inode,
98 struct bio_vec *bvec,
99 int error)
100{
Christoph Hellwig8353a812017-09-02 09:53:41 -0700101 struct buffer_head *head = page_buffers(bvec->bv_page), *bh = head;
102 bool busy = false;
Dave Chinner37992c12016-04-06 08:12:28 +1000103 unsigned int off = 0;
Christoph Hellwig8353a812017-09-02 09:53:41 -0700104 unsigned long flags;
Dave Chinner37992c12016-04-06 08:12:28 +1000105
106 ASSERT(bvec->bv_offset < PAGE_SIZE);
Fabian Frederick93407472017-02-27 14:28:32 -0800107 ASSERT((bvec->bv_offset & (i_blocksize(inode) - 1)) == 0);
Christoph Hellwig8353a812017-09-02 09:53:41 -0700108 ASSERT(bvec->bv_offset + bvec->bv_len <= PAGE_SIZE);
Fabian Frederick93407472017-02-27 14:28:32 -0800109 ASSERT((bvec->bv_len & (i_blocksize(inode) - 1)) == 0);
Dave Chinner37992c12016-04-06 08:12:28 +1000110
Christoph Hellwig8353a812017-09-02 09:53:41 -0700111 local_irq_save(flags);
112 bit_spin_lock(BH_Uptodate_Lock, &head->b_state);
Dave Chinner37992c12016-04-06 08:12:28 +1000113 do {
Christoph Hellwig8353a812017-09-02 09:53:41 -0700114 if (off >= bvec->bv_offset &&
115 off < bvec->bv_offset + bvec->bv_len) {
116 ASSERT(buffer_async_write(bh));
117 ASSERT(bh->b_end_io == NULL);
118
119 if (error) {
120 mark_buffer_write_io_error(bh);
121 clear_buffer_uptodate(bh);
122 SetPageError(bvec->bv_page);
123 } else {
124 set_buffer_uptodate(bh);
125 }
126 clear_buffer_async_write(bh);
127 unlock_buffer(bh);
128 } else if (buffer_async_write(bh)) {
129 ASSERT(buffer_locked(bh));
130 busy = true;
131 }
132 off += bh->b_size;
133 } while ((bh = bh->b_this_page) != head);
134 bit_spin_unlock(BH_Uptodate_Lock, &head->b_state);
135 local_irq_restore(flags);
136
137 if (!busy)
138 end_page_writeback(bvec->bv_page);
Dave Chinner37992c12016-04-06 08:12:28 +1000139}
140
141/*
142 * We're now finished for good with this ioend structure. Update the page
143 * state, release holds on bios, and finally free up memory. Do not use the
144 * ioend after this.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100145 */
Christoph Hellwig0829c362005-09-02 16:58:49 +1000146STATIC void
147xfs_destroy_ioend(
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000148 struct xfs_ioend *ioend,
149 int error)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000150{
Dave Chinner37992c12016-04-06 08:12:28 +1000151 struct inode *inode = ioend->io_inode;
Christoph Hellwig8353a812017-09-02 09:53:41 -0700152 struct bio *bio = &ioend->io_inline_bio;
153 struct bio *last = ioend->io_bio, *next;
154 u64 start = bio->bi_iter.bi_sector;
155 bool quiet = bio_flagged(bio, BIO_QUIET);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100156
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000157 for (bio = &ioend->io_inline_bio; bio; bio = next) {
Dave Chinner37992c12016-04-06 08:12:28 +1000158 struct bio_vec *bvec;
159 int i;
160
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000161 /*
162 * For the last bio, bi_private points to the ioend, so we
163 * need to explicitly end the iteration here.
164 */
165 if (bio == last)
166 next = NULL;
167 else
168 next = bio->bi_private;
Dave Chinner37992c12016-04-06 08:12:28 +1000169
170 /* walk each page on bio, ending page IO on them */
171 bio_for_each_segment_all(bvec, bio, i)
172 xfs_finish_page_writeback(inode, bvec, error);
173
174 bio_put(bio);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100175 }
Christoph Hellwig8353a812017-09-02 09:53:41 -0700176
177 if (unlikely(error && !quiet)) {
178 xfs_err_ratelimited(XFS_I(inode)->i_mount,
179 "writeback error on sector %llu", start);
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183/*
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000184 * Fast and loose check if this write could update the on-disk inode size.
185 */
186static inline bool xfs_ioend_is_append(struct xfs_ioend *ioend)
187{
188 return ioend->io_offset + ioend->io_size >
189 XFS_I(ioend->io_inode)->i_d.di_size;
190}
191
Christoph Hellwig281627d2012-03-13 08:41:05 +0000192STATIC int
193xfs_setfilesize_trans_alloc(
194 struct xfs_ioend *ioend)
195{
196 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
197 struct xfs_trans *tp;
198 int error;
199
Dave Chinner4df0f7f2018-03-06 17:07:22 -0800200 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0,
201 XFS_TRANS_NOFS, &tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +1000202 if (error)
Christoph Hellwig281627d2012-03-13 08:41:05 +0000203 return error;
Christoph Hellwig281627d2012-03-13 08:41:05 +0000204
205 ioend->io_append_trans = tp;
206
207 /*
Dave Chinner437a2552012-11-28 13:01:00 +1100208 * We may pass freeze protection with a transaction. So tell lockdep
Jan Karad9457dc2012-06-12 16:20:39 +0200209 * we released it.
210 */
Oleg Nesterovbee91822015-07-19 23:48:20 +0200211 __sb_writers_release(ioend->io_inode->i_sb, SB_FREEZE_FS);
Jan Karad9457dc2012-06-12 16:20:39 +0200212 /*
Christoph Hellwig281627d2012-03-13 08:41:05 +0000213 * We hand off the transaction to the completion thread now, so
214 * clear the flag here.
215 */
Michal Hocko90707332017-05-03 14:53:12 -0700216 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000217 return 0;
218}
219
Christoph Hellwigfc0063c2011-08-23 08:28:11 +0000220/*
Christoph Hellwig2813d682011-12-18 20:00:12 +0000221 * Update on-disk file size now that data has been written to disk.
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000222 */
Christoph Hellwig281627d2012-03-13 08:41:05 +0000223STATIC int
Christoph Hellwige3728432016-09-19 11:26:41 +1000224__xfs_setfilesize(
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100225 struct xfs_inode *ip,
226 struct xfs_trans *tp,
227 xfs_off_t offset,
228 size_t size)
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000229{
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000230 xfs_fsize_t isize;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000231
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000232 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100233 isize = xfs_new_eof(ip, offset + size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000234 if (!isize) {
235 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000236 xfs_trans_cancel(tp);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000237 return 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000238 }
239
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100240 trace_xfs_setfilesize(ip, offset, size);
Christoph Hellwig281627d2012-03-13 08:41:05 +0000241
242 ip->i_d.di_size = isize;
243 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
244 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
245
Christoph Hellwig70393312015-06-04 13:48:08 +1000246 return xfs_trans_commit(tp);
Christoph Hellwig0829c362005-09-02 16:58:49 +1000247}
248
Christoph Hellwige3728432016-09-19 11:26:41 +1000249int
250xfs_setfilesize(
251 struct xfs_inode *ip,
252 xfs_off_t offset,
253 size_t size)
254{
255 struct xfs_mount *mp = ip->i_mount;
256 struct xfs_trans *tp;
257 int error;
258
259 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp);
260 if (error)
261 return error;
262
263 return __xfs_setfilesize(ip, tp, offset, size);
264}
265
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100266STATIC int
267xfs_setfilesize_ioend(
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000268 struct xfs_ioend *ioend,
269 int error)
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100270{
271 struct xfs_inode *ip = XFS_I(ioend->io_inode);
272 struct xfs_trans *tp = ioend->io_append_trans;
273
274 /*
275 * The transaction may have been allocated in the I/O submission thread,
276 * thus we need to mark ourselves as being in a transaction manually.
277 * Similarly for freeze protection.
278 */
Michal Hocko90707332017-05-03 14:53:12 -0700279 current_set_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Oleg Nesterovbee91822015-07-19 23:48:20 +0200280 __sb_writers_acquired(VFS_I(ip)->i_sb, SB_FREEZE_FS);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100281
Zhaohongjiang5cb13dc2015-10-12 15:28:39 +1100282 /* we abort the update if there was an IO error */
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000283 if (error) {
Zhaohongjiang5cb13dc2015-10-12 15:28:39 +1100284 xfs_trans_cancel(tp);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000285 return error;
Zhaohongjiang5cb13dc2015-10-12 15:28:39 +1100286 }
287
Christoph Hellwige3728432016-09-19 11:26:41 +1000288 return __xfs_setfilesize(ip, tp, ioend->io_offset, ioend->io_size);
Christoph Hellwig2ba66232015-02-02 10:02:09 +1100289}
290
Christoph Hellwig0829c362005-09-02 16:58:49 +1000291/*
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000292 * IO write completion.
293 */
294STATIC void
295xfs_end_io(
296 struct work_struct *work)
297{
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000298 struct xfs_ioend *ioend =
299 container_of(work, struct xfs_ioend, io_work);
300 struct xfs_inode *ip = XFS_I(ioend->io_inode);
Christoph Hellwig787eb482017-03-02 15:02:51 -0800301 xfs_off_t offset = ioend->io_offset;
302 size_t size = ioend->io_size;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200303 int error;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000304
Brian Fosteraf055e32016-02-08 15:00:02 +1100305 /*
Christoph Hellwig787eb482017-03-02 15:02:51 -0800306 * Just clean up the in-memory strutures if the fs has been shut down.
Brian Fosteraf055e32016-02-08 15:00:02 +1100307 */
Christoph Hellwig787eb482017-03-02 15:02:51 -0800308 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000309 error = -EIO;
Christoph Hellwig787eb482017-03-02 15:02:51 -0800310 goto done;
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700311 }
312
313 /*
Christoph Hellwig787eb482017-03-02 15:02:51 -0800314 * Clean up any COW blocks on an I/O error.
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000315 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200316 error = blk_status_to_errno(ioend->io_bio->bi_status);
Christoph Hellwig787eb482017-03-02 15:02:51 -0800317 if (unlikely(error)) {
318 switch (ioend->io_type) {
319 case XFS_IO_COW:
320 xfs_reflink_cancel_cow_range(ip, offset, size, true);
321 break;
322 }
323
324 goto done;
325 }
326
327 /*
328 * Success: commit the COW or unwritten blocks if needed.
329 */
330 switch (ioend->io_type) {
331 case XFS_IO_COW:
332 error = xfs_reflink_end_cow(ip, offset, size);
333 break;
334 case XFS_IO_UNWRITTEN:
Eryu Guanee70daa2017-09-21 11:26:18 -0700335 /* writeback should never update isize */
336 error = xfs_iomap_write_unwritten(ip, offset, size, false);
Christoph Hellwig787eb482017-03-02 15:02:51 -0800337 break;
338 default:
339 ASSERT(!xfs_ioend_is_append(ioend) || ioend->io_append_trans);
340 break;
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000341 }
342
Christoph Hellwig04f658e2011-08-24 05:59:25 +0000343done:
Christoph Hellwig787eb482017-03-02 15:02:51 -0800344 if (ioend->io_append_trans)
345 error = xfs_setfilesize_ioend(ioend, error);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000346 xfs_destroy_ioend(ioend, error);
Dave Chinner77d7a0c2010-02-17 05:36:29 +0000347}
348
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000349STATIC void
350xfs_end_bio(
351 struct bio *bio)
Christoph Hellwig0829c362005-09-02 16:58:49 +1000352{
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000353 struct xfs_ioend *ioend = bio->bi_private;
354 struct xfs_mount *mp = XFS_I(ioend->io_inode)->i_mount;
Christoph Hellwig0829c362005-09-02 16:58:49 +1000355
Darrick J. Wong43caeb12016-10-03 09:11:35 -0700356 if (ioend->io_type == XFS_IO_UNWRITTEN || ioend->io_type == XFS_IO_COW)
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000357 queue_work(mp->m_unwritten_workqueue, &ioend->io_work);
358 else if (ioend->io_append_trans)
359 queue_work(mp->m_data_workqueue, &ioend->io_work);
360 else
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200361 xfs_destroy_ioend(ioend, blk_status_to_errno(bio->bi_status));
Christoph Hellwig0829c362005-09-02 16:58:49 +1000362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364STATIC int
365xfs_map_blocks(
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700366 struct xfs_writepage_ctx *wpc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct inode *inode,
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700368 loff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Christoph Hellwiga206c812010-12-10 08:42:20 +0000370 struct xfs_inode *ip = XFS_I(inode);
371 struct xfs_mount *mp = ip->i_mount;
Fabian Frederick93407472017-02-27 14:28:32 -0800372 ssize_t count = i_blocksize(inode);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700373 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset), end_fsb;
374 struct xfs_bmbt_irec imap;
375 int whichfork = XFS_DATA_FORK;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000376 int error = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000377 int nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Christoph Hellwiga206c812010-12-10 08:42:20 +0000379 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000380 return -EIO;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000381
Dave Chinner988ef922016-02-15 17:20:50 +1100382 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000383 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
384 (ip->i_df.if_flags & XFS_IFEXTENTS));
Dave Chinnerd2c28192012-06-08 15:44:53 +1000385 ASSERT(offset <= mp->m_super->s_maxbytes);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000386
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700387 if (xfs_is_reflink_inode(ip) &&
388 xfs_reflink_find_cow_mapping(ip, offset, &imap)) {
389 xfs_iunlock(ip, XFS_ILOCK_SHARED);
390 /*
391 * Truncate can race with writeback since writeback doesn't
392 * take the iolock and truncate decreases the file size before
393 * it starts truncating the pages between new_size and old_size.
394 * Therefore, we can end up in the situation where writeback
395 * gets a CoW fork mapping but the truncate makes the mapping
396 * invalid and we end up in here trying to get a new mapping.
397 * bail out here so that we simply never get a valid mapping
398 * and so we drop the write altogether. The page truncation
399 * will kill the contents anyway.
400 */
401 if (offset > i_size_read(inode)) {
402 wpc->io_type = XFS_IO_HOLE;
403 return 0;
404 }
405 whichfork = XFS_COW_FORK;
406 wpc->io_type = XFS_IO_COW;
407 goto allocate_blocks;
408 }
409
410 /*
411 * Map valid and no COW extent in the way? We're done.
412 */
413 if (wpc->imap_valid) {
414 xfs_iunlock(ip, XFS_ILOCK_SHARED);
415 return 0;
416 }
417
418 /*
419 * If we don't have a valid map, now it's time to get a new one for this
420 * offset. This will convert delayed allocations (including COW ones)
421 * into real extents.
422 */
Darrick J. Wongb4d8ad7f2017-12-22 13:14:34 -0800423 if (offset > mp->m_super->s_maxbytes - count)
Dave Chinnerd2c28192012-06-08 15:44:53 +1000424 count = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000425 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
426 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000427 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700428 &imap, &nimaps, XFS_BMAPI_ENTIRE);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000429 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000430 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000431 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000432
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700433 if (!nimaps) {
434 /*
435 * Lookup returns no match? Beyond eof? regardless,
436 * return it as a hole so we don't write it
437 */
438 imap.br_startoff = offset_fsb;
439 imap.br_blockcount = end_fsb - offset_fsb;
440 imap.br_startblock = HOLESTARTBLOCK;
441 wpc->io_type = XFS_IO_HOLE;
442 } else if (imap.br_startblock == HOLESTARTBLOCK) {
443 /* landed in a hole */
444 wpc->io_type = XFS_IO_HOLE;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000445 }
446
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700447 if (wpc->io_type == XFS_IO_DELALLOC &&
448 (!nimaps || isnullstartblock(imap.br_startblock)))
449 goto allocate_blocks;
450
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000451#ifdef DEBUG
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700452 if (wpc->io_type == XFS_IO_UNWRITTEN) {
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000453 ASSERT(nimaps);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700454 ASSERT(imap.br_startblock != HOLESTARTBLOCK);
455 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000456 }
457#endif
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700458 wpc->imap = imap;
459 trace_xfs_map_blocks_found(ip, offset, count, wpc->io_type, &imap);
460 return 0;
461allocate_blocks:
462 error = xfs_iomap_write_allocate(ip, whichfork, offset, &imap);
463 if (error)
464 return error;
465 wpc->imap = imap;
466 trace_xfs_map_blocks_alloc(ip, offset, count, wpc->io_type, &imap);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100470STATIC bool
Christoph Hellwig558e6892010-04-28 12:28:58 +0000471xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000472 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000473 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000474 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000476 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000477
Brian Foster40214d12017-10-13 09:47:46 -0700478 /*
479 * We have to make sure the cached mapping is within EOF to protect
480 * against eofblocks trimming on file release leaving us with a stale
481 * mapping. Otherwise, a page for a subsequent file extending buffered
482 * write could get picked up by this writeback cycle and written to the
483 * wrong blocks.
484 *
485 * Note that what we really want here is a generic mapping invalidation
486 * mechanism to protect us from arbitrary extent modifying contexts, not
487 * just eofblocks.
488 */
489 xfs_trim_extent_eof(imap, XFS_I(inode));
490
Christoph Hellwig558e6892010-04-28 12:28:58 +0000491 return offset >= imap->br_startoff &&
492 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100495STATIC void
496xfs_start_buffer_writeback(
497 struct buffer_head *bh)
498{
499 ASSERT(buffer_mapped(bh));
500 ASSERT(buffer_locked(bh));
501 ASSERT(!buffer_delay(bh));
502 ASSERT(!buffer_unwritten(bh));
503
Christoph Hellwig8353a812017-09-02 09:53:41 -0700504 bh->b_end_io = NULL;
505 set_buffer_async_write(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100506 set_buffer_uptodate(bh);
507 clear_buffer_dirty(bh);
508}
509
510STATIC void
511xfs_start_page_writeback(
512 struct page *page,
Dave Chinnere10de372016-02-15 17:23:12 +1100513 int clear_dirty)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100514{
515 ASSERT(PageLocked(page));
516 ASSERT(!PageWriteback(page));
Dave Chinner0d085a52014-09-23 15:36:27 +1000517
518 /*
519 * if the page was not fully cleaned, we need to ensure that the higher
520 * layers come back to it correctly. That means we need to keep the page
521 * dirty, and for WB_SYNC_ALL writeback we need to ensure the
522 * PAGECACHE_TAG_TOWRITE index mark is not removed so another attempt to
523 * write this page in this writeback sweep will be made.
524 */
525 if (clear_dirty) {
David Chinner92132022006-12-21 10:24:01 +1100526 clear_page_dirty_for_io(page);
Dave Chinner0d085a52014-09-23 15:36:27 +1000527 set_page_writeback(page);
528 } else
529 set_page_writeback_keepwrite(page);
530
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100531 unlock_page(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100532}
533
Zhi Yong Wuc7c1a7d2013-08-07 10:11:09 +0000534static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100535{
536 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
537}
538
539/*
Dave Chinnerbb187822016-04-06 08:11:25 +1000540 * Submit the bio for an ioend. We are passed an ioend with a bio attached to
541 * it, and we submit that bio. The ioend may be used for multiple bio
542 * submissions, so we only want to allocate an append transaction for the ioend
543 * once. In the case of multiple bio submission, each bio will take an IO
544 * reference to the ioend to ensure that the ioend completion is only done once
545 * all bios have been submitted and the ioend is really done.
Dave Chinner7bf7f352012-11-12 22:09:45 +1100546 *
547 * If @fail is non-zero, it means that we have a situation where some part of
548 * the submission process has failed after we have marked paged for writeback
Dave Chinnerbb187822016-04-06 08:11:25 +1000549 * and unlocked them. In this situation, we need to fail the bio and ioend
550 * rather than submit it to IO. This typically only happens on a filesystem
551 * shutdown.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100552 */
Dave Chinnere10de372016-02-15 17:23:12 +1100553STATIC int
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100554xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000555 struct writeback_control *wbc,
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000556 struct xfs_ioend *ioend,
Dave Chinnere10de372016-02-15 17:23:12 +1100557 int status)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100558{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800559 /* Convert CoW extents to regular */
560 if (!status && ioend->io_type == XFS_IO_COW) {
Dave Chinner4a2d01b2018-06-07 07:46:42 -0700561 /*
562 * Yuk. This can do memory allocation, but is not a
563 * transactional operation so everything is done in GFP_KERNEL
564 * context. That can deadlock, because we hold pages in
565 * writeback state and GFP_KERNEL allocations can block on them.
566 * Hence we must operate in nofs conditions here.
567 */
568 unsigned nofs_flag;
569
570 nofs_flag = memalloc_nofs_save();
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800571 status = xfs_reflink_convert_cow(XFS_I(ioend->io_inode),
572 ioend->io_offset, ioend->io_size);
Dave Chinner4a2d01b2018-06-07 07:46:42 -0700573 memalloc_nofs_restore(nofs_flag);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800574 }
575
Dave Chinnere10de372016-02-15 17:23:12 +1100576 /* Reserve log space if we might write beyond the on-disk inode size. */
577 if (!status &&
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000578 ioend->io_type != XFS_IO_UNWRITTEN &&
Dave Chinnerbb187822016-04-06 08:11:25 +1000579 xfs_ioend_is_append(ioend) &&
580 !ioend->io_append_trans)
Dave Chinnere10de372016-02-15 17:23:12 +1100581 status = xfs_setfilesize_trans_alloc(ioend);
Dave Chinnerbb187822016-04-06 08:11:25 +1000582
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000583 ioend->io_bio->bi_private = ioend;
584 ioend->io_bio->bi_end_io = xfs_end_bio;
Jens Axboe76372412016-11-01 10:00:38 -0600585 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600586
Dave Chinnere10de372016-02-15 17:23:12 +1100587 /*
588 * If we are failing the IO now, just mark the ioend with an
589 * error and finish it. This will run IO completion immediately
590 * as there is only one reference to the ioend at this point in
591 * time.
592 */
593 if (status) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200594 ioend->io_bio->bi_status = errno_to_blk_status(status);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000595 bio_endio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100596 return status;
597 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100598
Jens Axboe31d7d582017-06-27 09:34:01 -0600599 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500600 submit_bio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100601 return 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100602}
603
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000604static void
605xfs_init_bio_from_bh(
606 struct bio *bio,
607 struct buffer_head *bh)
608{
609 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200610 bio_set_dev(bio, bh->b_bdev);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000611}
612
613static struct xfs_ioend *
614xfs_alloc_ioend(
615 struct inode *inode,
616 unsigned int type,
617 xfs_off_t offset,
618 struct buffer_head *bh)
619{
620 struct xfs_ioend *ioend;
621 struct bio *bio;
622
Kent Overstreete292d7b2018-05-20 18:25:57 -0400623 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &xfs_ioend_bioset);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000624 xfs_init_bio_from_bh(bio, bh);
625
626 ioend = container_of(bio, struct xfs_ioend, io_inline_bio);
627 INIT_LIST_HEAD(&ioend->io_list);
628 ioend->io_type = type;
629 ioend->io_inode = inode;
630 ioend->io_size = 0;
631 ioend->io_offset = offset;
632 INIT_WORK(&ioend->io_work, xfs_end_io);
633 ioend->io_append_trans = NULL;
634 ioend->io_bio = bio;
635 return ioend;
636}
637
638/*
639 * Allocate a new bio, and chain the old bio to the new one.
640 *
641 * Note that we have to do perform the chaining in this unintuitive order
642 * so that the bi_private linkage is set up in the right direction for the
643 * traversal in xfs_destroy_ioend().
644 */
645static void
646xfs_chain_bio(
647 struct xfs_ioend *ioend,
648 struct writeback_control *wbc,
649 struct buffer_head *bh)
650{
651 struct bio *new;
652
653 new = bio_alloc(GFP_NOFS, BIO_MAX_PAGES);
654 xfs_init_bio_from_bh(new, bh);
655
656 bio_chain(ioend->io_bio, new);
657 bio_get(ioend->io_bio); /* for xfs_destroy_ioend */
Jens Axboe76372412016-11-01 10:00:38 -0600658 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Jens Axboe31d7d582017-06-27 09:34:01 -0600659 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500660 submit_bio(ioend->io_bio);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000661 ioend->io_bio = new;
662}
663
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100664/*
665 * Test to see if we've been building up a completion structure for
666 * earlier buffers -- if so, we try to append to this ioend if we
667 * can, otherwise we finish off any current ioend and start another.
Dave Chinnere10de372016-02-15 17:23:12 +1100668 * Return the ioend we finished off so that the caller can submit it
669 * once it has finished processing the dirty page.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100670 */
671STATIC void
672xfs_add_to_ioend(
673 struct inode *inode,
674 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100675 xfs_off_t offset,
Dave Chinnere10de372016-02-15 17:23:12 +1100676 struct xfs_writepage_ctx *wpc,
Dave Chinnerbb187822016-04-06 08:11:25 +1000677 struct writeback_control *wbc,
Dave Chinnere10de372016-02-15 17:23:12 +1100678 struct list_head *iolist)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100679{
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100680 if (!wpc->ioend || wpc->io_type != wpc->ioend->io_type ||
Darrick J. Wong0df61da2016-03-07 09:32:14 +1100681 bh->b_blocknr != wpc->last_block + 1 ||
682 offset != wpc->ioend->io_offset + wpc->ioend->io_size) {
Dave Chinnere10de372016-02-15 17:23:12 +1100683 if (wpc->ioend)
684 list_add(&wpc->ioend->io_list, iolist);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000685 wpc->ioend = xfs_alloc_ioend(inode, wpc->io_type, offset, bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100686 }
687
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000688 /*
689 * If the buffer doesn't fit into the bio we need to allocate a new
690 * one. This shouldn't happen more than once for a given buffer.
691 */
692 while (xfs_bio_add_buffer(wpc->ioend->io_bio, bh) != bh->b_size)
693 xfs_chain_bio(wpc->ioend, wbc, bh);
Dave Chinnerbb187822016-04-06 08:11:25 +1000694
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100695 wpc->ioend->io_size += bh->b_size;
696 wpc->last_block = bh->b_blocknr;
Dave Chinnere10de372016-02-15 17:23:12 +1100697 xfs_start_buffer_writeback(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100698}
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100701xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000702 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100703 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000704 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000705 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100706{
707 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000708 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000709 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
710 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100711
Christoph Hellwig207d0412010-04-28 12:28:56 +0000712 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
713 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100714
Christoph Hellwige5131822010-04-28 12:28:55 +0000715 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000716 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100717
Christoph Hellwig046f1682010-04-28 12:28:52 +0000718 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100719
720 bh->b_blocknr = bn;
721 set_buffer_mapped(bh);
722}
723
724STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000726 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000728 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000729 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000731 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
732 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Christoph Hellwig207d0412010-04-28 12:28:56 +0000734 xfs_map_buffer(inode, bh, imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 set_buffer_mapped(bh);
736 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100737 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Dave Chinner3ed3a432010-03-05 02:00:42 +0000740STATIC void
741xfs_vm_invalidatepage(
742 struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -0400743 unsigned int offset,
744 unsigned int length)
Dave Chinner3ed3a432010-03-05 02:00:42 +0000745{
Lukas Czerner34097df2013-05-21 23:58:01 -0400746 trace_xfs_invalidatepage(page->mapping->host, page, offset,
747 length);
Dave Chinner793d7db2017-10-13 09:47:45 -0700748
749 /*
750 * If we are invalidating the entire page, clear the dirty state from it
751 * so that we can check for attempts to release dirty cached pages in
752 * xfs_vm_releasepage().
753 */
754 if (offset == 0 && length >= PAGE_SIZE)
755 cancel_dirty_page(page);
Lukas Czerner34097df2013-05-21 23:58:01 -0400756 block_invalidatepage(page, offset, length);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000757}
758
759/*
760 * If the page has delalloc buffers on it, we need to punch them out before we
761 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
762 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
763 * is done on that same region - the delalloc extent is returned when none is
764 * supposed to be there.
765 *
766 * We prevent this by truncating away the delalloc regions on the page before
767 * invalidating it. Because they are delalloc, we can do this without needing a
768 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
769 * truncation without a transaction as there is no space left for block
770 * reservation (typically why we see a ENOSPC in writeback).
Dave Chinner3ed3a432010-03-05 02:00:42 +0000771 */
772STATIC void
773xfs_aops_discard_page(
774 struct page *page)
775{
776 struct inode *inode = page->mapping->host;
777 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig03625722018-07-11 22:25:57 -0700778 struct xfs_mount *mp = ip->i_mount;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000779 loff_t offset = page_offset(page);
Christoph Hellwig03625722018-07-11 22:25:57 -0700780 xfs_fileoff_t start_fsb = XFS_B_TO_FSBT(mp, offset);
781 int error;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000782
Christoph Hellwig03625722018-07-11 22:25:57 -0700783 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000784 goto out_invalidate;
785
Christoph Hellwig03625722018-07-11 22:25:57 -0700786 xfs_alert(mp,
Darrick J. Wongc9690042018-01-09 12:02:55 -0800787 "page discard on page "PTR_FMT", inode 0x%llx, offset %llu.",
Dave Chinner3ed3a432010-03-05 02:00:42 +0000788 page, ip->i_ino, offset);
789
Christoph Hellwig03625722018-07-11 22:25:57 -0700790 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
791 PAGE_SIZE / i_blocksize(inode));
Christoph Hellwig03625722018-07-11 22:25:57 -0700792 if (error && !XFS_FORCED_SHUTDOWN(mp))
793 xfs_alert(mp, "page discard unable to remove delalloc mapping.");
Dave Chinner3ed3a432010-03-05 02:00:42 +0000794out_invalidate:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300795 xfs_vm_invalidatepage(page, 0, PAGE_SIZE);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000796}
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/*
Dave Chinnere10de372016-02-15 17:23:12 +1100799 * We implement an immediate ioend submission policy here to avoid needing to
800 * chain multiple ioends and hence nest mempool allocations which can violate
801 * forward progress guarantees we need to provide. The current ioend we are
802 * adding buffers to is cached on the writepage context, and if the new buffer
803 * does not append to the cached ioend it will create a new ioend and cache that
804 * instead.
805 *
806 * If a new ioend is created and cached, the old ioend is returned and queued
807 * locally for submission once the entire page is processed or an error has been
808 * detected. While ioends are submitted immediately after they are completed,
809 * batching optimisations are provided by higher level block plugging.
810 *
811 * At the end of a writeback pass, there will be a cached ioend remaining on the
812 * writepage context that the caller will need to submit.
813 */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100814static int
815xfs_writepage_map(
816 struct xfs_writepage_ctx *wpc,
Dave Chinnere10de372016-02-15 17:23:12 +1100817 struct writeback_control *wbc,
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100818 struct inode *inode,
819 struct page *page,
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -0800820 uint64_t end_offset)
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100821{
Dave Chinnere10de372016-02-15 17:23:12 +1100822 LIST_HEAD(submit_list);
823 struct xfs_ioend *ioend, *next;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100824 struct buffer_head *bh, *head;
Fabian Frederick93407472017-02-27 14:28:32 -0800825 ssize_t len = i_blocksize(inode);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700826 uint64_t offset; /* file offset of page */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100827 int error = 0;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100828 int count = 0;
Darrick J. Wongef473662016-10-03 09:11:34 -0700829 unsigned int new_type;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100830
831 bh = head = page_buffers(page);
832 offset = page_offset(page);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100833 do {
834 if (offset >= end_offset)
835 break;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100836
837 /*
838 * set_page_dirty dirties all buffers in a page, independent
839 * of their state. The dirty state however is entirely
840 * meaningless for holes (!mapped && uptodate), so skip
841 * buffers covering holes here.
842 */
Christoph Hellwigc57371a2018-07-11 22:25:58 -0700843 if (!buffer_mapped(bh) && buffer_uptodate(bh))
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100844 continue;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100845
Darrick J. Wongef473662016-10-03 09:11:34 -0700846 if (buffer_unwritten(bh))
847 new_type = XFS_IO_UNWRITTEN;
848 else if (buffer_delay(bh))
849 new_type = XFS_IO_DELALLOC;
850 else if (buffer_uptodate(bh))
851 new_type = XFS_IO_OVERWRITE;
852 else {
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100853 if (PageUptodate(page))
854 ASSERT(buffer_mapped(bh));
855 /*
856 * This buffer is not uptodate and will not be
Christoph Hellwigc57371a2018-07-11 22:25:58 -0700857 * written to disk.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100858 */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100859 continue;
860 }
861
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700862 /*
863 * If we already have a valid COW mapping keep using it.
864 */
865 if (wpc->io_type == XFS_IO_COW &&
866 xfs_imap_valid(inode, &wpc->imap, offset)) {
867 wpc->imap_valid = true;
868 new_type = XFS_IO_COW;
Darrick J. Wongef473662016-10-03 09:11:34 -0700869 }
870
871 if (wpc->io_type != new_type) {
872 wpc->io_type = new_type;
873 wpc->imap_valid = false;
874 }
875
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100876 if (wpc->imap_valid)
877 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
878 offset);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700879
880 /*
881 * COW fork blocks can overlap data fork blocks even if the
882 * blocks aren't shared. COW I/O always takes precedent, so we
883 * must always check for overlap on reflink inodes unless the
884 * mapping is already a COW one.
885 */
886 if (!wpc->imap_valid ||
887 (xfs_is_reflink_inode(XFS_I(inode)) &&
888 wpc->io_type != XFS_IO_COW)) {
889 error = xfs_map_blocks(wpc, inode, offset);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100890 if (error)
Dave Chinnere10de372016-02-15 17:23:12 +1100891 goto out;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100892 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
893 offset);
894 }
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100895
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700896 if (!wpc->imap_valid || wpc->io_type == XFS_IO_HOLE)
897 continue;
898
899 lock_buffer(bh);
900 if (wpc->io_type != XFS_IO_OVERWRITE)
901 xfs_map_at_offset(inode, bh, &wpc->imap, offset);
902 xfs_add_to_ioend(inode, bh, offset, wpc, wbc, &submit_list);
903 count++;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100904 } while (offset += len, ((bh = bh->b_this_page) != head));
905
Dave Chinnere10de372016-02-15 17:23:12 +1100906 ASSERT(wpc->ioend || list_empty(&submit_list));
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100907
Dave Chinnere10de372016-02-15 17:23:12 +1100908out:
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100909 /*
Dave Chinnere10de372016-02-15 17:23:12 +1100910 * On error, we have to fail the ioend here because we have locked
911 * buffers in the ioend. If we don't do this, we'll deadlock
912 * invalidating the page as that tries to lock the buffers on the page.
913 * Also, because we may have set pages under writeback, we have to make
914 * sure we run IO completion to mark the error state of the IO
915 * appropriately, so we can't cancel the ioend directly here. That means
916 * we have to mark this page as under writeback if we included any
917 * buffers from it in the ioend chain so that completion treats it
918 * correctly.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100919 *
Dave Chinnere10de372016-02-15 17:23:12 +1100920 * If we didn't include the page in the ioend, the on error we can
921 * simply discard and unlock it as there are no other users of the page
922 * or it's buffers right now. The caller will still need to trigger
923 * submission of outstanding ioends on the writepage context so they are
924 * treated correctly on error.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100925 */
Dave Chinnere10de372016-02-15 17:23:12 +1100926 if (count) {
927 xfs_start_page_writeback(page, !error);
928
929 /*
930 * Preserve the original error if there was one, otherwise catch
931 * submission errors here and propagate into subsequent ioend
932 * submissions.
933 */
934 list_for_each_entry_safe(ioend, next, &submit_list, io_list) {
935 int error2;
936
937 list_del_init(&ioend->io_list);
938 error2 = xfs_submit_ioend(wbc, ioend, error);
939 if (error2 && !error)
940 error = error2;
941 }
942 } else if (error) {
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100943 xfs_aops_discard_page(page);
944 ClearPageUptodate(page);
945 unlock_page(page);
Dave Chinnere10de372016-02-15 17:23:12 +1100946 } else {
947 /*
948 * We can end up here with no error and nothing to write if we
949 * race with a partial page truncate on a sub-page block sized
950 * filesystem. In that case we need to mark the page clean.
951 */
952 xfs_start_page_writeback(page, 1);
953 end_page_writeback(page);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100954 }
Dave Chinnere10de372016-02-15 17:23:12 +1100955
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100956 mapping_set_error(page->mapping, error);
957 return error;
958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000961 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000963 * For delalloc space on the page we need to allocate space and flush it.
964 * For unwritten space on the page we need to start the conversion to
965 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000966 * For any other dirty buffer heads on the page we should flush them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100969xfs_do_writepage(
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000970 struct page *page,
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100971 struct writeback_control *wbc,
972 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100974 struct xfs_writepage_ctx *wpc = data;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000975 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 loff_t offset;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700977 uint64_t end_offset;
Dave Chinnerad689722016-02-15 17:21:31 +1100978 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Lukas Czerner34097df2013-05-21 23:58:01 -0400980 trace_xfs_writepage(inode, page, 0, 0);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000981
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000982 ASSERT(page_has_buffers(page));
983
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000984 /*
985 * Refuse to write the page out if we are called from reclaim context.
986 *
Christoph Hellwigd4f7a5c2010-06-28 10:34:44 -0400987 * This avoids stack overflows when called from deeply used stacks in
988 * random callers for direct reclaim or memcg reclaim. We explicitly
989 * allow reclaim from kswapd as the stack usage there is relatively low.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000990 *
Mel Gorman94054fa2011-10-31 17:07:45 -0700991 * This should never happen except in the case of a VM regression so
992 * warn about it.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000993 */
Mel Gorman94054fa2011-10-31 17:07:45 -0700994 if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
995 PF_MEMALLOC))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000996 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000997
998 /*
Christoph Hellwig680a6472011-07-08 14:34:05 +0200999 * Given that we do not allow direct reclaim to call us, we should
1000 * never be called while in a filesystem transaction.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001001 */
Michal Hocko90707332017-05-03 14:53:12 -07001002 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC_NOFS))
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001003 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001004
Jie Liu8695d272014-05-20 08:24:26 +10001005 /*
Dave Chinnerad689722016-02-15 17:21:31 +11001006 * Is this page beyond the end of the file?
1007 *
Jie Liu8695d272014-05-20 08:24:26 +10001008 * The page index is less than the end_index, adjust the end_offset
1009 * to the highest offset that this page should represent.
1010 * -----------------------------------------------------
1011 * | file mapping | <EOF> |
1012 * -----------------------------------------------------
1013 * | Page ... | Page N-2 | Page N-1 | Page N | |
1014 * ^--------------------------------^----------|--------
1015 * | desired writeback range | see else |
1016 * ---------------------------------^------------------|
1017 */
Dave Chinnerad689722016-02-15 17:21:31 +11001018 offset = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001019 end_index = offset >> PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001020 if (page->index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001021 end_offset = (xfs_off_t)(page->index + 1) << PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001022 else {
1023 /*
1024 * Check whether the page to write out is beyond or straddles
1025 * i_size or not.
1026 * -------------------------------------------------------
1027 * | file mapping | <EOF> |
1028 * -------------------------------------------------------
1029 * | Page ... | Page N-2 | Page N-1 | Page N | Beyond |
1030 * ^--------------------------------^-----------|---------
1031 * | | Straddles |
1032 * ---------------------------------^-----------|--------|
1033 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001034 unsigned offset_into_page = offset & (PAGE_SIZE - 1);
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001035
1036 /*
Jan Karaff9a28f2013-03-14 14:30:54 +01001037 * Skip the page if it is fully outside i_size, e.g. due to a
1038 * truncate operation that is in progress. We must redirty the
1039 * page so that reclaim stops reclaiming it. Otherwise
1040 * xfs_vm_releasepage() is called on it and gets confused.
Jie Liu8695d272014-05-20 08:24:26 +10001041 *
1042 * Note that the end_index is unsigned long, it would overflow
1043 * if the given offset is greater than 16TB on 32-bit system
1044 * and if we do check the page is fully outside i_size or not
1045 * via "if (page->index >= end_index + 1)" as "end_index + 1"
1046 * will be evaluated to 0. Hence this page will be redirtied
1047 * and be written out repeatedly which would result in an
1048 * infinite loop, the user program that perform this operation
1049 * will hang. Instead, we can verify this situation by checking
1050 * if the page to write is totally beyond the i_size or if it's
1051 * offset is just equal to the EOF.
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001052 */
Jie Liu8695d272014-05-20 08:24:26 +10001053 if (page->index > end_index ||
1054 (page->index == end_index && offset_into_page == 0))
Jan Karaff9a28f2013-03-14 14:30:54 +01001055 goto redirty;
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001056
1057 /*
1058 * The page straddles i_size. It must be zeroed out on each
1059 * and every writepage invocation because it may be mmapped.
1060 * "A file is mapped in multiples of the page size. For a file
Jie Liu8695d272014-05-20 08:24:26 +10001061 * that is not a multiple of the page size, the remaining
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001062 * memory is zeroed when mapped, and writes to that region are
1063 * not written out to the file."
1064 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001065 zero_user_segment(page, offset_into_page, PAGE_SIZE);
Jie Liu8695d272014-05-20 08:24:26 +10001066
1067 /* Adjust the end_offset to the end of file */
1068 end_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -08001071 return xfs_writepage_map(wpc, wbc, inode, page, end_offset);
Nathan Scottf51623b2006-03-14 13:26:27 +11001072
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001073redirty:
Nathan Scottf51623b2006-03-14 13:26:27 +11001074 redirty_page_for_writepage(wbc, page);
1075 unlock_page(page);
1076 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001077}
1078
Nathan Scott7d4fb402006-06-09 15:27:16 +10001079STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001080xfs_vm_writepage(
1081 struct page *page,
1082 struct writeback_control *wbc)
1083{
1084 struct xfs_writepage_ctx wpc = {
1085 .io_type = XFS_IO_INVALID,
1086 };
1087 int ret;
1088
1089 ret = xfs_do_writepage(page, wbc, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001090 if (wpc.ioend)
1091 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1092 return ret;
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001093}
1094
1095STATIC int
Nathan Scott7d4fb402006-06-09 15:27:16 +10001096xfs_vm_writepages(
1097 struct address_space *mapping,
1098 struct writeback_control *wbc)
1099{
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001100 struct xfs_writepage_ctx wpc = {
1101 .io_type = XFS_IO_INVALID,
1102 };
1103 int ret;
1104
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001105 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001106 ret = write_cache_pages(mapping, wbc, xfs_do_writepage, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001107 if (wpc.ioend)
1108 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1109 return ret;
Nathan Scott7d4fb402006-06-09 15:27:16 +10001110}
1111
Dan Williams6e2608d2018-03-07 15:26:44 -08001112STATIC int
1113xfs_dax_writepages(
1114 struct address_space *mapping,
1115 struct writeback_control *wbc)
1116{
1117 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
1118 return dax_writeback_mapping_range(mapping,
1119 xfs_find_bdev_for_inode(mapping->host), wbc);
1120}
1121
Nathan Scottf51623b2006-03-14 13:26:27 +11001122/*
1123 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001124 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001125 * have buffer heads in this call.
1126 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001127 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001128 */
1129STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001130xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001131 struct page *page,
1132 gfp_t gfp_mask)
1133{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001134 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001135
Lukas Czerner34097df2013-05-21 23:58:01 -04001136 trace_xfs_releasepage(page->mapping->host, page, 0, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001137
Brian Foster99579cc2016-07-22 09:50:38 +10001138 /*
1139 * mm accommodates an old ext3 case where clean pages might not have had
1140 * the dirty bit cleared. Thus, it can send actual dirty pages to
1141 * ->releasepage() via shrink_active_list(). Conversely,
Dave Chinner793d7db2017-10-13 09:47:45 -07001142 * block_invalidatepage() can send pages that are still marked dirty but
1143 * otherwise have invalidated buffers.
Brian Foster99579cc2016-07-22 09:50:38 +10001144 *
Jan Kara0a417b82017-01-11 10:20:04 -08001145 * We want to release the latter to avoid unnecessary buildup of the
Dave Chinner793d7db2017-10-13 09:47:45 -07001146 * LRU, so xfs_vm_invalidatepage() clears the page dirty flag on pages
1147 * that are entirely invalidated and need to be released. Hence the
1148 * only time we should get dirty pages here is through
1149 * shrink_active_list() and so we can simply skip those now.
1150 *
1151 * warn if we've left any lingering delalloc/unwritten buffers on clean
1152 * or invalidated pages we are about to release.
Brian Foster99579cc2016-07-22 09:50:38 +10001153 */
Dave Chinner793d7db2017-10-13 09:47:45 -07001154 if (PageDirty(page))
1155 return 0;
1156
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001157 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001158
Dave Chinner793d7db2017-10-13 09:47:45 -07001159 if (WARN_ON_ONCE(delalloc))
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001160 return 0;
Dave Chinner793d7db2017-10-13 09:47:45 -07001161 if (WARN_ON_ONCE(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001162 return 0;
1163
Nathan Scottf51623b2006-03-14 13:26:27 +11001164 return try_to_free_buffers(page);
1165}
1166
Dave Chinnera7193702015-04-16 21:57:48 +10001167/*
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001168 * If this is O_DIRECT or the mpage code calling tell them how large the mapping
1169 * is, so that we can avoid repeated get_blocks calls.
1170 *
1171 * If the mapping spans EOF, then we have to break the mapping up as the mapping
1172 * for blocks beyond EOF must be marked new so that sub block regions can be
1173 * correctly zeroed. We can't do this for mappings within EOF unless the mapping
1174 * was just allocated or is unwritten, otherwise the callers would overwrite
1175 * existing data with zeros. Hence we have to split the mapping into a range up
1176 * to and including EOF, and a second mapping for beyond EOF.
1177 */
1178static void
1179xfs_map_trim_size(
1180 struct inode *inode,
1181 sector_t iblock,
1182 struct buffer_head *bh_result,
1183 struct xfs_bmbt_irec *imap,
1184 xfs_off_t offset,
1185 ssize_t size)
1186{
1187 xfs_off_t mapping_size;
1188
1189 mapping_size = imap->br_startoff + imap->br_blockcount - iblock;
1190 mapping_size <<= inode->i_blkbits;
1191
1192 ASSERT(mapping_size > 0);
1193 if (mapping_size > size)
1194 mapping_size = size;
1195 if (offset < i_size_read(inode) &&
Darrick J. Wong22a6c832017-11-27 09:50:17 -08001196 (xfs_ufsize_t)offset + mapping_size >= i_size_read(inode)) {
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001197 /* limit mapping to block that spans EOF */
1198 mapping_size = roundup_64(i_size_read(inode) - offset,
Fabian Frederick93407472017-02-27 14:28:32 -08001199 i_blocksize(inode));
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001200 }
1201 if (mapping_size > LONG_MAX)
1202 mapping_size = LONG_MAX;
1203
1204 bh_result->b_size = mapping_size;
1205}
1206
Darrick J. Wong0613f162016-10-03 09:11:37 -07001207static int
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001208xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct inode *inode,
1210 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 struct buffer_head *bh_result,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001212 int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Christoph Hellwiga206c812010-12-10 08:42:20 +00001214 struct xfs_inode *ip = XFS_I(inode);
1215 struct xfs_mount *mp = ip->i_mount;
1216 xfs_fileoff_t offset_fsb, end_fsb;
1217 int error = 0;
1218 int lockmode = 0;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001219 struct xfs_bmbt_irec imap;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001220 int nimaps = 1;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001221 xfs_off_t offset;
1222 ssize_t size;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001223
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001224 BUG_ON(create);
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001225
Christoph Hellwiga206c812010-12-10 08:42:20 +00001226 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001227 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001229 offset = (xfs_off_t)iblock << inode->i_blkbits;
Fabian Frederick93407472017-02-27 14:28:32 -08001230 ASSERT(bh_result->b_size >= i_blocksize(inode));
Nathan Scottc2536662006-03-29 10:44:40 +10001231 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001232
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001233 if (offset >= i_size_read(inode))
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001234 return 0;
1235
Dave Chinner507630b2012-03-27 10:34:50 -04001236 /*
1237 * Direct I/O is usually done on preallocated files, so try getting
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001238 * a block mapping without an exclusive lock first.
Dave Chinner507630b2012-03-27 10:34:50 -04001239 */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001240 lockmode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001241
Dave Chinnerd2c28192012-06-08 15:44:53 +10001242 ASSERT(offset <= mp->m_super->s_maxbytes);
Darrick J. Wongb4d8ad7f2017-12-22 13:14:34 -08001243 if (offset > mp->m_super->s_maxbytes - size)
Dave Chinnerd2c28192012-06-08 15:44:53 +10001244 size = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001245 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1246 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1247
Christoph Hellwig7d9df3c2018-03-13 23:15:31 -07001248 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
1249 &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (error)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001251 goto out_unlock;
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001252 if (!nimaps) {
Christoph Hellwiga206c812010-12-10 08:42:20 +00001253 trace_xfs_get_blocks_notfound(ip, offset, size);
1254 goto out_unlock;
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001257 trace_xfs_get_blocks_found(ip, offset, size,
1258 imap.br_state == XFS_EXT_UNWRITTEN ?
1259 XFS_IO_UNWRITTEN : XFS_IO_OVERWRITE, &imap);
1260 xfs_iunlock(ip, lockmode);
1261
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001262 /* trim mapping down to size requested */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001263 xfs_map_trim_size(inode, iblock, bh_result, &imap, offset, size);
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001264
Dave Chinnera7193702015-04-16 21:57:48 +10001265 /*
1266 * For unwritten extents do not report a disk address in the buffered
1267 * read case (treat as if we're reading into a hole).
1268 */
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001269 if (xfs_bmap_is_real_extent(&imap))
Dave Chinnera7193702015-04-16 21:57:48 +10001270 xfs_map_buffer(inode, bh_result, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Nathan Scottc2536662006-03-29 10:44:40 +10001272 /*
1273 * If this is a realtime file, data may be on a different device.
1274 * to that pointed to from the buffer_head b_bdev currently.
1275 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001276 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001278
1279out_unlock:
1280 xfs_iunlock(ip, lockmode);
Dave Chinner24513372014-06-25 14:58:08 +10001281 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001285xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct address_space *mapping,
1287 sector_t block)
1288{
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001289 struct xfs_inode *ip = XFS_I(mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001291 trace_xfs_vm_bmap(ip);
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001292
1293 /*
1294 * The swap code (ab-)uses ->bmap to get a block mapping and then
Ingo Molnar793057e2018-02-28 09:39:48 +01001295 * bypasses the file system for actual I/O. We really can't allow
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001296 * that on reflinks inodes, so we have to skip out here. And yes,
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001297 * 0 is the magic code for a bmap error.
1298 *
1299 * Since we don't pass back blockdev info, we can't return bmap
1300 * information for rt files either.
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001301 */
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001302 if (xfs_is_reflink_inode(ip) || XFS_IS_REALTIME_INODE(ip))
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001303 return 0;
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001304 return iomap_bmap(mapping, block, &xfs_iomap_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
1307STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001308xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct file *unused,
1310 struct page *page)
1311{
Dave Chinner121e2132016-01-08 11:28:35 +11001312 trace_xfs_vm_readpage(page->mapping->host, 1);
Christoph Hellwig8b2e77c2018-07-11 22:25:56 -07001313 if (i_blocksize(page->mapping->host) == PAGE_SIZE)
1314 return iomap_readpage(page, &xfs_iomap_ops);
Nathan Scottc2536662006-03-29 10:44:40 +10001315 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001319xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct file *unused,
1321 struct address_space *mapping,
1322 struct list_head *pages,
1323 unsigned nr_pages)
1324{
Dave Chinner121e2132016-01-08 11:28:35 +11001325 trace_xfs_vm_readpages(mapping->host, nr_pages);
Christoph Hellwig8b2e77c2018-07-11 22:25:56 -07001326 if (i_blocksize(mapping->host) == PAGE_SIZE)
1327 return iomap_readpages(mapping, pages, nr_pages, &xfs_iomap_ops);
Nathan Scottc2536662006-03-29 10:44:40 +10001328 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Dave Chinner22e757a2014-09-02 12:12:51 +10001331/*
1332 * This is basically a copy of __set_page_dirty_buffers() with one
1333 * small tweak: buffers beyond EOF do not get marked dirty. If we mark them
1334 * dirty, we'll never be able to clean them because we don't write buffers
1335 * beyond EOF, and that means we can't invalidate pages that span EOF
1336 * that have been marked dirty. Further, the dirty state can leak into
1337 * the file interior if the file is extended, resulting in all sorts of
1338 * bad things happening as the state does not match the underlying data.
1339 *
1340 * XXX: this really indicates that bufferheads in XFS need to die. Warts like
1341 * this only exist because of bufferheads and how the generic code manages them.
1342 */
1343STATIC int
1344xfs_vm_set_page_dirty(
1345 struct page *page)
1346{
1347 struct address_space *mapping = page->mapping;
1348 struct inode *inode = mapping->host;
1349 loff_t end_offset;
1350 loff_t offset;
1351 int newly_dirty;
1352
1353 if (unlikely(!mapping))
1354 return !TestSetPageDirty(page);
1355
1356 end_offset = i_size_read(inode);
1357 offset = page_offset(page);
1358
1359 spin_lock(&mapping->private_lock);
1360 if (page_has_buffers(page)) {
1361 struct buffer_head *head = page_buffers(page);
1362 struct buffer_head *bh = head;
1363
1364 do {
1365 if (offset < end_offset)
1366 set_buffer_dirty(bh);
1367 bh = bh->b_this_page;
Fabian Frederick93407472017-02-27 14:28:32 -08001368 offset += i_blocksize(inode);
Dave Chinner22e757a2014-09-02 12:12:51 +10001369 } while (bh != head);
1370 }
Greg Thelenc4843a72015-05-22 17:13:16 -04001371 /*
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07001372 * Lock out page->mem_cgroup migration to keep PageDirty
1373 * synchronized with per-memcg dirty page counters.
Greg Thelenc4843a72015-05-22 17:13:16 -04001374 */
Johannes Weiner62cccb82016-03-15 14:57:22 -07001375 lock_page_memcg(page);
Dave Chinner22e757a2014-09-02 12:12:51 +10001376 newly_dirty = !TestSetPageDirty(page);
1377 spin_unlock(&mapping->private_lock);
1378
Matthew Wilcoxf82b3762018-04-10 16:36:44 -07001379 if (newly_dirty)
1380 __set_page_dirty(page, mapping, 1);
Johannes Weiner62cccb82016-03-15 14:57:22 -07001381 unlock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04001382 if (newly_dirty)
1383 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Dave Chinner22e757a2014-09-02 12:12:51 +10001384 return newly_dirty;
1385}
1386
Darrick J. Wong67482122018-05-10 08:38:15 -07001387static int
1388xfs_iomap_swapfile_activate(
1389 struct swap_info_struct *sis,
1390 struct file *swap_file,
1391 sector_t *span)
1392{
1393 sis->bdev = xfs_find_bdev_for_inode(file_inode(swap_file));
1394 return iomap_swapfile_activate(sis, swap_file, span, &xfs_iomap_ops);
1395}
1396
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001397const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001398 .readpage = xfs_vm_readpage,
1399 .readpages = xfs_vm_readpages,
1400 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001401 .writepages = xfs_vm_writepages,
Dave Chinner22e757a2014-09-02 12:12:51 +10001402 .set_page_dirty = xfs_vm_set_page_dirty,
Nathan Scott238f4c52006-03-17 17:26:25 +11001403 .releasepage = xfs_vm_releasepage,
1404 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001405 .bmap = xfs_vm_bmap,
Dan Williams6e2608d2018-03-07 15:26:44 -08001406 .direct_IO = noop_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001407 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001408 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001409 .error_remove_page = generic_error_remove_page,
Darrick J. Wong67482122018-05-10 08:38:15 -07001410 .swap_activate = xfs_iomap_swapfile_activate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411};
Dan Williams6e2608d2018-03-07 15:26:44 -08001412
1413const struct address_space_operations xfs_dax_aops = {
1414 .writepages = xfs_dax_writepages,
1415 .direct_IO = noop_direct_IO,
1416 .set_page_dirty = noop_set_page_dirty,
1417 .invalidatepage = noop_invalidatepage,
Darrick J. Wong67482122018-05-10 08:38:15 -07001418 .swap_activate = xfs_iomap_swapfile_activate,
Dan Williams6e2608d2018-03-07 15:26:44 -08001419};