blob: d81a28cada3595cfe1cfa3e32c6768affaffef4c [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);
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
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700465 if (xfs_is_shutdown(ip->i_mount))
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100466 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,
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +0200572 &xfs_dio_write_ops, 0, 0);
Dave Chinnercaa89db2021-01-23 10:06:30 -0800573out_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,
Andreas Gruenbacher4fdccaa2021-07-24 12:26:41 +0200650 &xfs_dio_write_ops, flags, 0);
Dave Chinnered1128c2021-01-23 10:06:31 -0800651
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) {
Darrick J. Wongb26b2bf2021-06-07 09:34:51 -0700776 struct xfs_icwalk icw = {0};
Brian Fosterdc06f3982014-07-24 19:49:28 +1000777
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. Wongb26b2bf2021-06-07 09:34:51 -0700782 icw.icw_flags = XFS_ICWALK_FLAG_SYNC;
783 xfs_blockgc_free_space(ip->i_mount, &icw);
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
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700817 if (xfs_is_shutdown(ip->i_mount))
Al Virobf97f3bc2014-04-03 14:20:23 -0400818 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;
Gustavo A. R. Silva53004ee2021-04-20 17:54:36 -0500886 fallthrough;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700887 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)) {
Darrick J. Wong4d1b97f2022-01-07 17:45:51 -08001055 error = xfs_alloc_file_space(ip, offset, len);
Christoph Hellwig360c09c2019-10-24 22:26:27 -07001056 if (error)
1057 goto out_unlock;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -07001058 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001059 }
1060
Christoph Hellwig83aee9e2013-10-12 00:55:07 -07001061 if (file->f_flags & O_DSYNC)
Christoph Hellwig8add71c2015-02-02 09:53:56 +11001062 flags |= XFS_PREALLOC_SYNC;
1063
1064 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001065 if (error)
1066 goto out_unlock;
1067
1068 /* Change file size if needed */
1069 if (new_size) {
1070 struct iattr iattr;
1071
1072 iattr.ia_valid = ATTR_SIZE;
1073 iattr.ia_size = new_size;
Christoph Hellwigf736d932021-01-21 14:19:58 +01001074 error = xfs_vn_setattr_size(file_mnt_user_ns(file),
1075 file_dentry(file), &iattr);
Namjae Jeona904b1c2015-03-25 15:08:56 +11001076 if (error)
1077 goto out_unlock;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001078 }
1079
Namjae Jeona904b1c2015-03-25 15:08:56 +11001080 /*
1081 * Perform hole insertion now that the file size has been
1082 * updated so that if we crash during the operation we don't
1083 * leave shifted extents past EOF and hence losing access to
1084 * the data that is contained within them.
1085 */
1086 if (do_file_insert)
1087 error = xfs_insert_file_space(ip, offset, len);
1088
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001089out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +11001090 xfs_iunlock(ip, iolock);
Dave Chinner24513372014-06-25 14:58:08 +10001091 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001092}
1093
Jan Kara40144e42019-08-29 09:04:12 -07001094STATIC int
1095xfs_file_fadvise(
1096 struct file *file,
1097 loff_t start,
1098 loff_t end,
1099 int advice)
1100{
1101 struct xfs_inode *ip = XFS_I(file_inode(file));
1102 int ret;
1103 int lockflags = 0;
1104
1105 /*
1106 * Operations creating pages in page cache need protection from hole
1107 * punching and similar ops
1108 */
1109 if (advice == POSIX_FADV_WILLNEED) {
1110 lockflags = XFS_IOLOCK_SHARED;
1111 xfs_ilock(ip, lockflags);
1112 }
1113 ret = generic_fadvise(file, start, end, advice);
1114 if (lockflags)
1115 xfs_iunlock(ip, lockflags);
1116 return ret;
1117}
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001118
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001119/* Does this file, inode, or mount want synchronous writes? */
1120static inline bool xfs_file_sync_writes(struct file *filp)
1121{
1122 struct xfs_inode *ip = XFS_I(file_inode(filp));
1123
Dave Chinner0560f312021-08-18 18:46:52 -07001124 if (xfs_has_wsync(ip->i_mount))
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001125 return true;
1126 if (filp->f_flags & (__O_SYNC | O_DSYNC))
1127 return true;
1128 if (IS_SYNC(file_inode(filp)))
1129 return true;
1130
1131 return false;
1132}
1133
Eric Biggersda034bc2018-11-14 21:48:18 -08001134STATIC loff_t
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001135xfs_file_remap_range(
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001136 struct file *file_in,
1137 loff_t pos_in,
1138 struct file *file_out,
1139 loff_t pos_out,
1140 loff_t len,
1141 unsigned int remap_flags)
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001142{
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001143 struct inode *inode_in = file_inode(file_in);
1144 struct xfs_inode *src = XFS_I(inode_in);
1145 struct inode *inode_out = file_inode(file_out);
1146 struct xfs_inode *dest = XFS_I(inode_out);
1147 struct xfs_mount *mp = src->i_mount;
1148 loff_t remapped = 0;
1149 xfs_extlen_t cowextsize;
1150 int ret;
1151
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001152 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1153 return -EINVAL;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001154
Dave Chinner38c26bf2021-08-18 18:46:37 -07001155 if (!xfs_has_reflink(mp))
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001156 return -EOPNOTSUPP;
1157
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001158 if (xfs_is_shutdown(mp))
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001159 return -EIO;
1160
1161 /* Prepare and then clone file data. */
1162 ret = xfs_reflink_remap_prep(file_in, pos_in, file_out, pos_out,
1163 &len, remap_flags);
Darrick J. Wong451d34e2020-06-29 14:47:20 -07001164 if (ret || len == 0)
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001165 return ret;
1166
1167 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
1168
1169 ret = xfs_reflink_remap_blocks(src, pos_in, dest, pos_out, len,
1170 &remapped);
1171 if (ret)
1172 goto out_unlock;
1173
1174 /*
1175 * Carry the cowextsize hint from src to dest if we're sharing the
1176 * entire source file to the entire destination file, the source file
1177 * has a cowextsize hint, and the destination file does not.
1178 */
1179 cowextsize = 0;
1180 if (pos_in == 0 && len == i_size_read(inode_in) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001181 (src->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE) &&
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001182 pos_out == 0 && len >= i_size_read(inode_out) &&
Christoph Hellwig3e09ab82021-03-29 11:11:45 -07001183 !(dest->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE))
Christoph Hellwigb33ce572021-03-29 11:11:42 -07001184 cowextsize = src->i_cowextsize;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001185
1186 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1187 remap_flags);
Christoph Hellwig58331122020-04-03 11:45:37 -07001188 if (ret)
1189 goto out_unlock;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001190
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001191 if (xfs_file_sync_writes(file_in) || xfs_file_sync_writes(file_out))
Christoph Hellwig58331122020-04-03 11:45:37 -07001192 xfs_log_force_inode(dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001193out_unlock:
Darrick J. Wonge2aaee92020-06-29 14:47:20 -07001194 xfs_iunlock2_io_mmap(src, dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001195 if (ret)
1196 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1197 return remapped > 0 ? remapped : ret;
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001198}
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001201xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001203 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001205 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return -EFBIG;
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001207 if (xfs_is_shutdown(XFS_M(inode->i_sb)))
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001208 return -EIO;
Jens Axboef89fb732020-05-22 09:27:33 -06001209 file->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001210 return 0;
1211}
1212
1213STATIC int
1214xfs_dir_open(
1215 struct inode *inode,
1216 struct file *file)
1217{
1218 struct xfs_inode *ip = XFS_I(inode);
1219 int mode;
1220 int error;
1221
1222 error = xfs_file_open(inode, file);
1223 if (error)
1224 return error;
1225
1226 /*
1227 * If there are any blocks, read-ahead block 0 as we're almost
1228 * certain to have the next operation be a read there.
1229 */
Christoph Hellwig309ecac82013-12-06 12:30:09 -08001230 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigdaf83962020-05-18 10:27:22 -07001231 if (ip->i_df.if_nextents > 0)
Christoph Hellwig06566fd2019-11-20 09:46:02 -08001232 error = xfs_dir3_data_readahead(ip, 0, 0);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001233 xfs_iunlock(ip, mode);
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08001234 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001238xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct inode *inode,
1240 struct file *filp)
1241{
Dave Chinner24513372014-06-25 14:58:08 +10001242 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001246xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -04001247 struct file *file,
1248 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Al Virob8227552013-05-22 17:07:56 -04001250 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001251 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001252 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001254 /*
1255 * The Linux API doesn't pass down the total size of the buffer
1256 * we read into down to the filesystem. With the filldir concept
1257 * it's not needed for correct information, but the XFS dir2 leaf
1258 * code wants an estimate of the buffer size to calculate it's
1259 * readahead window and size the buffers used for mapping to
1260 * physical blocks.
1261 *
1262 * Try to give it an estimate that's good enough, maybe at some
1263 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001264 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001265 */
Christoph Hellwig13d2c102021-03-29 11:11:40 -07001266 bufsize = (size_t)min_t(loff_t, XFS_READDIR_BUFSIZE, ip->i_disk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Darrick J. Wongacb95532017-06-16 11:00:14 -07001268 return xfs_readdir(NULL, ip, ctx, bufsize);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001269}
1270
1271STATIC loff_t
1272xfs_file_llseek(
1273 struct file *file,
1274 loff_t offset,
Eric Sandeen59f9c002014-09-09 11:57:10 +10001275 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001276{
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001277 struct inode *inode = file->f_mapping->host;
1278
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001279 if (xfs_is_shutdown(XFS_I(inode)->i_mount))
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001280 return -EIO;
1281
Eric Sandeen59f9c002014-09-09 11:57:10 +10001282 switch (whence) {
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001283 default:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001284 return generic_file_llseek(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001285 case SEEK_HOLE:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001286 offset = iomap_seek_hole(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001287 break;
Eric Sandeen49c69592014-09-09 11:56:48 +10001288 case SEEK_DATA:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001289 offset = iomap_seek_data(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001290 break;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001291 }
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001292
1293 if (offset < 0)
1294 return offset;
1295 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001296}
1297
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001298/*
1299 * Locking for serialisation of IO during page faults. This results in a lock
1300 * ordering of:
1301 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001302 * mmap_lock (MM)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001303 * sb_start_pagefault(vfs, freeze)
Jan Kara24334802021-04-12 18:56:24 +02001304 * invalidate_lock (vfs/XFS_MMAPLOCK - truncate serialisation)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001305 * page_lock (MM)
1306 * i_lock (XFS - extent map serialisation)
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001307 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001308static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001309__xfs_filemap_fault(
Dave Jiangc791ace2017-02-24 14:57:08 -08001310 struct vm_fault *vmf,
Christoph Hellwigd522d562017-08-29 10:08:41 -07001311 enum page_entry_size pe_size,
1312 bool write_fault)
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001313{
Dave Jiangf4200392017-02-22 15:40:06 -08001314 struct inode *inode = file_inode(vmf->vma->vm_file);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001315 struct xfs_inode *ip = XFS_I(inode);
Souptick Joarder05edd882018-05-29 10:39:03 -07001316 vm_fault_t ret;
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001317
Christoph Hellwigd522d562017-08-29 10:08:41 -07001318 trace_xfs_filemap_fault(ip, pe_size, write_fault);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001319
Christoph Hellwigd522d562017-08-29 10:08:41 -07001320 if (write_fault) {
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001321 sb_start_pagefault(inode->i_sb);
Dave Jiangf4200392017-02-22 15:40:06 -08001322 file_update_time(vmf->vma->vm_file);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001323 }
1324
Christoph Hellwigd522d562017-08-29 10:08:41 -07001325 if (IS_DAX(inode)) {
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001326 pfn_t pfn;
1327
Jan Kara24334802021-04-12 18:56:24 +02001328 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001329 ret = dax_iomap_fault(vmf, pe_size, &pfn, NULL,
1330 (write_fault && !vmf->cow_page) ?
Christoph Hellwigf150b422019-10-19 09:09:46 -07001331 &xfs_direct_write_iomap_ops :
1332 &xfs_read_iomap_ops);
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001333 if (ret & VM_FAULT_NEEDDSYNC)
1334 ret = dax_finish_sync_fault(vmf, pe_size, pfn);
Jan Kara24334802021-04-12 18:56:24 +02001335 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001336 } else {
Jan Kara24334802021-04-12 18:56:24 +02001337 if (write_fault) {
1338 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigf150b422019-10-19 09:09:46 -07001339 ret = iomap_page_mkwrite(vmf,
1340 &xfs_buffered_write_iomap_ops);
Jan Kara24334802021-04-12 18:56:24 +02001341 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1342 } else {
Christoph Hellwigd522d562017-08-29 10:08:41 -07001343 ret = filemap_fault(vmf);
Jan Kara24334802021-04-12 18:56:24 +02001344 }
Christoph Hellwigd522d562017-08-29 10:08:41 -07001345 }
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001346
Christoph Hellwigd522d562017-08-29 10:08:41 -07001347 if (write_fault)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001348 sb_end_pagefault(inode->i_sb);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001349 return ret;
1350}
1351
Mikulas Patockab17164e2020-09-05 08:13:02 -04001352static inline bool
1353xfs_is_write_fault(
1354 struct vm_fault *vmf)
1355{
1356 return (vmf->flags & FAULT_FLAG_WRITE) &&
1357 (vmf->vma->vm_flags & VM_SHARED);
1358}
1359
Souptick Joarder05edd882018-05-29 10:39:03 -07001360static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001361xfs_filemap_fault(
1362 struct vm_fault *vmf)
1363{
1364 /* DAX can shortcut the normal fault path on write faults! */
1365 return __xfs_filemap_fault(vmf, PE_SIZE_PTE,
1366 IS_DAX(file_inode(vmf->vma->vm_file)) &&
Mikulas Patockab17164e2020-09-05 08:13:02 -04001367 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001368}
1369
Souptick Joarder05edd882018-05-29 10:39:03 -07001370static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001371xfs_filemap_huge_fault(
1372 struct vm_fault *vmf,
1373 enum page_entry_size pe_size)
1374{
1375 if (!IS_DAX(file_inode(vmf->vma->vm_file)))
1376 return VM_FAULT_FALLBACK;
1377
1378 /* DAX can shortcut the normal fault path on write faults! */
1379 return __xfs_filemap_fault(vmf, pe_size,
Mikulas Patockab17164e2020-09-05 08:13:02 -04001380 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001381}
1382
Souptick Joarder05edd882018-05-29 10:39:03 -07001383static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001384xfs_filemap_page_mkwrite(
1385 struct vm_fault *vmf)
1386{
1387 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
1388}
1389
Dave Chinner3af49282015-11-03 12:37:02 +11001390/*
Jan Kara7b565c92017-11-01 16:36:46 +01001391 * pfn_mkwrite was originally intended to ensure we capture time stamp updates
1392 * on write faults. In reality, it needs to serialise against truncate and
1393 * prepare memory for writing so handle is as standard write fault.
Dave Chinner3af49282015-11-03 12:37:02 +11001394 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001395static vm_fault_t
Dave Chinner3af49282015-11-03 12:37:02 +11001396xfs_filemap_pfn_mkwrite(
Dave Chinner3af49282015-11-03 12:37:02 +11001397 struct vm_fault *vmf)
1398{
1399
Jan Kara7b565c92017-11-01 16:36:46 +01001400 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
Dave Chinner3af49282015-11-03 12:37:02 +11001401}
1402
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001403static vm_fault_t
Dave Chinnercd647d52020-06-30 11:28:53 -07001404xfs_filemap_map_pages(
1405 struct vm_fault *vmf,
1406 pgoff_t start_pgoff,
1407 pgoff_t end_pgoff)
1408{
1409 struct inode *inode = file_inode(vmf->vma->vm_file);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001410 vm_fault_t ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001411
1412 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001413 ret = filemap_map_pages(vmf, start_pgoff, end_pgoff);
Dave Chinnercd647d52020-06-30 11:28:53 -07001414 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03001415 return ret;
Dave Chinnercd647d52020-06-30 11:28:53 -07001416}
1417
Dave Chinner6b698ed2015-06-04 09:18:53 +10001418static const struct vm_operations_struct xfs_file_vm_ops = {
1419 .fault = xfs_filemap_fault,
Dave Jianga2d58162017-02-24 14:56:59 -08001420 .huge_fault = xfs_filemap_huge_fault,
Dave Chinnercd647d52020-06-30 11:28:53 -07001421 .map_pages = xfs_filemap_map_pages,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001422 .page_mkwrite = xfs_filemap_page_mkwrite,
Dave Chinner3af49282015-11-03 12:37:02 +11001423 .pfn_mkwrite = xfs_filemap_pfn_mkwrite,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001424};
1425
1426STATIC int
1427xfs_file_mmap(
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001428 struct file *file,
1429 struct vm_area_struct *vma)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001430{
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001431 struct inode *inode = file_inode(file);
1432 struct xfs_buftarg *target = xfs_inode_buftarg(XFS_I(inode));
Pankaj Guptab21fec42019-07-05 19:33:28 +05301433
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001434 /*
Pankaj Guptab21fec42019-07-05 19:33:28 +05301435 * We don't support synchronous mappings for non-DAX files and
1436 * for DAX files if underneath dax_device is not synchronous.
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001437 */
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001438 if (!daxdev_mapping_supported(vma, target->bt_daxdev))
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001439 return -EOPNOTSUPP;
1440
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001441 file_accessed(file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001442 vma->vm_ops = &xfs_file_vm_ops;
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001443 if (IS_DAX(inode))
Dave Jiange1fb4a02018-08-17 15:43:40 -07001444 vma->vm_flags |= VM_HUGEPAGE;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001445 return 0;
Dave Chinner075a9242015-02-23 21:44:54 +11001446}
1447
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001448const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001449 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001450 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001451 .write_iter = xfs_file_write_iter,
Al Viro82c156f2016-09-22 23:35:42 -04001452 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001453 .splice_write = iter_file_splice_write,
Christoph Hellwig3e087732021-10-12 13:12:24 +02001454 .iopoll = iocb_bio_iopoll,
Nathan Scott3562fd42006-03-14 14:00:35 +11001455 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001457 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001459 .mmap = xfs_file_mmap,
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001460 .mmap_supported_flags = MAP_SYNC,
Nathan Scott3562fd42006-03-14 14:00:35 +11001461 .open = xfs_file_open,
1462 .release = xfs_file_release,
1463 .fsync = xfs_file_fsync,
Toshi Kanidbe6ec82016-10-07 16:59:59 -07001464 .get_unmapped_area = thp_get_unmapped_area,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001465 .fallocate = xfs_file_fallocate,
Jan Kara40144e42019-08-29 09:04:12 -07001466 .fadvise = xfs_file_fadvise,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001467 .remap_file_range = xfs_file_remap_range,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468};
1469
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001470const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001471 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -04001473 .iterate_shared = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001474 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001475 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001476#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001477 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001478#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001479 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480};