2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
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"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_error.h"
39 #include "xfs_ioctl32.h"
41 #include <linux/dcache.h>
42 #include <linux/smp_lock.h>
44 static struct vm_operations_struct xfs_file_vm_ops;
45 #ifdef CONFIG_XFS_DMAPI
46 static struct vm_operations_struct xfs_dmapi_file_vm_ops;
52 const struct iovec *iov,
53 unsigned long nr_segs,
57 struct file *file = iocb->ki_filp;
58 bhv_vnode_t *vp = vn_from_inode(file->f_path.dentry->d_inode);
60 BUG_ON(iocb->ki_pos != pos);
61 if (unlikely(file->f_flags & O_DIRECT))
62 ioflags |= IO_ISDIRECT;
63 return bhv_vop_read(vp, iocb, iov, nr_segs, &iocb->ki_pos,
70 const struct iovec *iov,
71 unsigned long nr_segs,
74 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO, pos);
78 xfs_file_aio_read_invis(
80 const struct iovec *iov,
81 unsigned long nr_segs,
84 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
90 const struct iovec *iov,
91 unsigned long nr_segs,
95 struct file *file = iocb->ki_filp;
96 struct inode *inode = file->f_mapping->host;
97 bhv_vnode_t *vp = vn_from_inode(inode);
99 BUG_ON(iocb->ki_pos != pos);
100 if (unlikely(file->f_flags & O_DIRECT))
101 ioflags |= IO_ISDIRECT;
102 return bhv_vop_write(vp, iocb, iov, nr_segs, &iocb->ki_pos,
109 const struct iovec *iov,
110 unsigned long nr_segs,
113 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO, pos);
117 xfs_file_aio_write_invis(
119 const struct iovec *iov,
120 unsigned long nr_segs,
123 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
127 xfs_file_splice_read(
130 struct pipe_inode_info *pipe,
134 return bhv_vop_splice_read(vn_from_inode(infilp->f_path.dentry->d_inode),
135 infilp, ppos, pipe, len, flags, 0, NULL);
139 xfs_file_splice_read_invis(
142 struct pipe_inode_info *pipe,
146 return bhv_vop_splice_read(vn_from_inode(infilp->f_path.dentry->d_inode),
147 infilp, ppos, pipe, len, flags, IO_INVIS,
152 xfs_file_splice_write(
153 struct pipe_inode_info *pipe,
154 struct file *outfilp,
159 return bhv_vop_splice_write(vn_from_inode(outfilp->f_path.dentry->d_inode),
160 pipe, outfilp, ppos, len, flags, 0, NULL);
164 xfs_file_splice_write_invis(
165 struct pipe_inode_info *pipe,
166 struct file *outfilp,
171 return bhv_vop_splice_write(vn_from_inode(outfilp->f_path.dentry->d_inode),
172 pipe, outfilp, ppos, len, flags, IO_INVIS,
181 if (!(filp->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
183 return -bhv_vop_open(vn_from_inode(inode), NULL);
191 return -bhv_vop_close(vn_from_inode(filp->f_path.dentry->d_inode), 0,
192 file_count(filp) > 1 ? L_FALSE : L_TRUE, NULL);
200 bhv_vnode_t *vp = vn_from_inode(inode);
203 return -bhv_vop_release(vp);
210 struct dentry *dentry,
213 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
214 int flags = FSYNC_WAIT;
220 return -bhv_vop_fsync(vp, flags, NULL, (xfs_off_t)0, (xfs_off_t)-1);
223 #ifdef CONFIG_XFS_DMAPI
226 struct vm_area_struct *area,
227 unsigned long address,
230 struct inode *inode = area->vm_file->f_path.dentry->d_inode;
231 bhv_vnode_t *vp = vn_from_inode(inode);
233 ASSERT_ALWAYS(vp->v_vfsp->vfs_flag & VFS_DMI);
234 if (XFS_SEND_MMAP(XFS_VFSTOM(vp->v_vfsp), area, 0))
236 return filemap_nopage(area, address, type);
238 #endif /* CONFIG_XFS_DMAPI */
247 bhv_vnode_t *vp = vn_from_inode(filp->f_path.dentry->d_inode);
252 int namelen, size = 0;
253 size_t rlen = PAGE_CACHE_SIZE;
254 xfs_off_t start_offset, curr_offset;
255 xfs_dirent_t *dbp = NULL;
257 /* Try fairly hard to get memory */
259 if ((read_buf = kmalloc(rlen, GFP_KERNEL)))
262 } while (rlen >= 1024);
264 if (read_buf == NULL)
268 uio.uio_segflg = UIO_SYSSPACE;
269 curr_offset = filp->f_pos;
270 if (filp->f_pos != 0x7fffffff)
271 uio.uio_offset = filp->f_pos;
273 uio.uio_offset = 0xffffffff;
276 uio.uio_resid = iov.iov_len = rlen;
277 iov.iov_base = read_buf;
280 start_offset = uio.uio_offset;
282 error = bhv_vop_readdir(vp, &uio, NULL, &eof);
283 if ((uio.uio_offset == start_offset) || error) {
288 size = rlen - uio.uio_resid;
289 dbp = (xfs_dirent_t *)read_buf;
291 namelen = strlen(dbp->d_name);
293 if (filldir(dirent, dbp->d_name, namelen,
294 (loff_t) curr_offset & 0x7fffffff,
299 size -= dbp->d_reclen;
300 curr_offset = (loff_t)dbp->d_off /* & 0x7fffffff */;
301 dbp = (xfs_dirent_t *)((char *)dbp + dbp->d_reclen);
307 filp->f_pos = uio.uio_offset & 0x7fffffff;
309 filp->f_pos = curr_offset;
319 struct vm_area_struct *vma)
321 vma->vm_ops = &xfs_file_vm_ops;
323 #ifdef CONFIG_XFS_DMAPI
324 if (vn_from_inode(filp->f_path.dentry->d_inode)->v_vfsp->vfs_flag & VFS_DMI)
325 vma->vm_ops = &xfs_dmapi_file_vm_ops;
326 #endif /* CONFIG_XFS_DMAPI */
339 struct inode *inode = filp->f_path.dentry->d_inode;
340 bhv_vnode_t *vp = vn_from_inode(inode);
342 error = bhv_vop_ioctl(vp, inode, filp, 0, cmd, (void __user *)p);
345 /* NOTE: some of the ioctl's return positive #'s as a
346 * byte count indicating success, such as
347 * readlink_by_handle. So we don't "sign flip"
348 * like most other routines. This means true
349 * errors need to be returned as a negative value.
355 xfs_file_ioctl_invis(
361 struct inode *inode = filp->f_path.dentry->d_inode;
362 bhv_vnode_t *vp = vn_from_inode(inode);
364 error = bhv_vop_ioctl(vp, inode, filp, IO_INVIS, cmd, (void __user *)p);
367 /* NOTE: some of the ioctl's return positive #'s as a
368 * byte count indicating success, such as
369 * readlink_by_handle. So we don't "sign flip"
370 * like most other routines. This means true
371 * errors need to be returned as a negative value.
376 #ifdef CONFIG_XFS_DMAPI
377 #ifdef HAVE_VMOP_MPROTECT
380 struct vm_area_struct *vma,
381 unsigned int newflags)
383 bhv_vnode_t *vp = vn_from_inode(vma->vm_file->f_path.dentry->d_inode);
386 if (vp->v_vfsp->vfs_flag & VFS_DMI) {
387 if ((vma->vm_flags & VM_MAYSHARE) &&
388 (newflags & VM_WRITE) && !(vma->vm_flags & VM_WRITE)) {
389 xfs_mount_t *mp = XFS_VFSTOM(vp->v_vfsp);
391 error = XFS_SEND_MMAP(mp, vma, VM_WRITE);
396 #endif /* HAVE_VMOP_MPROTECT */
397 #endif /* CONFIG_XFS_DMAPI */
399 #ifdef HAVE_FOP_OPEN_EXEC
400 /* If the user is attempting to execute a file that is offline then
401 * we have to trigger a DMAPI READ event before the file is marked as busy
402 * otherwise the invisible I/O will not be able to write to the file to bring
409 bhv_vnode_t *vp = vn_from_inode(inode);
411 if (unlikely(vp->v_vfsp->vfs_flag & VFS_DMI)) {
412 xfs_mount_t *mp = XFS_VFSTOM(vp->v_vfsp);
413 xfs_inode_t *ip = xfs_vtoi(vp);
417 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_READ))
418 return -XFS_SEND_DATA(mp, DM_EVENT_READ, vp,
423 #endif /* HAVE_FOP_OPEN_EXEC */
425 const struct file_operations xfs_file_operations = {
426 .llseek = generic_file_llseek,
427 .read = do_sync_read,
428 .write = do_sync_write,
429 .aio_read = xfs_file_aio_read,
430 .aio_write = xfs_file_aio_write,
431 .splice_read = xfs_file_splice_read,
432 .splice_write = xfs_file_splice_write,
433 .unlocked_ioctl = xfs_file_ioctl,
435 .compat_ioctl = xfs_file_compat_ioctl,
437 .mmap = xfs_file_mmap,
438 .open = xfs_file_open,
439 .flush = xfs_file_close,
440 .release = xfs_file_release,
441 .fsync = xfs_file_fsync,
442 #ifdef HAVE_FOP_OPEN_EXEC
443 .open_exec = xfs_file_open_exec,
447 const struct file_operations xfs_invis_file_operations = {
448 .llseek = generic_file_llseek,
449 .read = do_sync_read,
450 .write = do_sync_write,
451 .aio_read = xfs_file_aio_read_invis,
452 .aio_write = xfs_file_aio_write_invis,
453 .splice_read = xfs_file_splice_read_invis,
454 .splice_write = xfs_file_splice_write_invis,
455 .unlocked_ioctl = xfs_file_ioctl_invis,
457 .compat_ioctl = xfs_file_compat_invis_ioctl,
459 .mmap = xfs_file_mmap,
460 .open = xfs_file_open,
461 .flush = xfs_file_close,
462 .release = xfs_file_release,
463 .fsync = xfs_file_fsync,
467 const struct file_operations xfs_dir_file_operations = {
468 .read = generic_read_dir,
469 .readdir = xfs_file_readdir,
470 .unlocked_ioctl = xfs_file_ioctl,
472 .compat_ioctl = xfs_file_compat_ioctl,
474 .fsync = xfs_file_fsync,
477 static struct vm_operations_struct xfs_file_vm_ops = {
478 .nopage = filemap_nopage,
479 .populate = filemap_populate,
482 #ifdef CONFIG_XFS_DMAPI
483 static struct vm_operations_struct xfs_dmapi_file_vm_ops = {
484 .nopage = xfs_vm_nopage,
485 .populate = filemap_populate,
486 #ifdef HAVE_VMOP_MPROTECT
487 .mprotect = xfs_vm_mprotect,
490 #endif /* CONFIG_XFS_DMAPI */