blob: 22ad207bedf4e66c695dfe9ff2d557dd45cc1189 [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
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700122static xfs_csn_t
123xfs_fsync_seq(
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800124 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;
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700131 return ip->i_itemp->ili_commit_seq;
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800132}
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;
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700154 xfs_csn_t seq;
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800155
156 xfs_ilock(ip, XFS_ILOCK_SHARED);
Dave Chinner5f9b4b02021-06-18 08:21:52 -0700157 seq = xfs_fsync_seq(ip, datasync);
158 if (seq) {
159 error = xfs_log_force_seq(ip->i_mount, seq, XFS_LOG_SYNC,
Christoph Hellwigf22c7f82021-01-22 16:48:25 -0800160 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
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700188 if (xfs_is_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))
Dave Chinnerb5071ad2021-06-18 08:21:49 -0700200 blkdev_issue_flush(mp->m_rtdev_targp->bt_bdev);
Dave Chinner2291dab2016-12-09 16:49:54 +1100201 else if (mp->m_logdev_targp != mp->m_ddev_targp)
Dave Chinnerb5071ad2021-06-18 08:21:49 -0700202 blkdev_issue_flush(mp->m_ddev_targp->bt_bdev);
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)
Dave Chinnerb5071ad2021-06-18 08:21:49 -0700222 blkdev_issue_flush(mp->m_ddev_targp->bt_bdev);
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;
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +0200262 ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops, NULL, 0, 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
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700321 if (xfs_is_shutdown(mp))
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000322 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);
Shiyang Ruanf1ba5fa2021-11-29 11:21:49 +0100440 error = xfs_zero_range(ip, isize, iocb->ki_pos - isize, NULL);
Christoph Hellwig467f7892012-03-27 10:34:47 -0400441 if (error)
442 return error;
Dave Chinnerb9d59842015-04-16 22:03:07 +1000443 } else
444 spin_unlock(&ip->i_flags_lock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100445
Dave Chinner977ec4d2021-06-02 15:00:38 -0700446out:
Amir Goldstein8c3f4062019-06-05 08:04:50 -0700447 return file_modified(file);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100448}
449
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100450static int
451xfs_dio_write_end_io(
452 struct kiocb *iocb,
453 ssize_t size,
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700454 int error,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100455 unsigned flags)
456{
457 struct inode *inode = file_inode(iocb->ki_filp);
458 struct xfs_inode *ip = XFS_I(inode);
459 loff_t offset = iocb->ki_pos;
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700460 unsigned int nofs_flag;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100461
462 trace_xfs_end_io_direct_write(ip, offset, size);
463
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700464 if (xfs_is_shutdown(ip->i_mount))
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100465 return -EIO;
466
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700467 if (error)
468 return error;
469 if (!size)
470 return 0;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100471
Dave Chinnered5c3e62018-05-02 12:54:52 -0700472 /*
473 * Capture amount written on completion as we can't reliably account
474 * for it on submission.
475 */
476 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, size);
477
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700478 /*
479 * We can allocate memory here while doing writeback on behalf of
480 * memory reclaim. To avoid memory allocation deadlocks set the
481 * task-wide nofs context for the following operations.
482 */
483 nofs_flag = memalloc_nofs_save();
484
Eryu Guanee70daa2017-09-21 11:26:18 -0700485 if (flags & IOMAP_DIO_COW) {
486 error = xfs_reflink_end_cow(ip, offset, size);
487 if (error)
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700488 goto out;
Eryu Guanee70daa2017-09-21 11:26:18 -0700489 }
490
491 /*
492 * Unwritten conversion updates the in-core isize after extent
493 * conversion but before updating the on-disk size. Updating isize any
494 * earlier allows a racing dio read to find unwritten extents before
495 * they are converted.
496 */
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700497 if (flags & IOMAP_DIO_UNWRITTEN) {
498 error = xfs_iomap_write_unwritten(ip, offset, size, true);
499 goto out;
500 }
Eryu Guanee70daa2017-09-21 11:26:18 -0700501
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100502 /*
503 * We need to update the in-core inode size here so that we don't end up
504 * with the on-disk inode size being outside the in-core inode size. We
505 * have no other method of updating EOF for AIO, so always do it here
506 * if necessary.
507 *
508 * We need to lock the test/set EOF update as we can be racing with
509 * other IO completions here to update the EOF. Failing to serialise
510 * here can result in EOF moving backwards and Bad Things Happen when
511 * that occurs.
Dave Chinner977ec4d2021-06-02 15:00:38 -0700512 *
513 * As IO completion only ever extends EOF, we can do an unlocked check
514 * here to avoid taking the spinlock. If we land within the current EOF,
515 * then we do not need to do an extending update at all, and we don't
516 * need to take the lock to check this. If we race with an update moving
517 * EOF, then we'll either still be beyond EOF and need to take the lock,
518 * or we'll be within EOF and we don't need to take it at all.
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100519 */
Dave Chinner977ec4d2021-06-02 15:00:38 -0700520 if (offset + size <= i_size_read(inode))
521 goto out;
522
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100523 spin_lock(&ip->i_flags_lock);
524 if (offset + size > i_size_read(inode)) {
525 i_size_write(inode, offset + size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700526 spin_unlock(&ip->i_flags_lock);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100527 error = xfs_setfilesize(ip, offset, size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700528 } else {
529 spin_unlock(&ip->i_flags_lock);
530 }
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100531
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700532out:
533 memalloc_nofs_restore(nofs_flag);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100534 return error;
535}
536
Christoph Hellwig838c4f32019-09-19 15:32:45 -0700537static const struct iomap_dio_ops xfs_dio_write_ops = {
538 .end_io = xfs_dio_write_end_io,
539};
540
Dave Chinner4d8d1582011-01-11 10:23:42 +1100541/*
Dave Chinnercaa89db2021-01-23 10:06:30 -0800542 * Handle block aligned direct I/O writes
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100543 */
Dave Chinnercaa89db2021-01-23 10:06:30 -0800544static noinline ssize_t
545xfs_file_dio_write_aligned(
546 struct xfs_inode *ip,
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100547 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400548 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100549{
Dave Chinnercaa89db2021-01-23 10:06:30 -0800550 int iolock = XFS_IOLOCK_SHARED;
551 ssize_t ret;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100552
Dave Chinnercaa89db2021-01-23 10:06:30 -0800553 ret = xfs_ilock_iocb(iocb, iolock);
554 if (ret)
555 return ret;
556 ret = xfs_file_write_checks(iocb, from, &iolock);
557 if (ret)
558 goto out_unlock;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100559
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100560 /*
Dave Chinnercaa89db2021-01-23 10:06:30 -0800561 * We don't need to hold the IOLOCK exclusively across the IO, so demote
562 * the iolock back to shared if we had to take the exclusive lock in
563 * xfs_file_write_checks() for other reasons.
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100564 */
Dave Chinnercaa89db2021-01-23 10:06:30 -0800565 if (iolock == XFS_IOLOCK_EXCL) {
566 xfs_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000567 iolock = XFS_IOLOCK_SHARED;
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000568 }
Dave Chinnercaa89db2021-01-23 10:06:30 -0800569 trace_xfs_file_direct_write(iocb, from);
570 ret = iomap_dio_rw(iocb, from, &xfs_direct_write_iomap_ops,
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +0200571 &xfs_dio_write_ops, 0, 0);
Dave Chinnercaa89db2021-01-23 10:06:30 -0800572out_unlock:
573 if (iolock)
574 xfs_iunlock(ip, iolock);
575 return ret;
576}
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100577
Dave Chinnercaa89db2021-01-23 10:06:30 -0800578/*
579 * Handle block unaligned direct I/O writes
580 *
581 * In most cases direct I/O writes will be done holding IOLOCK_SHARED, allowing
582 * them to be done in parallel with reads and other direct I/O writes. However,
583 * if the I/O is not aligned to filesystem blocks, the direct I/O layer may need
584 * to do sub-block zeroing and that requires serialisation against other direct
585 * I/O to the same block. In this case we need to serialise the submission of
586 * the unaligned I/O so that we don't get racing block zeroing in the dio layer.
Dave Chinnered1128c2021-01-23 10:06:31 -0800587 * In the case where sub-block zeroing is not required, we can do concurrent
588 * sub-block dios to the same block successfully.
Dave Chinnercaa89db2021-01-23 10:06:30 -0800589 *
Dave Chinnered1128c2021-01-23 10:06:31 -0800590 * Optimistically submit the I/O using the shared lock first, but use the
591 * IOMAP_DIO_OVERWRITE_ONLY flag to tell the lower layers to return -EAGAIN
592 * if block allocation or partial block zeroing would be required. In that case
593 * we try again with the exclusive lock.
Dave Chinnercaa89db2021-01-23 10:06:30 -0800594 */
595static noinline ssize_t
596xfs_file_dio_write_unaligned(
597 struct xfs_inode *ip,
598 struct kiocb *iocb,
599 struct iov_iter *from)
600{
Dave Chinnered1128c2021-01-23 10:06:31 -0800601 size_t isize = i_size_read(VFS_I(ip));
602 size_t count = iov_iter_count(from);
603 int iolock = XFS_IOLOCK_SHARED;
604 unsigned int flags = IOMAP_DIO_OVERWRITE_ONLY;
Dave Chinnercaa89db2021-01-23 10:06:30 -0800605 ssize_t ret;
606
Dave Chinnered1128c2021-01-23 10:06:31 -0800607 /*
608 * Extending writes need exclusivity because of the sub-block zeroing
609 * that the DIO code always does for partial tail blocks beyond EOF, so
610 * don't even bother trying the fast path in this case.
611 */
612 if (iocb->ki_pos > isize || iocb->ki_pos + count >= isize) {
613retry_exclusive:
614 if (iocb->ki_flags & IOCB_NOWAIT)
615 return -EAGAIN;
616 iolock = XFS_IOLOCK_EXCL;
617 flags = IOMAP_DIO_FORCE_WAIT;
618 }
619
620 ret = xfs_ilock_iocb(iocb, iolock);
621 if (ret)
622 return ret;
Dave Chinnercaa89db2021-01-23 10:06:30 -0800623
624 /*
625 * We can't properly handle unaligned direct I/O to reflink files yet,
626 * as we can't unshare a partial block.
627 */
628 if (xfs_is_cow_inode(ip)) {
629 trace_xfs_reflink_bounce_dio_write(iocb, from);
630 ret = -ENOTBLK;
631 goto out_unlock;
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500632 }
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100633
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800634 ret = xfs_file_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100635 if (ret)
Dave Chinnercaa89db2021-01-23 10:06:30 -0800636 goto out_unlock;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100637
Dave Chinnereda77982011-01-11 10:22:40 +1100638 /*
Dave Chinnered1128c2021-01-23 10:06:31 -0800639 * If we are doing exclusive unaligned I/O, this must be the only I/O
640 * in-flight. Otherwise we risk data corruption due to unwritten extent
641 * conversions from the AIO end_io handler. Wait for all other I/O to
642 * drain first.
Dave Chinnereda77982011-01-11 10:22:40 +1100643 */
Dave Chinnered1128c2021-01-23 10:06:31 -0800644 if (flags & IOMAP_DIO_FORCE_WAIT)
645 inode_dio_wait(VFS_I(ip));
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100646
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800647 trace_xfs_file_direct_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700648 ret = iomap_dio_rw(iocb, from, &xfs_direct_write_iomap_ops,
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +0200649 &xfs_dio_write_ops, flags, 0);
Dave Chinnered1128c2021-01-23 10:06:31 -0800650
651 /*
652 * Retry unaligned I/O with exclusive blocking semantics if the DIO
653 * layer rejected it for mapping or locking reasons. If we are doing
654 * nonblocking user I/O, propagate the error.
655 */
656 if (ret == -EAGAIN && !(iocb->ki_flags & IOCB_NOWAIT)) {
657 ASSERT(flags & IOMAP_DIO_OVERWRITE_ONLY);
658 xfs_iunlock(ip, iolock);
659 goto retry_exclusive;
660 }
661
Dave Chinnercaa89db2021-01-23 10:06:30 -0800662out_unlock:
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800663 if (iolock)
664 xfs_iunlock(ip, iolock);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000665 return ret;
666}
667
Dave Chinnercaa89db2021-01-23 10:06:30 -0800668static ssize_t
669xfs_file_dio_write(
670 struct kiocb *iocb,
671 struct iov_iter *from)
672{
673 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
674 struct xfs_buftarg *target = xfs_inode_buftarg(ip);
675 size_t count = iov_iter_count(from);
676
677 /* direct I/O must be aligned to device logical sector size */
678 if ((iocb->ki_pos | count) & target->bt_logical_sectormask)
679 return -EINVAL;
680 if ((iocb->ki_pos | count) & ip->i_mount->m_blockmask)
681 return xfs_file_dio_write_unaligned(ip, iocb, from);
682 return xfs_file_dio_write_aligned(ip, iocb, from);
683}
684
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000685static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000686xfs_file_dax_write(
687 struct kiocb *iocb,
688 struct iov_iter *from)
689{
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000690 struct inode *inode = iocb->ki_filp->f_mapping->host;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000691 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig17879e82016-09-19 11:24:50 +1000692 int iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000693 ssize_t ret, error = 0;
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000694 loff_t pos;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000695
Christoph Hellwigf50b8f42021-01-23 10:06:27 -0800696 ret = xfs_ilock_iocb(iocb, iolock);
697 if (ret)
698 return ret;
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800699 ret = xfs_file_write_checks(iocb, from, &iolock);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000700 if (ret)
701 goto out;
702
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000703 pos = iocb->ki_pos;
Dave Chinner8b2180b2016-08-17 08:31:33 +1000704
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800705 trace_xfs_file_dax_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700706 ret = dax_iomap_rw(iocb, from, &xfs_direct_write_iomap_ops);
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000707 if (ret > 0 && iocb->ki_pos > i_size_read(inode)) {
708 i_size_write(inode, iocb->ki_pos);
709 error = xfs_setfilesize(ip, pos, ret);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000710 }
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000711out:
Christoph Hellwig354be7e2021-01-23 10:06:28 -0800712 if (iolock)
713 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700714 if (error)
715 return error;
716
717 if (ret > 0) {
718 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
719
720 /* Handle various SYNC-type writes */
721 ret = generic_write_sync(iocb, ret);
722 }
723 return ret;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100724}
725
Christoph Hellwig00258e32010-02-15 09:44:47 +0000726STATIC ssize_t
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800727xfs_file_buffered_write(
Dave Chinner637bbc72011-01-11 10:17:30 +1100728 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400729 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100730{
731 struct file *file = iocb->ki_filp;
732 struct address_space *mapping = file->f_mapping;
733 struct inode *inode = mapping->host;
734 struct xfs_inode *ip = XFS_I(inode);
735 ssize_t ret;
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800736 bool cleared_space = false;
Brian Fosterc3155092017-01-27 23:22:56 -0800737 int iolock;
Dave Chinner637bbc72011-01-11 10:17:30 +1100738
Christoph Hellwig91f99432017-08-29 16:13:20 +0200739 if (iocb->ki_flags & IOCB_NOWAIT)
740 return -EOPNOTSUPP;
741
Brian Fosterc3155092017-01-27 23:22:56 -0800742write_retry:
743 iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100744 xfs_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100745
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800746 ret = xfs_file_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100747 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000748 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100749
750 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100751 current->backing_dev_info = inode_to_bdi(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100752
Christoph Hellwig3e40b132021-01-23 10:06:29 -0800753 trace_xfs_file_buffered_write(iocb, from);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700754 ret = iomap_file_buffered_write(iocb, from,
755 &xfs_buffered_write_iomap_ops);
Al Viro0a64bc22014-02-11 22:25:22 -0500756 if (likely(ret >= 0))
Al Viro99733fa2015-04-07 14:25:18 -0400757 iocb->ki_pos += ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000758
Dave Chinner637bbc72011-01-11 10:17:30 +1100759 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000760 * If we hit a space limit, try to free up some lingering preallocated
761 * space before returning an error. In the case of ENOSPC, first try to
762 * write back all dirty inodes to free up some of the excess reserved
763 * metadata space. This reduces the chances that the eofblocks scan
764 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
765 * also behaves as a filter to prevent too many eofblocks scans from
Darrick J. Wong111068f2021-01-22 16:48:36 -0800766 * running at the same time. Use a synchronous scan to increase the
767 * effectiveness of the scan.
Dave Chinner637bbc72011-01-11 10:17:30 +1100768 */
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800769 if (ret == -EDQUOT && !cleared_space) {
Brian Fosterc3155092017-01-27 23:22:56 -0800770 xfs_iunlock(ip, iolock);
Darrick J. Wong2d53f66b2021-06-07 09:34:51 -0700771 xfs_blockgc_free_quota(ip, XFS_ICWALK_FLAG_SYNC);
Darrick J. Wong111068f2021-01-22 16:48:36 -0800772 cleared_space = true;
773 goto write_retry;
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800774 } else if (ret == -ENOSPC && !cleared_space) {
Darrick J. Wongb26b2bf2021-06-07 09:34:51 -0700775 struct xfs_icwalk icw = {0};
Brian Fosterdc06f3982014-07-24 19:49:28 +1000776
Darrick J. Wonga636b1d2021-01-22 16:48:34 -0800777 cleared_space = true;
Dave Chinner9aa05002012-10-08 21:56:04 +1100778 xfs_flush_inodes(ip->i_mount);
Brian Fosterc3155092017-01-27 23:22:56 -0800779
780 xfs_iunlock(ip, iolock);
Darrick J. Wongb26b2bf2021-06-07 09:34:51 -0700781 icw.icw_flags = XFS_ICWALK_FLAG_SYNC;
782 xfs_blockgc_free_space(ip->i_mount, &icw);
Dave Chinner9aa05002012-10-08 21:56:04 +1100783 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100784 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000785
Dave Chinner637bbc72011-01-11 10:17:30 +1100786 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000787out:
Brian Fosterc3155092017-01-27 23:22:56 -0800788 if (iolock)
789 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700790
791 if (ret > 0) {
792 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
793 /* Handle various SYNC-type writes */
794 ret = generic_write_sync(iocb, ret);
795 }
Dave Chinner637bbc72011-01-11 10:17:30 +1100796 return ret;
797}
798
799STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400800xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000801 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400802 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000803{
804 struct file *file = iocb->ki_filp;
805 struct address_space *mapping = file->f_mapping;
806 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000807 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100808 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400809 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000810
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100811 XFS_STATS_INC(ip->i_mount, xs_write_calls);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000812
Dave Chinner637bbc72011-01-11 10:17:30 +1100813 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000814 return 0;
815
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700816 if (xfs_is_shutdown(ip->i_mount))
Al Virobf97f3bc2014-04-03 14:20:23 -0400817 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000818
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000819 if (IS_DAX(inode))
Dave Chinnered5c3e62018-05-02 12:54:52 -0700820 return xfs_file_dax_write(iocb, from);
821
822 if (iocb->ki_flags & IOCB_DIRECT) {
Darrick J. Wong0613f162016-10-03 09:11:37 -0700823 /*
824 * Allow a directio write to fall back to a buffered
825 * write *only* in the case that we're doing a reflink
826 * CoW. In all other directio scenarios we do not
827 * allow an operation to fall back to buffered mode.
828 */
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800829 ret = xfs_file_dio_write(iocb, from);
Christoph Hellwig80e543a2020-07-23 22:45:58 -0700830 if (ret != -ENOTBLK)
Dave Chinnered5c3e62018-05-02 12:54:52 -0700831 return ret;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700832 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000833
Christoph Hellwigee1b2182021-01-23 10:06:28 -0800834 return xfs_file_buffered_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000835}
836
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700837static void
838xfs_wait_dax_page(
Dave Jiange25ff832018-08-10 08:48:18 -0700839 struct inode *inode)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700840{
841 struct xfs_inode *ip = XFS_I(inode);
842
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700843 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
844 schedule();
845 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
846}
847
848static int
849xfs_break_dax_layouts(
850 struct inode *inode,
Dave Jiange25ff832018-08-10 08:48:18 -0700851 bool *retry)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700852{
853 struct page *page;
854
855 ASSERT(xfs_isilocked(XFS_I(inode), XFS_MMAPLOCK_EXCL));
856
857 page = dax_layout_busy_page(inode->i_mapping);
858 if (!page)
859 return 0;
860
Dave Jiange25ff832018-08-10 08:48:18 -0700861 *retry = true;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700862 return ___wait_var_event(&page->_refcount,
863 atomic_read(&page->_refcount) == 1, TASK_INTERRUPTIBLE,
Dave Jiange25ff832018-08-10 08:48:18 -0700864 0, 0, xfs_wait_dax_page(inode));
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700865}
866
Dan Williams69eb5fa2018-03-20 14:42:38 -0700867int
868xfs_break_layouts(
869 struct inode *inode,
870 uint *iolock,
871 enum layout_break_reason reason)
872{
873 bool retry;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700874 int error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700875
876 ASSERT(xfs_isilocked(XFS_I(inode), XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL));
877
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700878 do {
879 retry = false;
880 switch (reason) {
881 case BREAK_UNMAP:
Eric Sandeena4722a62018-07-11 22:26:36 -0700882 error = xfs_break_dax_layouts(inode, &retry);
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700883 if (error || retry)
884 break;
Gustavo A. R. Silva53004ee2021-04-20 17:54:36 -0500885 fallthrough;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700886 case BREAK_WRITE:
887 error = xfs_break_leased_layouts(inode, iolock, &retry);
888 break;
889 default:
890 WARN_ON_ONCE(1);
891 error = -EINVAL;
892 }
893 } while (error == 0 && retry);
894
895 return error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700896}
897
Namjae Jeona904b1c2015-03-25 15:08:56 +1100898#define XFS_FALLOC_FL_SUPPORTED \
899 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
900 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE | \
Darrick J. Wong98cc2db2016-10-03 09:11:43 -0700901 FALLOC_FL_INSERT_RANGE | FALLOC_FL_UNSHARE_RANGE)
Namjae Jeona904b1c2015-03-25 15:08:56 +1100902
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100903STATIC long
904xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700905 struct file *file,
906 int mode,
907 loff_t offset,
908 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100909{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700910 struct inode *inode = file_inode(file);
911 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700912 long error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100913 enum xfs_prealloc_flags flags = 0;
Dan Williamsc63a8ea2018-03-12 14:12:29 -0700914 uint iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700915 loff_t new_size = 0;
Thomas Meyer749f24f2017-10-09 11:38:54 -0700916 bool do_file_insert = false;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100917
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700918 if (!S_ISREG(inode->i_mode))
919 return -EINVAL;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100920 if (mode & ~XFS_FALLOC_FL_SUPPORTED)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100921 return -EOPNOTSUPP;
922
Christoph Hellwig781355c2015-02-16 11:59:50 +1100923 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700924 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100925 if (error)
926 goto out_unlock;
927
Dave Chinner249bd902019-10-29 13:04:32 -0700928 /*
929 * Must wait for all AIO to complete before we continue as AIO can
930 * change the file size on completion without holding any locks we
931 * currently hold. We must do this first because AIO can update both
932 * the on disk and in memory inode sizes, and the operations that follow
933 * require the in-memory size to be fully up-to-date.
934 */
935 inode_dio_wait(inode);
936
937 /*
938 * Now AIO and DIO has drained we flush and (if necessary) invalidate
939 * the cached range over the first operation we are about to run.
940 *
941 * We care about zero and collapse here because they both run a hole
942 * punch over the range first. Because that can zero data, and the range
943 * of invalidation for the shift operations is much larger, we still do
944 * the required flush for collapse in xfs_prepare_shift().
945 *
946 * Insert has the same range requirements as collapse, and we extend the
947 * file first which can zero data. Hence insert has the same
948 * flush/invalidate requirements as collapse and so they are both
949 * handled at the right time by xfs_prepare_shift().
950 */
951 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE |
952 FALLOC_FL_COLLAPSE_RANGE)) {
953 error = xfs_flush_unmap_range(ip, offset, len);
954 if (error)
955 goto out_unlock;
956 }
957
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700958 if (mode & FALLOC_FL_PUNCH_HOLE) {
959 error = xfs_free_file_space(ip, offset, len);
960 if (error)
961 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100962 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
Darrick J. Wong25219db2020-10-09 16:42:59 -0700963 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Dave Chinner24513372014-06-25 14:58:08 +1000964 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100965 goto out_unlock;
966 }
967
Lukas Czerner23fffa92014-04-12 09:56:41 -0400968 /*
969 * There is no need to overlap collapse range with EOF,
970 * in which case it is effectively a truncate operation
971 */
972 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000973 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400974 goto out_unlock;
975 }
976
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100977 new_size = i_size_read(inode) - len;
978
979 error = xfs_collapse_file_space(ip, offset, len);
980 if (error)
981 goto out_unlock;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100982 } else if (mode & FALLOC_FL_INSERT_RANGE) {
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700983 loff_t isize = i_size_read(inode);
Namjae Jeona904b1c2015-03-25 15:08:56 +1100984
Darrick J. Wong25219db2020-10-09 16:42:59 -0700985 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100986 error = -EINVAL;
987 goto out_unlock;
988 }
989
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700990 /*
991 * New inode size must not exceed ->s_maxbytes, accounting for
992 * possible signed overflow.
993 */
994 if (inode->i_sb->s_maxbytes - isize < len) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100995 error = -EFBIG;
996 goto out_unlock;
997 }
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700998 new_size = isize + len;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100999
1000 /* Offset should be less than i_size */
Darrick J. Wong7d83fb12018-04-16 23:07:45 -07001001 if (offset >= isize) {
Namjae Jeona904b1c2015-03-25 15:08:56 +11001002 error = -EINVAL;
1003 goto out_unlock;
1004 }
Thomas Meyer749f24f2017-10-09 11:38:54 -07001005 do_file_insert = true;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001006 } else {
Christoph Hellwig8add71c2015-02-02 09:53:56 +11001007 flags |= XFS_PREALLOC_SET;
1008
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001009 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
1010 offset + len > i_size_read(inode)) {
1011 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +10001012 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001013 if (error)
1014 goto out_unlock;
1015 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001016
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001017 if (mode & FALLOC_FL_ZERO_RANGE) {
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001018 /*
1019 * Punch a hole and prealloc the range. We use a hole
1020 * punch rather than unwritten extent conversion for two
1021 * reasons:
1022 *
1023 * 1.) Hole punch handles partial block zeroing for us.
1024 * 2.) If prealloc returns ENOSPC, the file range is
1025 * still zero-valued by virtue of the hole punch.
1026 */
1027 unsigned int blksize = i_blocksize(inode);
1028
1029 trace_xfs_zero_file_space(ip);
1030
1031 error = xfs_free_file_space(ip, offset, len);
1032 if (error)
1033 goto out_unlock;
1034
1035 len = round_up(offset + len, blksize) -
1036 round_down(offset, blksize);
1037 offset = round_down(offset, blksize);
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001038 } else if (mode & FALLOC_FL_UNSHARE_RANGE) {
1039 error = xfs_reflink_unshare(ip, offset, len);
1040 if (error)
1041 goto out_unlock;
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001042 } else {
1043 /*
1044 * If always_cow mode we can't use preallocations and
1045 * thus should not create them.
1046 */
1047 if (xfs_is_always_cow_inode(ip)) {
1048 error = -EOPNOTSUPP;
1049 goto out_unlock;
1050 }
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001051 }
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001052
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001053 if (!xfs_is_always_cow_inode(ip)) {
Darrick J. Wong4d1b97f2022-01-07 17:45:51 -08001054 error = xfs_alloc_file_space(ip, offset, len);
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001055 if (error)
1056 goto out_unlock;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001057 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001058 }
1059
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001060 if (file->f_flags & O_DSYNC)
Christoph Hellwig8add71c2015-02-02 09:53:56 +11001061 flags |= XFS_PREALLOC_SYNC;
1062
1063 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001064 if (error)
1065 goto out_unlock;
1066
1067 /* Change file size if needed */
1068 if (new_size) {
1069 struct iattr iattr;
1070
1071 iattr.ia_valid = ATTR_SIZE;
1072 iattr.ia_size = new_size;
Christoph Hellwigf736d932021-01-21 14:19:58 +01001073 error = xfs_vn_setattr_size(file_mnt_user_ns(file),
1074 file_dentry(file), &iattr);
Namjae Jeona904b1c2015-03-25 15:08:56 +11001075 if (error)
1076 goto out_unlock;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001077 }
1078
Namjae Jeona904b1c2015-03-25 15:08:56 +11001079 /*
1080 * Perform hole insertion now that the file size has been
1081 * updated so that if we crash during the operation we don't
1082 * leave shifted extents past EOF and hence losing access to
1083 * the data that is contained within them.
1084 */
1085 if (do_file_insert)
1086 error = xfs_insert_file_space(ip, offset, len);
1087
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001088out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +11001089 xfs_iunlock(ip, iolock);
Dave Chinner24513372014-06-25 14:58:08 +10001090 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001091}
1092
Jan Kara40144e42019-08-29 09:04:12 -07001093STATIC int
1094xfs_file_fadvise(
1095 struct file *file,
1096 loff_t start,
1097 loff_t end,
1098 int advice)
1099{
1100 struct xfs_inode *ip = XFS_I(file_inode(file));
1101 int ret;
1102 int lockflags = 0;
1103
1104 /*
1105 * Operations creating pages in page cache need protection from hole
1106 * punching and similar ops
1107 */
1108 if (advice == POSIX_FADV_WILLNEED) {
1109 lockflags = XFS_IOLOCK_SHARED;
1110 xfs_ilock(ip, lockflags);
1111 }
1112 ret = generic_fadvise(file, start, end, advice);
1113 if (lockflags)
1114 xfs_iunlock(ip, lockflags);
1115 return ret;
1116}
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001117
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001118/* Does this file, inode, or mount want synchronous writes? */
1119static inline bool xfs_file_sync_writes(struct file *filp)
1120{
1121 struct xfs_inode *ip = XFS_I(file_inode(filp));
1122
Dave Chinner0560f312021-08-18 18:46:52 -07001123 if (xfs_has_wsync(ip->i_mount))
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001124 return true;
1125 if (filp->f_flags & (__O_SYNC | O_DSYNC))
1126 return true;
1127 if (IS_SYNC(file_inode(filp)))
1128 return true;
1129
1130 return false;
1131}
1132
Eric Biggersda034bc2018-11-14 21:48:18 -08001133STATIC loff_t
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001134xfs_file_remap_range(
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001135 struct file *file_in,
1136 loff_t pos_in,
1137 struct file *file_out,
1138 loff_t pos_out,
1139 loff_t len,
1140 unsigned int remap_flags)
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001141{
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001142 struct inode *inode_in = file_inode(file_in);
1143 struct xfs_inode *src = XFS_I(inode_in);
1144 struct inode *inode_out = file_inode(file_out);
1145 struct xfs_inode *dest = XFS_I(inode_out);
1146 struct xfs_mount *mp = src->i_mount;
1147 loff_t remapped = 0;
1148 xfs_extlen_t cowextsize;
1149 int ret;
1150
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001151 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1152 return -EINVAL;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001153
Dave Chinner38c26bf2021-08-18 18:46:37 -07001154 if (!xfs_has_reflink(mp))
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001155 return -EOPNOTSUPP;
1156
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001157 if (xfs_is_shutdown(mp))
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001158 return -EIO;
1159
1160 /* Prepare and then clone file data. */
1161 ret = xfs_reflink_remap_prep(file_in, pos_in, file_out, pos_out,
1162 &len, remap_flags);
Darrick J. Wong451d34e2020-06-29 14:47:20 -07001163 if (ret || len == 0)
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001164 return ret;
1165
1166 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
1167
1168 ret = xfs_reflink_remap_blocks(src, pos_in, dest, pos_out, len,
1169 &remapped);
1170 if (ret)
1171 goto out_unlock;
1172
1173 /*
1174 * Carry the cowextsize hint from src to dest if we're sharing the
1175 * entire source file to the entire destination file, the source file
1176 * has a cowextsize hint, and the destination file does not.
1177 */
1178 cowextsize = 0;
1179 if (pos_in == 0 && len == i_size_read(inode_in) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001180 (src->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001181 pos_out == 0 && len >= i_size_read(inode_out) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001182 !(dest->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE))
Christoph Hellwigb33ce572021-03-29 11:11:42 -07001183 cowextsize = src->i_cowextsize;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001184
1185 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1186 remap_flags);
Christoph Hellwig58331122020-04-03 11:45:37 -07001187 if (ret)
1188 goto out_unlock;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001189
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001190 if (xfs_file_sync_writes(file_in) || xfs_file_sync_writes(file_out))
Christoph Hellwig58331122020-04-03 11:45:37 -07001191 xfs_log_force_inode(dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001192out_unlock:
Darrick J. Wonge2aaee92020-06-29 14:47:20 -07001193 xfs_iunlock2_io_mmap(src, dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001194 if (ret)
1195 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1196 return remapped > 0 ? remapped : ret;
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001197}
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001200xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001202 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001204 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return -EFBIG;
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001206 if (xfs_is_shutdown(XFS_M(inode->i_sb)))
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001207 return -EIO;
Jens Axboef89fb732020-05-22 09:27:33 -06001208 file->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001209 return 0;
1210}
1211
1212STATIC int
1213xfs_dir_open(
1214 struct inode *inode,
1215 struct file *file)
1216{
1217 struct xfs_inode *ip = XFS_I(inode);
1218 int mode;
1219 int error;
1220
1221 error = xfs_file_open(inode, file);
1222 if (error)
1223 return error;
1224
1225 /*
1226 * If there are any blocks, read-ahead block 0 as we're almost
1227 * certain to have the next operation be a read there.
1228 */
Christoph Hellwig309ecac82013-12-06 12:30:09 -08001229 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigdaf83962020-05-18 10:27:22 -07001230 if (ip->i_df.if_nextents > 0)
Christoph Hellwig06566fd2019-11-20 09:46:02 -08001231 error = xfs_dir3_data_readahead(ip, 0, 0);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001232 xfs_iunlock(ip, mode);
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08001233 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001237xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct inode *inode,
1239 struct file *filp)
1240{
Dave Chinner24513372014-06-25 14:58:08 +10001241 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001245xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -04001246 struct file *file,
1247 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Al Virob8227552013-05-22 17:07:56 -04001249 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001250 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001251 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001253 /*
1254 * The Linux API doesn't pass down the total size of the buffer
1255 * we read into down to the filesystem. With the filldir concept
1256 * it's not needed for correct information, but the XFS dir2 leaf
1257 * code wants an estimate of the buffer size to calculate it's
1258 * readahead window and size the buffers used for mapping to
1259 * physical blocks.
1260 *
1261 * Try to give it an estimate that's good enough, maybe at some
1262 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001263 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001264 */
Christoph Hellwig13d2c102021-03-29 11:11:40 -07001265 bufsize = (size_t)min_t(loff_t, XFS_READDIR_BUFSIZE, ip->i_disk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Darrick J. Wongacb95532017-06-16 11:00:14 -07001267 return xfs_readdir(NULL, ip, ctx, bufsize);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001268}
1269
1270STATIC loff_t
1271xfs_file_llseek(
1272 struct file *file,
1273 loff_t offset,
Eric Sandeen59f9c002014-09-09 11:57:10 +10001274 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001275{
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001276 struct inode *inode = file->f_mapping->host;
1277
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001278 if (xfs_is_shutdown(XFS_I(inode)->i_mount))
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001279 return -EIO;
1280
Eric Sandeen59f9c002014-09-09 11:57:10 +10001281 switch (whence) {
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001282 default:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001283 return generic_file_llseek(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001284 case SEEK_HOLE:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001285 offset = iomap_seek_hole(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001286 break;
Eric Sandeen49c69592014-09-09 11:56:48 +10001287 case SEEK_DATA:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001288 offset = iomap_seek_data(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001289 break;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001290 }
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001291
1292 if (offset < 0)
1293 return offset;
1294 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001295}
1296
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001297/*
1298 * Locking for serialisation of IO during page faults. This results in a lock
1299 * ordering of:
1300 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001301 * mmap_lock (MM)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001302 * sb_start_pagefault(vfs, freeze)
Jan Kara24334802021-04-12 18:56:24 +02001303 * invalidate_lock (vfs/XFS_MMAPLOCK - truncate serialisation)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001304 * page_lock (MM)
1305 * i_lock (XFS - extent map serialisation)
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001306 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001307static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001308__xfs_filemap_fault(
Dave Jiangc791ace2017-02-24 14:57:08 -08001309 struct vm_fault *vmf,
Christoph Hellwigd522d562017-08-29 10:08:41 -07001310 enum page_entry_size pe_size,
1311 bool write_fault)
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001312{
Dave Jiangf4200392017-02-22 15:40:06 -08001313 struct inode *inode = file_inode(vmf->vma->vm_file);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001314 struct xfs_inode *ip = XFS_I(inode);
Souptick Joarder05edd882018-05-29 10:39:03 -07001315 vm_fault_t ret;
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001316
Christoph Hellwigd522d562017-08-29 10:08:41 -07001317 trace_xfs_filemap_fault(ip, pe_size, write_fault);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001318
Christoph Hellwigd522d562017-08-29 10:08:41 -07001319 if (write_fault) {
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001320 sb_start_pagefault(inode->i_sb);
Dave Jiangf4200392017-02-22 15:40:06 -08001321 file_update_time(vmf->vma->vm_file);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001322 }
1323
Christoph Hellwigd522d562017-08-29 10:08:41 -07001324 if (IS_DAX(inode)) {
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001325 pfn_t pfn;
1326
Jan Kara24334802021-04-12 18:56:24 +02001327 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001328 ret = dax_iomap_fault(vmf, pe_size, &pfn, NULL,
1329 (write_fault && !vmf->cow_page) ?
Christoph Hellwigf150b422019-10-19 09:09:46 -07001330 &xfs_direct_write_iomap_ops :
1331 &xfs_read_iomap_ops);
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001332 if (ret & VM_FAULT_NEEDDSYNC)
1333 ret = dax_finish_sync_fault(vmf, pe_size, pfn);
Jan Kara24334802021-04-12 18:56:24 +02001334 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001335 } else {
Jan Kara24334802021-04-12 18:56:24 +02001336 if (write_fault) {
1337 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigf150b422019-10-19 09:09:46 -07001338 ret = iomap_page_mkwrite(vmf,
1339 &xfs_buffered_write_iomap_ops);
Jan Kara24334802021-04-12 18:56:24 +02001340 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1341 } else {
Christoph Hellwigd522d562017-08-29 10:08:41 -07001342 ret = filemap_fault(vmf);
Jan Kara24334802021-04-12 18:56:24 +02001343 }
Christoph Hellwigd522d562017-08-29 10:08:41 -07001344 }
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001345
Christoph Hellwigd522d562017-08-29 10:08:41 -07001346 if (write_fault)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001347 sb_end_pagefault(inode->i_sb);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001348 return ret;
1349}
1350
Mikulas Patockab17164e2020-09-05 08:13:02 -04001351static inline bool
1352xfs_is_write_fault(
1353 struct vm_fault *vmf)
1354{
1355 return (vmf->flags & FAULT_FLAG_WRITE) &&
1356 (vmf->vma->vm_flags & VM_SHARED);
1357}
1358
Souptick Joarder05edd882018-05-29 10:39:03 -07001359static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001360xfs_filemap_fault(
1361 struct vm_fault *vmf)
1362{
1363 /* DAX can shortcut the normal fault path on write faults! */
1364 return __xfs_filemap_fault(vmf, PE_SIZE_PTE,
1365 IS_DAX(file_inode(vmf->vma->vm_file)) &&
Mikulas Patockab17164e2020-09-05 08:13:02 -04001366 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001367}
1368
Souptick Joarder05edd882018-05-29 10:39:03 -07001369static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001370xfs_filemap_huge_fault(
1371 struct vm_fault *vmf,
1372 enum page_entry_size pe_size)
1373{
1374 if (!IS_DAX(file_inode(vmf->vma->vm_file)))
1375 return VM_FAULT_FALLBACK;
1376
1377 /* DAX can shortcut the normal fault path on write faults! */
1378 return __xfs_filemap_fault(vmf, pe_size,
Mikulas Patockab17164e2020-09-05 08:13:02 -04001379 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001380}
1381
Souptick Joarder05edd882018-05-29 10:39:03 -07001382static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001383xfs_filemap_page_mkwrite(
1384 struct vm_fault *vmf)
1385{
1386 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
1387}
1388
Dave Chinner3af49282015-11-03 12:37:02 +11001389/*
Jan Kara7b565c92017-11-01 16:36:46 +01001390 * pfn_mkwrite was originally intended to ensure we capture time stamp updates
1391 * on write faults. In reality, it needs to serialise against truncate and
1392 * prepare memory for writing so handle is as standard write fault.
Dave Chinner3af49282015-11-03 12:37:02 +11001393 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001394static vm_fault_t
Dave Chinner3af49282015-11-03 12:37:02 +11001395xfs_filemap_pfn_mkwrite(
Dave Chinner3af49282015-11-03 12:37:02 +11001396 struct vm_fault *vmf)
1397{
1398
Jan Kara7b565c92017-11-01 16:36:46 +01001399 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
Dave Chinner3af49282015-11-03 12:37:02 +11001400}
1401
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001402static vm_fault_t
Dave Chinnercd647d52020-06-30 11:28:53 -07001403xfs_filemap_map_pages(
1404 struct vm_fault *vmf,
1405 pgoff_t start_pgoff,
1406 pgoff_t end_pgoff)
1407{
1408 struct inode *inode = file_inode(vmf->vma->vm_file);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001409 vm_fault_t ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001410
1411 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001412 ret = filemap_map_pages(vmf, start_pgoff, end_pgoff);
Dave Chinnercd647d52020-06-30 11:28:53 -07001413 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001414 return ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001415}
1416
Dave Chinner6b698ed2015-06-04 09:18:53 +10001417static const struct vm_operations_struct xfs_file_vm_ops = {
1418 .fault = xfs_filemap_fault,
Dave Jianga2d58162017-02-24 14:56:59 -08001419 .huge_fault = xfs_filemap_huge_fault,
Dave Chinnercd647d52020-06-30 11:28:53 -07001420 .map_pages = xfs_filemap_map_pages,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001421 .page_mkwrite = xfs_filemap_page_mkwrite,
Dave Chinner3af49282015-11-03 12:37:02 +11001422 .pfn_mkwrite = xfs_filemap_pfn_mkwrite,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001423};
1424
1425STATIC int
1426xfs_file_mmap(
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001427 struct file *file,
1428 struct vm_area_struct *vma)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001429{
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001430 struct inode *inode = file_inode(file);
1431 struct xfs_buftarg *target = xfs_inode_buftarg(XFS_I(inode));
Pankaj Guptab21fec42019-07-05 19:33:28 +05301432
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001433 /*
Pankaj Guptab21fec42019-07-05 19:33:28 +05301434 * We don't support synchronous mappings for non-DAX files and
1435 * for DAX files if underneath dax_device is not synchronous.
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001436 */
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001437 if (!daxdev_mapping_supported(vma, target->bt_daxdev))
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001438 return -EOPNOTSUPP;
1439
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001440 file_accessed(file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001441 vma->vm_ops = &xfs_file_vm_ops;
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001442 if (IS_DAX(inode))
Dave Jiange1fb4a02018-08-17 15:43:40 -07001443 vma->vm_flags |= VM_HUGEPAGE;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001444 return 0;
Dave Chinner075a9242015-02-23 21:44:54 +11001445}
1446
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001447const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001448 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001449 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001450 .write_iter = xfs_file_write_iter,
Al Viro82c156f2016-09-22 23:35:42 -04001451 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001452 .splice_write = iter_file_splice_write,
Christoph Hellwig3e087732021-10-12 13:12:24 +02001453 .iopoll = iocb_bio_iopoll,
Nathan Scott3562fd42006-03-14 14:00:35 +11001454 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001456 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001458 .mmap = xfs_file_mmap,
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001459 .mmap_supported_flags = MAP_SYNC,
Nathan Scott3562fd42006-03-14 14:00:35 +11001460 .open = xfs_file_open,
1461 .release = xfs_file_release,
1462 .fsync = xfs_file_fsync,
Toshi Kanidbe6ec82016-10-07 16:59:59 -07001463 .get_unmapped_area = thp_get_unmapped_area,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001464 .fallocate = xfs_file_fallocate,
Jan Kara40144e42019-08-29 09:04:12 -07001465 .fadvise = xfs_file_fadvise,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001466 .remap_file_range = xfs_file_remap_range,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467};
1468
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001469const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001470 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -04001472 .iterate_shared = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001473 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001474 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001475#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001476 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001477#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001478 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479};