blob: 5c5d8c832dcc2a43b6c14c50cfbb7c697eb045b3 [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 Hellwig060d4ea2018-07-11 22:26:01 -0700373 xfs_fileoff_t offset_fsb, end_fsb;
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700374 struct xfs_bmbt_irec imap;
375 int whichfork = XFS_DATA_FORK;
Christoph Hellwig060d4ea2018-07-11 22:26:01 -0700376 struct xfs_iext_cursor icur;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000377 int error = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000378 int nimaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Christoph Hellwiga206c812010-12-10 08:42:20 +0000380 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000381 return -EIO;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000382
Dave Chinner988ef922016-02-15 17:20:50 +1100383 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000384 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
385 (ip->i_df.if_flags & XFS_IFEXTENTS));
Dave Chinnerd2c28192012-06-08 15:44:53 +1000386 ASSERT(offset <= mp->m_super->s_maxbytes);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000387
Christoph Hellwig060d4ea2018-07-11 22:26:01 -0700388 if (offset > mp->m_super->s_maxbytes - count)
389 count = mp->m_super->s_maxbytes - offset;
390 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
391 offset_fsb = XFS_B_TO_FSBT(mp, offset);
392
393 /*
394 * Check if this is offset is covered by a COW extents, and if yes use
395 * it directly instead of looking up anything in the data fork.
396 */
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700397 if (xfs_is_reflink_inode(ip) &&
Christoph Hellwig060d4ea2018-07-11 22:26:01 -0700398 xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &imap) &&
399 imap.br_startoff <= offset_fsb) {
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700400 xfs_iunlock(ip, XFS_ILOCK_SHARED);
401 /*
402 * Truncate can race with writeback since writeback doesn't
403 * take the iolock and truncate decreases the file size before
404 * it starts truncating the pages between new_size and old_size.
405 * Therefore, we can end up in the situation where writeback
406 * gets a CoW fork mapping but the truncate makes the mapping
407 * invalid and we end up in here trying to get a new mapping.
408 * bail out here so that we simply never get a valid mapping
409 * and so we drop the write altogether. The page truncation
410 * will kill the contents anyway.
411 */
412 if (offset > i_size_read(inode)) {
413 wpc->io_type = XFS_IO_HOLE;
414 return 0;
415 }
416 whichfork = XFS_COW_FORK;
417 wpc->io_type = XFS_IO_COW;
418 goto allocate_blocks;
419 }
420
421 /*
422 * Map valid and no COW extent in the way? We're done.
423 */
424 if (wpc->imap_valid) {
425 xfs_iunlock(ip, XFS_ILOCK_SHARED);
426 return 0;
427 }
428
429 /*
430 * If we don't have a valid map, now it's time to get a new one for this
431 * offset. This will convert delayed allocations (including COW ones)
432 * into real extents.
433 */
Dave Chinner5c8ed202011-09-18 20:40:45 +0000434 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700435 &imap, &nimaps, XFS_BMAPI_ENTIRE);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000436 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000437 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000438 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000439
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700440 if (!nimaps) {
441 /*
442 * Lookup returns no match? Beyond eof? regardless,
443 * return it as a hole so we don't write it
444 */
445 imap.br_startoff = offset_fsb;
446 imap.br_blockcount = end_fsb - offset_fsb;
447 imap.br_startblock = HOLESTARTBLOCK;
448 wpc->io_type = XFS_IO_HOLE;
449 } else if (imap.br_startblock == HOLESTARTBLOCK) {
450 /* landed in a hole */
451 wpc->io_type = XFS_IO_HOLE;
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700452 } else {
453 if (isnullstartblock(imap.br_startblock)) {
454 /* got a delalloc extent */
455 wpc->io_type = XFS_IO_DELALLOC;
456 goto allocate_blocks;
457 }
458
459 if (imap.br_state == XFS_EXT_UNWRITTEN)
460 wpc->io_type = XFS_IO_UNWRITTEN;
461 else
462 wpc->io_type = XFS_IO_OVERWRITE;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000463 }
464
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700465 wpc->imap = imap;
466 trace_xfs_map_blocks_found(ip, offset, count, wpc->io_type, &imap);
467 return 0;
468allocate_blocks:
469 error = xfs_iomap_write_allocate(ip, whichfork, offset, &imap);
470 if (error)
471 return error;
472 wpc->imap = imap;
473 trace_xfs_map_blocks_alloc(ip, offset, count, wpc->io_type, &imap);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100477STATIC bool
Christoph Hellwig558e6892010-04-28 12:28:58 +0000478xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000479 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000480 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000481 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000483 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000484
Brian Foster40214d12017-10-13 09:47:46 -0700485 /*
486 * We have to make sure the cached mapping is within EOF to protect
487 * against eofblocks trimming on file release leaving us with a stale
488 * mapping. Otherwise, a page for a subsequent file extending buffered
489 * write could get picked up by this writeback cycle and written to the
490 * wrong blocks.
491 *
492 * Note that what we really want here is a generic mapping invalidation
493 * mechanism to protect us from arbitrary extent modifying contexts, not
494 * just eofblocks.
495 */
496 xfs_trim_extent_eof(imap, XFS_I(inode));
497
Christoph Hellwig558e6892010-04-28 12:28:58 +0000498 return offset >= imap->br_startoff &&
499 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100502STATIC void
503xfs_start_buffer_writeback(
504 struct buffer_head *bh)
505{
506 ASSERT(buffer_mapped(bh));
507 ASSERT(buffer_locked(bh));
508 ASSERT(!buffer_delay(bh));
509 ASSERT(!buffer_unwritten(bh));
510
Christoph Hellwig8353a812017-09-02 09:53:41 -0700511 bh->b_end_io = NULL;
512 set_buffer_async_write(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100513 set_buffer_uptodate(bh);
514 clear_buffer_dirty(bh);
515}
516
517STATIC void
518xfs_start_page_writeback(
519 struct page *page,
Dave Chinnere10de372016-02-15 17:23:12 +1100520 int clear_dirty)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100521{
522 ASSERT(PageLocked(page));
523 ASSERT(!PageWriteback(page));
Dave Chinner0d085a52014-09-23 15:36:27 +1000524
525 /*
526 * if the page was not fully cleaned, we need to ensure that the higher
527 * layers come back to it correctly. That means we need to keep the page
528 * dirty, and for WB_SYNC_ALL writeback we need to ensure the
529 * PAGECACHE_TAG_TOWRITE index mark is not removed so another attempt to
530 * write this page in this writeback sweep will be made.
531 */
532 if (clear_dirty) {
David Chinner92132022006-12-21 10:24:01 +1100533 clear_page_dirty_for_io(page);
Dave Chinner0d085a52014-09-23 15:36:27 +1000534 set_page_writeback(page);
535 } else
536 set_page_writeback_keepwrite(page);
537
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100538 unlock_page(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100539}
540
Zhi Yong Wuc7c1a7d2013-08-07 10:11:09 +0000541static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100542{
543 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
544}
545
546/*
Dave Chinnerbb187822016-04-06 08:11:25 +1000547 * Submit the bio for an ioend. We are passed an ioend with a bio attached to
548 * it, and we submit that bio. The ioend may be used for multiple bio
549 * submissions, so we only want to allocate an append transaction for the ioend
550 * once. In the case of multiple bio submission, each bio will take an IO
551 * reference to the ioend to ensure that the ioend completion is only done once
552 * all bios have been submitted and the ioend is really done.
Dave Chinner7bf7f352012-11-12 22:09:45 +1100553 *
554 * If @fail is non-zero, it means that we have a situation where some part of
555 * the submission process has failed after we have marked paged for writeback
Dave Chinnerbb187822016-04-06 08:11:25 +1000556 * and unlocked them. In this situation, we need to fail the bio and ioend
557 * rather than submit it to IO. This typically only happens on a filesystem
558 * shutdown.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100559 */
Dave Chinnere10de372016-02-15 17:23:12 +1100560STATIC int
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100561xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000562 struct writeback_control *wbc,
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000563 struct xfs_ioend *ioend,
Dave Chinnere10de372016-02-15 17:23:12 +1100564 int status)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100565{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800566 /* Convert CoW extents to regular */
567 if (!status && ioend->io_type == XFS_IO_COW) {
Dave Chinner4a2d01b2018-06-07 07:46:42 -0700568 /*
569 * Yuk. This can do memory allocation, but is not a
570 * transactional operation so everything is done in GFP_KERNEL
571 * context. That can deadlock, because we hold pages in
572 * writeback state and GFP_KERNEL allocations can block on them.
573 * Hence we must operate in nofs conditions here.
574 */
575 unsigned nofs_flag;
576
577 nofs_flag = memalloc_nofs_save();
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800578 status = xfs_reflink_convert_cow(XFS_I(ioend->io_inode),
579 ioend->io_offset, ioend->io_size);
Dave Chinner4a2d01b2018-06-07 07:46:42 -0700580 memalloc_nofs_restore(nofs_flag);
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800581 }
582
Dave Chinnere10de372016-02-15 17:23:12 +1100583 /* Reserve log space if we might write beyond the on-disk inode size. */
584 if (!status &&
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000585 ioend->io_type != XFS_IO_UNWRITTEN &&
Dave Chinnerbb187822016-04-06 08:11:25 +1000586 xfs_ioend_is_append(ioend) &&
587 !ioend->io_append_trans)
Dave Chinnere10de372016-02-15 17:23:12 +1100588 status = xfs_setfilesize_trans_alloc(ioend);
Dave Chinnerbb187822016-04-06 08:11:25 +1000589
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000590 ioend->io_bio->bi_private = ioend;
591 ioend->io_bio->bi_end_io = xfs_end_bio;
Jens Axboe76372412016-11-01 10:00:38 -0600592 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600593
Dave Chinnere10de372016-02-15 17:23:12 +1100594 /*
595 * If we are failing the IO now, just mark the ioend with an
596 * error and finish it. This will run IO completion immediately
597 * as there is only one reference to the ioend at this point in
598 * time.
599 */
600 if (status) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200601 ioend->io_bio->bi_status = errno_to_blk_status(status);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000602 bio_endio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100603 return status;
604 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100605
Jens Axboe31d7d582017-06-27 09:34:01 -0600606 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500607 submit_bio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100608 return 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100609}
610
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000611static void
612xfs_init_bio_from_bh(
613 struct bio *bio,
614 struct buffer_head *bh)
615{
616 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200617 bio_set_dev(bio, bh->b_bdev);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000618}
619
620static struct xfs_ioend *
621xfs_alloc_ioend(
622 struct inode *inode,
623 unsigned int type,
624 xfs_off_t offset,
625 struct buffer_head *bh)
626{
627 struct xfs_ioend *ioend;
628 struct bio *bio;
629
Kent Overstreete292d7b2018-05-20 18:25:57 -0400630 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &xfs_ioend_bioset);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000631 xfs_init_bio_from_bh(bio, bh);
632
633 ioend = container_of(bio, struct xfs_ioend, io_inline_bio);
634 INIT_LIST_HEAD(&ioend->io_list);
635 ioend->io_type = type;
636 ioend->io_inode = inode;
637 ioend->io_size = 0;
638 ioend->io_offset = offset;
639 INIT_WORK(&ioend->io_work, xfs_end_io);
640 ioend->io_append_trans = NULL;
641 ioend->io_bio = bio;
642 return ioend;
643}
644
645/*
646 * Allocate a new bio, and chain the old bio to the new one.
647 *
648 * Note that we have to do perform the chaining in this unintuitive order
649 * so that the bi_private linkage is set up in the right direction for the
650 * traversal in xfs_destroy_ioend().
651 */
652static void
653xfs_chain_bio(
654 struct xfs_ioend *ioend,
655 struct writeback_control *wbc,
656 struct buffer_head *bh)
657{
658 struct bio *new;
659
660 new = bio_alloc(GFP_NOFS, BIO_MAX_PAGES);
661 xfs_init_bio_from_bh(new, bh);
662
663 bio_chain(ioend->io_bio, new);
664 bio_get(ioend->io_bio); /* for xfs_destroy_ioend */
Jens Axboe76372412016-11-01 10:00:38 -0600665 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Jens Axboe31d7d582017-06-27 09:34:01 -0600666 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500667 submit_bio(ioend->io_bio);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000668 ioend->io_bio = new;
669}
670
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100671/*
672 * Test to see if we've been building up a completion structure for
673 * earlier buffers -- if so, we try to append to this ioend if we
674 * can, otherwise we finish off any current ioend and start another.
Dave Chinnere10de372016-02-15 17:23:12 +1100675 * Return the ioend we finished off so that the caller can submit it
676 * once it has finished processing the dirty page.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100677 */
678STATIC void
679xfs_add_to_ioend(
680 struct inode *inode,
681 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100682 xfs_off_t offset,
Dave Chinnere10de372016-02-15 17:23:12 +1100683 struct xfs_writepage_ctx *wpc,
Dave Chinnerbb187822016-04-06 08:11:25 +1000684 struct writeback_control *wbc,
Dave Chinnere10de372016-02-15 17:23:12 +1100685 struct list_head *iolist)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100686{
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100687 if (!wpc->ioend || wpc->io_type != wpc->ioend->io_type ||
Darrick J. Wong0df61da2016-03-07 09:32:14 +1100688 bh->b_blocknr != wpc->last_block + 1 ||
689 offset != wpc->ioend->io_offset + wpc->ioend->io_size) {
Dave Chinnere10de372016-02-15 17:23:12 +1100690 if (wpc->ioend)
691 list_add(&wpc->ioend->io_list, iolist);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000692 wpc->ioend = xfs_alloc_ioend(inode, wpc->io_type, offset, bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100693 }
694
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000695 /*
696 * If the buffer doesn't fit into the bio we need to allocate a new
697 * one. This shouldn't happen more than once for a given buffer.
698 */
699 while (xfs_bio_add_buffer(wpc->ioend->io_bio, bh) != bh->b_size)
700 xfs_chain_bio(wpc->ioend, wbc, bh);
Dave Chinnerbb187822016-04-06 08:11:25 +1000701
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100702 wpc->ioend->io_size += bh->b_size;
703 wpc->last_block = bh->b_blocknr;
Dave Chinnere10de372016-02-15 17:23:12 +1100704 xfs_start_buffer_writeback(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100708xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000709 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100710 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000711 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000712 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100713{
714 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000715 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000716 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
717 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100718
Christoph Hellwig207d0412010-04-28 12:28:56 +0000719 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
720 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100721
Christoph Hellwige5131822010-04-28 12:28:55 +0000722 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000723 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100724
Christoph Hellwig046f1682010-04-28 12:28:52 +0000725 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100726
727 bh->b_blocknr = bn;
728 set_buffer_mapped(bh);
729}
730
731STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000733 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000735 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000736 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000738 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
739 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Christoph Hellwig207d0412010-04-28 12:28:56 +0000741 xfs_map_buffer(inode, bh, imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 set_buffer_mapped(bh);
743 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100744 clear_buffer_unwritten(bh);
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700745
746 /*
747 * If this is a realtime file, data may be on a different device.
748 * to that pointed to from the buffer_head b_bdev currently. We can't
749 * trust that the bufferhead has a already been mapped correctly, so
750 * set the bdev now.
751 */
752 bh->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Dave Chinner3ed3a432010-03-05 02:00:42 +0000755STATIC void
756xfs_vm_invalidatepage(
757 struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -0400758 unsigned int offset,
759 unsigned int length)
Dave Chinner3ed3a432010-03-05 02:00:42 +0000760{
Lukas Czerner34097df2013-05-21 23:58:01 -0400761 trace_xfs_invalidatepage(page->mapping->host, page, offset,
762 length);
Dave Chinner793d7db2017-10-13 09:47:45 -0700763
764 /*
765 * If we are invalidating the entire page, clear the dirty state from it
766 * so that we can check for attempts to release dirty cached pages in
767 * xfs_vm_releasepage().
768 */
769 if (offset == 0 && length >= PAGE_SIZE)
770 cancel_dirty_page(page);
Lukas Czerner34097df2013-05-21 23:58:01 -0400771 block_invalidatepage(page, offset, length);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000772}
773
774/*
775 * If the page has delalloc buffers on it, we need to punch them out before we
776 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
777 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
778 * is done on that same region - the delalloc extent is returned when none is
779 * supposed to be there.
780 *
781 * We prevent this by truncating away the delalloc regions on the page before
782 * invalidating it. Because they are delalloc, we can do this without needing a
783 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
784 * truncation without a transaction as there is no space left for block
785 * reservation (typically why we see a ENOSPC in writeback).
Dave Chinner3ed3a432010-03-05 02:00:42 +0000786 */
787STATIC void
788xfs_aops_discard_page(
789 struct page *page)
790{
791 struct inode *inode = page->mapping->host;
792 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig03625722018-07-11 22:25:57 -0700793 struct xfs_mount *mp = ip->i_mount;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000794 loff_t offset = page_offset(page);
Christoph Hellwig03625722018-07-11 22:25:57 -0700795 xfs_fileoff_t start_fsb = XFS_B_TO_FSBT(mp, offset);
796 int error;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000797
Christoph Hellwig03625722018-07-11 22:25:57 -0700798 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000799 goto out_invalidate;
800
Christoph Hellwig03625722018-07-11 22:25:57 -0700801 xfs_alert(mp,
Darrick J. Wongc9690042018-01-09 12:02:55 -0800802 "page discard on page "PTR_FMT", inode 0x%llx, offset %llu.",
Dave Chinner3ed3a432010-03-05 02:00:42 +0000803 page, ip->i_ino, offset);
804
Christoph Hellwig03625722018-07-11 22:25:57 -0700805 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
806 PAGE_SIZE / i_blocksize(inode));
Christoph Hellwig03625722018-07-11 22:25:57 -0700807 if (error && !XFS_FORCED_SHUTDOWN(mp))
808 xfs_alert(mp, "page discard unable to remove delalloc mapping.");
Dave Chinner3ed3a432010-03-05 02:00:42 +0000809out_invalidate:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300810 xfs_vm_invalidatepage(page, 0, PAGE_SIZE);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000811}
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813/*
Dave Chinnere10de372016-02-15 17:23:12 +1100814 * We implement an immediate ioend submission policy here to avoid needing to
815 * chain multiple ioends and hence nest mempool allocations which can violate
816 * forward progress guarantees we need to provide. The current ioend we are
817 * adding buffers to is cached on the writepage context, and if the new buffer
818 * does not append to the cached ioend it will create a new ioend and cache that
819 * instead.
820 *
821 * If a new ioend is created and cached, the old ioend is returned and queued
822 * locally for submission once the entire page is processed or an error has been
823 * detected. While ioends are submitted immediately after they are completed,
824 * batching optimisations are provided by higher level block plugging.
825 *
826 * At the end of a writeback pass, there will be a cached ioend remaining on the
827 * writepage context that the caller will need to submit.
828 */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100829static int
830xfs_writepage_map(
831 struct xfs_writepage_ctx *wpc,
Dave Chinnere10de372016-02-15 17:23:12 +1100832 struct writeback_control *wbc,
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100833 struct inode *inode,
834 struct page *page,
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -0800835 uint64_t end_offset)
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100836{
Dave Chinnere10de372016-02-15 17:23:12 +1100837 LIST_HEAD(submit_list);
838 struct xfs_ioend *ioend, *next;
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700839 struct buffer_head *bh;
Fabian Frederick93407472017-02-27 14:28:32 -0800840 ssize_t len = i_blocksize(inode);
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700841 uint64_t file_offset; /* file offset of page */
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700842 unsigned poffset; /* offset into page */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100843 int error = 0;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100844 int count = 0;
845
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700846 /*
847 * Walk the blocks on the page, and if we run off the end of the current
848 * map or find the current map invalid, grab a new one. We only use
849 * bufferheads here to check per-block state - they no longer control
850 * the iteration through the page. This allows us to replace the
851 * bufferhead with some other state tracking mechanism in future.
852 */
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700853 file_offset = page_offset(page);
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700854 bh = page_buffers(page);
855 for (poffset = 0;
856 poffset < PAGE_SIZE;
857 poffset += len, file_offset += len, bh = bh->b_this_page) {
858 /* past the range we are writing, so nothing more to write. */
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700859 if (file_offset >= end_offset)
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100860 break;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100861
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700862 if (!buffer_uptodate(bh)) {
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100863 if (PageUptodate(page))
864 ASSERT(buffer_mapped(bh));
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100865 continue;
866 }
867
868 if (wpc->imap_valid)
869 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700870 file_offset);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700871
872 /*
873 * COW fork blocks can overlap data fork blocks even if the
874 * blocks aren't shared. COW I/O always takes precedent, so we
875 * must always check for overlap on reflink inodes unless the
876 * mapping is already a COW one.
877 */
878 if (!wpc->imap_valid ||
879 (xfs_is_reflink_inode(XFS_I(inode)) &&
880 wpc->io_type != XFS_IO_COW)) {
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700881 error = xfs_map_blocks(wpc, inode, file_offset);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100882 if (error)
Dave Chinnere10de372016-02-15 17:23:12 +1100883 goto out;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100884 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700885 file_offset);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100886 }
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100887
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700888 if (!wpc->imap_valid || wpc->io_type == XFS_IO_HOLE)
889 continue;
890
891 lock_buffer(bh);
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700892 xfs_map_at_offset(inode, bh, &wpc->imap, file_offset);
Christoph Hellwig6a4c9502018-07-11 22:26:00 -0700893 xfs_add_to_ioend(inode, bh, file_offset, wpc, wbc, &submit_list);
Christoph Hellwig5c665e52018-07-11 22:25:59 -0700894 count++;
Dave Chinnere2f6ad42018-07-11 22:26:00 -0700895 }
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100896
Dave Chinnere10de372016-02-15 17:23:12 +1100897 ASSERT(wpc->ioend || list_empty(&submit_list));
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100898
Dave Chinnere10de372016-02-15 17:23:12 +1100899out:
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100900 /*
Dave Chinnere10de372016-02-15 17:23:12 +1100901 * On error, we have to fail the ioend here because we have locked
902 * buffers in the ioend. If we don't do this, we'll deadlock
903 * invalidating the page as that tries to lock the buffers on the page.
904 * Also, because we may have set pages under writeback, we have to make
905 * sure we run IO completion to mark the error state of the IO
906 * appropriately, so we can't cancel the ioend directly here. That means
907 * we have to mark this page as under writeback if we included any
908 * buffers from it in the ioend chain so that completion treats it
909 * correctly.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100910 *
Dave Chinnere10de372016-02-15 17:23:12 +1100911 * If we didn't include the page in the ioend, the on error we can
912 * simply discard and unlock it as there are no other users of the page
913 * or it's buffers right now. The caller will still need to trigger
914 * submission of outstanding ioends on the writepage context so they are
915 * treated correctly on error.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100916 */
Dave Chinnere10de372016-02-15 17:23:12 +1100917 if (count) {
918 xfs_start_page_writeback(page, !error);
919
920 /*
921 * Preserve the original error if there was one, otherwise catch
922 * submission errors here and propagate into subsequent ioend
923 * submissions.
924 */
925 list_for_each_entry_safe(ioend, next, &submit_list, io_list) {
926 int error2;
927
928 list_del_init(&ioend->io_list);
929 error2 = xfs_submit_ioend(wbc, ioend, error);
930 if (error2 && !error)
931 error = error2;
932 }
933 } else if (error) {
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100934 xfs_aops_discard_page(page);
935 ClearPageUptodate(page);
936 unlock_page(page);
Dave Chinnere10de372016-02-15 17:23:12 +1100937 } else {
938 /*
939 * We can end up here with no error and nothing to write if we
940 * race with a partial page truncate on a sub-page block sized
941 * filesystem. In that case we need to mark the page clean.
942 */
943 xfs_start_page_writeback(page, 1);
944 end_page_writeback(page);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100945 }
Dave Chinnere10de372016-02-15 17:23:12 +1100946
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100947 mapping_set_error(page->mapping, error);
948 return error;
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000952 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000954 * For delalloc space on the page we need to allocate space and flush it.
955 * For unwritten space on the page we need to start the conversion to
956 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000957 * For any other dirty buffer heads on the page we should flush them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100960xfs_do_writepage(
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000961 struct page *page,
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100962 struct writeback_control *wbc,
963 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100965 struct xfs_writepage_ctx *wpc = data;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000966 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 loff_t offset;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700968 uint64_t end_offset;
Dave Chinnerad689722016-02-15 17:21:31 +1100969 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Lukas Czerner34097df2013-05-21 23:58:01 -0400971 trace_xfs_writepage(inode, page, 0, 0);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000972
Christoph Hellwig20cb52e2010-06-24 09:46:01 +1000973 ASSERT(page_has_buffers(page));
974
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000975 /*
976 * Refuse to write the page out if we are called from reclaim context.
977 *
Christoph Hellwigd4f7a5c2010-06-28 10:34:44 -0400978 * This avoids stack overflows when called from deeply used stacks in
979 * random callers for direct reclaim or memcg reclaim. We explicitly
980 * allow reclaim from kswapd as the stack usage there is relatively low.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000981 *
Mel Gorman94054fa2011-10-31 17:07:45 -0700982 * This should never happen except in the case of a VM regression so
983 * warn about it.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000984 */
Mel Gorman94054fa2011-10-31 17:07:45 -0700985 if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
986 PF_MEMALLOC))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000987 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000988
989 /*
Christoph Hellwig680a6472011-07-08 14:34:05 +0200990 * Given that we do not allow direct reclaim to call us, we should
991 * never be called while in a filesystem transaction.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000992 */
Michal Hocko90707332017-05-03 14:53:12 -0700993 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC_NOFS))
Christoph Hellwigb5420f22010-08-24 11:47:51 +1000994 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +1000995
Jie Liu8695d272014-05-20 08:24:26 +1000996 /*
Dave Chinnerad689722016-02-15 17:21:31 +1100997 * Is this page beyond the end of the file?
998 *
Jie Liu8695d272014-05-20 08:24:26 +1000999 * The page index is less than the end_index, adjust the end_offset
1000 * to the highest offset that this page should represent.
1001 * -----------------------------------------------------
1002 * | file mapping | <EOF> |
1003 * -----------------------------------------------------
1004 * | Page ... | Page N-2 | Page N-1 | Page N | |
1005 * ^--------------------------------^----------|--------
1006 * | desired writeback range | see else |
1007 * ---------------------------------^------------------|
1008 */
Dave Chinnerad689722016-02-15 17:21:31 +11001009 offset = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001010 end_index = offset >> PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001011 if (page->index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001012 end_offset = (xfs_off_t)(page->index + 1) << PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001013 else {
1014 /*
1015 * Check whether the page to write out is beyond or straddles
1016 * i_size or not.
1017 * -------------------------------------------------------
1018 * | file mapping | <EOF> |
1019 * -------------------------------------------------------
1020 * | Page ... | Page N-2 | Page N-1 | Page N | Beyond |
1021 * ^--------------------------------^-----------|---------
1022 * | | Straddles |
1023 * ---------------------------------^-----------|--------|
1024 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001025 unsigned offset_into_page = offset & (PAGE_SIZE - 1);
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001026
1027 /*
Jan Karaff9a28f2013-03-14 14:30:54 +01001028 * Skip the page if it is fully outside i_size, e.g. due to a
1029 * truncate operation that is in progress. We must redirty the
1030 * page so that reclaim stops reclaiming it. Otherwise
1031 * xfs_vm_releasepage() is called on it and gets confused.
Jie Liu8695d272014-05-20 08:24:26 +10001032 *
1033 * Note that the end_index is unsigned long, it would overflow
1034 * if the given offset is greater than 16TB on 32-bit system
1035 * and if we do check the page is fully outside i_size or not
1036 * via "if (page->index >= end_index + 1)" as "end_index + 1"
1037 * will be evaluated to 0. Hence this page will be redirtied
1038 * and be written out repeatedly which would result in an
1039 * infinite loop, the user program that perform this operation
1040 * will hang. Instead, we can verify this situation by checking
1041 * if the page to write is totally beyond the i_size or if it's
1042 * offset is just equal to the EOF.
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001043 */
Jie Liu8695d272014-05-20 08:24:26 +10001044 if (page->index > end_index ||
1045 (page->index == end_index && offset_into_page == 0))
Jan Karaff9a28f2013-03-14 14:30:54 +01001046 goto redirty;
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001047
1048 /*
1049 * The page straddles i_size. It must be zeroed out on each
1050 * and every writepage invocation because it may be mmapped.
1051 * "A file is mapped in multiples of the page size. For a file
Jie Liu8695d272014-05-20 08:24:26 +10001052 * that is not a multiple of the page size, the remaining
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001053 * memory is zeroed when mapped, and writes to that region are
1054 * not written out to the file."
1055 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001056 zero_user_segment(page, offset_into_page, PAGE_SIZE);
Jie Liu8695d272014-05-20 08:24:26 +10001057
1058 /* Adjust the end_offset to the end of file */
1059 end_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -08001062 return xfs_writepage_map(wpc, wbc, inode, page, end_offset);
Nathan Scottf51623b2006-03-14 13:26:27 +11001063
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001064redirty:
Nathan Scottf51623b2006-03-14 13:26:27 +11001065 redirty_page_for_writepage(wbc, page);
1066 unlock_page(page);
1067 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001068}
1069
Nathan Scott7d4fb402006-06-09 15:27:16 +10001070STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001071xfs_vm_writepage(
1072 struct page *page,
1073 struct writeback_control *wbc)
1074{
1075 struct xfs_writepage_ctx wpc = {
1076 .io_type = XFS_IO_INVALID,
1077 };
1078 int ret;
1079
1080 ret = xfs_do_writepage(page, wbc, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001081 if (wpc.ioend)
1082 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1083 return ret;
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001084}
1085
1086STATIC int
Nathan Scott7d4fb402006-06-09 15:27:16 +10001087xfs_vm_writepages(
1088 struct address_space *mapping,
1089 struct writeback_control *wbc)
1090{
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001091 struct xfs_writepage_ctx wpc = {
1092 .io_type = XFS_IO_INVALID,
1093 };
1094 int ret;
1095
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001096 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001097 ret = write_cache_pages(mapping, wbc, xfs_do_writepage, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001098 if (wpc.ioend)
1099 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1100 return ret;
Nathan Scott7d4fb402006-06-09 15:27:16 +10001101}
1102
Dan Williams6e2608d2018-03-07 15:26:44 -08001103STATIC int
1104xfs_dax_writepages(
1105 struct address_space *mapping,
1106 struct writeback_control *wbc)
1107{
1108 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
1109 return dax_writeback_mapping_range(mapping,
1110 xfs_find_bdev_for_inode(mapping->host), wbc);
1111}
1112
Nathan Scottf51623b2006-03-14 13:26:27 +11001113/*
1114 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001115 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001116 * have buffer heads in this call.
1117 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001118 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001119 */
1120STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001121xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001122 struct page *page,
1123 gfp_t gfp_mask)
1124{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001125 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001126
Lukas Czerner34097df2013-05-21 23:58:01 -04001127 trace_xfs_releasepage(page->mapping->host, page, 0, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001128
Brian Foster99579cc2016-07-22 09:50:38 +10001129 /*
1130 * mm accommodates an old ext3 case where clean pages might not have had
1131 * the dirty bit cleared. Thus, it can send actual dirty pages to
1132 * ->releasepage() via shrink_active_list(). Conversely,
Dave Chinner793d7db2017-10-13 09:47:45 -07001133 * block_invalidatepage() can send pages that are still marked dirty but
1134 * otherwise have invalidated buffers.
Brian Foster99579cc2016-07-22 09:50:38 +10001135 *
Jan Kara0a417b82017-01-11 10:20:04 -08001136 * We want to release the latter to avoid unnecessary buildup of the
Dave Chinner793d7db2017-10-13 09:47:45 -07001137 * LRU, so xfs_vm_invalidatepage() clears the page dirty flag on pages
1138 * that are entirely invalidated and need to be released. Hence the
1139 * only time we should get dirty pages here is through
1140 * shrink_active_list() and so we can simply skip those now.
1141 *
1142 * warn if we've left any lingering delalloc/unwritten buffers on clean
1143 * or invalidated pages we are about to release.
Brian Foster99579cc2016-07-22 09:50:38 +10001144 */
Dave Chinner793d7db2017-10-13 09:47:45 -07001145 if (PageDirty(page))
1146 return 0;
1147
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001148 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001149
Dave Chinner793d7db2017-10-13 09:47:45 -07001150 if (WARN_ON_ONCE(delalloc))
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001151 return 0;
Dave Chinner793d7db2017-10-13 09:47:45 -07001152 if (WARN_ON_ONCE(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001153 return 0;
1154
Nathan Scottf51623b2006-03-14 13:26:27 +11001155 return try_to_free_buffers(page);
1156}
1157
Dave Chinnera7193702015-04-16 21:57:48 +10001158/*
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001159 * If this is O_DIRECT or the mpage code calling tell them how large the mapping
1160 * is, so that we can avoid repeated get_blocks calls.
1161 *
1162 * If the mapping spans EOF, then we have to break the mapping up as the mapping
1163 * for blocks beyond EOF must be marked new so that sub block regions can be
1164 * correctly zeroed. We can't do this for mappings within EOF unless the mapping
1165 * was just allocated or is unwritten, otherwise the callers would overwrite
1166 * existing data with zeros. Hence we have to split the mapping into a range up
1167 * to and including EOF, and a second mapping for beyond EOF.
1168 */
1169static void
1170xfs_map_trim_size(
1171 struct inode *inode,
1172 sector_t iblock,
1173 struct buffer_head *bh_result,
1174 struct xfs_bmbt_irec *imap,
1175 xfs_off_t offset,
1176 ssize_t size)
1177{
1178 xfs_off_t mapping_size;
1179
1180 mapping_size = imap->br_startoff + imap->br_blockcount - iblock;
1181 mapping_size <<= inode->i_blkbits;
1182
1183 ASSERT(mapping_size > 0);
1184 if (mapping_size > size)
1185 mapping_size = size;
1186 if (offset < i_size_read(inode) &&
Darrick J. Wong22a6c832017-11-27 09:50:17 -08001187 (xfs_ufsize_t)offset + mapping_size >= i_size_read(inode)) {
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001188 /* limit mapping to block that spans EOF */
1189 mapping_size = roundup_64(i_size_read(inode) - offset,
Fabian Frederick93407472017-02-27 14:28:32 -08001190 i_blocksize(inode));
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001191 }
1192 if (mapping_size > LONG_MAX)
1193 mapping_size = LONG_MAX;
1194
1195 bh_result->b_size = mapping_size;
1196}
1197
Darrick J. Wong0613f162016-10-03 09:11:37 -07001198static int
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001199xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 struct inode *inode,
1201 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct buffer_head *bh_result,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001203 int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Christoph Hellwiga206c812010-12-10 08:42:20 +00001205 struct xfs_inode *ip = XFS_I(inode);
1206 struct xfs_mount *mp = ip->i_mount;
1207 xfs_fileoff_t offset_fsb, end_fsb;
1208 int error = 0;
1209 int lockmode = 0;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001210 struct xfs_bmbt_irec imap;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001211 int nimaps = 1;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001212 xfs_off_t offset;
1213 ssize_t size;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001214
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001215 BUG_ON(create);
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001216
Christoph Hellwiga206c812010-12-10 08:42:20 +00001217 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001218 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001220 offset = (xfs_off_t)iblock << inode->i_blkbits;
Fabian Frederick93407472017-02-27 14:28:32 -08001221 ASSERT(bh_result->b_size >= i_blocksize(inode));
Nathan Scottc2536662006-03-29 10:44:40 +10001222 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001223
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001224 if (offset >= i_size_read(inode))
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001225 return 0;
1226
Dave Chinner507630b2012-03-27 10:34:50 -04001227 /*
1228 * Direct I/O is usually done on preallocated files, so try getting
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001229 * a block mapping without an exclusive lock first.
Dave Chinner507630b2012-03-27 10:34:50 -04001230 */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001231 lockmode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001232
Dave Chinnerd2c28192012-06-08 15:44:53 +10001233 ASSERT(offset <= mp->m_super->s_maxbytes);
Darrick J. Wongb4d8ad7f2017-12-22 13:14:34 -08001234 if (offset > mp->m_super->s_maxbytes - size)
Dave Chinnerd2c28192012-06-08 15:44:53 +10001235 size = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001236 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1237 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1238
Christoph Hellwig7d9df3c2018-03-13 23:15:31 -07001239 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
1240 &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (error)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001242 goto out_unlock;
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001243 if (!nimaps) {
Christoph Hellwiga206c812010-12-10 08:42:20 +00001244 trace_xfs_get_blocks_notfound(ip, offset, size);
1245 goto out_unlock;
1246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001248 trace_xfs_get_blocks_found(ip, offset, size,
1249 imap.br_state == XFS_EXT_UNWRITTEN ?
1250 XFS_IO_UNWRITTEN : XFS_IO_OVERWRITE, &imap);
1251 xfs_iunlock(ip, lockmode);
1252
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001253 /* trim mapping down to size requested */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001254 xfs_map_trim_size(inode, iblock, bh_result, &imap, offset, size);
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001255
Dave Chinnera7193702015-04-16 21:57:48 +10001256 /*
1257 * For unwritten extents do not report a disk address in the buffered
1258 * read case (treat as if we're reading into a hole).
1259 */
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001260 if (xfs_bmap_is_real_extent(&imap))
Dave Chinnera7193702015-04-16 21:57:48 +10001261 xfs_map_buffer(inode, bh_result, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Nathan Scottc2536662006-03-29 10:44:40 +10001263 /*
1264 * If this is a realtime file, data may be on a different device.
1265 * to that pointed to from the buffer_head b_bdev currently.
1266 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001267 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001269
1270out_unlock:
1271 xfs_iunlock(ip, lockmode);
Dave Chinner24513372014-06-25 14:58:08 +10001272 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001276xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct address_space *mapping,
1278 sector_t block)
1279{
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001280 struct xfs_inode *ip = XFS_I(mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001282 trace_xfs_vm_bmap(ip);
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001283
1284 /*
1285 * The swap code (ab-)uses ->bmap to get a block mapping and then
Ingo Molnar793057e2018-02-28 09:39:48 +01001286 * bypasses the file system for actual I/O. We really can't allow
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001287 * that on reflinks inodes, so we have to skip out here. And yes,
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001288 * 0 is the magic code for a bmap error.
1289 *
1290 * Since we don't pass back blockdev info, we can't return bmap
1291 * information for rt files either.
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001292 */
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001293 if (xfs_is_reflink_inode(ip) || XFS_IS_REALTIME_INODE(ip))
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001294 return 0;
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001295 return iomap_bmap(mapping, block, &xfs_iomap_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001299xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 struct file *unused,
1301 struct page *page)
1302{
Dave Chinner121e2132016-01-08 11:28:35 +11001303 trace_xfs_vm_readpage(page->mapping->host, 1);
Christoph Hellwig8b2e77c2018-07-11 22:25:56 -07001304 if (i_blocksize(page->mapping->host) == PAGE_SIZE)
1305 return iomap_readpage(page, &xfs_iomap_ops);
Nathan Scottc2536662006-03-29 10:44:40 +10001306 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001310xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct file *unused,
1312 struct address_space *mapping,
1313 struct list_head *pages,
1314 unsigned nr_pages)
1315{
Dave Chinner121e2132016-01-08 11:28:35 +11001316 trace_xfs_vm_readpages(mapping->host, nr_pages);
Christoph Hellwig8b2e77c2018-07-11 22:25:56 -07001317 if (i_blocksize(mapping->host) == PAGE_SIZE)
1318 return iomap_readpages(mapping, pages, nr_pages, &xfs_iomap_ops);
Nathan Scottc2536662006-03-29 10:44:40 +10001319 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Dave Chinner22e757a2014-09-02 12:12:51 +10001322/*
1323 * This is basically a copy of __set_page_dirty_buffers() with one
1324 * small tweak: buffers beyond EOF do not get marked dirty. If we mark them
1325 * dirty, we'll never be able to clean them because we don't write buffers
1326 * beyond EOF, and that means we can't invalidate pages that span EOF
1327 * that have been marked dirty. Further, the dirty state can leak into
1328 * the file interior if the file is extended, resulting in all sorts of
1329 * bad things happening as the state does not match the underlying data.
1330 *
1331 * XXX: this really indicates that bufferheads in XFS need to die. Warts like
1332 * this only exist because of bufferheads and how the generic code manages them.
1333 */
1334STATIC int
1335xfs_vm_set_page_dirty(
1336 struct page *page)
1337{
1338 struct address_space *mapping = page->mapping;
1339 struct inode *inode = mapping->host;
1340 loff_t end_offset;
1341 loff_t offset;
1342 int newly_dirty;
1343
1344 if (unlikely(!mapping))
1345 return !TestSetPageDirty(page);
1346
1347 end_offset = i_size_read(inode);
1348 offset = page_offset(page);
1349
1350 spin_lock(&mapping->private_lock);
1351 if (page_has_buffers(page)) {
1352 struct buffer_head *head = page_buffers(page);
1353 struct buffer_head *bh = head;
1354
1355 do {
1356 if (offset < end_offset)
1357 set_buffer_dirty(bh);
1358 bh = bh->b_this_page;
Fabian Frederick93407472017-02-27 14:28:32 -08001359 offset += i_blocksize(inode);
Dave Chinner22e757a2014-09-02 12:12:51 +10001360 } while (bh != head);
1361 }
Greg Thelenc4843a72015-05-22 17:13:16 -04001362 /*
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07001363 * Lock out page->mem_cgroup migration to keep PageDirty
1364 * synchronized with per-memcg dirty page counters.
Greg Thelenc4843a72015-05-22 17:13:16 -04001365 */
Johannes Weiner62cccb82016-03-15 14:57:22 -07001366 lock_page_memcg(page);
Dave Chinner22e757a2014-09-02 12:12:51 +10001367 newly_dirty = !TestSetPageDirty(page);
1368 spin_unlock(&mapping->private_lock);
1369
Matthew Wilcoxf82b3762018-04-10 16:36:44 -07001370 if (newly_dirty)
1371 __set_page_dirty(page, mapping, 1);
Johannes Weiner62cccb82016-03-15 14:57:22 -07001372 unlock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04001373 if (newly_dirty)
1374 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Dave Chinner22e757a2014-09-02 12:12:51 +10001375 return newly_dirty;
1376}
1377
Darrick J. Wong67482122018-05-10 08:38:15 -07001378static int
1379xfs_iomap_swapfile_activate(
1380 struct swap_info_struct *sis,
1381 struct file *swap_file,
1382 sector_t *span)
1383{
1384 sis->bdev = xfs_find_bdev_for_inode(file_inode(swap_file));
1385 return iomap_swapfile_activate(sis, swap_file, span, &xfs_iomap_ops);
1386}
1387
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001388const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001389 .readpage = xfs_vm_readpage,
1390 .readpages = xfs_vm_readpages,
1391 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001392 .writepages = xfs_vm_writepages,
Dave Chinner22e757a2014-09-02 12:12:51 +10001393 .set_page_dirty = xfs_vm_set_page_dirty,
Nathan Scott238f4c52006-03-17 17:26:25 +11001394 .releasepage = xfs_vm_releasepage,
1395 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001396 .bmap = xfs_vm_bmap,
Dan Williams6e2608d2018-03-07 15:26:44 -08001397 .direct_IO = noop_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001398 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001399 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001400 .error_remove_page = generic_error_remove_page,
Darrick J. Wong67482122018-05-10 08:38:15 -07001401 .swap_activate = xfs_iomap_swapfile_activate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402};
Dan Williams6e2608d2018-03-07 15:26:44 -08001403
1404const struct address_space_operations xfs_dax_aops = {
1405 .writepages = xfs_dax_writepages,
1406 .direct_IO = noop_direct_IO,
1407 .set_page_dirty = noop_set_page_dirty,
1408 .invalidatepage = noop_invalidatepage,
Darrick J. Wong67482122018-05-10 08:38:15 -07001409 .swap_activate = xfs_iomap_swapfile_activate,
Dan Williams6e2608d2018-03-07 15:26:44 -08001410};