NFSv4.1: Fix session initialisation races
[platform/adaptation/renesas_rcar/renesas_kernel.git] / fs / nfs / file.c
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/pagemap.h>
28 #include <linux/aio.h>
29 #include <linux/gfp.h>
30 #include <linux/swap.h>
31
32 #include <asm/uaccess.h>
33
34 #include "delegation.h"
35 #include "internal.h"
36 #include "iostat.h"
37 #include "fscache.h"
38 #include "pnfs.h"
39
40 #define NFSDBG_FACILITY         NFSDBG_FILE
41
42 static const struct vm_operations_struct nfs_file_vm_ops;
43
44 const struct inode_operations nfs_file_inode_operations = {
45         .permission     = nfs_permission,
46         .getattr        = nfs_getattr,
47         .setattr        = nfs_setattr,
48 };
49
50 #ifdef CONFIG_NFS_V3
51 const struct inode_operations nfs3_file_inode_operations = {
52         .permission     = nfs_permission,
53         .getattr        = nfs_getattr,
54         .setattr        = nfs_setattr,
55         .listxattr      = nfs3_listxattr,
56         .getxattr       = nfs3_getxattr,
57         .setxattr       = nfs3_setxattr,
58         .removexattr    = nfs3_removexattr,
59 };
60 #endif  /* CONFIG_NFS_v3 */
61
62 /* Hack for future NFS swap support */
63 #ifndef IS_SWAPFILE
64 # define IS_SWAPFILE(inode)     (0)
65 #endif
66
67 static int nfs_check_flags(int flags)
68 {
69         if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
70                 return -EINVAL;
71
72         return 0;
73 }
74
75 /*
76  * Open file
77  */
78 static int
79 nfs_file_open(struct inode *inode, struct file *filp)
80 {
81         int res;
82
83         dprintk("NFS: open file(%s/%s)\n",
84                         filp->f_path.dentry->d_parent->d_name.name,
85                         filp->f_path.dentry->d_name.name);
86
87         nfs_inc_stats(inode, NFSIOS_VFSOPEN);
88         res = nfs_check_flags(filp->f_flags);
89         if (res)
90                 return res;
91
92         res = nfs_open(inode, filp);
93         return res;
94 }
95
96 static int
97 nfs_file_release(struct inode *inode, struct file *filp)
98 {
99         dprintk("NFS: release(%s/%s)\n",
100                         filp->f_path.dentry->d_parent->d_name.name,
101                         filp->f_path.dentry->d_name.name);
102
103         nfs_inc_stats(inode, NFSIOS_VFSRELEASE);
104         return nfs_release(inode, filp);
105 }
106
107 /**
108  * nfs_revalidate_size - Revalidate the file size
109  * @inode - pointer to inode struct
110  * @file - pointer to struct file
111  *
112  * Revalidates the file length. This is basically a wrapper around
113  * nfs_revalidate_inode() that takes into account the fact that we may
114  * have cached writes (in which case we don't care about the server's
115  * idea of what the file length is), or O_DIRECT (in which case we
116  * shouldn't trust the cache).
117  */
118 static int nfs_revalidate_file_size(struct inode *inode, struct file *filp)
119 {
120         struct nfs_server *server = NFS_SERVER(inode);
121         struct nfs_inode *nfsi = NFS_I(inode);
122
123         if (nfs_have_delegated_attributes(inode))
124                 goto out_noreval;
125
126         if (filp->f_flags & O_DIRECT)
127                 goto force_reval;
128         if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
129                 goto force_reval;
130         if (nfs_attribute_timeout(inode))
131                 goto force_reval;
132 out_noreval:
133         return 0;
134 force_reval:
135         return __nfs_revalidate_inode(server, inode);
136 }
137
138 static loff_t nfs_file_llseek(struct file *filp, loff_t offset, int origin)
139 {
140         dprintk("NFS: llseek file(%s/%s, %lld, %d)\n",
141                         filp->f_path.dentry->d_parent->d_name.name,
142                         filp->f_path.dentry->d_name.name,
143                         offset, origin);
144
145         /*
146          * origin == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
147          * the cached file length
148          */
149         if (origin != SEEK_SET && origin != SEEK_CUR) {
150                 struct inode *inode = filp->f_mapping->host;
151
152                 int retval = nfs_revalidate_file_size(inode, filp);
153                 if (retval < 0)
154                         return (loff_t)retval;
155         }
156
157         return generic_file_llseek(filp, offset, origin);
158 }
159
160 /*
161  * Flush all dirty pages, and check for write errors.
162  */
163 static int
164 nfs_file_flush(struct file *file, fl_owner_t id)
165 {
166         struct dentry   *dentry = file->f_path.dentry;
167         struct inode    *inode = dentry->d_inode;
168
169         dprintk("NFS: flush(%s/%s)\n",
170                         dentry->d_parent->d_name.name,
171                         dentry->d_name.name);
172
173         nfs_inc_stats(inode, NFSIOS_VFSFLUSH);
174         if ((file->f_mode & FMODE_WRITE) == 0)
175                 return 0;
176
177         /*
178          * If we're holding a write delegation, then just start the i/o
179          * but don't wait for completion (or send a commit).
180          */
181         if (nfs_have_delegation(inode, FMODE_WRITE))
182                 return filemap_fdatawrite(file->f_mapping);
183
184         /* Flush writes to the server and return any errors */
185         return vfs_fsync(file, 0);
186 }
187
188 static ssize_t
189 nfs_file_read(struct kiocb *iocb, const struct iovec *iov,
190                 unsigned long nr_segs, loff_t pos)
191 {
192         struct dentry * dentry = iocb->ki_filp->f_path.dentry;
193         struct inode * inode = dentry->d_inode;
194         ssize_t result;
195
196         if (iocb->ki_filp->f_flags & O_DIRECT)
197                 return nfs_file_direct_read(iocb, iov, nr_segs, pos);
198
199         dprintk("NFS: read(%s/%s, %lu@%lu)\n",
200                 dentry->d_parent->d_name.name, dentry->d_name.name,
201                 (unsigned long) iov_length(iov, nr_segs), (unsigned long) pos);
202
203         result = nfs_revalidate_mapping(inode, iocb->ki_filp->f_mapping);
204         if (!result) {
205                 result = generic_file_aio_read(iocb, iov, nr_segs, pos);
206                 if (result > 0)
207                         nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, result);
208         }
209         return result;
210 }
211
212 static ssize_t
213 nfs_file_splice_read(struct file *filp, loff_t *ppos,
214                      struct pipe_inode_info *pipe, size_t count,
215                      unsigned int flags)
216 {
217         struct dentry *dentry = filp->f_path.dentry;
218         struct inode *inode = dentry->d_inode;
219         ssize_t res;
220
221         dprintk("NFS: splice_read(%s/%s, %lu@%Lu)\n",
222                 dentry->d_parent->d_name.name, dentry->d_name.name,
223                 (unsigned long) count, (unsigned long long) *ppos);
224
225         res = nfs_revalidate_mapping(inode, filp->f_mapping);
226         if (!res) {
227                 res = generic_file_splice_read(filp, ppos, pipe, count, flags);
228                 if (res > 0)
229                         nfs_add_stats(inode, NFSIOS_NORMALREADBYTES, res);
230         }
231         return res;
232 }
233
234 static int
235 nfs_file_mmap(struct file * file, struct vm_area_struct * vma)
236 {
237         struct dentry *dentry = file->f_path.dentry;
238         struct inode *inode = dentry->d_inode;
239         int     status;
240
241         dprintk("NFS: mmap(%s/%s)\n",
242                 dentry->d_parent->d_name.name, dentry->d_name.name);
243
244         /* Note: generic_file_mmap() returns ENOSYS on nommu systems
245          *       so we call that before revalidating the mapping
246          */
247         status = generic_file_mmap(file, vma);
248         if (!status) {
249                 vma->vm_ops = &nfs_file_vm_ops;
250                 status = nfs_revalidate_mapping(inode, file->f_mapping);
251         }
252         return status;
253 }
254
255 /*
256  * Flush any dirty pages for this process, and check for write errors.
257  * The return status from this call provides a reliable indication of
258  * whether any write errors occurred for this process.
259  *
260  * Notice that it clears the NFS_CONTEXT_ERROR_WRITE before synching to
261  * disk, but it retrieves and clears ctx->error after synching, despite
262  * the two being set at the same time in nfs_context_set_write_error().
263  * This is because the former is used to notify the _next_ call to
264  * nfs_file_write() that a write error occurred, and hence cause it to
265  * fall back to doing a synchronous write.
266  */
267 static int
268 nfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
269 {
270         struct dentry *dentry = file->f_path.dentry;
271         struct nfs_open_context *ctx = nfs_file_open_context(file);
272         struct inode *inode = dentry->d_inode;
273         int have_error, status;
274         int ret = 0;
275
276         dprintk("NFS: fsync file(%s/%s) datasync %d\n",
277                         dentry->d_parent->d_name.name, dentry->d_name.name,
278                         datasync);
279
280         ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
281         mutex_lock(&inode->i_mutex);
282
283         nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
284         have_error = test_and_clear_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
285         status = nfs_commit_inode(inode, FLUSH_SYNC);
286         if (status >= 0 && ret < 0)
287                 status = ret;
288         have_error |= test_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
289         if (have_error)
290                 ret = xchg(&ctx->error, 0);
291         if (!ret && status < 0)
292                 ret = status;
293         if (!ret && !datasync)
294                 /* application has asked for meta-data sync */
295                 ret = pnfs_layoutcommit_inode(inode, true);
296         mutex_unlock(&inode->i_mutex);
297         return ret;
298 }
299
300 /*
301  * Decide whether a read/modify/write cycle may be more efficient
302  * then a modify/write/read cycle when writing to a page in the
303  * page cache.
304  *
305  * The modify/write/read cycle may occur if a page is read before
306  * being completely filled by the writer.  In this situation, the
307  * page must be completely written to stable storage on the server
308  * before it can be refilled by reading in the page from the server.
309  * This can lead to expensive, small, FILE_SYNC mode writes being
310  * done.
311  *
312  * It may be more efficient to read the page first if the file is
313  * open for reading in addition to writing, the page is not marked
314  * as Uptodate, it is not dirty or waiting to be committed,
315  * indicating that it was previously allocated and then modified,
316  * that there were valid bytes of data in that range of the file,
317  * and that the new data won't completely replace the old data in
318  * that range of the file.
319  */
320 static int nfs_want_read_modify_write(struct file *file, struct page *page,
321                         loff_t pos, unsigned len)
322 {
323         unsigned int pglen = nfs_page_length(page);
324         unsigned int offset = pos & (PAGE_CACHE_SIZE - 1);
325         unsigned int end = offset + len;
326
327         if ((file->f_mode & FMODE_READ) &&      /* open for read? */
328             !PageUptodate(page) &&              /* Uptodate? */
329             !PagePrivate(page) &&               /* i/o request already? */
330             pglen &&                            /* valid bytes of file? */
331             (end < pglen || offset))            /* replace all valid bytes? */
332                 return 1;
333         return 0;
334 }
335
336 /*
337  * This does the "real" work of the write. We must allocate and lock the
338  * page to be sent back to the generic routine, which then copies the
339  * data from user space.
340  *
341  * If the writer ends up delaying the write, the writer needs to
342  * increment the page use counts until he is done with the page.
343  */
344 static int nfs_write_begin(struct file *file, struct address_space *mapping,
345                         loff_t pos, unsigned len, unsigned flags,
346                         struct page **pagep, void **fsdata)
347 {
348         int ret;
349         pgoff_t index = pos >> PAGE_CACHE_SHIFT;
350         struct page *page;
351         int once_thru = 0;
352
353         dfprintk(PAGECACHE, "NFS: write_begin(%s/%s(%ld), %u@%lld)\n",
354                 file->f_path.dentry->d_parent->d_name.name,
355                 file->f_path.dentry->d_name.name,
356                 mapping->host->i_ino, len, (long long) pos);
357
358 start:
359         /*
360          * Prevent starvation issues if someone is doing a consistency
361          * sync-to-disk
362          */
363         ret = wait_on_bit(&NFS_I(mapping->host)->flags, NFS_INO_FLUSHING,
364                         nfs_wait_bit_killable, TASK_KILLABLE);
365         if (ret)
366                 return ret;
367
368         page = grab_cache_page_write_begin(mapping, index, flags);
369         if (!page)
370                 return -ENOMEM;
371         *pagep = page;
372
373         ret = nfs_flush_incompatible(file, page);
374         if (ret) {
375                 unlock_page(page);
376                 page_cache_release(page);
377         } else if (!once_thru &&
378                    nfs_want_read_modify_write(file, page, pos, len)) {
379                 once_thru = 1;
380                 ret = nfs_readpage(file, page);
381                 page_cache_release(page);
382                 if (!ret)
383                         goto start;
384         }
385         return ret;
386 }
387
388 static int nfs_write_end(struct file *file, struct address_space *mapping,
389                         loff_t pos, unsigned len, unsigned copied,
390                         struct page *page, void *fsdata)
391 {
392         unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
393         int status;
394
395         dfprintk(PAGECACHE, "NFS: write_end(%s/%s(%ld), %u@%lld)\n",
396                 file->f_path.dentry->d_parent->d_name.name,
397                 file->f_path.dentry->d_name.name,
398                 mapping->host->i_ino, len, (long long) pos);
399
400         /*
401          * Zero any uninitialised parts of the page, and then mark the page
402          * as up to date if it turns out that we're extending the file.
403          */
404         if (!PageUptodate(page)) {
405                 unsigned pglen = nfs_page_length(page);
406                 unsigned end = offset + len;
407
408                 if (pglen == 0) {
409                         zero_user_segments(page, 0, offset,
410                                         end, PAGE_CACHE_SIZE);
411                         SetPageUptodate(page);
412                 } else if (end >= pglen) {
413                         zero_user_segment(page, end, PAGE_CACHE_SIZE);
414                         if (offset == 0)
415                                 SetPageUptodate(page);
416                 } else
417                         zero_user_segment(page, pglen, PAGE_CACHE_SIZE);
418         }
419
420         status = nfs_updatepage(file, page, offset, copied);
421
422         unlock_page(page);
423         page_cache_release(page);
424
425         if (status < 0)
426                 return status;
427         return copied;
428 }
429
430 /*
431  * Partially or wholly invalidate a page
432  * - Release the private state associated with a page if undergoing complete
433  *   page invalidation
434  * - Called if either PG_private or PG_fscache is set on the page
435  * - Caller holds page lock
436  */
437 static void nfs_invalidate_page(struct page *page, unsigned long offset)
438 {
439         dfprintk(PAGECACHE, "NFS: invalidate_page(%p, %lu)\n", page, offset);
440
441         if (offset != 0)
442                 return;
443         /* Cancel any unstarted writes on this page */
444         nfs_wb_page_cancel(page->mapping->host, page);
445
446         nfs_fscache_invalidate_page(page, page->mapping->host);
447 }
448
449 /*
450  * Attempt to release the private state associated with a page
451  * - Called if either PG_private or PG_fscache is set on the page
452  * - Caller holds page lock
453  * - Return true (may release page) or false (may not)
454  */
455 static int nfs_release_page(struct page *page, gfp_t gfp)
456 {
457         struct address_space *mapping = page->mapping;
458
459         dfprintk(PAGECACHE, "NFS: release_page(%p)\n", page);
460
461         /* Only do I/O if gfp is a superset of GFP_KERNEL */
462         if (mapping && (gfp & GFP_KERNEL) == GFP_KERNEL) {
463                 int how = FLUSH_SYNC;
464
465                 /* Don't let kswapd deadlock waiting for OOM RPC calls */
466                 if (current_is_kswapd())
467                         how = 0;
468                 nfs_commit_inode(mapping->host, how);
469         }
470         /* If PagePrivate() is set, then the page is not freeable */
471         if (PagePrivate(page))
472                 return 0;
473         return nfs_fscache_release_page(page, gfp);
474 }
475
476 /*
477  * Attempt to clear the private state associated with a page when an error
478  * occurs that requires the cached contents of an inode to be written back or
479  * destroyed
480  * - Called if either PG_private or fscache is set on the page
481  * - Caller holds page lock
482  * - Return 0 if successful, -error otherwise
483  */
484 static int nfs_launder_page(struct page *page)
485 {
486         struct inode *inode = page->mapping->host;
487         struct nfs_inode *nfsi = NFS_I(inode);
488
489         dfprintk(PAGECACHE, "NFS: launder_page(%ld, %llu)\n",
490                 inode->i_ino, (long long)page_offset(page));
491
492         nfs_fscache_wait_on_page_write(nfsi, page);
493         return nfs_wb_page(inode, page);
494 }
495
496 const struct address_space_operations nfs_file_aops = {
497         .readpage = nfs_readpage,
498         .readpages = nfs_readpages,
499         .set_page_dirty = __set_page_dirty_nobuffers,
500         .writepage = nfs_writepage,
501         .writepages = nfs_writepages,
502         .write_begin = nfs_write_begin,
503         .write_end = nfs_write_end,
504         .invalidatepage = nfs_invalidate_page,
505         .releasepage = nfs_release_page,
506         .direct_IO = nfs_direct_IO,
507         .migratepage = nfs_migrate_page,
508         .launder_page = nfs_launder_page,
509         .error_remove_page = generic_error_remove_page,
510 };
511
512 /*
513  * Notification that a PTE pointing to an NFS page is about to be made
514  * writable, implying that someone is about to modify the page through a
515  * shared-writable mapping
516  */
517 static int nfs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
518 {
519         struct page *page = vmf->page;
520         struct file *filp = vma->vm_file;
521         struct dentry *dentry = filp->f_path.dentry;
522         unsigned pagelen;
523         int ret = VM_FAULT_NOPAGE;
524         struct address_space *mapping;
525
526         dfprintk(PAGECACHE, "NFS: vm_page_mkwrite(%s/%s(%ld), offset %lld)\n",
527                 dentry->d_parent->d_name.name, dentry->d_name.name,
528                 filp->f_mapping->host->i_ino,
529                 (long long)page_offset(page));
530
531         /* make sure the cache has finished storing the page */
532         nfs_fscache_wait_on_page_write(NFS_I(dentry->d_inode), page);
533
534         lock_page(page);
535         mapping = page->mapping;
536         if (mapping != dentry->d_inode->i_mapping)
537                 goto out_unlock;
538
539         wait_on_page_writeback(page);
540
541         pagelen = nfs_page_length(page);
542         if (pagelen == 0)
543                 goto out_unlock;
544
545         ret = VM_FAULT_LOCKED;
546         if (nfs_flush_incompatible(filp, page) == 0 &&
547             nfs_updatepage(filp, page, 0, pagelen) == 0)
548                 goto out;
549
550         ret = VM_FAULT_SIGBUS;
551 out_unlock:
552         unlock_page(page);
553 out:
554         return ret;
555 }
556
557 static const struct vm_operations_struct nfs_file_vm_ops = {
558         .fault = filemap_fault,
559         .page_mkwrite = nfs_vm_page_mkwrite,
560 };
561
562 static int nfs_need_sync_write(struct file *filp, struct inode *inode)
563 {
564         struct nfs_open_context *ctx;
565
566         if (IS_SYNC(inode) || (filp->f_flags & O_DSYNC))
567                 return 1;
568         ctx = nfs_file_open_context(filp);
569         if (test_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags))
570                 return 1;
571         return 0;
572 }
573
574 static ssize_t nfs_file_write(struct kiocb *iocb, const struct iovec *iov,
575                                 unsigned long nr_segs, loff_t pos)
576 {
577         struct dentry * dentry = iocb->ki_filp->f_path.dentry;
578         struct inode * inode = dentry->d_inode;
579         unsigned long written = 0;
580         ssize_t result;
581         size_t count = iov_length(iov, nr_segs);
582
583         if (iocb->ki_filp->f_flags & O_DIRECT)
584                 return nfs_file_direct_write(iocb, iov, nr_segs, pos);
585
586         dprintk("NFS: write(%s/%s, %lu@%Ld)\n",
587                 dentry->d_parent->d_name.name, dentry->d_name.name,
588                 (unsigned long) count, (long long) pos);
589
590         result = -EBUSY;
591         if (IS_SWAPFILE(inode))
592                 goto out_swapfile;
593         /*
594          * O_APPEND implies that we must revalidate the file length.
595          */
596         if (iocb->ki_filp->f_flags & O_APPEND) {
597                 result = nfs_revalidate_file_size(inode, iocb->ki_filp);
598                 if (result)
599                         goto out;
600         }
601
602         result = count;
603         if (!count)
604                 goto out;
605
606         result = generic_file_aio_write(iocb, iov, nr_segs, pos);
607         if (result > 0)
608                 written = result;
609
610         /* Return error values for O_DSYNC and IS_SYNC() */
611         if (result >= 0 && nfs_need_sync_write(iocb->ki_filp, inode)) {
612                 int err = vfs_fsync(iocb->ki_filp, 0);
613                 if (err < 0)
614                         result = err;
615         }
616         if (result > 0)
617                 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
618 out:
619         return result;
620
621 out_swapfile:
622         printk(KERN_INFO "NFS: attempt to write to active swap file!\n");
623         goto out;
624 }
625
626 static ssize_t nfs_file_splice_write(struct pipe_inode_info *pipe,
627                                      struct file *filp, loff_t *ppos,
628                                      size_t count, unsigned int flags)
629 {
630         struct dentry *dentry = filp->f_path.dentry;
631         struct inode *inode = dentry->d_inode;
632         unsigned long written = 0;
633         ssize_t ret;
634
635         dprintk("NFS splice_write(%s/%s, %lu@%llu)\n",
636                 dentry->d_parent->d_name.name, dentry->d_name.name,
637                 (unsigned long) count, (unsigned long long) *ppos);
638
639         /*
640          * The combination of splice and an O_APPEND destination is disallowed.
641          */
642
643         ret = generic_file_splice_write(pipe, filp, ppos, count, flags);
644         if (ret > 0)
645                 written = ret;
646
647         if (ret >= 0 && nfs_need_sync_write(filp, inode)) {
648                 int err = vfs_fsync(filp, 0);
649                 if (err < 0)
650                         ret = err;
651         }
652         if (ret > 0)
653                 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
654         return ret;
655 }
656
657 static int
658 do_getlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
659 {
660         struct inode *inode = filp->f_mapping->host;
661         int status = 0;
662         unsigned int saved_type = fl->fl_type;
663
664         /* Try local locking first */
665         posix_test_lock(filp, fl);
666         if (fl->fl_type != F_UNLCK) {
667                 /* found a conflict */
668                 goto out;
669         }
670         fl->fl_type = saved_type;
671
672         if (nfs_have_delegation(inode, FMODE_READ))
673                 goto out_noconflict;
674
675         if (is_local)
676                 goto out_noconflict;
677
678         status = NFS_PROTO(inode)->lock(filp, cmd, fl);
679 out:
680         return status;
681 out_noconflict:
682         fl->fl_type = F_UNLCK;
683         goto out;
684 }
685
686 static int do_vfs_lock(struct file *file, struct file_lock *fl)
687 {
688         int res = 0;
689         switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
690                 case FL_POSIX:
691                         res = posix_lock_file_wait(file, fl);
692                         break;
693                 case FL_FLOCK:
694                         res = flock_lock_file_wait(file, fl);
695                         break;
696                 default:
697                         BUG();
698         }
699         return res;
700 }
701
702 static int
703 do_unlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
704 {
705         struct inode *inode = filp->f_mapping->host;
706         int status;
707
708         /*
709          * Flush all pending writes before doing anything
710          * with locks..
711          */
712         nfs_sync_mapping(filp->f_mapping);
713
714         /* NOTE: special case
715          *      If we're signalled while cleaning up locks on process exit, we
716          *      still need to complete the unlock.
717          */
718         /*
719          * Use local locking if mounted with "-onolock" or with appropriate
720          * "-olocal_lock="
721          */
722         if (!is_local)
723                 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
724         else
725                 status = do_vfs_lock(filp, fl);
726         return status;
727 }
728
729 static int
730 is_time_granular(struct timespec *ts) {
731         return ((ts->tv_sec == 0) && (ts->tv_nsec <= 1000));
732 }
733
734 static int
735 do_setlk(struct file *filp, int cmd, struct file_lock *fl, int is_local)
736 {
737         struct inode *inode = filp->f_mapping->host;
738         int status;
739
740         /*
741          * Flush all pending writes before doing anything
742          * with locks..
743          */
744         status = nfs_sync_mapping(filp->f_mapping);
745         if (status != 0)
746                 goto out;
747
748         /*
749          * Use local locking if mounted with "-onolock" or with appropriate
750          * "-olocal_lock="
751          */
752         if (!is_local)
753                 status = NFS_PROTO(inode)->lock(filp, cmd, fl);
754         else
755                 status = do_vfs_lock(filp, fl);
756         if (status < 0)
757                 goto out;
758
759         /*
760          * Revalidate the cache if the server has time stamps granular
761          * enough to detect subsecond changes.  Otherwise, clear the
762          * cache to prevent missing any changes.
763          *
764          * This makes locking act as a cache coherency point.
765          */
766         nfs_sync_mapping(filp->f_mapping);
767         if (!nfs_have_delegation(inode, FMODE_READ)) {
768                 if (is_time_granular(&NFS_SERVER(inode)->time_delta))
769                         __nfs_revalidate_inode(NFS_SERVER(inode), inode);
770                 else
771                         nfs_zap_caches(inode);
772         }
773 out:
774         return status;
775 }
776
777 /*
778  * Lock a (portion of) a file
779  */
780 static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl)
781 {
782         struct inode *inode = filp->f_mapping->host;
783         int ret = -ENOLCK;
784         int is_local = 0;
785
786         dprintk("NFS: lock(%s/%s, t=%x, fl=%x, r=%lld:%lld)\n",
787                         filp->f_path.dentry->d_parent->d_name.name,
788                         filp->f_path.dentry->d_name.name,
789                         fl->fl_type, fl->fl_flags,
790                         (long long)fl->fl_start, (long long)fl->fl_end);
791
792         nfs_inc_stats(inode, NFSIOS_VFSLOCK);
793
794         /* No mandatory locks over NFS */
795         if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
796                 goto out_err;
797
798         if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FCNTL)
799                 is_local = 1;
800
801         if (NFS_PROTO(inode)->lock_check_bounds != NULL) {
802                 ret = NFS_PROTO(inode)->lock_check_bounds(fl);
803                 if (ret < 0)
804                         goto out_err;
805         }
806
807         if (IS_GETLK(cmd))
808                 ret = do_getlk(filp, cmd, fl, is_local);
809         else if (fl->fl_type == F_UNLCK)
810                 ret = do_unlk(filp, cmd, fl, is_local);
811         else
812                 ret = do_setlk(filp, cmd, fl, is_local);
813 out_err:
814         return ret;
815 }
816
817 /*
818  * Lock a (portion of) a file
819  */
820 static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl)
821 {
822         struct inode *inode = filp->f_mapping->host;
823         int is_local = 0;
824
825         dprintk("NFS: flock(%s/%s, t=%x, fl=%x)\n",
826                         filp->f_path.dentry->d_parent->d_name.name,
827                         filp->f_path.dentry->d_name.name,
828                         fl->fl_type, fl->fl_flags);
829
830         if (!(fl->fl_flags & FL_FLOCK))
831                 return -ENOLCK;
832
833         if (NFS_SERVER(inode)->flags & NFS_MOUNT_LOCAL_FLOCK)
834                 is_local = 1;
835
836         /* We're simulating flock() locks using posix locks on the server */
837         fl->fl_owner = (fl_owner_t)filp;
838         fl->fl_start = 0;
839         fl->fl_end = OFFSET_MAX;
840
841         if (fl->fl_type == F_UNLCK)
842                 return do_unlk(filp, cmd, fl, is_local);
843         return do_setlk(filp, cmd, fl, is_local);
844 }
845
846 /*
847  * There is no protocol support for leases, so we have no way to implement
848  * them correctly in the face of opens by other clients.
849  */
850 static int nfs_setlease(struct file *file, long arg, struct file_lock **fl)
851 {
852         dprintk("NFS: setlease(%s/%s, arg=%ld)\n",
853                         file->f_path.dentry->d_parent->d_name.name,
854                         file->f_path.dentry->d_name.name, arg);
855         return -EINVAL;
856 }
857
858 const struct file_operations nfs_file_operations = {
859         .llseek         = nfs_file_llseek,
860         .read           = do_sync_read,
861         .write          = do_sync_write,
862         .aio_read       = nfs_file_read,
863         .aio_write      = nfs_file_write,
864         .mmap           = nfs_file_mmap,
865         .open           = nfs_file_open,
866         .flush          = nfs_file_flush,
867         .release        = nfs_file_release,
868         .fsync          = nfs_file_fsync,
869         .lock           = nfs_lock,
870         .flock          = nfs_flock,
871         .splice_read    = nfs_file_splice_read,
872         .splice_write   = nfs_file_splice_write,
873         .check_flags    = nfs_check_flags,
874         .setlease       = nfs_setlease,
875 };
876
877 #ifdef CONFIG_NFS_V4
878 static int
879 nfs4_file_open(struct inode *inode, struct file *filp)
880 {
881         /*
882          * NFSv4 opens are handled in d_lookup and d_revalidate. If we get to
883          * this point, then something is very wrong
884          */
885         dprintk("NFS: %s called! inode=%p filp=%p\n", __func__, inode, filp);
886         return -ENOTDIR;
887 }
888
889 const struct file_operations nfs4_file_operations = {
890         .llseek         = nfs_file_llseek,
891         .read           = do_sync_read,
892         .write          = do_sync_write,
893         .aio_read       = nfs_file_read,
894         .aio_write      = nfs_file_write,
895         .mmap           = nfs_file_mmap,
896         .open           = nfs4_file_open,
897         .flush          = nfs_file_flush,
898         .release        = nfs_file_release,
899         .fsync          = nfs_file_fsync,
900         .lock           = nfs_lock,
901         .flock          = nfs_flock,
902         .splice_read    = nfs_file_splice_read,
903         .splice_write   = nfs_file_splice_write,
904         .check_flags    = nfs_check_flags,
905         .setlease       = nfs_setlease,
906 };
907 #endif /* CONFIG_NFS_V4 */