blob: fbbf657df0cd581f0979dba3744295ecfe087813 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
27#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_dinode.h"
30#include "xfs_inode.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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_error.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100034#include "xfs_vnodeops.h"
Christoph Hellwigf999a5b2008-11-28 14:23:32 +110035#include "xfs_da_btree.h"
Christoph Hellwigddcd8562008-12-03 07:55:34 -050036#include "xfs_ioctl.h"
Christoph Hellwigdda35b82010-02-15 09:44:46 +000037#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <linux/dcache.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010040#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040042static const struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Christoph Hellwigdda35b82010-02-15 09:44:46 +000044/*
Dave Chinner487f84f2011-01-12 11:37:10 +110045 * Locking primitives for read and write IO paths to ensure we consistently use
46 * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
47 */
48static inline void
49xfs_rw_ilock(
50 struct xfs_inode *ip,
51 int type)
52{
53 if (type & XFS_IOLOCK_EXCL)
54 mutex_lock(&VFS_I(ip)->i_mutex);
55 xfs_ilock(ip, type);
56}
57
58static inline void
59xfs_rw_iunlock(
60 struct xfs_inode *ip,
61 int type)
62{
63 xfs_iunlock(ip, type);
64 if (type & XFS_IOLOCK_EXCL)
65 mutex_unlock(&VFS_I(ip)->i_mutex);
66}
67
68static inline void
69xfs_rw_ilock_demote(
70 struct xfs_inode *ip,
71 int type)
72{
73 xfs_ilock_demote(ip, type);
74 if (type & XFS_IOLOCK_EXCL)
75 mutex_unlock(&VFS_I(ip)->i_mutex);
76}
77
78/*
Christoph Hellwigdda35b82010-02-15 09:44:46 +000079 * xfs_iozero
80 *
81 * xfs_iozero clears the specified range of buffer supplied,
82 * and marks all the affected blocks as valid and modified. If
83 * an affected block is not allocated, it will be allocated. If
84 * an affected block is not completely overwritten, and is not
85 * valid before the operation, it will be read from disk before
86 * being partially zeroed.
87 */
88STATIC int
89xfs_iozero(
90 struct xfs_inode *ip, /* inode */
91 loff_t pos, /* offset in file */
92 size_t count) /* size of data to zero */
93{
94 struct page *page;
95 struct address_space *mapping;
96 int status;
97
98 mapping = VFS_I(ip)->i_mapping;
99 do {
100 unsigned offset, bytes;
101 void *fsdata;
102
103 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
104 bytes = PAGE_CACHE_SIZE - offset;
105 if (bytes > count)
106 bytes = count;
107
108 status = pagecache_write_begin(NULL, mapping, pos, bytes,
109 AOP_FLAG_UNINTERRUPTIBLE,
110 &page, &fsdata);
111 if (status)
112 break;
113
114 zero_user(page, offset, bytes);
115
116 status = pagecache_write_end(NULL, mapping, pos, bytes, bytes,
117 page, fsdata);
118 WARN_ON(status <= 0); /* can't return less than zero! */
119 pos += bytes;
120 count -= bytes;
121 status = 0;
122 } while (count);
123
124 return (-status);
125}
126
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000127STATIC int
128xfs_file_fsync(
129 struct file *file,
Josef Bacik02c24a82011-07-16 20:44:56 -0400130 loff_t start,
131 loff_t end,
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000132 int datasync)
133{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200134 struct inode *inode = file->f_mapping->host;
135 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000136 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000137 struct xfs_trans *tp;
138 int error = 0;
139 int log_flushed = 0;
140
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000141 trace_xfs_file_fsync(ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000142
Josef Bacik02c24a82011-07-16 20:44:56 -0400143 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
144 if (error)
145 return error;
146
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000147 if (XFS_FORCED_SHUTDOWN(mp))
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000148 return -XFS_ERROR(EIO);
149
150 xfs_iflags_clear(ip, XFS_ITRUNCATED);
151
Christoph Hellwig37bc5742010-04-20 17:00:59 +1000152 xfs_ioend_wait(ip);
153
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000154 if (mp->m_flags & XFS_MOUNT_BARRIER) {
155 /*
156 * If we have an RT and/or log subvolume we need to make sure
157 * to flush the write cache the device used for file data
158 * first. This is to ensure newly written file data make
159 * it to disk before logging the new inode size in case of
160 * an extending write.
161 */
162 if (XFS_IS_REALTIME_INODE(ip))
163 xfs_blkdev_issue_flush(mp->m_rtdev_targp);
164 else if (mp->m_logdev_targp != mp->m_ddev_targp)
165 xfs_blkdev_issue_flush(mp->m_ddev_targp);
166 }
167
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000168 /*
169 * We always need to make sure that the required inode state is safe on
170 * disk. The inode might be clean but we still might need to force the
171 * log because of committed transactions that haven't hit the disk yet.
172 * Likewise, there could be unflushed non-transactional changes to the
173 * inode core that have to go to disk and this requires us to issue
174 * a synchronous transaction to capture these changes correctly.
175 *
176 * This code relies on the assumption that if the i_update_core field
177 * of the inode is clear and the inode is unpinned then it is clean
178 * and no action is required.
179 */
180 xfs_ilock(ip, XFS_ILOCK_SHARED);
181
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000182 /*
183 * First check if the VFS inode is marked dirty. All the dirtying
184 * of non-transactional updates no goes through mark_inode_dirty*,
185 * which allows us to distinguish beteeen pure timestamp updates
186 * and i_size updates which need to be caught for fdatasync.
187 * After that also theck for the dirty state in the XFS inode, which
188 * might gets cleared when the inode gets written out via the AIL
189 * or xfs_iflush_cluster.
190 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200191 if (((inode->i_state & I_DIRTY_DATASYNC) ||
192 ((inode->i_state & I_DIRTY_SYNC) && !datasync)) &&
Christoph Hellwig66d834e2010-02-15 09:44:49 +0000193 ip->i_update_core) {
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000194 /*
195 * Kick off a transaction to log the inode core to get the
196 * updates. The sync transaction will also force the log.
197 */
198 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000199 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000200 error = xfs_trans_reserve(tp, 0,
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000201 XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000202 if (error) {
203 xfs_trans_cancel(tp, 0);
204 return -error;
205 }
206 xfs_ilock(ip, XFS_ILOCK_EXCL);
207
208 /*
209 * Note - it's possible that we might have pushed ourselves out
210 * of the way during trans_reserve which would flush the inode.
211 * But there's no guarantee that the inode buffer has actually
212 * gone out yet (it's delwri). Plus the buffer could be pinned
213 * anyway if it's part of an inode in another recent
214 * transaction. So we play it safe and fire off the
215 * transaction anyway.
216 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000217 xfs_trans_ijoin(tp, ip);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000218 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
219 xfs_trans_set_sync(tp);
220 error = _xfs_trans_commit(tp, 0, &log_flushed);
221
222 xfs_iunlock(ip, XFS_ILOCK_EXCL);
223 } else {
224 /*
225 * Timestamps/size haven't changed since last inode flush or
226 * inode transaction commit. That means either nothing got
227 * written or a transaction committed which caught the updates.
228 * If the latter happened and the transaction hasn't hit the
229 * disk yet, the inode will be still be pinned. If it is,
230 * force the log.
231 */
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000232 if (xfs_ipincount(ip)) {
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000233 error = _xfs_log_force_lsn(mp,
Christoph Hellwig024910c2010-02-17 19:34:57 +0000234 ip->i_itemp->ili_last_lsn,
235 XFS_LOG_SYNC, &log_flushed);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000236 }
Christoph Hellwig024910c2010-02-17 19:34:57 +0000237 xfs_iunlock(ip, XFS_ILOCK_SHARED);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000238 }
239
Christoph Hellwiga27a2632011-06-16 12:02:23 +0000240 /*
241 * If we only have a single device, and the log force about was
242 * a no-op we might have to flush the data device cache here.
243 * This can only happen for fdatasync/O_DSYNC if we were overwriting
244 * an already allocated file and thus do not have any metadata to
245 * commit.
246 */
247 if ((mp->m_flags & XFS_MOUNT_BARRIER) &&
248 mp->m_logdev_targp == mp->m_ddev_targp &&
249 !XFS_IS_REALTIME_INODE(ip) &&
250 !log_flushed)
251 xfs_blkdev_issue_flush(mp->m_ddev_targp);
Christoph Hellwigfd3200b2010-02-15 09:44:48 +0000252
253 return -error;
254}
255
Christoph Hellwig00258e32010-02-15 09:44:47 +0000256STATIC ssize_t
257xfs_file_aio_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000258 struct kiocb *iocb,
259 const struct iovec *iovp,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000260 unsigned long nr_segs,
261 loff_t pos)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000262{
263 struct file *file = iocb->ki_filp;
264 struct inode *inode = file->f_mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000265 struct xfs_inode *ip = XFS_I(inode);
266 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000267 size_t size = 0;
268 ssize_t ret = 0;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000269 int ioflags = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000270 xfs_fsize_t n;
271 unsigned long seg;
272
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000273 XFS_STATS_INC(xs_read_calls);
274
Christoph Hellwig00258e32010-02-15 09:44:47 +0000275 BUG_ON(iocb->ki_pos != pos);
276
277 if (unlikely(file->f_flags & O_DIRECT))
278 ioflags |= IO_ISDIRECT;
279 if (file->f_mode & FMODE_NOCMTIME)
280 ioflags |= IO_INVIS;
281
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000282 /* START copy & waste from filemap.c */
Christoph Hellwig00258e32010-02-15 09:44:47 +0000283 for (seg = 0; seg < nr_segs; seg++) {
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000284 const struct iovec *iv = &iovp[seg];
285
286 /*
287 * If any segment has a negative length, or the cumulative
288 * length ever wraps negative then return -EINVAL.
289 */
290 size += iv->iov_len;
291 if (unlikely((ssize_t)(size|iv->iov_len) < 0))
292 return XFS_ERROR(-EINVAL);
293 }
294 /* END copy & waste from filemap.c */
295
296 if (unlikely(ioflags & IO_ISDIRECT)) {
297 xfs_buftarg_t *target =
298 XFS_IS_REALTIME_INODE(ip) ?
299 mp->m_rtdev_targp : mp->m_ddev_targp;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000300 if ((iocb->ki_pos & target->bt_smask) ||
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000301 (size & target->bt_smask)) {
Christoph Hellwig00258e32010-02-15 09:44:47 +0000302 if (iocb->ki_pos == ip->i_size)
303 return 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000304 return -XFS_ERROR(EINVAL);
305 }
306 }
307
Christoph Hellwig00258e32010-02-15 09:44:47 +0000308 n = XFS_MAXIOFFSET(mp) - iocb->ki_pos;
309 if (n <= 0 || size == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000310 return 0;
311
312 if (n < size)
313 size = n;
314
315 if (XFS_FORCED_SHUTDOWN(mp))
316 return -EIO;
317
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000318 if (unlikely(ioflags & IO_ISDIRECT)) {
Dave Chinner487f84f2011-01-12 11:37:10 +1100319 xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
320
Christoph Hellwig00258e32010-02-15 09:44:47 +0000321 if (inode->i_mapping->nrpages) {
322 ret = -xfs_flushinval_pages(ip,
323 (iocb->ki_pos & PAGE_CACHE_MASK),
324 -1, FI_REMAPF_LOCKED);
Dave Chinner487f84f2011-01-12 11:37:10 +1100325 if (ret) {
326 xfs_rw_iunlock(ip, XFS_IOLOCK_EXCL);
327 return ret;
328 }
Christoph Hellwig00258e32010-02-15 09:44:47 +0000329 }
Dave Chinner487f84f2011-01-12 11:37:10 +1100330 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
331 } else
332 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000333
Christoph Hellwig00258e32010-02-15 09:44:47 +0000334 trace_xfs_file_read(ip, size, iocb->ki_pos, ioflags);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000335
Christoph Hellwig00258e32010-02-15 09:44:47 +0000336 ret = generic_file_aio_read(iocb, iovp, nr_segs, iocb->ki_pos);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000337 if (ret > 0)
338 XFS_STATS_ADD(xs_read_bytes, ret);
339
Dave Chinner487f84f2011-01-12 11:37:10 +1100340 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000341 return ret;
342}
343
Christoph Hellwig00258e32010-02-15 09:44:47 +0000344STATIC ssize_t
345xfs_file_splice_read(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000346 struct file *infilp,
347 loff_t *ppos,
348 struct pipe_inode_info *pipe,
349 size_t count,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000350 unsigned int flags)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000351{
Christoph Hellwig00258e32010-02-15 09:44:47 +0000352 struct xfs_inode *ip = XFS_I(infilp->f_mapping->host);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000353 int ioflags = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000354 ssize_t ret;
355
356 XFS_STATS_INC(xs_read_calls);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000357
358 if (infilp->f_mode & FMODE_NOCMTIME)
359 ioflags |= IO_INVIS;
360
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000361 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
362 return -EIO;
363
Dave Chinner487f84f2011-01-12 11:37:10 +1100364 xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000365
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000366 trace_xfs_file_splice_read(ip, count, *ppos, ioflags);
367
368 ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
369 if (ret > 0)
370 XFS_STATS_ADD(xs_read_bytes, ret);
371
Dave Chinner487f84f2011-01-12 11:37:10 +1100372 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000373 return ret;
374}
375
Dave Chinneredafb6d2011-01-11 10:14:06 +1100376STATIC void
377xfs_aio_write_isize_update(
378 struct inode *inode,
379 loff_t *ppos,
380 ssize_t bytes_written)
381{
382 struct xfs_inode *ip = XFS_I(inode);
383 xfs_fsize_t isize = i_size_read(inode);
384
385 if (bytes_written > 0)
386 XFS_STATS_ADD(xs_write_bytes, bytes_written);
387
388 if (unlikely(bytes_written < 0 && bytes_written != -EFAULT &&
389 *ppos > isize))
390 *ppos = isize;
391
392 if (*ppos > ip->i_size) {
Dave Chinner487f84f2011-01-12 11:37:10 +1100393 xfs_rw_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinneredafb6d2011-01-11 10:14:06 +1100394 if (*ppos > ip->i_size)
395 ip->i_size = *ppos;
Dave Chinner487f84f2011-01-12 11:37:10 +1100396 xfs_rw_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinneredafb6d2011-01-11 10:14:06 +1100397 }
398}
399
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100400/*
401 * If this was a direct or synchronous I/O that failed (such as ENOSPC) then
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300402 * part of the I/O may have been written to disk before the error occurred. In
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100403 * this case the on-disk file size may have been adjusted beyond the in-memory
404 * file size and now needs to be truncated back.
405 */
406STATIC void
407xfs_aio_write_newsize_update(
408 struct xfs_inode *ip)
409{
410 if (ip->i_new_size) {
Dave Chinner487f84f2011-01-12 11:37:10 +1100411 xfs_rw_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100412 ip->i_new_size = 0;
413 if (ip->i_d.di_size > ip->i_size)
414 ip->i_d.di_size = ip->i_size;
Dave Chinner487f84f2011-01-12 11:37:10 +1100415 xfs_rw_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100416 }
417}
418
Dave Chinner487f84f2011-01-12 11:37:10 +1100419/*
420 * xfs_file_splice_write() does not use xfs_rw_ilock() because
421 * generic_file_splice_write() takes the i_mutex itself. This, in theory,
422 * couuld cause lock inversions between the aio_write path and the splice path
423 * if someone is doing concurrent splice(2) based writes and write(2) based
424 * writes to the same inode. The only real way to fix this is to re-implement
425 * the generic code here with correct locking orders.
426 */
Christoph Hellwig00258e32010-02-15 09:44:47 +0000427STATIC ssize_t
428xfs_file_splice_write(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000429 struct pipe_inode_info *pipe,
430 struct file *outfilp,
431 loff_t *ppos,
432 size_t count,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000433 unsigned int flags)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000434{
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000435 struct inode *inode = outfilp->f_mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000436 struct xfs_inode *ip = XFS_I(inode);
Dave Chinneredafb6d2011-01-11 10:14:06 +1100437 xfs_fsize_t new_size;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000438 int ioflags = 0;
439 ssize_t ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000440
441 XFS_STATS_INC(xs_write_calls);
Christoph Hellwig00258e32010-02-15 09:44:47 +0000442
443 if (outfilp->f_mode & FMODE_NOCMTIME)
444 ioflags |= IO_INVIS;
445
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000446 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
447 return -EIO;
448
449 xfs_ilock(ip, XFS_IOLOCK_EXCL);
450
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000451 new_size = *ppos + count;
452
453 xfs_ilock(ip, XFS_ILOCK_EXCL);
454 if (new_size > ip->i_size)
455 ip->i_new_size = new_size;
456 xfs_iunlock(ip, XFS_ILOCK_EXCL);
457
458 trace_xfs_file_splice_write(ip, count, *ppos, ioflags);
459
460 ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000461
Dave Chinneredafb6d2011-01-11 10:14:06 +1100462 xfs_aio_write_isize_update(inode, ppos, ret);
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100463 xfs_aio_write_newsize_update(ip);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000464 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
465 return ret;
466}
467
468/*
469 * This routine is called to handle zeroing any space in the last
470 * block of the file that is beyond the EOF. We do this since the
471 * size is being increased without writing anything to that block
472 * and we don't want anyone to read the garbage on the disk.
473 */
474STATIC int /* error (positive) */
475xfs_zero_last_block(
476 xfs_inode_t *ip,
477 xfs_fsize_t offset,
478 xfs_fsize_t isize)
479{
480 xfs_fileoff_t last_fsb;
481 xfs_mount_t *mp = ip->i_mount;
482 int nimaps;
483 int zero_offset;
484 int zero_len;
485 int error = 0;
486 xfs_bmbt_irec_t imap;
487
488 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
489
490 zero_offset = XFS_B_FSB_OFFSET(mp, isize);
491 if (zero_offset == 0) {
492 /*
493 * There are no extra bytes in the last block on disk to
494 * zero, so return.
495 */
496 return 0;
497 }
498
499 last_fsb = XFS_B_TO_FSBT(mp, isize);
500 nimaps = 1;
501 error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000502 &nimaps, NULL);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000503 if (error) {
504 return error;
505 }
506 ASSERT(nimaps > 0);
507 /*
508 * If the block underlying isize is just a hole, then there
509 * is nothing to zero.
510 */
511 if (imap.br_startblock == HOLESTARTBLOCK) {
512 return 0;
513 }
514 /*
515 * Zero the part of the last block beyond the EOF, and write it
516 * out sync. We need to drop the ilock while we do this so we
517 * don't deadlock when the buffer cache calls back to us.
518 */
519 xfs_iunlock(ip, XFS_ILOCK_EXCL);
520
521 zero_len = mp->m_sb.sb_blocksize - zero_offset;
522 if (isize + zero_len > offset)
523 zero_len = offset - isize;
524 error = xfs_iozero(ip, isize, zero_len);
525
526 xfs_ilock(ip, XFS_ILOCK_EXCL);
527 ASSERT(error >= 0);
528 return error;
529}
530
531/*
532 * Zero any on disk space between the current EOF and the new,
533 * larger EOF. This handles the normal case of zeroing the remainder
534 * of the last block in the file and the unusual case of zeroing blocks
535 * out beyond the size of the file. This second case only happens
536 * with fixed size extents and when the system crashes before the inode
537 * size was updated but after blocks were allocated. If fill is set,
538 * then any holes in the range are filled and zeroed. If not, the holes
539 * are left alone as holes.
540 */
541
542int /* error (positive) */
543xfs_zero_eof(
544 xfs_inode_t *ip,
545 xfs_off_t offset, /* starting I/O offset */
546 xfs_fsize_t isize) /* current inode size */
547{
548 xfs_mount_t *mp = ip->i_mount;
549 xfs_fileoff_t start_zero_fsb;
550 xfs_fileoff_t end_zero_fsb;
551 xfs_fileoff_t zero_count_fsb;
552 xfs_fileoff_t last_fsb;
553 xfs_fileoff_t zero_off;
554 xfs_fsize_t zero_len;
555 int nimaps;
556 int error = 0;
557 xfs_bmbt_irec_t imap;
558
559 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
560 ASSERT(offset > isize);
561
562 /*
563 * First handle zeroing the block on which isize resides.
564 * We only zero a part of that block so it is handled specially.
565 */
566 error = xfs_zero_last_block(ip, offset, isize);
567 if (error) {
568 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
569 return error;
570 }
571
572 /*
573 * Calculate the range between the new size and the old
574 * where blocks needing to be zeroed may exist. To get the
575 * block where the last byte in the file currently resides,
576 * we need to subtract one from the size and truncate back
577 * to a block boundary. We subtract 1 in case the size is
578 * exactly on a block boundary.
579 */
580 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
581 start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
582 end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
583 ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
584 if (last_fsb == end_zero_fsb) {
585 /*
586 * The size was only incremented on its last block.
587 * We took care of that above, so just return.
588 */
589 return 0;
590 }
591
592 ASSERT(start_zero_fsb <= end_zero_fsb);
593 while (start_zero_fsb <= end_zero_fsb) {
594 nimaps = 1;
595 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
596 error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000597 0, NULL, 0, &imap, &nimaps, NULL);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000598 if (error) {
599 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
600 return error;
601 }
602 ASSERT(nimaps > 0);
603
604 if (imap.br_state == XFS_EXT_UNWRITTEN ||
605 imap.br_startblock == HOLESTARTBLOCK) {
606 /*
607 * This loop handles initializing pages that were
608 * partially initialized by the code below this
609 * loop. It basically zeroes the part of the page
610 * that sits on a hole and sets the page as P_HOLE
611 * and calls remapf if it is a mapped file.
612 */
613 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
614 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
615 continue;
616 }
617
618 /*
619 * There are blocks we need to zero.
620 * Drop the inode lock while we're doing the I/O.
621 * We'll still have the iolock to protect us.
622 */
623 xfs_iunlock(ip, XFS_ILOCK_EXCL);
624
625 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
626 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
627
628 if ((zero_off + zero_len) > offset)
629 zero_len = offset - zero_off;
630
631 error = xfs_iozero(ip, zero_off, zero_len);
632 if (error) {
633 goto out_lock;
634 }
635
636 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
637 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
638
639 xfs_ilock(ip, XFS_ILOCK_EXCL);
640 }
641
642 return 0;
643
644out_lock:
645 xfs_ilock(ip, XFS_ILOCK_EXCL);
646 ASSERT(error >= 0);
647 return error;
648}
649
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100650/*
Dave Chinner4d8d1582011-01-11 10:23:42 +1100651 * Common pre-write limit and setup checks.
652 *
653 * Returns with iolock held according to @iolock.
654 */
655STATIC ssize_t
656xfs_file_aio_write_checks(
657 struct file *file,
658 loff_t *pos,
659 size_t *count,
660 int *iolock)
661{
662 struct inode *inode = file->f_mapping->host;
663 struct xfs_inode *ip = XFS_I(inode);
664 xfs_fsize_t new_size;
665 int error = 0;
666
667 error = generic_write_checks(file, pos, count, S_ISBLK(inode->i_mode));
668 if (error) {
669 xfs_rw_iunlock(ip, XFS_ILOCK_EXCL | *iolock);
670 *iolock = 0;
671 return error;
672 }
673
674 new_size = *pos + *count;
675 if (new_size > ip->i_size)
676 ip->i_new_size = new_size;
677
678 if (likely(!(file->f_mode & FMODE_NOCMTIME)))
679 file_update_time(file);
680
681 /*
682 * If the offset is beyond the size of the file, we need to zero any
683 * blocks that fall between the existing EOF and the start of this
684 * write.
685 */
686 if (*pos > ip->i_size)
687 error = -xfs_zero_eof(ip, *pos, ip->i_size);
688
689 xfs_rw_iunlock(ip, XFS_ILOCK_EXCL);
690 if (error)
691 return error;
692
693 /*
694 * If we're writing the file then make sure to clear the setuid and
695 * setgid bits if the process is not being run by root. This keeps
696 * people from modifying setuid and setgid binaries.
697 */
698 return file_remove_suid(file);
699
700}
701
702/*
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100703 * xfs_file_dio_aio_write - handle direct IO writes
704 *
705 * Lock the inode appropriately to prepare for and issue a direct IO write.
Dave Chinnereda77982011-01-11 10:22:40 +1100706 * By separating it from the buffered write path we remove all the tricky to
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100707 * follow locking changes and looping.
708 *
Dave Chinnereda77982011-01-11 10:22:40 +1100709 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
710 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
711 * pages are flushed out.
712 *
713 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
714 * allowing them to be done in parallel with reads and other direct IO writes.
715 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
716 * needs to do sub-block zeroing and that requires serialisation against other
717 * direct IOs to the same block. In this case we need to serialise the
718 * submission of the unaligned IOs so that we don't get racing block zeroing in
719 * the dio layer. To avoid the problem with aio, we also need to wait for
720 * outstanding IOs to complete so that unwritten extent conversion is completed
721 * before we try to map the overlapping block. This is currently implemented by
722 * hitting it with a big hammer (i.e. xfs_ioend_wait()).
723 *
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100724 * Returns with locks held indicated by @iolock and errors indicated by
725 * negative return values.
726 */
727STATIC ssize_t
728xfs_file_dio_aio_write(
729 struct kiocb *iocb,
730 const struct iovec *iovp,
731 unsigned long nr_segs,
732 loff_t pos,
733 size_t ocount,
734 int *iolock)
735{
736 struct file *file = iocb->ki_filp;
737 struct address_space *mapping = file->f_mapping;
738 struct inode *inode = mapping->host;
739 struct xfs_inode *ip = XFS_I(inode);
740 struct xfs_mount *mp = ip->i_mount;
741 ssize_t ret = 0;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100742 size_t count = ocount;
Dave Chinnereda77982011-01-11 10:22:40 +1100743 int unaligned_io = 0;
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100744 struct xfs_buftarg *target = XFS_IS_REALTIME_INODE(ip) ?
745 mp->m_rtdev_targp : mp->m_ddev_targp;
746
747 *iolock = 0;
748 if ((pos & target->bt_smask) || (count & target->bt_smask))
749 return -XFS_ERROR(EINVAL);
750
Dave Chinnereda77982011-01-11 10:22:40 +1100751 if ((pos & mp->m_blockmask) || ((pos + count) & mp->m_blockmask))
752 unaligned_io = 1;
753
754 if (unaligned_io || mapping->nrpages || pos > ip->i_size)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100755 *iolock = XFS_IOLOCK_EXCL;
756 else
757 *iolock = XFS_IOLOCK_SHARED;
758 xfs_rw_ilock(ip, XFS_ILOCK_EXCL | *iolock);
759
Dave Chinner4d8d1582011-01-11 10:23:42 +1100760 ret = xfs_file_aio_write_checks(file, &pos, &count, iolock);
761 if (ret)
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100762 return ret;
763
764 if (mapping->nrpages) {
765 WARN_ON(*iolock != XFS_IOLOCK_EXCL);
766 ret = -xfs_flushinval_pages(ip, (pos & PAGE_CACHE_MASK), -1,
767 FI_REMAPF_LOCKED);
768 if (ret)
769 return ret;
770 }
771
Dave Chinnereda77982011-01-11 10:22:40 +1100772 /*
773 * If we are doing unaligned IO, wait for all other IO to drain,
774 * otherwise demote the lock if we had to flush cached pages
775 */
776 if (unaligned_io)
777 xfs_ioend_wait(ip);
778 else if (*iolock == XFS_IOLOCK_EXCL) {
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100779 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
780 *iolock = XFS_IOLOCK_SHARED;
781 }
782
783 trace_xfs_file_direct_write(ip, count, iocb->ki_pos, 0);
784 ret = generic_file_direct_write(iocb, iovp,
785 &nr_segs, pos, &iocb->ki_pos, count, ocount);
786
787 /* No fallback to buffered IO on errors for XFS. */
788 ASSERT(ret < 0 || ret == count);
789 return ret;
790}
791
Christoph Hellwig00258e32010-02-15 09:44:47 +0000792STATIC ssize_t
Dave Chinner637bbc72011-01-11 10:17:30 +1100793xfs_file_buffered_aio_write(
794 struct kiocb *iocb,
795 const struct iovec *iovp,
796 unsigned long nr_segs,
797 loff_t pos,
798 size_t ocount,
799 int *iolock)
800{
801 struct file *file = iocb->ki_filp;
802 struct address_space *mapping = file->f_mapping;
803 struct inode *inode = mapping->host;
804 struct xfs_inode *ip = XFS_I(inode);
805 ssize_t ret;
806 int enospc = 0;
Dave Chinner637bbc72011-01-11 10:17:30 +1100807 size_t count = ocount;
808
809 *iolock = XFS_IOLOCK_EXCL;
810 xfs_rw_ilock(ip, XFS_ILOCK_EXCL | *iolock);
811
Dave Chinner4d8d1582011-01-11 10:23:42 +1100812 ret = xfs_file_aio_write_checks(file, &pos, &count, iolock);
813 if (ret)
Dave Chinner637bbc72011-01-11 10:17:30 +1100814 return ret;
815
816 /* We can write back this queue in page reclaim */
817 current->backing_dev_info = mapping->backing_dev_info;
818
819write_retry:
820 trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, 0);
821 ret = generic_file_buffered_write(iocb, iovp, nr_segs,
822 pos, &iocb->ki_pos, count, ret);
823 /*
824 * if we just got an ENOSPC, flush the inode now we aren't holding any
825 * page locks and retry *once*
826 */
827 if (ret == -ENOSPC && !enospc) {
828 ret = -xfs_flush_pages(ip, 0, -1, 0, FI_NONE);
829 if (ret)
830 return ret;
831 enospc = 1;
832 goto write_retry;
833 }
834 current->backing_dev_info = NULL;
835 return ret;
836}
837
838STATIC ssize_t
Christoph Hellwig00258e32010-02-15 09:44:47 +0000839xfs_file_aio_write(
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000840 struct kiocb *iocb,
841 const struct iovec *iovp,
Christoph Hellwig00258e32010-02-15 09:44:47 +0000842 unsigned long nr_segs,
843 loff_t pos)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000844{
845 struct file *file = iocb->ki_filp;
846 struct address_space *mapping = file->f_mapping;
847 struct inode *inode = mapping->host;
Christoph Hellwig00258e32010-02-15 09:44:47 +0000848 struct xfs_inode *ip = XFS_I(inode);
Dave Chinner637bbc72011-01-11 10:17:30 +1100849 ssize_t ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000850 int iolock;
Dave Chinner637bbc72011-01-11 10:17:30 +1100851 size_t ocount = 0;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000852
853 XFS_STATS_INC(xs_write_calls);
854
Christoph Hellwig00258e32010-02-15 09:44:47 +0000855 BUG_ON(iocb->ki_pos != pos);
856
Dave Chinnera363f0c2011-01-11 10:13:53 +1100857 ret = generic_segment_checks(iovp, &nr_segs, &ocount, VERIFY_READ);
858 if (ret)
859 return ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000860
Dave Chinner637bbc72011-01-11 10:17:30 +1100861 if (ocount == 0)
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000862 return 0;
863
Dave Chinner637bbc72011-01-11 10:17:30 +1100864 xfs_wait_for_freeze(ip->i_mount, SB_FREEZE_WRITE);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000865
Dave Chinner637bbc72011-01-11 10:17:30 +1100866 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000867 return -EIO;
868
Dave Chinner637bbc72011-01-11 10:17:30 +1100869 if (unlikely(file->f_flags & O_DIRECT))
Dave Chinnerf0d26e82011-01-11 10:15:36 +1100870 ret = xfs_file_dio_aio_write(iocb, iovp, nr_segs, pos,
871 ocount, &iolock);
Dave Chinner637bbc72011-01-11 10:17:30 +1100872 else
873 ret = xfs_file_buffered_aio_write(iocb, iovp, nr_segs, pos,
874 ocount, &iolock);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000875
Dave Chinneredafb6d2011-01-11 10:14:06 +1100876 xfs_aio_write_isize_update(inode, &iocb->ki_pos, ret);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000877
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000878 if (ret <= 0)
Dave Chinner637bbc72011-01-11 10:17:30 +1100879 goto out_unlock;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000880
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000881 /* Handle various SYNC-type writes */
882 if ((file->f_flags & O_DSYNC) || IS_SYNC(inode)) {
883 loff_t end = pos + ret - 1;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000884
Dave Chinner487f84f2011-01-12 11:37:10 +1100885 xfs_rw_iunlock(ip, iolock);
Josef Bacik02c24a82011-07-16 20:44:56 -0400886 ret = -xfs_file_fsync(file, pos, end,
887 (file->f_flags & __O_SYNC) ? 0 : 1);
Dave Chinner487f84f2011-01-12 11:37:10 +1100888 xfs_rw_ilock(ip, iolock);
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000889 }
890
Dave Chinner637bbc72011-01-11 10:17:30 +1100891out_unlock:
Dave Chinner4c5cfd12011-01-11 10:14:16 +1100892 xfs_aio_write_newsize_update(ip);
Dave Chinner487f84f2011-01-12 11:37:10 +1100893 xfs_rw_iunlock(ip, iolock);
Dave Chinnera363f0c2011-01-11 10:13:53 +1100894 return ret;
Christoph Hellwigdda35b82010-02-15 09:44:46 +0000895}
896
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100897STATIC long
898xfs_file_fallocate(
899 struct file *file,
900 int mode,
901 loff_t offset,
902 loff_t len)
903{
904 struct inode *inode = file->f_path.dentry->d_inode;
905 long error;
906 loff_t new_size = 0;
907 xfs_flock64_t bf;
908 xfs_inode_t *ip = XFS_I(inode);
909 int cmd = XFS_IOC_RESVSP;
Dave Chinner82878892011-03-26 09:13:08 +1100910 int attr_flags = XFS_ATTR_NOLOCK;
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100911
912 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
913 return -EOPNOTSUPP;
914
915 bf.l_whence = 0;
916 bf.l_start = offset;
917 bf.l_len = len;
918
919 xfs_ilock(ip, XFS_IOLOCK_EXCL);
920
921 if (mode & FALLOC_FL_PUNCH_HOLE)
922 cmd = XFS_IOC_UNRESVSP;
923
924 /* check the new inode size is valid before allocating */
925 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
926 offset + len > i_size_read(inode)) {
927 new_size = offset + len;
928 error = inode_newsize_ok(inode, new_size);
929 if (error)
930 goto out_unlock;
931 }
932
Dave Chinner82878892011-03-26 09:13:08 +1100933 if (file->f_flags & O_DSYNC)
934 attr_flags |= XFS_ATTR_SYNC;
935
936 error = -xfs_change_file_space(ip, cmd, &bf, 0, attr_flags);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100937 if (error)
938 goto out_unlock;
939
940 /* Change file size if needed */
941 if (new_size) {
942 struct iattr iattr;
943
944 iattr.ia_valid = ATTR_SIZE;
945 iattr.ia_size = new_size;
946 error = -xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
947 }
948
949out_unlock:
950 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
951 return error;
952}
953
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100956xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100958 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100960 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100962 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
963 return -EIO;
964 return 0;
965}
966
967STATIC int
968xfs_dir_open(
969 struct inode *inode,
970 struct file *file)
971{
972 struct xfs_inode *ip = XFS_I(inode);
973 int mode;
974 int error;
975
976 error = xfs_file_open(inode, file);
977 if (error)
978 return error;
979
980 /*
981 * If there are any blocks, read-ahead block 0 as we're almost
982 * certain to have the next operation be a read there.
983 */
984 mode = xfs_ilock_map_shared(ip);
985 if (ip->i_d.di_nextents > 0)
986 xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
987 xfs_iunlock(ip, mode);
988 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100992xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 struct inode *inode,
994 struct file *filp)
995{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000996 return -xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001000xfs_file_readdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 struct file *filp,
1002 void *dirent,
1003 filldir_t filldir)
1004{
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001005 struct inode *inode = filp->f_path.dentry->d_inode;
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001006 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001007 int error;
1008 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001010 /*
1011 * The Linux API doesn't pass down the total size of the buffer
1012 * we read into down to the filesystem. With the filldir concept
1013 * it's not needed for correct information, but the XFS dir2 leaf
1014 * code wants an estimate of the buffer size to calculate it's
1015 * readahead window and size the buffers used for mapping to
1016 * physical blocks.
1017 *
1018 * Try to give it an estimate that's good enough, maybe at some
1019 * point we can change the ->readdir prototype to include the
Eric Sandeena9cc7992010-02-03 17:50:13 +00001020 * buffer size. For now we use the current glibc buffer size.
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001021 */
Eric Sandeena9cc7992010-02-03 17:50:13 +00001022 bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Christoph Hellwig739bfb22007-08-29 10:58:01 +10001024 error = xfs_readdir(ip, dirent, bufsize,
Christoph Hellwig051e7cd2007-08-28 13:58:24 +10001025 (xfs_off_t *)&filp->f_pos, filldir);
1026 if (error)
1027 return -error;
1028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +11001032xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct file *filp,
1034 struct vm_area_struct *vma)
1035{
Nathan Scott3562fd42006-03-14 14:00:35 +11001036 vma->vm_ops = &xfs_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001037 vma->vm_flags |= VM_CAN_NONLINEAR;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +10001038
Nathan Scottfbc14622006-06-09 14:52:13 +10001039 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041}
1042
David Chinner4f57dbc2007-07-19 16:28:17 +10001043/*
1044 * mmap()d file has taken write protection fault and is being made
1045 * writable. We can set the page state up correctly for a writable
1046 * page, which means we can do correct delalloc accounting (ENOSPC
1047 * checking!) and unwritten extent mapping.
1048 */
1049STATIC int
1050xfs_vm_page_mkwrite(
1051 struct vm_area_struct *vma,
Nick Pigginc2ec1752009-03-31 15:23:21 -07001052 struct vm_fault *vmf)
David Chinner4f57dbc2007-07-19 16:28:17 +10001053{
Nick Pigginc2ec1752009-03-31 15:23:21 -07001054 return block_page_mkwrite(vma, vmf, xfs_get_blocks);
David Chinner4f57dbc2007-07-19 16:28:17 +10001055}
1056
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001057const struct file_operations xfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 .llseek = generic_file_llseek,
1059 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +10001060 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +11001061 .aio_read = xfs_file_aio_read,
1062 .aio_write = xfs_file_aio_write,
Nathan Scott1b895842006-03-31 13:08:59 +10001063 .splice_read = xfs_file_splice_read,
1064 .splice_write = xfs_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +11001065 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001067 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001069 .mmap = xfs_file_mmap,
1070 .open = xfs_file_open,
1071 .release = xfs_file_release,
1072 .fsync = xfs_file_fsync,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001073 .fallocate = xfs_file_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074};
1075
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001076const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +11001077 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 .read = generic_read_dir,
Nathan Scott3562fd42006-03-14 14:00:35 +11001079 .readdir = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -04001080 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +11001081 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001082#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +11001083 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -07001084#endif
Nathan Scott3562fd42006-03-14 14:00:35 +11001085 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086};
1087
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001088static const struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07001089 .fault = filemap_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +10001090 .page_mkwrite = xfs_vm_page_mkwrite,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +10001091};