blob: 3fee790f138b0acc2358244e0385bd81919ae554 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_dir2.h"
25#include "xfs_trans.h"
26#include "xfs_dmapi.h"
27#include "xfs_mount.h"
28#include "xfs_bmap_btree.h"
29#include "xfs_alloc_btree.h"
30#include "xfs_ialloc_btree.h"
31#include "xfs_alloc.h"
32#include "xfs_btree.h"
33#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
35#include "xfs_dinode.h"
36#include "xfs_inode.h"
37#include "xfs_error.h"
38#include "xfs_rw.h"
39#include "xfs_ioctl32.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100040#include "xfs_vnodeops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/dcache.h>
43#include <linux/smp_lock.h>
44
Nathan Scott3562fd42006-03-14 14:00:35 +110045static struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
David Chinner7989cb82007-02-10 18:34:56 +110047STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110048__xfs_file_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070050 const struct iovec *iov,
51 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 int ioflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 loff_t pos)
54{
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 BUG_ON(iocb->ki_pos != pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (unlikely(file->f_flags & O_DIRECT))
59 ioflags |= IO_ISDIRECT;
Christoph Hellwig739bfb22007-08-29 10:58:01 +100060 return xfs_read(XFS_I(file->f_path.dentry->d_inode), iocb, iov,
61 nr_segs, &iocb->ki_pos, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110065xfs_file_aio_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070067 const struct iovec *iov,
68 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 loff_t pos)
70{
Badari Pulavarty027445c2006-09-30 23:28:46 -070071 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110075xfs_file_aio_read_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070077 const struct iovec *iov,
78 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 loff_t pos)
80{
Badari Pulavarty027445c2006-09-30 23:28:46 -070081 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
David Chinner7989cb82007-02-10 18:34:56 +110084STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110085__xfs_file_write(
Badari Pulavarty027445c2006-09-30 23:28:46 -070086 struct kiocb *iocb,
87 const struct iovec *iov,
88 unsigned long nr_segs,
89 int ioflags,
90 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 BUG_ON(iocb->ki_pos != pos);
95 if (unlikely(file->f_flags & O_DIRECT))
96 ioflags |= IO_ISDIRECT;
Christoph Hellwig739bfb22007-08-29 10:58:01 +100097 return xfs_write(XFS_I(file->f_mapping->host), iocb, iov, nr_segs,
98 &iocb->ki_pos, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100102xfs_file_aio_write(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700104 const struct iovec *iov,
105 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 loff_t pos)
107{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700108 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100112xfs_file_aio_write_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700114 const struct iovec *iov,
115 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 loff_t pos)
117{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700118 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121STATIC ssize_t
Nathan Scott1b895842006-03-31 13:08:59 +1000122xfs_file_splice_read(
123 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200124 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200125 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000126 size_t len,
127 unsigned int flags)
128{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000129 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
130 infilp, ppos, pipe, len, flags, 0);
Nathan Scott1b895842006-03-31 13:08:59 +1000131}
132
133STATIC ssize_t
134xfs_file_splice_read_invis(
135 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200136 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200137 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000138 size_t len,
139 unsigned int flags)
140{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000141 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
142 infilp, ppos, pipe, len, flags, IO_INVIS);
Nathan Scott1b895842006-03-31 13:08:59 +1000143}
144
145STATIC ssize_t
146xfs_file_splice_write(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200147 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000148 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200149 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000150 size_t len,
151 unsigned int flags)
152{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000153 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
154 pipe, outfilp, ppos, len, flags, 0);
Nathan Scott1b895842006-03-31 13:08:59 +1000155}
156
157STATIC ssize_t
158xfs_file_splice_write_invis(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200159 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000160 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200161 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000162 size_t len,
163 unsigned int flags)
164{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000165 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
166 pipe, outfilp, ppos, len, flags, IO_INVIS);
Nathan Scott1b895842006-03-31 13:08:59 +1000167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100170xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct inode *inode,
172 struct file *filp)
173{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
175 return -EFBIG;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000176 return -xfs_open(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100180xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct inode *inode,
182 struct file *filp)
183{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000184 return -xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
David Chinner978b7232008-05-19 16:29:46 +1000187/*
188 * We ignore the datasync flag here because a datasync is effectively
189 * identical to an fsync. That is, datasync implies that we need to write
190 * only the metadata needed to be able to access the data that is written
191 * if we crash after the call completes. Hence if we are writing beyond
192 * EOF we have to log the inode size change as well, which makes it a
193 * full fsync. If we don't write beyond EOF, the inode core will be
194 * clean in memory and so we don't need to log the inode, just like
195 * fsync.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100198xfs_file_fsync(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct file *filp,
200 struct dentry *dentry,
201 int datasync)
202{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000203 xfs_iflags_clear(XFS_I(dentry->d_inode), XFS_ITRUNCATED);
David Chinner978b7232008-05-19 16:29:46 +1000204 return -xfs_fsync(XFS_I(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100208xfs_file_readdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct file *filp,
210 void *dirent,
211 filldir_t filldir)
212{
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000213 struct inode *inode = filp->f_path.dentry->d_inode;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000214 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000215 int error;
216 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000218 /*
219 * The Linux API doesn't pass down the total size of the buffer
220 * we read into down to the filesystem. With the filldir concept
221 * it's not needed for correct information, but the XFS dir2 leaf
222 * code wants an estimate of the buffer size to calculate it's
223 * readahead window and size the buffers used for mapping to
224 * physical blocks.
225 *
226 * Try to give it an estimate that's good enough, maybe at some
227 * point we can change the ->readdir prototype to include the
228 * buffer size.
229 */
230 bufsize = (size_t)min_t(loff_t, PAGE_SIZE, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000232 error = xfs_readdir(ip, dirent, bufsize,
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000233 (xfs_off_t *)&filp->f_pos, filldir);
234 if (error)
235 return -error;
236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100240xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct file *filp,
242 struct vm_area_struct *vma)
243{
Nathan Scott3562fd42006-03-14 14:00:35 +1100244 vma->vm_ops = &xfs_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -0700245 vma->vm_flags |= VM_CAN_NONLINEAR;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000246
Nathan Scottfbc14622006-06-09 14:52:13 +1000247 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100252xfs_file_ioctl(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct file *filp,
254 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000255 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800258 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000260 error = xfs_ioctl(XFS_I(inode), filp, 0, cmd, (void __user *)p);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000261 xfs_iflags_set(XFS_I(inode), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* NOTE: some of the ioctl's return positive #'s as a
264 * byte count indicating success, such as
265 * readlink_by_handle. So we don't "sign flip"
266 * like most other routines. This means true
267 * errors need to be returned as a negative value.
268 */
269 return error;
270}
271
272STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100273xfs_file_ioctl_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct file *filp,
275 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000276 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Nathan Scott1b895842006-03-31 13:08:59 +1000278 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800279 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000281 error = xfs_ioctl(XFS_I(inode), filp, IO_INVIS, cmd, (void __user *)p);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000282 xfs_iflags_set(XFS_I(inode), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* NOTE: some of the ioctl's return positive #'s as a
285 * byte count indicating success, such as
286 * readlink_by_handle. So we don't "sign flip"
287 * like most other routines. This means true
288 * errors need to be returned as a negative value.
289 */
290 return error;
291}
292
David Chinner4f57dbc2007-07-19 16:28:17 +1000293/*
294 * mmap()d file has taken write protection fault and is being made
295 * writable. We can set the page state up correctly for a writable
296 * page, which means we can do correct delalloc accounting (ENOSPC
297 * checking!) and unwritten extent mapping.
298 */
299STATIC int
300xfs_vm_page_mkwrite(
301 struct vm_area_struct *vma,
302 struct page *page)
303{
304 return block_page_mkwrite(vma, page, xfs_get_blocks);
305}
306
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800307const struct file_operations xfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 .llseek = generic_file_llseek,
309 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000310 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100311 .aio_read = xfs_file_aio_read,
312 .aio_write = xfs_file_aio_write,
Nathan Scott1b895842006-03-31 13:08:59 +1000313 .splice_read = xfs_file_splice_read,
314 .splice_write = xfs_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100315 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100317 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100319 .mmap = xfs_file_mmap,
320 .open = xfs_file_open,
321 .release = xfs_file_release,
322 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#ifdef HAVE_FOP_OPEN_EXEC
Nathan Scott3562fd42006-03-14 14:00:35 +1100324 .open_exec = xfs_file_open_exec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#endif
326};
327
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800328const struct file_operations xfs_invis_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 .llseek = generic_file_llseek,
330 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000331 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100332 .aio_read = xfs_file_aio_read_invis,
333 .aio_write = xfs_file_aio_write_invis,
Nathan Scott1b895842006-03-31 13:08:59 +1000334 .splice_read = xfs_file_splice_read_invis,
335 .splice_write = xfs_file_splice_write_invis,
Nathan Scott3562fd42006-03-14 14:00:35 +1100336 .unlocked_ioctl = xfs_file_ioctl_invis,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100338 .compat_ioctl = xfs_file_compat_invis_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100340 .mmap = xfs_file_mmap,
341 .open = xfs_file_open,
342 .release = xfs_file_release,
343 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
346
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800347const struct file_operations xfs_dir_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 .read = generic_read_dir,
Nathan Scott3562fd42006-03-14 14:00:35 +1100349 .readdir = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -0400350 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +1100351 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700352#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100353 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700354#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100355 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
Nathan Scott3562fd42006-03-14 14:00:35 +1100358static struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700359 .fault = filemap_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +1000360 .page_mkwrite = xfs_vm_page_mkwrite,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000361};