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