blob: 767d53222f3153ff39f24b3f50d5b53a062f2f65 [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(
366 struct inode *inode,
367 loff_t offset,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000368 struct xfs_bmbt_irec *imap,
Dave Chinner988ef922016-02-15 17:20:50 +1100369 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Christoph Hellwiga206c812010-12-10 08:42:20 +0000371 struct xfs_inode *ip = XFS_I(inode);
372 struct xfs_mount *mp = ip->i_mount;
Fabian Frederick93407472017-02-27 14:28:32 -0800373 ssize_t count = i_blocksize(inode);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000374 xfs_fileoff_t offset_fsb, end_fsb;
375 int error = 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000376 int bmapi_flags = XFS_BMAPI_ENTIRE;
377 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
Darrick J. Wong70c57dcd2018-01-24 20:48:53 -0800382 /*
383 * Truncate can race with writeback since writeback doesn't take the
384 * iolock and truncate decreases the file size before it starts
385 * truncating the pages between new_size and old_size. Therefore, we
386 * can end up in the situation where writeback gets a CoW fork mapping
387 * but the truncate makes the mapping invalid and we end up in here
388 * trying to get a new mapping. Bail out here so that we simply never
389 * get a valid mapping and so we drop the write altogether. The page
390 * truncation will kill the contents anyway.
391 */
392 if (type == XFS_IO_COW && offset > i_size_read(inode))
393 return 0;
394
Darrick J. Wongef473662016-10-03 09:11:34 -0700395 ASSERT(type != XFS_IO_COW);
Alain Renaud0d882a32012-05-22 15:56:21 -0500396 if (type == XFS_IO_UNWRITTEN)
Christoph Hellwiga206c812010-12-10 08:42:20 +0000397 bmapi_flags |= XFS_BMAPI_IGSTATE;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000398
Dave Chinner988ef922016-02-15 17:20:50 +1100399 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000400 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
401 (ip->i_df.if_flags & XFS_IFEXTENTS));
Dave Chinnerd2c28192012-06-08 15:44:53 +1000402 ASSERT(offset <= mp->m_super->s_maxbytes);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000403
Darrick J. Wongb4d8ad7f2017-12-22 13:14:34 -0800404 if (offset > mp->m_super->s_maxbytes - count)
Dave Chinnerd2c28192012-06-08 15:44:53 +1000405 count = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000406 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
407 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000408 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb,
409 imap, &nimaps, bmapi_flags);
Darrick J. Wongef473662016-10-03 09:11:34 -0700410 /*
411 * Truncate an overwrite extent if there's a pending CoW
412 * reservation before the end of this extent. This forces us
413 * to come back to writepage to take care of the CoW.
414 */
415 if (nimaps && type == XFS_IO_OVERWRITE)
416 xfs_reflink_trim_irec_to_next_cow(ip, offset_fsb, imap);
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000417 xfs_iunlock(ip, XFS_ILOCK_SHARED);
418
Christoph Hellwiga206c812010-12-10 08:42:20 +0000419 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000420 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000421
Alain Renaud0d882a32012-05-22 15:56:21 -0500422 if (type == XFS_IO_DELALLOC &&
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000423 (!nimaps || isnullstartblock(imap->br_startblock))) {
Darrick J. Wong60b49842016-10-03 09:11:34 -0700424 error = xfs_iomap_write_allocate(ip, XFS_DATA_FORK, offset,
425 imap);
Christoph Hellwiga206c812010-12-10 08:42:20 +0000426 if (!error)
Darrick J. Wongef473662016-10-03 09:11:34 -0700427 trace_xfs_map_blocks_alloc(ip, offset, count, type, imap);
Dave Chinner24513372014-06-25 14:58:08 +1000428 return error;
Christoph Hellwiga206c812010-12-10 08:42:20 +0000429 }
430
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000431#ifdef DEBUG
Alain Renaud0d882a32012-05-22 15:56:21 -0500432 if (type == XFS_IO_UNWRITTEN) {
Christoph Hellwig8ff29572010-12-10 08:42:21 +0000433 ASSERT(nimaps);
434 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
435 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
436 }
437#endif
438 if (nimaps)
439 trace_xfs_map_blocks_found(ip, offset, count, type, imap);
440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100443STATIC bool
Christoph Hellwig558e6892010-04-28 12:28:58 +0000444xfs_imap_valid(
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000445 struct inode *inode,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000446 struct xfs_bmbt_irec *imap,
Christoph Hellwig558e6892010-04-28 12:28:58 +0000447 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Christoph Hellwig558e6892010-04-28 12:28:58 +0000449 offset >>= inode->i_blkbits;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000450
Brian Foster40214d12017-10-13 09:47:46 -0700451 /*
452 * We have to make sure the cached mapping is within EOF to protect
453 * against eofblocks trimming on file release leaving us with a stale
454 * mapping. Otherwise, a page for a subsequent file extending buffered
455 * write could get picked up by this writeback cycle and written to the
456 * wrong blocks.
457 *
458 * Note that what we really want here is a generic mapping invalidation
459 * mechanism to protect us from arbitrary extent modifying contexts, not
460 * just eofblocks.
461 */
462 xfs_trim_extent_eof(imap, XFS_I(inode));
463
Christoph Hellwig558e6892010-04-28 12:28:58 +0000464 return offset >= imap->br_startoff &&
465 offset < imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100468STATIC void
469xfs_start_buffer_writeback(
470 struct buffer_head *bh)
471{
472 ASSERT(buffer_mapped(bh));
473 ASSERT(buffer_locked(bh));
474 ASSERT(!buffer_delay(bh));
475 ASSERT(!buffer_unwritten(bh));
476
Christoph Hellwig8353a812017-09-02 09:53:41 -0700477 bh->b_end_io = NULL;
478 set_buffer_async_write(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100479 set_buffer_uptodate(bh);
480 clear_buffer_dirty(bh);
481}
482
483STATIC void
484xfs_start_page_writeback(
485 struct page *page,
Dave Chinnere10de372016-02-15 17:23:12 +1100486 int clear_dirty)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100487{
488 ASSERT(PageLocked(page));
489 ASSERT(!PageWriteback(page));
Dave Chinner0d085a52014-09-23 15:36:27 +1000490
491 /*
492 * if the page was not fully cleaned, we need to ensure that the higher
493 * layers come back to it correctly. That means we need to keep the page
494 * dirty, and for WB_SYNC_ALL writeback we need to ensure the
495 * PAGECACHE_TAG_TOWRITE index mark is not removed so another attempt to
496 * write this page in this writeback sweep will be made.
497 */
498 if (clear_dirty) {
David Chinner92132022006-12-21 10:24:01 +1100499 clear_page_dirty_for_io(page);
Dave Chinner0d085a52014-09-23 15:36:27 +1000500 set_page_writeback(page);
501 } else
502 set_page_writeback_keepwrite(page);
503
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100504 unlock_page(page);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100505}
506
Zhi Yong Wuc7c1a7d2013-08-07 10:11:09 +0000507static inline int xfs_bio_add_buffer(struct bio *bio, struct buffer_head *bh)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100508{
509 return bio_add_page(bio, bh->b_page, bh->b_size, bh_offset(bh));
510}
511
512/*
Dave Chinnerbb187822016-04-06 08:11:25 +1000513 * Submit the bio for an ioend. We are passed an ioend with a bio attached to
514 * it, and we submit that bio. The ioend may be used for multiple bio
515 * submissions, so we only want to allocate an append transaction for the ioend
516 * once. In the case of multiple bio submission, each bio will take an IO
517 * reference to the ioend to ensure that the ioend completion is only done once
518 * all bios have been submitted and the ioend is really done.
Dave Chinner7bf7f352012-11-12 22:09:45 +1100519 *
520 * If @fail is non-zero, it means that we have a situation where some part of
521 * the submission process has failed after we have marked paged for writeback
Dave Chinnerbb187822016-04-06 08:11:25 +1000522 * and unlocked them. In this situation, we need to fail the bio and ioend
523 * rather than submit it to IO. This typically only happens on a filesystem
524 * shutdown.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100525 */
Dave Chinnere10de372016-02-15 17:23:12 +1100526STATIC int
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100527xfs_submit_ioend(
Christoph Hellwig06342cf2009-10-30 09:09:15 +0000528 struct writeback_control *wbc,
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000529 struct xfs_ioend *ioend,
Dave Chinnere10de372016-02-15 17:23:12 +1100530 int status)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100531{
Darrick J. Wong5eda4302017-02-02 15:14:02 -0800532 /* Convert CoW extents to regular */
533 if (!status && ioend->io_type == XFS_IO_COW) {
534 status = xfs_reflink_convert_cow(XFS_I(ioend->io_inode),
535 ioend->io_offset, ioend->io_size);
536 }
537
Dave Chinnere10de372016-02-15 17:23:12 +1100538 /* Reserve log space if we might write beyond the on-disk inode size. */
539 if (!status &&
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000540 ioend->io_type != XFS_IO_UNWRITTEN &&
Dave Chinnerbb187822016-04-06 08:11:25 +1000541 xfs_ioend_is_append(ioend) &&
542 !ioend->io_append_trans)
Dave Chinnere10de372016-02-15 17:23:12 +1100543 status = xfs_setfilesize_trans_alloc(ioend);
Dave Chinnerbb187822016-04-06 08:11:25 +1000544
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000545 ioend->io_bio->bi_private = ioend;
546 ioend->io_bio->bi_end_io = xfs_end_bio;
Jens Axboe76372412016-11-01 10:00:38 -0600547 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600548
Dave Chinnere10de372016-02-15 17:23:12 +1100549 /*
550 * If we are failing the IO now, just mark the ioend with an
551 * error and finish it. This will run IO completion immediately
552 * as there is only one reference to the ioend at this point in
553 * time.
554 */
555 if (status) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200556 ioend->io_bio->bi_status = errno_to_blk_status(status);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000557 bio_endio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100558 return status;
559 }
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100560
Jens Axboe31d7d582017-06-27 09:34:01 -0600561 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500562 submit_bio(ioend->io_bio);
Dave Chinnere10de372016-02-15 17:23:12 +1100563 return 0;
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100564}
565
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000566static void
567xfs_init_bio_from_bh(
568 struct bio *bio,
569 struct buffer_head *bh)
570{
571 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200572 bio_set_dev(bio, bh->b_bdev);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000573}
574
575static struct xfs_ioend *
576xfs_alloc_ioend(
577 struct inode *inode,
578 unsigned int type,
579 xfs_off_t offset,
580 struct buffer_head *bh)
581{
582 struct xfs_ioend *ioend;
583 struct bio *bio;
584
585 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, xfs_ioend_bioset);
586 xfs_init_bio_from_bh(bio, bh);
587
588 ioend = container_of(bio, struct xfs_ioend, io_inline_bio);
589 INIT_LIST_HEAD(&ioend->io_list);
590 ioend->io_type = type;
591 ioend->io_inode = inode;
592 ioend->io_size = 0;
593 ioend->io_offset = offset;
594 INIT_WORK(&ioend->io_work, xfs_end_io);
595 ioend->io_append_trans = NULL;
596 ioend->io_bio = bio;
597 return ioend;
598}
599
600/*
601 * Allocate a new bio, and chain the old bio to the new one.
602 *
603 * Note that we have to do perform the chaining in this unintuitive order
604 * so that the bi_private linkage is set up in the right direction for the
605 * traversal in xfs_destroy_ioend().
606 */
607static void
608xfs_chain_bio(
609 struct xfs_ioend *ioend,
610 struct writeback_control *wbc,
611 struct buffer_head *bh)
612{
613 struct bio *new;
614
615 new = bio_alloc(GFP_NOFS, BIO_MAX_PAGES);
616 xfs_init_bio_from_bh(new, bh);
617
618 bio_chain(ioend->io_bio, new);
619 bio_get(ioend->io_bio); /* for xfs_destroy_ioend */
Jens Axboe76372412016-11-01 10:00:38 -0600620 ioend->io_bio->bi_opf = REQ_OP_WRITE | wbc_to_write_flags(wbc);
Jens Axboe31d7d582017-06-27 09:34:01 -0600621 ioend->io_bio->bi_write_hint = ioend->io_inode->i_write_hint;
Mike Christie4e49ea42016-06-05 14:31:41 -0500622 submit_bio(ioend->io_bio);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000623 ioend->io_bio = new;
624}
625
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100626/*
627 * Test to see if we've been building up a completion structure for
628 * earlier buffers -- if so, we try to append to this ioend if we
629 * can, otherwise we finish off any current ioend and start another.
Dave Chinnere10de372016-02-15 17:23:12 +1100630 * Return the ioend we finished off so that the caller can submit it
631 * once it has finished processing the dirty page.
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100632 */
633STATIC void
634xfs_add_to_ioend(
635 struct inode *inode,
636 struct buffer_head *bh,
Christoph Hellwig7336cea2006-01-11 20:49:16 +1100637 xfs_off_t offset,
Dave Chinnere10de372016-02-15 17:23:12 +1100638 struct xfs_writepage_ctx *wpc,
Dave Chinnerbb187822016-04-06 08:11:25 +1000639 struct writeback_control *wbc,
Dave Chinnere10de372016-02-15 17:23:12 +1100640 struct list_head *iolist)
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100641{
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100642 if (!wpc->ioend || wpc->io_type != wpc->ioend->io_type ||
Darrick J. Wong0df61da2016-03-07 09:32:14 +1100643 bh->b_blocknr != wpc->last_block + 1 ||
644 offset != wpc->ioend->io_offset + wpc->ioend->io_size) {
Dave Chinnere10de372016-02-15 17:23:12 +1100645 if (wpc->ioend)
646 list_add(&wpc->ioend->io_list, iolist);
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000647 wpc->ioend = xfs_alloc_ioend(inode, wpc->io_type, offset, bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100648 }
649
Christoph Hellwig0e51a8e2016-04-06 08:34:30 +1000650 /*
651 * If the buffer doesn't fit into the bio we need to allocate a new
652 * one. This shouldn't happen more than once for a given buffer.
653 */
654 while (xfs_bio_add_buffer(wpc->ioend->io_bio, bh) != bh->b_size)
655 xfs_chain_bio(wpc->ioend, wbc, bh);
Dave Chinnerbb187822016-04-06 08:11:25 +1000656
Dave Chinnerfbcc0252016-02-15 17:21:19 +1100657 wpc->ioend->io_size += bh->b_size;
658 wpc->last_block = bh->b_blocknr;
Dave Chinnere10de372016-02-15 17:23:12 +1100659 xfs_start_buffer_writeback(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662STATIC void
Nathan Scott87cbc492006-03-14 13:26:43 +1100663xfs_map_buffer(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000664 struct inode *inode,
Nathan Scott87cbc492006-03-14 13:26:43 +1100665 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000666 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000667 xfs_off_t offset)
Nathan Scott87cbc492006-03-14 13:26:43 +1100668{
669 sector_t bn;
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000670 struct xfs_mount *m = XFS_I(inode)->i_mount;
Christoph Hellwig207d0412010-04-28 12:28:56 +0000671 xfs_off_t iomap_offset = XFS_FSB_TO_B(m, imap->br_startoff);
672 xfs_daddr_t iomap_bn = xfs_fsb_to_db(XFS_I(inode), imap->br_startblock);
Nathan Scott87cbc492006-03-14 13:26:43 +1100673
Christoph Hellwig207d0412010-04-28 12:28:56 +0000674 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
675 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Nathan Scott87cbc492006-03-14 13:26:43 +1100676
Christoph Hellwige5131822010-04-28 12:28:55 +0000677 bn = (iomap_bn >> (inode->i_blkbits - BBSHIFT)) +
Christoph Hellwig8699bb02010-04-28 12:28:54 +0000678 ((offset - iomap_offset) >> inode->i_blkbits);
Nathan Scott87cbc492006-03-14 13:26:43 +1100679
Christoph Hellwig046f1682010-04-28 12:28:52 +0000680 ASSERT(bn || XFS_IS_REALTIME_INODE(XFS_I(inode)));
Nathan Scott87cbc492006-03-14 13:26:43 +1100681
682 bh->b_blocknr = bn;
683 set_buffer_mapped(bh);
684}
685
686STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687xfs_map_at_offset(
Christoph Hellwig046f1682010-04-28 12:28:52 +0000688 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct buffer_head *bh,
Christoph Hellwig207d0412010-04-28 12:28:56 +0000690 struct xfs_bmbt_irec *imap,
Christoph Hellwig046f1682010-04-28 12:28:52 +0000691 xfs_off_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Christoph Hellwig207d0412010-04-28 12:28:56 +0000693 ASSERT(imap->br_startblock != HOLESTARTBLOCK);
694 ASSERT(imap->br_startblock != DELAYSTARTBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Christoph Hellwig207d0412010-04-28 12:28:56 +0000696 xfs_map_buffer(inode, bh, imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 set_buffer_mapped(bh);
698 clear_buffer_delay(bh);
Christoph Hellwigf6d6d4f2006-01-11 15:40:13 +1100699 clear_buffer_unwritten(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702/*
Dave Chinnera49935f2014-03-07 16:19:14 +1100703 * Test if a given page contains at least one buffer of a given @type.
704 * If @check_all_buffers is true, then we walk all the buffers in the page to
705 * try to find one of the type passed in. If it is not set, then the caller only
706 * needs to check the first buffer on the page for a match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
Dave Chinnera49935f2014-03-07 16:19:14 +1100708STATIC bool
Dave Chinner6ffc4db2012-04-23 15:58:43 +1000709xfs_check_page_type(
Christoph Hellwig10ce4442006-01-11 20:48:14 +1100710 struct page *page,
Dave Chinnera49935f2014-03-07 16:19:14 +1100711 unsigned int type,
712 bool check_all_buffers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Dave Chinnera49935f2014-03-07 16:19:14 +1100714 struct buffer_head *bh;
715 struct buffer_head *head;
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (PageWriteback(page))
Dave Chinnera49935f2014-03-07 16:19:14 +1100718 return false;
719 if (!page->mapping)
720 return false;
721 if (!page_has_buffers(page))
722 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Dave Chinnera49935f2014-03-07 16:19:14 +1100724 bh = head = page_buffers(page);
725 do {
726 if (buffer_unwritten(bh)) {
727 if (type == XFS_IO_UNWRITTEN)
728 return true;
729 } else if (buffer_delay(bh)) {
Dan Carpenter805eeb82014-04-04 06:56:30 +1100730 if (type == XFS_IO_DELALLOC)
Dave Chinnera49935f2014-03-07 16:19:14 +1100731 return true;
732 } else if (buffer_dirty(bh) && buffer_mapped(bh)) {
Dan Carpenter805eeb82014-04-04 06:56:30 +1100733 if (type == XFS_IO_OVERWRITE)
Dave Chinnera49935f2014-03-07 16:19:14 +1100734 return true;
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Dave Chinnera49935f2014-03-07 16:19:14 +1100737 /* If we are only checking the first buffer, we are done now. */
738 if (!check_all_buffers)
739 break;
740 } while ((bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Dave Chinnera49935f2014-03-07 16:19:14 +1100742 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Dave Chinner3ed3a432010-03-05 02:00:42 +0000745STATIC void
746xfs_vm_invalidatepage(
747 struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -0400748 unsigned int offset,
749 unsigned int length)
Dave Chinner3ed3a432010-03-05 02:00:42 +0000750{
Lukas Czerner34097df2013-05-21 23:58:01 -0400751 trace_xfs_invalidatepage(page->mapping->host, page, offset,
752 length);
Dave Chinner793d7db2017-10-13 09:47:45 -0700753
754 /*
755 * If we are invalidating the entire page, clear the dirty state from it
756 * so that we can check for attempts to release dirty cached pages in
757 * xfs_vm_releasepage().
758 */
759 if (offset == 0 && length >= PAGE_SIZE)
760 cancel_dirty_page(page);
Lukas Czerner34097df2013-05-21 23:58:01 -0400761 block_invalidatepage(page, offset, length);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000762}
763
764/*
765 * If the page has delalloc buffers on it, we need to punch them out before we
766 * invalidate the page. If we don't, we leave a stale delalloc mapping on the
767 * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read
768 * is done on that same region - the delalloc extent is returned when none is
769 * supposed to be there.
770 *
771 * We prevent this by truncating away the delalloc regions on the page before
772 * invalidating it. Because they are delalloc, we can do this without needing a
773 * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this
774 * truncation without a transaction as there is no space left for block
775 * reservation (typically why we see a ENOSPC in writeback).
776 *
777 * This is not a performance critical path, so for now just do the punching a
778 * buffer head at a time.
779 */
780STATIC void
781xfs_aops_discard_page(
782 struct page *page)
783{
784 struct inode *inode = page->mapping->host;
785 struct xfs_inode *ip = XFS_I(inode);
786 struct buffer_head *bh, *head;
787 loff_t offset = page_offset(page);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000788
Dave Chinnera49935f2014-03-07 16:19:14 +1100789 if (!xfs_check_page_type(page, XFS_IO_DELALLOC, true))
Dave Chinner3ed3a432010-03-05 02:00:42 +0000790 goto out_invalidate;
791
Dave Chinnere8c37532010-03-15 02:36:35 +0000792 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
793 goto out_invalidate;
794
Dave Chinner4f107002011-03-07 10:00:35 +1100795 xfs_alert(ip->i_mount,
Darrick J. Wongc9690042018-01-09 12:02:55 -0800796 "page discard on page "PTR_FMT", inode 0x%llx, offset %llu.",
Dave Chinner3ed3a432010-03-05 02:00:42 +0000797 page, ip->i_ino, offset);
798
799 xfs_ilock(ip, XFS_ILOCK_EXCL);
800 bh = head = page_buffers(page);
801 do {
Dave Chinner3ed3a432010-03-05 02:00:42 +0000802 int error;
Dave Chinnerc726de42010-11-30 15:14:39 +1100803 xfs_fileoff_t start_fsb;
Dave Chinner3ed3a432010-03-05 02:00:42 +0000804
805 if (!buffer_delay(bh))
806 goto next_buffer;
807
Dave Chinnerc726de42010-11-30 15:14:39 +1100808 start_fsb = XFS_B_TO_FSBT(ip->i_mount, offset);
809 error = xfs_bmap_punch_delalloc_range(ip, start_fsb, 1);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000810 if (error) {
811 /* something screwed, just bail */
Dave Chinnere8c37532010-03-15 02:36:35 +0000812 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100813 xfs_alert(ip->i_mount,
Dave Chinner3ed3a432010-03-05 02:00:42 +0000814 "page discard unable to remove delalloc mapping.");
Dave Chinnere8c37532010-03-15 02:36:35 +0000815 }
Dave Chinner3ed3a432010-03-05 02:00:42 +0000816 break;
817 }
818next_buffer:
Fabian Frederick93407472017-02-27 14:28:32 -0800819 offset += i_blocksize(inode);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000820
821 } while ((bh = bh->b_this_page) != head);
822
823 xfs_iunlock(ip, XFS_ILOCK_EXCL);
824out_invalidate:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300825 xfs_vm_invalidatepage(page, 0, PAGE_SIZE);
Dave Chinner3ed3a432010-03-05 02:00:42 +0000826 return;
827}
828
Darrick J. Wongef473662016-10-03 09:11:34 -0700829static int
830xfs_map_cow(
831 struct xfs_writepage_ctx *wpc,
832 struct inode *inode,
833 loff_t offset,
834 unsigned int *new_type)
835{
836 struct xfs_inode *ip = XFS_I(inode);
837 struct xfs_bmbt_irec imap;
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100838 bool is_cow = false;
Darrick J. Wongef473662016-10-03 09:11:34 -0700839 int error;
840
841 /*
842 * If we already have a valid COW mapping keep using it.
843 */
844 if (wpc->io_type == XFS_IO_COW) {
845 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap, offset);
846 if (wpc->imap_valid) {
847 *new_type = XFS_IO_COW;
848 return 0;
849 }
850 }
851
852 /*
853 * Else we need to check if there is a COW mapping at this offset.
854 */
855 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100856 is_cow = xfs_reflink_find_cow_mapping(ip, offset, &imap);
Darrick J. Wongef473662016-10-03 09:11:34 -0700857 xfs_iunlock(ip, XFS_ILOCK_SHARED);
858
859 if (!is_cow)
860 return 0;
861
862 /*
863 * And if the COW mapping has a delayed extent here we need to
864 * allocate real space for it now.
865 */
Christoph Hellwig092d5d92016-11-24 11:39:49 +1100866 if (isnullstartblock(imap.br_startblock)) {
Darrick J. Wongef473662016-10-03 09:11:34 -0700867 error = xfs_iomap_write_allocate(ip, XFS_COW_FORK, offset,
868 &imap);
869 if (error)
870 return error;
871 }
872
873 wpc->io_type = *new_type = XFS_IO_COW;
874 wpc->imap_valid = true;
875 wpc->imap = imap;
876 return 0;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/*
Dave Chinnere10de372016-02-15 17:23:12 +1100880 * We implement an immediate ioend submission policy here to avoid needing to
881 * chain multiple ioends and hence nest mempool allocations which can violate
882 * forward progress guarantees we need to provide. The current ioend we are
883 * adding buffers to is cached on the writepage context, and if the new buffer
884 * does not append to the cached ioend it will create a new ioend and cache that
885 * instead.
886 *
887 * If a new ioend is created and cached, the old ioend is returned and queued
888 * locally for submission once the entire page is processed or an error has been
889 * detected. While ioends are submitted immediately after they are completed,
890 * batching optimisations are provided by higher level block plugging.
891 *
892 * At the end of a writeback pass, there will be a cached ioend remaining on the
893 * writepage context that the caller will need to submit.
894 */
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100895static int
896xfs_writepage_map(
897 struct xfs_writepage_ctx *wpc,
Dave Chinnere10de372016-02-15 17:23:12 +1100898 struct writeback_control *wbc,
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100899 struct inode *inode,
900 struct page *page,
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -0800901 uint64_t end_offset)
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100902{
Dave Chinnere10de372016-02-15 17:23:12 +1100903 LIST_HEAD(submit_list);
904 struct xfs_ioend *ioend, *next;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100905 struct buffer_head *bh, *head;
Fabian Frederick93407472017-02-27 14:28:32 -0800906 ssize_t len = i_blocksize(inode);
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -0800907 uint64_t offset;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100908 int error = 0;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100909 int count = 0;
Dave Chinnere10de372016-02-15 17:23:12 +1100910 int uptodate = 1;
Darrick J. Wongef473662016-10-03 09:11:34 -0700911 unsigned int new_type;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100912
913 bh = head = page_buffers(page);
914 offset = page_offset(page);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100915 do {
916 if (offset >= end_offset)
917 break;
918 if (!buffer_uptodate(bh))
919 uptodate = 0;
920
921 /*
922 * set_page_dirty dirties all buffers in a page, independent
923 * of their state. The dirty state however is entirely
924 * meaningless for holes (!mapped && uptodate), so skip
925 * buffers covering holes here.
926 */
927 if (!buffer_mapped(bh) && buffer_uptodate(bh)) {
928 wpc->imap_valid = false;
929 continue;
930 }
931
Darrick J. Wongef473662016-10-03 09:11:34 -0700932 if (buffer_unwritten(bh))
933 new_type = XFS_IO_UNWRITTEN;
934 else if (buffer_delay(bh))
935 new_type = XFS_IO_DELALLOC;
936 else if (buffer_uptodate(bh))
937 new_type = XFS_IO_OVERWRITE;
938 else {
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100939 if (PageUptodate(page))
940 ASSERT(buffer_mapped(bh));
941 /*
942 * This buffer is not uptodate and will not be
943 * written to disk. Ensure that we will put any
944 * subsequent writeable buffers into a new
945 * ioend.
946 */
947 wpc->imap_valid = false;
948 continue;
949 }
950
Darrick J. Wongef473662016-10-03 09:11:34 -0700951 if (xfs_is_reflink_inode(XFS_I(inode))) {
952 error = xfs_map_cow(wpc, inode, offset, &new_type);
953 if (error)
954 goto out;
955 }
956
957 if (wpc->io_type != new_type) {
958 wpc->io_type = new_type;
959 wpc->imap_valid = false;
960 }
961
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100962 if (wpc->imap_valid)
963 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
964 offset);
965 if (!wpc->imap_valid) {
966 error = xfs_map_blocks(inode, offset, &wpc->imap,
967 wpc->io_type);
968 if (error)
Dave Chinnere10de372016-02-15 17:23:12 +1100969 goto out;
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100970 wpc->imap_valid = xfs_imap_valid(inode, &wpc->imap,
971 offset);
972 }
973 if (wpc->imap_valid) {
974 lock_buffer(bh);
975 if (wpc->io_type != XFS_IO_OVERWRITE)
976 xfs_map_at_offset(inode, bh, &wpc->imap, offset);
Dave Chinnerbb187822016-04-06 08:11:25 +1000977 xfs_add_to_ioend(inode, bh, offset, wpc, wbc, &submit_list);
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100978 count++;
979 }
980
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100981 } while (offset += len, ((bh = bh->b_this_page) != head));
982
983 if (uptodate && bh == head)
984 SetPageUptodate(page);
985
Dave Chinnere10de372016-02-15 17:23:12 +1100986 ASSERT(wpc->ioend || list_empty(&submit_list));
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100987
Dave Chinnere10de372016-02-15 17:23:12 +1100988out:
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100989 /*
Dave Chinnere10de372016-02-15 17:23:12 +1100990 * On error, we have to fail the ioend here because we have locked
991 * buffers in the ioend. If we don't do this, we'll deadlock
992 * invalidating the page as that tries to lock the buffers on the page.
993 * Also, because we may have set pages under writeback, we have to make
994 * sure we run IO completion to mark the error state of the IO
995 * appropriately, so we can't cancel the ioend directly here. That means
996 * we have to mark this page as under writeback if we included any
997 * buffers from it in the ioend chain so that completion treats it
998 * correctly.
Dave Chinnerbfce7d22016-02-15 17:21:37 +1100999 *
Dave Chinnere10de372016-02-15 17:23:12 +11001000 * If we didn't include the page in the ioend, the on error we can
1001 * simply discard and unlock it as there are no other users of the page
1002 * or it's buffers right now. The caller will still need to trigger
1003 * submission of outstanding ioends on the writepage context so they are
1004 * treated correctly on error.
Dave Chinnerbfce7d22016-02-15 17:21:37 +11001005 */
Dave Chinnere10de372016-02-15 17:23:12 +11001006 if (count) {
1007 xfs_start_page_writeback(page, !error);
1008
1009 /*
1010 * Preserve the original error if there was one, otherwise catch
1011 * submission errors here and propagate into subsequent ioend
1012 * submissions.
1013 */
1014 list_for_each_entry_safe(ioend, next, &submit_list, io_list) {
1015 int error2;
1016
1017 list_del_init(&ioend->io_list);
1018 error2 = xfs_submit_ioend(wbc, ioend, error);
1019 if (error2 && !error)
1020 error = error2;
1021 }
1022 } else if (error) {
Dave Chinnerbfce7d22016-02-15 17:21:37 +11001023 xfs_aops_discard_page(page);
1024 ClearPageUptodate(page);
1025 unlock_page(page);
Dave Chinnere10de372016-02-15 17:23:12 +11001026 } else {
1027 /*
1028 * We can end up here with no error and nothing to write if we
1029 * race with a partial page truncate on a sub-page block sized
1030 * filesystem. In that case we need to mark the page clean.
1031 */
1032 xfs_start_page_writeback(page, 1);
1033 end_page_writeback(page);
Dave Chinnerbfce7d22016-02-15 17:21:37 +11001034 }
Dave Chinnere10de372016-02-15 17:23:12 +11001035
Dave Chinnerbfce7d22016-02-15 17:21:37 +11001036 mapping_set_error(page->mapping, error);
1037 return error;
1038}
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040/*
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001041 * Write out a dirty page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001043 * For delalloc space on the page we need to allocate space and flush it.
1044 * For unwritten space on the page we need to start the conversion to
1045 * regular allocated space.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001046 * For any other dirty buffer heads on the page we should flush them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001049xfs_do_writepage(
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001050 struct page *page,
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001051 struct writeback_control *wbc,
1052 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001054 struct xfs_writepage_ctx *wpc = data;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001055 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 loff_t offset;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001057 uint64_t end_offset;
Dave Chinnerad689722016-02-15 17:21:31 +11001058 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Lukas Czerner34097df2013-05-21 23:58:01 -04001060 trace_xfs_writepage(inode, page, 0, 0);
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001061
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001062 ASSERT(page_has_buffers(page));
1063
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001064 /*
1065 * Refuse to write the page out if we are called from reclaim context.
1066 *
Christoph Hellwigd4f7a5c2010-06-28 10:34:44 -04001067 * This avoids stack overflows when called from deeply used stacks in
1068 * random callers for direct reclaim or memcg reclaim. We explicitly
1069 * allow reclaim from kswapd as the stack usage there is relatively low.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001070 *
Mel Gorman94054fa2011-10-31 17:07:45 -07001071 * This should never happen except in the case of a VM regression so
1072 * warn about it.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001073 */
Mel Gorman94054fa2011-10-31 17:07:45 -07001074 if (WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
1075 PF_MEMALLOC))
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001076 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001077
1078 /*
Christoph Hellwig680a6472011-07-08 14:34:05 +02001079 * Given that we do not allow direct reclaim to call us, we should
1080 * never be called while in a filesystem transaction.
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001081 */
Michal Hocko90707332017-05-03 14:53:12 -07001082 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC_NOFS))
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001083 goto redirty;
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001084
Jie Liu8695d272014-05-20 08:24:26 +10001085 /*
Dave Chinnerad689722016-02-15 17:21:31 +11001086 * Is this page beyond the end of the file?
1087 *
Jie Liu8695d272014-05-20 08:24:26 +10001088 * The page index is less than the end_index, adjust the end_offset
1089 * to the highest offset that this page should represent.
1090 * -----------------------------------------------------
1091 * | file mapping | <EOF> |
1092 * -----------------------------------------------------
1093 * | Page ... | Page N-2 | Page N-1 | Page N | |
1094 * ^--------------------------------^----------|--------
1095 * | desired writeback range | see else |
1096 * ---------------------------------^------------------|
1097 */
Dave Chinnerad689722016-02-15 17:21:31 +11001098 offset = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001099 end_index = offset >> PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001100 if (page->index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001101 end_offset = (xfs_off_t)(page->index + 1) << PAGE_SHIFT;
Jie Liu8695d272014-05-20 08:24:26 +10001102 else {
1103 /*
1104 * Check whether the page to write out is beyond or straddles
1105 * i_size or not.
1106 * -------------------------------------------------------
1107 * | file mapping | <EOF> |
1108 * -------------------------------------------------------
1109 * | Page ... | Page N-2 | Page N-1 | Page N | Beyond |
1110 * ^--------------------------------^-----------|---------
1111 * | | Straddles |
1112 * ---------------------------------^-----------|--------|
1113 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001114 unsigned offset_into_page = offset & (PAGE_SIZE - 1);
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001115
1116 /*
Jan Karaff9a28f2013-03-14 14:30:54 +01001117 * Skip the page if it is fully outside i_size, e.g. due to a
1118 * truncate operation that is in progress. We must redirty the
1119 * page so that reclaim stops reclaiming it. Otherwise
1120 * xfs_vm_releasepage() is called on it and gets confused.
Jie Liu8695d272014-05-20 08:24:26 +10001121 *
1122 * Note that the end_index is unsigned long, it would overflow
1123 * if the given offset is greater than 16TB on 32-bit system
1124 * and if we do check the page is fully outside i_size or not
1125 * via "if (page->index >= end_index + 1)" as "end_index + 1"
1126 * will be evaluated to 0. Hence this page will be redirtied
1127 * and be written out repeatedly which would result in an
1128 * infinite loop, the user program that perform this operation
1129 * will hang. Instead, we can verify this situation by checking
1130 * if the page to write is totally beyond the i_size or if it's
1131 * offset is just equal to the EOF.
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001132 */
Jie Liu8695d272014-05-20 08:24:26 +10001133 if (page->index > end_index ||
1134 (page->index == end_index && offset_into_page == 0))
Jan Karaff9a28f2013-03-14 14:30:54 +01001135 goto redirty;
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001136
1137 /*
1138 * The page straddles i_size. It must be zeroed out on each
1139 * and every writepage invocation because it may be mmapped.
1140 * "A file is mapped in multiples of the page size. For a file
Jie Liu8695d272014-05-20 08:24:26 +10001141 * that is not a multiple of the page size, the remaining
Christoph Hellwig6b7a03f2012-07-03 12:20:00 -04001142 * memory is zeroed when mapped, and writes to that region are
1143 * not written out to the file."
1144 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001145 zero_user_segment(page, offset_into_page, PAGE_SIZE);
Jie Liu8695d272014-05-20 08:24:26 +10001146
1147 /* Adjust the end_offset to the end of file */
1148 end_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150
Darrick J. Wong2d5f4b52017-11-27 09:50:22 -08001151 return xfs_writepage_map(wpc, wbc, inode, page, end_offset);
Nathan Scottf51623b2006-03-14 13:26:27 +11001152
Christoph Hellwigb5420f22010-08-24 11:47:51 +10001153redirty:
Nathan Scottf51623b2006-03-14 13:26:27 +11001154 redirty_page_for_writepage(wbc, page);
1155 unlock_page(page);
1156 return 0;
Nathan Scottf51623b2006-03-14 13:26:27 +11001157}
1158
Nathan Scott7d4fb402006-06-09 15:27:16 +10001159STATIC int
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001160xfs_vm_writepage(
1161 struct page *page,
1162 struct writeback_control *wbc)
1163{
1164 struct xfs_writepage_ctx wpc = {
1165 .io_type = XFS_IO_INVALID,
1166 };
1167 int ret;
1168
1169 ret = xfs_do_writepage(page, wbc, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001170 if (wpc.ioend)
1171 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1172 return ret;
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001173}
1174
1175STATIC int
Nathan Scott7d4fb402006-06-09 15:27:16 +10001176xfs_vm_writepages(
1177 struct address_space *mapping,
1178 struct writeback_control *wbc)
1179{
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001180 struct xfs_writepage_ctx wpc = {
1181 .io_type = XFS_IO_INVALID,
1182 };
1183 int ret;
1184
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +10001185 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
Dave Chinnerfbcc0252016-02-15 17:21:19 +11001186 ret = write_cache_pages(mapping, wbc, xfs_do_writepage, &wpc);
Dave Chinnere10de372016-02-15 17:23:12 +11001187 if (wpc.ioend)
1188 ret = xfs_submit_ioend(wbc, wpc.ioend, ret);
1189 return ret;
Nathan Scott7d4fb402006-06-09 15:27:16 +10001190}
1191
Dan Williams6e2608d2018-03-07 15:26:44 -08001192STATIC int
1193xfs_dax_writepages(
1194 struct address_space *mapping,
1195 struct writeback_control *wbc)
1196{
1197 xfs_iflags_clear(XFS_I(mapping->host), XFS_ITRUNCATED);
1198 return dax_writeback_mapping_range(mapping,
1199 xfs_find_bdev_for_inode(mapping->host), wbc);
1200}
1201
Nathan Scottf51623b2006-03-14 13:26:27 +11001202/*
1203 * Called to move a page into cleanable state - and from there
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001204 * to be released. The page should already be clean. We always
Nathan Scottf51623b2006-03-14 13:26:27 +11001205 * have buffer heads in this call.
1206 *
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001207 * Returns 1 if the page is ok to release, 0 otherwise.
Nathan Scottf51623b2006-03-14 13:26:27 +11001208 */
1209STATIC int
Nathan Scott238f4c52006-03-17 17:26:25 +11001210xfs_vm_releasepage(
Nathan Scottf51623b2006-03-14 13:26:27 +11001211 struct page *page,
1212 gfp_t gfp_mask)
1213{
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001214 int delalloc, unwritten;
Nathan Scottf51623b2006-03-14 13:26:27 +11001215
Lukas Czerner34097df2013-05-21 23:58:01 -04001216 trace_xfs_releasepage(page->mapping->host, page, 0, 0);
Nathan Scott238f4c52006-03-17 17:26:25 +11001217
Brian Foster99579cc2016-07-22 09:50:38 +10001218 /*
1219 * mm accommodates an old ext3 case where clean pages might not have had
1220 * the dirty bit cleared. Thus, it can send actual dirty pages to
1221 * ->releasepage() via shrink_active_list(). Conversely,
Dave Chinner793d7db2017-10-13 09:47:45 -07001222 * block_invalidatepage() can send pages that are still marked dirty but
1223 * otherwise have invalidated buffers.
Brian Foster99579cc2016-07-22 09:50:38 +10001224 *
Jan Kara0a417b82017-01-11 10:20:04 -08001225 * We want to release the latter to avoid unnecessary buildup of the
Dave Chinner793d7db2017-10-13 09:47:45 -07001226 * LRU, so xfs_vm_invalidatepage() clears the page dirty flag on pages
1227 * that are entirely invalidated and need to be released. Hence the
1228 * only time we should get dirty pages here is through
1229 * shrink_active_list() and so we can simply skip those now.
1230 *
1231 * warn if we've left any lingering delalloc/unwritten buffers on clean
1232 * or invalidated pages we are about to release.
Brian Foster99579cc2016-07-22 09:50:38 +10001233 */
Dave Chinner793d7db2017-10-13 09:47:45 -07001234 if (PageDirty(page))
1235 return 0;
1236
Christoph Hellwig20cb52e2010-06-24 09:46:01 +10001237 xfs_count_page_state(page, &delalloc, &unwritten);
Nathan Scottf51623b2006-03-14 13:26:27 +11001238
Dave Chinner793d7db2017-10-13 09:47:45 -07001239 if (WARN_ON_ONCE(delalloc))
Christoph Hellwig89f3b3632010-06-24 09:45:48 +10001240 return 0;
Dave Chinner793d7db2017-10-13 09:47:45 -07001241 if (WARN_ON_ONCE(unwritten))
Nathan Scottf51623b2006-03-14 13:26:27 +11001242 return 0;
1243
Nathan Scottf51623b2006-03-14 13:26:27 +11001244 return try_to_free_buffers(page);
1245}
1246
Dave Chinnera7193702015-04-16 21:57:48 +10001247/*
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001248 * If this is O_DIRECT or the mpage code calling tell them how large the mapping
1249 * is, so that we can avoid repeated get_blocks calls.
1250 *
1251 * If the mapping spans EOF, then we have to break the mapping up as the mapping
1252 * for blocks beyond EOF must be marked new so that sub block regions can be
1253 * correctly zeroed. We can't do this for mappings within EOF unless the mapping
1254 * was just allocated or is unwritten, otherwise the callers would overwrite
1255 * existing data with zeros. Hence we have to split the mapping into a range up
1256 * to and including EOF, and a second mapping for beyond EOF.
1257 */
1258static void
1259xfs_map_trim_size(
1260 struct inode *inode,
1261 sector_t iblock,
1262 struct buffer_head *bh_result,
1263 struct xfs_bmbt_irec *imap,
1264 xfs_off_t offset,
1265 ssize_t size)
1266{
1267 xfs_off_t mapping_size;
1268
1269 mapping_size = imap->br_startoff + imap->br_blockcount - iblock;
1270 mapping_size <<= inode->i_blkbits;
1271
1272 ASSERT(mapping_size > 0);
1273 if (mapping_size > size)
1274 mapping_size = size;
1275 if (offset < i_size_read(inode) &&
Darrick J. Wong22a6c832017-11-27 09:50:17 -08001276 (xfs_ufsize_t)offset + mapping_size >= i_size_read(inode)) {
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001277 /* limit mapping to block that spans EOF */
1278 mapping_size = roundup_64(i_size_read(inode) - offset,
Fabian Frederick93407472017-02-27 14:28:32 -08001279 i_blocksize(inode));
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001280 }
1281 if (mapping_size > LONG_MAX)
1282 mapping_size = LONG_MAX;
1283
1284 bh_result->b_size = mapping_size;
1285}
1286
Darrick J. Wong0613f162016-10-03 09:11:37 -07001287static int
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001288xfs_get_blocks(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 struct inode *inode,
1290 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct buffer_head *bh_result,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001292 int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Christoph Hellwiga206c812010-12-10 08:42:20 +00001294 struct xfs_inode *ip = XFS_I(inode);
1295 struct xfs_mount *mp = ip->i_mount;
1296 xfs_fileoff_t offset_fsb, end_fsb;
1297 int error = 0;
1298 int lockmode = 0;
Christoph Hellwig207d0412010-04-28 12:28:56 +00001299 struct xfs_bmbt_irec imap;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001300 int nimaps = 1;
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001301 xfs_off_t offset;
1302 ssize_t size;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001303
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001304 BUG_ON(create);
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001305
Christoph Hellwiga206c812010-12-10 08:42:20 +00001306 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001307 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Nathan Scottfdc7ed72005-11-02 15:13:13 +11001309 offset = (xfs_off_t)iblock << inode->i_blkbits;
Fabian Frederick93407472017-02-27 14:28:32 -08001310 ASSERT(bh_result->b_size >= i_blocksize(inode));
Nathan Scottc2536662006-03-29 10:44:40 +10001311 size = bh_result->b_size;
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001312
Christoph Hellwigacdda3a2016-11-30 14:37:15 +11001313 if (offset >= i_size_read(inode))
Lachlan McIlroy364f3582008-09-17 16:50:14 +10001314 return 0;
1315
Dave Chinner507630b2012-03-27 10:34:50 -04001316 /*
1317 * Direct I/O is usually done on preallocated files, so try getting
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001318 * a block mapping without an exclusive lock first.
Dave Chinner507630b2012-03-27 10:34:50 -04001319 */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001320 lockmode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf2bde9b2010-06-24 11:44:35 +10001321
Dave Chinnerd2c28192012-06-08 15:44:53 +10001322 ASSERT(offset <= mp->m_super->s_maxbytes);
Darrick J. Wongb4d8ad7f2017-12-22 13:14:34 -08001323 if (offset > mp->m_super->s_maxbytes - size)
Dave Chinnerd2c28192012-06-08 15:44:53 +10001324 size = mp->m_super->s_maxbytes - offset;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001325 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + size);
1326 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1327
Christoph Hellwig7d9df3c2018-03-13 23:15:31 -07001328 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
1329 &nimaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (error)
Christoph Hellwiga206c812010-12-10 08:42:20 +00001331 goto out_unlock;
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001332 if (!nimaps) {
Christoph Hellwiga206c812010-12-10 08:42:20 +00001333 trace_xfs_get_blocks_notfound(ip, offset, size);
1334 goto out_unlock;
1335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Christoph Hellwig1d4352d2018-03-13 23:15:32 -07001337 trace_xfs_get_blocks_found(ip, offset, size,
1338 imap.br_state == XFS_EXT_UNWRITTEN ?
1339 XFS_IO_UNWRITTEN : XFS_IO_OVERWRITE, &imap);
1340 xfs_iunlock(ip, lockmode);
1341
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001342 /* trim mapping down to size requested */
Christoph Hellwig6e8a27a2016-06-21 09:53:45 +10001343 xfs_map_trim_size(inode, iblock, bh_result, &imap, offset, size);
Dave Chinner1fdca9c2015-04-16 21:58:21 +10001344
Dave Chinnera7193702015-04-16 21:57:48 +10001345 /*
1346 * For unwritten extents do not report a disk address in the buffered
1347 * read case (treat as if we're reading into a hole).
1348 */
Christoph Hellwig9c4f29d2017-03-28 14:53:35 -07001349 if (xfs_bmap_is_real_extent(&imap))
Dave Chinnera7193702015-04-16 21:57:48 +10001350 xfs_map_buffer(inode, bh_result, &imap, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Nathan Scottc2536662006-03-29 10:44:40 +10001352 /*
1353 * If this is a realtime file, data may be on a different device.
1354 * to that pointed to from the buffer_head b_bdev currently.
1355 */
Christoph Hellwig046f1682010-04-28 12:28:52 +00001356 bh_result->b_bdev = xfs_find_bdev_for_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return 0;
Christoph Hellwiga206c812010-12-10 08:42:20 +00001358
1359out_unlock:
1360 xfs_iunlock(ip, lockmode);
Dave Chinner24513372014-06-25 14:58:08 +10001361 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364STATIC sector_t
Nathan Scotte4c573b2006-03-14 13:54:26 +11001365xfs_vm_bmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 struct address_space *mapping,
1367 sector_t block)
1368{
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001369 struct xfs_inode *ip = XFS_I(mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001371 trace_xfs_vm_bmap(ip);
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001372
1373 /*
1374 * The swap code (ab-)uses ->bmap to get a block mapping and then
Ingo Molnar793057e2018-02-28 09:39:48 +01001375 * bypasses the file system for actual I/O. We really can't allow
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001376 * that on reflinks inodes, so we have to skip out here. And yes,
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001377 * 0 is the magic code for a bmap error.
1378 *
1379 * Since we don't pass back blockdev info, we can't return bmap
1380 * information for rt files either.
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001381 */
Darrick J. Wongeb5e2482017-06-21 20:27:35 -07001382 if (xfs_is_reflink_inode(ip) || XFS_IS_REALTIME_INODE(ip))
Darrick J. Wongdb1327b2016-10-03 09:11:36 -07001383 return 0;
Christoph Hellwigb84e7722018-06-01 09:03:09 -07001384 return iomap_bmap(mapping, block, &xfs_iomap_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
1387STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001388xfs_vm_readpage(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 struct file *unused,
1390 struct page *page)
1391{
Dave Chinner121e2132016-01-08 11:28:35 +11001392 trace_xfs_vm_readpage(page->mapping->host, 1);
Nathan Scottc2536662006-03-29 10:44:40 +10001393 return mpage_readpage(page, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396STATIC int
Nathan Scotte4c573b2006-03-14 13:54:26 +11001397xfs_vm_readpages(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 struct file *unused,
1399 struct address_space *mapping,
1400 struct list_head *pages,
1401 unsigned nr_pages)
1402{
Dave Chinner121e2132016-01-08 11:28:35 +11001403 trace_xfs_vm_readpages(mapping->host, nr_pages);
Nathan Scottc2536662006-03-29 10:44:40 +10001404 return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Dave Chinner22e757a2014-09-02 12:12:51 +10001407/*
1408 * This is basically a copy of __set_page_dirty_buffers() with one
1409 * small tweak: buffers beyond EOF do not get marked dirty. If we mark them
1410 * dirty, we'll never be able to clean them because we don't write buffers
1411 * beyond EOF, and that means we can't invalidate pages that span EOF
1412 * that have been marked dirty. Further, the dirty state can leak into
1413 * the file interior if the file is extended, resulting in all sorts of
1414 * bad things happening as the state does not match the underlying data.
1415 *
1416 * XXX: this really indicates that bufferheads in XFS need to die. Warts like
1417 * this only exist because of bufferheads and how the generic code manages them.
1418 */
1419STATIC int
1420xfs_vm_set_page_dirty(
1421 struct page *page)
1422{
1423 struct address_space *mapping = page->mapping;
1424 struct inode *inode = mapping->host;
1425 loff_t end_offset;
1426 loff_t offset;
1427 int newly_dirty;
1428
1429 if (unlikely(!mapping))
1430 return !TestSetPageDirty(page);
1431
1432 end_offset = i_size_read(inode);
1433 offset = page_offset(page);
1434
1435 spin_lock(&mapping->private_lock);
1436 if (page_has_buffers(page)) {
1437 struct buffer_head *head = page_buffers(page);
1438 struct buffer_head *bh = head;
1439
1440 do {
1441 if (offset < end_offset)
1442 set_buffer_dirty(bh);
1443 bh = bh->b_this_page;
Fabian Frederick93407472017-02-27 14:28:32 -08001444 offset += i_blocksize(inode);
Dave Chinner22e757a2014-09-02 12:12:51 +10001445 } while (bh != head);
1446 }
Greg Thelenc4843a72015-05-22 17:13:16 -04001447 /*
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07001448 * Lock out page->mem_cgroup migration to keep PageDirty
1449 * synchronized with per-memcg dirty page counters.
Greg Thelenc4843a72015-05-22 17:13:16 -04001450 */
Johannes Weiner62cccb82016-03-15 14:57:22 -07001451 lock_page_memcg(page);
Dave Chinner22e757a2014-09-02 12:12:51 +10001452 newly_dirty = !TestSetPageDirty(page);
1453 spin_unlock(&mapping->private_lock);
1454
Matthew Wilcoxf82b3762018-04-10 16:36:44 -07001455 if (newly_dirty)
1456 __set_page_dirty(page, mapping, 1);
Johannes Weiner62cccb82016-03-15 14:57:22 -07001457 unlock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04001458 if (newly_dirty)
1459 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Dave Chinner22e757a2014-09-02 12:12:51 +10001460 return newly_dirty;
1461}
1462
Darrick J. Wong67482122018-05-10 08:38:15 -07001463static int
1464xfs_iomap_swapfile_activate(
1465 struct swap_info_struct *sis,
1466 struct file *swap_file,
1467 sector_t *span)
1468{
1469 sis->bdev = xfs_find_bdev_for_inode(file_inode(swap_file));
1470 return iomap_swapfile_activate(sis, swap_file, span, &xfs_iomap_ops);
1471}
1472
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001473const struct address_space_operations xfs_address_space_operations = {
Nathan Scotte4c573b2006-03-14 13:54:26 +11001474 .readpage = xfs_vm_readpage,
1475 .readpages = xfs_vm_readpages,
1476 .writepage = xfs_vm_writepage,
Nathan Scott7d4fb402006-06-09 15:27:16 +10001477 .writepages = xfs_vm_writepages,
Dave Chinner22e757a2014-09-02 12:12:51 +10001478 .set_page_dirty = xfs_vm_set_page_dirty,
Nathan Scott238f4c52006-03-17 17:26:25 +11001479 .releasepage = xfs_vm_releasepage,
1480 .invalidatepage = xfs_vm_invalidatepage,
Nathan Scotte4c573b2006-03-14 13:54:26 +11001481 .bmap = xfs_vm_bmap,
Dan Williams6e2608d2018-03-07 15:26:44 -08001482 .direct_IO = noop_direct_IO,
Christoph Lametere965f962006-02-01 03:05:41 -08001483 .migratepage = buffer_migrate_page,
Hisashi Hifumibddaafa2009-03-29 09:53:38 +02001484 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02001485 .error_remove_page = generic_error_remove_page,
Darrick J. Wong67482122018-05-10 08:38:15 -07001486 .swap_activate = xfs_iomap_swapfile_activate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487};
Dan Williams6e2608d2018-03-07 15:26:44 -08001488
1489const struct address_space_operations xfs_dax_aops = {
1490 .writepages = xfs_dax_writepages,
1491 .direct_IO = noop_direct_IO,
1492 .set_page_dirty = noop_set_page_dirty,
1493 .invalidatepage = noop_invalidatepage,
Darrick J. Wong67482122018-05-10 08:38:15 -07001494 .swap_activate = xfs_iomap_swapfile_activate,
Dan Williams6e2608d2018-03-07 15:26:44 -08001495};