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