blob: 3678f6912d046f4fbea8c3c4a7bfdfe49da71b70 [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"
40
41#include <linux/dcache.h>
42#include <linux/smp_lock.h>
43
Nathan Scott3562fd42006-03-14 14:00:35 +110044static struct vm_operations_struct xfs_file_vm_ops;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +100045#ifdef CONFIG_XFS_DMAPI
Nathan Scott3562fd42006-03-14 14:00:35 +110046static struct vm_operations_struct xfs_dmapi_file_vm_ops;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +100047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
David Chinner7989cb82007-02-10 18:34:56 +110049STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110050__xfs_file_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070052 const struct iovec *iov,
53 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int ioflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 loff_t pos)
56{
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct file *file = iocb->ki_filp;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -080058 bhv_vnode_t *vp = vn_from_inode(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 BUG_ON(iocb->ki_pos != pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (unlikely(file->f_flags & O_DIRECT))
62 ioflags |= IO_ISDIRECT;
Badari Pulavarty027445c2006-09-30 23:28:46 -070063 return bhv_vop_read(vp, iocb, iov, nr_segs, &iocb->ki_pos,
64 ioflags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110068xfs_file_aio_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070070 const struct iovec *iov,
71 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 loff_t pos)
73{
Badari Pulavarty027445c2006-09-30 23:28:46 -070074 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110078xfs_file_aio_read_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070080 const struct iovec *iov,
81 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 loff_t pos)
83{
Badari Pulavarty027445c2006-09-30 23:28:46 -070084 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
David Chinner7989cb82007-02-10 18:34:56 +110087STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110088__xfs_file_write(
Badari Pulavarty027445c2006-09-30 23:28:46 -070089 struct kiocb *iocb,
90 const struct iovec *iov,
91 unsigned long nr_segs,
92 int ioflags,
93 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct file *file = iocb->ki_filp;
96 struct inode *inode = file->f_mapping->host;
Nathan Scott67fcaa72006-06-09 17:00:52 +100097 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 BUG_ON(iocb->ki_pos != pos);
100 if (unlikely(file->f_flags & O_DIRECT))
101 ioflags |= IO_ISDIRECT;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700102 return bhv_vop_write(vp, iocb, iov, nr_segs, &iocb->ki_pos,
103 ioflags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100107xfs_file_aio_write(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109 const struct iovec *iov,
110 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 loff_t pos)
112{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700113 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100117xfs_file_aio_write_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700119 const struct iovec *iov,
120 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 loff_t pos)
122{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700123 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126STATIC ssize_t
Nathan Scott1b895842006-03-31 13:08:59 +1000127xfs_file_splice_read(
128 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200129 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200130 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000131 size_t len,
132 unsigned int flags)
133{
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800134 return bhv_vop_splice_read(vn_from_inode(infilp->f_path.dentry->d_inode),
Nathan Scott67fcaa72006-06-09 17:00:52 +1000135 infilp, ppos, pipe, len, flags, 0, NULL);
Nathan Scott1b895842006-03-31 13:08:59 +1000136}
137
138STATIC ssize_t
139xfs_file_splice_read_invis(
140 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200141 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200142 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000143 size_t len,
144 unsigned int flags)
145{
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800146 return bhv_vop_splice_read(vn_from_inode(infilp->f_path.dentry->d_inode),
Nathan Scott67fcaa72006-06-09 17:00:52 +1000147 infilp, ppos, pipe, len, flags, IO_INVIS,
148 NULL);
Nathan Scott1b895842006-03-31 13:08:59 +1000149}
150
151STATIC ssize_t
152xfs_file_splice_write(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200153 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000154 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200155 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000156 size_t len,
157 unsigned int flags)
158{
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800159 return bhv_vop_splice_write(vn_from_inode(outfilp->f_path.dentry->d_inode),
Nathan Scott67fcaa72006-06-09 17:00:52 +1000160 pipe, outfilp, ppos, len, flags, 0, NULL);
Nathan Scott1b895842006-03-31 13:08:59 +1000161}
162
163STATIC ssize_t
164xfs_file_splice_write_invis(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200165 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000166 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200167 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000168 size_t len,
169 unsigned int flags)
170{
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800171 return bhv_vop_splice_write(vn_from_inode(outfilp->f_path.dentry->d_inode),
Nathan Scott67fcaa72006-06-09 17:00:52 +1000172 pipe, outfilp, ppos, len, flags, IO_INVIS,
173 NULL);
Nathan Scott1b895842006-03-31 13:08:59 +1000174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100177xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct inode *inode,
179 struct file *filp)
180{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
182 return -EFBIG;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000183 return -bhv_vop_open(vn_from_inode(inode), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100187xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct inode *inode,
189 struct file *filp)
190{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000191 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 if (vp)
Nathan Scott67fcaa72006-06-09 17:00:52 +1000194 return -bhv_vop_release(vp);
195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100199xfs_file_fsync(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct file *filp,
201 struct dentry *dentry,
202 int datasync)
203{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000204 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int flags = FSYNC_WAIT;
206
207 if (datasync)
208 flags |= FSYNC_DATA;
Nathan Scott7d4fb402006-06-09 15:27:16 +1000209 if (VN_TRUNC(vp))
210 VUNTRUNCATE(vp);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000211 return -bhv_vop_fsync(vp, flags, NULL, (xfs_off_t)0, (xfs_off_t)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000214#ifdef CONFIG_XFS_DMAPI
Nick Piggind0217ac2007-07-19 01:47:03 -0700215STATIC int
Nick Piggin54cb8822007-07-19 01:46:59 -0700216xfs_vm_fault(
217 struct vm_area_struct *vma,
Nick Piggind0217ac2007-07-19 01:47:03 -0700218 struct vm_fault *vmf)
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000219{
Nick Piggin54cb8822007-07-19 01:46:59 -0700220 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000221 bhv_vnode_t *vp = vn_from_inode(inode);
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000222
223 ASSERT_ALWAYS(vp->v_vfsp->vfs_flag & VFS_DMI);
Nick Piggind0217ac2007-07-19 01:47:03 -0700224 if (XFS_SEND_MMAP(XFS_VFSTOM(vp->v_vfsp), vma, 0))
225 return VM_FAULT_SIGBUS;
226 return filemap_fault(vma, vmf);
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000227}
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000228#endif /* CONFIG_XFS_DMAPI */
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100231xfs_file_readdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct file *filp,
233 void *dirent,
234 filldir_t filldir)
235{
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000236 struct inode *inode = filp->f_path.dentry->d_inode;
237 bhv_vnode_t *vp = vn_from_inode(inode);
238 int error;
239 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000241 /*
242 * The Linux API doesn't pass down the total size of the buffer
243 * we read into down to the filesystem. With the filldir concept
244 * it's not needed for correct information, but the XFS dir2 leaf
245 * code wants an estimate of the buffer size to calculate it's
246 * readahead window and size the buffers used for mapping to
247 * physical blocks.
248 *
249 * Try to give it an estimate that's good enough, maybe at some
250 * point we can change the ->readdir prototype to include the
251 * buffer size.
252 */
253 bufsize = (size_t)min_t(loff_t, PAGE_SIZE, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000255 error = bhv_vop_readdir(vp, dirent, bufsize,
256 (xfs_off_t *)&filp->f_pos, filldir);
257 if (error)
258 return -error;
259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100263xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct file *filp,
265 struct vm_area_struct *vma)
266{
Nathan Scott3562fd42006-03-14 14:00:35 +1100267 vma->vm_ops = &xfs_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -0700268 vma->vm_flags |= VM_CAN_NONLINEAR;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000269
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000270#ifdef CONFIG_XFS_DMAPI
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800271 if (vn_from_inode(filp->f_path.dentry->d_inode)->v_vfsp->vfs_flag & VFS_DMI)
Nathan Scott3562fd42006-03-14 14:00:35 +1100272 vma->vm_ops = &xfs_dmapi_file_vm_ops;
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000273#endif /* CONFIG_XFS_DMAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Nathan Scottfbc14622006-06-09 14:52:13 +1000275 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return 0;
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100280xfs_file_ioctl(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct file *filp,
282 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000283 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800286 struct inode *inode = filp->f_path.dentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000287 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Nathan Scott67fcaa72006-06-09 17:00:52 +1000289 error = bhv_vop_ioctl(vp, inode, filp, 0, cmd, (void __user *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 VMODIFY(vp);
291
292 /* NOTE: some of the ioctl's return positive #'s as a
293 * byte count indicating success, such as
294 * readlink_by_handle. So we don't "sign flip"
295 * like most other routines. This means true
296 * errors need to be returned as a negative value.
297 */
298 return error;
299}
300
301STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100302xfs_file_ioctl_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 struct file *filp,
304 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000305 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Nathan Scott1b895842006-03-31 13:08:59 +1000307 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800308 struct inode *inode = filp->f_path.dentry->d_inode;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000309 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Nathan Scott67fcaa72006-06-09 17:00:52 +1000311 error = bhv_vop_ioctl(vp, inode, filp, IO_INVIS, cmd, (void __user *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 VMODIFY(vp);
313
314 /* NOTE: some of the ioctl's return positive #'s as a
315 * byte count indicating success, such as
316 * readlink_by_handle. So we don't "sign flip"
317 * like most other routines. This means true
318 * errors need to be returned as a negative value.
319 */
320 return error;
321}
322
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000323#ifdef CONFIG_XFS_DMAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324#ifdef HAVE_VMOP_MPROTECT
325STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100326xfs_vm_mprotect(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct vm_area_struct *vma,
328 unsigned int newflags)
329{
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800330 bhv_vnode_t *vp = vn_from_inode(vma->vm_file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int error = 0;
332
333 if (vp->v_vfsp->vfs_flag & VFS_DMI) {
334 if ((vma->vm_flags & VM_MAYSHARE) &&
335 (newflags & VM_WRITE) && !(vma->vm_flags & VM_WRITE)) {
336 xfs_mount_t *mp = XFS_VFSTOM(vp->v_vfsp);
337
338 error = XFS_SEND_MMAP(mp, vma, VM_WRITE);
339 }
340 }
341 return error;
342}
343#endif /* HAVE_VMOP_MPROTECT */
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000344#endif /* CONFIG_XFS_DMAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346#ifdef HAVE_FOP_OPEN_EXEC
347/* If the user is attempting to execute a file that is offline then
348 * we have to trigger a DMAPI READ event before the file is marked as busy
349 * otherwise the invisible I/O will not be able to write to the file to bring
350 * it back online.
351 */
352STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100353xfs_file_open_exec(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 struct inode *inode)
355{
Nathan Scott67fcaa72006-06-09 17:00:52 +1000356 bhv_vnode_t *vp = vn_from_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Nathan Scott1d47bec2006-06-19 08:39:16 +1000358 if (unlikely(vp->v_vfsp->vfs_flag & VFS_DMI)) {
359 xfs_mount_t *mp = XFS_VFSTOM(vp->v_vfsp);
360 xfs_inode_t *ip = xfs_vtoi(vp);
361
362 if (!ip)
363 return -EINVAL;
Christoph Hellwigeb9df392007-08-16 18:42:07 +1000364 if (DM_EVENT_ENABLED(ip, DM_EVENT_READ))
Nathan Scott1d47bec2006-06-19 08:39:16 +1000365 return -XFS_SEND_DATA(mp, DM_EVENT_READ, vp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 0, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Nathan Scott1d47bec2006-06-19 08:39:16 +1000368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370#endif /* HAVE_FOP_OPEN_EXEC */
371
David Chinner4f57dbc2007-07-19 16:28:17 +1000372/*
373 * mmap()d file has taken write protection fault and is being made
374 * writable. We can set the page state up correctly for a writable
375 * page, which means we can do correct delalloc accounting (ENOSPC
376 * checking!) and unwritten extent mapping.
377 */
378STATIC int
379xfs_vm_page_mkwrite(
380 struct vm_area_struct *vma,
381 struct page *page)
382{
383 return block_page_mkwrite(vma, page, xfs_get_blocks);
384}
385
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800386const struct file_operations xfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 .llseek = generic_file_llseek,
388 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000389 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100390 .aio_read = xfs_file_aio_read,
391 .aio_write = xfs_file_aio_write,
Nathan Scott1b895842006-03-31 13:08:59 +1000392 .splice_read = xfs_file_splice_read,
393 .splice_write = xfs_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100394 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100396 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100398 .mmap = xfs_file_mmap,
399 .open = xfs_file_open,
400 .release = xfs_file_release,
401 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#ifdef HAVE_FOP_OPEN_EXEC
Nathan Scott3562fd42006-03-14 14:00:35 +1100403 .open_exec = xfs_file_open_exec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#endif
405};
406
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800407const struct file_operations xfs_invis_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 .llseek = generic_file_llseek,
409 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000410 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100411 .aio_read = xfs_file_aio_read_invis,
412 .aio_write = xfs_file_aio_write_invis,
Nathan Scott1b895842006-03-31 13:08:59 +1000413 .splice_read = xfs_file_splice_read_invis,
414 .splice_write = xfs_file_splice_write_invis,
Nathan Scott3562fd42006-03-14 14:00:35 +1100415 .unlocked_ioctl = xfs_file_ioctl_invis,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100417 .compat_ioctl = xfs_file_compat_invis_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100419 .mmap = xfs_file_mmap,
420 .open = xfs_file_open,
421 .release = xfs_file_release,
422 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423};
424
425
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800426const struct file_operations xfs_dir_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 .read = generic_read_dir,
Nathan Scott3562fd42006-03-14 14:00:35 +1100428 .readdir = xfs_file_readdir,
429 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700430#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100431 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700432#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100433 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
Nathan Scott3562fd42006-03-14 14:00:35 +1100436static struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700437 .fault = filemap_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +1000438 .page_mkwrite = xfs_vm_page_mkwrite,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000439};
440
441#ifdef CONFIG_XFS_DMAPI
Nathan Scott3562fd42006-03-14 14:00:35 +1100442static struct vm_operations_struct xfs_dmapi_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700443 .fault = xfs_vm_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +1000444 .page_mkwrite = xfs_vm_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445#ifdef HAVE_VMOP_MPROTECT
Nathan Scott3562fd42006-03-14 14:00:35 +1100446 .mprotect = xfs_vm_mprotect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#endif
448};
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000449#endif /* CONFIG_XFS_DMAPI */