blob: 19917faac2d20dacd20bafb0215b7f9d51881d97 [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_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
28#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110030#include "xfs_trans.h"
Christoph Hellwigfd3200b2010-02-15 09:44:48 +000031#include "xfs_inode_item.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000032#include "xfs_bmap.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100033#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100035#include "xfs_dir2.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100036#include "xfs_dir2_priv.h"
Christoph Hellwigddcd8562008-12-03 07:55:34 -050037#include "xfs_ioctl.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000038#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110039#include "xfs_log.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110040#include "xfs_dinode.h"
Brian Fosterdc06f3982014-07-24 19:49:28 +100041#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Kent Overstreeta27bb332013-05-07 16:19:08 -070043#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/dcache.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010045#include <linux/falloc.h>
Jeff Liud126d432012-08-21 17:11:57 +080046#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040048static const struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Hellwigdda35b82010-02-15 09:44:46 +000050/*
Dave Chinner487f84f2011-01-12 11:37:10 +110051 * Locking primitives for read and write IO paths to ensure we consistently use
52 * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
53 */
54static inline void
55xfs_rw_ilock(
56 struct xfs_inode *ip,
57 int type)
58{
59 if (type & XFS_IOLOCK_EXCL)
60 mutex_lock(&VFS_I(ip)->i_mutex);
61 xfs_ilock(ip, type);
62}
63
64static inline void
65xfs_rw_iunlock(
66 struct xfs_inode *ip,
67 int type)
68{
69 xfs_iunlock(ip, type);
70 if (type & XFS_IOLOCK_EXCL)
71 mutex_unlock(&VFS_I(ip)->i_mutex);
72}
73
74static inline void
75xfs_rw_ilock_demote(
76 struct xfs_inode *ip,
77 int type)
78{
79 xfs_ilock_demote(ip, type);
80 if (type & XFS_IOLOCK_EXCL)
81 mutex_unlock(&VFS_I(ip)->i_mutex);
82}
83
84/*
Christoph Hellwigdda35b82010-02-15 09:44:46 +000085 * xfs_iozero
86 *
87 * xfs_iozero clears the specified range of buffer supplied,
88 * and marks all the affected blocks as valid and modified. If
89 * an affected block is not allocated, it will be allocated. If
90 * an affected block is not completely overwritten, and is not
91 * valid before the operation, it will be read from disk before
92 * being partially zeroed.
93 */
Dave Chinneref9d8732012-11-29 15:26:33 +110094int
Christoph Hellwigdda35b82010-02-15 09:44:46 +000095xfs_iozero(
96 struct xfs_inode *ip, /* inode */
97 loff_t pos, /* offset in file */
98 size_t count) /* size of data to zero */
99{
100 struct page *page;
101 struct address_space *mapping;
102 int status;
103
104 mapping = VFS_I(ip)->i_mapping;
105 do {
106 unsigned offset, bytes;
107 void *fsdata;
108
109 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
110 bytes = PAGE_CACHE_SIZE - offset;
111 if (bytes > count)
112 bytes = count;
113
114 status = pagecache_write_begin(NULL, mapping, pos, bytes,
115 AOP_FLAG_UNINTERRUPTIBLE,
116 &page, &fsdata);
117 if (status)
118 break;
119
120 zero_user(page, offset, bytes);
121
122 status = pagecache_write_end(NULL, mapping, pos, bytes, bytes,
123 page, fsdata);
124 WARN_ON(status <= 0); /* can't return less than zero! */
125 pos += bytes;
126 count -= bytes;
127 status = 0;
128 } while (count);
129
130 return (-status);
131}
132
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000133/*
134 * Fsync operations on directories are much simpler than on regular files,
135 * as there is no file data to flush, and thus also no need for explicit
136 * cache flush operations, and there are no non-transaction metadata updates
137 * on directories either.
138 */
139STATIC int
140xfs_dir_fsync(
141 struct file *file,
142 loff_t start,
143 loff_t end,
144 int datasync)
145{
146 struct xfs_inode *ip = XFS_I(file->f_mapping->host);
147 struct xfs_mount *mp = ip->i_mount;
148 xfs_lsn_t lsn = 0;
149
150 trace_xfs_dir_fsync(ip);
151
152 xfs_ilock(ip, XFS_ILOCK_SHARED);
153 if (xfs_ipincount(ip))
154 lsn = ip->i_itemp->ili_last_lsn;
155 xfs_iunlock(ip, XFS_ILOCK_SHARED);
156
157 if (!lsn)
158 return 0;
Dave Chinner24513372014-06-25 14:58:08 +1000159 return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +0000160}
161
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000162STATIC int
163xfs_file_fsync(
164 struct file *file,
Josef Bacik02c24a82011-07-16 20:44:56 -0400165 loff_t start,
166 loff_t end,
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000167 int datasync)
168{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200169 struct inode *inode = file->f_mapping->host;
170 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000171 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000172 int error = 0;
173 int log_flushed = 0;
Christoph Hellwigb1037052011-09-19 14:55:51 +0000174 xfs_lsn_t lsn = 0;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000175
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000176 trace_xfs_file_fsync(ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000177
Josef Bacik02c24a82011-07-16 20:44:56 -0400178 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
179 if (error)
180 return error;
181
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000182 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000183 return -EIO;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000184
185 xfs_iflags_clear(ip, XFS_ITRUNCATED);
186
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000187 if (mp->m_flags & XFS_MOUNT_BARRIER) {
188 /*
189 * If we have an RT and/or log subvolume we need to make sure
190 * to flush the write cache the device used for file data
191 * first. This is to ensure newly written file data make
192 * it to disk before logging the new inode size in case of
193 * an extending write.
194 */
195 if (XFS_IS_REALTIME_INODE(ip))
196 xfs_blkdev_issue_flush(mp->m_rtdev_targp);
197 else if (mp->m_logdev_targp != mp->m_ddev_targp)
198 xfs_blkdev_issue_flush(mp->m_ddev_targp);
199 }
200
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000201 /*
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000202 * All metadata updates are logged, which means that we just have
203 * to flush the log up to the latest LSN that touched the inode.
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000204 */
205 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8f639dd2012-02-29 09:53:55 +0000206 if (xfs_ipincount(ip)) {
207 if (!datasync ||
208 (ip->i_itemp->ili_fields & ~XFS_ILOG_TIMESTAMP))
209 lsn = ip->i_itemp->ili_last_lsn;
210 }
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000211 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000212
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000213 if (lsn)
Christoph Hellwigb1037052011-09-19 14:55:51 +0000214 error = _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, &log_flushed);
215
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000216 /*
217 * If we only have a single device, and the log force about was
218 * a no-op we might have to flush the data device cache here.
219 * This can only happen for fdatasync/O_DSYNC if we were overwriting
220 * an already allocated file and thus do not have any metadata to
221 * commit.
222 */
223 if ((mp->m_flags & XFS_MOUNT_BARRIER) &&
224 mp->m_logdev_targp == mp->m_ddev_targp &&
225 !XFS_IS_REALTIME_INODE(ip) &&
226 !log_flushed)
227 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000228
Dave Chinner24513372014-06-25 14:58:08 +1000229 return error;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000230}
231
Christoph Hellwig00258e32010-02-15 09:44:47 +0000232STATIC ssize_t
Al Virob4f5d2c2014-04-02 14:37:59 -0400233xfs_file_read_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000234 struct kiocb *iocb,
Al Virob4f5d2c2014-04-02 14:37:59 -0400235 struct iov_iter *to)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000236{
237 struct file *file = iocb->ki_filp;
238 struct inode *inode = file->f_mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000239 struct xfs_inode *ip = XFS_I(inode);
240 struct xfs_mount *mp = ip->i_mount;
Al Virob4f5d2c2014-04-02 14:37:59 -0400241 size_t size = iov_iter_count(to);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000242 ssize_t ret = 0;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000243 int ioflags = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000244 xfs_fsize_t n;
Al Virob4f5d2c2014-04-02 14:37:59 -0400245 loff_t pos = iocb->ki_pos;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000246
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000247 XFS_STATS_INC(xs_read_calls);
248
Christoph Hellwig00258e32010-02-15 09:44:47 +0000249 if (unlikely(file->f_flags & O_DIRECT))
Dave Chinnerb92cc59f62014-08-04 13:28:20 +1000250 ioflags |= XFS_IO_ISDIRECT;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000251 if (file->f_mode & FMODE_NOCMTIME)
Dave Chinnerb92cc59f62014-08-04 13:28:20 +1000252 ioflags |= XFS_IO_INVIS;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000253
Dave Chinnerb92cc59f62014-08-04 13:28:20 +1000254 if (unlikely(ioflags & XFS_IO_ISDIRECT)) {
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000255 xfs_buftarg_t *target =
256 XFS_IS_REALTIME_INODE(ip) ?
257 mp->m_rtdev_targp : mp->m_ddev_targp;
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600258 /* DIO must be aligned to device logical sector size */
259 if ((pos | size) & target->bt_logical_sectormask) {
Dave Chinnerfb595812012-11-12 22:53:57 +1100260 if (pos == i_size_read(inode))
Christoph Hellwig00258e32010-02-15 09:44:47 +0000261 return 0;
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000262 return -EINVAL;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000263 }
264 }
265
Dave Chinnerfb595812012-11-12 22:53:57 +1100266 n = mp->m_super->s_maxbytes - pos;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000267 if (n <= 0 || size == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000268 return 0;
269
270 if (n < size)
271 size = n;
272
273 if (XFS_FORCED_SHUTDOWN(mp))
274 return -EIO;
275
Dave Chinner0c38a252011-08-25 07:17:01 +0000276 /*
277 * Locking is a bit tricky here. If we take an exclusive lock
278 * for direct IO, we effectively serialise all new concurrent
279 * read IO to this file and block it behind IO that is currently in
280 * progress because IO in progress holds the IO lock shared. We only
281 * need to hold the lock exclusive to blow away the page cache, so
282 * only take lock exclusively if the page cache needs invalidation.
283 * This allows the normal direct IO case of no page cache pages to
284 * proceeed concurrently without serialisation.
285 */
286 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Dave Chinnerb92cc59f62014-08-04 13:28:20 +1000287 if ((ioflags & XFS_IO_ISDIRECT) && inode->i_mapping->nrpages) {
Dave Chinner0c38a252011-08-25 07:17:01 +0000288 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Dave Chinner487f84f2011-01-12 11:37:10 +1100289 xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
290
Christoph Hellwig00258e32010-02-15 09:44:47 +0000291 if (inode->i_mapping->nrpages) {
Dave Chinner8ff1e672014-05-15 09:21:37 +1000292 ret = filemap_write_and_wait_range(
Dave Chinnerfb595812012-11-12 22:53:57 +1100293 VFS_I(ip)->i_mapping,
294 pos, -1);
Dave Chinner487f84f2011-01-12 11:37:10 +1100295 if (ret) {
296 xfs_rw_iunlock(ip, XFS_IOLOCK_EXCL);
297 return ret;
298 }
Chris Mason85e584d2014-09-02 12:12:52 +1000299
300 /*
301 * Invalidate whole pages. This can return an error if
302 * we fail to invalidate a page, but this should never
303 * happen on XFS. Warn if it does fail.
304 */
305 ret = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
306 pos >> PAGE_CACHE_SHIFT, -1);
307 WARN_ON_ONCE(ret);
308 ret = 0;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000309 }
Dave Chinner487f84f2011-01-12 11:37:10 +1100310 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Dave Chinner0c38a252011-08-25 07:17:01 +0000311 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000312
Dave Chinnerfb595812012-11-12 22:53:57 +1100313 trace_xfs_file_read(ip, size, pos, ioflags);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000314
Al Virob4f5d2c2014-04-02 14:37:59 -0400315 ret = generic_file_read_iter(iocb, to);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000316 if (ret > 0)
317 XFS_STATS_ADD(xs_read_bytes, ret);
318
Dave Chinner487f84f2011-01-12 11:37:10 +1100319 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000320 return ret;
321}
322
Christoph Hellwig00258e32010-02-15 09:44:47 +0000323STATIC ssize_t
324xfs_file_splice_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000325 struct file *infilp,
326 loff_t *ppos,
327 struct pipe_inode_info *pipe,
328 size_t count,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000329 unsigned int flags)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000330{
Christoph Hellwig00258e32010-02-15 09:44:47 +0000331 struct xfs_inode *ip = XFS_I(infilp->f_mapping->host);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000332 int ioflags = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000333 ssize_t ret;
334
335 XFS_STATS_INC(xs_read_calls);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000336
337 if (infilp->f_mode & FMODE_NOCMTIME)
Dave Chinnerb92cc59f62014-08-04 13:28:20 +1000338 ioflags |= XFS_IO_INVIS;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000339
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000340 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
341 return -EIO;
342
Dave Chinner487f84f2011-01-12 11:37:10 +1100343 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000344
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000345 trace_xfs_file_splice_read(ip, count, *ppos, ioflags);
346
347 ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
348 if (ret > 0)
349 XFS_STATS_ADD(xs_read_bytes, ret);
350
Dave Chinner487f84f2011-01-12 11:37:10 +1100351 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000352 return ret;
353}
354
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100355/*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400356 * This routine is called to handle zeroing any space in the last block of the
357 * file that is beyond the EOF. We do this since the size is being increased
358 * without writing anything to that block and we don't want to read the
359 * garbage on the disk.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000360 */
361STATIC int /* error (positive) */
362xfs_zero_last_block(
Christoph Hellwig193aec12012-03-27 10:34:49 -0400363 struct xfs_inode *ip,
364 xfs_fsize_t offset,
365 xfs_fsize_t isize)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000366{
Christoph Hellwig193aec12012-03-27 10:34:49 -0400367 struct xfs_mount *mp = ip->i_mount;
368 xfs_fileoff_t last_fsb = XFS_B_TO_FSBT(mp, isize);
369 int zero_offset = XFS_B_FSB_OFFSET(mp, isize);
370 int zero_len;
371 int nimaps = 1;
372 int error = 0;
373 struct xfs_bmbt_irec imap;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000374
Christoph Hellwig193aec12012-03-27 10:34:49 -0400375 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000376 error = xfs_bmapi_read(ip, last_fsb, 1, &imap, &nimaps, 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400377 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000378 if (error)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000379 return error;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400380
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000381 ASSERT(nimaps > 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400382
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000383 /*
384 * If the block underlying isize is just a hole, then there
385 * is nothing to zero.
386 */
Christoph Hellwig193aec12012-03-27 10:34:49 -0400387 if (imap.br_startblock == HOLESTARTBLOCK)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000388 return 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000389
390 zero_len = mp->m_sb.sb_blocksize - zero_offset;
391 if (isize + zero_len > offset)
392 zero_len = offset - isize;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400393 return xfs_iozero(ip, isize, zero_len);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000394}
395
396/*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400397 * Zero any on disk space between the current EOF and the new, larger EOF.
398 *
399 * This handles the normal case of zeroing the remainder of the last block in
400 * the file and the unusual case of zeroing blocks out beyond the size of the
401 * file. This second case only happens with fixed size extents and when the
402 * system crashes before the inode size was updated but after blocks were
403 * allocated.
404 *
405 * Expects the iolock to be held exclusive, and will take the ilock internally.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000406 */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000407int /* error (positive) */
408xfs_zero_eof(
Christoph Hellwig193aec12012-03-27 10:34:49 -0400409 struct xfs_inode *ip,
410 xfs_off_t offset, /* starting I/O offset */
411 xfs_fsize_t isize) /* current inode size */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000412{
Christoph Hellwig193aec12012-03-27 10:34:49 -0400413 struct xfs_mount *mp = ip->i_mount;
414 xfs_fileoff_t start_zero_fsb;
415 xfs_fileoff_t end_zero_fsb;
416 xfs_fileoff_t zero_count_fsb;
417 xfs_fileoff_t last_fsb;
418 xfs_fileoff_t zero_off;
419 xfs_fsize_t zero_len;
420 int nimaps;
421 int error = 0;
422 struct xfs_bmbt_irec imap;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000423
Christoph Hellwig193aec12012-03-27 10:34:49 -0400424 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000425 ASSERT(offset > isize);
426
427 /*
428 * First handle zeroing the block on which isize resides.
Christoph Hellwig193aec12012-03-27 10:34:49 -0400429 *
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000430 * We only zero a part of that block so it is handled specially.
431 */
Christoph Hellwig193aec12012-03-27 10:34:49 -0400432 if (XFS_B_FSB_OFFSET(mp, isize) != 0) {
433 error = xfs_zero_last_block(ip, offset, isize);
434 if (error)
435 return error;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000436 }
437
438 /*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400439 * Calculate the range between the new size and the old where blocks
440 * needing to be zeroed may exist.
441 *
442 * To get the block where the last byte in the file currently resides,
443 * we need to subtract one from the size and truncate back to a block
444 * boundary. We subtract 1 in case the size is exactly on a block
445 * boundary.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000446 */
447 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
448 start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
449 end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
450 ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
451 if (last_fsb == end_zero_fsb) {
452 /*
453 * The size was only incremented on its last block.
454 * We took care of that above, so just return.
455 */
456 return 0;
457 }
458
459 ASSERT(start_zero_fsb <= end_zero_fsb);
460 while (start_zero_fsb <= end_zero_fsb) {
461 nimaps = 1;
462 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400463
464 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000465 error = xfs_bmapi_read(ip, start_zero_fsb, zero_count_fsb,
466 &imap, &nimaps, 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400467 xfs_iunlock(ip, XFS_ILOCK_EXCL);
468 if (error)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000469 return error;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400470
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000471 ASSERT(nimaps > 0);
472
473 if (imap.br_state == XFS_EXT_UNWRITTEN ||
474 imap.br_startblock == HOLESTARTBLOCK) {
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000475 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
476 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
477 continue;
478 }
479
480 /*
481 * There are blocks we need to zero.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000482 */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000483 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
484 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
485
486 if ((zero_off + zero_len) > offset)
487 zero_len = offset - zero_off;
488
489 error = xfs_iozero(ip, zero_off, zero_len);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400490 if (error)
491 return error;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000492
493 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
494 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000495 }
496
497 return 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000498}
499
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100500/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100501 * Common pre-write limit and setup checks.
502 *
Christoph Hellwig5bf1f262011-12-18 20:00:13 +0000503 * Called with the iolocked held either shared and exclusive according to
504 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
505 * if called for a direct write beyond i_size.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100506 */
507STATIC ssize_t
508xfs_file_aio_write_checks(
509 struct file *file,
510 loff_t *pos,
511 size_t *count,
512 int *iolock)
513{
514 struct inode *inode = file->f_mapping->host;
515 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100516 int error = 0;
517
Dave Chinner7271d242011-08-25 07:17:02 +0000518restart:
Dave Chinner4d8d1582011-01-11 10:23:42 +1100519 error = generic_write_checks(file, pos, count, S_ISBLK(inode->i_mode));
Christoph Hellwig467f7892012-03-27 10:34:47 -0400520 if (error)
Dave Chinner4d8d1582011-01-11 10:23:42 +1100521 return error;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100522
Dave Chinner4d8d1582011-01-11 10:23:42 +1100523 /*
524 * If the offset is beyond the size of the file, we need to zero any
525 * blocks that fall between the existing EOF and the start of this
Christoph Hellwig2813d682011-12-18 20:00:12 +0000526 * write. If zeroing is needed and we are currently holding the
Christoph Hellwig467f7892012-03-27 10:34:47 -0400527 * iolock shared, we need to update it to exclusive which implies
528 * having to redo all checks before.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100529 */
Christoph Hellwig2813d682011-12-18 20:00:12 +0000530 if (*pos > i_size_read(inode)) {
Dave Chinner7271d242011-08-25 07:17:02 +0000531 if (*iolock == XFS_IOLOCK_SHARED) {
Christoph Hellwig467f7892012-03-27 10:34:47 -0400532 xfs_rw_iunlock(ip, *iolock);
Dave Chinner7271d242011-08-25 07:17:02 +0000533 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig467f7892012-03-27 10:34:47 -0400534 xfs_rw_ilock(ip, *iolock);
Dave Chinner7271d242011-08-25 07:17:02 +0000535 goto restart;
536 }
Dave Chinner24513372014-06-25 14:58:08 +1000537 error = xfs_zero_eof(ip, *pos, i_size_read(inode));
Christoph Hellwig467f7892012-03-27 10:34:47 -0400538 if (error)
539 return error;
Dave Chinner7271d242011-08-25 07:17:02 +0000540 }
Dave Chinner4d8d1582011-01-11 10:23:42 +1100541
542 /*
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000543 * Updating the timestamps will grab the ilock again from
544 * xfs_fs_dirty_inode, so we have to call it after dropping the
545 * lock above. Eventually we should look into a way to avoid
546 * the pointless lock roundtrip.
547 */
Josef Bacikc3b2da32012-03-26 09:59:21 -0400548 if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
549 error = file_update_time(file);
550 if (error)
551 return error;
552 }
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000553
554 /*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100555 * If we're writing the file then make sure to clear the setuid and
556 * setgid bits if the process is not being run by root. This keeps
557 * people from modifying setuid and setgid binaries.
558 */
559 return file_remove_suid(file);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100560}
561
562/*
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100563 * xfs_file_dio_aio_write - handle direct IO writes
564 *
565 * Lock the inode appropriately to prepare for and issue a direct IO write.
Dave Chinnereda77982011-01-11 10:22:40 +1100566 * By separating it from the buffered write path we remove all the tricky to
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100567 * follow locking changes and looping.
568 *
Dave Chinnereda77982011-01-11 10:22:40 +1100569 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
570 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
571 * pages are flushed out.
572 *
573 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
574 * allowing them to be done in parallel with reads and other direct IO writes.
575 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
576 * needs to do sub-block zeroing and that requires serialisation against other
577 * direct IOs to the same block. In this case we need to serialise the
578 * submission of the unaligned IOs so that we don't get racing block zeroing in
579 * the dio layer. To avoid the problem with aio, we also need to wait for
580 * outstanding IOs to complete so that unwritten extent conversion is completed
581 * before we try to map the overlapping block. This is currently implemented by
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000582 * hitting it with a big hammer (i.e. inode_dio_wait()).
Dave Chinnereda77982011-01-11 10:22:40 +1100583 *
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100584 * Returns with locks held indicated by @iolock and errors indicated by
585 * negative return values.
586 */
587STATIC ssize_t
588xfs_file_dio_aio_write(
589 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400590 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100591{
592 struct file *file = iocb->ki_filp;
593 struct address_space *mapping = file->f_mapping;
594 struct inode *inode = mapping->host;
595 struct xfs_inode *ip = XFS_I(inode);
596 struct xfs_mount *mp = ip->i_mount;
597 ssize_t ret = 0;
Dave Chinnereda77982011-01-11 10:22:40 +1100598 int unaligned_io = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000599 int iolock;
Al Virob3188912014-04-02 07:06:30 -0400600 size_t count = iov_iter_count(from);
601 loff_t pos = iocb->ki_pos;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100602 struct xfs_buftarg *target = XFS_IS_REALTIME_INODE(ip) ?
603 mp->m_rtdev_targp : mp->m_ddev_targp;
604
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600605 /* DIO must be aligned to device logical sector size */
606 if ((pos | count) & target->bt_logical_sectormask)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000607 return -EINVAL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100608
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600609 /* "unaligned" here means not aligned to a filesystem block */
Dave Chinnereda77982011-01-11 10:22:40 +1100610 if ((pos & mp->m_blockmask) || ((pos + count) & mp->m_blockmask))
611 unaligned_io = 1;
612
Dave Chinner7271d242011-08-25 07:17:02 +0000613 /*
614 * We don't need to take an exclusive lock unless there page cache needs
615 * to be invalidated or unaligned IO is being executed. We don't need to
616 * consider the EOF extension case here because
617 * xfs_file_aio_write_checks() will relock the inode as necessary for
618 * EOF zeroing cases and fill out the new inode size as appropriate.
619 */
620 if (unaligned_io || mapping->nrpages)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000621 iolock = XFS_IOLOCK_EXCL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100622 else
Christoph Hellwigd0606462011-12-18 20:00:14 +0000623 iolock = XFS_IOLOCK_SHARED;
624 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000625
626 /*
627 * Recheck if there are cached pages that need invalidate after we got
628 * the iolock to protect against other threads adding new pages while
629 * we were waiting for the iolock.
630 */
Christoph Hellwigd0606462011-12-18 20:00:14 +0000631 if (mapping->nrpages && iolock == XFS_IOLOCK_SHARED) {
632 xfs_rw_iunlock(ip, iolock);
633 iolock = XFS_IOLOCK_EXCL;
634 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000635 }
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100636
Christoph Hellwigd0606462011-12-18 20:00:14 +0000637 ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100638 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000639 goto out;
Al Virob3188912014-04-02 07:06:30 -0400640 iov_iter_truncate(from, count);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100641
642 if (mapping->nrpages) {
Dave Chinner07d50352014-04-17 08:15:27 +1000643 ret = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
Dave Chinnerfb595812012-11-12 22:53:57 +1100644 pos, -1);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100645 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000646 goto out;
Dave Chinner834ffca2014-09-02 12:12:52 +1000647 /*
648 * Invalidate whole pages. This can return an error if
649 * we fail to invalidate a page, but this should never
650 * happen on XFS. Warn if it does fail.
651 */
652 ret = invalidate_inode_pages2_range(VFS_I(ip)->i_mapping,
653 pos >> PAGE_CACHE_SHIFT, -1);
654 WARN_ON_ONCE(ret);
655 ret = 0;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100656 }
657
Dave Chinnereda77982011-01-11 10:22:40 +1100658 /*
659 * If we are doing unaligned IO, wait for all other IO to drain,
660 * otherwise demote the lock if we had to flush cached pages
661 */
662 if (unaligned_io)
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000663 inode_dio_wait(inode);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000664 else if (iolock == XFS_IOLOCK_EXCL) {
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100665 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000666 iolock = XFS_IOLOCK_SHARED;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100667 }
668
669 trace_xfs_file_direct_write(ip, count, iocb->ki_pos, 0);
Al Virob3188912014-04-02 07:06:30 -0400670 ret = generic_file_direct_write(iocb, from, pos);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100671
Christoph Hellwigd0606462011-12-18 20:00:14 +0000672out:
673 xfs_rw_iunlock(ip, iolock);
674
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100675 /* No fallback to buffered IO on errors for XFS. */
676 ASSERT(ret < 0 || ret == count);
677 return ret;
678}
679
Christoph Hellwig00258e32010-02-15 09:44:47 +0000680STATIC ssize_t
Dave Chinner637bbc72011-01-11 10:17:30 +1100681xfs_file_buffered_aio_write(
682 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400683 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100684{
685 struct file *file = iocb->ki_filp;
686 struct address_space *mapping = file->f_mapping;
687 struct inode *inode = mapping->host;
688 struct xfs_inode *ip = XFS_I(inode);
689 ssize_t ret;
690 int enospc = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000691 int iolock = XFS_IOLOCK_EXCL;
Al Virob3188912014-04-02 07:06:30 -0400692 loff_t pos = iocb->ki_pos;
693 size_t count = iov_iter_count(from);
Dave Chinner637bbc72011-01-11 10:17:30 +1100694
Christoph Hellwigd0606462011-12-18 20:00:14 +0000695 xfs_rw_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100696
Christoph Hellwigd0606462011-12-18 20:00:14 +0000697 ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100698 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000699 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100700
Al Virob3188912014-04-02 07:06:30 -0400701 iov_iter_truncate(from, count);
Dave Chinner637bbc72011-01-11 10:17:30 +1100702 /* We can write back this queue in page reclaim */
703 current->backing_dev_info = mapping->backing_dev_info;
704
705write_retry:
706 trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, 0);
Al Virob3188912014-04-02 07:06:30 -0400707 ret = generic_perform_write(file, from, pos);
Al Viro0a64bc22014-02-11 22:25:22 -0500708 if (likely(ret >= 0))
709 iocb->ki_pos = pos + ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000710
Dave Chinner637bbc72011-01-11 10:17:30 +1100711 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000712 * If we hit a space limit, try to free up some lingering preallocated
713 * space before returning an error. In the case of ENOSPC, first try to
714 * write back all dirty inodes to free up some of the excess reserved
715 * metadata space. This reduces the chances that the eofblocks scan
716 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
717 * also behaves as a filter to prevent too many eofblocks scans from
718 * running at the same time.
Dave Chinner637bbc72011-01-11 10:17:30 +1100719 */
Brian Fosterdc06f3982014-07-24 19:49:28 +1000720 if (ret == -EDQUOT && !enospc) {
721 enospc = xfs_inode_free_quota_eofblocks(ip);
722 if (enospc)
723 goto write_retry;
724 } else if (ret == -ENOSPC && !enospc) {
725 struct xfs_eofblocks eofb = {0};
726
Dave Chinner637bbc72011-01-11 10:17:30 +1100727 enospc = 1;
Dave Chinner9aa05002012-10-08 21:56:04 +1100728 xfs_flush_inodes(ip->i_mount);
Brian Fosterdc06f3982014-07-24 19:49:28 +1000729 eofb.eof_scan_owner = ip->i_ino; /* for locking */
730 eofb.eof_flags = XFS_EOF_FLAGS_SYNC;
731 xfs_icache_free_eofblocks(ip->i_mount, &eofb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100732 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100733 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000734
Dave Chinner637bbc72011-01-11 10:17:30 +1100735 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000736out:
737 xfs_rw_iunlock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100738 return ret;
739}
740
741STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400742xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000743 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400744 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000745{
746 struct file *file = iocb->ki_filp;
747 struct address_space *mapping = file->f_mapping;
748 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000749 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100750 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400751 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000752
753 XFS_STATS_INC(xs_write_calls);
754
Dave Chinner637bbc72011-01-11 10:17:30 +1100755 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000756 return 0;
757
Al Virobf97f3bc2014-04-03 14:20:23 -0400758 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
759 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000760
Dave Chinner637bbc72011-01-11 10:17:30 +1100761 if (unlikely(file->f_flags & O_DIRECT))
Al Virobf97f3bc2014-04-03 14:20:23 -0400762 ret = xfs_file_dio_aio_write(iocb, from);
Dave Chinner637bbc72011-01-11 10:17:30 +1100763 else
Al Virobf97f3bc2014-04-03 14:20:23 -0400764 ret = xfs_file_buffered_aio_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000765
Christoph Hellwigd0606462011-12-18 20:00:14 +0000766 if (ret > 0) {
767 ssize_t err;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000768
Christoph Hellwigd0606462011-12-18 20:00:14 +0000769 XFS_STATS_ADD(xs_write_bytes, ret);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000770
Christoph Hellwigd0606462011-12-18 20:00:14 +0000771 /* Handle various SYNC-type writes */
Al Virod311d792014-02-09 15:18:09 -0500772 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000773 if (err < 0)
774 ret = err;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000775 }
Dave Chinnera363f0c2011-01-11 10:13:53 +1100776 return ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000777}
778
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100779STATIC long
780xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700781 struct file *file,
782 int mode,
783 loff_t offset,
784 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100785{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700786 struct inode *inode = file_inode(file);
787 struct xfs_inode *ip = XFS_I(inode);
788 struct xfs_trans *tp;
789 long error;
790 loff_t new_size = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100791
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700792 if (!S_ISREG(inode->i_mode))
793 return -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100794 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
Lukas Czerner376ba312014-03-13 19:07:58 +1100795 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100796 return -EOPNOTSUPP;
797
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100798 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700799 if (mode & FALLOC_FL_PUNCH_HOLE) {
800 error = xfs_free_file_space(ip, offset, len);
801 if (error)
802 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100803 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
804 unsigned blksize_mask = (1 << inode->i_blkbits) - 1;
805
806 if (offset & blksize_mask || len & blksize_mask) {
Dave Chinner24513372014-06-25 14:58:08 +1000807 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100808 goto out_unlock;
809 }
810
Lukas Czerner23fffa92014-04-12 09:56:41 -0400811 /*
812 * There is no need to overlap collapse range with EOF,
813 * in which case it is effectively a truncate operation
814 */
815 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000816 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400817 goto out_unlock;
818 }
819
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100820 new_size = i_size_read(inode) - len;
821
822 error = xfs_collapse_file_space(ip, offset, len);
823 if (error)
824 goto out_unlock;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700825 } else {
826 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
827 offset + len > i_size_read(inode)) {
828 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +1000829 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700830 if (error)
831 goto out_unlock;
832 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100833
Lukas Czerner376ba312014-03-13 19:07:58 +1100834 if (mode & FALLOC_FL_ZERO_RANGE)
835 error = xfs_zero_file_space(ip, offset, len);
836 else
837 error = xfs_alloc_file_space(ip, offset, len,
838 XFS_BMAPI_PREALLOC);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100839 if (error)
840 goto out_unlock;
841 }
842
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700843 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_WRITEID);
844 error = xfs_trans_reserve(tp, &M_RES(ip->i_mount)->tr_writeid, 0, 0);
845 if (error) {
846 xfs_trans_cancel(tp, 0);
847 goto out_unlock;
848 }
Dave Chinner82878892011-03-26 09:13:08 +1100849
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700850 xfs_ilock(ip, XFS_ILOCK_EXCL);
851 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
852 ip->i_d.di_mode &= ~S_ISUID;
853 if (ip->i_d.di_mode & S_IXGRP)
854 ip->i_d.di_mode &= ~S_ISGID;
855
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100856 if (!(mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_COLLAPSE_RANGE)))
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700857 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
858
859 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
860 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
861
862 if (file->f_flags & O_DSYNC)
863 xfs_trans_set_sync(tp);
864 error = xfs_trans_commit(tp, 0);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100865 if (error)
866 goto out_unlock;
867
868 /* Change file size if needed */
869 if (new_size) {
870 struct iattr iattr;
871
872 iattr.ia_valid = ATTR_SIZE;
873 iattr.ia_size = new_size;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700874 error = xfs_setattr_size(ip, &iattr);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100875 }
876
877out_unlock:
878 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Dave Chinner24513372014-06-25 14:58:08 +1000879 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100880}
881
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100884xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100886 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100888 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100890 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
891 return -EIO;
892 return 0;
893}
894
895STATIC int
896xfs_dir_open(
897 struct inode *inode,
898 struct file *file)
899{
900 struct xfs_inode *ip = XFS_I(inode);
901 int mode;
902 int error;
903
904 error = xfs_file_open(inode, file);
905 if (error)
906 return error;
907
908 /*
909 * If there are any blocks, read-ahead block 0 as we're almost
910 * certain to have the next operation be a read there.
911 */
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800912 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100913 if (ip->i_d.di_nextents > 0)
Eric Sandeen9df2dd02014-04-14 19:01:59 +1000914 xfs_dir3_data_readahead(ip, 0, -1);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100915 xfs_iunlock(ip, mode);
916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100920xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct inode *inode,
922 struct file *filp)
923{
Dave Chinner24513372014-06-25 14:58:08 +1000924 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100928xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -0400929 struct file *file,
930 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Al Virob8227552013-05-22 17:07:56 -0400932 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000933 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000934 int error;
935 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000937 /*
938 * The Linux API doesn't pass down the total size of the buffer
939 * we read into down to the filesystem. With the filldir concept
940 * it's not needed for correct information, but the XFS dir2 leaf
941 * code wants an estimate of the buffer size to calculate it's
942 * readahead window and size the buffers used for mapping to
943 * physical blocks.
944 *
945 * Try to give it an estimate that's good enough, maybe at some
946 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +0000947 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000948 */
Eric Sandeena9cc7992010-02-03 17:50:13 +0000949 bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Al Virob8227552013-05-22 17:07:56 -0400951 error = xfs_readdir(ip, ctx, bufsize);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000952 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000953 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100958xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct file *filp,
960 struct vm_area_struct *vma)
961{
Nathan Scott3562fd42006-03-14 14:00:35 +1100962 vma->vm_ops = &xfs_file_vm_ops;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000963
Nathan Scottfbc14622006-06-09 14:52:13 +1000964 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
966}
967
David Chinner4f57dbc2007-07-19 16:28:17 +1000968/*
969 * mmap()d file has taken write protection fault and is being made
970 * writable. We can set the page state up correctly for a writable
971 * page, which means we can do correct delalloc accounting (ENOSPC
972 * checking!) and unwritten extent mapping.
973 */
974STATIC int
975xfs_vm_page_mkwrite(
976 struct vm_area_struct *vma,
Nick Pigginc2ec1752009-03-31 15:23:21 -0700977 struct vm_fault *vmf)
David Chinner4f57dbc2007-07-19 16:28:17 +1000978{
Nick Pigginc2ec1752009-03-31 15:23:21 -0700979 return block_page_mkwrite(vma, vmf, xfs_get_blocks);
David Chinner4f57dbc2007-07-19 16:28:17 +1000980}
981
Jeff Liud126d432012-08-21 17:11:57 +0800982/*
983 * This type is designed to indicate the type of offset we would like
984 * to search from page cache for either xfs_seek_data() or xfs_seek_hole().
985 */
986enum {
987 HOLE_OFF = 0,
988 DATA_OFF,
989};
990
991/*
992 * Lookup the desired type of offset from the given page.
993 *
994 * On success, return true and the offset argument will point to the
995 * start of the region that was found. Otherwise this function will
996 * return false and keep the offset argument unchanged.
997 */
998STATIC bool
999xfs_lookup_buffer_offset(
1000 struct page *page,
1001 loff_t *offset,
1002 unsigned int type)
1003{
1004 loff_t lastoff = page_offset(page);
1005 bool found = false;
1006 struct buffer_head *bh, *head;
1007
1008 bh = head = page_buffers(page);
1009 do {
1010 /*
1011 * Unwritten extents that have data in the page
1012 * cache covering them can be identified by the
1013 * BH_Unwritten state flag. Pages with multiple
1014 * buffers might have a mix of holes, data and
1015 * unwritten extents - any buffer with valid
1016 * data in it should have BH_Uptodate flag set
1017 * on it.
1018 */
1019 if (buffer_unwritten(bh) ||
1020 buffer_uptodate(bh)) {
1021 if (type == DATA_OFF)
1022 found = true;
1023 } else {
1024 if (type == HOLE_OFF)
1025 found = true;
1026 }
1027
1028 if (found) {
1029 *offset = lastoff;
1030 break;
1031 }
1032 lastoff += bh->b_size;
1033 } while ((bh = bh->b_this_page) != head);
1034
1035 return found;
1036}
1037
1038/*
1039 * This routine is called to find out and return a data or hole offset
1040 * from the page cache for unwritten extents according to the desired
1041 * type for xfs_seek_data() or xfs_seek_hole().
1042 *
1043 * The argument offset is used to tell where we start to search from the
1044 * page cache. Map is used to figure out the end points of the range to
1045 * lookup pages.
1046 *
1047 * Return true if the desired type of offset was found, and the argument
1048 * offset is filled with that address. Otherwise, return false and keep
1049 * offset unchanged.
1050 */
1051STATIC bool
1052xfs_find_get_desired_pgoff(
1053 struct inode *inode,
1054 struct xfs_bmbt_irec *map,
1055 unsigned int type,
1056 loff_t *offset)
1057{
1058 struct xfs_inode *ip = XFS_I(inode);
1059 struct xfs_mount *mp = ip->i_mount;
1060 struct pagevec pvec;
1061 pgoff_t index;
1062 pgoff_t end;
1063 loff_t endoff;
1064 loff_t startoff = *offset;
1065 loff_t lastoff = startoff;
1066 bool found = false;
1067
1068 pagevec_init(&pvec, 0);
1069
1070 index = startoff >> PAGE_CACHE_SHIFT;
1071 endoff = XFS_FSB_TO_B(mp, map->br_startoff + map->br_blockcount);
1072 end = endoff >> PAGE_CACHE_SHIFT;
1073 do {
1074 int want;
1075 unsigned nr_pages;
1076 unsigned int i;
1077
1078 want = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
1079 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
1080 want);
1081 /*
1082 * No page mapped into given range. If we are searching holes
1083 * and if this is the first time we got into the loop, it means
1084 * that the given offset is landed in a hole, return it.
1085 *
1086 * If we have already stepped through some block buffers to find
1087 * holes but they all contains data. In this case, the last
1088 * offset is already updated and pointed to the end of the last
1089 * mapped page, if it does not reach the endpoint to search,
1090 * that means there should be a hole between them.
1091 */
1092 if (nr_pages == 0) {
1093 /* Data search found nothing */
1094 if (type == DATA_OFF)
1095 break;
1096
1097 ASSERT(type == HOLE_OFF);
1098 if (lastoff == startoff || lastoff < endoff) {
1099 found = true;
1100 *offset = lastoff;
1101 }
1102 break;
1103 }
1104
1105 /*
1106 * At lease we found one page. If this is the first time we
1107 * step into the loop, and if the first page index offset is
1108 * greater than the given search offset, a hole was found.
1109 */
1110 if (type == HOLE_OFF && lastoff == startoff &&
1111 lastoff < page_offset(pvec.pages[0])) {
1112 found = true;
1113 break;
1114 }
1115
1116 for (i = 0; i < nr_pages; i++) {
1117 struct page *page = pvec.pages[i];
1118 loff_t b_offset;
1119
1120 /*
1121 * At this point, the page may be truncated or
1122 * invalidated (changing page->mapping to NULL),
1123 * or even swizzled back from swapper_space to tmpfs
1124 * file mapping. However, page->index will not change
1125 * because we have a reference on the page.
1126 *
1127 * Searching done if the page index is out of range.
1128 * If the current offset is not reaches the end of
1129 * the specified search range, there should be a hole
1130 * between them.
1131 */
1132 if (page->index > end) {
1133 if (type == HOLE_OFF && lastoff < endoff) {
1134 *offset = lastoff;
1135 found = true;
1136 }
1137 goto out;
1138 }
1139
1140 lock_page(page);
1141 /*
1142 * Page truncated or invalidated(page->mapping == NULL).
1143 * We can freely skip it and proceed to check the next
1144 * page.
1145 */
1146 if (unlikely(page->mapping != inode->i_mapping)) {
1147 unlock_page(page);
1148 continue;
1149 }
1150
1151 if (!page_has_buffers(page)) {
1152 unlock_page(page);
1153 continue;
1154 }
1155
1156 found = xfs_lookup_buffer_offset(page, &b_offset, type);
1157 if (found) {
1158 /*
1159 * The found offset may be less than the start
1160 * point to search if this is the first time to
1161 * come here.
1162 */
1163 *offset = max_t(loff_t, startoff, b_offset);
1164 unlock_page(page);
1165 goto out;
1166 }
1167
1168 /*
1169 * We either searching data but nothing was found, or
1170 * searching hole but found a data buffer. In either
1171 * case, probably the next page contains the desired
1172 * things, update the last offset to it so.
1173 */
1174 lastoff = page_offset(page) + PAGE_SIZE;
1175 unlock_page(page);
1176 }
1177
1178 /*
1179 * The number of returned pages less than our desired, search
1180 * done. In this case, nothing was found for searching data,
1181 * but we found a hole behind the last offset.
1182 */
1183 if (nr_pages < want) {
1184 if (type == HOLE_OFF) {
1185 *offset = lastoff;
1186 found = true;
1187 }
1188 break;
1189 }
1190
1191 index = pvec.pages[i - 1]->index + 1;
1192 pagevec_release(&pvec);
1193 } while (index <= end);
1194
1195out:
1196 pagevec_release(&pvec);
1197 return found;
1198}
1199
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001200STATIC loff_t
1201xfs_seek_data(
1202 struct file *file,
Jeff Liu834ab122012-08-21 17:11:45 +08001203 loff_t start)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001204{
1205 struct inode *inode = file->f_mapping->host;
1206 struct xfs_inode *ip = XFS_I(inode);
1207 struct xfs_mount *mp = ip->i_mount;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001208 loff_t uninitialized_var(offset);
1209 xfs_fsize_t isize;
1210 xfs_fileoff_t fsbno;
1211 xfs_filblks_t end;
1212 uint lock;
1213 int error;
1214
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001215 lock = xfs_ilock_data_map_shared(ip);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001216
1217 isize = i_size_read(inode);
1218 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001219 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001220 goto out_unlock;
1221 }
1222
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001223 /*
1224 * Try to read extents from the first block indicated
1225 * by fsbno to the end block of the file.
1226 */
Jeff Liu52f1acc2012-08-21 17:12:07 +08001227 fsbno = XFS_B_TO_FSBT(mp, start);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001228 end = XFS_B_TO_FSB(mp, isize);
Jeff Liu52f1acc2012-08-21 17:12:07 +08001229 for (;;) {
1230 struct xfs_bmbt_irec map[2];
1231 int nmap = 2;
1232 unsigned int i;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001233
Jeff Liu52f1acc2012-08-21 17:12:07 +08001234 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1235 XFS_BMAPI_ENTIRE);
1236 if (error)
1237 goto out_unlock;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001238
Jeff Liu52f1acc2012-08-21 17:12:07 +08001239 /* No extents at given offset, must be beyond EOF */
1240 if (nmap == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001241 error = -ENXIO;
Jeff Liu52f1acc2012-08-21 17:12:07 +08001242 goto out_unlock;
1243 }
1244
1245 for (i = 0; i < nmap; i++) {
1246 offset = max_t(loff_t, start,
1247 XFS_FSB_TO_B(mp, map[i].br_startoff));
1248
1249 /* Landed in a data extent */
1250 if (map[i].br_startblock == DELAYSTARTBLOCK ||
1251 (map[i].br_state == XFS_EXT_NORM &&
1252 !isnullstartblock(map[i].br_startblock)))
1253 goto out;
1254
1255 /*
1256 * Landed in an unwritten extent, try to search data
1257 * from page cache.
1258 */
1259 if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1260 if (xfs_find_get_desired_pgoff(inode, &map[i],
1261 DATA_OFF, &offset))
1262 goto out;
1263 }
1264 }
1265
1266 /*
1267 * map[0] is hole or its an unwritten extent but
1268 * without data in page cache. Probably means that
1269 * we are reading after EOF if nothing in map[1].
1270 */
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001271 if (nmap == 1) {
Dave Chinner24513372014-06-25 14:58:08 +10001272 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001273 goto out_unlock;
1274 }
1275
Jeff Liu52f1acc2012-08-21 17:12:07 +08001276 ASSERT(i > 1);
1277
1278 /*
1279 * Nothing was found, proceed to the next round of search
1280 * if reading offset not beyond or hit EOF.
1281 */
1282 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1283 start = XFS_FSB_TO_B(mp, fsbno);
1284 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001285 error = -ENXIO;
Jeff Liu52f1acc2012-08-21 17:12:07 +08001286 goto out_unlock;
1287 }
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001288 }
1289
Jeff Liu52f1acc2012-08-21 17:12:07 +08001290out:
Jie Liu46a1c2c2013-06-25 12:02:13 +08001291 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001292
1293out_unlock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -08001294 xfs_iunlock(ip, lock);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001295
1296 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001297 return error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001298 return offset;
1299}
1300
1301STATIC loff_t
1302xfs_seek_hole(
1303 struct file *file,
Jeff Liu834ab122012-08-21 17:11:45 +08001304 loff_t start)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001305{
1306 struct inode *inode = file->f_mapping->host;
1307 struct xfs_inode *ip = XFS_I(inode);
1308 struct xfs_mount *mp = ip->i_mount;
1309 loff_t uninitialized_var(offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001310 xfs_fsize_t isize;
1311 xfs_fileoff_t fsbno;
Jeff Liub686d1f2012-08-21 17:12:18 +08001312 xfs_filblks_t end;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001313 uint lock;
1314 int error;
1315
1316 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001317 return -EIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001318
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001319 lock = xfs_ilock_data_map_shared(ip);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001320
1321 isize = i_size_read(inode);
1322 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001323 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001324 goto out_unlock;
1325 }
1326
1327 fsbno = XFS_B_TO_FSBT(mp, start);
Jeff Liub686d1f2012-08-21 17:12:18 +08001328 end = XFS_B_TO_FSB(mp, isize);
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
1335 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1336 XFS_BMAPI_ENTIRE);
1337 if (error)
1338 goto out_unlock;
1339
1340 /* No extents at given offset, must be beyond EOF */
1341 if (nmap == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001342 error = -ENXIO;
Jeff Liub686d1f2012-08-21 17:12:18 +08001343 goto out_unlock;
1344 }
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
1350 /* Landed in a hole */
1351 if (map[i].br_startblock == HOLESTARTBLOCK)
1352 goto out;
1353
1354 /*
1355 * Landed in an unwritten extent, try to search hole
1356 * from page cache.
1357 */
1358 if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1359 if (xfs_find_get_desired_pgoff(inode, &map[i],
1360 HOLE_OFF, &offset))
1361 goto out;
1362 }
1363 }
1364
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001365 /*
Jeff Liub686d1f2012-08-21 17:12:18 +08001366 * map[0] contains data or its unwritten but contains
1367 * data in page cache, probably means that we are
1368 * reading after EOF. We should fix offset to point
1369 * to the end of the file(i.e., there is an implicit
1370 * hole at the end of any file).
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001371 */
Jeff Liub686d1f2012-08-21 17:12:18 +08001372 if (nmap == 1) {
1373 offset = isize;
1374 break;
1375 }
1376
1377 ASSERT(i > 1);
1378
1379 /*
1380 * Both mappings contains data, proceed to the next round of
1381 * search if the current reading offset not beyond or hit EOF.
1382 */
1383 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1384 start = XFS_FSB_TO_B(mp, fsbno);
1385 if (start >= isize) {
1386 offset = isize;
1387 break;
1388 }
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001389 }
1390
Jeff Liub686d1f2012-08-21 17:12:18 +08001391out:
1392 /*
1393 * At this point, we must have found a hole. However, the returned
1394 * offset may be bigger than the file size as it may be aligned to
1395 * page boundary for unwritten extents, we need to deal with this
1396 * situation in particular.
1397 */
1398 offset = min_t(loff_t, offset, isize);
Jie Liu46a1c2c2013-06-25 12:02:13 +08001399 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001400
1401out_unlock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -08001402 xfs_iunlock(ip, lock);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001403
1404 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001405 return error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001406 return offset;
1407}
1408
1409STATIC loff_t
1410xfs_file_llseek(
1411 struct file *file,
1412 loff_t offset,
1413 int origin)
1414{
1415 switch (origin) {
1416 case SEEK_END:
1417 case SEEK_CUR:
1418 case SEEK_SET:
1419 return generic_file_llseek(file, offset, origin);
1420 case SEEK_DATA:
Jeff Liu834ab122012-08-21 17:11:45 +08001421 return xfs_seek_data(file, offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001422 case SEEK_HOLE:
Jeff Liu834ab122012-08-21 17:11:45 +08001423 return xfs_seek_hole(file, offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001424 default:
1425 return -EINVAL;
1426 }
1427}
1428
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001429const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001430 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001431 .read = new_sync_read,
Al Virobf97f3bc2014-04-03 14:20:23 -04001432 .write = new_sync_write,
Al Virob4f5d2c2014-04-02 14:37:59 -04001433 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001434 .write_iter = xfs_file_write_iter,
Nathan Scott1b895842006-03-31 13:08:59 +10001435 .splice_read = xfs_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001436 .splice_write = iter_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +11001437 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001439 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001441 .mmap = xfs_file_mmap,
1442 .open = xfs_file_open,
1443 .release = xfs_file_release,
1444 .fsync = xfs_file_fsync,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001445 .fallocate = xfs_file_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446};
1447
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001448const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001449 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 .read = generic_read_dir,
Al Virob8227552013-05-22 17:07:56 -04001451 .iterate = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001452 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001453 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001454#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001455 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001456#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001457 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458};
1459
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001460static const struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07001461 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001462 .map_pages = filemap_map_pages,
David Chinner4f57dbc2007-07-19 16:28:17 +10001463 .page_mkwrite = xfs_vm_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07001464 .remap_pages = generic_file_remap_pages,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +10001465};