blob: 1bdc3560aed93ccb6cce387f2b29011e9cd94685 [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)
93 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
94 if (flags & XFS_PREALLOC_CLEAR)
95 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
96
97 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
98 if (flags & XFS_PREALLOC_SYNC)
99 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000100 return xfs_trans_commit(tp);
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100101}
102
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000103/*
104 * Fsync operations on directories are much simpler than on regular files,
105 * as there is no file data to flush, and thus also no need for explicit
106 * cache flush operations, and there are no non-transaction metadata updates
107 * on directories either.
108 */
109STATIC int
110xfs_dir_fsync(
111 struct file *file,
112 loff_t start,
113 loff_t end,
114 int datasync)
115{
116 struct xfs_inode *ip = XFS_I(file->f_mapping->host);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000117
118 trace_xfs_dir_fsync(ip);
Christoph Hellwig54fbdd12020-04-03 11:45:37 -0700119 return xfs_log_force_inode(ip);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000120}
121
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000122STATIC int
123xfs_file_fsync(
124 struct file *file,
Josef Bacik02c24a82011-07-16 20:44:56 -0400125 loff_t start,
126 loff_t end,
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000127 int datasync)
128{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200129 struct inode *inode = file->f_mapping->host;
130 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner1319ebe2020-06-29 14:48:46 -0700131 struct xfs_inode_log_item *iip = ip->i_itemp;
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000132 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000133 int error = 0;
134 int log_flushed = 0;
Christoph Hellwigb1037052011-09-19 14:55:51 +0000135 xfs_lsn_t lsn = 0;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000136
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000137 trace_xfs_file_fsync(ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000138
Jeff Layton1b180272017-07-06 07:02:30 -0400139 error = file_write_and_wait_range(file, start, end);
Josef Bacik02c24a82011-07-16 20:44:56 -0400140 if (error)
141 return error;
142
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000143 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000144 return -EIO;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000145
146 xfs_iflags_clear(ip, XFS_ITRUNCATED);
147
Dave Chinner2291dab2016-12-09 16:49:54 +1100148 /*
149 * If we have an RT and/or log subvolume we need to make sure to flush
150 * the write cache the device used for file data first. This is to
151 * ensure newly written file data make it to disk before logging the new
152 * inode size in case of an extending write.
153 */
154 if (XFS_IS_REALTIME_INODE(ip))
155 xfs_blkdev_issue_flush(mp->m_rtdev_targp);
156 else if (mp->m_logdev_targp != mp->m_ddev_targp)
157 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000158
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000159 /*
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100160 * All metadata updates are logged, which means that we just have to
161 * flush the log up to the latest LSN that touched the inode. If we have
162 * concurrent fsync/fdatasync() calls, we need them to all block on the
163 * log force before we clear the ili_fsync_fields field. This ensures
164 * that we don't get a racing sync operation that does not wait for the
165 * metadata to hit the journal before returning. If we race with
166 * clearing the ili_fsync_fields, then all that will happen is the log
167 * force will do nothing as the lsn will already be on disk. We can't
168 * race with setting ili_fsync_fields because that is done under
169 * XFS_ILOCK_EXCL, and that can't happen because we hold the lock shared
170 * until after the ili_fsync_fields is cleared.
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000171 */
172 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000173 if (xfs_ipincount(ip)) {
174 if (!datasync ||
Dave Chinner1319ebe2020-06-29 14:48:46 -0700175 (iip->ili_fsync_fields & ~XFS_ILOG_TIMESTAMP))
176 lsn = iip->ili_last_lsn;
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000177 }
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000178
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100179 if (lsn) {
Christoph Hellwig656de4f2018-03-13 23:15:28 -0700180 error = xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, &log_flushed);
Dave Chinner1319ebe2020-06-29 14:48:46 -0700181 spin_lock(&iip->ili_lock);
182 iip->ili_fsync_fields = 0;
183 spin_unlock(&iip->ili_lock);
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100184 }
185 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwigb1037052011-09-19 14:55:51 +0000186
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000187 /*
188 * If we only have a single device, and the log force about was
189 * a no-op we might have to flush the data device cache here.
190 * This can only happen for fdatasync/O_DSYNC if we were overwriting
191 * an already allocated file and thus do not have any metadata to
192 * commit.
193 */
Dave Chinner2291dab2016-12-09 16:49:54 +1100194 if (!log_flushed && !XFS_IS_REALTIME_INODE(ip) &&
195 mp->m_logdev_targp == mp->m_ddev_targp)
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000196 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000197
Dave Chinner24513372014-06-25 14:58:08 +1000198 return error;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000199}
200
Christoph Hellwig00258e32010-02-15 09:44:47 +0000201STATIC ssize_t
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000202xfs_file_dio_aio_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000203 struct kiocb *iocb,
Al Virob4f5d2c2014-04-02 14:37:59 -0400204 struct iov_iter *to)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000205{
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100206 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000207 size_t count = iov_iter_count(to);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100208 ssize_t ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000209
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000210 trace_xfs_file_direct_read(ip, count, iocb->ki_pos);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000211
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000212 if (!count)
213 return 0; /* skip atime */
Christoph Hellwig00258e32010-02-15 09:44:47 +0000214
Christoph Hellwiga447d7c2016-10-03 09:47:34 +1100215 file_accessed(iocb->ki_filp);
216
Christoph Hellwig7b53b862020-01-15 09:11:17 -0800217 if (iocb->ki_flags & IOCB_NOWAIT) {
218 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED))
219 return -EAGAIN;
220 } else {
221 xfs_ilock(ip, XFS_IOLOCK_SHARED);
222 }
Christoph Hellwig690c2a32019-10-19 09:09:45 -0700223 ret = iomap_dio_rw(iocb, to, &xfs_read_iomap_ops, NULL,
224 is_sync_kiocb(iocb));
Christoph Hellwig65523212016-11-30 14:33:25 +1100225 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100226
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000227 return ret;
228}
229
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000230static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000231xfs_file_dax_read(
232 struct kiocb *iocb,
233 struct iov_iter *to)
234{
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000235 struct xfs_inode *ip = XFS_I(iocb->ki_filp->f_mapping->host);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000236 size_t count = iov_iter_count(to);
237 ssize_t ret = 0;
238
239 trace_xfs_file_dax_read(ip, count, iocb->ki_pos);
240
241 if (!count)
242 return 0; /* skip atime */
243
Christoph Hellwig942491c2017-10-23 18:31:50 -0700244 if (iocb->ki_flags & IOCB_NOWAIT) {
245 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED))
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500246 return -EAGAIN;
Christoph Hellwig942491c2017-10-23 18:31:50 -0700247 } else {
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500248 xfs_ilock(ip, XFS_IOLOCK_SHARED);
249 }
Christoph Hellwig942491c2017-10-23 18:31:50 -0700250
Christoph Hellwig690c2a32019-10-19 09:09:45 -0700251 ret = dax_iomap_rw(iocb, to, &xfs_read_iomap_ops);
Christoph Hellwig65523212016-11-30 14:33:25 +1100252 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000253
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000254 file_accessed(iocb->ki_filp);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000255 return ret;
256}
257
258STATIC ssize_t
259xfs_file_buffered_aio_read(
260 struct kiocb *iocb,
261 struct iov_iter *to)
262{
263 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
264 ssize_t ret;
265
266 trace_xfs_file_buffered_read(ip, iov_iter_count(to), iocb->ki_pos);
267
Christoph Hellwig942491c2017-10-23 18:31:50 -0700268 if (iocb->ki_flags & IOCB_NOWAIT) {
269 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED))
Christoph Hellwig91f99432017-08-29 16:13:20 +0200270 return -EAGAIN;
Christoph Hellwig942491c2017-10-23 18:31:50 -0700271 } else {
Christoph Hellwig91f99432017-08-29 16:13:20 +0200272 xfs_ilock(ip, XFS_IOLOCK_SHARED);
273 }
Al Virob4f5d2c2014-04-02 14:37:59 -0400274 ret = generic_file_read_iter(iocb, to);
Christoph Hellwig65523212016-11-30 14:33:25 +1100275 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000276
277 return ret;
278}
279
280STATIC ssize_t
281xfs_file_read_iter(
282 struct kiocb *iocb,
283 struct iov_iter *to)
284{
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000285 struct inode *inode = file_inode(iocb->ki_filp);
286 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000287 ssize_t ret = 0;
288
289 XFS_STATS_INC(mp, xs_read_calls);
290
291 if (XFS_FORCED_SHUTDOWN(mp))
292 return -EIO;
293
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000294 if (IS_DAX(inode))
295 ret = xfs_file_dax_read(iocb, to);
296 else if (iocb->ki_flags & IOCB_DIRECT)
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000297 ret = xfs_file_dio_aio_read(iocb, to);
298 else
299 ret = xfs_file_buffered_aio_read(iocb, to);
300
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000301 if (ret > 0)
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100302 XFS_STATS_ADD(mp, xs_read_bytes, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000303 return ret;
304}
305
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100306/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100307 * Common pre-write limit and setup checks.
308 *
Christoph Hellwig5bf1f262011-12-18 20:00:13 +0000309 * Called with the iolocked held either shared and exclusive according to
310 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
311 * if called for a direct write beyond i_size.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100312 */
313STATIC ssize_t
314xfs_file_aio_write_checks(
Al Viro99733fa2015-04-07 14:25:18 -0400315 struct kiocb *iocb,
316 struct iov_iter *from,
Dave Chinner4d8d1582011-01-11 10:23:42 +1100317 int *iolock)
318{
Al Viro99733fa2015-04-07 14:25:18 -0400319 struct file *file = iocb->ki_filp;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100320 struct inode *inode = file->f_mapping->host;
321 struct xfs_inode *ip = XFS_I(inode);
Al Viro3309dd02015-04-09 12:55:47 -0400322 ssize_t error = 0;
Al Viro99733fa2015-04-07 14:25:18 -0400323 size_t count = iov_iter_count(from);
Brian Foster3136e8b2015-10-12 16:02:05 +1100324 bool drained_dio = false;
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700325 loff_t isize;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100326
Dave Chinner7271d242011-08-25 07:17:02 +0000327restart:
Al Viro3309dd02015-04-09 12:55:47 -0400328 error = generic_write_checks(iocb, from);
329 if (error <= 0)
Dave Chinner4d8d1582011-01-11 10:23:42 +1100330 return error;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100331
Dan Williams69eb5fa2018-03-20 14:42:38 -0700332 error = xfs_break_layouts(inode, iolock, BREAK_WRITE);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100333 if (error)
334 return error;
335
Christoph Hellwig65523212016-11-30 14:33:25 +1100336 /*
337 * For changing security info in file_remove_privs() we need i_rwsem
338 * exclusively.
339 */
Jan Karaa6de82c2015-05-21 16:05:56 +0200340 if (*iolock == XFS_IOLOCK_SHARED && !IS_NOSEC(inode)) {
Christoph Hellwig65523212016-11-30 14:33:25 +1100341 xfs_iunlock(ip, *iolock);
Jan Karaa6de82c2015-05-21 16:05:56 +0200342 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100343 xfs_ilock(ip, *iolock);
Jan Karaa6de82c2015-05-21 16:05:56 +0200344 goto restart;
345 }
Dave Chinner4d8d1582011-01-11 10:23:42 +1100346 /*
347 * If the offset is beyond the size of the file, we need to zero any
348 * blocks that fall between the existing EOF and the start of this
Christoph Hellwig2813d682011-12-18 20:00:12 +0000349 * write. If zeroing is needed and we are currently holding the
Christoph Hellwig467f7892012-03-27 10:34:47 -0400350 * iolock shared, we need to update it to exclusive which implies
351 * having to redo all checks before.
Dave Chinnerb9d59842015-04-16 22:03:07 +1000352 *
353 * We need to serialise against EOF updates that occur in IO
354 * completions here. We want to make sure that nobody is changing the
355 * size while we do this check until we have placed an IO barrier (i.e.
356 * hold the XFS_IOLOCK_EXCL) that prevents new IO from being dispatched.
357 * The spinlock effectively forms a memory barrier once we have the
358 * XFS_IOLOCK_EXCL so we are guaranteed to see the latest EOF value
359 * and hence be able to correctly determine if we need to run zeroing.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100360 */
Dave Chinnerb9d59842015-04-16 22:03:07 +1000361 spin_lock(&ip->i_flags_lock);
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700362 isize = i_size_read(inode);
363 if (iocb->ki_pos > isize) {
Dave Chinnerb9d59842015-04-16 22:03:07 +1000364 spin_unlock(&ip->i_flags_lock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100365 if (!drained_dio) {
366 if (*iolock == XFS_IOLOCK_SHARED) {
Christoph Hellwig65523212016-11-30 14:33:25 +1100367 xfs_iunlock(ip, *iolock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100368 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100369 xfs_ilock(ip, *iolock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100370 iov_iter_reexpand(from, count);
371 }
Dave Chinner40c63fb2015-04-16 22:03:17 +1000372 /*
373 * We now have an IO submission barrier in place, but
374 * AIO can do EOF updates during IO completion and hence
375 * we now need to wait for all of them to drain. Non-AIO
376 * DIO will have drained before we are given the
377 * XFS_IOLOCK_EXCL, and so for most cases this wait is a
378 * no-op.
379 */
380 inode_dio_wait(inode);
Brian Foster3136e8b2015-10-12 16:02:05 +1100381 drained_dio = true;
Dave Chinner7271d242011-08-25 07:17:02 +0000382 goto restart;
383 }
Christoph Hellwigf5c547172018-03-13 23:15:32 -0700384
385 trace_xfs_zero_eof(ip, isize, iocb->ki_pos - isize);
386 error = iomap_zero_range(inode, isize, iocb->ki_pos - isize,
Christoph Hellwigf150b422019-10-19 09:09:46 -0700387 NULL, &xfs_buffered_write_iomap_ops);
Christoph Hellwig467f7892012-03-27 10:34:47 -0400388 if (error)
389 return error;
Dave Chinnerb9d59842015-04-16 22:03:07 +1000390 } else
391 spin_unlock(&ip->i_flags_lock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100392
393 /*
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000394 * Updating the timestamps will grab the ilock again from
395 * xfs_fs_dirty_inode, so we have to call it after dropping the
396 * lock above. Eventually we should look into a way to avoid
397 * the pointless lock roundtrip.
398 */
Amir Goldstein8c3f4062019-06-05 08:04:50 -0700399 return file_modified(file);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100400}
401
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100402static int
403xfs_dio_write_end_io(
404 struct kiocb *iocb,
405 ssize_t size,
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700406 int error,
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100407 unsigned flags)
408{
409 struct inode *inode = file_inode(iocb->ki_filp);
410 struct xfs_inode *ip = XFS_I(inode);
411 loff_t offset = iocb->ki_pos;
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700412 unsigned int nofs_flag;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100413
414 trace_xfs_end_io_direct_write(ip, offset, size);
415
416 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
417 return -EIO;
418
Matthew Bobrowski6fe7b992019-09-19 15:32:44 -0700419 if (error)
420 return error;
421 if (!size)
422 return 0;
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100423
Dave Chinnered5c3e62018-05-02 12:54:52 -0700424 /*
425 * Capture amount written on completion as we can't reliably account
426 * for it on submission.
427 */
428 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, size);
429
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700430 /*
431 * We can allocate memory here while doing writeback on behalf of
432 * memory reclaim. To avoid memory allocation deadlocks set the
433 * task-wide nofs context for the following operations.
434 */
435 nofs_flag = memalloc_nofs_save();
436
Eryu Guanee70daa2017-09-21 11:26:18 -0700437 if (flags & IOMAP_DIO_COW) {
438 error = xfs_reflink_end_cow(ip, offset, size);
439 if (error)
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700440 goto out;
Eryu Guanee70daa2017-09-21 11:26:18 -0700441 }
442
443 /*
444 * Unwritten conversion updates the in-core isize after extent
445 * conversion but before updating the on-disk size. Updating isize any
446 * earlier allows a racing dio read to find unwritten extents before
447 * they are converted.
448 */
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700449 if (flags & IOMAP_DIO_UNWRITTEN) {
450 error = xfs_iomap_write_unwritten(ip, offset, size, true);
451 goto out;
452 }
Eryu Guanee70daa2017-09-21 11:26:18 -0700453
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100454 /*
455 * We need to update the in-core inode size here so that we don't end up
456 * with the on-disk inode size being outside the in-core inode size. We
457 * have no other method of updating EOF for AIO, so always do it here
458 * if necessary.
459 *
460 * We need to lock the test/set EOF update as we can be racing with
461 * other IO completions here to update the EOF. Failing to serialise
462 * here can result in EOF moving backwards and Bad Things Happen when
463 * that occurs.
464 */
465 spin_lock(&ip->i_flags_lock);
466 if (offset + size > i_size_read(inode)) {
467 i_size_write(inode, offset + size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700468 spin_unlock(&ip->i_flags_lock);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100469 error = xfs_setfilesize(ip, offset, size);
Eryu Guanee70daa2017-09-21 11:26:18 -0700470 } else {
471 spin_unlock(&ip->i_flags_lock);
472 }
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100473
Christoph Hellwig73d30d42019-06-28 19:31:38 -0700474out:
475 memalloc_nofs_restore(nofs_flag);
Christoph Hellwigacdda3a2016-11-30 14:37:15 +1100476 return error;
477}
478
Christoph Hellwig838c4f32019-09-19 15:32:45 -0700479static const struct iomap_dio_ops xfs_dio_write_ops = {
480 .end_io = xfs_dio_write_end_io,
481};
482
Dave Chinner4d8d1582011-01-11 10:23:42 +1100483/*
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100484 * xfs_file_dio_aio_write - handle direct IO writes
485 *
486 * Lock the inode appropriately to prepare for and issue a direct IO write.
Dave Chinnereda77982011-01-11 10:22:40 +1100487 * By separating it from the buffered write path we remove all the tricky to
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100488 * follow locking changes and looping.
489 *
Dave Chinnereda77982011-01-11 10:22:40 +1100490 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
491 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
492 * pages are flushed out.
493 *
494 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
495 * allowing them to be done in parallel with reads and other direct IO writes.
496 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
497 * needs to do sub-block zeroing and that requires serialisation against other
498 * direct IOs to the same block. In this case we need to serialise the
499 * submission of the unaligned IOs so that we don't get racing block zeroing in
500 * the dio layer. To avoid the problem with aio, we also need to wait for
501 * outstanding IOs to complete so that unwritten extent conversion is completed
502 * before we try to map the overlapping block. This is currently implemented by
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000503 * hitting it with a big hammer (i.e. inode_dio_wait()).
Dave Chinnereda77982011-01-11 10:22:40 +1100504 *
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100505 * Returns with locks held indicated by @iolock and errors indicated by
506 * negative return values.
507 */
508STATIC ssize_t
509xfs_file_dio_aio_write(
510 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400511 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100512{
513 struct file *file = iocb->ki_filp;
514 struct address_space *mapping = file->f_mapping;
515 struct inode *inode = mapping->host;
516 struct xfs_inode *ip = XFS_I(inode);
517 struct xfs_mount *mp = ip->i_mount;
518 ssize_t ret = 0;
Dave Chinnereda77982011-01-11 10:22:40 +1100519 int unaligned_io = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000520 int iolock;
Al Virob3188912014-04-02 07:06:30 -0400521 size_t count = iov_iter_count(from);
Christoph Hellwigf9acc192019-10-24 22:25:38 -0700522 struct xfs_buftarg *target = xfs_inode_buftarg(ip);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100523
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600524 /* DIO must be aligned to device logical sector size */
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000525 if ((iocb->ki_pos | count) & target->bt_logical_sectormask)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000526 return -EINVAL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100527
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100528 /*
529 * Don't take the exclusive iolock here unless the I/O is unaligned to
530 * the file system block size. We don't need to consider the EOF
531 * extension case here because xfs_file_aio_write_checks() will relock
532 * the inode as necessary for EOF zeroing cases and fill out the new
533 * inode size as appropriate.
534 */
Christoph Hellwig13712712016-04-07 08:51:57 -0700535 if ((iocb->ki_pos & mp->m_blockmask) ||
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100536 ((iocb->ki_pos + count) & mp->m_blockmask)) {
Dave Chinnereda77982011-01-11 10:22:40 +1100537 unaligned_io = 1;
Christoph Hellwig54a4ef82017-02-06 13:00:54 -0800538
539 /*
540 * We can't properly handle unaligned direct I/O to reflink
541 * files yet, as we can't unshare a partial block.
542 */
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800543 if (xfs_is_cow_inode(ip)) {
Christoph Hellwig54a4ef82017-02-06 13:00:54 -0800544 trace_xfs_reflink_bounce_dio_write(ip, iocb->ki_pos, count);
Christoph Hellwig80e543a2020-07-23 22:45:58 -0700545 return -ENOTBLK;
Christoph Hellwig54a4ef82017-02-06 13:00:54 -0800546 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000547 iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100548 } else {
Christoph Hellwigd0606462011-12-18 20:00:14 +0000549 iolock = XFS_IOLOCK_SHARED;
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000550 }
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100551
Christoph Hellwig942491c2017-10-23 18:31:50 -0700552 if (iocb->ki_flags & IOCB_NOWAIT) {
Darrick J. Wong1fdeaea2019-04-17 08:49:36 -0700553 /* unaligned dio always waits, bail */
554 if (unaligned_io)
555 return -EAGAIN;
Christoph Hellwig942491c2017-10-23 18:31:50 -0700556 if (!xfs_ilock_nowait(ip, iolock))
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500557 return -EAGAIN;
Christoph Hellwig942491c2017-10-23 18:31:50 -0700558 } else {
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500559 xfs_ilock(ip, iolock);
560 }
Christoph Hellwig0ee7a3f2016-10-20 15:44:14 +1100561
Al Viro99733fa2015-04-07 14:25:18 -0400562 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100563 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000564 goto out;
Al Viro99733fa2015-04-07 14:25:18 -0400565 count = iov_iter_count(from);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100566
Dave Chinnereda77982011-01-11 10:22:40 +1100567 /*
Brian Foster2032a8a2019-03-25 17:01:45 -0700568 * If we are doing unaligned IO, we can't allow any other overlapping IO
569 * in-flight at the same time or we risk data corruption. Wait for all
570 * other IO to drain before we submit. If the IO is aligned, demote the
571 * iolock if we had to take the exclusive lock in
572 * xfs_file_aio_write_checks() for other reasons.
Dave Chinnereda77982011-01-11 10:22:40 +1100573 */
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500574 if (unaligned_io) {
Brian Foster2032a8a2019-03-25 17:01:45 -0700575 inode_dio_wait(inode);
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500576 } else if (iolock == XFS_IOLOCK_EXCL) {
Christoph Hellwig65523212016-11-30 14:33:25 +1100577 xfs_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000578 iolock = XFS_IOLOCK_SHARED;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100579 }
580
Christoph Hellwig3176c3e2016-07-20 11:31:42 +1000581 trace_xfs_file_direct_write(ip, count, iocb->ki_pos);
Brian Foster2032a8a2019-03-25 17:01:45 -0700582 /*
Jan Kara906753b2019-10-15 08:43:43 -0700583 * If unaligned, this is the only IO in-flight. Wait on it before we
584 * release the iolock to prevent subsequent overlapping IO.
Brian Foster2032a8a2019-03-25 17:01:45 -0700585 */
Christoph Hellwigf150b422019-10-19 09:09:46 -0700586 ret = iomap_dio_rw(iocb, from, &xfs_direct_write_iomap_ops,
587 &xfs_dio_write_ops,
Jan Kara906753b2019-10-15 08:43:43 -0700588 is_sync_kiocb(iocb) || unaligned_io);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000589out:
Christoph Hellwig65523212016-11-30 14:33:25 +1100590 xfs_iunlock(ip, iolock);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000591
Dave Chinner6b698ed2015-06-04 09:18:53 +1000592 /*
Christoph Hellwig60263d52020-07-23 22:45:59 -0700593 * No fallback to buffered IO after short writes for XFS, direct I/O
594 * will either complete fully or return an error.
Dave Chinner6b698ed2015-06-04 09:18:53 +1000595 */
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000596 ASSERT(ret < 0 || ret == count);
597 return ret;
598}
599
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000600static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000601xfs_file_dax_write(
602 struct kiocb *iocb,
603 struct iov_iter *from)
604{
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000605 struct inode *inode = iocb->ki_filp->f_mapping->host;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000606 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig17879e82016-09-19 11:24:50 +1000607 int iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000608 ssize_t ret, error = 0;
609 size_t count;
610 loff_t pos;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000611
Christoph Hellwig942491c2017-10-23 18:31:50 -0700612 if (iocb->ki_flags & IOCB_NOWAIT) {
613 if (!xfs_ilock_nowait(ip, iolock))
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500614 return -EAGAIN;
Christoph Hellwig942491c2017-10-23 18:31:50 -0700615 } else {
Goldwyn Rodrigues29a5d292017-06-20 07:05:48 -0500616 xfs_ilock(ip, iolock);
617 }
618
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000619 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
620 if (ret)
621 goto out;
622
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000623 pos = iocb->ki_pos;
624 count = iov_iter_count(from);
Dave Chinner8b2180b2016-08-17 08:31:33 +1000625
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000626 trace_xfs_file_dax_write(ip, count, pos);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700627 ret = dax_iomap_rw(iocb, from, &xfs_direct_write_iomap_ops);
Christoph Hellwig6c31f4952016-09-19 11:28:38 +1000628 if (ret > 0 && iocb->ki_pos > i_size_read(inode)) {
629 i_size_write(inode, iocb->ki_pos);
630 error = xfs_setfilesize(ip, pos, ret);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000631 }
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000632out:
Christoph Hellwig65523212016-11-30 14:33:25 +1100633 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700634 if (error)
635 return error;
636
637 if (ret > 0) {
638 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
639
640 /* Handle various SYNC-type writes */
641 ret = generic_write_sync(iocb, ret);
642 }
643 return ret;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100644}
645
Christoph Hellwig00258e32010-02-15 09:44:47 +0000646STATIC ssize_t
Dave Chinner637bbc72011-01-11 10:17:30 +1100647xfs_file_buffered_aio_write(
648 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400649 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100650{
651 struct file *file = iocb->ki_filp;
652 struct address_space *mapping = file->f_mapping;
653 struct inode *inode = mapping->host;
654 struct xfs_inode *ip = XFS_I(inode);
655 ssize_t ret;
656 int enospc = 0;
Brian Fosterc3155092017-01-27 23:22:56 -0800657 int iolock;
Dave Chinner637bbc72011-01-11 10:17:30 +1100658
Christoph Hellwig91f99432017-08-29 16:13:20 +0200659 if (iocb->ki_flags & IOCB_NOWAIT)
660 return -EOPNOTSUPP;
661
Brian Fosterc3155092017-01-27 23:22:56 -0800662write_retry:
663 iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig65523212016-11-30 14:33:25 +1100664 xfs_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100665
Al Viro99733fa2015-04-07 14:25:18 -0400666 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100667 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000668 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100669
670 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100671 current->backing_dev_info = inode_to_bdi(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100672
Christoph Hellwig3176c3e2016-07-20 11:31:42 +1000673 trace_xfs_file_buffered_write(ip, iov_iter_count(from), iocb->ki_pos);
Christoph Hellwigf150b422019-10-19 09:09:46 -0700674 ret = iomap_file_buffered_write(iocb, from,
675 &xfs_buffered_write_iomap_ops);
Al Viro0a64bc22014-02-11 22:25:22 -0500676 if (likely(ret >= 0))
Al Viro99733fa2015-04-07 14:25:18 -0400677 iocb->ki_pos += ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000678
Dave Chinner637bbc72011-01-11 10:17:30 +1100679 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000680 * If we hit a space limit, try to free up some lingering preallocated
681 * space before returning an error. In the case of ENOSPC, first try to
682 * write back all dirty inodes to free up some of the excess reserved
683 * metadata space. This reduces the chances that the eofblocks scan
684 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
685 * also behaves as a filter to prevent too many eofblocks scans from
686 * running at the same time.
Dave Chinner637bbc72011-01-11 10:17:30 +1100687 */
Brian Fosterdc06f3982014-07-24 19:49:28 +1000688 if (ret == -EDQUOT && !enospc) {
Brian Fosterc3155092017-01-27 23:22:56 -0800689 xfs_iunlock(ip, iolock);
Brian Fosterdc06f3982014-07-24 19:49:28 +1000690 enospc = xfs_inode_free_quota_eofblocks(ip);
691 if (enospc)
692 goto write_retry;
Darrick J. Wong83104d42016-10-03 09:11:46 -0700693 enospc = xfs_inode_free_quota_cowblocks(ip);
694 if (enospc)
695 goto write_retry;
Brian Fosterc3155092017-01-27 23:22:56 -0800696 iolock = 0;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000697 } else if (ret == -ENOSPC && !enospc) {
698 struct xfs_eofblocks eofb = {0};
699
Dave Chinner637bbc72011-01-11 10:17:30 +1100700 enospc = 1;
Dave Chinner9aa05002012-10-08 21:56:04 +1100701 xfs_flush_inodes(ip->i_mount);
Brian Fosterc3155092017-01-27 23:22:56 -0800702
703 xfs_iunlock(ip, iolock);
Brian Fosterdc06f3982014-07-24 19:49:28 +1000704 eofb.eof_flags = XFS_EOF_FLAGS_SYNC;
705 xfs_icache_free_eofblocks(ip->i_mount, &eofb);
Brian Fostercf2cb782017-06-20 14:36:19 -0700706 xfs_icache_free_cowblocks(ip->i_mount, &eofb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100707 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100708 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000709
Dave Chinner637bbc72011-01-11 10:17:30 +1100710 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000711out:
Brian Fosterc3155092017-01-27 23:22:56 -0800712 if (iolock)
713 xfs_iunlock(ip, iolock);
Dave Chinnered5c3e62018-05-02 12:54:52 -0700714
715 if (ret > 0) {
716 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
717 /* Handle various SYNC-type writes */
718 ret = generic_write_sync(iocb, ret);
719 }
Dave Chinner637bbc72011-01-11 10:17:30 +1100720 return ret;
721}
722
723STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400724xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000725 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400726 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000727{
728 struct file *file = iocb->ki_filp;
729 struct address_space *mapping = file->f_mapping;
730 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000731 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100732 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400733 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000734
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100735 XFS_STATS_INC(ip->i_mount, xs_write_calls);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000736
Dave Chinner637bbc72011-01-11 10:17:30 +1100737 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000738 return 0;
739
Al Virobf97f3bc2014-04-03 14:20:23 -0400740 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
741 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000742
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000743 if (IS_DAX(inode))
Dave Chinnered5c3e62018-05-02 12:54:52 -0700744 return xfs_file_dax_write(iocb, from);
745
746 if (iocb->ki_flags & IOCB_DIRECT) {
Darrick J. Wong0613f162016-10-03 09:11:37 -0700747 /*
748 * Allow a directio write to fall back to a buffered
749 * write *only* in the case that we're doing a reflink
750 * CoW. In all other directio scenarios we do not
751 * allow an operation to fall back to buffered mode.
752 */
Al Virobf97f3bc2014-04-03 14:20:23 -0400753 ret = xfs_file_dio_aio_write(iocb, from);
Christoph Hellwig80e543a2020-07-23 22:45:58 -0700754 if (ret != -ENOTBLK)
Dave Chinnered5c3e62018-05-02 12:54:52 -0700755 return ret;
Darrick J. Wong0613f162016-10-03 09:11:37 -0700756 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000757
Dave Chinnered5c3e62018-05-02 12:54:52 -0700758 return xfs_file_buffered_aio_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000759}
760
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700761static void
762xfs_wait_dax_page(
Dave Jiange25ff832018-08-10 08:48:18 -0700763 struct inode *inode)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700764{
765 struct xfs_inode *ip = XFS_I(inode);
766
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700767 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
768 schedule();
769 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
770}
771
772static int
773xfs_break_dax_layouts(
774 struct inode *inode,
Dave Jiange25ff832018-08-10 08:48:18 -0700775 bool *retry)
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700776{
777 struct page *page;
778
779 ASSERT(xfs_isilocked(XFS_I(inode), XFS_MMAPLOCK_EXCL));
780
781 page = dax_layout_busy_page(inode->i_mapping);
782 if (!page)
783 return 0;
784
Dave Jiange25ff832018-08-10 08:48:18 -0700785 *retry = true;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700786 return ___wait_var_event(&page->_refcount,
787 atomic_read(&page->_refcount) == 1, TASK_INTERRUPTIBLE,
Dave Jiange25ff832018-08-10 08:48:18 -0700788 0, 0, xfs_wait_dax_page(inode));
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700789}
790
Dan Williams69eb5fa2018-03-20 14:42:38 -0700791int
792xfs_break_layouts(
793 struct inode *inode,
794 uint *iolock,
795 enum layout_break_reason reason)
796{
797 bool retry;
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700798 int error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700799
800 ASSERT(xfs_isilocked(XFS_I(inode), XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL));
801
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700802 do {
803 retry = false;
804 switch (reason) {
805 case BREAK_UNMAP:
Eric Sandeena4722a62018-07-11 22:26:36 -0700806 error = xfs_break_dax_layouts(inode, &retry);
Dan Williamsd6dc57e2018-05-09 15:47:49 -0700807 if (error || retry)
808 break;
809 /* fall through */
810 case BREAK_WRITE:
811 error = xfs_break_leased_layouts(inode, iolock, &retry);
812 break;
813 default:
814 WARN_ON_ONCE(1);
815 error = -EINVAL;
816 }
817 } while (error == 0 && retry);
818
819 return error;
Dan Williams69eb5fa2018-03-20 14:42:38 -0700820}
821
Namjae Jeona904b1c2015-03-25 15:08:56 +1100822#define XFS_FALLOC_FL_SUPPORTED \
823 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
824 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE | \
Darrick J. Wong98cc2db2016-10-03 09:11:43 -0700825 FALLOC_FL_INSERT_RANGE | FALLOC_FL_UNSHARE_RANGE)
Namjae Jeona904b1c2015-03-25 15:08:56 +1100826
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100827STATIC long
828xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700829 struct file *file,
830 int mode,
831 loff_t offset,
832 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100833{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700834 struct inode *inode = file_inode(file);
835 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700836 long error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100837 enum xfs_prealloc_flags flags = 0;
Dan Williamsc63a8ea2018-03-12 14:12:29 -0700838 uint iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700839 loff_t new_size = 0;
Thomas Meyer749f24f2017-10-09 11:38:54 -0700840 bool do_file_insert = false;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100841
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700842 if (!S_ISREG(inode->i_mode))
843 return -EINVAL;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100844 if (mode & ~XFS_FALLOC_FL_SUPPORTED)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100845 return -EOPNOTSUPP;
846
Christoph Hellwig781355c2015-02-16 11:59:50 +1100847 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700848 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100849 if (error)
850 goto out_unlock;
851
Dave Chinner249bd902019-10-29 13:04:32 -0700852 /*
853 * Must wait for all AIO to complete before we continue as AIO can
854 * change the file size on completion without holding any locks we
855 * currently hold. We must do this first because AIO can update both
856 * the on disk and in memory inode sizes, and the operations that follow
857 * require the in-memory size to be fully up-to-date.
858 */
859 inode_dio_wait(inode);
860
861 /*
862 * Now AIO and DIO has drained we flush and (if necessary) invalidate
863 * the cached range over the first operation we are about to run.
864 *
865 * We care about zero and collapse here because they both run a hole
866 * punch over the range first. Because that can zero data, and the range
867 * of invalidation for the shift operations is much larger, we still do
868 * the required flush for collapse in xfs_prepare_shift().
869 *
870 * Insert has the same range requirements as collapse, and we extend the
871 * file first which can zero data. Hence insert has the same
872 * flush/invalidate requirements as collapse and so they are both
873 * handled at the right time by xfs_prepare_shift().
874 */
875 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE |
876 FALLOC_FL_COLLAPSE_RANGE)) {
877 error = xfs_flush_unmap_range(ip, offset, len);
878 if (error)
879 goto out_unlock;
880 }
881
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700882 if (mode & FALLOC_FL_PUNCH_HOLE) {
883 error = xfs_free_file_space(ip, offset, len);
884 if (error)
885 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100886 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
Darrick J. Wong25219db2020-10-09 16:42:59 -0700887 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Dave Chinner24513372014-06-25 14:58:08 +1000888 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100889 goto out_unlock;
890 }
891
Lukas Czerner23fffa92014-04-12 09:56:41 -0400892 /*
893 * There is no need to overlap collapse range with EOF,
894 * in which case it is effectively a truncate operation
895 */
896 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000897 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400898 goto out_unlock;
899 }
900
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100901 new_size = i_size_read(inode) - len;
902
903 error = xfs_collapse_file_space(ip, offset, len);
904 if (error)
905 goto out_unlock;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100906 } else if (mode & FALLOC_FL_INSERT_RANGE) {
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700907 loff_t isize = i_size_read(inode);
Namjae Jeona904b1c2015-03-25 15:08:56 +1100908
Darrick J. Wong25219db2020-10-09 16:42:59 -0700909 if (!xfs_is_falloc_aligned(ip, offset, len)) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100910 error = -EINVAL;
911 goto out_unlock;
912 }
913
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700914 /*
915 * New inode size must not exceed ->s_maxbytes, accounting for
916 * possible signed overflow.
917 */
918 if (inode->i_sb->s_maxbytes - isize < len) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100919 error = -EFBIG;
920 goto out_unlock;
921 }
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700922 new_size = isize + len;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100923
924 /* Offset should be less than i_size */
Darrick J. Wong7d83fb12018-04-16 23:07:45 -0700925 if (offset >= isize) {
Namjae Jeona904b1c2015-03-25 15:08:56 +1100926 error = -EINVAL;
927 goto out_unlock;
928 }
Thomas Meyer749f24f2017-10-09 11:38:54 -0700929 do_file_insert = true;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700930 } else {
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100931 flags |= XFS_PREALLOC_SET;
932
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700933 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
934 offset + len > i_size_read(inode)) {
935 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +1000936 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700937 if (error)
938 goto out_unlock;
939 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100940
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800941 if (mode & FALLOC_FL_ZERO_RANGE) {
Christoph Hellwig360c09c2019-10-24 22:26:27 -0700942 /*
943 * Punch a hole and prealloc the range. We use a hole
944 * punch rather than unwritten extent conversion for two
945 * reasons:
946 *
947 * 1.) Hole punch handles partial block zeroing for us.
948 * 2.) If prealloc returns ENOSPC, the file range is
949 * still zero-valued by virtue of the hole punch.
950 */
951 unsigned int blksize = i_blocksize(inode);
952
953 trace_xfs_zero_file_space(ip);
954
955 error = xfs_free_file_space(ip, offset, len);
956 if (error)
957 goto out_unlock;
958
959 len = round_up(offset + len, blksize) -
960 round_down(offset, blksize);
961 offset = round_down(offset, blksize);
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800962 } else if (mode & FALLOC_FL_UNSHARE_RANGE) {
963 error = xfs_reflink_unshare(ip, offset, len);
964 if (error)
965 goto out_unlock;
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800966 } else {
967 /*
968 * If always_cow mode we can't use preallocations and
969 * thus should not create them.
970 */
971 if (xfs_is_always_cow_inode(ip)) {
972 error = -EOPNOTSUPP;
973 goto out_unlock;
974 }
Christoph Hellwig360c09c2019-10-24 22:26:27 -0700975 }
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800976
Christoph Hellwig360c09c2019-10-24 22:26:27 -0700977 if (!xfs_is_always_cow_inode(ip)) {
Lukas Czerner376ba312014-03-13 19:07:58 +1100978 error = xfs_alloc_file_space(ip, offset, len,
979 XFS_BMAPI_PREALLOC);
Christoph Hellwig360c09c2019-10-24 22:26:27 -0700980 if (error)
981 goto out_unlock;
Darrick J. Wong98cc2db2016-10-03 09:11:43 -0700982 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100983 }
984
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700985 if (file->f_flags & O_DSYNC)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100986 flags |= XFS_PREALLOC_SYNC;
987
988 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100989 if (error)
990 goto out_unlock;
991
992 /* Change file size if needed */
993 if (new_size) {
994 struct iattr iattr;
995
996 iattr.ia_valid = ATTR_SIZE;
997 iattr.ia_size = new_size;
Christoph Hellwigf736d932021-01-21 14:19:58 +0100998 error = xfs_vn_setattr_size(file_mnt_user_ns(file),
999 file_dentry(file), &iattr);
Namjae Jeona904b1c2015-03-25 15:08:56 +11001000 if (error)
1001 goto out_unlock;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001002 }
1003
Namjae Jeona904b1c2015-03-25 15:08:56 +11001004 /*
1005 * Perform hole insertion now that the file size has been
1006 * updated so that if we crash during the operation we don't
1007 * leave shifted extents past EOF and hence losing access to
1008 * the data that is contained within them.
1009 */
1010 if (do_file_insert)
1011 error = xfs_insert_file_space(ip, offset, len);
1012
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001013out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +11001014 xfs_iunlock(ip, iolock);
Dave Chinner24513372014-06-25 14:58:08 +10001015 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001016}
1017
Jan Kara40144e42019-08-29 09:04:12 -07001018STATIC int
1019xfs_file_fadvise(
1020 struct file *file,
1021 loff_t start,
1022 loff_t end,
1023 int advice)
1024{
1025 struct xfs_inode *ip = XFS_I(file_inode(file));
1026 int ret;
1027 int lockflags = 0;
1028
1029 /*
1030 * Operations creating pages in page cache need protection from hole
1031 * punching and similar ops
1032 */
1033 if (advice == POSIX_FADV_WILLNEED) {
1034 lockflags = XFS_IOLOCK_SHARED;
1035 xfs_ilock(ip, lockflags);
1036 }
1037 ret = generic_fadvise(file, start, end, advice);
1038 if (lockflags)
1039 xfs_iunlock(ip, lockflags);
1040 return ret;
1041}
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001042
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001043/* Does this file, inode, or mount want synchronous writes? */
1044static inline bool xfs_file_sync_writes(struct file *filp)
1045{
1046 struct xfs_inode *ip = XFS_I(file_inode(filp));
1047
1048 if (ip->i_mount->m_flags & XFS_MOUNT_WSYNC)
1049 return true;
1050 if (filp->f_flags & (__O_SYNC | O_DSYNC))
1051 return true;
1052 if (IS_SYNC(file_inode(filp)))
1053 return true;
1054
1055 return false;
1056}
1057
Eric Biggersda034bc2018-11-14 21:48:18 -08001058STATIC loff_t
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001059xfs_file_remap_range(
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001060 struct file *file_in,
1061 loff_t pos_in,
1062 struct file *file_out,
1063 loff_t pos_out,
1064 loff_t len,
1065 unsigned int remap_flags)
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001066{
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001067 struct inode *inode_in = file_inode(file_in);
1068 struct xfs_inode *src = XFS_I(inode_in);
1069 struct inode *inode_out = file_inode(file_out);
1070 struct xfs_inode *dest = XFS_I(inode_out);
1071 struct xfs_mount *mp = src->i_mount;
1072 loff_t remapped = 0;
1073 xfs_extlen_t cowextsize;
1074 int ret;
1075
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001076 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1077 return -EINVAL;
Darrick J. Wongcc714662016-10-03 09:11:41 -07001078
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001079 if (!xfs_sb_version_hasreflink(&mp->m_sb))
1080 return -EOPNOTSUPP;
1081
1082 if (XFS_FORCED_SHUTDOWN(mp))
1083 return -EIO;
1084
1085 /* Prepare and then clone file data. */
1086 ret = xfs_reflink_remap_prep(file_in, pos_in, file_out, pos_out,
1087 &len, remap_flags);
Darrick J. Wong451d34e2020-06-29 14:47:20 -07001088 if (ret || len == 0)
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001089 return ret;
1090
1091 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out);
1092
1093 ret = xfs_reflink_remap_blocks(src, pos_in, dest, pos_out, len,
1094 &remapped);
1095 if (ret)
1096 goto out_unlock;
1097
1098 /*
1099 * Carry the cowextsize hint from src to dest if we're sharing the
1100 * entire source file to the entire destination file, the source file
1101 * has a cowextsize hint, and the destination file does not.
1102 */
1103 cowextsize = 0;
1104 if (pos_in == 0 && len == i_size_read(inode_in) &&
1105 (src->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE) &&
1106 pos_out == 0 && len >= i_size_read(inode_out) &&
1107 !(dest->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1108 cowextsize = src->i_d.di_cowextsize;
1109
1110 ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize,
1111 remap_flags);
Christoph Hellwig58331122020-04-03 11:45:37 -07001112 if (ret)
1113 goto out_unlock;
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001114
Darrick J. Wong5ffce3c2020-09-04 10:20:16 -07001115 if (xfs_file_sync_writes(file_in) || xfs_file_sync_writes(file_out))
Christoph Hellwig58331122020-04-03 11:45:37 -07001116 xfs_log_force_inode(dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001117out_unlock:
Darrick J. Wonge2aaee92020-06-29 14:47:20 -07001118 xfs_iunlock2_io_mmap(src, dest);
Darrick J. Wong3fc9f5e2018-10-30 10:47:26 +11001119 if (ret)
1120 trace_xfs_reflink_remap_range_error(dest, ret, _RET_IP_);
1121 return remapped > 0 ? remapped : ret;
Darrick J. Wong9fe26042016-10-03 09:11:40 -07001122}
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001125xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001127 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001129 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001131 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
1132 return -EIO;
Jens Axboef89fb732020-05-22 09:27:33 -06001133 file->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001134 return 0;
1135}
1136
1137STATIC int
1138xfs_dir_open(
1139 struct inode *inode,
1140 struct file *file)
1141{
1142 struct xfs_inode *ip = XFS_I(inode);
1143 int mode;
1144 int error;
1145
1146 error = xfs_file_open(inode, file);
1147 if (error)
1148 return error;
1149
1150 /*
1151 * If there are any blocks, read-ahead block 0 as we're almost
1152 * certain to have the next operation be a read there.
1153 */
Christoph Hellwig309ecac82013-12-06 12:30:09 -08001154 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigdaf83962020-05-18 10:27:22 -07001155 if (ip->i_df.if_nextents > 0)
Christoph Hellwig06566fd2019-11-20 09:46:02 -08001156 error = xfs_dir3_data_readahead(ip, 0, 0);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001157 xfs_iunlock(ip, mode);
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08001158 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001162xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 struct inode *inode,
1164 struct file *filp)
1165{
Dave Chinner24513372014-06-25 14:58:08 +10001166 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001170xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -04001171 struct file *file,
1172 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Al Virob8227552013-05-22 17:07:56 -04001174 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001175 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001176 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001178 /*
1179 * The Linux API doesn't pass down the total size of the buffer
1180 * we read into down to the filesystem. With the filldir concept
1181 * it's not needed for correct information, but the XFS dir2 leaf
1182 * code wants an estimate of the buffer size to calculate it's
1183 * readahead window and size the buffers used for mapping to
1184 * physical blocks.
1185 *
1186 * Try to give it an estimate that's good enough, maybe at some
1187 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001188 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001189 */
Darrick J. Wonga5c46e52017-10-17 21:37:44 -07001190 bufsize = (size_t)min_t(loff_t, XFS_READDIR_BUFSIZE, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Darrick J. Wongacb95532017-06-16 11:00:14 -07001192 return xfs_readdir(NULL, ip, ctx, bufsize);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001193}
1194
1195STATIC loff_t
1196xfs_file_llseek(
1197 struct file *file,
1198 loff_t offset,
Eric Sandeen59f9c002014-09-09 11:57:10 +10001199 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001200{
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001201 struct inode *inode = file->f_mapping->host;
1202
1203 if (XFS_FORCED_SHUTDOWN(XFS_I(inode)->i_mount))
1204 return -EIO;
1205
Eric Sandeen59f9c002014-09-09 11:57:10 +10001206 switch (whence) {
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001207 default:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001208 return generic_file_llseek(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001209 case SEEK_HOLE:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001210 offset = iomap_seek_hole(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001211 break;
Eric Sandeen49c69592014-09-09 11:56:48 +10001212 case SEEK_DATA:
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001213 offset = iomap_seek_data(inode, offset, &xfs_seek_iomap_ops);
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001214 break;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001215 }
Christoph Hellwig9b2970a2017-06-29 11:43:21 -07001216
1217 if (offset < 0)
1218 return offset;
1219 return vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001220}
1221
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001222/*
1223 * Locking for serialisation of IO during page faults. This results in a lock
1224 * ordering of:
1225 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001226 * mmap_lock (MM)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001227 * sb_start_pagefault(vfs, freeze)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001228 * i_mmaplock (XFS - truncate serialisation)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001229 * page_lock (MM)
1230 * i_lock (XFS - extent map serialisation)
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001231 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001232static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001233__xfs_filemap_fault(
Dave Jiangc791ace2017-02-24 14:57:08 -08001234 struct vm_fault *vmf,
Christoph Hellwigd522d562017-08-29 10:08:41 -07001235 enum page_entry_size pe_size,
1236 bool write_fault)
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001237{
Dave Jiangf4200392017-02-22 15:40:06 -08001238 struct inode *inode = file_inode(vmf->vma->vm_file);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001239 struct xfs_inode *ip = XFS_I(inode);
Souptick Joarder05edd882018-05-29 10:39:03 -07001240 vm_fault_t ret;
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001241
Christoph Hellwigd522d562017-08-29 10:08:41 -07001242 trace_xfs_filemap_fault(ip, pe_size, write_fault);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001243
Christoph Hellwigd522d562017-08-29 10:08:41 -07001244 if (write_fault) {
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001245 sb_start_pagefault(inode->i_sb);
Dave Jiangf4200392017-02-22 15:40:06 -08001246 file_update_time(vmf->vma->vm_file);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001247 }
1248
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001249 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001250 if (IS_DAX(inode)) {
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001251 pfn_t pfn;
1252
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001253 ret = dax_iomap_fault(vmf, pe_size, &pfn, NULL,
1254 (write_fault && !vmf->cow_page) ?
Christoph Hellwigf150b422019-10-19 09:09:46 -07001255 &xfs_direct_write_iomap_ops :
1256 &xfs_read_iomap_ops);
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001257 if (ret & VM_FAULT_NEEDDSYNC)
1258 ret = dax_finish_sync_fault(vmf, pe_size, pfn);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001259 } else {
1260 if (write_fault)
Christoph Hellwigf150b422019-10-19 09:09:46 -07001261 ret = iomap_page_mkwrite(vmf,
1262 &xfs_buffered_write_iomap_ops);
Christoph Hellwigd522d562017-08-29 10:08:41 -07001263 else
1264 ret = filemap_fault(vmf);
1265 }
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001266 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001267
Christoph Hellwigd522d562017-08-29 10:08:41 -07001268 if (write_fault)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001269 sb_end_pagefault(inode->i_sb);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001270 return ret;
1271}
1272
Mikulas Patockab17164e2020-09-05 08:13:02 -04001273static inline bool
1274xfs_is_write_fault(
1275 struct vm_fault *vmf)
1276{
1277 return (vmf->flags & FAULT_FLAG_WRITE) &&
1278 (vmf->vma->vm_flags & VM_SHARED);
1279}
1280
Souptick Joarder05edd882018-05-29 10:39:03 -07001281static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001282xfs_filemap_fault(
1283 struct vm_fault *vmf)
1284{
1285 /* DAX can shortcut the normal fault path on write faults! */
1286 return __xfs_filemap_fault(vmf, PE_SIZE_PTE,
1287 IS_DAX(file_inode(vmf->vma->vm_file)) &&
Mikulas Patockab17164e2020-09-05 08:13:02 -04001288 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001289}
1290
Souptick Joarder05edd882018-05-29 10:39:03 -07001291static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001292xfs_filemap_huge_fault(
1293 struct vm_fault *vmf,
1294 enum page_entry_size pe_size)
1295{
1296 if (!IS_DAX(file_inode(vmf->vma->vm_file)))
1297 return VM_FAULT_FALLBACK;
1298
1299 /* DAX can shortcut the normal fault path on write faults! */
1300 return __xfs_filemap_fault(vmf, pe_size,
Mikulas Patockab17164e2020-09-05 08:13:02 -04001301 xfs_is_write_fault(vmf));
Christoph Hellwigd522d562017-08-29 10:08:41 -07001302}
1303
Souptick Joarder05edd882018-05-29 10:39:03 -07001304static vm_fault_t
Christoph Hellwigd522d562017-08-29 10:08:41 -07001305xfs_filemap_page_mkwrite(
1306 struct vm_fault *vmf)
1307{
1308 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
1309}
1310
Dave Chinner3af49282015-11-03 12:37:02 +11001311/*
Jan Kara7b565c92017-11-01 16:36:46 +01001312 * pfn_mkwrite was originally intended to ensure we capture time stamp updates
1313 * on write faults. In reality, it needs to serialise against truncate and
1314 * prepare memory for writing so handle is as standard write fault.
Dave Chinner3af49282015-11-03 12:37:02 +11001315 */
Souptick Joarder05edd882018-05-29 10:39:03 -07001316static vm_fault_t
Dave Chinner3af49282015-11-03 12:37:02 +11001317xfs_filemap_pfn_mkwrite(
Dave Chinner3af49282015-11-03 12:37:02 +11001318 struct vm_fault *vmf)
1319{
1320
Jan Kara7b565c92017-11-01 16:36:46 +01001321 return __xfs_filemap_fault(vmf, PE_SIZE_PTE, true);
Dave Chinner3af49282015-11-03 12:37:02 +11001322}
1323
Dave Chinnercd647d52020-06-30 11:28:53 -07001324static void
1325xfs_filemap_map_pages(
1326 struct vm_fault *vmf,
1327 pgoff_t start_pgoff,
1328 pgoff_t end_pgoff)
1329{
1330 struct inode *inode = file_inode(vmf->vma->vm_file);
1331
1332 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1333 filemap_map_pages(vmf, start_pgoff, end_pgoff);
1334 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1335}
1336
Dave Chinner6b698ed2015-06-04 09:18:53 +10001337static const struct vm_operations_struct xfs_file_vm_ops = {
1338 .fault = xfs_filemap_fault,
Dave Jianga2d58162017-02-24 14:56:59 -08001339 .huge_fault = xfs_filemap_huge_fault,
Dave Chinnercd647d52020-06-30 11:28:53 -07001340 .map_pages = xfs_filemap_map_pages,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001341 .page_mkwrite = xfs_filemap_page_mkwrite,
Dave Chinner3af49282015-11-03 12:37:02 +11001342 .pfn_mkwrite = xfs_filemap_pfn_mkwrite,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001343};
1344
1345STATIC int
1346xfs_file_mmap(
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001347 struct file *file,
1348 struct vm_area_struct *vma)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001349{
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001350 struct inode *inode = file_inode(file);
1351 struct xfs_buftarg *target = xfs_inode_buftarg(XFS_I(inode));
Pankaj Guptab21fec42019-07-05 19:33:28 +05301352
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001353 /*
Pankaj Guptab21fec42019-07-05 19:33:28 +05301354 * We don't support synchronous mappings for non-DAX files and
1355 * for DAX files if underneath dax_device is not synchronous.
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001356 */
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001357 if (!daxdev_mapping_supported(vma, target->bt_daxdev))
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001358 return -EOPNOTSUPP;
1359
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001360 file_accessed(file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001361 vma->vm_ops = &xfs_file_vm_ops;
Christoph Hellwig30fa5292019-10-24 22:25:38 -07001362 if (IS_DAX(inode))
Dave Jiange1fb4a02018-08-17 15:43:40 -07001363 vma->vm_flags |= VM_HUGEPAGE;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001364 return 0;
Dave Chinner075a9242015-02-23 21:44:54 +11001365}
1366
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001367const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001368 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001369 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001370 .write_iter = xfs_file_write_iter,
Al Viro82c156f2016-09-22 23:35:42 -04001371 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001372 .splice_write = iter_file_splice_write,
Christoph Hellwig81214ba2018-12-04 11:12:08 -07001373 .iopoll = iomap_dio_iopoll,
Nathan Scott3562fd42006-03-14 14:00:35 +11001374 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001376 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001378 .mmap = xfs_file_mmap,
Christoph Hellwiga39e5962017-11-01 16:36:47 +01001379 .mmap_supported_flags = MAP_SYNC,
Nathan Scott3562fd42006-03-14 14:00:35 +11001380 .open = xfs_file_open,
1381 .release = xfs_file_release,
1382 .fsync = xfs_file_fsync,
Toshi Kanidbe6ec82016-10-07 16:59:59 -07001383 .get_unmapped_area = thp_get_unmapped_area,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001384 .fallocate = xfs_file_fallocate,
Jan Kara40144e42019-08-29 09:04:12 -07001385 .fadvise = xfs_file_fadvise,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001386 .remap_file_range = xfs_file_remap_range,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387};
1388
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001389const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001390 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -04001392 .iterate_shared = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001393 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001394 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001395#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001396 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001397#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001398 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399};