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