| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/fs/nfs/file.c | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 1992  Rick Sladkey | 
|  | 5 | * | 
|  | 6 | *  Changes Copyright (C) 1994 by Florian La Roche | 
|  | 7 | *   - Do not copy data too often around in the kernel. | 
|  | 8 | *   - In nfs_file_read the return value of kmalloc wasn't checked. | 
|  | 9 | *   - Put in a better version of read look-ahead buffering. Original idea | 
|  | 10 | *     and implementation by Wai S Kok elekokws@ee.nus.sg. | 
|  | 11 | * | 
|  | 12 | *  Expire cache on write to a file by Wai S Kok (Oct 1994). | 
|  | 13 | * | 
|  | 14 | *  Total rewrite of read side for new NFS buffer cache.. Linus. | 
|  | 15 | * | 
|  | 16 | *  nfs regular file handling functions | 
|  | 17 | */ | 
|  | 18 |  | 
|  | 19 | #include <linux/time.h> | 
|  | 20 | #include <linux/kernel.h> | 
|  | 21 | #include <linux/errno.h> | 
|  | 22 | #include <linux/fcntl.h> | 
|  | 23 | #include <linux/stat.h> | 
|  | 24 | #include <linux/nfs_fs.h> | 
|  | 25 | #include <linux/nfs_mount.h> | 
|  | 26 | #include <linux/mm.h> | 
|  | 27 | #include <linux/slab.h> | 
|  | 28 | #include <linux/pagemap.h> | 
|  | 29 | #include <linux/smp_lock.h> | 
| Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 30 | #include <linux/aio.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 |  | 
|  | 32 | #include <asm/uaccess.h> | 
|  | 33 | #include <asm/system.h> | 
|  | 34 |  | 
|  | 35 | #include "delegation.h" | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 36 | #include "iostat.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
|  | 38 | #define NFSDBG_FACILITY		NFSDBG_FILE | 
|  | 39 |  | 
|  | 40 | static int nfs_file_open(struct inode *, struct file *); | 
|  | 41 | static int nfs_file_release(struct inode *, struct file *); | 
| Trond Myklebust | 980802e | 2005-06-13 11:14:01 -0400 | [diff] [blame] | 42 | static loff_t nfs_file_llseek(struct file *file, loff_t offset, int origin); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static int  nfs_file_mmap(struct file *, struct vm_area_struct *); | 
|  | 44 | static ssize_t nfs_file_sendfile(struct file *, loff_t *, size_t, read_actor_t, void *); | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 45 | static ssize_t nfs_file_read(struct kiocb *, const struct iovec *iov, | 
|  | 46 | unsigned long nr_segs, loff_t pos); | 
|  | 47 | static ssize_t nfs_file_write(struct kiocb *, const struct iovec *iov, | 
|  | 48 | unsigned long nr_segs, loff_t pos); | 
| Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 49 | static int  nfs_file_flush(struct file *, fl_owner_t id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static int  nfs_fsync(struct file *, struct dentry *dentry, int datasync); | 
|  | 51 | static int nfs_check_flags(int flags); | 
|  | 52 | static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl); | 
|  | 53 | static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl); | 
|  | 54 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 55 | const struct file_operations nfs_file_operations = { | 
| Trond Myklebust | 980802e | 2005-06-13 11:14:01 -0400 | [diff] [blame] | 56 | .llseek		= nfs_file_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | .read		= do_sync_read, | 
|  | 58 | .write		= do_sync_write, | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 59 | .aio_read	= nfs_file_read, | 
|  | 60 | .aio_write	= nfs_file_write, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | .mmap		= nfs_file_mmap, | 
|  | 62 | .open		= nfs_file_open, | 
|  | 63 | .flush		= nfs_file_flush, | 
|  | 64 | .release	= nfs_file_release, | 
|  | 65 | .fsync		= nfs_fsync, | 
|  | 66 | .lock		= nfs_lock, | 
|  | 67 | .flock		= nfs_flock, | 
|  | 68 | .sendfile	= nfs_file_sendfile, | 
|  | 69 | .check_flags	= nfs_check_flags, | 
|  | 70 | }; | 
|  | 71 |  | 
| Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 72 | const struct inode_operations nfs_file_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | .permission	= nfs_permission, | 
|  | 74 | .getattr	= nfs_getattr, | 
|  | 75 | .setattr	= nfs_setattr, | 
|  | 76 | }; | 
|  | 77 |  | 
| Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 78 | #ifdef CONFIG_NFS_V3 | 
| Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 79 | const struct inode_operations nfs3_file_inode_operations = { | 
| Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 80 | .permission	= nfs_permission, | 
|  | 81 | .getattr	= nfs_getattr, | 
|  | 82 | .setattr	= nfs_setattr, | 
|  | 83 | .listxattr	= nfs3_listxattr, | 
|  | 84 | .getxattr	= nfs3_getxattr, | 
|  | 85 | .setxattr	= nfs3_setxattr, | 
|  | 86 | .removexattr	= nfs3_removexattr, | 
|  | 87 | }; | 
|  | 88 | #endif  /* CONFIG_NFS_v3 */ | 
|  | 89 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | /* Hack for future NFS swap support */ | 
|  | 91 | #ifndef IS_SWAPFILE | 
|  | 92 | # define IS_SWAPFILE(inode)	(0) | 
|  | 93 | #endif | 
|  | 94 |  | 
|  | 95 | static int nfs_check_flags(int flags) | 
|  | 96 | { | 
|  | 97 | if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT)) | 
|  | 98 | return -EINVAL; | 
|  | 99 |  | 
|  | 100 | return 0; | 
|  | 101 | } | 
|  | 102 |  | 
|  | 103 | /* | 
|  | 104 | * Open file | 
|  | 105 | */ | 
|  | 106 | static int | 
|  | 107 | nfs_file_open(struct inode *inode, struct file *filp) | 
|  | 108 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | int res; | 
|  | 110 |  | 
|  | 111 | res = nfs_check_flags(filp->f_flags); | 
|  | 112 | if (res) | 
|  | 113 | return res; | 
|  | 114 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 115 | nfs_inc_stats(inode, NFSIOS_VFSOPEN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | lock_kernel(); | 
| David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 117 | res = NFS_PROTO(inode)->file_open(inode, filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | unlock_kernel(); | 
|  | 119 | return res; | 
|  | 120 | } | 
|  | 121 |  | 
|  | 122 | static int | 
|  | 123 | nfs_file_release(struct inode *inode, struct file *filp) | 
|  | 124 | { | 
|  | 125 | /* Ensure that dirty pages are flushed out with the right creds */ | 
|  | 126 | if (filp->f_mode & FMODE_WRITE) | 
|  | 127 | filemap_fdatawrite(filp->f_mapping); | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 128 | nfs_inc_stats(inode, NFSIOS_VFSRELEASE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | return NFS_PROTO(inode)->file_release(inode, filp); | 
|  | 130 | } | 
|  | 131 |  | 
| Trond Myklebust | 980802e | 2005-06-13 11:14:01 -0400 | [diff] [blame] | 132 | /** | 
|  | 133 | * nfs_revalidate_size - Revalidate the file size | 
|  | 134 | * @inode - pointer to inode struct | 
|  | 135 | * @file - pointer to struct file | 
|  | 136 | * | 
|  | 137 | * Revalidates the file length. This is basically a wrapper around | 
|  | 138 | * nfs_revalidate_inode() that takes into account the fact that we may | 
|  | 139 | * have cached writes (in which case we don't care about the server's | 
|  | 140 | * idea of what the file length is), or O_DIRECT (in which case we | 
|  | 141 | * shouldn't trust the cache). | 
|  | 142 | */ | 
|  | 143 | static int nfs_revalidate_file_size(struct inode *inode, struct file *filp) | 
|  | 144 | { | 
|  | 145 | struct nfs_server *server = NFS_SERVER(inode); | 
|  | 146 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 147 |  | 
|  | 148 | if (server->flags & NFS_MOUNT_NOAC) | 
|  | 149 | goto force_reval; | 
|  | 150 | if (filp->f_flags & O_DIRECT) | 
|  | 151 | goto force_reval; | 
|  | 152 | if (nfsi->npages != 0) | 
|  | 153 | return 0; | 
| Chuck Lever | 5529680 | 2005-08-18 11:24:09 -0700 | [diff] [blame] | 154 | if (!(nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) && !nfs_attribute_timeout(inode)) | 
| Trond Myklebust | fe51bee | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 155 | return 0; | 
| Trond Myklebust | 980802e | 2005-06-13 11:14:01 -0400 | [diff] [blame] | 156 | force_reval: | 
|  | 157 | return __nfs_revalidate_inode(server, inode); | 
|  | 158 | } | 
|  | 159 |  | 
|  | 160 | static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin) | 
|  | 161 | { | 
|  | 162 | /* origin == SEEK_END => we must revalidate the cached file length */ | 
| Josef 'Jeff' Sipek | aec5e17 | 2006-09-16 21:09:32 -0400 | [diff] [blame] | 163 | if (origin == SEEK_END) { | 
| Trond Myklebust | 980802e | 2005-06-13 11:14:01 -0400 | [diff] [blame] | 164 | struct inode *inode = filp->f_mapping->host; | 
|  | 165 | int retval = nfs_revalidate_file_size(inode, filp); | 
|  | 166 | if (retval < 0) | 
|  | 167 | return (loff_t)retval; | 
|  | 168 | } | 
|  | 169 | return remote_llseek(filp, offset, origin); | 
|  | 170 | } | 
|  | 171 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /* | 
|  | 173 | * Flush all dirty pages, and check for write errors. | 
|  | 174 | * | 
|  | 175 | */ | 
|  | 176 | static int | 
| Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 177 | nfs_file_flush(struct file *file, fl_owner_t id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { | 
|  | 179 | struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data; | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 180 | struct inode	*inode = file->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | int		status; | 
|  | 182 |  | 
|  | 183 | dfprintk(VFS, "nfs: flush(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino); | 
|  | 184 |  | 
|  | 185 | if ((file->f_mode & FMODE_WRITE) == 0) | 
|  | 186 | return 0; | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 187 | nfs_inc_stats(inode, NFSIOS_VFSFLUSH); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | lock_kernel(); | 
|  | 189 | /* Ensure that data+attribute caches are up to date after close() */ | 
|  | 190 | status = nfs_wb_all(inode); | 
|  | 191 | if (!status) { | 
|  | 192 | status = ctx->error; | 
|  | 193 | ctx->error = 0; | 
| Trond Myklebust | 3338c14 | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 194 | if (!status) | 
|  | 195 | nfs_revalidate_inode(NFS_SERVER(inode), inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } | 
|  | 197 | unlock_kernel(); | 
|  | 198 | return status; | 
|  | 199 | } | 
|  | 200 |  | 
|  | 201 | static ssize_t | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 202 | nfs_file_read(struct kiocb *iocb, const struct iovec *iov, | 
|  | 203 | unsigned long nr_segs, loff_t pos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 205 | struct dentry * dentry = iocb->ki_filp->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | struct inode * inode = dentry->d_inode; | 
|  | 207 | ssize_t result; | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 208 | size_t count = iov_length(iov, nr_segs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 |  | 
|  | 210 | #ifdef CONFIG_NFS_DIRECTIO | 
|  | 211 | if (iocb->ki_filp->f_flags & O_DIRECT) | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 212 | return nfs_file_direct_read(iocb, iov, nr_segs, pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | #endif | 
|  | 214 |  | 
|  | 215 | dfprintk(VFS, "nfs: read(%s/%s, %lu@%lu)\n", | 
|  | 216 | dentry->d_parent->d_name.name, dentry->d_name.name, | 
|  | 217 | (unsigned long) count, (unsigned long) pos); | 
|  | 218 |  | 
| Trond Myklebust | 44b1187 | 2006-05-25 01:40:59 -0400 | [diff] [blame] | 219 | result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping); | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 220 | nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | if (!result) | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 222 | result = generic_file_aio_read(iocb, iov, nr_segs, pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | return result; | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | static ssize_t | 
|  | 227 | nfs_file_sendfile(struct file *filp, loff_t *ppos, size_t count, | 
|  | 228 | read_actor_t actor, void *target) | 
|  | 229 | { | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 230 | struct dentry *dentry = filp->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | struct inode *inode = dentry->d_inode; | 
|  | 232 | ssize_t res; | 
|  | 233 |  | 
|  | 234 | dfprintk(VFS, "nfs: sendfile(%s/%s, %lu@%Lu)\n", | 
|  | 235 | dentry->d_parent->d_name.name, dentry->d_name.name, | 
|  | 236 | (unsigned long) count, (unsigned long long) *ppos); | 
|  | 237 |  | 
| Trond Myklebust | 44b1187 | 2006-05-25 01:40:59 -0400 | [diff] [blame] | 238 | res = nfs_revalidate_mapping(inode, filp->f_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | if (!res) | 
|  | 240 | res = generic_file_sendfile(filp, ppos, count, actor, target); | 
|  | 241 | return res; | 
|  | 242 | } | 
|  | 243 |  | 
|  | 244 | static int | 
|  | 245 | nfs_file_mmap(struct file * file, struct vm_area_struct * vma) | 
|  | 246 | { | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 247 | struct dentry *dentry = file->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | struct inode *inode = dentry->d_inode; | 
|  | 249 | int	status; | 
|  | 250 |  | 
|  | 251 | dfprintk(VFS, "nfs: mmap(%s/%s)\n", | 
|  | 252 | dentry->d_parent->d_name.name, dentry->d_name.name); | 
|  | 253 |  | 
| Trond Myklebust | 44b1187 | 2006-05-25 01:40:59 -0400 | [diff] [blame] | 254 | status = nfs_revalidate_mapping(inode, file->f_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | if (!status) | 
|  | 256 | status = generic_file_mmap(file, vma); | 
|  | 257 | return status; | 
|  | 258 | } | 
|  | 259 |  | 
|  | 260 | /* | 
|  | 261 | * Flush any dirty pages for this process, and check for write errors. | 
|  | 262 | * The return status from this call provides a reliable indication of | 
|  | 263 | * whether any write errors occurred for this process. | 
|  | 264 | */ | 
|  | 265 | static int | 
|  | 266 | nfs_fsync(struct file *file, struct dentry *dentry, int datasync) | 
|  | 267 | { | 
|  | 268 | struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data; | 
|  | 269 | struct inode *inode = dentry->d_inode; | 
|  | 270 | int status; | 
|  | 271 |  | 
|  | 272 | dfprintk(VFS, "nfs: fsync(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino); | 
|  | 273 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 274 | nfs_inc_stats(inode, NFSIOS_VFSFSYNC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | lock_kernel(); | 
|  | 276 | status = nfs_wb_all(inode); | 
|  | 277 | if (!status) { | 
|  | 278 | status = ctx->error; | 
|  | 279 | ctx->error = 0; | 
|  | 280 | } | 
|  | 281 | unlock_kernel(); | 
|  | 282 | return status; | 
|  | 283 | } | 
|  | 284 |  | 
|  | 285 | /* | 
|  | 286 | * This does the "real" work of the write. The generic routine has | 
|  | 287 | * allocated the page, locked it, done all the page alignment stuff | 
|  | 288 | * calculations etc. Now we should just copy the data from user | 
|  | 289 | * space and write it back to the real medium.. | 
|  | 290 | * | 
|  | 291 | * If the writer ends up delaying the write, the writer needs to | 
|  | 292 | * increment the page use counts until he is done with the page. | 
|  | 293 | */ | 
|  | 294 | static int nfs_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to) | 
|  | 295 | { | 
|  | 296 | return nfs_flush_incompatible(file, page); | 
|  | 297 | } | 
|  | 298 |  | 
|  | 299 | static int nfs_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to) | 
|  | 300 | { | 
|  | 301 | long status; | 
|  | 302 |  | 
|  | 303 | lock_kernel(); | 
|  | 304 | status = nfs_updatepage(file, page, offset, to-offset); | 
|  | 305 | unlock_kernel(); | 
|  | 306 | return status; | 
|  | 307 | } | 
|  | 308 |  | 
| NeilBrown | 2ff28e2 | 2006-03-26 01:37:18 -0800 | [diff] [blame] | 309 | static void nfs_invalidate_page(struct page *page, unsigned long offset) | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 310 | { | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 311 | if (offset != 0) | 
|  | 312 | return; | 
| Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 313 | /* Cancel any unstarted writes on this page */ | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 314 | nfs_wb_page_priority(page->mapping->host, page, FLUSH_INVALIDATE); | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 315 | } | 
|  | 316 |  | 
|  | 317 | static int nfs_release_page(struct page *page, gfp_t gfp) | 
|  | 318 | { | 
| Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 319 | /* If PagePrivate() is set, then the page is not freeable */ | 
|  | 320 | return 0; | 
|  | 321 | } | 
|  | 322 |  | 
|  | 323 | static int nfs_launder_page(struct page *page) | 
|  | 324 | { | 
|  | 325 | return nfs_wb_page(page->mapping->host, page); | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 326 | } | 
|  | 327 |  | 
| Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 328 | const struct address_space_operations nfs_file_aops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | .readpage = nfs_readpage, | 
|  | 330 | .readpages = nfs_readpages, | 
| Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 331 | .set_page_dirty = nfs_set_page_dirty, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | .writepage = nfs_writepage, | 
|  | 333 | .writepages = nfs_writepages, | 
|  | 334 | .prepare_write = nfs_prepare_write, | 
|  | 335 | .commit_write = nfs_commit_write, | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 336 | .invalidatepage = nfs_invalidate_page, | 
|  | 337 | .releasepage = nfs_release_page, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | #ifdef CONFIG_NFS_DIRECTIO | 
|  | 339 | .direct_IO = nfs_direct_IO, | 
|  | 340 | #endif | 
| Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 341 | .launder_page = nfs_launder_page, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | }; | 
|  | 343 |  | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 344 | static ssize_t nfs_file_write(struct kiocb *iocb, const struct iovec *iov, | 
|  | 345 | unsigned long nr_segs, loff_t pos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 347 | struct dentry * dentry = iocb->ki_filp->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | struct inode * inode = dentry->d_inode; | 
|  | 349 | ssize_t result; | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 350 | size_t count = iov_length(iov, nr_segs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 |  | 
|  | 352 | #ifdef CONFIG_NFS_DIRECTIO | 
|  | 353 | if (iocb->ki_filp->f_flags & O_DIRECT) | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 354 | return nfs_file_direct_write(iocb, iov, nr_segs, pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | #endif | 
|  | 356 |  | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 357 | dfprintk(VFS, "nfs: write(%s/%s(%ld), %lu@%Ld)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | dentry->d_parent->d_name.name, dentry->d_name.name, | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 359 | inode->i_ino, (unsigned long) count, (long long) pos); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 |  | 
|  | 361 | result = -EBUSY; | 
|  | 362 | if (IS_SWAPFILE(inode)) | 
|  | 363 | goto out_swapfile; | 
| Trond Myklebust | 7d52e86 | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 364 | /* | 
|  | 365 | * O_APPEND implies that we must revalidate the file length. | 
|  | 366 | */ | 
|  | 367 | if (iocb->ki_filp->f_flags & O_APPEND) { | 
|  | 368 | result = nfs_revalidate_file_size(inode, iocb->ki_filp); | 
|  | 369 | if (result) | 
|  | 370 | goto out; | 
| Trond Myklebust | fe51bee | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 371 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 |  | 
|  | 373 | result = count; | 
|  | 374 | if (!count) | 
|  | 375 | goto out; | 
|  | 376 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 377 | nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, count); | 
| Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 378 | result = generic_file_aio_write(iocb, iov, nr_segs, pos); | 
| Trond Myklebust | 200baa2 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 379 | /* Return error values for O_SYNC and IS_SYNC() */ | 
|  | 380 | if (result >= 0 && (IS_SYNC(inode) || (iocb->ki_filp->f_flags & O_SYNC))) { | 
|  | 381 | int err = nfs_fsync(iocb->ki_filp, dentry, 1); | 
|  | 382 | if (err < 0) | 
|  | 383 | result = err; | 
|  | 384 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | out: | 
|  | 386 | return result; | 
|  | 387 |  | 
|  | 388 | out_swapfile: | 
|  | 389 | printk(KERN_INFO "NFS: attempt to write to active swap file!\n"); | 
|  | 390 | goto out; | 
|  | 391 | } | 
|  | 392 |  | 
|  | 393 | static int do_getlk(struct file *filp, int cmd, struct file_lock *fl) | 
|  | 394 | { | 
|  | 395 | struct inode *inode = filp->f_mapping->host; | 
|  | 396 | int status = 0; | 
|  | 397 |  | 
|  | 398 | lock_kernel(); | 
| Trond Myklebust | 039c4d7 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 399 | /* Try local locking first */ | 
| Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 400 | if (posix_test_lock(filp, fl)) { | 
| Trond Myklebust | 039c4d7 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 401 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } | 
| Trond Myklebust | 039c4d7 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 403 |  | 
|  | 404 | if (nfs_have_delegation(inode, FMODE_READ)) | 
|  | 405 | goto out_noconflict; | 
|  | 406 |  | 
|  | 407 | if (NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM) | 
|  | 408 | goto out_noconflict; | 
|  | 409 |  | 
|  | 410 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | 
|  | 411 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | unlock_kernel(); | 
|  | 413 | return status; | 
| Trond Myklebust | 039c4d7 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 414 | out_noconflict: | 
|  | 415 | fl->fl_type = F_UNLCK; | 
|  | 416 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } | 
|  | 418 |  | 
|  | 419 | static int do_vfs_lock(struct file *file, struct file_lock *fl) | 
|  | 420 | { | 
|  | 421 | int res = 0; | 
|  | 422 | switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { | 
|  | 423 | case FL_POSIX: | 
|  | 424 | res = posix_lock_file_wait(file, fl); | 
|  | 425 | break; | 
|  | 426 | case FL_FLOCK: | 
|  | 427 | res = flock_lock_file_wait(file, fl); | 
|  | 428 | break; | 
|  | 429 | default: | 
|  | 430 | BUG(); | 
|  | 431 | } | 
|  | 432 | if (res < 0) | 
| Neil Brown | 46bae1a | 2007-01-30 14:36:01 -0800 | [diff] [blame] | 433 | dprintk(KERN_WARNING "%s: VFS is out of sync with lock manager" | 
|  | 434 | " - error %d!\n", | 
|  | 435 | __FUNCTION__, res); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return res; | 
|  | 437 | } | 
|  | 438 |  | 
|  | 439 | static int do_unlk(struct file *filp, int cmd, struct file_lock *fl) | 
|  | 440 | { | 
|  | 441 | struct inode *inode = filp->f_mapping->host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | int status; | 
|  | 443 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | /* | 
|  | 445 | * Flush all pending writes before doing anything | 
|  | 446 | * with locks.. | 
|  | 447 | */ | 
| Trond Myklebust | 29884df | 2005-12-13 16:13:54 -0500 | [diff] [blame] | 448 | nfs_sync_mapping(filp->f_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 |  | 
|  | 450 | /* NOTE: special case | 
|  | 451 | * 	If we're signalled while cleaning up locks on process exit, we | 
|  | 452 | * 	still need to complete the unlock. | 
|  | 453 | */ | 
|  | 454 | lock_kernel(); | 
|  | 455 | /* Use local locking if mounted with "-onolock" */ | 
|  | 456 | if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) | 
|  | 457 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | 
|  | 458 | else | 
|  | 459 | status = do_vfs_lock(filp, fl); | 
|  | 460 | unlock_kernel(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | return status; | 
|  | 462 | } | 
|  | 463 |  | 
|  | 464 | static int do_setlk(struct file *filp, int cmd, struct file_lock *fl) | 
|  | 465 | { | 
|  | 466 | struct inode *inode = filp->f_mapping->host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | int status; | 
|  | 468 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | /* | 
|  | 470 | * Flush all pending writes before doing anything | 
|  | 471 | * with locks.. | 
|  | 472 | */ | 
| Trond Myklebust | 29884df | 2005-12-13 16:13:54 -0500 | [diff] [blame] | 473 | status = nfs_sync_mapping(filp->f_mapping); | 
|  | 474 | if (status != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | goto out; | 
|  | 476 |  | 
|  | 477 | lock_kernel(); | 
|  | 478 | /* Use local locking if mounted with "-onolock" */ | 
|  | 479 | if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) { | 
|  | 480 | status = NFS_PROTO(inode)->lock(filp, cmd, fl); | 
|  | 481 | /* If we were signalled we still need to ensure that | 
|  | 482 | * we clean up any state on the server. We therefore | 
|  | 483 | * record the lock call as having succeeded in order to | 
|  | 484 | * ensure that locks_remove_posix() cleans it out when | 
|  | 485 | * the process exits. | 
|  | 486 | */ | 
|  | 487 | if (status == -EINTR || status == -ERESTARTSYS) | 
|  | 488 | do_vfs_lock(filp, fl); | 
|  | 489 | } else | 
|  | 490 | status = do_vfs_lock(filp, fl); | 
|  | 491 | unlock_kernel(); | 
|  | 492 | if (status < 0) | 
|  | 493 | goto out; | 
|  | 494 | /* | 
|  | 495 | * Make sure we clear the cache whenever we try to get the lock. | 
|  | 496 | * This makes locking act as a cache coherency point. | 
|  | 497 | */ | 
| Trond Myklebust | 29884df | 2005-12-13 16:13:54 -0500 | [diff] [blame] | 498 | nfs_sync_mapping(filp->f_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | nfs_zap_caches(inode); | 
|  | 500 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | return status; | 
|  | 502 | } | 
|  | 503 |  | 
|  | 504 | /* | 
|  | 505 | * Lock a (portion of) a file | 
|  | 506 | */ | 
|  | 507 | static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl) | 
|  | 508 | { | 
|  | 509 | struct inode * inode = filp->f_mapping->host; | 
|  | 510 |  | 
|  | 511 | dprintk("NFS: nfs_lock(f=%s/%ld, t=%x, fl=%x, r=%Ld:%Ld)\n", | 
|  | 512 | inode->i_sb->s_id, inode->i_ino, | 
|  | 513 | fl->fl_type, fl->fl_flags, | 
|  | 514 | (long long)fl->fl_start, (long long)fl->fl_end); | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 515 | nfs_inc_stats(inode, NFSIOS_VFSLOCK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 |  | 
|  | 517 | /* No mandatory locks over NFS */ | 
| ASANO Masahiro | 0800c5f | 2005-12-22 13:24:54 +0900 | [diff] [blame] | 518 | if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID && | 
|  | 519 | fl->fl_type != F_UNLCK) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | return -ENOLCK; | 
|  | 521 |  | 
|  | 522 | if (IS_GETLK(cmd)) | 
|  | 523 | return do_getlk(filp, cmd, fl); | 
|  | 524 | if (fl->fl_type == F_UNLCK) | 
|  | 525 | return do_unlk(filp, cmd, fl); | 
|  | 526 | return do_setlk(filp, cmd, fl); | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | /* | 
|  | 530 | * Lock a (portion of) a file | 
|  | 531 | */ | 
|  | 532 | static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl) | 
|  | 533 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | dprintk("NFS: nfs_flock(f=%s/%ld, t=%x, fl=%x)\n", | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 535 | filp->f_path.dentry->d_inode->i_sb->s_id, | 
|  | 536 | filp->f_path.dentry->d_inode->i_ino, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | fl->fl_type, fl->fl_flags); | 
|  | 538 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* | 
|  | 540 | * No BSD flocks over NFS allowed. | 
|  | 541 | * Note: we could try to fake a POSIX lock request here by | 
|  | 542 | * using ((u32) filp | 0x80000000) or some such as the pid. | 
|  | 543 | * Not sure whether that would be unique, though, or whether | 
|  | 544 | * that would break in other places. | 
|  | 545 | */ | 
|  | 546 | if (!(fl->fl_flags & FL_FLOCK)) | 
|  | 547 | return -ENOLCK; | 
|  | 548 |  | 
|  | 549 | /* We're simulating flock() locks using posix locks on the server */ | 
|  | 550 | fl->fl_owner = (fl_owner_t)filp; | 
|  | 551 | fl->fl_start = 0; | 
|  | 552 | fl->fl_end = OFFSET_MAX; | 
|  | 553 |  | 
|  | 554 | if (fl->fl_type == F_UNLCK) | 
|  | 555 | return do_unlk(filp, cmd, fl); | 
|  | 556 | return do_setlk(filp, cmd, fl); | 
|  | 557 | } |