blob: f4e25544157422812b4a1e576d3539e86b75b9bd [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"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100039#include "xfs_vnodeops.h"
Christoph Hellwigf999a5b2008-11-28 14:23:32 +110040#include "xfs_da_btree.h"
Christoph Hellwigddcd8562008-12-03 07:55:34 -050041#include "xfs_ioctl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/dcache.h>
44#include <linux/smp_lock.h>
45
Nathan Scott3562fd42006-03-14 14:00:35 +110046static struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110049xfs_file_aio_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070051 const struct iovec *iov,
52 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 loff_t pos)
54{
Christoph Hellwig4d4be482008-12-09 04:47:33 -050055 struct file *file = iocb->ki_filp;
56 int ioflags = IO_ISAIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 BUG_ON(iocb->ki_pos != pos);
59 if (unlikely(file->f_flags & O_DIRECT))
60 ioflags |= IO_ISDIRECT;
Christoph Hellwig4d4be482008-12-09 04:47:33 -050061 if (file->f_mode & FMODE_NOCMTIME)
62 ioflags |= IO_INVIS;
63 return xfs_read(XFS_I(file->f_path.dentry->d_inode), iocb, iov,
64 nr_segs, &iocb->ki_pos, ioflags);
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_write(
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{
Christoph Hellwig4d4be482008-12-09 04:47:33 -050074 struct file *file = iocb->ki_filp;
75 int ioflags = IO_ISAIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Christoph Hellwig4d4be482008-12-09 04:47:33 -050077 BUG_ON(iocb->ki_pos != pos);
78 if (unlikely(file->f_flags & O_DIRECT))
79 ioflags |= IO_ISDIRECT;
80 if (file->f_mode & FMODE_NOCMTIME)
81 ioflags |= IO_INVIS;
82 return xfs_write(XFS_I(file->f_mapping->host), iocb, iov, nr_segs,
83 &iocb->ki_pos, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086STATIC ssize_t
Nathan Scott1b895842006-03-31 13:08:59 +100087xfs_file_splice_read(
88 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +020089 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +020090 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +100091 size_t len,
92 unsigned int flags)
93{
Christoph Hellwig4d4be482008-12-09 04:47:33 -050094 int ioflags = 0;
Nathan Scott1b895842006-03-31 13:08:59 +100095
Christoph Hellwig4d4be482008-12-09 04:47:33 -050096 if (infilp->f_mode & FMODE_NOCMTIME)
97 ioflags |= IO_INVIS;
98
Christoph Hellwig739bfb22007-08-29 10:58:01 +100099 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500100 infilp, ppos, pipe, len, flags, ioflags);
Nathan Scott1b895842006-03-31 13:08:59 +1000101}
102
103STATIC ssize_t
104xfs_file_splice_write(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200105 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000106 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200107 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000108 size_t len,
109 unsigned int flags)
110{
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500111 int ioflags = 0;
Nathan Scott1b895842006-03-31 13:08:59 +1000112
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500113 if (outfilp->f_mode & FMODE_NOCMTIME)
114 ioflags |= IO_INVIS;
115
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000116 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500117 pipe, outfilp, ppos, len, flags, ioflags);
Nathan Scott1b895842006-03-31 13:08:59 +1000118}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100121xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100123 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100125 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100127 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
128 return -EIO;
129 return 0;
130}
131
132STATIC int
133xfs_dir_open(
134 struct inode *inode,
135 struct file *file)
136{
137 struct xfs_inode *ip = XFS_I(inode);
138 int mode;
139 int error;
140
141 error = xfs_file_open(inode, file);
142 if (error)
143 return error;
144
145 /*
146 * If there are any blocks, read-ahead block 0 as we're almost
147 * certain to have the next operation be a read there.
148 */
149 mode = xfs_ilock_map_shared(ip);
150 if (ip->i_d.di_nextents > 0)
151 xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
152 xfs_iunlock(ip, mode);
153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100157xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct inode *inode,
159 struct file *filp)
160{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000161 return -xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
David Chinner978b7232008-05-19 16:29:46 +1000164/*
165 * We ignore the datasync flag here because a datasync is effectively
166 * identical to an fsync. That is, datasync implies that we need to write
167 * only the metadata needed to be able to access the data that is written
168 * if we crash after the call completes. Hence if we are writing beyond
169 * EOF we have to log the inode size change as well, which makes it a
170 * full fsync. If we don't write beyond EOF, the inode core will be
171 * clean in memory and so we don't need to log the inode, just like
172 * fsync.
173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100175xfs_file_fsync(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct file *filp,
177 struct dentry *dentry,
178 int datasync)
179{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000180 xfs_iflags_clear(XFS_I(dentry->d_inode), XFS_ITRUNCATED);
David Chinner978b7232008-05-19 16:29:46 +1000181 return -xfs_fsync(XFS_I(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100185xfs_file_readdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct file *filp,
187 void *dirent,
188 filldir_t filldir)
189{
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000190 struct inode *inode = filp->f_path.dentry->d_inode;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000191 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000192 int error;
193 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000195 /*
196 * The Linux API doesn't pass down the total size of the buffer
197 * we read into down to the filesystem. With the filldir concept
198 * it's not needed for correct information, but the XFS dir2 leaf
199 * code wants an estimate of the buffer size to calculate it's
200 * readahead window and size the buffers used for mapping to
201 * physical blocks.
202 *
203 * Try to give it an estimate that's good enough, maybe at some
204 * point we can change the ->readdir prototype to include the
205 * buffer size.
206 */
Lachlan McIlroyd4158672008-12-22 17:50:56 +1100207 bufsize = (size_t)min_t(loff_t, PAGE_SIZE, ip->i_d.di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000209 error = xfs_readdir(ip, dirent, bufsize,
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000210 (xfs_off_t *)&filp->f_pos, filldir);
211 if (error)
212 return -error;
213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100217xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct file *filp,
219 struct vm_area_struct *vma)
220{
Nathan Scott3562fd42006-03-14 14:00:35 +1100221 vma->vm_ops = &xfs_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -0700222 vma->vm_flags |= VM_CAN_NONLINEAR;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000223
Nathan Scottfbc14622006-06-09 14:52:13 +1000224 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 0;
226}
227
David Chinner4f57dbc2007-07-19 16:28:17 +1000228/*
229 * mmap()d file has taken write protection fault and is being made
230 * writable. We can set the page state up correctly for a writable
231 * page, which means we can do correct delalloc accounting (ENOSPC
232 * checking!) and unwritten extent mapping.
233 */
234STATIC int
235xfs_vm_page_mkwrite(
236 struct vm_area_struct *vma,
Nick Pigginc2ec1752009-03-31 15:23:21 -0700237 struct vm_fault *vmf)
David Chinner4f57dbc2007-07-19 16:28:17 +1000238{
Nick Pigginc2ec1752009-03-31 15:23:21 -0700239 return block_page_mkwrite(vma, vmf, xfs_get_blocks);
David Chinner4f57dbc2007-07-19 16:28:17 +1000240}
241
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800242const struct file_operations xfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .llseek = generic_file_llseek,
244 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000245 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100246 .aio_read = xfs_file_aio_read,
247 .aio_write = xfs_file_aio_write,
Nathan Scott1b895842006-03-31 13:08:59 +1000248 .splice_read = xfs_file_splice_read,
249 .splice_write = xfs_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100250 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100252 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100254 .mmap = xfs_file_mmap,
255 .open = xfs_file_open,
256 .release = xfs_file_release,
257 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#ifdef HAVE_FOP_OPEN_EXEC
Nathan Scott3562fd42006-03-14 14:00:35 +1100259 .open_exec = xfs_file_open_exec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif
261};
262
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800263const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100264 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .read = generic_read_dir,
Nathan Scott3562fd42006-03-14 14:00:35 +1100266 .readdir = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -0400267 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +1100268 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700269#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100270 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700271#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100272 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273};
274
Nathan Scott3562fd42006-03-14 14:00:35 +1100275static struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700276 .fault = filemap_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +1000277 .page_mkwrite = xfs_vm_page_mkwrite,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000278};