blob: 9c98ccbf9de0311a9212128cd37b209cd9e6808a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Dobriyane8edc6e2007-05-21 01:22:52 +040030#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/uaccess.h>
33#include <asm/system.h>
34
35#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050036#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#define NFSDBG_FACILITY NFSDBG_FILE
39
40static int nfs_file_open(struct inode *, struct file *);
41static int nfs_file_release(struct inode *, struct file *);
Trond Myklebust980802e2005-06-13 11:14:01 -040042static loff_t nfs_file_llseek(struct file *file, loff_t offset, int origin);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static int nfs_file_mmap(struct file *, struct vm_area_struct *);
Jens Axboef0930ff2007-06-01 11:51:43 +020044static ssize_t nfs_file_splice_read(struct file *filp, loff_t *ppos,
45 struct pipe_inode_info *pipe,
46 size_t count, unsigned int flags);
Badari Pulavarty027445c2006-09-30 23:28:46 -070047static ssize_t nfs_file_read(struct kiocb *, const struct iovec *iov,
48 unsigned long nr_segs, loff_t pos);
49static ssize_t nfs_file_write(struct kiocb *, const struct iovec *iov,
50 unsigned long nr_segs, loff_t pos);
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -070051static int nfs_file_flush(struct file *, fl_owner_t id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static int nfs_fsync(struct file *, struct dentry *dentry, int datasync);
53static int nfs_check_flags(int flags);
54static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl);
55static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl);
J. Bruce Fields370f6592007-06-08 15:23:34 -040056static int nfs_setlease(struct file *file, long arg, struct file_lock **fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080058const struct file_operations nfs_file_operations = {
Trond Myklebust980802e2005-06-13 11:14:01 -040059 .llseek = nfs_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .read = do_sync_read,
61 .write = do_sync_write,
Badari Pulavarty027445c2006-09-30 23:28:46 -070062 .aio_read = nfs_file_read,
63 .aio_write = nfs_file_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .mmap = nfs_file_mmap,
65 .open = nfs_file_open,
66 .flush = nfs_file_flush,
67 .release = nfs_file_release,
68 .fsync = nfs_fsync,
69 .lock = nfs_lock,
70 .flock = nfs_flock,
Jens Axboef0930ff2007-06-01 11:51:43 +020071 .splice_read = nfs_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .check_flags = nfs_check_flags,
J. Bruce Fields370f6592007-06-08 15:23:34 -040073 .setlease = nfs_setlease,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080076const struct inode_operations nfs_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 .permission = nfs_permission,
78 .getattr = nfs_getattr,
79 .setattr = nfs_setattr,
80};
81
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000082#ifdef CONFIG_NFS_V3
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080083const struct inode_operations nfs3_file_inode_operations = {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000084 .permission = nfs_permission,
85 .getattr = nfs_getattr,
86 .setattr = nfs_setattr,
87 .listxattr = nfs3_listxattr,
88 .getxattr = nfs3_getxattr,
89 .setxattr = nfs3_setxattr,
90 .removexattr = nfs3_removexattr,
91};
92#endif /* CONFIG_NFS_v3 */
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* Hack for future NFS swap support */
95#ifndef IS_SWAPFILE
96# define IS_SWAPFILE(inode) (0)
97#endif
98
99static int nfs_check_flags(int flags)
100{
101 if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
102 return -EINVAL;
103
104 return 0;
105}
106
107/*
108 * Open file
109 */
110static int
111nfs_file_open(struct inode *inode, struct file *filp)
112{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int res;
114
115 res = nfs_check_flags(filp->f_flags);
116 if (res)
117 return res;
118
Chuck Lever91d5b472006-03-20 13:44:14 -0500119 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 lock_kernel();
David Howells1f163412006-08-22 20:06:11 -0400121 res = NFS_PROTO(inode)->file_open(inode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unlock_kernel();
123 return res;
124}
125
126static int
127nfs_file_release(struct inode *inode, struct file *filp)
128{
129 /* Ensure that dirty pages are flushed out with the right creds */
130 if (filp->f_mode & FMODE_WRITE)
131 filemap_fdatawrite(filp->f_mapping);
Chuck Lever91d5b472006-03-20 13:44:14 -0500132 nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return NFS_PROTO(inode)->file_release(inode, filp);
134}
135
Trond Myklebust980802e2005-06-13 11:14:01 -0400136/**
137 * nfs_revalidate_size - Revalidate the file size
138 * @inode - pointer to inode struct
139 * @file - pointer to struct file
140 *
141 * Revalidates the file length. This is basically a wrapper around
142 * nfs_revalidate_inode() that takes into account the fact that we may
143 * have cached writes (in which case we don't care about the server's
144 * idea of what the file length is), or O_DIRECT (in which case we
145 * shouldn't trust the cache).
146 */
147static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
148{
149 struct nfs_server *server = NFS_SERVER(inode);
150 struct nfs_inode *nfsi = NFS_I(inode);
151
152 if (server->flags & NFS_MOUNT_NOAC)
153 goto force_reval;
154 if (filp->f_flags & O_DIRECT)
155 goto force_reval;
156 if (nfsi->npages != 0)
157 return 0;
Chuck Lever55296802005-08-18 11:24:09 -0700158 if (!(nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) && !nfs_attribute_timeout(inode))
Trond Myklebustfe51beec2005-06-22 17:16:30 +0000159 return 0;
Trond Myklebust980802e2005-06-13 11:14:01 -0400160force_reval:
161 return __nfs_revalidate_inode(server, inode);
162}
163
164static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin)
165{
166 /* origin == SEEK_END => we must revalidate the cached file length */
Josef 'Jeff' Sipekaec5e172006-09-16 21:09:32 -0400167 if (origin == SEEK_END) {
Trond Myklebust980802e2005-06-13 11:14:01 -0400168 struct inode *inode = filp->f_mapping->host;
169 int retval = nfs_revalidate_file_size(inode, filp);
170 if (retval < 0)
171 return (loff_t)retval;
172 }
173 return remote_llseek(filp, offset, origin);
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
177 * Flush all dirty pages, and check for write errors.
178 *
179 */
180static int
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700181nfs_file_flush(struct file *file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800184 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int status;
186
187 dfprintk(VFS, "nfs: flush(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
188
189 if ((file->f_mode & FMODE_WRITE) == 0)
190 return 0;
Chuck Lever91d5b472006-03-20 13:44:14 -0500191 nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 lock_kernel();
193 /* Ensure that data+attribute caches are up to date after close() */
194 status = nfs_wb_all(inode);
195 if (!status) {
196 status = ctx->error;
197 ctx->error = 0;
Trond Myklebust3338c142005-10-27 22:12:41 -0400198 if (!status)
199 nfs_revalidate_inode(NFS_SERVER(inode), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 unlock_kernel();
202 return status;
203}
204
205static ssize_t
Badari Pulavarty027445c2006-09-30 23:28:46 -0700206nfs_file_read(struct kiocb *iocb, const struct iovec *iov,
207 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800209 struct dentry * dentry = iocb->ki_filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct inode * inode = dentry->d_inode;
211 ssize_t result;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700212 size_t count = iov_length(iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214#ifdef CONFIG_NFS_DIRECTIO
215 if (iocb->ki_filp->f_flags & O_DIRECT)
Badari Pulavarty027445c2006-09-30 23:28:46 -0700216 return nfs_file_direct_read(iocb, iov, nr_segs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif
218
219 dfprintk(VFS, "nfs: read(%s/%s, %lu@%lu)\n",
220 dentry->d_parent->d_name.name, dentry->d_name.name,
221 (unsigned long) count, (unsigned long) pos);
222
Trond Myklebust44b11872006-05-25 01:40:59 -0400223 result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
Chuck Lever91d5b472006-03-20 13:44:14 -0500224 nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!result)
Badari Pulavarty027445c2006-09-30 23:28:46 -0700226 result = generic_file_aio_read(iocb, iov, nr_segs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return result;
228}
229
230static ssize_t
Jens Axboef0930ff2007-06-01 11:51:43 +0200231nfs_file_splice_read(struct file *filp, loff_t *ppos,
232 struct pipe_inode_info *pipe, size_t count,
233 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800235 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct inode *inode = dentry->d_inode;
237 ssize_t res;
238
Jens Axboef0930ff2007-06-01 11:51:43 +0200239 dfprintk(VFS, "nfs: splice_read(%s/%s, %lu@%Lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 dentry->d_parent->d_name.name, dentry->d_name.name,
241 (unsigned long) count, (unsigned long long) *ppos);
242
Trond Myklebust44b11872006-05-25 01:40:59 -0400243 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!res)
Jens Axboef0930ff2007-06-01 11:51:43 +0200245 res = generic_file_splice_read(filp, ppos, pipe, count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return res;
247}
248
249static int
250nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
251{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800252 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct inode *inode = dentry->d_inode;
254 int status;
255
256 dfprintk(VFS, "nfs: mmap(%s/%s)\n",
257 dentry->d_parent->d_name.name, dentry->d_name.name);
258
Trond Myklebust44b11872006-05-25 01:40:59 -0400259 status = nfs_revalidate_mapping(inode, file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (!status)
261 status = generic_file_mmap(file, vma);
262 return status;
263}
264
265/*
266 * Flush any dirty pages for this process, and check for write errors.
267 * The return status from this call provides a reliable indication of
268 * whether any write errors occurred for this process.
269 */
270static int
271nfs_fsync(struct file *file, struct dentry *dentry, int datasync)
272{
273 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
274 struct inode *inode = dentry->d_inode;
275 int status;
276
277 dfprintk(VFS, "nfs: fsync(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
278
Chuck Lever91d5b472006-03-20 13:44:14 -0500279 nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 lock_kernel();
281 status = nfs_wb_all(inode);
282 if (!status) {
283 status = ctx->error;
284 ctx->error = 0;
285 }
286 unlock_kernel();
287 return status;
288}
289
290/*
291 * This does the "real" work of the write. The generic routine has
292 * allocated the page, locked it, done all the page alignment stuff
293 * calculations etc. Now we should just copy the data from user
294 * space and write it back to the real medium..
295 *
296 * If the writer ends up delaying the write, the writer needs to
297 * increment the page use counts until he is done with the page.
298 */
299static int nfs_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
300{
301 return nfs_flush_incompatible(file, page);
302}
303
304static int nfs_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to)
305{
306 long status;
307
308 lock_kernel();
309 status = nfs_updatepage(file, page, offset, to-offset);
310 unlock_kernel();
311 return status;
312}
313
NeilBrown2ff28e22006-03-26 01:37:18 -0800314static void nfs_invalidate_page(struct page *page, unsigned long offset)
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500315{
Trond Myklebust1c759502006-10-09 16:18:38 -0400316 if (offset != 0)
317 return;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400318 /* Cancel any unstarted writes on this page */
Trond Myklebust1b3b4a12007-08-28 10:29:36 -0400319 nfs_wb_page_cancel(page->mapping->host, page);
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500320}
321
322static int nfs_release_page(struct page *page, gfp_t gfp)
323{
Trond Myklebuste3db7692007-01-10 23:15:39 -0800324 /* If PagePrivate() is set, then the page is not freeable */
325 return 0;
326}
327
328static int nfs_launder_page(struct page *page)
329{
330 return nfs_wb_page(page->mapping->host, page);
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500331}
332
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700333const struct address_space_operations nfs_file_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .readpage = nfs_readpage,
335 .readpages = nfs_readpages,
Trond Myklebust1a545332006-12-05 00:35:40 -0500336 .set_page_dirty = nfs_set_page_dirty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 .writepage = nfs_writepage,
338 .writepages = nfs_writepages,
339 .prepare_write = nfs_prepare_write,
340 .commit_write = nfs_commit_write,
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500341 .invalidatepage = nfs_invalidate_page,
342 .releasepage = nfs_release_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#ifdef CONFIG_NFS_DIRECTIO
344 .direct_IO = nfs_direct_IO,
345#endif
Trond Myklebuste3db7692007-01-10 23:15:39 -0800346 .launder_page = nfs_launder_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Badari Pulavarty027445c2006-09-30 23:28:46 -0700349static ssize_t nfs_file_write(struct kiocb *iocb, const struct iovec *iov,
350 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800352 struct dentry * dentry = iocb->ki_filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct inode * inode = dentry->d_inode;
354 ssize_t result;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700355 size_t count = iov_length(iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357#ifdef CONFIG_NFS_DIRECTIO
358 if (iocb->ki_filp->f_flags & O_DIRECT)
Badari Pulavarty027445c2006-09-30 23:28:46 -0700359 return nfs_file_direct_write(iocb, iov, nr_segs, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#endif
361
Badari Pulavarty027445c2006-09-30 23:28:46 -0700362 dfprintk(VFS, "nfs: write(%s/%s(%ld), %lu@%Ld)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dentry->d_parent->d_name.name, dentry->d_name.name,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700364 inode->i_ino, (unsigned long) count, (long long) pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 result = -EBUSY;
367 if (IS_SWAPFILE(inode))
368 goto out_swapfile;
Trond Myklebust7d52e862005-06-22 17:16:30 +0000369 /*
370 * O_APPEND implies that we must revalidate the file length.
371 */
372 if (iocb->ki_filp->f_flags & O_APPEND) {
373 result = nfs_revalidate_file_size(inode, iocb->ki_filp);
374 if (result)
375 goto out;
Trond Myklebustfe51beec2005-06-22 17:16:30 +0000376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 result = count;
379 if (!count)
380 goto out;
381
Chuck Lever91d5b472006-03-20 13:44:14 -0500382 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, count);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700383 result = generic_file_aio_write(iocb, iov, nr_segs, pos);
Trond Myklebust200baa22006-12-05 00:35:40 -0500384 /* Return error values for O_SYNC and IS_SYNC() */
385 if (result >= 0 && (IS_SYNC(inode) || (iocb->ki_filp->f_flags & O_SYNC))) {
386 int err = nfs_fsync(iocb->ki_filp, dentry, 1);
387 if (err < 0)
388 result = err;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390out:
391 return result;
392
393out_swapfile:
394 printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
395 goto out;
396}
397
398static int do_getlk(struct file *filp, int cmd, struct file_lock *fl)
399{
400 struct inode *inode = filp->f_mapping->host;
401 int status = 0;
402
403 lock_kernel();
Trond Myklebust039c4d72005-10-18 14:20:16 -0700404 /* Try local locking first */
J. Bruce Fields6d34ac12007-05-11 16:09:32 -0400405 posix_test_lock(filp, fl);
406 if (fl->fl_type != F_UNLCK) {
407 /* found a conflict */
Trond Myklebust039c4d72005-10-18 14:20:16 -0700408 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Trond Myklebust039c4d72005-10-18 14:20:16 -0700410
411 if (nfs_have_delegation(inode, FMODE_READ))
412 goto out_noconflict;
413
414 if (NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)
415 goto out_noconflict;
416
417 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
418out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 unlock_kernel();
420 return status;
Trond Myklebust039c4d72005-10-18 14:20:16 -0700421out_noconflict:
422 fl->fl_type = F_UNLCK;
423 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426static int do_vfs_lock(struct file *file, struct file_lock *fl)
427{
428 int res = 0;
429 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
430 case FL_POSIX:
431 res = posix_lock_file_wait(file, fl);
432 break;
433 case FL_FLOCK:
434 res = flock_lock_file_wait(file, fl);
435 break;
436 default:
437 BUG();
438 }
439 if (res < 0)
Neil Brown46bae1a2007-01-30 14:36:01 -0800440 dprintk(KERN_WARNING "%s: VFS is out of sync with lock manager"
441 " - error %d!\n",
442 __FUNCTION__, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return res;
444}
445
446static int do_unlk(struct file *filp, int cmd, struct file_lock *fl)
447{
448 struct inode *inode = filp->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int status;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /*
452 * Flush all pending writes before doing anything
453 * with locks..
454 */
Trond Myklebust29884df2005-12-13 16:13:54 -0500455 nfs_sync_mapping(filp->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* NOTE: special case
458 * If we're signalled while cleaning up locks on process exit, we
459 * still need to complete the unlock.
460 */
461 lock_kernel();
462 /* Use local locking if mounted with "-onolock" */
463 if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM))
464 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
465 else
466 status = do_vfs_lock(filp, fl);
467 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return status;
469}
470
471static int do_setlk(struct file *filp, int cmd, struct file_lock *fl)
472{
473 struct inode *inode = filp->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int status;
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /*
477 * Flush all pending writes before doing anything
478 * with locks..
479 */
Trond Myklebust29884df2005-12-13 16:13:54 -0500480 status = nfs_sync_mapping(filp->f_mapping);
481 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
483
484 lock_kernel();
485 /* Use local locking if mounted with "-onolock" */
486 if (!(NFS_SERVER(inode)->flags & NFS_MOUNT_NONLM)) {
487 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
488 /* If we were signalled we still need to ensure that
489 * we clean up any state on the server. We therefore
490 * record the lock call as having succeeded in order to
491 * ensure that locks_remove_posix() cleans it out when
492 * the process exits.
493 */
494 if (status == -EINTR || status == -ERESTARTSYS)
495 do_vfs_lock(filp, fl);
496 } else
497 status = do_vfs_lock(filp, fl);
498 unlock_kernel();
499 if (status < 0)
500 goto out;
501 /*
502 * Make sure we clear the cache whenever we try to get the lock.
503 * This makes locking act as a cache coherency point.
504 */
Trond Myklebust29884df2005-12-13 16:13:54 -0500505 nfs_sync_mapping(filp->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 nfs_zap_caches(inode);
507out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return status;
509}
510
511/*
512 * Lock a (portion of) a file
513 */
514static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
515{
516 struct inode * inode = filp->f_mapping->host;
517
518 dprintk("NFS: nfs_lock(f=%s/%ld, t=%x, fl=%x, r=%Ld:%Ld)\n",
519 inode->i_sb->s_id, inode->i_ino,
520 fl->fl_type, fl->fl_flags,
521 (long long)fl->fl_start, (long long)fl->fl_end);
Chuck Lever91d5b472006-03-20 13:44:14 -0500522 nfs_inc_stats(inode, NFSIOS_VFSLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* No mandatory locks over NFS */
Pavel Emelyanovdfad9442007-10-01 14:41:15 -0700525 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -ENOLCK;
527
528 if (IS_GETLK(cmd))
529 return do_getlk(filp, cmd, fl);
530 if (fl->fl_type == F_UNLCK)
531 return do_unlk(filp, cmd, fl);
532 return do_setlk(filp, cmd, fl);
533}
534
535/*
536 * Lock a (portion of) a file
537 */
538static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
539{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 dprintk("NFS: nfs_flock(f=%s/%ld, t=%x, fl=%x)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800541 filp->f_path.dentry->d_inode->i_sb->s_id,
542 filp->f_path.dentry->d_inode->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 fl->fl_type, fl->fl_flags);
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /*
546 * No BSD flocks over NFS allowed.
547 * Note: we could try to fake a POSIX lock request here by
548 * using ((u32) filp | 0x80000000) or some such as the pid.
549 * Not sure whether that would be unique, though, or whether
550 * that would break in other places.
551 */
552 if (!(fl->fl_flags & FL_FLOCK))
553 return -ENOLCK;
554
555 /* We're simulating flock() locks using posix locks on the server */
556 fl->fl_owner = (fl_owner_t)filp;
557 fl->fl_start = 0;
558 fl->fl_end = OFFSET_MAX;
559
560 if (fl->fl_type == F_UNLCK)
561 return do_unlk(filp, cmd, fl);
562 return do_setlk(filp, cmd, fl);
563}
J. Bruce Fields370f6592007-06-08 15:23:34 -0400564
565static int nfs_setlease(struct file *file, long arg, struct file_lock **fl)
566{
567 /*
568 * There is no protocol support for leases, so we have no way
569 * to implement them correctly in the face of opens by other
570 * clients.
571 */
572 return -EINVAL;
573}