blob: fcf91a22f5d861b25f6d4f060ecfeb4899d7077a [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))
250 ioflags |= IO_ISDIRECT;
251 if (file->f_mode & FMODE_NOCMTIME)
252 ioflags |= IO_INVIS;
253
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000254 if (unlikely(ioflags & IO_ISDIRECT)) {
255 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);
287 if ((ioflags & IO_ISDIRECT) && inode->i_mapping->nrpages) {
288 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 }
Dave Chinnerfb595812012-11-12 22:53:57 +1100299 truncate_pagecache_range(VFS_I(ip), pos, -1);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000300 }
Dave Chinner487f84f2011-01-12 11:37:10 +1100301 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Dave Chinner0c38a252011-08-25 07:17:01 +0000302 }
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000303
Dave Chinnerfb595812012-11-12 22:53:57 +1100304 trace_xfs_file_read(ip, size, pos, ioflags);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000305
Al Virob4f5d2c2014-04-02 14:37:59 -0400306 ret = generic_file_read_iter(iocb, to);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000307 if (ret > 0)
308 XFS_STATS_ADD(xs_read_bytes, ret);
309
Dave Chinner487f84f2011-01-12 11:37:10 +1100310 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000311 return ret;
312}
313
Christoph Hellwig00258e32010-02-15 09:44:47 +0000314STATIC ssize_t
315xfs_file_splice_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000316 struct file *infilp,
317 loff_t *ppos,
318 struct pipe_inode_info *pipe,
319 size_t count,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000320 unsigned int flags)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000321{
Christoph Hellwig00258e32010-02-15 09:44:47 +0000322 struct xfs_inode *ip = XFS_I(infilp->f_mapping->host);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000323 int ioflags = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000324 ssize_t ret;
325
326 XFS_STATS_INC(xs_read_calls);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000327
328 if (infilp->f_mode & FMODE_NOCMTIME)
329 ioflags |= IO_INVIS;
330
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000331 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
332 return -EIO;
333
Dave Chinner487f84f2011-01-12 11:37:10 +1100334 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000335
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000336 trace_xfs_file_splice_read(ip, count, *ppos, ioflags);
337
338 ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
339 if (ret > 0)
340 XFS_STATS_ADD(xs_read_bytes, ret);
341
Dave Chinner487f84f2011-01-12 11:37:10 +1100342 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000343 return ret;
344}
345
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100346/*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400347 * This routine is called to handle zeroing any space in the last block of the
348 * file that is beyond the EOF. We do this since the size is being increased
349 * without writing anything to that block and we don't want to read the
350 * garbage on the disk.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000351 */
352STATIC int /* error (positive) */
353xfs_zero_last_block(
Christoph Hellwig193aec12012-03-27 10:34:49 -0400354 struct xfs_inode *ip,
355 xfs_fsize_t offset,
356 xfs_fsize_t isize)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000357{
Christoph Hellwig193aec12012-03-27 10:34:49 -0400358 struct xfs_mount *mp = ip->i_mount;
359 xfs_fileoff_t last_fsb = XFS_B_TO_FSBT(mp, isize);
360 int zero_offset = XFS_B_FSB_OFFSET(mp, isize);
361 int zero_len;
362 int nimaps = 1;
363 int error = 0;
364 struct xfs_bmbt_irec imap;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000365
Christoph Hellwig193aec12012-03-27 10:34:49 -0400366 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000367 error = xfs_bmapi_read(ip, last_fsb, 1, &imap, &nimaps, 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400368 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000369 if (error)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000370 return error;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400371
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000372 ASSERT(nimaps > 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400373
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000374 /*
375 * If the block underlying isize is just a hole, then there
376 * is nothing to zero.
377 */
Christoph Hellwig193aec12012-03-27 10:34:49 -0400378 if (imap.br_startblock == HOLESTARTBLOCK)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000379 return 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000380
381 zero_len = mp->m_sb.sb_blocksize - zero_offset;
382 if (isize + zero_len > offset)
383 zero_len = offset - isize;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400384 return xfs_iozero(ip, isize, zero_len);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000385}
386
387/*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400388 * Zero any on disk space between the current EOF and the new, larger EOF.
389 *
390 * This handles the normal case of zeroing the remainder of the last block in
391 * the file and the unusual case of zeroing blocks out beyond the size of the
392 * file. This second case only happens with fixed size extents and when the
393 * system crashes before the inode size was updated but after blocks were
394 * allocated.
395 *
396 * Expects the iolock to be held exclusive, and will take the ilock internally.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000397 */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000398int /* error (positive) */
399xfs_zero_eof(
Christoph Hellwig193aec12012-03-27 10:34:49 -0400400 struct xfs_inode *ip,
401 xfs_off_t offset, /* starting I/O offset */
402 xfs_fsize_t isize) /* current inode size */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000403{
Christoph Hellwig193aec12012-03-27 10:34:49 -0400404 struct xfs_mount *mp = ip->i_mount;
405 xfs_fileoff_t start_zero_fsb;
406 xfs_fileoff_t end_zero_fsb;
407 xfs_fileoff_t zero_count_fsb;
408 xfs_fileoff_t last_fsb;
409 xfs_fileoff_t zero_off;
410 xfs_fsize_t zero_len;
411 int nimaps;
412 int error = 0;
413 struct xfs_bmbt_irec imap;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000414
Christoph Hellwig193aec12012-03-27 10:34:49 -0400415 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000416 ASSERT(offset > isize);
417
418 /*
419 * First handle zeroing the block on which isize resides.
Christoph Hellwig193aec12012-03-27 10:34:49 -0400420 *
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000421 * We only zero a part of that block so it is handled specially.
422 */
Christoph Hellwig193aec12012-03-27 10:34:49 -0400423 if (XFS_B_FSB_OFFSET(mp, isize) != 0) {
424 error = xfs_zero_last_block(ip, offset, isize);
425 if (error)
426 return error;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000427 }
428
429 /*
Christoph Hellwig193aec12012-03-27 10:34:49 -0400430 * Calculate the range between the new size and the old where blocks
431 * needing to be zeroed may exist.
432 *
433 * To get the block where the last byte in the file currently resides,
434 * we need to subtract one from the size and truncate back to a block
435 * boundary. We subtract 1 in case the size is exactly on a block
436 * boundary.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000437 */
438 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
439 start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
440 end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
441 ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
442 if (last_fsb == end_zero_fsb) {
443 /*
444 * The size was only incremented on its last block.
445 * We took care of that above, so just return.
446 */
447 return 0;
448 }
449
450 ASSERT(start_zero_fsb <= end_zero_fsb);
451 while (start_zero_fsb <= end_zero_fsb) {
452 nimaps = 1;
453 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400454
455 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000456 error = xfs_bmapi_read(ip, start_zero_fsb, zero_count_fsb,
457 &imap, &nimaps, 0);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400458 xfs_iunlock(ip, XFS_ILOCK_EXCL);
459 if (error)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000460 return error;
Christoph Hellwig193aec12012-03-27 10:34:49 -0400461
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000462 ASSERT(nimaps > 0);
463
464 if (imap.br_state == XFS_EXT_UNWRITTEN ||
465 imap.br_startblock == HOLESTARTBLOCK) {
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000466 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
467 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
468 continue;
469 }
470
471 /*
472 * There are blocks we need to zero.
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000473 */
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000474 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
475 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
476
477 if ((zero_off + zero_len) > offset)
478 zero_len = offset - zero_off;
479
480 error = xfs_iozero(ip, zero_off, zero_len);
Christoph Hellwig193aec12012-03-27 10:34:49 -0400481 if (error)
482 return error;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000483
484 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
485 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000486 }
487
488 return 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000489}
490
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100491/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100492 * Common pre-write limit and setup checks.
493 *
Christoph Hellwig5bf1f262011-12-18 20:00:13 +0000494 * Called with the iolocked held either shared and exclusive according to
495 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
496 * if called for a direct write beyond i_size.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100497 */
498STATIC ssize_t
499xfs_file_aio_write_checks(
500 struct file *file,
501 loff_t *pos,
502 size_t *count,
503 int *iolock)
504{
505 struct inode *inode = file->f_mapping->host;
506 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100507 int error = 0;
508
Dave Chinner7271d242011-08-25 07:17:02 +0000509restart:
Dave Chinner4d8d1582011-01-11 10:23:42 +1100510 error = generic_write_checks(file, pos, count, S_ISBLK(inode->i_mode));
Christoph Hellwig467f7892012-03-27 10:34:47 -0400511 if (error)
Dave Chinner4d8d1582011-01-11 10:23:42 +1100512 return error;
Dave Chinner4d8d1582011-01-11 10:23:42 +1100513
Dave Chinner4d8d1582011-01-11 10:23:42 +1100514 /*
515 * If the offset is beyond the size of the file, we need to zero any
516 * blocks that fall between the existing EOF and the start of this
Christoph Hellwig2813d682011-12-18 20:00:12 +0000517 * write. If zeroing is needed and we are currently holding the
Christoph Hellwig467f7892012-03-27 10:34:47 -0400518 * iolock shared, we need to update it to exclusive which implies
519 * having to redo all checks before.
Dave Chinner4d8d1582011-01-11 10:23:42 +1100520 */
Christoph Hellwig2813d682011-12-18 20:00:12 +0000521 if (*pos > i_size_read(inode)) {
Dave Chinner7271d242011-08-25 07:17:02 +0000522 if (*iolock == XFS_IOLOCK_SHARED) {
Christoph Hellwig467f7892012-03-27 10:34:47 -0400523 xfs_rw_iunlock(ip, *iolock);
Dave Chinner7271d242011-08-25 07:17:02 +0000524 *iolock = XFS_IOLOCK_EXCL;
Christoph Hellwig467f7892012-03-27 10:34:47 -0400525 xfs_rw_ilock(ip, *iolock);
Dave Chinner7271d242011-08-25 07:17:02 +0000526 goto restart;
527 }
Dave Chinner24513372014-06-25 14:58:08 +1000528 error = xfs_zero_eof(ip, *pos, i_size_read(inode));
Christoph Hellwig467f7892012-03-27 10:34:47 -0400529 if (error)
530 return error;
Dave Chinner7271d242011-08-25 07:17:02 +0000531 }
Dave Chinner4d8d1582011-01-11 10:23:42 +1100532
533 /*
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000534 * Updating the timestamps will grab the ilock again from
535 * xfs_fs_dirty_inode, so we have to call it after dropping the
536 * lock above. Eventually we should look into a way to avoid
537 * the pointless lock roundtrip.
538 */
Josef Bacikc3b2da32012-03-26 09:59:21 -0400539 if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
540 error = file_update_time(file);
541 if (error)
542 return error;
543 }
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000544
545 /*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100546 * If we're writing the file then make sure to clear the setuid and
547 * setgid bits if the process is not being run by root. This keeps
548 * people from modifying setuid and setgid binaries.
549 */
550 return file_remove_suid(file);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100551}
552
553/*
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100554 * xfs_file_dio_aio_write - handle direct IO writes
555 *
556 * Lock the inode appropriately to prepare for and issue a direct IO write.
Dave Chinnereda77982011-01-11 10:22:40 +1100557 * By separating it from the buffered write path we remove all the tricky to
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100558 * follow locking changes and looping.
559 *
Dave Chinnereda77982011-01-11 10:22:40 +1100560 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
561 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
562 * pages are flushed out.
563 *
564 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
565 * allowing them to be done in parallel with reads and other direct IO writes.
566 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
567 * needs to do sub-block zeroing and that requires serialisation against other
568 * direct IOs to the same block. In this case we need to serialise the
569 * submission of the unaligned IOs so that we don't get racing block zeroing in
570 * the dio layer. To avoid the problem with aio, we also need to wait for
571 * outstanding IOs to complete so that unwritten extent conversion is completed
572 * before we try to map the overlapping block. This is currently implemented by
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000573 * hitting it with a big hammer (i.e. inode_dio_wait()).
Dave Chinnereda77982011-01-11 10:22:40 +1100574 *
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100575 * Returns with locks held indicated by @iolock and errors indicated by
576 * negative return values.
577 */
578STATIC ssize_t
579xfs_file_dio_aio_write(
580 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400581 struct iov_iter *from)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100582{
583 struct file *file = iocb->ki_filp;
584 struct address_space *mapping = file->f_mapping;
585 struct inode *inode = mapping->host;
586 struct xfs_inode *ip = XFS_I(inode);
587 struct xfs_mount *mp = ip->i_mount;
588 ssize_t ret = 0;
Dave Chinnereda77982011-01-11 10:22:40 +1100589 int unaligned_io = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000590 int iolock;
Al Virob3188912014-04-02 07:06:30 -0400591 size_t count = iov_iter_count(from);
592 loff_t pos = iocb->ki_pos;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100593 struct xfs_buftarg *target = XFS_IS_REALTIME_INODE(ip) ?
594 mp->m_rtdev_targp : mp->m_ddev_targp;
595
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600596 /* DIO must be aligned to device logical sector size */
597 if ((pos | count) & target->bt_logical_sectormask)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000598 return -EINVAL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100599
Eric Sandeen7c71ee72014-01-21 16:46:23 -0600600 /* "unaligned" here means not aligned to a filesystem block */
Dave Chinnereda77982011-01-11 10:22:40 +1100601 if ((pos & mp->m_blockmask) || ((pos + count) & mp->m_blockmask))
602 unaligned_io = 1;
603
Dave Chinner7271d242011-08-25 07:17:02 +0000604 /*
605 * We don't need to take an exclusive lock unless there page cache needs
606 * to be invalidated or unaligned IO is being executed. We don't need to
607 * consider the EOF extension case here because
608 * xfs_file_aio_write_checks() will relock the inode as necessary for
609 * EOF zeroing cases and fill out the new inode size as appropriate.
610 */
611 if (unaligned_io || mapping->nrpages)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000612 iolock = XFS_IOLOCK_EXCL;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100613 else
Christoph Hellwigd0606462011-12-18 20:00:14 +0000614 iolock = XFS_IOLOCK_SHARED;
615 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000616
617 /*
618 * Recheck if there are cached pages that need invalidate after we got
619 * the iolock to protect against other threads adding new pages while
620 * we were waiting for the iolock.
621 */
Christoph Hellwigd0606462011-12-18 20:00:14 +0000622 if (mapping->nrpages && iolock == XFS_IOLOCK_SHARED) {
623 xfs_rw_iunlock(ip, iolock);
624 iolock = XFS_IOLOCK_EXCL;
625 xfs_rw_ilock(ip, iolock);
Christoph Hellwigc58cb162011-08-27 14:42:53 +0000626 }
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100627
Christoph Hellwigd0606462011-12-18 20:00:14 +0000628 ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100629 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000630 goto out;
Al Virob3188912014-04-02 07:06:30 -0400631 iov_iter_truncate(from, count);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100632
633 if (mapping->nrpages) {
Dave Chinner07d50352014-04-17 08:15:27 +1000634 ret = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
Dave Chinnerfb595812012-11-12 22:53:57 +1100635 pos, -1);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100636 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000637 goto out;
Dave Chinnerfb595812012-11-12 22:53:57 +1100638 truncate_pagecache_range(VFS_I(ip), pos, -1);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100639 }
640
Dave Chinnereda77982011-01-11 10:22:40 +1100641 /*
642 * If we are doing unaligned IO, wait for all other IO to drain,
643 * otherwise demote the lock if we had to flush cached pages
644 */
645 if (unaligned_io)
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000646 inode_dio_wait(inode);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000647 else if (iolock == XFS_IOLOCK_EXCL) {
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100648 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000649 iolock = XFS_IOLOCK_SHARED;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100650 }
651
652 trace_xfs_file_direct_write(ip, count, iocb->ki_pos, 0);
Al Virob3188912014-04-02 07:06:30 -0400653 ret = generic_file_direct_write(iocb, from, pos);
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100654
Christoph Hellwigd0606462011-12-18 20:00:14 +0000655out:
656 xfs_rw_iunlock(ip, iolock);
657
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100658 /* No fallback to buffered IO on errors for XFS. */
659 ASSERT(ret < 0 || ret == count);
660 return ret;
661}
662
Christoph Hellwig00258e32010-02-15 09:44:47 +0000663STATIC ssize_t
Dave Chinner637bbc72011-01-11 10:17:30 +1100664xfs_file_buffered_aio_write(
665 struct kiocb *iocb,
Al Virob3188912014-04-02 07:06:30 -0400666 struct iov_iter *from)
Dave Chinner637bbc72011-01-11 10:17:30 +1100667{
668 struct file *file = iocb->ki_filp;
669 struct address_space *mapping = file->f_mapping;
670 struct inode *inode = mapping->host;
671 struct xfs_inode *ip = XFS_I(inode);
672 ssize_t ret;
673 int enospc = 0;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000674 int iolock = XFS_IOLOCK_EXCL;
Al Virob3188912014-04-02 07:06:30 -0400675 loff_t pos = iocb->ki_pos;
676 size_t count = iov_iter_count(from);
Dave Chinner637bbc72011-01-11 10:17:30 +1100677
Christoph Hellwigd0606462011-12-18 20:00:14 +0000678 xfs_rw_ilock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100679
Christoph Hellwigd0606462011-12-18 20:00:14 +0000680 ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
Dave Chinner4d8d1582011-01-11 10:23:42 +1100681 if (ret)
Christoph Hellwigd0606462011-12-18 20:00:14 +0000682 goto out;
Dave Chinner637bbc72011-01-11 10:17:30 +1100683
Al Virob3188912014-04-02 07:06:30 -0400684 iov_iter_truncate(from, count);
Dave Chinner637bbc72011-01-11 10:17:30 +1100685 /* We can write back this queue in page reclaim */
686 current->backing_dev_info = mapping->backing_dev_info;
687
688write_retry:
689 trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, 0);
Al Virob3188912014-04-02 07:06:30 -0400690 ret = generic_perform_write(file, from, pos);
Al Viro0a64bc22014-02-11 22:25:22 -0500691 if (likely(ret >= 0))
692 iocb->ki_pos = pos + ret;
Brian Fosterdc06f3982014-07-24 19:49:28 +1000693
Dave Chinner637bbc72011-01-11 10:17:30 +1100694 /*
Brian Fosterdc06f3982014-07-24 19:49:28 +1000695 * If we hit a space limit, try to free up some lingering preallocated
696 * space before returning an error. In the case of ENOSPC, first try to
697 * write back all dirty inodes to free up some of the excess reserved
698 * metadata space. This reduces the chances that the eofblocks scan
699 * waits on dirty mappings. Since xfs_flush_inodes() is serialized, this
700 * also behaves as a filter to prevent too many eofblocks scans from
701 * running at the same time.
Dave Chinner637bbc72011-01-11 10:17:30 +1100702 */
Brian Fosterdc06f3982014-07-24 19:49:28 +1000703 if (ret == -EDQUOT && !enospc) {
704 enospc = xfs_inode_free_quota_eofblocks(ip);
705 if (enospc)
706 goto write_retry;
707 } else if (ret == -ENOSPC && !enospc) {
708 struct xfs_eofblocks eofb = {0};
709
Dave Chinner637bbc72011-01-11 10:17:30 +1100710 enospc = 1;
Dave Chinner9aa05002012-10-08 21:56:04 +1100711 xfs_flush_inodes(ip->i_mount);
Brian Fosterdc06f3982014-07-24 19:49:28 +1000712 eofb.eof_scan_owner = ip->i_ino; /* for locking */
713 eofb.eof_flags = XFS_EOF_FLAGS_SYNC;
714 xfs_icache_free_eofblocks(ip->i_mount, &eofb);
Dave Chinner9aa05002012-10-08 21:56:04 +1100715 goto write_retry;
Dave Chinner637bbc72011-01-11 10:17:30 +1100716 }
Christoph Hellwigd0606462011-12-18 20:00:14 +0000717
Dave Chinner637bbc72011-01-11 10:17:30 +1100718 current->backing_dev_info = NULL;
Christoph Hellwigd0606462011-12-18 20:00:14 +0000719out:
720 xfs_rw_iunlock(ip, iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100721 return ret;
722}
723
724STATIC ssize_t
Al Virobf97f3bc2014-04-03 14:20:23 -0400725xfs_file_write_iter(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000726 struct kiocb *iocb,
Al Virobf97f3bc2014-04-03 14:20:23 -0400727 struct iov_iter *from)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000728{
729 struct file *file = iocb->ki_filp;
730 struct address_space *mapping = file->f_mapping;
731 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000732 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100733 ssize_t ret;
Al Virobf97f3bc2014-04-03 14:20:23 -0400734 size_t ocount = iov_iter_count(from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000735
736 XFS_STATS_INC(xs_write_calls);
737
Dave Chinner637bbc72011-01-11 10:17:30 +1100738 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000739 return 0;
740
Al Virobf97f3bc2014-04-03 14:20:23 -0400741 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
742 return -EIO;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000743
Dave Chinner637bbc72011-01-11 10:17:30 +1100744 if (unlikely(file->f_flags & O_DIRECT))
Al Virobf97f3bc2014-04-03 14:20:23 -0400745 ret = xfs_file_dio_aio_write(iocb, from);
Dave Chinner637bbc72011-01-11 10:17:30 +1100746 else
Al Virobf97f3bc2014-04-03 14:20:23 -0400747 ret = xfs_file_buffered_aio_write(iocb, from);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000748
Christoph Hellwigd0606462011-12-18 20:00:14 +0000749 if (ret > 0) {
750 ssize_t err;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000751
Christoph Hellwigd0606462011-12-18 20:00:14 +0000752 XFS_STATS_ADD(xs_write_bytes, ret);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000753
Christoph Hellwigd0606462011-12-18 20:00:14 +0000754 /* Handle various SYNC-type writes */
Al Virod311d792014-02-09 15:18:09 -0500755 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
Christoph Hellwigd0606462011-12-18 20:00:14 +0000756 if (err < 0)
757 ret = err;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000758 }
Dave Chinnera363f0c2011-01-11 10:13:53 +1100759 return ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000760}
761
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100762STATIC long
763xfs_file_fallocate(
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700764 struct file *file,
765 int mode,
766 loff_t offset,
767 loff_t len)
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100768{
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700769 struct inode *inode = file_inode(file);
770 struct xfs_inode *ip = XFS_I(inode);
771 struct xfs_trans *tp;
772 long error;
773 loff_t new_size = 0;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100774
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700775 if (!S_ISREG(inode->i_mode))
776 return -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100777 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
Lukas Czerner376ba312014-03-13 19:07:58 +1100778 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100779 return -EOPNOTSUPP;
780
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100781 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700782 if (mode & FALLOC_FL_PUNCH_HOLE) {
783 error = xfs_free_file_space(ip, offset, len);
784 if (error)
785 goto out_unlock;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100786 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
787 unsigned blksize_mask = (1 << inode->i_blkbits) - 1;
788
789 if (offset & blksize_mask || len & blksize_mask) {
Dave Chinner24513372014-06-25 14:58:08 +1000790 error = -EINVAL;
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100791 goto out_unlock;
792 }
793
Lukas Czerner23fffa92014-04-12 09:56:41 -0400794 /*
795 * There is no need to overlap collapse range with EOF,
796 * in which case it is effectively a truncate operation
797 */
798 if (offset + len >= i_size_read(inode)) {
Dave Chinner24513372014-06-25 14:58:08 +1000799 error = -EINVAL;
Lukas Czerner23fffa92014-04-12 09:56:41 -0400800 goto out_unlock;
801 }
802
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100803 new_size = i_size_read(inode) - len;
804
805 error = xfs_collapse_file_space(ip, offset, len);
806 if (error)
807 goto out_unlock;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700808 } else {
809 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
810 offset + len > i_size_read(inode)) {
811 new_size = offset + len;
Dave Chinner24513372014-06-25 14:58:08 +1000812 error = inode_newsize_ok(inode, new_size);
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700813 if (error)
814 goto out_unlock;
815 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100816
Lukas Czerner376ba312014-03-13 19:07:58 +1100817 if (mode & FALLOC_FL_ZERO_RANGE)
818 error = xfs_zero_file_space(ip, offset, len);
819 else
820 error = xfs_alloc_file_space(ip, offset, len,
821 XFS_BMAPI_PREALLOC);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100822 if (error)
823 goto out_unlock;
824 }
825
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700826 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_WRITEID);
827 error = xfs_trans_reserve(tp, &M_RES(ip->i_mount)->tr_writeid, 0, 0);
828 if (error) {
829 xfs_trans_cancel(tp, 0);
830 goto out_unlock;
831 }
Dave Chinner82878892011-03-26 09:13:08 +1100832
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700833 xfs_ilock(ip, XFS_ILOCK_EXCL);
834 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
835 ip->i_d.di_mode &= ~S_ISUID;
836 if (ip->i_d.di_mode & S_IXGRP)
837 ip->i_d.di_mode &= ~S_ISGID;
838
Namjae Jeone1d8fb82014-02-24 10:58:19 +1100839 if (!(mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_COLLAPSE_RANGE)))
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700840 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
841
842 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
843 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
844
845 if (file->f_flags & O_DSYNC)
846 xfs_trans_set_sync(tp);
847 error = xfs_trans_commit(tp, 0);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100848 if (error)
849 goto out_unlock;
850
851 /* Change file size if needed */
852 if (new_size) {
853 struct iattr iattr;
854
855 iattr.ia_valid = ATTR_SIZE;
856 iattr.ia_size = new_size;
Christoph Hellwig83aee9e2013-10-12 00:55:07 -0700857 error = xfs_setattr_size(ip, &iattr);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100858 }
859
860out_unlock:
861 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Dave Chinner24513372014-06-25 14:58:08 +1000862 return error;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100863}
864
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100867xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100869 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100871 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100873 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
874 return -EIO;
875 return 0;
876}
877
878STATIC int
879xfs_dir_open(
880 struct inode *inode,
881 struct file *file)
882{
883 struct xfs_inode *ip = XFS_I(inode);
884 int mode;
885 int error;
886
887 error = xfs_file_open(inode, file);
888 if (error)
889 return error;
890
891 /*
892 * If there are any blocks, read-ahead block 0 as we're almost
893 * certain to have the next operation be a read there.
894 */
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800895 mode = xfs_ilock_data_map_shared(ip);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100896 if (ip->i_d.di_nextents > 0)
Eric Sandeen9df2dd02014-04-14 19:01:59 +1000897 xfs_dir3_data_readahead(ip, 0, -1);
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100898 xfs_iunlock(ip, mode);
899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100903xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 struct inode *inode,
905 struct file *filp)
906{
Dave Chinner24513372014-06-25 14:58:08 +1000907 return xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100911xfs_file_readdir(
Al Virob8227552013-05-22 17:07:56 -0400912 struct file *file,
913 struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Al Virob8227552013-05-22 17:07:56 -0400915 struct inode *inode = file_inode(file);
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000916 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000917 int error;
918 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000920 /*
921 * The Linux API doesn't pass down the total size of the buffer
922 * we read into down to the filesystem. With the filldir concept
923 * it's not needed for correct information, but the XFS dir2 leaf
924 * code wants an estimate of the buffer size to calculate it's
925 * readahead window and size the buffers used for mapping to
926 * physical blocks.
927 *
928 * Try to give it an estimate that's good enough, maybe at some
929 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +0000930 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000931 */
Eric Sandeena9cc7992010-02-03 17:50:13 +0000932 bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Al Virob8227552013-05-22 17:07:56 -0400934 error = xfs_readdir(ip, ctx, bufsize);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000935 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000936 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000937 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100941xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct file *filp,
943 struct vm_area_struct *vma)
944{
Nathan Scott3562fd42006-03-14 14:00:35 +1100945 vma->vm_ops = &xfs_file_vm_ops;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000946
Nathan Scottfbc14622006-06-09 14:52:13 +1000947 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
949}
950
David Chinner4f57dbc2007-07-19 16:28:17 +1000951/*
952 * mmap()d file has taken write protection fault and is being made
953 * writable. We can set the page state up correctly for a writable
954 * page, which means we can do correct delalloc accounting (ENOSPC
955 * checking!) and unwritten extent mapping.
956 */
957STATIC int
958xfs_vm_page_mkwrite(
959 struct vm_area_struct *vma,
Nick Pigginc2ec1752009-03-31 15:23:21 -0700960 struct vm_fault *vmf)
David Chinner4f57dbc2007-07-19 16:28:17 +1000961{
Nick Pigginc2ec1752009-03-31 15:23:21 -0700962 return block_page_mkwrite(vma, vmf, xfs_get_blocks);
David Chinner4f57dbc2007-07-19 16:28:17 +1000963}
964
Jeff Liud126d432012-08-21 17:11:57 +0800965/*
966 * This type is designed to indicate the type of offset we would like
967 * to search from page cache for either xfs_seek_data() or xfs_seek_hole().
968 */
969enum {
970 HOLE_OFF = 0,
971 DATA_OFF,
972};
973
974/*
975 * Lookup the desired type of offset from the given page.
976 *
977 * On success, return true and the offset argument will point to the
978 * start of the region that was found. Otherwise this function will
979 * return false and keep the offset argument unchanged.
980 */
981STATIC bool
982xfs_lookup_buffer_offset(
983 struct page *page,
984 loff_t *offset,
985 unsigned int type)
986{
987 loff_t lastoff = page_offset(page);
988 bool found = false;
989 struct buffer_head *bh, *head;
990
991 bh = head = page_buffers(page);
992 do {
993 /*
994 * Unwritten extents that have data in the page
995 * cache covering them can be identified by the
996 * BH_Unwritten state flag. Pages with multiple
997 * buffers might have a mix of holes, data and
998 * unwritten extents - any buffer with valid
999 * data in it should have BH_Uptodate flag set
1000 * on it.
1001 */
1002 if (buffer_unwritten(bh) ||
1003 buffer_uptodate(bh)) {
1004 if (type == DATA_OFF)
1005 found = true;
1006 } else {
1007 if (type == HOLE_OFF)
1008 found = true;
1009 }
1010
1011 if (found) {
1012 *offset = lastoff;
1013 break;
1014 }
1015 lastoff += bh->b_size;
1016 } while ((bh = bh->b_this_page) != head);
1017
1018 return found;
1019}
1020
1021/*
1022 * This routine is called to find out and return a data or hole offset
1023 * from the page cache for unwritten extents according to the desired
1024 * type for xfs_seek_data() or xfs_seek_hole().
1025 *
1026 * The argument offset is used to tell where we start to search from the
1027 * page cache. Map is used to figure out the end points of the range to
1028 * lookup pages.
1029 *
1030 * Return true if the desired type of offset was found, and the argument
1031 * offset is filled with that address. Otherwise, return false and keep
1032 * offset unchanged.
1033 */
1034STATIC bool
1035xfs_find_get_desired_pgoff(
1036 struct inode *inode,
1037 struct xfs_bmbt_irec *map,
1038 unsigned int type,
1039 loff_t *offset)
1040{
1041 struct xfs_inode *ip = XFS_I(inode);
1042 struct xfs_mount *mp = ip->i_mount;
1043 struct pagevec pvec;
1044 pgoff_t index;
1045 pgoff_t end;
1046 loff_t endoff;
1047 loff_t startoff = *offset;
1048 loff_t lastoff = startoff;
1049 bool found = false;
1050
1051 pagevec_init(&pvec, 0);
1052
1053 index = startoff >> PAGE_CACHE_SHIFT;
1054 endoff = XFS_FSB_TO_B(mp, map->br_startoff + map->br_blockcount);
1055 end = endoff >> PAGE_CACHE_SHIFT;
1056 do {
1057 int want;
1058 unsigned nr_pages;
1059 unsigned int i;
1060
1061 want = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
1062 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
1063 want);
1064 /*
1065 * No page mapped into given range. If we are searching holes
1066 * and if this is the first time we got into the loop, it means
1067 * that the given offset is landed in a hole, return it.
1068 *
1069 * If we have already stepped through some block buffers to find
1070 * holes but they all contains data. In this case, the last
1071 * offset is already updated and pointed to the end of the last
1072 * mapped page, if it does not reach the endpoint to search,
1073 * that means there should be a hole between them.
1074 */
1075 if (nr_pages == 0) {
1076 /* Data search found nothing */
1077 if (type == DATA_OFF)
1078 break;
1079
1080 ASSERT(type == HOLE_OFF);
1081 if (lastoff == startoff || lastoff < endoff) {
1082 found = true;
1083 *offset = lastoff;
1084 }
1085 break;
1086 }
1087
1088 /*
1089 * At lease we found one page. If this is the first time we
1090 * step into the loop, and if the first page index offset is
1091 * greater than the given search offset, a hole was found.
1092 */
1093 if (type == HOLE_OFF && lastoff == startoff &&
1094 lastoff < page_offset(pvec.pages[0])) {
1095 found = true;
1096 break;
1097 }
1098
1099 for (i = 0; i < nr_pages; i++) {
1100 struct page *page = pvec.pages[i];
1101 loff_t b_offset;
1102
1103 /*
1104 * At this point, the page may be truncated or
1105 * invalidated (changing page->mapping to NULL),
1106 * or even swizzled back from swapper_space to tmpfs
1107 * file mapping. However, page->index will not change
1108 * because we have a reference on the page.
1109 *
1110 * Searching done if the page index is out of range.
1111 * If the current offset is not reaches the end of
1112 * the specified search range, there should be a hole
1113 * between them.
1114 */
1115 if (page->index > end) {
1116 if (type == HOLE_OFF && lastoff < endoff) {
1117 *offset = lastoff;
1118 found = true;
1119 }
1120 goto out;
1121 }
1122
1123 lock_page(page);
1124 /*
1125 * Page truncated or invalidated(page->mapping == NULL).
1126 * We can freely skip it and proceed to check the next
1127 * page.
1128 */
1129 if (unlikely(page->mapping != inode->i_mapping)) {
1130 unlock_page(page);
1131 continue;
1132 }
1133
1134 if (!page_has_buffers(page)) {
1135 unlock_page(page);
1136 continue;
1137 }
1138
1139 found = xfs_lookup_buffer_offset(page, &b_offset, type);
1140 if (found) {
1141 /*
1142 * The found offset may be less than the start
1143 * point to search if this is the first time to
1144 * come here.
1145 */
1146 *offset = max_t(loff_t, startoff, b_offset);
1147 unlock_page(page);
1148 goto out;
1149 }
1150
1151 /*
1152 * We either searching data but nothing was found, or
1153 * searching hole but found a data buffer. In either
1154 * case, probably the next page contains the desired
1155 * things, update the last offset to it so.
1156 */
1157 lastoff = page_offset(page) + PAGE_SIZE;
1158 unlock_page(page);
1159 }
1160
1161 /*
1162 * The number of returned pages less than our desired, search
1163 * done. In this case, nothing was found for searching data,
1164 * but we found a hole behind the last offset.
1165 */
1166 if (nr_pages < want) {
1167 if (type == HOLE_OFF) {
1168 *offset = lastoff;
1169 found = true;
1170 }
1171 break;
1172 }
1173
1174 index = pvec.pages[i - 1]->index + 1;
1175 pagevec_release(&pvec);
1176 } while (index <= end);
1177
1178out:
1179 pagevec_release(&pvec);
1180 return found;
1181}
1182
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001183STATIC loff_t
1184xfs_seek_data(
1185 struct file *file,
Jeff Liu834ab122012-08-21 17:11:45 +08001186 loff_t start)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001187{
1188 struct inode *inode = file->f_mapping->host;
1189 struct xfs_inode *ip = XFS_I(inode);
1190 struct xfs_mount *mp = ip->i_mount;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001191 loff_t uninitialized_var(offset);
1192 xfs_fsize_t isize;
1193 xfs_fileoff_t fsbno;
1194 xfs_filblks_t end;
1195 uint lock;
1196 int error;
1197
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001198 lock = xfs_ilock_data_map_shared(ip);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001199
1200 isize = i_size_read(inode);
1201 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001202 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001203 goto out_unlock;
1204 }
1205
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001206 /*
1207 * Try to read extents from the first block indicated
1208 * by fsbno to the end block of the file.
1209 */
Jeff Liu52f1acc2012-08-21 17:12:07 +08001210 fsbno = XFS_B_TO_FSBT(mp, start);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001211 end = XFS_B_TO_FSB(mp, isize);
Jeff Liu52f1acc2012-08-21 17:12:07 +08001212 for (;;) {
1213 struct xfs_bmbt_irec map[2];
1214 int nmap = 2;
1215 unsigned int i;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001216
Jeff Liu52f1acc2012-08-21 17:12:07 +08001217 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1218 XFS_BMAPI_ENTIRE);
1219 if (error)
1220 goto out_unlock;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001221
Jeff Liu52f1acc2012-08-21 17:12:07 +08001222 /* No extents at given offset, must be beyond EOF */
1223 if (nmap == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001224 error = -ENXIO;
Jeff Liu52f1acc2012-08-21 17:12:07 +08001225 goto out_unlock;
1226 }
1227
1228 for (i = 0; i < nmap; i++) {
1229 offset = max_t(loff_t, start,
1230 XFS_FSB_TO_B(mp, map[i].br_startoff));
1231
1232 /* Landed in a data extent */
1233 if (map[i].br_startblock == DELAYSTARTBLOCK ||
1234 (map[i].br_state == XFS_EXT_NORM &&
1235 !isnullstartblock(map[i].br_startblock)))
1236 goto out;
1237
1238 /*
1239 * Landed in an unwritten extent, try to search data
1240 * from page cache.
1241 */
1242 if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1243 if (xfs_find_get_desired_pgoff(inode, &map[i],
1244 DATA_OFF, &offset))
1245 goto out;
1246 }
1247 }
1248
1249 /*
1250 * map[0] is hole or its an unwritten extent but
1251 * without data in page cache. Probably means that
1252 * we are reading after EOF if nothing in map[1].
1253 */
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001254 if (nmap == 1) {
Dave Chinner24513372014-06-25 14:58:08 +10001255 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001256 goto out_unlock;
1257 }
1258
Jeff Liu52f1acc2012-08-21 17:12:07 +08001259 ASSERT(i > 1);
1260
1261 /*
1262 * Nothing was found, proceed to the next round of search
1263 * if reading offset not beyond or hit EOF.
1264 */
1265 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1266 start = XFS_FSB_TO_B(mp, fsbno);
1267 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001268 error = -ENXIO;
Jeff Liu52f1acc2012-08-21 17:12:07 +08001269 goto out_unlock;
1270 }
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001271 }
1272
Jeff Liu52f1acc2012-08-21 17:12:07 +08001273out:
Jie Liu46a1c2c2013-06-25 12:02:13 +08001274 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001275
1276out_unlock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -08001277 xfs_iunlock(ip, lock);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001278
1279 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001280 return error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001281 return offset;
1282}
1283
1284STATIC loff_t
1285xfs_seek_hole(
1286 struct file *file,
Jeff Liu834ab122012-08-21 17:11:45 +08001287 loff_t start)
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001288{
1289 struct inode *inode = file->f_mapping->host;
1290 struct xfs_inode *ip = XFS_I(inode);
1291 struct xfs_mount *mp = ip->i_mount;
1292 loff_t uninitialized_var(offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001293 xfs_fsize_t isize;
1294 xfs_fileoff_t fsbno;
Jeff Liub686d1f2012-08-21 17:12:18 +08001295 xfs_filblks_t end;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001296 uint lock;
1297 int error;
1298
1299 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001300 return -EIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001301
Christoph Hellwig309ecac2013-12-06 12:30:09 -08001302 lock = xfs_ilock_data_map_shared(ip);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001303
1304 isize = i_size_read(inode);
1305 if (start >= isize) {
Dave Chinner24513372014-06-25 14:58:08 +10001306 error = -ENXIO;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001307 goto out_unlock;
1308 }
1309
1310 fsbno = XFS_B_TO_FSBT(mp, start);
Jeff Liub686d1f2012-08-21 17:12:18 +08001311 end = XFS_B_TO_FSB(mp, isize);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001312
Jeff Liub686d1f2012-08-21 17:12:18 +08001313 for (;;) {
1314 struct xfs_bmbt_irec map[2];
1315 int nmap = 2;
1316 unsigned int i;
1317
1318 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1319 XFS_BMAPI_ENTIRE);
1320 if (error)
1321 goto out_unlock;
1322
1323 /* No extents at given offset, must be beyond EOF */
1324 if (nmap == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001325 error = -ENXIO;
Jeff Liub686d1f2012-08-21 17:12:18 +08001326 goto out_unlock;
1327 }
1328
1329 for (i = 0; i < nmap; i++) {
1330 offset = max_t(loff_t, start,
1331 XFS_FSB_TO_B(mp, map[i].br_startoff));
1332
1333 /* Landed in a hole */
1334 if (map[i].br_startblock == HOLESTARTBLOCK)
1335 goto out;
1336
1337 /*
1338 * Landed in an unwritten extent, try to search hole
1339 * from page cache.
1340 */
1341 if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1342 if (xfs_find_get_desired_pgoff(inode, &map[i],
1343 HOLE_OFF, &offset))
1344 goto out;
1345 }
1346 }
1347
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001348 /*
Jeff Liub686d1f2012-08-21 17:12:18 +08001349 * map[0] contains data or its unwritten but contains
1350 * data in page cache, probably means that we are
1351 * reading after EOF. We should fix offset to point
1352 * to the end of the file(i.e., there is an implicit
1353 * hole at the end of any file).
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001354 */
Jeff Liub686d1f2012-08-21 17:12:18 +08001355 if (nmap == 1) {
1356 offset = isize;
1357 break;
1358 }
1359
1360 ASSERT(i > 1);
1361
1362 /*
1363 * Both mappings contains data, proceed to the next round of
1364 * search if the current reading offset not beyond or hit EOF.
1365 */
1366 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1367 start = XFS_FSB_TO_B(mp, fsbno);
1368 if (start >= isize) {
1369 offset = isize;
1370 break;
1371 }
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001372 }
1373
Jeff Liub686d1f2012-08-21 17:12:18 +08001374out:
1375 /*
1376 * At this point, we must have found a hole. However, the returned
1377 * offset may be bigger than the file size as it may be aligned to
1378 * page boundary for unwritten extents, we need to deal with this
1379 * situation in particular.
1380 */
1381 offset = min_t(loff_t, offset, isize);
Jie Liu46a1c2c2013-06-25 12:02:13 +08001382 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001383
1384out_unlock:
Christoph Hellwig01f4f322013-12-06 12:30:08 -08001385 xfs_iunlock(ip, lock);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001386
1387 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001388 return error;
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001389 return offset;
1390}
1391
1392STATIC loff_t
1393xfs_file_llseek(
1394 struct file *file,
1395 loff_t offset,
1396 int origin)
1397{
1398 switch (origin) {
1399 case SEEK_END:
1400 case SEEK_CUR:
1401 case SEEK_SET:
1402 return generic_file_llseek(file, offset, origin);
1403 case SEEK_DATA:
Jeff Liu834ab122012-08-21 17:11:45 +08001404 return xfs_seek_data(file, offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001405 case SEEK_HOLE:
Jeff Liu834ab122012-08-21 17:11:45 +08001406 return xfs_seek_hole(file, offset);
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001407 default:
1408 return -EINVAL;
1409 }
1410}
1411
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001412const struct file_operations xfs_file_operations = {
Jeff Liu3fe3e6b2012-05-10 21:29:17 +08001413 .llseek = xfs_file_llseek,
Al Virob4f5d2c2014-04-02 14:37:59 -04001414 .read = new_sync_read,
Al Virobf97f3bc2014-04-03 14:20:23 -04001415 .write = new_sync_write,
Al Virob4f5d2c2014-04-02 14:37:59 -04001416 .read_iter = xfs_file_read_iter,
Al Virobf97f3bc2014-04-03 14:20:23 -04001417 .write_iter = xfs_file_write_iter,
Nathan Scott1b895842006-03-31 13:08:59 +10001418 .splice_read = xfs_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -04001419 .splice_write = iter_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +11001420 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001422 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001424 .mmap = xfs_file_mmap,
1425 .open = xfs_file_open,
1426 .release = xfs_file_release,
1427 .fsync = xfs_file_fsync,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001428 .fallocate = xfs_file_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429};
1430
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001431const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001432 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 .read = generic_read_dir,
Al Virob8227552013-05-22 17:07:56 -04001434 .iterate = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001435 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001436 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001437#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001438 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001439#endif
Christoph Hellwig1da2f2d2011-10-02 14:25:16 +00001440 .fsync = xfs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441};
1442
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001443static const struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07001444 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07001445 .map_pages = filemap_map_pages,
David Chinner4f57dbc2007-07-19 16:28:17 +10001446 .page_mkwrite = xfs_vm_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07001447 .remap_pages = generic_file_remap_pages,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +10001448};