blob: b927ea9abe33fde786d6b0feae00efc375f6a9bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000019#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
26#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110028#include "xfs_trans.h"
Christoph Hellwigfd3200b2010-02-15 09:44:48 +000029#include "xfs_inode_item.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000030#include "xfs_bmap.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100031#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100033#include "xfs_dir2.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100034#include "xfs_dir2_priv.h"
Christoph Hellwigddcd8562008-12-03 07:55:34 -050035#include "xfs_ioctl.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000036#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110037#include "xfs_log.h"
Brian Fosterdc06f3982014-07-24 19:49:28 +100038#include "xfs_icache.h"
Christoph Hellwig781355c2015-02-16 11:59:50 +110039#include "xfs_pnfs.h"
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +100040#include "xfs_iomap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/dcache.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010043#include <linux/falloc.h>
Jeff Liud126d432012-08-21 17:11:57 +080044#include <linux/pagevec.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040045#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040047static const struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Christoph Hellwigdda35b82010-02-15 09:44:46 +000049/*
Dave Chinner487f84f2011-01-12 11:37:10 +110050 * Locking primitives for read and write IO paths to ensure we consistently use
51 * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
52 */
53static inline void
54xfs_rw_ilock(
55 struct xfs_inode *ip,
56 int type)
57{
58 if (type & XFS_IOLOCK_EXCL)
Al Viro59551022016-01-22 15:40:57 -050059 inode_lock(VFS_I(ip));
Dave Chinner487f84f2011-01-12 11:37:10 +110060 xfs_ilock(ip, type);
61}
62
63static inline void
64xfs_rw_iunlock(
65 struct xfs_inode *ip,
66 int type)
67{
68 xfs_iunlock(ip, type);
69 if (type & XFS_IOLOCK_EXCL)
Al Viro59551022016-01-22 15:40:57 -050070 inode_unlock(VFS_I(ip));
Dave Chinner487f84f2011-01-12 11:37:10 +110071}
72
73static inline void
74xfs_rw_ilock_demote(
75 struct xfs_inode *ip,
76 int type)
77{
78 xfs_ilock_demote(ip, type);
79 if (type & XFS_IOLOCK_EXCL)
Al Viro59551022016-01-22 15:40:57 -050080 inode_unlock(VFS_I(ip));
Dave Chinner487f84f2011-01-12 11:37:10 +110081}
82
83/*
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +100084 * Clear the specified ranges to zero through either the pagecache or DAX.
85 * Holes and unwritten extents will be left as-is as they already are zeroed.
Christoph Hellwigdda35b82010-02-15 09:44:46 +000086 */
Dave Chinneref9d8732012-11-29 15:26:33 +110087int
Christoph Hellwig7bb41db2016-06-21 09:56:26 +100088xfs_zero_range(
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +100089 struct xfs_inode *ip,
Christoph Hellwig7bb41db2016-06-21 09:56:26 +100090 xfs_off_t pos,
91 xfs_off_t count,
92 bool *did_zero)
Christoph Hellwigdda35b82010-02-15 09:44:46 +000093{
Christoph Hellwig459f0fb2016-06-21 09:55:18 +100094 return iomap_zero_range(VFS_I(ip), pos, count, NULL, &xfs_iomap_ops);
Christoph Hellwigdda35b82010-02-15 09:44:46 +000095}
96
Christoph Hellwig8add71c2015-02-02 09:53:56 +110097int
98xfs_update_prealloc_flags(
99 struct xfs_inode *ip,
100 enum xfs_prealloc_flags flags)
101{
102 struct xfs_trans *tp;
103 int error;
104
Christoph Hellwig253f4912016-04-06 09:19:55 +1000105 error = xfs_trans_alloc(ip->i_mount, &M_RES(ip->i_mount)->tr_writeid,
106 0, 0, 0, &tp);
107 if (error)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100108 return error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100109
110 xfs_ilock(ip, XFS_ILOCK_EXCL);
111 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
112
113 if (!(flags & XFS_PREALLOC_INVISIBLE)) {
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100114 VFS_I(ip)->i_mode &= ~S_ISUID;
115 if (VFS_I(ip)->i_mode & S_IXGRP)
116 VFS_I(ip)->i_mode &= ~S_ISGID;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100117 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
118 }
119
120 if (flags & XFS_PREALLOC_SET)
121 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
122 if (flags & XFS_PREALLOC_CLEAR)
123 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
124
125 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
126 if (flags & XFS_PREALLOC_SYNC)
127 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000128 return xfs_trans_commit(tp);
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100129}
130
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000131/*
132 * Fsync operations on directories are much simpler than on regular files,
133 * as there is no file data to flush, and thus also no need for explicit
134 * cache flush operations, and there are no non-transaction metadata updates
135 * on directories either.
136 */
137STATIC int
138xfs_dir_fsync(
139 struct file *file,
140 loff_t start,
141 loff_t end,
142 int datasync)
143{
144 struct xfs_inode *ip = XFS_I(file->f_mapping->host);
145 struct xfs_mount *mp = ip->i_mount;
146 xfs_lsn_t lsn = 0;
147
148 trace_xfs_dir_fsync(ip);
149
150 xfs_ilock(ip, XFS_ILOCK_SHARED);
151 if (xfs_ipincount(ip))
152 lsn = ip->i_itemp->ili_last_lsn;
153 xfs_iunlock(ip, XFS_ILOCK_SHARED);
154
155 if (!lsn)
156 return 0;
Dave Chinner24513372014-06-25 14:58:08 +1000157 return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000158}
159
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000160STATIC int
161xfs_file_fsync(
162 struct file *file,
Josef Bacik02c24a82011-07-16 20:44:56 -0400163 loff_t start,
164 loff_t end,
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000165 int datasync)
166{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200167 struct inode *inode = file->f_mapping->host;
168 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000169 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000170 int error = 0;
171 int log_flushed = 0;
Christoph Hellwigb1037052011-09-19 14:55:51 +0000172 xfs_lsn_t lsn = 0;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000173
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000174 trace_xfs_file_fsync(ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000175
Josef Bacik02c24a82011-07-16 20:44:56 -0400176 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
177 if (error)
178 return error;
179
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000180 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000181 return -EIO;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000182
183 xfs_iflags_clear(ip, XFS_ITRUNCATED);
184
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000185 if (mp->m_flags & XFS_MOUNT_BARRIER) {
186 /*
187 * If we have an RT and/or log subvolume we need to make sure
188 * to flush the write cache the device used for file data
189 * first. This is to ensure newly written file data make
190 * it to disk before logging the new inode size in case of
191 * an extending write.
192 */
193 if (XFS_IS_REALTIME_INODE(ip))
194 xfs_blkdev_issue_flush(mp->m_rtdev_targp);
195 else if (mp->m_logdev_targp != mp->m_ddev_targp)
196 xfs_blkdev_issue_flush(mp->m_ddev_targp);
197 }
198
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000199 /*
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100200 * All metadata updates are logged, which means that we just have to
201 * flush the log up to the latest LSN that touched the inode. If we have
202 * concurrent fsync/fdatasync() calls, we need them to all block on the
203 * log force before we clear the ili_fsync_fields field. This ensures
204 * that we don't get a racing sync operation that does not wait for the
205 * metadata to hit the journal before returning. If we race with
206 * clearing the ili_fsync_fields, then all that will happen is the log
207 * force will do nothing as the lsn will already be on disk. We can't
208 * race with setting ili_fsync_fields because that is done under
209 * XFS_ILOCK_EXCL, and that can't happen because we hold the lock shared
210 * until after the ili_fsync_fields is cleared.
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000211 */
212 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000213 if (xfs_ipincount(ip)) {
214 if (!datasync ||
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100215 (ip->i_itemp->ili_fsync_fields & ~XFS_ILOG_TIMESTAMP))
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000216 lsn = ip->i_itemp->ili_last_lsn;
217 }
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000218
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100219 if (lsn) {
Christoph Hellwigb1037052011-09-19 14:55:51 +0000220 error = _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, &log_flushed);
Dave Chinnerfc0561c2015-11-03 13:14:59 +1100221 ip->i_itemp->ili_fsync_fields = 0;
222 }
223 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwigb1037052011-09-19 14:55:51 +0000224
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000225 /*
226 * If we only have a single device, and the log force about was
227 * a no-op we might have to flush the data device cache here.
228 * This can only happen for fdatasync/O_DSYNC if we were overwriting
229 * an already allocated file and thus do not have any metadata to
230 * commit.
231 */
232 if ((mp->m_flags & XFS_MOUNT_BARRIER) &&
233 mp->m_logdev_targp == mp->m_ddev_targp &&
234 !XFS_IS_REALTIME_INODE(ip) &&
235 !log_flushed)
236 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000237
Dave Chinner24513372014-06-25 14:58:08 +1000238 return error;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000239}
240
Christoph Hellwig00258e32010-02-15 09:44:47 +0000241STATIC ssize_t
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000242xfs_file_dio_aio_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000243 struct kiocb *iocb,
Al Virob4f5d2c2014-04-02 14:37:59 -0400244 struct iov_iter *to)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000245{
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000246 struct address_space *mapping = iocb->ki_filp->f_mapping;
247 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000248 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000249 loff_t isize = i_size_read(inode);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000250 size_t count = iov_iter_count(to);
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000251 struct iov_iter data;
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000252 struct xfs_buftarg *target;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000253 ssize_t ret = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000254
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000255 trace_xfs_file_direct_read(ip, count, iocb->ki_pos);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000256
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000257 if (!count)
258 return 0; /* skip atime */
Christoph Hellwig00258e32010-02-15 09:44:47 +0000259
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000260 if (XFS_IS_REALTIME_INODE(ip))
261 target = ip->i_mount->m_rtdev_targp;
262 else
263 target = ip->i_mount->m_ddev_targp;
264
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000265 /* DIO must be aligned to device logical sector size */
266 if ((iocb->ki_pos | count) & target->bt_logical_sectormask) {
267 if (iocb->ki_pos == isize)
268 return 0;
269 return -EINVAL;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000270 }
271
Christoph Hellwiga447d7c2016-10-03 09:47:34 +1100272 file_accessed(iocb->ki_filp);
273
Dave Chinner0c38a252011-08-25 07:17:01 +0000274 /*
Brian Foster3d751af2015-08-19 10:35:04 +1000275 * Locking is a bit tricky here. If we take an exclusive lock for direct
276 * IO, we effectively serialise all new concurrent read IO to this file
277 * and block it behind IO that is currently in progress because IO in
278 * progress holds the IO lock shared. We only need to hold the lock
279 * exclusive to blow away the page cache, so only take lock exclusively
280 * if the page cache needs invalidation. This allows the normal direct
281 * IO case of no page cache pages to proceeed concurrently without
282 * serialisation.
Dave Chinner0c38a252011-08-25 07:17:01 +0000283 */
284 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000285 if (mapping->nrpages) {
Dave Chinner0c38a252011-08-25 07:17:01 +0000286 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Dave Chinner487f84f2011-01-12 11:37:10 +1100287 xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
288
Brian Foster3d751af2015-08-19 10:35:04 +1000289 /*
290 * The generic dio code only flushes the range of the particular
291 * I/O. Because we take an exclusive lock here, this whole
292 * sequence is considerably more expensive for us. This has a
293 * noticeable performance impact for any file with cached pages,
294 * even when outside of the range of the particular I/O.
295 *
296 * Hence, amortize the cost of the lock against a full file
297 * flush and reduce the chances of repeated iolock cycles going
298 * forward.
299 */
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000300 if (mapping->nrpages) {
301 ret = filemap_write_and_wait(mapping);
Dave Chinner487f84f2011-01-12 11:37:10 +1100302 if (ret) {
303 xfs_rw_iunlock(ip, XFS_IOLOCK_EXCL);
304 return ret;
305 }
Chris Mason85e584d2014-09-02 12:12:52 +1000306
307 /*
308 * Invalidate whole pages. This can return an error if
309 * we fail to invalidate a page, but this should never
310 * happen on XFS. Warn if it does fail.
311 */
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000312 ret = invalidate_inode_pages2(mapping);
Chris Mason85e584d2014-09-02 12:12:52 +1000313 WARN_ON_ONCE(ret);
314 ret = 0;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000315 }
Dave Chinner487f84f2011-01-12 11:37:10 +1100316 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Dave Chinner0c38a252011-08-25 07:17:01 +0000317 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000318
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000319 data = *to;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000320 ret = __blockdev_direct_IO(iocb, inode, target->bt_bdev, &data,
321 xfs_get_blocks_direct, NULL, NULL, 0);
322 if (ret > 0) {
323 iocb->ki_pos += ret;
324 iov_iter_advance(to, ret);
Christoph Hellwigfa8d9722016-07-20 11:38:01 +1000325 }
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000326 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000327
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000328 return ret;
329}
330
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000331static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000332xfs_file_dax_read(
333 struct kiocb *iocb,
334 struct iov_iter *to)
335{
336 struct address_space *mapping = iocb->ki_filp->f_mapping;
337 struct inode *inode = mapping->host;
338 struct xfs_inode *ip = XFS_I(inode);
339 struct iov_iter data = *to;
340 size_t count = iov_iter_count(to);
341 ssize_t ret = 0;
342
343 trace_xfs_file_dax_read(ip, count, iocb->ki_pos);
344
345 if (!count)
346 return 0; /* skip atime */
347
348 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
349 ret = dax_do_io(iocb, inode, &data, xfs_get_blocks_direct, NULL, 0);
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000350 if (ret > 0) {
351 iocb->ki_pos += ret;
352 iov_iter_advance(to, ret);
353 }
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000354 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
355
Christoph Hellwigf1285ff2016-07-20 11:36:57 +1000356 file_accessed(iocb->ki_filp);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000357 return ret;
358}
359
360STATIC ssize_t
361xfs_file_buffered_aio_read(
362 struct kiocb *iocb,
363 struct iov_iter *to)
364{
365 struct xfs_inode *ip = XFS_I(file_inode(iocb->ki_filp));
366 ssize_t ret;
367
368 trace_xfs_file_buffered_read(ip, iov_iter_count(to), iocb->ki_pos);
369
370 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Al Virob4f5d2c2014-04-02 14:37:59 -0400371 ret = generic_file_read_iter(iocb, to);
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000372 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
373
374 return ret;
375}
376
377STATIC ssize_t
378xfs_file_read_iter(
379 struct kiocb *iocb,
380 struct iov_iter *to)
381{
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000382 struct inode *inode = file_inode(iocb->ki_filp);
383 struct xfs_mount *mp = XFS_I(inode)->i_mount;
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000384 ssize_t ret = 0;
385
386 XFS_STATS_INC(mp, xs_read_calls);
387
388 if (XFS_FORCED_SHUTDOWN(mp))
389 return -EIO;
390
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000391 if (IS_DAX(inode))
392 ret = xfs_file_dax_read(iocb, to);
393 else if (iocb->ki_flags & IOCB_DIRECT)
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000394 ret = xfs_file_dio_aio_read(iocb, to);
395 else
396 ret = xfs_file_buffered_aio_read(iocb, to);
397
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000398 if (ret > 0)
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100399 XFS_STATS_ADD(mp, xs_read_bytes, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000400 return ret;
401}
402
Christoph Hellwig00258e32010-02-15 09:44:47 +0000403STATIC ssize_t
404xfs_file_splice_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000405 struct file *infilp,
406 loff_t *ppos,
407 struct pipe_inode_info *pipe,
408 size_t count,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000409 unsigned int flags)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000410{
Christoph Hellwig00258e32010-02-15 09:44:47 +0000411 struct xfs_inode *ip = XFS_I(infilp->f_mapping->host);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000412 ssize_t ret;
413
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100414 XFS_STATS_INC(ip->i_mount, xs_read_calls);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000415
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000416 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
417 return -EIO;
418
Christoph Hellwig3176c3e2016-07-20 11:31:42 +1000419 trace_xfs_file_splice_read(ip, count, *ppos);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000420
Dave Chinnera6d76362016-01-04 16:28:25 +1100421 /*
422 * DAX inodes cannot ues the page cache for splice, so we have to push
423 * them through the VFS IO path. This means it goes through
424 * ->read_iter, which for us takes the XFS_IOLOCK_SHARED. Hence we
425 * cannot lock the splice operation at this level for DAX inodes.
426 */
427 if (IS_DAX(VFS_I(ip))) {
428 ret = default_file_splice_read(infilp, ppos, pipe, count,
429 flags);
430 goto out;
431 }
432
433 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
434 ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
435 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
436out:
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000437 if (ret > 0)
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100438 XFS_STATS_ADD(ip->i_mount, xs_read_bytes, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000439 return ret;
440}
441
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100442/*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400443 * Zero any on disk space between the current EOF and the new, larger EOF.
444 *
445 * This handles the normal case of zeroing the remainder of the last block in
446 * the file and the unusual case of zeroing blocks out beyond the size of the
447 * file. This second case only happens with fixed size extents and when the
448 * system crashes before the inode size was updated but after blocks were
449 * allocated.
450 *
451 * Expects the iolock to be held exclusive, and will take the ilock internally.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000452 */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000453int /* error (positive) */
454xfs_zero_eof(
Christoph Hellwig193aec12012-03-27 10:34:49 -0400455 struct xfs_inode *ip,
456 xfs_off_t offset, /* starting I/O offset */
Dave Chinner5885ebd2015-02-23 22:37:08 +1100457 xfs_fsize_t isize, /* current inode size */
458 bool *did_zeroing)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000459{
Christoph Hellwig193aec12012-03-27 10:34:49 -0400460 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000461 ASSERT(offset > isize);
462
Brian Foster0a50f162015-10-12 16:02:08 +1100463 trace_xfs_zero_eof(ip, isize, offset - isize);
Christoph Hellwig570b6212016-06-21 09:57:26 +1000464 return xfs_zero_range(ip, isize, offset - isize, did_zeroing);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000465}
466
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100467/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100468 * Common pre-write limit and setup checks.
469 *
Christoph Hellwig5bf1f262011-12-18 20:00:13 +0000470 * Called with the iolocked held either shared and exclusive according to
471 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
472 * if called for a direct write beyond i_size.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100473 */
474STATIC ssize_t
475xfs_file_aio_write_checks(
Al Viro99733fa2015-04-07 14:25:18 -0400476 struct kiocb *iocb,
477 struct iov_iter *from,
Dave Chinner4d8d1582011-01-11 10:23:42 +1100478 int *iolock)
479{
Al Viro99733fa2015-04-07 14:25:18 -0400480 struct file *file = iocb->ki_filp;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100481 struct inode *inode = file->f_mapping->host;
482 struct xfs_inode *ip = XFS_I(inode);
Al Viro3309dd02015-04-09 12:55:47 -0400483 ssize_t error = 0;
Al Viro99733fa2015-04-07 14:25:18 -0400484 size_t count = iov_iter_count(from);
Brian Foster3136e8b2015-10-12 16:02:05 +1100485 bool drained_dio = false;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100486
Dave Chinner7271d242011-08-25 07:17:02 +0000487restart:
Al Viro3309dd02015-04-09 12:55:47 -0400488 error = generic_write_checks(iocb, from);
489 if (error <= 0)
Dave Chinner4d8d1582011-01-11 10:23:42 +1100490 return error;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100491
Christoph Hellwig21c3ea12015-04-13 11:38:29 +1000492 error = xfs_break_layouts(inode, iolock, true);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100493 if (error)
494 return error;
495
Jan Karaa6de82c2015-05-21 16:05:56 +0200496 /* For changing security info in file_remove_privs() we need i_mutex */
497 if (*iolock == XFS_IOLOCK_SHARED && !IS_NOSEC(inode)) {
498 xfs_rw_iunlock(ip, *iolock);
499 *iolock = XFS_IOLOCK_EXCL;
500 xfs_rw_ilock(ip, *iolock);
501 goto restart;
502 }
Dave Chinner4d8d1582011-01-11 10:23:42 +1100503 /*
504 * If the offset is beyond the size of the file, we need to zero any
505 * blocks that fall between the existing EOF and the start of this
Christoph Hellwig2813d682011-12-18 20:00:12 +0000506 * write. If zeroing is needed and we are currently holding the
Christoph Hellwig467f7892012-03-27 10:34:47 -0400507 * iolock shared, we need to update it to exclusive which implies
508 * having to redo all checks before.
Dave Chinnerb9d59842015-04-16 22:03:07 +1000509 *
510 * We need to serialise against EOF updates that occur in IO
511 * completions here. We want to make sure that nobody is changing the
512 * size while we do this check until we have placed an IO barrier (i.e.
513 * hold the XFS_IOLOCK_EXCL) that prevents new IO from being dispatched.
514 * The spinlock effectively forms a memory barrier once we have the
515 * XFS_IOLOCK_EXCL so we are guaranteed to see the latest EOF value
516 * and hence be able to correctly determine if we need to run zeroing.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100517 */
Dave Chinnerb9d59842015-04-16 22:03:07 +1000518 spin_lock(&ip->i_flags_lock);
Al Viro99733fa2015-04-07 14:25:18 -0400519 if (iocb->ki_pos > i_size_read(inode)) {
Dave Chinner5885ebd2015-02-23 22:37:08 +1100520 bool zero = false;
521
Dave Chinnerb9d59842015-04-16 22:03:07 +1000522 spin_unlock(&ip->i_flags_lock);
Brian Foster3136e8b2015-10-12 16:02:05 +1100523 if (!drained_dio) {
524 if (*iolock == XFS_IOLOCK_SHARED) {
525 xfs_rw_iunlock(ip, *iolock);
526 *iolock = XFS_IOLOCK_EXCL;
527 xfs_rw_ilock(ip, *iolock);
528 iov_iter_reexpand(from, count);
529 }
Dave Chinner40c63fb2015-04-16 22:03:17 +1000530 /*
531 * We now have an IO submission barrier in place, but
532 * AIO can do EOF updates during IO completion and hence
533 * we now need to wait for all of them to drain. Non-AIO
534 * DIO will have drained before we are given the
535 * XFS_IOLOCK_EXCL, and so for most cases this wait is a
536 * no-op.
537 */
538 inode_dio_wait(inode);
Brian Foster3136e8b2015-10-12 16:02:05 +1100539 drained_dio = true;
Dave Chinner7271d242011-08-25 07:17:02 +0000540 goto restart;
541 }
Al Viro99733fa2015-04-07 14:25:18 -0400542 error = xfs_zero_eof(ip, iocb->ki_pos, i_size_read(inode), &zero);
Christoph Hellwig467f7892012-03-27 10:34:47 -0400543 if (error)
544 return error;
Dave Chinnerb9d59842015-04-16 22:03:07 +1000545 } else
546 spin_unlock(&ip->i_flags_lock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100547
548 /*
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000549 * Updating the timestamps will grab the ilock again from
550 * xfs_fs_dirty_inode, so we have to call it after dropping the
551 * lock above. Eventually we should look into a way to avoid
552 * the pointless lock roundtrip.
553 */
Josef Bacikc3b2da32012-03-26 09:59:21 -0400554 if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
555 error = file_update_time(file);
556 if (error)
557 return error;
558 }
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000559
560 /*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100561 * If we're writing the file then make sure to clear the setuid and
562 * setgid bits if the process is not being run by root. This keeps
563 * people from modifying setuid and setgid binaries.
564 */
Jan Karaa6de82c2015-05-21 16:05:56 +0200565 if (!IS_NOSEC(inode))
566 return file_remove_privs(file);
567 return 0;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100568}
569
570/*
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100571 * xfs_file_dio_aio_write - handle direct IO writes
572 *
573 * Lock the inode appropriately to prepare for and issue a direct IO write.
Dave Chinnereda77982011-01-11 10:22:40 +1100574 * By separating it from the buffered write path we remove all the tricky to
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100575 * follow locking changes and looping.
576 *
Dave Chinnereda77982011-01-11 10:22:40 +1100577 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
578 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
579 * pages are flushed out.
580 *
581 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
582 * allowing them to be done in parallel with reads and other direct IO writes.
583 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
584 * needs to do sub-block zeroing and that requires serialisation against other
585 * direct IOs to the same block. In this case we need to serialise the
586 * submission of the unaligned IOs so that we don't get racing block zeroing in
587 * the dio layer. To avoid the problem with aio, we also need to wait for
588 * outstanding IOs to complete so that unwritten extent conversion is completed
589 * before we try to map the overlapping block. This is currently implemented by
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000590 * hitting it with a big hammer (i.e. inode_dio_wait()).
Dave Chinnereda77982011-01-11 10:22:40 +1100591 *
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100592 * Returns with locks held indicated by @iolock and errors indicated by
593 * negative return values.
594 */
595STATIC ssize_t
596xfs_file_dio_aio_write(
597 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400598 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100599{
600 struct file *file = iocb->ki_filp;
601 struct address_space *mapping = file->f_mapping;
602 struct inode *inode = mapping->host;
603 struct xfs_inode *ip = XFS_I(inode);
604 struct xfs_mount *mp = ip->i_mount;
605 ssize_t ret = 0;
Dave Chinnereda77982011-01-11 10:22:40 +1100606 int unaligned_io = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000607 int iolock;
Al Virob3188912014-04-02 07:06:30 -0400608 size_t count = iov_iter_count(from);
Dave Chinner0cefb292015-04-16 22:03:27 +1000609 loff_t end;
610 struct iov_iter data;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100611 struct xfs_buftarg *target = XFS_IS_REALTIME_INODE(ip) ?
612 mp->m_rtdev_targp : mp->m_ddev_targp;
613
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600614 /* DIO must be aligned to device logical sector size */
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000615 if ((iocb->ki_pos | count) & target->bt_logical_sectormask)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000616 return -EINVAL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100617
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600618 /* "unaligned" here means not aligned to a filesystem block */
Christoph Hellwig13712712016-04-07 08:51:57 -0700619 if ((iocb->ki_pos & mp->m_blockmask) ||
620 ((iocb->ki_pos + count) & mp->m_blockmask))
Dave Chinnereda77982011-01-11 10:22:40 +1100621 unaligned_io = 1;
622
Dave Chinner7271d242011-08-25 07:17:02 +0000623 /*
624 * We don't need to take an exclusive lock unless there page cache needs
625 * to be invalidated or unaligned IO is being executed. We don't need to
626 * consider the EOF extension case here because
627 * xfs_file_aio_write_checks() will relock the inode as necessary for
628 * EOF zeroing cases and fill out the new inode size as appropriate.
629 */
630 if (unaligned_io || mapping->nrpages)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000631 iolock = XFS_IOLOCK_EXCL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100632 else
Christoph Hellwigd0606462011-12-18 20:00:14 +0000633 iolock = XFS_IOLOCK_SHARED;
634 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000635
636 /*
637 * Recheck if there are cached pages that need invalidate after we got
638 * the iolock to protect against other threads adding new pages while
639 * we were waiting for the iolock.
640 */
Christoph Hellwigd0606462011-12-18 20:00:14 +0000641 if (mapping->nrpages && iolock == XFS_IOLOCK_SHARED) {
642 xfs_rw_iunlock(ip, iolock);
643 iolock = XFS_IOLOCK_EXCL;
644 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000645 }
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100646
Al Viro99733fa2015-04-07 14:25:18 -0400647 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100648 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000649 goto out;
Al Viro99733fa2015-04-07 14:25:18 -0400650 count = iov_iter_count(from);
Christoph Hellwig13712712016-04-07 08:51:57 -0700651 end = iocb->ki_pos + count - 1;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100652
Brian Foster3d751af2015-08-19 10:35:04 +1000653 /*
Christoph Hellwigbbc5a742016-07-20 11:35:42 +1000654 * See xfs_file_dio_aio_read() for why we do a full-file flush here.
Brian Foster3d751af2015-08-19 10:35:04 +1000655 */
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100656 if (mapping->nrpages) {
Brian Foster3d751af2015-08-19 10:35:04 +1000657 ret = filemap_write_and_wait(VFS_I(ip)->i_mapping);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100658 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000659 goto out;
Dave Chinner834ffca2014-09-02 12:12:52 +1000660 /*
Brian Foster3d751af2015-08-19 10:35:04 +1000661 * Invalidate whole pages. This can return an error if we fail
662 * to invalidate a page, but this should never happen on XFS.
663 * Warn if it does fail.
Dave Chinner834ffca2014-09-02 12:12:52 +1000664 */
Brian Foster3d751af2015-08-19 10:35:04 +1000665 ret = invalidate_inode_pages2(VFS_I(ip)->i_mapping);
Dave Chinner834ffca2014-09-02 12:12:52 +1000666 WARN_ON_ONCE(ret);
667 ret = 0;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100668 }
669
Dave Chinnereda77982011-01-11 10:22:40 +1100670 /*
671 * If we are doing unaligned IO, wait for all other IO to drain,
672 * otherwise demote the lock if we had to flush cached pages
673 */
674 if (unaligned_io)
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000675 inode_dio_wait(inode);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000676 else if (iolock == XFS_IOLOCK_EXCL) {
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100677 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000678 iolock = XFS_IOLOCK_SHARED;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100679 }
680
Christoph Hellwig3176c3e2016-07-20 11:31:42 +1000681 trace_xfs_file_direct_write(ip, count, iocb->ki_pos);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100682
Dave Chinner0cefb292015-04-16 22:03:27 +1000683 data = *from;
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000684 ret = __blockdev_direct_IO(iocb, inode, target->bt_bdev, &data,
685 xfs_get_blocks_direct, xfs_end_io_direct_write,
686 NULL, DIO_ASYNC_EXTEND);
Dave Chinner0cefb292015-04-16 22:03:27 +1000687
688 /* see generic_file_direct_write() for why this is necessary */
689 if (mapping->nrpages) {
690 invalidate_inode_pages2_range(mapping,
Christoph Hellwig13712712016-04-07 08:51:57 -0700691 iocb->ki_pos >> PAGE_SHIFT,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300692 end >> PAGE_SHIFT);
Dave Chinner0cefb292015-04-16 22:03:27 +1000693 }
694
695 if (ret > 0) {
Christoph Hellwig13712712016-04-07 08:51:57 -0700696 iocb->ki_pos += ret;
Dave Chinner0cefb292015-04-16 22:03:27 +1000697 iov_iter_advance(from, ret);
Dave Chinner0cefb292015-04-16 22:03:27 +1000698 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000699out:
700 xfs_rw_iunlock(ip, iolock);
701
Dave Chinner6b698ed2015-06-04 09:18:53 +1000702 /*
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000703 * No fallback to buffered IO on errors for XFS, direct IO will either
704 * complete fully or fail.
Dave Chinner6b698ed2015-06-04 09:18:53 +1000705 */
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000706 ASSERT(ret < 0 || ret == count);
707 return ret;
708}
709
Arnd Bergmannf021bd02016-07-22 09:50:55 +1000710static noinline ssize_t
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000711xfs_file_dax_write(
712 struct kiocb *iocb,
713 struct iov_iter *from)
714{
715 struct address_space *mapping = iocb->ki_filp->f_mapping;
716 struct inode *inode = mapping->host;
717 struct xfs_inode *ip = XFS_I(inode);
718 struct xfs_mount *mp = ip->i_mount;
719 ssize_t ret = 0;
720 int unaligned_io = 0;
721 int iolock;
722 struct iov_iter data;
723
724 /* "unaligned" here means not aligned to a filesystem block */
725 if ((iocb->ki_pos & mp->m_blockmask) ||
726 ((iocb->ki_pos + iov_iter_count(from)) & mp->m_blockmask)) {
727 unaligned_io = 1;
728 iolock = XFS_IOLOCK_EXCL;
729 } else if (mapping->nrpages) {
730 iolock = XFS_IOLOCK_EXCL;
731 } else {
732 iolock = XFS_IOLOCK_SHARED;
733 }
734 xfs_rw_ilock(ip, iolock);
735
736 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
737 if (ret)
738 goto out;
739
740 /*
741 * Yes, even DAX files can have page cache attached to them: A zeroed
742 * page is inserted into the pagecache when we have to serve a write
743 * fault on a hole. It should never be dirtied and can simply be
744 * dropped from the pagecache once we get real data for the page.
Dave Chinner8b2180b2016-08-17 08:31:33 +1000745 *
746 * XXX: This is racy against mmap, and there's nothing we can do about
747 * it. dax_do_io() should really do this invalidation internally as
748 * it will know if we've allocated over a holei for this specific IO and
749 * if so it needs to update the mapping tree and invalidate existing
750 * PTEs over the newly allocated range. Remove this invalidation when
751 * dax_do_io() is fixed up.
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000752 */
753 if (mapping->nrpages) {
Dave Chinner8b2180b2016-08-17 08:31:33 +1000754 loff_t end = iocb->ki_pos + iov_iter_count(from) - 1;
755
756 ret = invalidate_inode_pages2_range(mapping,
757 iocb->ki_pos >> PAGE_SHIFT,
758 end >> PAGE_SHIFT);
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000759 WARN_ON_ONCE(ret);
760 }
761
762 if (iolock == XFS_IOLOCK_EXCL && !unaligned_io) {
763 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
764 iolock = XFS_IOLOCK_SHARED;
765 }
766
767 trace_xfs_file_dax_write(ip, iov_iter_count(from), iocb->ki_pos);
768
769 data = *from;
770 ret = dax_do_io(iocb, inode, &data, xfs_get_blocks_direct,
771 xfs_end_io_direct_write, 0);
772 if (ret > 0) {
773 iocb->ki_pos += ret;
774 iov_iter_advance(from, ret);
775 }
776out:
777 xfs_rw_iunlock(ip, iolock);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100778 return ret;
779}
780
Christoph Hellwig00258e32010-02-15 09:44:47 +0000781STATIC ssize_t
Dave Chinner637bbc72011-01-11 10:17:30 +1100782xfs_file_buffered_aio_write(
783 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400784 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100785{
786 struct file *file = iocb->ki_filp;
787 struct address_space *mapping = file->f_mapping;
788 struct inode *inode = mapping->host;
789 struct xfs_inode *ip = XFS_I(inode);
790 ssize_t ret;
791 int enospc = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000792 int iolock = XFS_IOLOCK_EXCL;
Dave Chinner637bbc72011-01-11 10:17:30 +1100793
Christoph Hellwigd0606462011-12-18 20:00:14 +0000794 xfs_rw_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100795
Al Viro99733fa2015-04-07 14:25:18 -0400796 ret = xfs_file_aio_write_checks(iocb, from, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100797 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000798 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100799
800 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100801 current->backing_dev_info = inode_to_bdi(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100802
803write_retry:
Christoph Hellwig3176c3e2016-07-20 11:31:42 +1000804 trace_xfs_file_buffered_write(ip, iov_iter_count(from), iocb->ki_pos);
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +1000805 ret = iomap_file_buffered_write(iocb, from, &xfs_iomap_ops);
Al Viro0a64bc22014-02-11 22:25:22 -0500806 if (likely(ret >= 0))
Al Viro99733fa2015-04-07 14:25:18 -0400807 iocb->ki_pos += ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000808
Dave Chinner637bbc72011-01-11 10:17:30 +1100809 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000810 * If we hit a space limit, try to free up some lingering preallocated
811 * space before returning an error. In the case of ENOSPC, first try to
812 * write back all dirty inodes to free up some of the excess reserved
813 * metadata space. This reduces the chances that the eofblocks scan
814 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
815 * also behaves as a filter to prevent too many eofblocks scans from
816 * running at the same time.
Dave Chinner637bbc72011-01-11 10:17:30 +1100817 */
Brian Fosterdc06f3982014-07-24 19:49:28 +1000818 if (ret == -EDQUOT && !enospc) {
819 enospc = xfs_inode_free_quota_eofblocks(ip);
820 if (enospc)
821 goto write_retry;
822 } else if (ret == -ENOSPC && !enospc) {
823 struct xfs_eofblocks eofb = {0};
824
Dave Chinner637bbc72011-01-11 10:17:30 +1100825 enospc = 1;
Dave Chinner9aa05002012-10-08 21:56:04 +1100826 xfs_flush_inodes(ip->i_mount);
Brian Fosterdc06f3982014-07-24 19:49:28 +1000827 eofb.eof_scan_owner = ip->i_ino; /* for locking */
828 eofb.eof_flags = XFS_EOF_FLAGS_SYNC;
829 xfs_icache_free_eofblocks(ip->i_mount, &eofb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100830 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100831 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000832
Dave Chinner637bbc72011-01-11 10:17:30 +1100833 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000834out:
835 xfs_rw_iunlock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100836 return ret;
837}
838
839STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400840xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000841 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400842 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000843{
844 struct file *file = iocb->ki_filp;
845 struct address_space *mapping = file->f_mapping;
846 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000847 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100848 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400849 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000850
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100851 XFS_STATS_INC(ip->i_mount, xs_write_calls);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000852
Dave Chinner637bbc72011-01-11 10:17:30 +1100853 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000854 return 0;
855
Al Virobf97f3bc2014-04-03 14:20:23 -0400856 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
857 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000858
Christoph Hellwig16d4d432016-07-20 11:38:55 +1000859 if (IS_DAX(inode))
860 ret = xfs_file_dax_write(iocb, from);
861 else if (iocb->ki_flags & IOCB_DIRECT)
Al Virobf97f3bc2014-04-03 14:20:23 -0400862 ret = xfs_file_dio_aio_write(iocb, from);
Dave Chinner637bbc72011-01-11 10:17:30 +1100863 else
Al Virobf97f3bc2014-04-03 14:20:23 -0400864 ret = xfs_file_buffered_aio_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000865
Christoph Hellwigd0606462011-12-18 20:00:14 +0000866 if (ret > 0) {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100867 XFS_STATS_ADD(ip->i_mount, xs_write_bytes, ret);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000868
Christoph Hellwigd0606462011-12-18 20:00:14 +0000869 /* Handle various SYNC-type writes */
Christoph Hellwige2592212016-04-07 08:52:01 -0700870 ret = generic_write_sync(iocb, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000871 }
Dave Chinnera363f0c2011-01-11 10:13:53 +1100872 return ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000873}
874
Namjae Jeona904b1c2015-03-25 15:08:56 +1100875#define XFS_FALLOC_FL_SUPPORTED \
876 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
877 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE | \
878 FALLOC_FL_INSERT_RANGE)
879
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100880STATIC long
881xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700882 struct file *file,
883 int mode,
884 loff_t offset,
885 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100886{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700887 struct inode *inode = file_inode(file);
888 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700889 long error;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100890 enum xfs_prealloc_flags flags = 0;
Christoph Hellwig781355c2015-02-16 11:59:50 +1100891 uint iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700892 loff_t new_size = 0;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100893 bool do_file_insert = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100894
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700895 if (!S_ISREG(inode->i_mode))
896 return -EINVAL;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100897 if (mode & ~XFS_FALLOC_FL_SUPPORTED)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100898 return -EOPNOTSUPP;
899
Christoph Hellwig781355c2015-02-16 11:59:50 +1100900 xfs_ilock(ip, iolock);
Christoph Hellwig21c3ea12015-04-13 11:38:29 +1000901 error = xfs_break_layouts(inode, &iolock, false);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100902 if (error)
903 goto out_unlock;
904
Dave Chinnere8e9ad42015-02-23 21:45:32 +1100905 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
906 iolock |= XFS_MMAPLOCK_EXCL;
907
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700908 if (mode & FALLOC_FL_PUNCH_HOLE) {
909 error = xfs_free_file_space(ip, offset, len);
910 if (error)
911 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100912 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
913 unsigned blksize_mask = (1 << inode->i_blkbits) - 1;
914
915 if (offset & blksize_mask || len & blksize_mask) {
Dave Chinner24513372014-06-25 14:58:08 +1000916 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100917 goto out_unlock;
918 }
919
Lukas Czerner23fffa92014-04-12 09:56:41 -0400920 /*
921 * There is no need to overlap collapse range with EOF,
922 * in which case it is effectively a truncate operation
923 */
924 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000925 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400926 goto out_unlock;
927 }
928
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100929 new_size = i_size_read(inode) - len;
930
931 error = xfs_collapse_file_space(ip, offset, len);
932 if (error)
933 goto out_unlock;
Namjae Jeona904b1c2015-03-25 15:08:56 +1100934 } else if (mode & FALLOC_FL_INSERT_RANGE) {
935 unsigned blksize_mask = (1 << inode->i_blkbits) - 1;
936
937 new_size = i_size_read(inode) + len;
938 if (offset & blksize_mask || len & blksize_mask) {
939 error = -EINVAL;
940 goto out_unlock;
941 }
942
943 /* check the new inode size does not wrap through zero */
944 if (new_size > inode->i_sb->s_maxbytes) {
945 error = -EFBIG;
946 goto out_unlock;
947 }
948
949 /* Offset should be less than i_size */
950 if (offset >= i_size_read(inode)) {
951 error = -EINVAL;
952 goto out_unlock;
953 }
954 do_file_insert = 1;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700955 } else {
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100956 flags |= XFS_PREALLOC_SET;
957
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700958 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
959 offset + len > i_size_read(inode)) {
960 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +1000961 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700962 if (error)
963 goto out_unlock;
964 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100965
Lukas Czerner376ba312014-03-13 19:07:58 +1100966 if (mode & FALLOC_FL_ZERO_RANGE)
967 error = xfs_zero_file_space(ip, offset, len);
968 else
969 error = xfs_alloc_file_space(ip, offset, len,
970 XFS_BMAPI_PREALLOC);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100971 if (error)
972 goto out_unlock;
973 }
974
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700975 if (file->f_flags & O_DSYNC)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100976 flags |= XFS_PREALLOC_SYNC;
977
978 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100979 if (error)
980 goto out_unlock;
981
982 /* Change file size if needed */
983 if (new_size) {
984 struct iattr iattr;
985
986 iattr.ia_valid = ATTR_SIZE;
987 iattr.ia_size = new_size;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700988 error = xfs_setattr_size(ip, &iattr);
Namjae Jeona904b1c2015-03-25 15:08:56 +1100989 if (error)
990 goto out_unlock;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100991 }
992
Namjae Jeona904b1c2015-03-25 15:08:56 +1100993 /*
994 * Perform hole insertion now that the file size has been
995 * updated so that if we crash during the operation we don't
996 * leave shifted extents past EOF and hence losing access to
997 * the data that is contained within them.
998 */
999 if (do_file_insert)
1000 error = xfs_insert_file_space(ip, offset, len);
1001
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001002out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +11001003 xfs_iunlock(ip, iolock);
Dave Chinner24513372014-06-25 14:58:08 +10001004 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001005}
1006
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001009xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001011 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001013 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001015 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
1016 return -EIO;
1017 return 0;
1018}
1019
1020STATIC int
1021xfs_dir_open(
1022 struct inode *inode,
1023 struct file *file)
1024{
1025 struct xfs_inode *ip = XFS_I(inode);
1026 int mode;
1027 int error;
1028
1029 error = xfs_file_open(inode, file);
1030 if (error)
1031 return error;
1032
1033 /*
1034 * If there are any blocks, read-ahead block 0 as we're almost
1035 * certain to have the next operation be a read there.
1036 */
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001037 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001038 if (ip->i_d.di_nextents > 0)
Eric Sandeen9df2dd02014-04-14 19:01:59 +10001039 xfs_dir3_data_readahead(ip, 0, -1);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001040 xfs_iunlock(ip, mode);
1041 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001045xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 struct inode *inode,
1047 struct file *filp)
1048{
Dave Chinner24513372014-06-25 14:58:08 +10001049 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001053xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -04001054 struct file *file,
1055 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Al Virob8227552013-05-22 17:07:56 -04001057 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001058 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001059 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001061 /*
1062 * The Linux API doesn't pass down the total size of the buffer
1063 * we read into down to the filesystem. With the filldir concept
1064 * it's not needed for correct information, but the XFS dir2 leaf
1065 * code wants an estimate of the buffer size to calculate it's
1066 * readahead window and size the buffers used for mapping to
1067 * physical blocks.
1068 *
1069 * Try to give it an estimate that's good enough, maybe at some
1070 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001071 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001072 */
Eric Sandeena9cc7992010-02-03 17:50:13 +00001073 bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
kbuild test robot83004752014-12-01 08:25:28 +11001075 return xfs_readdir(ip, ctx, bufsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
David Chinner4f57dbc2007-07-19 16:28:17 +10001078/*
Jeff Liud126d432012-08-21 17:11:57 +08001079 * This type is designed to indicate the type of offset we would like
Eric Sandeen49c69592014-09-09 11:56:48 +10001080 * to search from page cache for xfs_seek_hole_data().
Jeff Liud126d432012-08-21 17:11:57 +08001081 */
1082enum {
1083 HOLE_OFF = 0,
1084 DATA_OFF,
1085};
1086
1087/*
1088 * Lookup the desired type of offset from the given page.
1089 *
1090 * On success, return true and the offset argument will point to the
1091 * start of the region that was found. Otherwise this function will
1092 * return false and keep the offset argument unchanged.
1093 */
1094STATIC bool
1095xfs_lookup_buffer_offset(
1096 struct page *page,
1097 loff_t *offset,
1098 unsigned int type)
1099{
1100 loff_t lastoff = page_offset(page);
1101 bool found = false;
1102 struct buffer_head *bh, *head;
1103
1104 bh = head = page_buffers(page);
1105 do {
1106 /*
1107 * Unwritten extents that have data in the page
1108 * cache covering them can be identified by the
1109 * BH_Unwritten state flag. Pages with multiple
1110 * buffers might have a mix of holes, data and
1111 * unwritten extents - any buffer with valid
1112 * data in it should have BH_Uptodate flag set
1113 * on it.
1114 */
1115 if (buffer_unwritten(bh) ||
1116 buffer_uptodate(bh)) {
1117 if (type == DATA_OFF)
1118 found = true;
1119 } else {
1120 if (type == HOLE_OFF)
1121 found = true;
1122 }
1123
1124 if (found) {
1125 *offset = lastoff;
1126 break;
1127 }
1128 lastoff += bh->b_size;
1129 } while ((bh = bh->b_this_page) != head);
1130
1131 return found;
1132}
1133
1134/*
1135 * This routine is called to find out and return a data or hole offset
1136 * from the page cache for unwritten extents according to the desired
Eric Sandeen49c69592014-09-09 11:56:48 +10001137 * type for xfs_seek_hole_data().
Jeff Liud126d432012-08-21 17:11:57 +08001138 *
1139 * The argument offset is used to tell where we start to search from the
1140 * page cache. Map is used to figure out the end points of the range to
1141 * lookup pages.
1142 *
1143 * Return true if the desired type of offset was found, and the argument
1144 * offset is filled with that address. Otherwise, return false and keep
1145 * offset unchanged.
1146 */
1147STATIC bool
1148xfs_find_get_desired_pgoff(
1149 struct inode *inode,
1150 struct xfs_bmbt_irec *map,
1151 unsigned int type,
1152 loff_t *offset)
1153{
1154 struct xfs_inode *ip = XFS_I(inode);
1155 struct xfs_mount *mp = ip->i_mount;
1156 struct pagevec pvec;
1157 pgoff_t index;
1158 pgoff_t end;
1159 loff_t endoff;
1160 loff_t startoff = *offset;
1161 loff_t lastoff = startoff;
1162 bool found = false;
1163
1164 pagevec_init(&pvec, 0);
1165
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001166 index = startoff >> PAGE_SHIFT;
Jeff Liud126d432012-08-21 17:11:57 +08001167 endoff = XFS_FSB_TO_B(mp, map->br_startoff + map->br_blockcount);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001168 end = endoff >> PAGE_SHIFT;
Jeff Liud126d432012-08-21 17:11:57 +08001169 do {
1170 int want;
1171 unsigned nr_pages;
1172 unsigned int i;
1173
1174 want = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
1175 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
1176 want);
1177 /*
1178 * No page mapped into given range. If we are searching holes
1179 * and if this is the first time we got into the loop, it means
1180 * that the given offset is landed in a hole, return it.
1181 *
1182 * If we have already stepped through some block buffers to find
1183 * holes but they all contains data. In this case, the last
1184 * offset is already updated and pointed to the end of the last
1185 * mapped page, if it does not reach the endpoint to search,
1186 * that means there should be a hole between them.
1187 */
1188 if (nr_pages == 0) {
1189 /* Data search found nothing */
1190 if (type == DATA_OFF)
1191 break;
1192
1193 ASSERT(type == HOLE_OFF);
1194 if (lastoff == startoff || lastoff < endoff) {
1195 found = true;
1196 *offset = lastoff;
1197 }
1198 break;
1199 }
1200
1201 /*
1202 * At lease we found one page. If this is the first time we
1203 * step into the loop, and if the first page index offset is
1204 * greater than the given search offset, a hole was found.
1205 */
1206 if (type == HOLE_OFF && lastoff == startoff &&
1207 lastoff < page_offset(pvec.pages[0])) {
1208 found = true;
1209 break;
1210 }
1211
1212 for (i = 0; i < nr_pages; i++) {
1213 struct page *page = pvec.pages[i];
1214 loff_t b_offset;
1215
1216 /*
1217 * At this point, the page may be truncated or
1218 * invalidated (changing page->mapping to NULL),
1219 * or even swizzled back from swapper_space to tmpfs
1220 * file mapping. However, page->index will not change
1221 * because we have a reference on the page.
1222 *
1223 * Searching done if the page index is out of range.
1224 * If the current offset is not reaches the end of
1225 * the specified search range, there should be a hole
1226 * between them.
1227 */
1228 if (page->index > end) {
1229 if (type == HOLE_OFF && lastoff < endoff) {
1230 *offset = lastoff;
1231 found = true;
1232 }
1233 goto out;
1234 }
1235
1236 lock_page(page);
1237 /*
1238 * Page truncated or invalidated(page->mapping == NULL).
1239 * We can freely skip it and proceed to check the next
1240 * page.
1241 */
1242 if (unlikely(page->mapping != inode->i_mapping)) {
1243 unlock_page(page);
1244 continue;
1245 }
1246
1247 if (!page_has_buffers(page)) {
1248 unlock_page(page);
1249 continue;
1250 }
1251
1252 found = xfs_lookup_buffer_offset(page, &b_offset, type);
1253 if (found) {
1254 /*
1255 * The found offset may be less than the start
1256 * point to search if this is the first time to
1257 * come here.
1258 */
1259 *offset = max_t(loff_t, startoff, b_offset);
1260 unlock_page(page);
1261 goto out;
1262 }
1263
1264 /*
1265 * We either searching data but nothing was found, or
1266 * searching hole but found a data buffer. In either
1267 * case, probably the next page contains the desired
1268 * things, update the last offset to it so.
1269 */
1270 lastoff = page_offset(page) + PAGE_SIZE;
1271 unlock_page(page);
1272 }
1273
1274 /*
1275 * The number of returned pages less than our desired, search
1276 * done. In this case, nothing was found for searching data,
1277 * but we found a hole behind the last offset.
1278 */
1279 if (nr_pages < want) {
1280 if (type == HOLE_OFF) {
1281 *offset = lastoff;
1282 found = true;
1283 }
1284 break;
1285 }
1286
1287 index = pvec.pages[i - 1]->index + 1;
1288 pagevec_release(&pvec);
1289 } while (index <= end);
1290
1291out:
1292 pagevec_release(&pvec);
1293 return found;
1294}
1295
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001296/*
1297 * caller must lock inode with xfs_ilock_data_map_shared,
1298 * can we craft an appropriate ASSERT?
1299 *
1300 * end is because the VFS-level lseek interface is defined such that any
1301 * offset past i_size shall return -ENXIO, but we use this for quota code
1302 * which does not maintain i_size, and we want to SEEK_DATA past i_size.
1303 */
1304loff_t
1305__xfs_seek_hole_data(
1306 struct inode *inode,
Eric Sandeen49c69592014-09-09 11:56:48 +10001307 loff_t start,
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001308 loff_t end,
Eric Sandeen49c69592014-09-09 11:56:48 +10001309 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001310{
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001311 struct xfs_inode *ip = XFS_I(inode);
1312 struct xfs_mount *mp = ip->i_mount;
1313 loff_t uninitialized_var(offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001314 xfs_fileoff_t fsbno;
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001315 xfs_filblks_t lastbno;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001316 int error;
1317
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001318 if (start >= end) {
Dave Chinner24513372014-06-25 14:58:08 +10001319 error = -ENXIO;
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001320 goto out_error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001321 }
1322
Eric Sandeen49c69592014-09-09 11:56:48 +10001323 /*
1324 * Try to read extents from the first block indicated
1325 * by fsbno to the end block of the file.
1326 */
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001327 fsbno = XFS_B_TO_FSBT(mp, start);
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001328 lastbno = XFS_B_TO_FSB(mp, end);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001329
Jeff Liub686d1f2012-08-21 17:12:18 +08001330 for (;;) {
1331 struct xfs_bmbt_irec map[2];
1332 int nmap = 2;
1333 unsigned int i;
1334
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001335 error = xfs_bmapi_read(ip, fsbno, lastbno - fsbno, map, &nmap,
Jeff Liub686d1f2012-08-21 17:12:18 +08001336 XFS_BMAPI_ENTIRE);
1337 if (error)
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001338 goto out_error;
Jeff Liub686d1f2012-08-21 17:12:18 +08001339
1340 /* No extents at given offset, must be beyond EOF */
1341 if (nmap == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001342 error = -ENXIO;
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001343 goto out_error;
Jeff Liub686d1f2012-08-21 17:12:18 +08001344 }
1345
1346 for (i = 0; i < nmap; i++) {
1347 offset = max_t(loff_t, start,
1348 XFS_FSB_TO_B(mp, map[i].br_startoff));
1349
Eric Sandeen49c69592014-09-09 11:56:48 +10001350 /* Landed in the hole we wanted? */
1351 if (whence == SEEK_HOLE &&
1352 map[i].br_startblock == HOLESTARTBLOCK)
1353 goto out;
1354
1355 /* Landed in the data extent we wanted? */
1356 if (whence == SEEK_DATA &&
1357 (map[i].br_startblock == DELAYSTARTBLOCK ||
1358 (map[i].br_state == XFS_EXT_NORM &&
1359 !isnullstartblock(map[i].br_startblock))))
Jeff Liub686d1f2012-08-21 17:12:18 +08001360 goto out;
1361
1362 /*
Eric Sandeen49c69592014-09-09 11:56:48 +10001363 * Landed in an unwritten extent, try to search
1364 * for hole or data from page cache.
Jeff Liub686d1f2012-08-21 17:12:18 +08001365 */
1366 if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1367 if (xfs_find_get_desired_pgoff(inode, &map[i],
Eric Sandeen49c69592014-09-09 11:56:48 +10001368 whence == SEEK_HOLE ? HOLE_OFF : DATA_OFF,
1369 &offset))
Jeff Liub686d1f2012-08-21 17:12:18 +08001370 goto out;
1371 }
1372 }
1373
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001374 /*
Eric Sandeen49c69592014-09-09 11:56:48 +10001375 * We only received one extent out of the two requested. This
1376 * means we've hit EOF and didn't find what we are looking for.
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001377 */
Jeff Liub686d1f2012-08-21 17:12:18 +08001378 if (nmap == 1) {
Eric Sandeen49c69592014-09-09 11:56:48 +10001379 /*
1380 * If we were looking for a hole, set offset to
1381 * the end of the file (i.e., there is an implicit
1382 * hole at the end of any file).
1383 */
1384 if (whence == SEEK_HOLE) {
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001385 offset = end;
Eric Sandeen49c69592014-09-09 11:56:48 +10001386 break;
1387 }
1388 /*
1389 * If we were looking for data, it's nowhere to be found
1390 */
1391 ASSERT(whence == SEEK_DATA);
1392 error = -ENXIO;
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001393 goto out_error;
Jeff Liub686d1f2012-08-21 17:12:18 +08001394 }
1395
1396 ASSERT(i > 1);
1397
1398 /*
Eric Sandeen49c69592014-09-09 11:56:48 +10001399 * Nothing was found, proceed to the next round of search
1400 * if the next reading offset is not at or beyond EOF.
Jeff Liub686d1f2012-08-21 17:12:18 +08001401 */
1402 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1403 start = XFS_FSB_TO_B(mp, fsbno);
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001404 if (start >= end) {
Eric Sandeen49c69592014-09-09 11:56:48 +10001405 if (whence == SEEK_HOLE) {
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001406 offset = end;
Eric Sandeen49c69592014-09-09 11:56:48 +10001407 break;
1408 }
1409 ASSERT(whence == SEEK_DATA);
1410 error = -ENXIO;
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001411 goto out_error;
Jeff Liub686d1f2012-08-21 17:12:18 +08001412 }
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001413 }
1414
Jeff Liub686d1f2012-08-21 17:12:18 +08001415out:
1416 /*
Eric Sandeen49c69592014-09-09 11:56:48 +10001417 * If at this point we have found the hole we wanted, the returned
Jeff Liub686d1f2012-08-21 17:12:18 +08001418 * offset may be bigger than the file size as it may be aligned to
Eric Sandeen49c69592014-09-09 11:56:48 +10001419 * page boundary for unwritten extents. We need to deal with this
Jeff Liub686d1f2012-08-21 17:12:18 +08001420 * situation in particular.
1421 */
Eric Sandeen49c69592014-09-09 11:56:48 +10001422 if (whence == SEEK_HOLE)
Eric Sandeen8aa7d372016-02-08 11:25:16 +11001423 offset = min_t(loff_t, offset, end);
1424
1425 return offset;
1426
1427out_error:
1428 return error;
1429}
1430
1431STATIC loff_t
1432xfs_seek_hole_data(
1433 struct file *file,
1434 loff_t start,
1435 int whence)
1436{
1437 struct inode *inode = file->f_mapping->host;
1438 struct xfs_inode *ip = XFS_I(inode);
1439 struct xfs_mount *mp = ip->i_mount;
1440 uint lock;
1441 loff_t offset, end;
1442 int error = 0;
1443
1444 if (XFS_FORCED_SHUTDOWN(mp))
1445 return -EIO;
1446
1447 lock = xfs_ilock_data_map_shared(ip);
1448
1449 end = i_size_read(inode);
1450 offset = __xfs_seek_hole_data(inode, start, end, whence);
1451 if (offset < 0) {
1452 error = offset;
1453 goto out_unlock;
1454 }
1455
Jie Liu46a1c2c2013-06-25 12:02:13 +08001456 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001457
1458out_unlock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -08001459 xfs_iunlock(ip, lock);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001460
1461 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001462 return error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001463 return offset;
1464}
1465
1466STATIC loff_t
1467xfs_file_llseek(
1468 struct file *file,
1469 loff_t offset,
Eric Sandeen59f9c002014-09-09 11:57:10 +10001470 int whence)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001471{
Eric Sandeen59f9c002014-09-09 11:57:10 +10001472 switch (whence) {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001473 case SEEK_END:
1474 case SEEK_CUR:
1475 case SEEK_SET:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001476 return generic_file_llseek(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001477 case SEEK_HOLE:
Eric Sandeen49c69592014-09-09 11:56:48 +10001478 case SEEK_DATA:
Eric Sandeen59f9c002014-09-09 11:57:10 +10001479 return xfs_seek_hole_data(file, offset, whence);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001480 default:
1481 return -EINVAL;
1482 }
1483}
1484
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001485/*
1486 * Locking for serialisation of IO during page faults. This results in a lock
1487 * ordering of:
1488 *
1489 * mmap_sem (MM)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001490 * sb_start_pagefault(vfs, freeze)
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001491 * i_mmaplock (XFS - truncate serialisation)
Dave Chinner6b698ed2015-06-04 09:18:53 +10001492 * page_lock (MM)
1493 * i_lock (XFS - extent map serialisation)
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001494 */
Dave Chinnerde0e8c22015-02-23 21:44:19 +11001495
Dave Chinner075a9242015-02-23 21:44:54 +11001496/*
1497 * mmap()d file has taken write protection fault and is being made writable. We
1498 * can set the page state up correctly for a writable page, which means we can
1499 * do correct delalloc accounting (ENOSPC checking!) and unwritten extent
1500 * mapping.
1501 */
1502STATIC int
1503xfs_filemap_page_mkwrite(
1504 struct vm_area_struct *vma,
1505 struct vm_fault *vmf)
1506{
Dave Chinner6b698ed2015-06-04 09:18:53 +10001507 struct inode *inode = file_inode(vma->vm_file);
Dave Chinnerec56b1f2015-06-04 09:18:18 +10001508 int ret;
Dave Chinner075a9242015-02-23 21:44:54 +11001509
Dave Chinner6b698ed2015-06-04 09:18:53 +10001510 trace_xfs_filemap_page_mkwrite(XFS_I(inode));
Dave Chinner075a9242015-02-23 21:44:54 +11001511
Dave Chinner6b698ed2015-06-04 09:18:53 +10001512 sb_start_pagefault(inode->i_sb);
Dave Chinnerec56b1f2015-06-04 09:18:18 +10001513 file_update_time(vma->vm_file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001514 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1515
1516 if (IS_DAX(inode)) {
Ross Zwisler6b524992016-07-26 15:21:05 -07001517 ret = dax_mkwrite(vma, vmf, xfs_get_blocks_dax_fault);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001518 } else {
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001519 ret = iomap_page_mkwrite(vma, vmf, &xfs_iomap_ops);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001520 ret = block_page_mkwrite_return(ret);
1521 }
1522
1523 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1524 sb_end_pagefault(inode->i_sb);
1525
1526 return ret;
1527}
1528
1529STATIC int
1530xfs_filemap_fault(
1531 struct vm_area_struct *vma,
1532 struct vm_fault *vmf)
1533{
Dave Chinnerb2442c52015-07-29 11:48:00 +10001534 struct inode *inode = file_inode(vma->vm_file);
Dave Chinner6b698ed2015-06-04 09:18:53 +10001535 int ret;
1536
Dave Chinnerb2442c52015-07-29 11:48:00 +10001537 trace_xfs_filemap_fault(XFS_I(inode));
Dave Chinner6b698ed2015-06-04 09:18:53 +10001538
1539 /* DAX can shortcut the normal fault path on write faults! */
Dave Chinnerb2442c52015-07-29 11:48:00 +10001540 if ((vmf->flags & FAULT_FLAG_WRITE) && IS_DAX(inode))
Dave Chinner6b698ed2015-06-04 09:18:53 +10001541 return xfs_filemap_page_mkwrite(vma, vmf);
Dave Chinner075a9242015-02-23 21:44:54 +11001542
Dave Chinnerb2442c52015-07-29 11:48:00 +10001543 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
1544 if (IS_DAX(inode)) {
1545 /*
1546 * we do not want to trigger unwritten extent conversion on read
1547 * faults - that is unnecessary overhead and would also require
1548 * changes to xfs_get_blocks_direct() to map unwritten extent
1549 * ioend for conversion on read-only mappings.
1550 */
Ross Zwisler6b524992016-07-26 15:21:05 -07001551 ret = dax_fault(vma, vmf, xfs_get_blocks_dax_fault);
Dave Chinnerb2442c52015-07-29 11:48:00 +10001552 } else
1553 ret = filemap_fault(vma, vmf);
1554 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Dave Chinner075a9242015-02-23 21:44:54 +11001555
Dave Chinner6b698ed2015-06-04 09:18:53 +10001556 return ret;
1557}
1558
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001559/*
1560 * Similar to xfs_filemap_fault(), the DAX fault path can call into here on
1561 * both read and write faults. Hence we need to handle both cases. There is no
1562 * ->pmd_mkwrite callout for huge pages, so we have a single function here to
1563 * handle both cases here. @flags carries the information on the type of fault
1564 * occuring.
1565 */
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001566STATIC int
1567xfs_filemap_pmd_fault(
1568 struct vm_area_struct *vma,
1569 unsigned long addr,
1570 pmd_t *pmd,
1571 unsigned int flags)
1572{
1573 struct inode *inode = file_inode(vma->vm_file);
1574 struct xfs_inode *ip = XFS_I(inode);
1575 int ret;
1576
1577 if (!IS_DAX(inode))
1578 return VM_FAULT_FALLBACK;
1579
1580 trace_xfs_filemap_pmd_fault(ip);
1581
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001582 if (flags & FAULT_FLAG_WRITE) {
1583 sb_start_pagefault(inode->i_sb);
1584 file_update_time(vma->vm_file);
1585 }
1586
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001587 xfs_ilock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Ross Zwisler6b524992016-07-26 15:21:05 -07001588 ret = dax_pmd_fault(vma, addr, pmd, flags, xfs_get_blocks_dax_fault);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001589 xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);
Dave Chinner13ad4fe2015-11-03 12:37:02 +11001590
1591 if (flags & FAULT_FLAG_WRITE)
1592 sb_end_pagefault(inode->i_sb);
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001593
1594 return ret;
1595}
1596
Dave Chinner3af49282015-11-03 12:37:02 +11001597/*
1598 * pfn_mkwrite was originally inteneded to ensure we capture time stamp
1599 * updates on write faults. In reality, it's need to serialise against
Ross Zwisler5eb88dc2016-01-22 15:10:56 -08001600 * truncate similar to page_mkwrite. Hence we cycle the XFS_MMAPLOCK_SHARED
1601 * to ensure we serialise the fault barrier in place.
Dave Chinner3af49282015-11-03 12:37:02 +11001602 */
1603static int
1604xfs_filemap_pfn_mkwrite(
1605 struct vm_area_struct *vma,
1606 struct vm_fault *vmf)
1607{
1608
1609 struct inode *inode = file_inode(vma->vm_file);
1610 struct xfs_inode *ip = XFS_I(inode);
1611 int ret = VM_FAULT_NOPAGE;
1612 loff_t size;
1613
1614 trace_xfs_filemap_pfn_mkwrite(ip);
1615
1616 sb_start_pagefault(inode->i_sb);
1617 file_update_time(vma->vm_file);
1618
1619 /* check if the faulting page hasn't raced with truncate */
1620 xfs_ilock(ip, XFS_MMAPLOCK_SHARED);
1621 size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1622 if (vmf->pgoff >= size)
1623 ret = VM_FAULT_SIGBUS;
Ross Zwisler5eb88dc2016-01-22 15:10:56 -08001624 else if (IS_DAX(inode))
1625 ret = dax_pfn_mkwrite(vma, vmf);
Dave Chinner3af49282015-11-03 12:37:02 +11001626 xfs_iunlock(ip, XFS_MMAPLOCK_SHARED);
1627 sb_end_pagefault(inode->i_sb);
1628 return ret;
1629
1630}
1631
Dave Chinner6b698ed2015-06-04 09:18:53 +10001632static const struct vm_operations_struct xfs_file_vm_ops = {
1633 .fault = xfs_filemap_fault,
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001634 .pmd_fault = xfs_filemap_pmd_fault,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001635 .map_pages = filemap_map_pages,
1636 .page_mkwrite = xfs_filemap_page_mkwrite,
Dave Chinner3af49282015-11-03 12:37:02 +11001637 .pfn_mkwrite = xfs_filemap_pfn_mkwrite,
Dave Chinner6b698ed2015-06-04 09:18:53 +10001638};
1639
1640STATIC int
1641xfs_file_mmap(
1642 struct file *filp,
1643 struct vm_area_struct *vma)
1644{
1645 file_accessed(filp);
1646 vma->vm_ops = &xfs_file_vm_ops;
1647 if (IS_DAX(file_inode(filp)))
Matthew Wilcoxacd76e72015-09-08 14:59:06 -07001648 vma->vm_flags |= VM_MIXEDMAP | VM_HUGEPAGE;
Dave Chinner6b698ed2015-06-04 09:18:53 +10001649 return 0;
Dave Chinner075a9242015-02-23 21:44:54 +11001650}
1651
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001652const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001653 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001654 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001655 .write_iter = xfs_file_write_iter,
Nathan Scott1b895842006-03-31 13:08:59 +10001656 .splice_read = xfs_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001657 .splice_write = iter_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +11001658 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001660 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001662 .mmap = xfs_file_mmap,
1663 .open = xfs_file_open,
1664 .release = xfs_file_release,
1665 .fsync = xfs_file_fsync,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001666 .fallocate = xfs_file_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667};
1668
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001669const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001670 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -04001672 .iterate_shared = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001673 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001674 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001675#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001676 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001677#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001678 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679};