blob: eb39c377749122ebff8882b58a0dba597d583797 [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"
Christoph Hellwigdda35b82010-02-15 09:44:46 +00007#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110014#include "xfs_trans.h"
Christoph Hellwigfd3200b2010-02-15 09:44:48 +000015#include "xfs_inode_item.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000016#include "xfs_bmap.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100017#include "xfs_bmap_util.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100018#include "xfs_dir2.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100019#include "xfs_dir2_priv.h"
Christoph Hellwigddcd8562008-12-03 07:55:34 -050020#include "xfs_ioctl.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000021#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log.h"
Brian Fosterdc06f3982014-07-24 19:49:28 +100023#include "xfs_icache.h"
Christoph Hellwig781355c2015-02-16 11:59:50 +110024#include "xfs_pnfs.h"
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +100025#include "xfs_iomap.h"
Darrick J. Wong0613f162016-10-03 09:11:37 -070026#include "xfs_reflink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010028#include <linux/falloc.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040029#include <linux/backing-dev.h>
Christoph Hellwiga39e5962017-11-01 16:36:47 +010030#include <linux/mman.h>
Jan Kara40144e42019-08-29 09:04:12 -070031#include <linux/fadvise.h>
Christoph Hellwigf736d932021-01-21 14:19:58 +010032#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +040034static const struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Darrick J. Wong25219db2020-10-09 16:42:59 -070036/*
37 * Decide if the given file range is aligned to the size of the fundamental
38 * allocation unit for the file.
39 */
40static bool
41xfs_is_falloc_aligned(
42 struct xfs_inode *ip,
43 loff_t pos,
44 long long int len)
45{
46 struct xfs_mount *mp = ip->i_mount;
47 uint64_t mask;
48
49 if (XFS_IS_REALTIME_INODE(ip)) {
50 if (!is_power_of_2(mp->m_sb.sb_rextsize)) {
51 u64 rextbytes;
52 u32 mod;
53
54 rextbytes = XFS_FSB_TO_B(mp, mp->m_sb.sb_rextsize);
55 div_u64_rem(pos, rextbytes, &mod);
56 if (mod)
57 return false;
58 div_u64_rem(len, rextbytes, &mod);
59 return mod == 0;
60 }
61 mask = XFS_FSB_TO_B(mp, mp->m_sb.sb_rextsize) - 1;
62 } else {
63 mask = mp->m_sb.sb_blocksize - 1;
64 }
65
66 return !((pos | len) & mask);
67}
68
Christoph Hellwig8add71c2015-02-02 09:53:56 +110069int
70xfs_update_prealloc_flags(
71 struct xfs_inode *ip,
72 enum xfs_prealloc_flags flags)
73{
74 struct xfs_trans *tp;
75 int error;
76
Christoph Hellwig253f4912016-04-06 09:19:55 +100077 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_writeid,
78 0, 0, 0, &tp);
79 if (error)
Christoph Hellwig8add71c2015-02-02 09:53:56 +110080 return error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +110081
82 xfs_ilock(ip, XFS_ILOCK_EXCL);
83 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
84
85 if (!(flags & XFS_PREALLOC_INVISIBLE)) {
Dave Chinnerc19b3b052016-02-09 16:54:58 +110086 VFS_I(ip)->i_mode &= ~S_ISUID;
87 if (VFS_I(ip)->i_mode & S_IXGRP)
88 VFS_I(ip)->i_mode &= ~S_ISGID;
Christoph Hellwig8add71c2015-02-02 09:53:56 +110089 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
90 }
91
92 if (flags & XFS_PREALLOC_SET)
Christoph Hellwigdb073492021-03-29 11:11:44 -070093 ip->i_diflags |= XFS_DIFLAG_PREALLOC;
Christoph Hellwig8add71c2015-02-02 09:53:56 +110094 if (flags & XFS_PREALLOC_CLEAR)
Christoph Hellwigdb073492021-03-29 11:11:44 -070095 ip->i_diflags &= ~XFS_DIFLAG_PREALLOC;
Christoph Hellwig8add71c2015-02-02 09:53:56 +110096
97 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
98 if (flags & XFS_PREALLOC_SYNC)
99 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000100 return xfs_trans_commit(tp);
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100101}
102
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000103/*
104 * Fsync operations on directories are much simpler than on regular files,
105 * as there is no file data to flush, and thus also no need for explicit
106 * cache flush operations, and there are no non-transaction metadata updates
107 * on directories either.
108 */
109STATIC int
110xfs_dir_fsync(
111 struct file *file,
112 loff_t start,
113 loff_t end,
114 int datasync)
115{
116 struct xfs_inode *ip = XFS_I(file->f_mapping->host);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000117
118 trace_xfs_dir_fsync(ip);
Christoph Hellwig54fbdd12020-04-03 11:45:37 -0700119 return xfs_log_force_inode(ip);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000120}
121
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800122static xfs_lsn_t
123xfs_fsync_lsn(
124 struct xfs_inode *ip,
125 bool datasync)
126{
127 if (!xfs_ipincount(ip))
128 return 0;
129 if (datasync && !(ip->i_itemp->ili_fsync_fields & ~XFS_ILOG_TIMESTAMP))
130 return 0;
131 return ip->i_itemp->ili_last_lsn;
132}
133
134/*
135 * All metadata updates are logged, which means that we just have to flush the
136 * log up to the latest LSN that touched the inode.
137 *
138 * If we have concurrent fsync/fdatasync() calls, we need them to all block on
139 * the log force before we clear the ili_fsync_fields field. This ensures that
140 * we don't get a racing sync operation that does not wait for the metadata to
141 * hit the journal before returning. If we race with clearing ili_fsync_fields,
142 * then all that will happen is the log force will do nothing as the lsn will
143 * already be on disk. We can't race with setting ili_fsync_fields because that
144 * is done under XFS_ILOCK_EXCL, and that can't happen because we hold the lock
145 * shared until after the ili_fsync_fields is cleared.
146 */
147static int
148xfs_fsync_flush_log(
149 struct xfs_inode *ip,
150 bool datasync,
151 int *log_flushed)
152{
153 int error = 0;
154 xfs_lsn_t lsn;
155
156 xfs_ilock(ip, XFS_ILOCK_SHARED);
157 lsn = xfs_fsync_lsn(ip, datasync);
158 if (lsn) {
159 error = xfs_log_force_lsn(ip->i_mount, lsn, XFS_LOG_SYNC,
160 log_flushed);
161
162 spin_lock(&ip->i_itemp->ili_lock);
163 ip->i_itemp->ili_fsync_fields = 0;
164 spin_unlock(&ip->i_itemp->ili_lock);
165 }
166 xfs_iunlock(ip, XFS_ILOCK_SHARED);
167 return error;
168}
169
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000170STATIC int
171xfs_file_fsync(
172 struct file *file,
Josef Bacik02c24a82011-07-16 20:44:56 -0400173 loff_t start,
174 loff_t end,
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000175 int datasync)
176{
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800177 struct xfs_inode *ip = XFS_I(file->f_mapping->host);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000178 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000179 int error = 0;
180 int log_flushed = 0;
181
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000182 trace_xfs_file_fsync(ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000183
Jeff Layton1b180272017-07-06 07:02:30 -0400184 error = file_write_and_wait_range(file, start, end);
Josef Bacik02c24a82011-07-16 20:44:56 -0400185 if (error)
186 return error;
187
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000188 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000189 return -EIO;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000190
191 xfs_iflags_clear(ip, XFS_ITRUNCATED);
192
Dave Chinner2291dab2016-12-09 16:49:54 +1100193 /*
194 * If we have an RT and/or log subvolume we need to make sure to flush
195 * the write cache the device used for file data first. This is to
196 * ensure newly written file data make it to disk before logging the new
197 * inode size in case of an extending write.
198 */
199 if (XFS_IS_REALTIME_INODE(ip))
200 xfs_blkdev_issue_flush(mp->m_rtdev_targp);
201 else if (mp->m_logdev_targp != mp->m_ddev_targp)
202 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000203
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000204 /*
Christoph Hellwigae29e422021-01-22 16:48:25 -0800205 * Any inode that has dirty modifications in the log is pinned. The
206 * racy check here for a pinned inode while not catch modifications
207 * that happen concurrently to the fsync call, but fsync semantics
208 * only require to sync previously completed I/O.
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000209 */
Christoph Hellwigae29e422021-01-22 16:48:25 -0800210 if (xfs_ipincount(ip))
211 error = xfs_fsync_flush_log(ip, datasync, &log_flushed);
Christoph Hellwigb1037052011-09-19 14:55:51 +0000212
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000213 /*
214 * If we only have a single device, and the log force about was
215 * a no-op we might have to flush the data device cache here.
216 * This can only happen for fdatasync/O_DSYNC if we were overwriting
217 * an already allocated file and thus do not have any metadata to
218 * commit.
219 */
Dave Chinner2291dab2016-12-09 16:49:54 +1100220 if (!log_flushed && !XFS_IS_REALTIME_INODE(ip) &&
221 mp->m_logdev_targp == mp->m_ddev_targp)
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000222 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000223
Dave Chinner24513372014-06-25 14:58:08 +1000224 return error;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000225}
226
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800227static int
228xfs_ilock_iocb(
229 struct kiocb *iocb,
230 unsigned int lock_mode)
231{
232 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
233
234 if (iocb->ki_flags & IOCB_NOWAIT) {
235 if (!xfs_ilock_nowait(ip, lock_mode))
236 return -EAGAIN;
237 } else {
238 xfs_ilock(ip, lock_mode);
239 }
240
241 return 0;
242}
243
Christoph Hellwig00258e32010-02-15 09:44:47 +0000244STATIC ssize_t
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800245xfs_file_dio_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000246 struct kiocb *iocb,
Al Virob4f5d2c2014-04-02 14:37:59 -0400247 struct iov_iter *to)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000248{
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100249 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100250 ssize_t ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000251
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800252 trace_xfs_file_direct_read(iocb, to);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000253
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800254 if (!iov_iter_count(to))
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000255 return 0; /* skip atime */
Christoph Hellwig00258e32010-02-15 09:44:47 +0000256
Christoph Hellwiga447d7c2016-10-03 09:47:34 +1100257 file_accessed(iocb->ki_filp);
258
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800259 ret = xfs_ilock_iocb(iocb, XFS_IOLOCK_SHARED);
260 if (ret)
261 return ret;
Christoph Hellwig2f632962021-01-23 10:06:09 -0800262 ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops, NULL, 0);
Christoph Hellwig65523212016-11-30 14:33:25 +1100263 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100264
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000265 return ret;
266}
267
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000268static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000269xfs_file_dax_read(
270 struct kiocb *iocb,
271 struct iov_iter *to)
272{
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000273 struct xfs_inode *ip = XFS_I(iocb->ki_filp->f_mapping->host);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000274 ssize_t ret = 0;
275
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800276 trace_xfs_file_dax_read(iocb, to);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000277
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800278 if (!iov_iter_count(to))
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000279 return 0; /* skip atime */
280
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800281 ret = xfs_ilock_iocb(iocb, XFS_IOLOCK_SHARED);
282 if (ret)
283 return ret;
Christoph Hellwig690c2a32019-10-19 09:09:45 -0700284 ret = dax_iomap_rw(iocb, to, &xfs_read_iomap_ops);
Christoph Hellwig65523212016-11-30 14:33:25 +1100285 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000286
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000287 file_accessed(iocb->ki_filp);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000288 return ret;
289}
290
291STATIC ssize_t
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800292xfs_file_buffered_read(
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000293 struct kiocb *iocb,
294 struct iov_iter *to)
295{
296 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
297 ssize_t ret;
298
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800299 trace_xfs_file_buffered_read(iocb, to);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000300
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800301 ret = xfs_ilock_iocb(iocb, XFS_IOLOCK_SHARED);
302 if (ret)
303 return ret;
Al Virob4f5d2c2014-04-02 14:37:59 -0400304 ret = generic_file_read_iter(iocb, to);
Christoph Hellwig65523212016-11-30 14:33:25 +1100305 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000306
307 return ret;
308}
309
310STATIC ssize_t
311xfs_file_read_iter(
312 struct kiocb *iocb,
313 struct iov_iter *to)
314{
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000315 struct inode *inode = file_inode(iocb->ki_filp);
316 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000317 ssize_t ret = 0;
318
319 XFS_STATS_INC(mp, xs_read_calls);
320
321 if (XFS_FORCED_SHUTDOWN(mp))
322 return -EIO;
323
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000324 if (IS_DAX(inode))
325 ret = xfs_file_dax_read(iocb, to);
326 else if (iocb->ki_flags & IOCB_DIRECT)
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800327 ret = xfs_file_dio_read(iocb, to);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000328 else
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800329 ret = xfs_file_buffered_read(iocb, to);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000330
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000331 if (ret > 0)
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100332 XFS_STATS_ADD(mp, xs_read_bytes, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000333 return ret;
334}
335
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100336/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100337 * Common pre-write limit and setup checks.
338 *
Christoph Hellwig5bf1f262011-12-18 20:00:13 +0000339 * Called with the iolocked held either shared and exclusive according to
340 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
341 * if called for a direct write beyond i_size.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100342 */
343STATIC ssize_t
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800344xfs_file_write_checks(
Al Viro99733fa2015-04-07 14:25:18 -0400345 struct kiocb *iocb,
346 struct iov_iter *from,
Dave Chinner4d8d1582011-01-11 10:23:42 +1100347 int *iolock)
348{
Al Viro99733fa2015-04-07 14:25:18 -0400349 struct file *file = iocb->ki_filp;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100350 struct inode *inode = file->f_mapping->host;
351 struct xfs_inode *ip = XFS_I(inode);
Al Viro3309dd02015-04-09 12:55:47 -0400352 ssize_t error = 0;
Al Viro99733fa2015-04-07 14:25:18 -0400353 size_t count = iov_iter_count(from);
Brian Foster3136e8b2015-10-12 16:02:05 +1100354 bool drained_dio = false;
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700355 loff_t isize;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100356
Dave Chinner7271d242011-08-25 07:17:02 +0000357restart:
Al Viro3309dd02015-04-09 12:55:47 -0400358 error = generic_write_checks(iocb, from);
359 if (error <= 0)
Dave Chinner4d8d1582011-01-11 10:23:42 +1100360 return error;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100361
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800362 if (iocb->ki_flags & IOCB_NOWAIT) {
363 error = break_layout(inode, false);
364 if (error == -EWOULDBLOCK)
365 error = -EAGAIN;
366 } else {
367 error = xfs_break_layouts(inode, iolock, BREAK_WRITE);
368 }
369
Christoph Hellwig781355c2015-02-16 11:59:50 +1100370 if (error)
371 return error;
372
Christoph Hellwig65523212016-11-30 14:33:25 +1100373 /*
374 * For changing security info in file_remove_privs() we need i_rwsem
375 * exclusively.
376 */
Jan Karaa6de82c2015-05-21 16:05:56 +0200377 if (*iolock == XFS_IOLOCK_SHARED && !IS_NOSEC(inode)) {
Christoph Hellwig65523212016-11-30 14:33:25 +1100378 xfs_iunlock(ip, *iolock);
Jan Karaa6de82c2015-05-21 16:05:56 +0200379 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800380 error = xfs_ilock_iocb(iocb, *iolock);
381 if (error) {
382 *iolock = 0;
383 return error;
384 }
Jan Karaa6de82c2015-05-21 16:05:56 +0200385 goto restart;
386 }
Dave Chinner977ec4d2021-06-02 15:00:38 -0700387
Dave Chinner4d8d1582011-01-11 10:23:42 +1100388 /*
389 * If the offset is beyond the size of the file, we need to zero any
390 * blocks that fall between the existing EOF and the start of this
Dave Chinner977ec4d2021-06-02 15:00:38 -0700391 * write. If zeroing is needed and we are currently holding the iolock
392 * shared, we need to update it to exclusive which implies having to
393 * redo all checks before.
Dave Chinnerb9d59842015-04-16 22:03:07 +1000394 *
Dave Chinner977ec4d2021-06-02 15:00:38 -0700395 * We need to serialise against EOF updates that occur in IO completions
396 * here. We want to make sure that nobody is changing the size while we
397 * do this check until we have placed an IO barrier (i.e. hold the
398 * XFS_IOLOCK_EXCL) that prevents new IO from being dispatched. The
399 * spinlock effectively forms a memory barrier once we have the
400 * XFS_IOLOCK_EXCL so we are guaranteed to see the latest EOF value and
401 * hence be able to correctly determine if we need to run zeroing.
402 *
403 * We can do an unlocked check here safely as IO completion can only
404 * extend EOF. Truncate is locked out at this point, so the EOF can
405 * not move backwards, only forwards. Hence we only need to take the
406 * slow path and spin locks when we are at or beyond the current EOF.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100407 */
Dave Chinner977ec4d2021-06-02 15:00:38 -0700408 if (iocb->ki_pos <= i_size_read(inode))
409 goto out;
410
Dave Chinnerb9d59842015-04-16 22:03:07 +1000411 spin_lock(&ip->i_flags_lock);
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700412 isize = i_size_read(inode);
413 if (iocb->ki_pos > isize) {
Dave Chinnerb9d59842015-04-16 22:03:07 +1000414 spin_unlock(&ip->i_flags_lock);
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800415
416 if (iocb->ki_flags & IOCB_NOWAIT)
417 return -EAGAIN;
418
Brian Foster3136e8b2015-10-12 16:02:05 +1100419 if (!drained_dio) {
420 if (*iolock == XFS_IOLOCK_SHARED) {
Christoph Hellwig65523212016-11-30 14:33:25 +1100421 xfs_iunlock(ip, *iolock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100422 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100423 xfs_ilock(ip, *iolock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100424 iov_iter_reexpand(from, count);
425 }
Dave Chinner40c63fb2015-04-16 22:03:17 +1000426 /*
427 * We now have an IO submission barrier in place, but
428 * AIO can do EOF updates during IO completion and hence
429 * we now need to wait for all of them to drain. Non-AIO
430 * DIO will have drained before we are given the
431 * XFS_IOLOCK_EXCL, and so for most cases this wait is a
432 * no-op.
433 */
434 inode_dio_wait(inode);
Brian Foster3136e8b2015-10-12 16:02:05 +1100435 drained_dio = true;
Dave Chinner7271d242011-08-25 07:17:02 +0000436 goto restart;
437 }
Dave Chinner977ec4d2021-06-02 15:00:38 -0700438
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700439 trace_xfs_zero_eof(ip, isize, iocb->ki_pos - isize);
440 error = iomap_zero_range(inode, isize, iocb->ki_pos - isize,
Christoph Hellwigf150b422019-10-19 09:09:46 -0700441 NULL, &xfs_buffered_write_iomap_ops);
Christoph Hellwig467f7892012-03-27 10:34:47 -0400442 if (error)
443 return error;
Dave Chinnerb9d59842015-04-16 22:03:07 +1000444 } else
445 spin_unlock(&ip->i_flags_lock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100446
Dave Chinner977ec4d2021-06-02 15:00:38 -0700447out:
Amir Goldstein8c3f4062019-06-05 08:04:50 -0700448 return file_modified(file);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100449}
450
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100451static int
452xfs_dio_write_end_io(
453 struct kiocb *iocb,
454 ssize_t size,
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700455 int error,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100456 unsigned flags)
457{
458 struct inode *inode = file_inode(iocb->ki_filp);
459 struct xfs_inode *ip = XFS_I(inode);
460 loff_t offset = iocb->ki_pos;
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700461 unsigned int nofs_flag;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100462
463 trace_xfs_end_io_direct_write(ip, offset, size);
464
465 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
466 return -EIO;
467
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700468 if (error)
469 return error;
470 if (!size)
471 return 0;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100472
Dave Chinnered5c3e62018-05-02 12:54:52 -0700473 /*
474 * Capture amount written on completion as we can't reliably account
475 * for it on submission.
476 */
477 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, size);
478
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700479 /*
480 * We can allocate memory here while doing writeback on behalf of
481 * memory reclaim. To avoid memory allocation deadlocks set the
482 * task-wide nofs context for the following operations.
483 */
484 nofs_flag = memalloc_nofs_save();
485
Eryu Guanee70daa2017-09-21 11:26:18 -0700486 if (flags & IOMAP_DIO_COW) {
487 error = xfs_reflink_end_cow(ip, offset, size);
488 if (error)
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700489 goto out;
Eryu Guanee70daa2017-09-21 11:26:18 -0700490 }
491
492 /*
493 * Unwritten conversion updates the in-core isize after extent
494 * conversion but before updating the on-disk size. Updating isize any
495 * earlier allows a racing dio read to find unwritten extents before
496 * they are converted.
497 */
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700498 if (flags & IOMAP_DIO_UNWRITTEN) {
499 error = xfs_iomap_write_unwritten(ip, offset, size, true);
500 goto out;
501 }
Eryu Guanee70daa2017-09-21 11:26:18 -0700502
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100503 /*
504 * We need to update the in-core inode size here so that we don't end up
505 * with the on-disk inode size being outside the in-core inode size. We
506 * have no other method of updating EOF for AIO, so always do it here
507 * if necessary.
508 *
509 * We need to lock the test/set EOF update as we can be racing with
510 * other IO completions here to update the EOF. Failing to serialise
511 * here can result in EOF moving backwards and Bad Things Happen when
512 * that occurs.
Dave Chinner977ec4d2021-06-02 15:00:38 -0700513 *
514 * As IO completion only ever extends EOF, we can do an unlocked check
515 * here to avoid taking the spinlock. If we land within the current EOF,
516 * then we do not need to do an extending update at all, and we don't
517 * need to take the lock to check this. If we race with an update moving
518 * EOF, then we'll either still be beyond EOF and need to take the lock,
519 * or we'll be within EOF and we don't need to take it at all.
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100520 */
Dave Chinner977ec4d2021-06-02 15:00:38 -0700521 if (offset + size <= i_size_read(inode))
522 goto out;
523
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100524 spin_lock(&ip->i_flags_lock);
525 if (offset + size > i_size_read(inode)) {
526 i_size_write(inode, offset + size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700527 spin_unlock(&ip->i_flags_lock);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100528 error = xfs_setfilesize(ip, offset, size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700529 } else {
530 spin_unlock(&ip->i_flags_lock);
531 }
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100532
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700533out:
534 memalloc_nofs_restore(nofs_flag);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100535 return error;
536}
537
Christoph Hellwig838c4f32019-09-19 15:32:45 -0700538static const struct iomap_dio_ops xfs_dio_write_ops = {
539 .end_io = xfs_dio_write_end_io,
540};
541
Dave Chinner4d8d1582011-01-11 10:23:42 +1100542/*
Dave Chinnercaa89db2021-01-23 10:06:30 -0800543 * Handle block aligned direct I/O writes
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100544 */
Dave Chinnercaa89db2021-01-23 10:06:30 -0800545static noinline ssize_t
546xfs_file_dio_write_aligned(
547 struct xfs_inode *ip,
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100548 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400549 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100550{
Dave Chinnercaa89db2021-01-23 10:06:30 -0800551 int iolock = XFS_IOLOCK_SHARED;
552 ssize_t ret;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100553
Dave Chinnercaa89db2021-01-23 10:06:30 -0800554 ret = xfs_ilock_iocb(iocb, iolock);
555 if (ret)
556 return ret;
557 ret = xfs_file_write_checks(iocb, from, &iolock);
558 if (ret)
559 goto out_unlock;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100560
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100561 /*
Dave Chinnercaa89db2021-01-23 10:06:30 -0800562 * We don't need to hold the IOLOCK exclusively across the IO, so demote
563 * the iolock back to shared if we had to take the exclusive lock in
564 * xfs_file_write_checks() for other reasons.
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100565 */
Dave Chinnercaa89db2021-01-23 10:06:30 -0800566 if (iolock == XFS_IOLOCK_EXCL) {
567 xfs_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000568 iolock = XFS_IOLOCK_SHARED;
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000569 }
Dave Chinnercaa89db2021-01-23 10:06:30 -0800570 trace_xfs_file_direct_write(iocb, from);
571 ret = iomap_dio_rw(iocb, from, &xfs_direct_write_iomap_ops,
572 &xfs_dio_write_ops, 0);
573out_unlock:
574 if (iolock)
575 xfs_iunlock(ip, iolock);
576 return ret;
577}
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100578
Dave Chinnercaa89db2021-01-23 10:06:30 -0800579/*
580 * Handle block unaligned direct I/O writes
581 *
582 * In most cases direct I/O writes will be done holding IOLOCK_SHARED, allowing
583 * them to be done in parallel with reads and other direct I/O writes. However,
584 * if the I/O is not aligned to filesystem blocks, the direct I/O layer may need
585 * to do sub-block zeroing and that requires serialisation against other direct
586 * I/O to the same block. In this case we need to serialise the submission of
587 * the unaligned I/O so that we don't get racing block zeroing in the dio layer.
Dave Chinnered1128c2021-01-23 10:06:31 -0800588 * In the case where sub-block zeroing is not required, we can do concurrent
589 * sub-block dios to the same block successfully.
Dave Chinnercaa89db2021-01-23 10:06:30 -0800590 *
Dave Chinnered1128c2021-01-23 10:06:31 -0800591 * Optimistically submit the I/O using the shared lock first, but use the
592 * IOMAP_DIO_OVERWRITE_ONLY flag to tell the lower layers to return -EAGAIN
593 * if block allocation or partial block zeroing would be required. In that case
594 * we try again with the exclusive lock.
Dave Chinnercaa89db2021-01-23 10:06:30 -0800595 */
596static noinline ssize_t
597xfs_file_dio_write_unaligned(
598 struct xfs_inode *ip,
599 struct kiocb *iocb,
600 struct iov_iter *from)
601{
Dave Chinnered1128c2021-01-23 10:06:31 -0800602 size_t isize = i_size_read(VFS_I(ip));
603 size_t count = iov_iter_count(from);
604 int iolock = XFS_IOLOCK_SHARED;
605 unsigned int flags = IOMAP_DIO_OVERWRITE_ONLY;
Dave Chinnercaa89db2021-01-23 10:06:30 -0800606 ssize_t ret;
607
Dave Chinnered1128c2021-01-23 10:06:31 -0800608 /*
609 * Extending writes need exclusivity because of the sub-block zeroing
610 * that the DIO code always does for partial tail blocks beyond EOF, so
611 * don't even bother trying the fast path in this case.
612 */
613 if (iocb->ki_pos > isize || iocb->ki_pos + count >= isize) {
614retry_exclusive:
615 if (iocb->ki_flags & IOCB_NOWAIT)
616 return -EAGAIN;
617 iolock = XFS_IOLOCK_EXCL;
618 flags = IOMAP_DIO_FORCE_WAIT;
619 }
620
621 ret = xfs_ilock_iocb(iocb, iolock);
622 if (ret)
623 return ret;
Dave Chinnercaa89db2021-01-23 10:06:30 -0800624
625 /*
626 * We can't properly handle unaligned direct I/O to reflink files yet,
627 * as we can't unshare a partial block.
628 */
629 if (xfs_is_cow_inode(ip)) {
630 trace_xfs_reflink_bounce_dio_write(iocb, from);
631 ret = -ENOTBLK;
632 goto out_unlock;
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500633 }
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100634
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800635 ret = xfs_file_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100636 if (ret)
Dave Chinnercaa89db2021-01-23 10:06:30 -0800637 goto out_unlock;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100638
Dave Chinnereda77982011-01-11 10:22:40 +1100639 /*
Dave Chinnered1128c2021-01-23 10:06:31 -0800640 * If we are doing exclusive unaligned I/O, this must be the only I/O
641 * in-flight. Otherwise we risk data corruption due to unwritten extent
642 * conversions from the AIO end_io handler. Wait for all other I/O to
643 * drain first.
Dave Chinnereda77982011-01-11 10:22:40 +1100644 */
Dave Chinnered1128c2021-01-23 10:06:31 -0800645 if (flags & IOMAP_DIO_FORCE_WAIT)
646 inode_dio_wait(VFS_I(ip));
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100647
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800648 trace_xfs_file_direct_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700649 ret = iomap_dio_rw(iocb, from, &xfs_direct_write_iomap_ops,
Dave Chinnered1128c2021-01-23 10:06:31 -0800650 &xfs_dio_write_ops, flags);
651
652 /*
653 * Retry unaligned I/O with exclusive blocking semantics if the DIO
654 * layer rejected it for mapping or locking reasons. If we are doing
655 * nonblocking user I/O, propagate the error.
656 */
657 if (ret == -EAGAIN && !(iocb->ki_flags & IOCB_NOWAIT)) {
658 ASSERT(flags & IOMAP_DIO_OVERWRITE_ONLY);
659 xfs_iunlock(ip, iolock);
660 goto retry_exclusive;
661 }
662
Dave Chinnercaa89db2021-01-23 10:06:30 -0800663out_unlock:
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800664 if (iolock)
665 xfs_iunlock(ip, iolock);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000666 return ret;
667}
668
Dave Chinnercaa89db2021-01-23 10:06:30 -0800669static ssize_t
670xfs_file_dio_write(
671 struct kiocb *iocb,
672 struct iov_iter *from)
673{
674 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
675 struct xfs_buftarg *target = xfs_inode_buftarg(ip);
676 size_t count = iov_iter_count(from);
677
678 /* direct I/O must be aligned to device logical sector size */
679 if ((iocb->ki_pos | count) & target->bt_logical_sectormask)
680 return -EINVAL;
681 if ((iocb->ki_pos | count) & ip->i_mount->m_blockmask)
682 return xfs_file_dio_write_unaligned(ip, iocb, from);
683 return xfs_file_dio_write_aligned(ip, iocb, from);
684}
685
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000686static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000687xfs_file_dax_write(
688 struct kiocb *iocb,
689 struct iov_iter *from)
690{
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000691 struct inode *inode = iocb->ki_filp->f_mapping->host;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000692 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig17879e82016-09-19 11:24:50 +1000693 int iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000694 ssize_t ret, error = 0;
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000695 loff_t pos;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000696
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800697 ret = xfs_ilock_iocb(iocb, iolock);
698 if (ret)
699 return ret;
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800700 ret = xfs_file_write_checks(iocb, from, &iolock);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000701 if (ret)
702 goto out;
703
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000704 pos = iocb->ki_pos;
Dave Chinner8b2180b2016-08-17 08:31:33 +1000705
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800706 trace_xfs_file_dax_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700707 ret = dax_iomap_rw(iocb, from, &xfs_direct_write_iomap_ops);
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000708 if (ret > 0 && iocb->ki_pos > i_size_read(inode)) {
709 i_size_write(inode, iocb->ki_pos);
710 error = xfs_setfilesize(ip, pos, ret);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000711 }
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000712out:
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800713 if (iolock)
714 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700715 if (error)
716 return error;
717
718 if (ret > 0) {
719 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
720
721 /* Handle various SYNC-type writes */
722 ret = generic_write_sync(iocb, ret);
723 }
724 return ret;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100725}
726
Christoph Hellwig00258e32010-02-15 09:44:47 +0000727STATIC ssize_t
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800728xfs_file_buffered_write(
Dave Chinner637bbc72011-01-11 10:17:30 +1100729 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400730 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100731{
732 struct file *file = iocb->ki_filp;
733 struct address_space *mapping = file->f_mapping;
734 struct inode *inode = mapping->host;
735 struct xfs_inode *ip = XFS_I(inode);
736 ssize_t ret;
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800737 bool cleared_space = false;
Brian Fosterc3155092017-01-27 23:22:56 -0800738 int iolock;
Dave Chinner637bbc72011-01-11 10:17:30 +1100739
Christoph Hellwig91f99432017-08-29 16:13:20 +0200740 if (iocb->ki_flags & IOCB_NOWAIT)
741 return -EOPNOTSUPP;
742
Brian Fosterc3155092017-01-27 23:22:56 -0800743write_retry:
744 iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100745 xfs_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100746
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800747 ret = xfs_file_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100748 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000749 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100750
751 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100752 current->backing_dev_info = inode_to_bdi(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100753
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800754 trace_xfs_file_buffered_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700755 ret = iomap_file_buffered_write(iocb, from,
756 &xfs_buffered_write_iomap_ops);
Al Viro0a64bc22014-02-11 22:25:22 -0500757 if (likely(ret >= 0))
Al Viro99733fa2015-04-07 14:25:18 -0400758 iocb->ki_pos += ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000759
Dave Chinner637bbc72011-01-11 10:17:30 +1100760 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000761 * If we hit a space limit, try to free up some lingering preallocated
762 * space before returning an error. In the case of ENOSPC, first try to
763 * write back all dirty inodes to free up some of the excess reserved
764 * metadata space. This reduces the chances that the eofblocks scan
765 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
766 * also behaves as a filter to prevent too many eofblocks scans from
Darrick J. Wong111068f2021-01-22 16:48:36 -0800767 * running at the same time. Use a synchronous scan to increase the
768 * effectiveness of the scan.
Dave Chinner637bbc72011-01-11 10:17:30 +1100769 */
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800770 if (ret == -EDQUOT && !cleared_space) {
Brian Fosterc3155092017-01-27 23:22:56 -0800771 xfs_iunlock(ip, iolock);
Darrick J. Wong2d53f66b2021-06-07 09:34:51 -0700772 xfs_blockgc_free_quota(ip, XFS_ICWALK_FLAG_SYNC);
Darrick J. Wong111068f2021-01-22 16:48:36 -0800773 cleared_space = true;
774 goto write_retry;
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800775 } else if (ret == -ENOSPC && !cleared_space) {
Brian Fosterdc06f3982014-07-24 19:49:28 +1000776 struct xfs_eofblocks eofb = {0};
777
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800778 cleared_space = true;
Dave Chinner9aa05002012-10-08 21:56:04 +1100779 xfs_flush_inodes(ip->i_mount);
Brian Fosterc3155092017-01-27 23:22:56 -0800780
781 xfs_iunlock(ip, iolock);
Darrick J. Wong2d53f66b2021-06-07 09:34:51 -0700782 eofb.eof_flags = XFS_ICWALK_FLAG_SYNC;
Darrick J. Wong85c5b272021-01-22 16:48:39 -0800783 xfs_blockgc_free_space(ip->i_mount, &eofb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100784 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100785 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000786
Dave Chinner637bbc72011-01-11 10:17:30 +1100787 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000788out:
Brian Fosterc3155092017-01-27 23:22:56 -0800789 if (iolock)
790 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700791
792 if (ret > 0) {
793 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
794 /* Handle various SYNC-type writes */
795 ret = generic_write_sync(iocb, ret);
796 }
Dave Chinner637bbc72011-01-11 10:17:30 +1100797 return ret;
798}
799
800STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400801xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000802 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400803 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000804{
805 struct file *file = iocb->ki_filp;
806 struct address_space *mapping = file->f_mapping;
807 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000808 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100809 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400810 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000811
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100812 XFS_STATS_INC(ip->i_mount, xs_write_calls);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000813
Dave Chinner637bbc72011-01-11 10:17:30 +1100814 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000815 return 0;
816
Al Virobf97f3bc2014-04-03 14:20:23 -0400817 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
818 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000819
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000820 if (IS_DAX(inode))
Dave Chinnered5c3e62018-05-02 12:54:52 -0700821 return xfs_file_dax_write(iocb, from);
822
823 if (iocb->ki_flags & IOCB_DIRECT) {
Darrick J. Wong0613f162016-10-03 09:11:37 -0700824 /*
825 * Allow a directio write to fall back to a buffered
826 * write *only* in the case that we're doing a reflink
827 * CoW. In all other directio scenarios we do not
828 * allow an operation to fall back to buffered mode.
829 */
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800830 ret = xfs_file_dio_write(iocb, from);
Christoph Hellwig80e543a2020-07-23 22:45:58 -0700831 if (ret != -ENOTBLK)
Dave Chinnered5c3e62018-05-02 12:54:52 -0700832 return ret;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700833 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000834
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800835 return xfs_file_buffered_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000836}
837
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700838static void
839xfs_wait_dax_page(
Dave Jiange25ff832018-08-10 08:48:18 -0700840 struct inode *inode)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700841{
842 struct xfs_inode *ip = XFS_I(inode);
843
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700844 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
845 schedule();
846 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
847}
848
849static int
850xfs_break_dax_layouts(
851 struct inode *inode,
Dave Jiange25ff832018-08-10 08:48:18 -0700852 bool *retry)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700853{
854 struct page *page;
855
856 ASSERT(xfs_isilocked(XFS_I(inode), XFS_MMAPLOCK_EXCL));
857
858 page = dax_layout_busy_page(inode->i_mapping);
859 if (!page)
860 return 0;
861
Dave Jiange25ff832018-08-10 08:48:18 -0700862 *retry = true;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700863 return ___wait_var_event(&page->_refcount,
864 atomic_read(&page->_refcount) == 1, TASK_INTERRUPTIBLE,
Dave Jiange25ff832018-08-10 08:48:18 -0700865 0, 0, xfs_wait_dax_page(inode));
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700866}
867
Dan Williams69eb5fa2018-03-20 14:42:38 -0700868int
869xfs_break_layouts(
870 struct inode *inode,
871 uint *iolock,
872 enum layout_break_reason reason)
873{
874 bool retry;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700875 int error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700876
877 ASSERT(xfs_isilocked(XFS_I(inode), XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL));
878
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700879 do {
880 retry = false;
881 switch (reason) {
882 case BREAK_UNMAP:
Eric Sandeena4722a62018-07-11 22:26:36 -0700883 error = xfs_break_dax_layouts(inode, &retry);
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700884 if (error || retry)
885 break;
886 /* fall through */
887 case BREAK_WRITE:
888 error = xfs_break_leased_layouts(inode, iolock, &retry);
889 break;
890 default:
891 WARN_ON_ONCE(1);
892 error = -EINVAL;
893 }
894 } while (error == 0 && retry);
895
896 return error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700897}
898
Namjae Jeona904b1c2015-03-25 15:08:56 +1100899#define XFS_FALLOC_FL_SUPPORTED \
900 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
901 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE | \
Darrick J. Wong98cc2db2016-10-03 09:11:43 -0700902 FALLOC_FL_INSERT_RANGE | FALLOC_FL_UNSHARE_RANGE)
Namjae Jeona904b1c2015-03-25 15:08:56 +1100903
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100904STATIC long
905xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700906 struct file *file,
907 int mode,
908 loff_t offset,
909 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100910{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700911 struct inode *inode = file_inode(file);
912 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700913 long error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100914 enum xfs_prealloc_flags flags = 0;
Dan Williamsc63a8ea2018-03-12 14:12:29 -0700915 uint iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700916 loff_t new_size = 0;
Thomas Meyer749f24f2017-10-09 11:38:54 -0700917 bool do_file_insert = false;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100918
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700919 if (!S_ISREG(inode->i_mode))
920 return -EINVAL;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100921 if (mode & ~XFS_FALLOC_FL_SUPPORTED)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100922 return -EOPNOTSUPP;
923
Christoph Hellwig781355c2015-02-16 11:59:50 +1100924 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700925 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100926 if (error)
927 goto out_unlock;
928
Dave Chinner249bd902019-10-29 13:04:32 -0700929 /*
930 * Must wait for all AIO to complete before we continue as AIO can
931 * change the file size on completion without holding any locks we
932 * currently hold. We must do this first because AIO can update both
933 * the on disk and in memory inode sizes, and the operations that follow
934 * require the in-memory size to be fully up-to-date.
935 */
936 inode_dio_wait(inode);
937
938 /*
939 * Now AIO and DIO has drained we flush and (if necessary) invalidate
940 * the cached range over the first operation we are about to run.
941 *
942 * We care about zero and collapse here because they both run a hole
943 * punch over the range first. Because that can zero data, and the range
944 * of invalidation for the shift operations is much larger, we still do
945 * the required flush for collapse in xfs_prepare_shift().
946 *
947 * Insert has the same range requirements as collapse, and we extend the
948 * file first which can zero data. Hence insert has the same
949 * flush/invalidate requirements as collapse and so they are both
950 * handled at the right time by xfs_prepare_shift().
951 */
952 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE |
953 FALLOC_FL_COLLAPSE_RANGE)) {
954 error = xfs_flush_unmap_range(ip, offset, len);
955 if (error)
956 goto out_unlock;
957 }
958
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700959 if (mode & FALLOC_FL_PUNCH_HOLE) {
960 error = xfs_free_file_space(ip, offset, len);
961 if (error)
962 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100963 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
Darrick J. Wong25219db2020-10-09 16:42:59 -0700964 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Dave Chinner24513372014-06-25 14:58:08 +1000965 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100966 goto out_unlock;
967 }
968
Lukas Czerner23fffa92014-04-12 09:56:41 -0400969 /*
970 * There is no need to overlap collapse range with EOF,
971 * in which case it is effectively a truncate operation
972 */
973 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000974 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400975 goto out_unlock;
976 }
977
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100978 new_size = i_size_read(inode) - len;
979
980 error = xfs_collapse_file_space(ip, offset, len);
981 if (error)
982 goto out_unlock;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100983 } else if (mode & FALLOC_FL_INSERT_RANGE) {
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700984 loff_t isize = i_size_read(inode);
Namjae Jeona904b1c2015-03-25 15:08:56 +1100985
Darrick J. Wong25219db2020-10-09 16:42:59 -0700986 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100987 error = -EINVAL;
988 goto out_unlock;
989 }
990
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700991 /*
992 * New inode size must not exceed ->s_maxbytes, accounting for
993 * possible signed overflow.
994 */
995 if (inode->i_sb->s_maxbytes - isize < len) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100996 error = -EFBIG;
997 goto out_unlock;
998 }
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700999 new_size = isize + len;
Namjae Jeona904b1c2015-03-25 15:08:56 +11001000
1001 /* Offset should be less than i_size */
Darrick J. Wong7d83fb12018-04-16 23:07:45 -07001002 if (offset >= isize) {
Namjae Jeona904b1c2015-03-25 15:08:56 +11001003 error = -EINVAL;
1004 goto out_unlock;
1005 }
Thomas Meyer749f24f2017-10-09 11:38:54 -07001006 do_file_insert = true;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001007 } else {
Christoph Hellwig8add71c2015-02-02 09:53:56 +11001008 flags |= XFS_PREALLOC_SET;
1009
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001010 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
1011 offset + len > i_size_read(inode)) {
1012 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +10001013 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001014 if (error)
1015 goto out_unlock;
1016 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001017
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001018 if (mode & FALLOC_FL_ZERO_RANGE) {
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001019 /*
1020 * Punch a hole and prealloc the range. We use a hole
1021 * punch rather than unwritten extent conversion for two
1022 * reasons:
1023 *
1024 * 1.) Hole punch handles partial block zeroing for us.
1025 * 2.) If prealloc returns ENOSPC, the file range is
1026 * still zero-valued by virtue of the hole punch.
1027 */
1028 unsigned int blksize = i_blocksize(inode);
1029
1030 trace_xfs_zero_file_space(ip);
1031
1032 error = xfs_free_file_space(ip, offset, len);
1033 if (error)
1034 goto out_unlock;
1035
1036 len = round_up(offset + len, blksize) -
1037 round_down(offset, blksize);
1038 offset = round_down(offset, blksize);
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001039 } else if (mode & FALLOC_FL_UNSHARE_RANGE) {
1040 error = xfs_reflink_unshare(ip, offset, len);
1041 if (error)
1042 goto out_unlock;
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001043 } else {
1044 /*
1045 * If always_cow mode we can't use preallocations and
1046 * thus should not create them.
1047 */
1048 if (xfs_is_always_cow_inode(ip)) {
1049 error = -EOPNOTSUPP;
1050 goto out_unlock;
1051 }
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001052 }
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001053
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001054 if (!xfs_is_always_cow_inode(ip)) {
Lukas Czerner376ba312014-03-13 19:07:58 +11001055 error = xfs_alloc_file_space(ip, offset, len,
1056 XFS_BMAPI_PREALLOC);
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001057 if (error)
1058 goto out_unlock;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001059 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001060 }
1061
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001062 if (file->f_flags & O_DSYNC)
Christoph Hellwig8add71c2015-02-02 09:53:56 +11001063 flags |= XFS_PREALLOC_SYNC;
1064
1065 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001066 if (error)
1067 goto out_unlock;
1068
1069 /* Change file size if needed */
1070 if (new_size) {
1071 struct iattr iattr;
1072
1073 iattr.ia_valid = ATTR_SIZE;
1074 iattr.ia_size = new_size;
Christoph Hellwigf736d932021-01-21 14:19:58 +01001075 error = xfs_vn_setattr_size(file_mnt_user_ns(file),
1076 file_dentry(file), &iattr);
Namjae Jeona904b1c2015-03-25 15:08:56 +11001077 if (error)
1078 goto out_unlock;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001079 }
1080
Namjae Jeona904b1c2015-03-25 15:08:56 +11001081 /*
1082 * Perform hole insertion now that the file size has been
1083 * updated so that if we crash during the operation we don't
1084 * leave shifted extents past EOF and hence losing access to
1085 * the data that is contained within them.
1086 */
1087 if (do_file_insert)
1088 error = xfs_insert_file_space(ip, offset, len);
1089
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001090out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +11001091 xfs_iunlock(ip, iolock);
Dave Chinner24513372014-06-25 14:58:08 +10001092 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001093}
1094
Jan Kara40144e42019-08-29 09:04:12 -07001095STATIC int
1096xfs_file_fadvise(
1097 struct file *file,
1098 loff_t start,
1099 loff_t end,
1100 int advice)
1101{
1102 struct xfs_inode *ip = XFS_I(file_inode(file));
1103 int ret;
1104 int lockflags = 0;
1105
1106 /*
1107 * Operations creating pages in page cache need protection from hole
1108 * punching and similar ops
1109 */
1110 if (advice == POSIX_FADV_WILLNEED) {
1111 lockflags = XFS_IOLOCK_SHARED;
1112 xfs_ilock(ip, lockflags);
1113 }
1114 ret = generic_fadvise(file, start, end, advice);
1115 if (lockflags)
1116 xfs_iunlock(ip, lockflags);
1117 return ret;
1118}
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001119
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001120/* Does this file, inode, or mount want synchronous writes? */
1121static inline bool xfs_file_sync_writes(struct file *filp)
1122{
1123 struct xfs_inode *ip = XFS_I(file_inode(filp));
1124
1125 if (ip->i_mount->m_flags & XFS_MOUNT_WSYNC)
1126 return true;
1127 if (filp->f_flags & (__O_SYNC | O_DSYNC))
1128 return true;
1129 if (IS_SYNC(file_inode(filp)))
1130 return true;
1131
1132 return false;
1133}
1134
Eric Biggersda034bc2018-11-14 21:48:18 -08001135STATIC loff_t
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001136xfs_file_remap_range(
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001137 struct file *file_in,
1138 loff_t pos_in,
1139 struct file *file_out,
1140 loff_t pos_out,
1141 loff_t len,
1142 unsigned int remap_flags)
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001143{
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001144 struct inode *inode_in = file_inode(file_in);
1145 struct xfs_inode *src = XFS_I(inode_in);
1146 struct inode *inode_out = file_inode(file_out);
1147 struct xfs_inode *dest = XFS_I(inode_out);
1148 struct xfs_mount *mp = src->i_mount;
1149 loff_t remapped = 0;
1150 xfs_extlen_t cowextsize;
1151 int ret;
1152
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001153 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1154 return -EINVAL;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001155
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001156 if (!xfs_sb_version_hasreflink(&mp->m_sb))
1157 return -EOPNOTSUPP;
1158
1159 if (XFS_FORCED_SHUTDOWN(mp))
1160 return -EIO;
1161
1162 /* Prepare and then clone file data. */
1163 ret = xfs_reflink_remap_prep(file_in, pos_in, file_out, pos_out,
1164 &len, remap_flags);
Darrick J. Wong451d34e2020-06-29 14:47:20 -07001165 if (ret || len == 0)
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001166 return ret;
1167
1168 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
1169
1170 ret = xfs_reflink_remap_blocks(src, pos_in, dest, pos_out, len,
1171 &remapped);
1172 if (ret)
1173 goto out_unlock;
1174
1175 /*
1176 * Carry the cowextsize hint from src to dest if we're sharing the
1177 * entire source file to the entire destination file, the source file
1178 * has a cowextsize hint, and the destination file does not.
1179 */
1180 cowextsize = 0;
1181 if (pos_in == 0 && len == i_size_read(inode_in) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001182 (src->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001183 pos_out == 0 && len >= i_size_read(inode_out) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001184 !(dest->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE))
Christoph Hellwigb33ce572021-03-29 11:11:42 -07001185 cowextsize = src->i_cowextsize;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001186
1187 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1188 remap_flags);
Christoph Hellwig58331122020-04-03 11:45:37 -07001189 if (ret)
1190 goto out_unlock;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001191
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001192 if (xfs_file_sync_writes(file_in) || xfs_file_sync_writes(file_out))
Christoph Hellwig58331122020-04-03 11:45:37 -07001193 xfs_log_force_inode(dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001194out_unlock:
Darrick J. Wonge2aaee92020-06-29 14:47:20 -07001195 xfs_iunlock2_io_mmap(src, dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001196 if (ret)
1197 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1198 return remapped > 0 ? remapped : ret;
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001199}
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001202xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001204 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001206 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001208 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
1209 return -EIO;
Jens Axboef89fb732020-05-22 09:27:33 -06001210 file->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001211 return 0;
1212}
1213
1214STATIC int
1215xfs_dir_open(
1216 struct inode *inode,
1217 struct file *file)
1218{
1219 struct xfs_inode *ip = XFS_I(inode);
1220 int mode;
1221 int error;
1222
1223 error = xfs_file_open(inode, file);
1224 if (error)
1225 return error;
1226
1227 /*
1228 * If there are any blocks, read-ahead block 0 as we're almost
1229 * certain to have the next operation be a read there.
1230 */
Christoph Hellwig309ecac82013-12-06 12:30:09 -08001231 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigdaf83962020-05-18 10:27:22 -07001232 if (ip->i_df.if_nextents > 0)
Christoph Hellwig06566fd2019-11-20 09:46:02 -08001233 error = xfs_dir3_data_readahead(ip, 0, 0);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001234 xfs_iunlock(ip, mode);
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08001235 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001239xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 struct inode *inode,
1241 struct file *filp)
1242{
Dave Chinner24513372014-06-25 14:58:08 +10001243 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001247xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -04001248 struct file *file,
1249 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Al Virob8227552013-05-22 17:07:56 -04001251 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001252 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001253 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001255 /*
1256 * The Linux API doesn't pass down the total size of the buffer
1257 * we read into down to the filesystem. With the filldir concept
1258 * it's not needed for correct information, but the XFS dir2 leaf
1259 * code wants an estimate of the buffer size to calculate it's
1260 * readahead window and size the buffers used for mapping to
1261 * physical blocks.
1262 *
1263 * Try to give it an estimate that's good enough, maybe at some
1264 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001265 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001266 */
Christoph Hellwig13d2c102021-03-29 11:11:40 -07001267 bufsize = (size_t)min_t(loff_t, XFS_READDIR_BUFSIZE, ip->i_disk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Darrick J. Wongacb95532017-06-16 11:00:14 -07001269 return xfs_readdir(NULL, ip, ctx, bufsize);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001270}
1271
1272STATIC loff_t
1273xfs_file_llseek(
1274 struct file *file,
1275 loff_t offset,
Eric Sandeen59f9c002014-09-09 11:57:10 +10001276 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001277{
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001278 struct inode *inode = file->f_mapping->host;
1279
1280 if (XFS_FORCED_SHUTDOWN(XFS_I(inode)->i_mount))
1281 return -EIO;
1282
Eric Sandeen59f9c002014-09-09 11:57:10 +10001283 switch (whence) {
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001284 default:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001285 return generic_file_llseek(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001286 case SEEK_HOLE:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001287 offset = iomap_seek_hole(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001288 break;
Eric Sandeen49c69592014-09-09 11:56:48 +10001289 case SEEK_DATA:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001290 offset = iomap_seek_data(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001291 break;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001292 }
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001293
1294 if (offset < 0)
1295 return offset;
1296 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001297}
1298
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001299/*
1300 * Locking for serialisation of IO during page faults. This results in a lock
1301 * ordering of:
1302 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001303 * mmap_lock (MM)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001304 * sb_start_pagefault(vfs, freeze)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001305 * i_mmaplock (XFS - truncate serialisation)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001306 * page_lock (MM)
1307 * i_lock (XFS - extent map serialisation)
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001308 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001309static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001310__xfs_filemap_fault(
Dave Jiangc791ace2017-02-24 14:57:08 -08001311 struct vm_fault *vmf,
Christoph Hellwigd522d562017-08-29 10:08:41 -07001312 enum page_entry_size pe_size,
1313 bool write_fault)
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001314{
Dave Jiangf4200392017-02-22 15:40:06 -08001315 struct inode *inode = file_inode(vmf->vma->vm_file);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001316 struct xfs_inode *ip = XFS_I(inode);
Souptick Joarder05edd882018-05-29 10:39:03 -07001317 vm_fault_t ret;
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001318
Christoph Hellwigd522d562017-08-29 10:08:41 -07001319 trace_xfs_filemap_fault(ip, pe_size, write_fault);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001320
Christoph Hellwigd522d562017-08-29 10:08:41 -07001321 if (write_fault) {
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001322 sb_start_pagefault(inode->i_sb);
Dave Jiangf4200392017-02-22 15:40:06 -08001323 file_update_time(vmf->vma->vm_file);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001324 }
1325
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001326 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001327 if (IS_DAX(inode)) {
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001328 pfn_t pfn;
1329
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001330 ret = dax_iomap_fault(vmf, pe_size, &pfn, NULL,
1331 (write_fault && !vmf->cow_page) ?
Christoph Hellwigf150b422019-10-19 09:09:46 -07001332 &xfs_direct_write_iomap_ops :
1333 &xfs_read_iomap_ops);
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001334 if (ret & VM_FAULT_NEEDDSYNC)
1335 ret = dax_finish_sync_fault(vmf, pe_size, pfn);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001336 } else {
1337 if (write_fault)
Christoph Hellwigf150b422019-10-19 09:09:46 -07001338 ret = iomap_page_mkwrite(vmf,
1339 &xfs_buffered_write_iomap_ops);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001340 else
1341 ret = filemap_fault(vmf);
1342 }
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001343 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001344
Christoph Hellwigd522d562017-08-29 10:08:41 -07001345 if (write_fault)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001346 sb_end_pagefault(inode->i_sb);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001347 return ret;
1348}
1349
Mikulas Patockab17164e2020-09-05 08:13:02 -04001350static inline bool
1351xfs_is_write_fault(
1352 struct vm_fault *vmf)
1353{
1354 return (vmf->flags & FAULT_FLAG_WRITE) &&
1355 (vmf->vma->vm_flags & VM_SHARED);
1356}
1357
Souptick Joarder05edd882018-05-29 10:39:03 -07001358static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001359xfs_filemap_fault(
1360 struct vm_fault *vmf)
1361{
1362 /* DAX can shortcut the normal fault path on write faults! */
1363 return __xfs_filemap_fault(vmf, PE_SIZE_PTE,
1364 IS_DAX(file_inode(vmf->vma->vm_file)) &&
Mikulas Patockab17164e2020-09-05 08:13:02 -04001365 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001366}
1367
Souptick Joarder05edd882018-05-29 10:39:03 -07001368static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001369xfs_filemap_huge_fault(
1370 struct vm_fault *vmf,
1371 enum page_entry_size pe_size)
1372{
1373 if (!IS_DAX(file_inode(vmf->vma->vm_file)))
1374 return VM_FAULT_FALLBACK;
1375
1376 /* DAX can shortcut the normal fault path on write faults! */
1377 return __xfs_filemap_fault(vmf, pe_size,
Mikulas Patockab17164e2020-09-05 08:13:02 -04001378 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001379}
1380
Souptick Joarder05edd882018-05-29 10:39:03 -07001381static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001382xfs_filemap_page_mkwrite(
1383 struct vm_fault *vmf)
1384{
1385 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
1386}
1387
Dave Chinner3af49282015-11-03 12:37:02 +11001388/*
Jan Kara7b565c92017-11-01 16:36:46 +01001389 * pfn_mkwrite was originally intended to ensure we capture time stamp updates
1390 * on write faults. In reality, it needs to serialise against truncate and
1391 * prepare memory for writing so handle is as standard write fault.
Dave Chinner3af49282015-11-03 12:37:02 +11001392 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001393static vm_fault_t
Dave Chinner3af49282015-11-03 12:37:02 +11001394xfs_filemap_pfn_mkwrite(
Dave Chinner3af49282015-11-03 12:37:02 +11001395 struct vm_fault *vmf)
1396{
1397
Jan Kara7b565c92017-11-01 16:36:46 +01001398 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
Dave Chinner3af49282015-11-03 12:37:02 +11001399}
1400
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001401static vm_fault_t
Dave Chinnercd647d52020-06-30 11:28:53 -07001402xfs_filemap_map_pages(
1403 struct vm_fault *vmf,
1404 pgoff_t start_pgoff,
1405 pgoff_t end_pgoff)
1406{
1407 struct inode *inode = file_inode(vmf->vma->vm_file);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001408 vm_fault_t ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001409
1410 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001411 ret = filemap_map_pages(vmf, start_pgoff, end_pgoff);
Dave Chinnercd647d52020-06-30 11:28:53 -07001412 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001413 return ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001414}
1415
Dave Chinner6b698ed2015-06-04 09:18:53 +10001416static const struct vm_operations_struct xfs_file_vm_ops = {
1417 .fault = xfs_filemap_fault,
Dave Jianga2d58162017-02-24 14:56:59 -08001418 .huge_fault = xfs_filemap_huge_fault,
Dave Chinnercd647d52020-06-30 11:28:53 -07001419 .map_pages = xfs_filemap_map_pages,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001420 .page_mkwrite = xfs_filemap_page_mkwrite,
Dave Chinner3af49282015-11-03 12:37:02 +11001421 .pfn_mkwrite = xfs_filemap_pfn_mkwrite,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001422};
1423
1424STATIC int
1425xfs_file_mmap(
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001426 struct file *file,
1427 struct vm_area_struct *vma)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001428{
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001429 struct inode *inode = file_inode(file);
1430 struct xfs_buftarg *target = xfs_inode_buftarg(XFS_I(inode));
Pankaj Guptab21fec42019-07-05 19:33:28 +05301431
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001432 /*
Pankaj Guptab21fec42019-07-05 19:33:28 +05301433 * We don't support synchronous mappings for non-DAX files and
1434 * for DAX files if underneath dax_device is not synchronous.
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001435 */
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001436 if (!daxdev_mapping_supported(vma, target->bt_daxdev))
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001437 return -EOPNOTSUPP;
1438
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001439 file_accessed(file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001440 vma->vm_ops = &xfs_file_vm_ops;
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001441 if (IS_DAX(inode))
Dave Jiange1fb4a02018-08-17 15:43:40 -07001442 vma->vm_flags |= VM_HUGEPAGE;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001443 return 0;
Dave Chinner075a9242015-02-23 21:44:54 +11001444}
1445
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001446const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001447 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001448 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001449 .write_iter = xfs_file_write_iter,
Al Viro82c156f2016-09-22 23:35:42 -04001450 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001451 .splice_write = iter_file_splice_write,
Christoph Hellwig81214ba2018-12-04 11:12:08 -07001452 .iopoll = iomap_dio_iopoll,
Nathan Scott3562fd42006-03-14 14:00:35 +11001453 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001455 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001457 .mmap = xfs_file_mmap,
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001458 .mmap_supported_flags = MAP_SYNC,
Nathan Scott3562fd42006-03-14 14:00:35 +11001459 .open = xfs_file_open,
1460 .release = xfs_file_release,
1461 .fsync = xfs_file_fsync,
Toshi Kanidbe6ec82016-10-07 16:59:59 -07001462 .get_unmapped_area = thp_get_unmapped_area,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001463 .fallocate = xfs_file_fallocate,
Jan Kara40144e42019-08-29 09:04:12 -07001464 .fadvise = xfs_file_fadvise,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001465 .remap_file_range = xfs_file_remap_range,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466};
1467
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001468const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001469 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -04001471 .iterate_shared = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001472 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001473 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001474#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001475 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001476#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001477 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478};