5d051419527baafc06f2ec4644549469380a478d
[platform/adaptation/renesas_rcar/renesas_kernel.git] / fs / nfs / dir.c
1 /*
2  *  linux/fs/nfs/dir.c
3  *
4  *  Copyright (C) 1992  Rick Sladkey
5  *
6  *  nfs directory handling functions
7  *
8  * 10 Apr 1996  Added silly rename for unlink   --okir
9  * 28 Sep 1996  Improved directory cache --okir
10  * 23 Aug 1997  Claus Heine claus@momo.math.rwth-aachen.de 
11  *              Re-implemented silly rename for unlink, newly implemented
12  *              silly rename for nfs_rename() following the suggestions
13  *              of Olaf Kirch (okir) found in this file.
14  *              Following Linus comments on my original hack, this version
15  *              depends only on the dcache stuff and doesn't touch the inode
16  *              layer (iput() and friends).
17  *  6 Jun 1999  Cache readdir lookups in the page cache. -DaveM
18  */
19
20 #include <linux/module.h>
21 #include <linux/time.h>
22 #include <linux/errno.h>
23 #include <linux/stat.h>
24 #include <linux/fcntl.h>
25 #include <linux/string.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/mm.h>
29 #include <linux/sunrpc/clnt.h>
30 #include <linux/nfs_fs.h>
31 #include <linux/nfs_mount.h>
32 #include <linux/pagemap.h>
33 #include <linux/pagevec.h>
34 #include <linux/namei.h>
35 #include <linux/mount.h>
36 #include <linux/sched.h>
37 #include <linux/kmemleak.h>
38 #include <linux/xattr.h>
39
40 #include "delegation.h"
41 #include "iostat.h"
42 #include "internal.h"
43 #include "fscache.h"
44
45 /* #define NFS_DEBUG_VERBOSE 1 */
46
47 static int nfs_opendir(struct inode *, struct file *);
48 static int nfs_closedir(struct inode *, struct file *);
49 static int nfs_readdir(struct file *, struct dir_context *);
50 static int nfs_fsync_dir(struct file *, loff_t, loff_t, int);
51 static loff_t nfs_llseek_dir(struct file *, loff_t, int);
52 static void nfs_readdir_clear_array(struct page*);
53
54 const struct file_operations nfs_dir_operations = {
55         .llseek         = nfs_llseek_dir,
56         .read           = generic_read_dir,
57         .iterate        = nfs_readdir,
58         .open           = nfs_opendir,
59         .release        = nfs_closedir,
60         .fsync          = nfs_fsync_dir,
61 };
62
63 const struct address_space_operations nfs_dir_aops = {
64         .freepage = nfs_readdir_clear_array,
65 };
66
67 static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, struct rpc_cred *cred)
68 {
69         struct nfs_open_dir_context *ctx;
70         ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
71         if (ctx != NULL) {
72                 ctx->duped = 0;
73                 ctx->attr_gencount = NFS_I(dir)->attr_gencount;
74                 ctx->dir_cookie = 0;
75                 ctx->dup_cookie = 0;
76                 ctx->cred = get_rpccred(cred);
77                 return ctx;
78         }
79         return  ERR_PTR(-ENOMEM);
80 }
81
82 static void put_nfs_open_dir_context(struct nfs_open_dir_context *ctx)
83 {
84         put_rpccred(ctx->cred);
85         kfree(ctx);
86 }
87
88 /*
89  * Open file
90  */
91 static int
92 nfs_opendir(struct inode *inode, struct file *filp)
93 {
94         int res = 0;
95         struct nfs_open_dir_context *ctx;
96         struct rpc_cred *cred;
97
98         dfprintk(FILE, "NFS: open dir(%s/%s)\n",
99                         filp->f_path.dentry->d_parent->d_name.name,
100                         filp->f_path.dentry->d_name.name);
101
102         nfs_inc_stats(inode, NFSIOS_VFSOPEN);
103
104         cred = rpc_lookup_cred();
105         if (IS_ERR(cred))
106                 return PTR_ERR(cred);
107         ctx = alloc_nfs_open_dir_context(inode, cred);
108         if (IS_ERR(ctx)) {
109                 res = PTR_ERR(ctx);
110                 goto out;
111         }
112         filp->private_data = ctx;
113         if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
114                 /* This is a mountpoint, so d_revalidate will never
115                  * have been called, so we need to refresh the
116                  * inode (for close-open consistency) ourselves.
117                  */
118                 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
119         }
120 out:
121         put_rpccred(cred);
122         return res;
123 }
124
125 static int
126 nfs_closedir(struct inode *inode, struct file *filp)
127 {
128         put_nfs_open_dir_context(filp->private_data);
129         return 0;
130 }
131
132 struct nfs_cache_array_entry {
133         u64 cookie;
134         u64 ino;
135         struct qstr string;
136         unsigned char d_type;
137 };
138
139 struct nfs_cache_array {
140         int size;
141         int eof_index;
142         u64 last_cookie;
143         struct nfs_cache_array_entry array[0];
144 };
145
146 typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
147 typedef struct {
148         struct file     *file;
149         struct page     *page;
150         struct dir_context *ctx;
151         unsigned long   page_index;
152         u64             *dir_cookie;
153         u64             last_cookie;
154         loff_t          current_index;
155         decode_dirent_t decode;
156
157         unsigned long   timestamp;
158         unsigned long   gencount;
159         unsigned int    cache_entry_index;
160         unsigned int    plus:1;
161         unsigned int    eof:1;
162 } nfs_readdir_descriptor_t;
163
164 /*
165  * The caller is responsible for calling nfs_readdir_release_array(page)
166  */
167 static
168 struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
169 {
170         void *ptr;
171         if (page == NULL)
172                 return ERR_PTR(-EIO);
173         ptr = kmap(page);
174         if (ptr == NULL)
175                 return ERR_PTR(-ENOMEM);
176         return ptr;
177 }
178
179 static
180 void nfs_readdir_release_array(struct page *page)
181 {
182         kunmap(page);
183 }
184
185 /*
186  * we are freeing strings created by nfs_add_to_readdir_array()
187  */
188 static
189 void nfs_readdir_clear_array(struct page *page)
190 {
191         struct nfs_cache_array *array;
192         int i;
193
194         array = kmap_atomic(page);
195         for (i = 0; i < array->size; i++)
196                 kfree(array->array[i].string.name);
197         kunmap_atomic(array);
198 }
199
200 /*
201  * the caller is responsible for freeing qstr.name
202  * when called by nfs_readdir_add_to_array, the strings will be freed in
203  * nfs_clear_readdir_array()
204  */
205 static
206 int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
207 {
208         string->len = len;
209         string->name = kmemdup(name, len, GFP_KERNEL);
210         if (string->name == NULL)
211                 return -ENOMEM;
212         /*
213          * Avoid a kmemleak false positive. The pointer to the name is stored
214          * in a page cache page which kmemleak does not scan.
215          */
216         kmemleak_not_leak(string->name);
217         string->hash = full_name_hash(name, len);
218         return 0;
219 }
220
221 static
222 int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
223 {
224         struct nfs_cache_array *array = nfs_readdir_get_array(page);
225         struct nfs_cache_array_entry *cache_entry;
226         int ret;
227
228         if (IS_ERR(array))
229                 return PTR_ERR(array);
230
231         cache_entry = &array->array[array->size];
232
233         /* Check that this entry lies within the page bounds */
234         ret = -ENOSPC;
235         if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
236                 goto out;
237
238         cache_entry->cookie = entry->prev_cookie;
239         cache_entry->ino = entry->ino;
240         cache_entry->d_type = entry->d_type;
241         ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
242         if (ret)
243                 goto out;
244         array->last_cookie = entry->cookie;
245         array->size++;
246         if (entry->eof != 0)
247                 array->eof_index = array->size;
248 out:
249         nfs_readdir_release_array(page);
250         return ret;
251 }
252
253 static
254 int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
255 {
256         loff_t diff = desc->ctx->pos - desc->current_index;
257         unsigned int index;
258
259         if (diff < 0)
260                 goto out_eof;
261         if (diff >= array->size) {
262                 if (array->eof_index >= 0)
263                         goto out_eof;
264                 return -EAGAIN;
265         }
266
267         index = (unsigned int)diff;
268         *desc->dir_cookie = array->array[index].cookie;
269         desc->cache_entry_index = index;
270         return 0;
271 out_eof:
272         desc->eof = 1;
273         return -EBADCOOKIE;
274 }
275
276 static
277 int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
278 {
279         int i;
280         loff_t new_pos;
281         int status = -EAGAIN;
282
283         for (i = 0; i < array->size; i++) {
284                 if (array->array[i].cookie == *desc->dir_cookie) {
285                         struct nfs_inode *nfsi = NFS_I(file_inode(desc->file));
286                         struct nfs_open_dir_context *ctx = desc->file->private_data;
287
288                         new_pos = desc->current_index + i;
289                         if (ctx->attr_gencount != nfsi->attr_gencount
290                             || (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))) {
291                                 ctx->duped = 0;
292                                 ctx->attr_gencount = nfsi->attr_gencount;
293                         } else if (new_pos < desc->ctx->pos) {
294                                 if (ctx->duped > 0
295                                     && ctx->dup_cookie == *desc->dir_cookie) {
296                                         if (printk_ratelimit()) {
297                                                 pr_notice("NFS: directory %s/%s contains a readdir loop."
298                                                                 "Please contact your server vendor.  "
299                                                                 "The file: %s has duplicate cookie %llu\n",
300                                                                 desc->file->f_dentry->d_parent->d_name.name,
301                                                                 desc->file->f_dentry->d_name.name,
302                                                                 array->array[i].string.name,
303                                                                 *desc->dir_cookie);
304                                         }
305                                         status = -ELOOP;
306                                         goto out;
307                                 }
308                                 ctx->dup_cookie = *desc->dir_cookie;
309                                 ctx->duped = -1;
310                         }
311                         desc->ctx->pos = new_pos;
312                         desc->cache_entry_index = i;
313                         return 0;
314                 }
315         }
316         if (array->eof_index >= 0) {
317                 status = -EBADCOOKIE;
318                 if (*desc->dir_cookie == array->last_cookie)
319                         desc->eof = 1;
320         }
321 out:
322         return status;
323 }
324
325 static
326 int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
327 {
328         struct nfs_cache_array *array;
329         int status;
330
331         array = nfs_readdir_get_array(desc->page);
332         if (IS_ERR(array)) {
333                 status = PTR_ERR(array);
334                 goto out;
335         }
336
337         if (*desc->dir_cookie == 0)
338                 status = nfs_readdir_search_for_pos(array, desc);
339         else
340                 status = nfs_readdir_search_for_cookie(array, desc);
341
342         if (status == -EAGAIN) {
343                 desc->last_cookie = array->last_cookie;
344                 desc->current_index += array->size;
345                 desc->page_index++;
346         }
347         nfs_readdir_release_array(desc->page);
348 out:
349         return status;
350 }
351
352 /* Fill a page with xdr information before transferring to the cache page */
353 static
354 int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
355                         struct nfs_entry *entry, struct file *file, struct inode *inode)
356 {
357         struct nfs_open_dir_context *ctx = file->private_data;
358         struct rpc_cred *cred = ctx->cred;
359         unsigned long   timestamp, gencount;
360         int             error;
361
362  again:
363         timestamp = jiffies;
364         gencount = nfs_inc_attr_generation_counter();
365         error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
366                                           NFS_SERVER(inode)->dtsize, desc->plus);
367         if (error < 0) {
368                 /* We requested READDIRPLUS, but the server doesn't grok it */
369                 if (error == -ENOTSUPP && desc->plus) {
370                         NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
371                         clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
372                         desc->plus = 0;
373                         goto again;
374                 }
375                 goto error;
376         }
377         desc->timestamp = timestamp;
378         desc->gencount = gencount;
379 error:
380         return error;
381 }
382
383 static int xdr_decode(nfs_readdir_descriptor_t *desc,
384                       struct nfs_entry *entry, struct xdr_stream *xdr)
385 {
386         int error;
387
388         error = desc->decode(xdr, entry, desc->plus);
389         if (error)
390                 return error;
391         entry->fattr->time_start = desc->timestamp;
392         entry->fattr->gencount = desc->gencount;
393         return 0;
394 }
395
396 static
397 int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
398 {
399         if (dentry->d_inode == NULL)
400                 goto different;
401         if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
402                 goto different;
403         return 1;
404 different:
405         return 0;
406 }
407
408 static
409 bool nfs_use_readdirplus(struct inode *dir, struct dir_context *ctx)
410 {
411         if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
412                 return false;
413         if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
414                 return true;
415         if (ctx->pos == 0)
416                 return true;
417         return false;
418 }
419
420 /*
421  * This function is called by the lookup code to request the use of
422  * readdirplus to accelerate any future lookups in the same
423  * directory.
424  */
425 static
426 void nfs_advise_use_readdirplus(struct inode *dir)
427 {
428         set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags);
429 }
430
431 static
432 void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
433 {
434         struct qstr filename = QSTR_INIT(entry->name, entry->len);
435         struct dentry *dentry;
436         struct dentry *alias;
437         struct inode *dir = parent->d_inode;
438         struct inode *inode;
439
440         if (filename.name[0] == '.') {
441                 if (filename.len == 1)
442                         return;
443                 if (filename.len == 2 && filename.name[1] == '.')
444                         return;
445         }
446         filename.hash = full_name_hash(filename.name, filename.len);
447
448         dentry = d_lookup(parent, &filename);
449         if (dentry != NULL) {
450                 if (nfs_same_file(dentry, entry)) {
451                         nfs_refresh_inode(dentry->d_inode, entry->fattr);
452                         goto out;
453                 } else {
454                         if (d_invalidate(dentry) != 0)
455                                 goto out;
456                         dput(dentry);
457                 }
458         }
459
460         dentry = d_alloc(parent, &filename);
461         if (dentry == NULL)
462                 return;
463
464         inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
465         if (IS_ERR(inode))
466                 goto out;
467
468         alias = d_materialise_unique(dentry, inode);
469         if (IS_ERR(alias))
470                 goto out;
471         else if (alias) {
472                 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
473                 dput(alias);
474         } else
475                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
476
477 out:
478         dput(dentry);
479 }
480
481 /* Perform conversion from xdr to cache array */
482 static
483 int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
484                                 struct page **xdr_pages, struct page *page, unsigned int buflen)
485 {
486         struct xdr_stream stream;
487         struct xdr_buf buf;
488         struct page *scratch;
489         struct nfs_cache_array *array;
490         unsigned int count = 0;
491         int status;
492
493         scratch = alloc_page(GFP_KERNEL);
494         if (scratch == NULL)
495                 return -ENOMEM;
496
497         xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
498         xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
499
500         do {
501                 status = xdr_decode(desc, entry, &stream);
502                 if (status != 0) {
503                         if (status == -EAGAIN)
504                                 status = 0;
505                         break;
506                 }
507
508                 count++;
509
510                 if (desc->plus != 0)
511                         nfs_prime_dcache(desc->file->f_path.dentry, entry);
512
513                 status = nfs_readdir_add_to_array(entry, page);
514                 if (status != 0)
515                         break;
516         } while (!entry->eof);
517
518         if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
519                 array = nfs_readdir_get_array(page);
520                 if (!IS_ERR(array)) {
521                         array->eof_index = array->size;
522                         status = 0;
523                         nfs_readdir_release_array(page);
524                 } else
525                         status = PTR_ERR(array);
526         }
527
528         put_page(scratch);
529         return status;
530 }
531
532 static
533 void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
534 {
535         unsigned int i;
536         for (i = 0; i < npages; i++)
537                 put_page(pages[i]);
538 }
539
540 static
541 void nfs_readdir_free_large_page(void *ptr, struct page **pages,
542                 unsigned int npages)
543 {
544         nfs_readdir_free_pagearray(pages, npages);
545 }
546
547 /*
548  * nfs_readdir_large_page will allocate pages that must be freed with a call
549  * to nfs_readdir_free_large_page
550  */
551 static
552 int nfs_readdir_large_page(struct page **pages, unsigned int npages)
553 {
554         unsigned int i;
555
556         for (i = 0; i < npages; i++) {
557                 struct page *page = alloc_page(GFP_KERNEL);
558                 if (page == NULL)
559                         goto out_freepages;
560                 pages[i] = page;
561         }
562         return 0;
563
564 out_freepages:
565         nfs_readdir_free_pagearray(pages, i);
566         return -ENOMEM;
567 }
568
569 static
570 int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
571 {
572         struct page *pages[NFS_MAX_READDIR_PAGES];
573         void *pages_ptr = NULL;
574         struct nfs_entry entry;
575         struct file     *file = desc->file;
576         struct nfs_cache_array *array;
577         int status = -ENOMEM;
578         unsigned int array_size = ARRAY_SIZE(pages);
579
580         entry.prev_cookie = 0;
581         entry.cookie = desc->last_cookie;
582         entry.eof = 0;
583         entry.fh = nfs_alloc_fhandle();
584         entry.fattr = nfs_alloc_fattr();
585         entry.server = NFS_SERVER(inode);
586         if (entry.fh == NULL || entry.fattr == NULL)
587                 goto out;
588
589         array = nfs_readdir_get_array(page);
590         if (IS_ERR(array)) {
591                 status = PTR_ERR(array);
592                 goto out;
593         }
594         memset(array, 0, sizeof(struct nfs_cache_array));
595         array->eof_index = -1;
596
597         status = nfs_readdir_large_page(pages, array_size);
598         if (status < 0)
599                 goto out_release_array;
600         do {
601                 unsigned int pglen;
602                 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
603
604                 if (status < 0)
605                         break;
606                 pglen = status;
607                 status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
608                 if (status < 0) {
609                         if (status == -ENOSPC)
610                                 status = 0;
611                         break;
612                 }
613         } while (array->eof_index < 0);
614
615         nfs_readdir_free_large_page(pages_ptr, pages, array_size);
616 out_release_array:
617         nfs_readdir_release_array(page);
618 out:
619         nfs_free_fattr(entry.fattr);
620         nfs_free_fhandle(entry.fh);
621         return status;
622 }
623
624 /*
625  * Now we cache directories properly, by converting xdr information
626  * to an array that can be used for lookups later.  This results in
627  * fewer cache pages, since we can store more information on each page.
628  * We only need to convert from xdr once so future lookups are much simpler
629  */
630 static
631 int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
632 {
633         struct inode    *inode = file_inode(desc->file);
634         int ret;
635
636         ret = nfs_readdir_xdr_to_array(desc, page, inode);
637         if (ret < 0)
638                 goto error;
639         SetPageUptodate(page);
640
641         if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
642                 /* Should never happen */
643                 nfs_zap_mapping(inode, inode->i_mapping);
644         }
645         unlock_page(page);
646         return 0;
647  error:
648         unlock_page(page);
649         return ret;
650 }
651
652 static
653 void cache_page_release(nfs_readdir_descriptor_t *desc)
654 {
655         if (!desc->page->mapping)
656                 nfs_readdir_clear_array(desc->page);
657         page_cache_release(desc->page);
658         desc->page = NULL;
659 }
660
661 static
662 struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
663 {
664         return read_cache_page(file_inode(desc->file)->i_mapping,
665                         desc->page_index, (filler_t *)nfs_readdir_filler, desc);
666 }
667
668 /*
669  * Returns 0 if desc->dir_cookie was found on page desc->page_index
670  */
671 static
672 int find_cache_page(nfs_readdir_descriptor_t *desc)
673 {
674         int res;
675
676         desc->page = get_cache_page(desc);
677         if (IS_ERR(desc->page))
678                 return PTR_ERR(desc->page);
679
680         res = nfs_readdir_search_array(desc);
681         if (res != 0)
682                 cache_page_release(desc);
683         return res;
684 }
685
686 /* Search for desc->dir_cookie from the beginning of the page cache */
687 static inline
688 int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
689 {
690         int res;
691
692         if (desc->page_index == 0) {
693                 desc->current_index = 0;
694                 desc->last_cookie = 0;
695         }
696         do {
697                 res = find_cache_page(desc);
698         } while (res == -EAGAIN);
699         return res;
700 }
701
702 /*
703  * Once we've found the start of the dirent within a page: fill 'er up...
704  */
705 static 
706 int nfs_do_filldir(nfs_readdir_descriptor_t *desc)
707 {
708         struct file     *file = desc->file;
709         int i = 0;
710         int res = 0;
711         struct nfs_cache_array *array = NULL;
712         struct nfs_open_dir_context *ctx = file->private_data;
713
714         array = nfs_readdir_get_array(desc->page);
715         if (IS_ERR(array)) {
716                 res = PTR_ERR(array);
717                 goto out;
718         }
719
720         for (i = desc->cache_entry_index; i < array->size; i++) {
721                 struct nfs_cache_array_entry *ent;
722
723                 ent = &array->array[i];
724                 if (!dir_emit(desc->ctx, ent->string.name, ent->string.len,
725                     nfs_compat_user_ino64(ent->ino), ent->d_type)) {
726                         desc->eof = 1;
727                         break;
728                 }
729                 desc->ctx->pos++;
730                 if (i < (array->size-1))
731                         *desc->dir_cookie = array->array[i+1].cookie;
732                 else
733                         *desc->dir_cookie = array->last_cookie;
734                 if (ctx->duped != 0)
735                         ctx->duped = 1;
736         }
737         if (array->eof_index >= 0)
738                 desc->eof = 1;
739
740         nfs_readdir_release_array(desc->page);
741 out:
742         cache_page_release(desc);
743         dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
744                         (unsigned long long)*desc->dir_cookie, res);
745         return res;
746 }
747
748 /*
749  * If we cannot find a cookie in our cache, we suspect that this is
750  * because it points to a deleted file, so we ask the server to return
751  * whatever it thinks is the next entry. We then feed this to filldir.
752  * If all goes well, we should then be able to find our way round the
753  * cache on the next call to readdir_search_pagecache();
754  *
755  * NOTE: we cannot add the anonymous page to the pagecache because
756  *       the data it contains might not be page aligned. Besides,
757  *       we should already have a complete representation of the
758  *       directory in the page cache by the time we get here.
759  */
760 static inline
761 int uncached_readdir(nfs_readdir_descriptor_t *desc)
762 {
763         struct page     *page = NULL;
764         int             status;
765         struct inode *inode = file_inode(desc->file);
766         struct nfs_open_dir_context *ctx = desc->file->private_data;
767
768         dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
769                         (unsigned long long)*desc->dir_cookie);
770
771         page = alloc_page(GFP_HIGHUSER);
772         if (!page) {
773                 status = -ENOMEM;
774                 goto out;
775         }
776
777         desc->page_index = 0;
778         desc->last_cookie = *desc->dir_cookie;
779         desc->page = page;
780         ctx->duped = 0;
781
782         status = nfs_readdir_xdr_to_array(desc, page, inode);
783         if (status < 0)
784                 goto out_release;
785
786         status = nfs_do_filldir(desc);
787
788  out:
789         dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
790                         __func__, status);
791         return status;
792  out_release:
793         cache_page_release(desc);
794         goto out;
795 }
796
797 /* The file offset position represents the dirent entry number.  A
798    last cookie cache takes care of the common case of reading the
799    whole directory.
800  */
801 static int nfs_readdir(struct file *file, struct dir_context *ctx)
802 {
803         struct dentry   *dentry = file->f_path.dentry;
804         struct inode    *inode = dentry->d_inode;
805         nfs_readdir_descriptor_t my_desc,
806                         *desc = &my_desc;
807         struct nfs_open_dir_context *dir_ctx = file->private_data;
808         int res;
809
810         dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
811                         dentry->d_parent->d_name.name, dentry->d_name.name,
812                         (long long)ctx->pos);
813         nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
814
815         /*
816          * ctx->pos points to the dirent entry number.
817          * *desc->dir_cookie has the cookie for the next entry. We have
818          * to either find the entry with the appropriate number or
819          * revalidate the cookie.
820          */
821         memset(desc, 0, sizeof(*desc));
822
823         desc->file = file;
824         desc->ctx = ctx;
825         desc->dir_cookie = &dir_ctx->dir_cookie;
826         desc->decode = NFS_PROTO(inode)->decode_dirent;
827         desc->plus = nfs_use_readdirplus(inode, ctx) ? 1 : 0;
828
829         nfs_block_sillyrename(dentry);
830         res = nfs_revalidate_mapping(inode, file->f_mapping);
831         if (res < 0)
832                 goto out;
833
834         do {
835                 res = readdir_search_pagecache(desc);
836
837                 if (res == -EBADCOOKIE) {
838                         res = 0;
839                         /* This means either end of directory */
840                         if (*desc->dir_cookie && desc->eof == 0) {
841                                 /* Or that the server has 'lost' a cookie */
842                                 res = uncached_readdir(desc);
843                                 if (res == 0)
844                                         continue;
845                         }
846                         break;
847                 }
848                 if (res == -ETOOSMALL && desc->plus) {
849                         clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
850                         nfs_zap_caches(inode);
851                         desc->page_index = 0;
852                         desc->plus = 0;
853                         desc->eof = 0;
854                         continue;
855                 }
856                 if (res < 0)
857                         break;
858
859                 res = nfs_do_filldir(desc);
860                 if (res < 0)
861                         break;
862         } while (!desc->eof);
863 out:
864         nfs_unblock_sillyrename(dentry);
865         if (res > 0)
866                 res = 0;
867         dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
868                         dentry->d_parent->d_name.name, dentry->d_name.name,
869                         res);
870         return res;
871 }
872
873 static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int whence)
874 {
875         struct dentry *dentry = filp->f_path.dentry;
876         struct inode *inode = dentry->d_inode;
877         struct nfs_open_dir_context *dir_ctx = filp->private_data;
878
879         dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
880                         dentry->d_parent->d_name.name,
881                         dentry->d_name.name,
882                         offset, whence);
883
884         mutex_lock(&inode->i_mutex);
885         switch (whence) {
886                 case 1:
887                         offset += filp->f_pos;
888                 case 0:
889                         if (offset >= 0)
890                                 break;
891                 default:
892                         offset = -EINVAL;
893                         goto out;
894         }
895         if (offset != filp->f_pos) {
896                 filp->f_pos = offset;
897                 dir_ctx->dir_cookie = 0;
898                 dir_ctx->duped = 0;
899         }
900 out:
901         mutex_unlock(&inode->i_mutex);
902         return offset;
903 }
904
905 /*
906  * All directory operations under NFS are synchronous, so fsync()
907  * is a dummy operation.
908  */
909 static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
910                          int datasync)
911 {
912         struct dentry *dentry = filp->f_path.dentry;
913         struct inode *inode = dentry->d_inode;
914
915         dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
916                         dentry->d_parent->d_name.name, dentry->d_name.name,
917                         datasync);
918
919         mutex_lock(&inode->i_mutex);
920         nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
921         mutex_unlock(&inode->i_mutex);
922         return 0;
923 }
924
925 /**
926  * nfs_force_lookup_revalidate - Mark the directory as having changed
927  * @dir - pointer to directory inode
928  *
929  * This forces the revalidation code in nfs_lookup_revalidate() to do a
930  * full lookup on all child dentries of 'dir' whenever a change occurs
931  * on the server that might have invalidated our dcache.
932  *
933  * The caller should be holding dir->i_lock
934  */
935 void nfs_force_lookup_revalidate(struct inode *dir)
936 {
937         NFS_I(dir)->cache_change_attribute++;
938 }
939 EXPORT_SYMBOL_GPL(nfs_force_lookup_revalidate);
940
941 /*
942  * A check for whether or not the parent directory has changed.
943  * In the case it has, we assume that the dentries are untrustworthy
944  * and may need to be looked up again.
945  */
946 static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
947 {
948         if (IS_ROOT(dentry))
949                 return 1;
950         if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
951                 return 0;
952         if (!nfs_verify_change_attribute(dir, dentry->d_time))
953                 return 0;
954         /* Revalidate nfsi->cache_change_attribute before we declare a match */
955         if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
956                 return 0;
957         if (!nfs_verify_change_attribute(dir, dentry->d_time))
958                 return 0;
959         return 1;
960 }
961
962 /*
963  * Use intent information to check whether or not we're going to do
964  * an O_EXCL create using this path component.
965  */
966 static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
967 {
968         if (NFS_PROTO(dir)->version == 2)
969                 return 0;
970         return flags & LOOKUP_EXCL;
971 }
972
973 /*
974  * Inode and filehandle revalidation for lookups.
975  *
976  * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
977  * or if the intent information indicates that we're about to open this
978  * particular file and the "nocto" mount flag is not set.
979  *
980  */
981 static
982 int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
983 {
984         struct nfs_server *server = NFS_SERVER(inode);
985         int ret;
986
987         if (IS_AUTOMOUNT(inode))
988                 return 0;
989         /* VFS wants an on-the-wire revalidation */
990         if (flags & LOOKUP_REVAL)
991                 goto out_force;
992         /* This is an open(2) */
993         if ((flags & LOOKUP_OPEN) && !(server->flags & NFS_MOUNT_NOCTO) &&
994             (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
995                 goto out_force;
996 out:
997         return (inode->i_nlink == 0) ? -ENOENT : 0;
998 out_force:
999         ret = __nfs_revalidate_inode(server, inode);
1000         if (ret != 0)
1001                 return ret;
1002         goto out;
1003 }
1004
1005 /*
1006  * We judge how long we want to trust negative
1007  * dentries by looking at the parent inode mtime.
1008  *
1009  * If parent mtime has changed, we revalidate, else we wait for a
1010  * period corresponding to the parent's attribute cache timeout value.
1011  */
1012 static inline
1013 int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
1014                        unsigned int flags)
1015 {
1016         /* Don't revalidate a negative dentry if we're creating a new file */
1017         if (flags & LOOKUP_CREATE)
1018                 return 0;
1019         if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1020                 return 1;
1021         return !nfs_check_verifier(dir, dentry);
1022 }
1023
1024 /*
1025  * This is called every time the dcache has a lookup hit,
1026  * and we should check whether we can really trust that
1027  * lookup.
1028  *
1029  * NOTE! The hit can be a negative hit too, don't assume
1030  * we have an inode!
1031  *
1032  * If the parent directory is seen to have changed, we throw out the
1033  * cached dentry and do a new lookup.
1034  */
1035 static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
1036 {
1037         struct inode *dir;
1038         struct inode *inode;
1039         struct dentry *parent;
1040         struct nfs_fh *fhandle = NULL;
1041         struct nfs_fattr *fattr = NULL;
1042         int error;
1043
1044         if (flags & LOOKUP_RCU)
1045                 return -ECHILD;
1046
1047         parent = dget_parent(dentry);
1048         dir = parent->d_inode;
1049         nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
1050         inode = dentry->d_inode;
1051
1052         if (!inode) {
1053                 if (nfs_neg_need_reval(dir, dentry, flags))
1054                         goto out_bad;
1055                 goto out_valid_noent;
1056         }
1057
1058         if (is_bad_inode(inode)) {
1059                 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
1060                                 __func__, dentry->d_parent->d_name.name,
1061                                 dentry->d_name.name);
1062                 goto out_bad;
1063         }
1064
1065         if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
1066                 goto out_set_verifier;
1067
1068         /* Force a full look up iff the parent directory has changed */
1069         if (!nfs_is_exclusive_create(dir, flags) && nfs_check_verifier(dir, dentry)) {
1070                 if (nfs_lookup_verify_inode(inode, flags))
1071                         goto out_zap_parent;
1072                 goto out_valid;
1073         }
1074
1075         if (NFS_STALE(inode))
1076                 goto out_bad;
1077
1078         error = -ENOMEM;
1079         fhandle = nfs_alloc_fhandle();
1080         fattr = nfs_alloc_fattr();
1081         if (fhandle == NULL || fattr == NULL)
1082                 goto out_error;
1083
1084         error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1085         if (error)
1086                 goto out_bad;
1087         if (nfs_compare_fh(NFS_FH(inode), fhandle))
1088                 goto out_bad;
1089         if ((error = nfs_refresh_inode(inode, fattr)) != 0)
1090                 goto out_bad;
1091
1092         nfs_free_fattr(fattr);
1093         nfs_free_fhandle(fhandle);
1094 out_set_verifier:
1095         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1096  out_valid:
1097         /* Success: notify readdir to use READDIRPLUS */
1098         nfs_advise_use_readdirplus(dir);
1099  out_valid_noent:
1100         dput(parent);
1101         dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
1102                         __func__, dentry->d_parent->d_name.name,
1103                         dentry->d_name.name);
1104         return 1;
1105 out_zap_parent:
1106         nfs_zap_caches(dir);
1107  out_bad:
1108         nfs_free_fattr(fattr);
1109         nfs_free_fhandle(fhandle);
1110         nfs_mark_for_revalidate(dir);
1111         if (inode && S_ISDIR(inode->i_mode)) {
1112                 /* Purge readdir caches. */
1113                 nfs_zap_caches(inode);
1114                 /* If we have submounts, don't unhash ! */
1115                 if (have_submounts(dentry))
1116                         goto out_valid;
1117                 if (dentry->d_flags & DCACHE_DISCONNECTED)
1118                         goto out_valid;
1119                 shrink_dcache_parent(dentry);
1120         }
1121         d_drop(dentry);
1122         dput(parent);
1123         dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
1124                         __func__, dentry->d_parent->d_name.name,
1125                         dentry->d_name.name);
1126         return 0;
1127 out_error:
1128         nfs_free_fattr(fattr);
1129         nfs_free_fhandle(fhandle);
1130         dput(parent);
1131         dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1132                         __func__, dentry->d_parent->d_name.name,
1133                         dentry->d_name.name, error);
1134         return error;
1135 }
1136
1137 /*
1138  * A weaker form of d_revalidate for revalidating just the dentry->d_inode
1139  * when we don't really care about the dentry name. This is called when a
1140  * pathwalk ends on a dentry that was not found via a normal lookup in the
1141  * parent dir (e.g.: ".", "..", procfs symlinks or mountpoint traversals).
1142  *
1143  * In this situation, we just want to verify that the inode itself is OK
1144  * since the dentry might have changed on the server.
1145  */
1146 static int nfs_weak_revalidate(struct dentry *dentry, unsigned int flags)
1147 {
1148         int error;
1149         struct inode *inode = dentry->d_inode;
1150
1151         /*
1152          * I believe we can only get a negative dentry here in the case of a
1153          * procfs-style symlink. Just assume it's correct for now, but we may
1154          * eventually need to do something more here.
1155          */
1156         if (!inode) {
1157                 dfprintk(LOOKUPCACHE, "%s: %s/%s has negative inode\n",
1158                                 __func__, dentry->d_parent->d_name.name,
1159                                 dentry->d_name.name);
1160                 return 1;
1161         }
1162
1163         if (is_bad_inode(inode)) {
1164                 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
1165                                 __func__, dentry->d_parent->d_name.name,
1166                                 dentry->d_name.name);
1167                 return 0;
1168         }
1169
1170         error = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1171         dfprintk(LOOKUPCACHE, "NFS: %s: inode %lu is %s\n",
1172                         __func__, inode->i_ino, error ? "invalid" : "valid");
1173         return !error;
1174 }
1175
1176 /*
1177  * This is called from dput() when d_count is going to 0.
1178  */
1179 static int nfs_dentry_delete(const struct dentry *dentry)
1180 {
1181         dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1182                 dentry->d_parent->d_name.name, dentry->d_name.name,
1183                 dentry->d_flags);
1184
1185         /* Unhash any dentry with a stale inode */
1186         if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1187                 return 1;
1188
1189         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1190                 /* Unhash it, so that ->d_iput() would be called */
1191                 return 1;
1192         }
1193         if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1194                 /* Unhash it, so that ancestors of killed async unlink
1195                  * files will be cleaned up during umount */
1196                 return 1;
1197         }
1198         return 0;
1199
1200 }
1201
1202 /* Ensure that we revalidate inode->i_nlink */
1203 static void nfs_drop_nlink(struct inode *inode)
1204 {
1205         spin_lock(&inode->i_lock);
1206         /* drop the inode if we're reasonably sure this is the last link */
1207         if (inode->i_nlink == 1)
1208                 clear_nlink(inode);
1209         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
1210         spin_unlock(&inode->i_lock);
1211 }
1212
1213 /*
1214  * Called when the dentry loses inode.
1215  * We use it to clean up silly-renamed files.
1216  */
1217 static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1218 {
1219         if (S_ISDIR(inode->i_mode))
1220                 /* drop any readdir cache as it could easily be old */
1221                 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1222
1223         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1224                 nfs_complete_unlink(dentry, inode);
1225                 nfs_drop_nlink(inode);
1226         }
1227         iput(inode);
1228 }
1229
1230 static void nfs_d_release(struct dentry *dentry)
1231 {
1232         /* free cached devname value, if it survived that far */
1233         if (unlikely(dentry->d_fsdata)) {
1234                 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1235                         WARN_ON(1);
1236                 else
1237                         kfree(dentry->d_fsdata);
1238         }
1239 }
1240
1241 const struct dentry_operations nfs_dentry_operations = {
1242         .d_revalidate   = nfs_lookup_revalidate,
1243         .d_weak_revalidate      = nfs_weak_revalidate,
1244         .d_delete       = nfs_dentry_delete,
1245         .d_iput         = nfs_dentry_iput,
1246         .d_automount    = nfs_d_automount,
1247         .d_release      = nfs_d_release,
1248 };
1249 EXPORT_SYMBOL_GPL(nfs_dentry_operations);
1250
1251 struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
1252 {
1253         struct dentry *res;
1254         struct dentry *parent;
1255         struct inode *inode = NULL;
1256         struct nfs_fh *fhandle = NULL;
1257         struct nfs_fattr *fattr = NULL;
1258         int error;
1259
1260         dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1261                 dentry->d_parent->d_name.name, dentry->d_name.name);
1262         nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
1263
1264         res = ERR_PTR(-ENAMETOOLONG);
1265         if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1266                 goto out;
1267
1268         /*
1269          * If we're doing an exclusive create, optimize away the lookup
1270          * but don't hash the dentry.
1271          */
1272         if (nfs_is_exclusive_create(dir, flags)) {
1273                 d_instantiate(dentry, NULL);
1274                 res = NULL;
1275                 goto out;
1276         }
1277
1278         res = ERR_PTR(-ENOMEM);
1279         fhandle = nfs_alloc_fhandle();
1280         fattr = nfs_alloc_fattr();
1281         if (fhandle == NULL || fattr == NULL)
1282                 goto out;
1283
1284         parent = dentry->d_parent;
1285         /* Protect against concurrent sillydeletes */
1286         nfs_block_sillyrename(parent);
1287         error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1288         if (error == -ENOENT)
1289                 goto no_entry;
1290         if (error < 0) {
1291                 res = ERR_PTR(error);
1292                 goto out_unblock_sillyrename;
1293         }
1294         inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
1295         res = ERR_CAST(inode);
1296         if (IS_ERR(res))
1297                 goto out_unblock_sillyrename;
1298
1299         /* Success: notify readdir to use READDIRPLUS */
1300         nfs_advise_use_readdirplus(dir);
1301
1302 no_entry:
1303         res = d_materialise_unique(dentry, inode);
1304         if (res != NULL) {
1305                 if (IS_ERR(res))
1306                         goto out_unblock_sillyrename;
1307                 dentry = res;
1308         }
1309         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1310 out_unblock_sillyrename:
1311         nfs_unblock_sillyrename(parent);
1312 out:
1313         nfs_free_fattr(fattr);
1314         nfs_free_fhandle(fhandle);
1315         return res;
1316 }
1317 EXPORT_SYMBOL_GPL(nfs_lookup);
1318
1319 #if IS_ENABLED(CONFIG_NFS_V4)
1320 static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
1321
1322 const struct dentry_operations nfs4_dentry_operations = {
1323         .d_revalidate   = nfs4_lookup_revalidate,
1324         .d_delete       = nfs_dentry_delete,
1325         .d_iput         = nfs_dentry_iput,
1326         .d_automount    = nfs_d_automount,
1327         .d_release      = nfs_d_release,
1328 };
1329 EXPORT_SYMBOL_GPL(nfs4_dentry_operations);
1330
1331 static fmode_t flags_to_mode(int flags)
1332 {
1333         fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1334         if ((flags & O_ACCMODE) != O_WRONLY)
1335                 res |= FMODE_READ;
1336         if ((flags & O_ACCMODE) != O_RDONLY)
1337                 res |= FMODE_WRITE;
1338         return res;
1339 }
1340
1341 static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags)
1342 {
1343         return alloc_nfs_open_context(dentry, flags_to_mode(open_flags));
1344 }
1345
1346 static int do_open(struct inode *inode, struct file *filp)
1347 {
1348         nfs_fscache_set_inode_cookie(inode, filp);
1349         return 0;
1350 }
1351
1352 static int nfs_finish_open(struct nfs_open_context *ctx,
1353                            struct dentry *dentry,
1354                            struct file *file, unsigned open_flags,
1355                            int *opened)
1356 {
1357         int err;
1358
1359         if (ctx->dentry != dentry) {
1360                 dput(ctx->dentry);
1361                 ctx->dentry = dget(dentry);
1362         }
1363
1364         /* If the open_intent is for execute, we have an extra check to make */
1365         if (ctx->mode & FMODE_EXEC) {
1366                 err = nfs_may_open(dentry->d_inode, ctx->cred, open_flags);
1367                 if (err < 0)
1368                         goto out;
1369         }
1370
1371         err = finish_open(file, dentry, do_open, opened);
1372         if (err)
1373                 goto out;
1374         nfs_file_set_open_context(file, ctx);
1375
1376 out:
1377         put_nfs_open_context(ctx);
1378         return err;
1379 }
1380
1381 int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
1382                     struct file *file, unsigned open_flags,
1383                     umode_t mode, int *opened)
1384 {
1385         struct nfs_open_context *ctx;
1386         struct dentry *res;
1387         struct iattr attr = { .ia_valid = ATTR_OPEN };
1388         struct inode *inode;
1389         int err;
1390
1391         /* Expect a negative dentry */
1392         BUG_ON(dentry->d_inode);
1393
1394         dfprintk(VFS, "NFS: atomic_open(%s/%ld), %s\n",
1395                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1396
1397         /* NFS only supports OPEN on regular files */
1398         if ((open_flags & O_DIRECTORY)) {
1399                 if (!d_unhashed(dentry)) {
1400                         /*
1401                          * Hashed negative dentry with O_DIRECTORY: dentry was
1402                          * revalidated and is fine, no need to perform lookup
1403                          * again
1404                          */
1405                         return -ENOENT;
1406                 }
1407                 goto no_open;
1408         }
1409
1410         if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1411                 return -ENAMETOOLONG;
1412
1413         if (open_flags & O_CREAT) {
1414                 attr.ia_valid |= ATTR_MODE;
1415                 attr.ia_mode = mode & ~current_umask();
1416         }
1417         if (open_flags & O_TRUNC) {
1418                 attr.ia_valid |= ATTR_SIZE;
1419                 attr.ia_size = 0;
1420         }
1421
1422         ctx = create_nfs_open_context(dentry, open_flags);
1423         err = PTR_ERR(ctx);
1424         if (IS_ERR(ctx))
1425                 goto out;
1426
1427         nfs_block_sillyrename(dentry->d_parent);
1428         inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
1429         d_drop(dentry);
1430         if (IS_ERR(inode)) {
1431                 nfs_unblock_sillyrename(dentry->d_parent);
1432                 put_nfs_open_context(ctx);
1433                 err = PTR_ERR(inode);
1434                 switch (err) {
1435                 case -ENOENT:
1436                         d_add(dentry, NULL);
1437                         break;
1438                 case -EISDIR:
1439                 case -ENOTDIR:
1440                         goto no_open;
1441                 case -ELOOP:
1442                         if (!(open_flags & O_NOFOLLOW))
1443                                 goto no_open;
1444                         break;
1445                         /* case -EINVAL: */
1446                 default:
1447                         break;
1448                 }
1449                 goto out;
1450         }
1451         res = d_add_unique(dentry, inode);
1452         if (res != NULL)
1453                 dentry = res;
1454
1455         nfs_unblock_sillyrename(dentry->d_parent);
1456         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1457
1458         err = nfs_finish_open(ctx, dentry, file, open_flags, opened);
1459
1460         dput(res);
1461 out:
1462         return err;
1463
1464 no_open:
1465         res = nfs_lookup(dir, dentry, 0);
1466         err = PTR_ERR(res);
1467         if (IS_ERR(res))
1468                 goto out;
1469
1470         return finish_no_open(file, res);
1471 }
1472 EXPORT_SYMBOL_GPL(nfs_atomic_open);
1473
1474 static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
1475 {
1476         struct dentry *parent = NULL;
1477         struct inode *inode;
1478         struct inode *dir;
1479         int ret = 0;
1480
1481         if (flags & LOOKUP_RCU)
1482                 return -ECHILD;
1483
1484         if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
1485                 goto no_open;
1486         if (d_mountpoint(dentry))
1487                 goto no_open;
1488         if (NFS_SB(dentry->d_sb)->caps & NFS_CAP_ATOMIC_OPEN_V1)
1489                 goto no_open;
1490
1491         inode = dentry->d_inode;
1492         parent = dget_parent(dentry);
1493         dir = parent->d_inode;
1494
1495         /* We can't create new files in nfs_open_revalidate(), so we
1496          * optimize away revalidation of negative dentries.
1497          */
1498         if (inode == NULL) {
1499                 if (!nfs_neg_need_reval(dir, dentry, flags))
1500                         ret = 1;
1501                 goto out;
1502         }
1503
1504         /* NFS only supports OPEN on regular files */
1505         if (!S_ISREG(inode->i_mode))
1506                 goto no_open_dput;
1507         /* We cannot do exclusive creation on a positive dentry */
1508         if (flags & LOOKUP_EXCL)
1509                 goto no_open_dput;
1510
1511         /* Let f_op->open() actually open (and revalidate) the file */
1512         ret = 1;
1513
1514 out:
1515         dput(parent);
1516         return ret;
1517
1518 no_open_dput:
1519         dput(parent);
1520 no_open:
1521         return nfs_lookup_revalidate(dentry, flags);
1522 }
1523
1524 #endif /* CONFIG_NFSV4 */
1525
1526 /*
1527  * Code common to create, mkdir, and mknod.
1528  */
1529 int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1530                                 struct nfs_fattr *fattr)
1531 {
1532         struct dentry *parent = dget_parent(dentry);
1533         struct inode *dir = parent->d_inode;
1534         struct inode *inode;
1535         int error = -EACCES;
1536
1537         d_drop(dentry);
1538
1539         /* We may have been initialized further down */
1540         if (dentry->d_inode)
1541                 goto out;
1542         if (fhandle->size == 0) {
1543                 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1544                 if (error)
1545                         goto out_error;
1546         }
1547         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1548         if (!(fattr->valid & NFS_ATTR_FATTR)) {
1549                 struct nfs_server *server = NFS_SB(dentry->d_sb);
1550                 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
1551                 if (error < 0)
1552                         goto out_error;
1553         }
1554         inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
1555         error = PTR_ERR(inode);
1556         if (IS_ERR(inode))
1557                 goto out_error;
1558         d_add(dentry, inode);
1559 out:
1560         dput(parent);
1561         return 0;
1562 out_error:
1563         nfs_mark_for_revalidate(dir);
1564         dput(parent);
1565         return error;
1566 }
1567 EXPORT_SYMBOL_GPL(nfs_instantiate);
1568
1569 /*
1570  * Following a failed create operation, we drop the dentry rather
1571  * than retain a negative dentry. This avoids a problem in the event
1572  * that the operation succeeded on the server, but an error in the
1573  * reply path made it appear to have failed.
1574  */
1575 int nfs_create(struct inode *dir, struct dentry *dentry,
1576                 umode_t mode, bool excl)
1577 {
1578         struct iattr attr;
1579         int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
1580         int error;
1581
1582         dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1583                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1584
1585         attr.ia_mode = mode;
1586         attr.ia_valid = ATTR_MODE;
1587
1588         error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
1589         if (error != 0)
1590                 goto out_err;
1591         return 0;
1592 out_err:
1593         d_drop(dentry);
1594         return error;
1595 }
1596 EXPORT_SYMBOL_GPL(nfs_create);
1597
1598 /*
1599  * See comments for nfs_proc_create regarding failed operations.
1600  */
1601 int
1602 nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
1603 {
1604         struct iattr attr;
1605         int status;
1606
1607         dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1608                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1609
1610         if (!new_valid_dev(rdev))
1611                 return -EINVAL;
1612
1613         attr.ia_mode = mode;
1614         attr.ia_valid = ATTR_MODE;
1615
1616         status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
1617         if (status != 0)
1618                 goto out_err;
1619         return 0;
1620 out_err:
1621         d_drop(dentry);
1622         return status;
1623 }
1624 EXPORT_SYMBOL_GPL(nfs_mknod);
1625
1626 /*
1627  * See comments for nfs_proc_create regarding failed operations.
1628  */
1629 int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1630 {
1631         struct iattr attr;
1632         int error;
1633
1634         dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1635                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1636
1637         attr.ia_valid = ATTR_MODE;
1638         attr.ia_mode = mode | S_IFDIR;
1639
1640         error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
1641         if (error != 0)
1642                 goto out_err;
1643         return 0;
1644 out_err:
1645         d_drop(dentry);
1646         return error;
1647 }
1648 EXPORT_SYMBOL_GPL(nfs_mkdir);
1649
1650 static void nfs_dentry_handle_enoent(struct dentry *dentry)
1651 {
1652         if (dentry->d_inode != NULL && !d_unhashed(dentry))
1653                 d_delete(dentry);
1654 }
1655
1656 int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1657 {
1658         int error;
1659
1660         dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1661                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1662
1663         error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1664         /* Ensure the VFS deletes this inode */
1665         if (error == 0 && dentry->d_inode != NULL)
1666                 clear_nlink(dentry->d_inode);
1667         else if (error == -ENOENT)
1668                 nfs_dentry_handle_enoent(dentry);
1669
1670         return error;
1671 }
1672 EXPORT_SYMBOL_GPL(nfs_rmdir);
1673
1674 /*
1675  * Remove a file after making sure there are no pending writes,
1676  * and after checking that the file has only one user. 
1677  *
1678  * We invalidate the attribute cache and free the inode prior to the operation
1679  * to avoid possible races if the server reuses the inode.
1680  */
1681 static int nfs_safe_remove(struct dentry *dentry)
1682 {
1683         struct inode *dir = dentry->d_parent->d_inode;
1684         struct inode *inode = dentry->d_inode;
1685         int error = -EBUSY;
1686                 
1687         dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1688                 dentry->d_parent->d_name.name, dentry->d_name.name);
1689
1690         /* If the dentry was sillyrenamed, we simply call d_delete() */
1691         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1692                 error = 0;
1693                 goto out;
1694         }
1695
1696         if (inode != NULL) {
1697                 NFS_PROTO(inode)->return_delegation(inode);
1698                 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1699                 if (error == 0)
1700                         nfs_drop_nlink(inode);
1701         } else
1702                 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1703         if (error == -ENOENT)
1704                 nfs_dentry_handle_enoent(dentry);
1705 out:
1706         return error;
1707 }
1708
1709 /*  We do silly rename. In case sillyrename() returns -EBUSY, the inode
1710  *  belongs to an active ".nfs..." file and we return -EBUSY.
1711  *
1712  *  If sillyrename() returns 0, we do nothing, otherwise we unlink.
1713  */
1714 int nfs_unlink(struct inode *dir, struct dentry *dentry)
1715 {
1716         int error;
1717         int need_rehash = 0;
1718
1719         dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1720                 dir->i_ino, dentry->d_name.name);
1721
1722         spin_lock(&dentry->d_lock);
1723         if (dentry->d_count > 1) {
1724                 spin_unlock(&dentry->d_lock);
1725                 /* Start asynchronous writeout of the inode */
1726                 write_inode_now(dentry->d_inode, 0);
1727                 error = nfs_sillyrename(dir, dentry);
1728                 return error;
1729         }
1730         if (!d_unhashed(dentry)) {
1731                 __d_drop(dentry);
1732                 need_rehash = 1;
1733         }
1734         spin_unlock(&dentry->d_lock);
1735         error = nfs_safe_remove(dentry);
1736         if (!error || error == -ENOENT) {
1737                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1738         } else if (need_rehash)
1739                 d_rehash(dentry);
1740         return error;
1741 }
1742 EXPORT_SYMBOL_GPL(nfs_unlink);
1743
1744 /*
1745  * To create a symbolic link, most file systems instantiate a new inode,
1746  * add a page to it containing the path, then write it out to the disk
1747  * using prepare_write/commit_write.
1748  *
1749  * Unfortunately the NFS client can't create the in-core inode first
1750  * because it needs a file handle to create an in-core inode (see
1751  * fs/nfs/inode.c:nfs_fhget).  We only have a file handle *after* the
1752  * symlink request has completed on the server.
1753  *
1754  * So instead we allocate a raw page, copy the symname into it, then do
1755  * the SYMLINK request with the page as the buffer.  If it succeeds, we
1756  * now have a new file handle and can instantiate an in-core NFS inode
1757  * and move the raw page into its mapping.
1758  */
1759 int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1760 {
1761         struct pagevec lru_pvec;
1762         struct page *page;
1763         char *kaddr;
1764         struct iattr attr;
1765         unsigned int pathlen = strlen(symname);
1766         int error;
1767
1768         dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1769                 dir->i_ino, dentry->d_name.name, symname);
1770
1771         if (pathlen > PAGE_SIZE)
1772                 return -ENAMETOOLONG;
1773
1774         attr.ia_mode = S_IFLNK | S_IRWXUGO;
1775         attr.ia_valid = ATTR_MODE;
1776
1777         page = alloc_page(GFP_HIGHUSER);
1778         if (!page)
1779                 return -ENOMEM;
1780
1781         kaddr = kmap_atomic(page);
1782         memcpy(kaddr, symname, pathlen);
1783         if (pathlen < PAGE_SIZE)
1784                 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1785         kunmap_atomic(kaddr);
1786
1787         error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
1788         if (error != 0) {
1789                 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1790                         dir->i_sb->s_id, dir->i_ino,
1791                         dentry->d_name.name, symname, error);
1792                 d_drop(dentry);
1793                 __free_page(page);
1794                 return error;
1795         }
1796
1797         /*
1798          * No big deal if we can't add this page to the page cache here.
1799          * READLINK will get the missing page from the server if needed.
1800          */
1801         pagevec_init(&lru_pvec, 0);
1802         if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1803                                                         GFP_KERNEL)) {
1804                 pagevec_add(&lru_pvec, page);
1805                 pagevec_lru_add_file(&lru_pvec);
1806                 SetPageUptodate(page);
1807                 unlock_page(page);
1808         } else
1809                 __free_page(page);
1810
1811         return 0;
1812 }
1813 EXPORT_SYMBOL_GPL(nfs_symlink);
1814
1815 int
1816 nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1817 {
1818         struct inode *inode = old_dentry->d_inode;
1819         int error;
1820
1821         dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1822                 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1823                 dentry->d_parent->d_name.name, dentry->d_name.name);
1824
1825         NFS_PROTO(inode)->return_delegation(inode);
1826
1827         d_drop(dentry);
1828         error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
1829         if (error == 0) {
1830                 ihold(inode);
1831                 d_add(dentry, inode);
1832         }
1833         return error;
1834 }
1835 EXPORT_SYMBOL_GPL(nfs_link);
1836
1837 /*
1838  * RENAME
1839  * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1840  * different file handle for the same inode after a rename (e.g. when
1841  * moving to a different directory). A fail-safe method to do so would
1842  * be to look up old_dir/old_name, create a link to new_dir/new_name and
1843  * rename the old file using the sillyrename stuff. This way, the original
1844  * file in old_dir will go away when the last process iput()s the inode.
1845  *
1846  * FIXED.
1847  * 
1848  * It actually works quite well. One needs to have the possibility for
1849  * at least one ".nfs..." file in each directory the file ever gets
1850  * moved or linked to which happens automagically with the new
1851  * implementation that only depends on the dcache stuff instead of
1852  * using the inode layer
1853  *
1854  * Unfortunately, things are a little more complicated than indicated
1855  * above. For a cross-directory move, we want to make sure we can get
1856  * rid of the old inode after the operation.  This means there must be
1857  * no pending writes (if it's a file), and the use count must be 1.
1858  * If these conditions are met, we can drop the dentries before doing
1859  * the rename.
1860  */
1861 int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1862                       struct inode *new_dir, struct dentry *new_dentry)
1863 {
1864         struct inode *old_inode = old_dentry->d_inode;
1865         struct inode *new_inode = new_dentry->d_inode;
1866         struct dentry *dentry = NULL, *rehash = NULL;
1867         int error = -EBUSY;
1868
1869         dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1870                  old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1871                  new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1872                  new_dentry->d_count);
1873
1874         /*
1875          * For non-directories, check whether the target is busy and if so,
1876          * make a copy of the dentry and then do a silly-rename. If the
1877          * silly-rename succeeds, the copied dentry is hashed and becomes
1878          * the new target.
1879          */
1880         if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1881                 /*
1882                  * To prevent any new references to the target during the
1883                  * rename, we unhash the dentry in advance.
1884                  */
1885                 if (!d_unhashed(new_dentry)) {
1886                         d_drop(new_dentry);
1887                         rehash = new_dentry;
1888                 }
1889
1890                 if (new_dentry->d_count > 2) {
1891                         int err;
1892
1893                         /* copy the target dentry's name */
1894                         dentry = d_alloc(new_dentry->d_parent,
1895                                          &new_dentry->d_name);
1896                         if (!dentry)
1897                                 goto out;
1898
1899                         /* silly-rename the existing target ... */
1900                         err = nfs_sillyrename(new_dir, new_dentry);
1901                         if (err)
1902                                 goto out;
1903
1904                         new_dentry = dentry;
1905                         rehash = NULL;
1906                         new_inode = NULL;
1907                 }
1908         }
1909
1910         NFS_PROTO(old_inode)->return_delegation(old_inode);
1911         if (new_inode != NULL)
1912                 NFS_PROTO(new_inode)->return_delegation(new_inode);
1913
1914         error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1915                                            new_dir, &new_dentry->d_name);
1916         nfs_mark_for_revalidate(old_inode);
1917 out:
1918         if (rehash)
1919                 d_rehash(rehash);
1920         if (!error) {
1921                 if (new_inode != NULL)
1922                         nfs_drop_nlink(new_inode);
1923                 d_move(old_dentry, new_dentry);
1924                 nfs_set_verifier(new_dentry,
1925                                         nfs_save_change_attribute(new_dir));
1926         } else if (error == -ENOENT)
1927                 nfs_dentry_handle_enoent(old_dentry);
1928
1929         /* new dentry created? */
1930         if (dentry)
1931                 dput(dentry);
1932         return error;
1933 }
1934 EXPORT_SYMBOL_GPL(nfs_rename);
1935
1936 static DEFINE_SPINLOCK(nfs_access_lru_lock);
1937 static LIST_HEAD(nfs_access_lru_list);
1938 static atomic_long_t nfs_access_nr_entries;
1939
1940 static void nfs_access_free_entry(struct nfs_access_entry *entry)
1941 {
1942         put_rpccred(entry->cred);
1943         kfree(entry);
1944         smp_mb__before_atomic_dec();
1945         atomic_long_dec(&nfs_access_nr_entries);
1946         smp_mb__after_atomic_dec();
1947 }
1948
1949 static void nfs_access_free_list(struct list_head *head)
1950 {
1951         struct nfs_access_entry *cache;
1952
1953         while (!list_empty(head)) {
1954                 cache = list_entry(head->next, struct nfs_access_entry, lru);
1955                 list_del(&cache->lru);
1956                 nfs_access_free_entry(cache);
1957         }
1958 }
1959
1960 int nfs_access_cache_shrinker(struct shrinker *shrink,
1961                               struct shrink_control *sc)
1962 {
1963         LIST_HEAD(head);
1964         struct nfs_inode *nfsi, *next;
1965         struct nfs_access_entry *cache;
1966         int nr_to_scan = sc->nr_to_scan;
1967         gfp_t gfp_mask = sc->gfp_mask;
1968
1969         if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1970                 return (nr_to_scan == 0) ? 0 : -1;
1971
1972         spin_lock(&nfs_access_lru_lock);
1973         list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
1974                 struct inode *inode;
1975
1976                 if (nr_to_scan-- == 0)
1977                         break;
1978                 inode = &nfsi->vfs_inode;
1979                 spin_lock(&inode->i_lock);
1980                 if (list_empty(&nfsi->access_cache_entry_lru))
1981                         goto remove_lru_entry;
1982                 cache = list_entry(nfsi->access_cache_entry_lru.next,
1983                                 struct nfs_access_entry, lru);
1984                 list_move(&cache->lru, &head);
1985                 rb_erase(&cache->rb_node, &nfsi->access_cache);
1986                 if (!list_empty(&nfsi->access_cache_entry_lru))
1987                         list_move_tail(&nfsi->access_cache_inode_lru,
1988                                         &nfs_access_lru_list);
1989                 else {
1990 remove_lru_entry:
1991                         list_del_init(&nfsi->access_cache_inode_lru);
1992                         smp_mb__before_clear_bit();
1993                         clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
1994                         smp_mb__after_clear_bit();
1995                 }
1996                 spin_unlock(&inode->i_lock);
1997         }
1998         spin_unlock(&nfs_access_lru_lock);
1999         nfs_access_free_list(&head);
2000         return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
2001 }
2002
2003 static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
2004 {
2005         struct rb_root *root_node = &nfsi->access_cache;
2006         struct rb_node *n;
2007         struct nfs_access_entry *entry;
2008
2009         /* Unhook entries from the cache */
2010         while ((n = rb_first(root_node)) != NULL) {
2011                 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2012                 rb_erase(n, root_node);
2013                 list_move(&entry->lru, head);
2014         }
2015         nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
2016 }
2017
2018 void nfs_access_zap_cache(struct inode *inode)
2019 {
2020         LIST_HEAD(head);
2021
2022         if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
2023                 return;
2024         /* Remove from global LRU init */
2025         spin_lock(&nfs_access_lru_lock);
2026         if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2027                 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
2028
2029         spin_lock(&inode->i_lock);
2030         __nfs_access_zap_cache(NFS_I(inode), &head);
2031         spin_unlock(&inode->i_lock);
2032         spin_unlock(&nfs_access_lru_lock);
2033         nfs_access_free_list(&head);
2034 }
2035 EXPORT_SYMBOL_GPL(nfs_access_zap_cache);
2036
2037 static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
2038 {
2039         struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
2040         struct nfs_access_entry *entry;
2041
2042         while (n != NULL) {
2043                 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2044
2045                 if (cred < entry->cred)
2046                         n = n->rb_left;
2047                 else if (cred > entry->cred)
2048                         n = n->rb_right;
2049                 else
2050                         return entry;
2051         }
2052         return NULL;
2053 }
2054
2055 static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
2056 {
2057         struct nfs_inode *nfsi = NFS_I(inode);
2058         struct nfs_access_entry *cache;
2059         int err = -ENOENT;
2060
2061         spin_lock(&inode->i_lock);
2062         if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2063                 goto out_zap;
2064         cache = nfs_access_search_rbtree(inode, cred);
2065         if (cache == NULL)
2066                 goto out;
2067         if (!nfs_have_delegated_attributes(inode) &&
2068             !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
2069                 goto out_stale;
2070         res->jiffies = cache->jiffies;
2071         res->cred = cache->cred;
2072         res->mask = cache->mask;
2073         list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
2074         err = 0;
2075 out:
2076         spin_unlock(&inode->i_lock);
2077         return err;
2078 out_stale:
2079         rb_erase(&cache->rb_node, &nfsi->access_cache);
2080         list_del(&cache->lru);
2081         spin_unlock(&inode->i_lock);
2082         nfs_access_free_entry(cache);
2083         return -ENOENT;
2084 out_zap:
2085         spin_unlock(&inode->i_lock);
2086         nfs_access_zap_cache(inode);
2087         return -ENOENT;
2088 }
2089
2090 static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2091 {
2092         struct nfs_inode *nfsi = NFS_I(inode);
2093         struct rb_root *root_node = &nfsi->access_cache;
2094         struct rb_node **p = &root_node->rb_node;
2095         struct rb_node *parent = NULL;
2096         struct nfs_access_entry *entry;
2097
2098         spin_lock(&inode->i_lock);
2099         while (*p != NULL) {
2100                 parent = *p;
2101                 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2102
2103                 if (set->cred < entry->cred)
2104                         p = &parent->rb_left;
2105                 else if (set->cred > entry->cred)
2106                         p = &parent->rb_right;
2107                 else
2108                         goto found;
2109         }
2110         rb_link_node(&set->rb_node, parent, p);
2111         rb_insert_color(&set->rb_node, root_node);
2112         list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2113         spin_unlock(&inode->i_lock);
2114         return;
2115 found:
2116         rb_replace_node(parent, &set->rb_node, root_node);
2117         list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2118         list_del(&entry->lru);
2119         spin_unlock(&inode->i_lock);
2120         nfs_access_free_entry(entry);
2121 }
2122
2123 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
2124 {
2125         struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2126         if (cache == NULL)
2127                 return;
2128         RB_CLEAR_NODE(&cache->rb_node);
2129         cache->jiffies = set->jiffies;
2130         cache->cred = get_rpccred(set->cred);
2131         cache->mask = set->mask;
2132
2133         nfs_access_add_rbtree(inode, cache);
2134
2135         /* Update accounting */
2136         smp_mb__before_atomic_inc();
2137         atomic_long_inc(&nfs_access_nr_entries);
2138         smp_mb__after_atomic_inc();
2139
2140         /* Add inode to global LRU list */
2141         if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
2142                 spin_lock(&nfs_access_lru_lock);
2143                 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2144                         list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2145                                         &nfs_access_lru_list);
2146                 spin_unlock(&nfs_access_lru_lock);
2147         }
2148 }
2149 EXPORT_SYMBOL_GPL(nfs_access_add_cache);
2150
2151 void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result)
2152 {
2153         entry->mask = 0;
2154         if (access_result & NFS4_ACCESS_READ)
2155                 entry->mask |= MAY_READ;
2156         if (access_result &
2157             (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2158                 entry->mask |= MAY_WRITE;
2159         if (access_result & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2160                 entry->mask |= MAY_EXEC;
2161 }
2162 EXPORT_SYMBOL_GPL(nfs_access_set_mask);
2163
2164 static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2165 {
2166         struct nfs_access_entry cache;
2167         int status;
2168
2169         status = nfs_access_get_cached(inode, cred, &cache);
2170         if (status == 0)
2171                 goto out;
2172
2173         /* Be clever: ask server to check for all possible rights */
2174         cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2175         cache.cred = cred;
2176         cache.jiffies = jiffies;
2177         status = NFS_PROTO(inode)->access(inode, &cache);
2178         if (status != 0) {
2179                 if (status == -ESTALE) {
2180                         nfs_zap_caches(inode);
2181                         if (!S_ISDIR(inode->i_mode))
2182                                 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2183                 }
2184                 return status;
2185         }
2186         nfs_access_add_cache(inode, &cache);
2187 out:
2188         if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
2189                 return 0;
2190         return -EACCES;
2191 }
2192
2193 static int nfs_open_permission_mask(int openflags)
2194 {
2195         int mask = 0;
2196
2197         if (openflags & __FMODE_EXEC) {
2198                 /* ONLY check exec rights */
2199                 mask = MAY_EXEC;
2200         } else {
2201                 if ((openflags & O_ACCMODE) != O_WRONLY)
2202                         mask |= MAY_READ;
2203                 if ((openflags & O_ACCMODE) != O_RDONLY)
2204                         mask |= MAY_WRITE;
2205         }
2206
2207         return mask;
2208 }
2209
2210 int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2211 {
2212         return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2213 }
2214 EXPORT_SYMBOL_GPL(nfs_may_open);
2215
2216 int nfs_permission(struct inode *inode, int mask)
2217 {
2218         struct rpc_cred *cred;
2219         int res = 0;
2220
2221         if (mask & MAY_NOT_BLOCK)
2222                 return -ECHILD;
2223
2224         nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2225
2226         if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
2227                 goto out;
2228         /* Is this sys_access() ? */
2229         if (mask & (MAY_ACCESS | MAY_CHDIR))
2230                 goto force_lookup;
2231
2232         switch (inode->i_mode & S_IFMT) {
2233                 case S_IFLNK:
2234                         goto out;
2235                 case S_IFREG:
2236                         /* NFSv4 has atomic_open... */
2237                         if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
2238                                         && (mask & MAY_OPEN)
2239                                         && !(mask & MAY_EXEC))
2240                                 goto out;
2241                         break;
2242                 case S_IFDIR:
2243                         /*
2244                          * Optimize away all write operations, since the server
2245                          * will check permissions when we perform the op.
2246                          */
2247                         if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2248                                 goto out;
2249         }
2250
2251 force_lookup:
2252         if (!NFS_PROTO(inode)->access)
2253                 goto out_notsup;
2254
2255         cred = rpc_lookup_cred();
2256         if (!IS_ERR(cred)) {
2257                 res = nfs_do_access(inode, cred, mask);
2258                 put_rpccred(cred);
2259         } else
2260                 res = PTR_ERR(cred);
2261 out:
2262         if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2263                 res = -EACCES;
2264
2265         dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2266                 inode->i_sb->s_id, inode->i_ino, mask, res);
2267         return res;
2268 out_notsup:
2269         res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2270         if (res == 0)
2271                 res = generic_permission(inode, mask);
2272         goto out;
2273 }
2274 EXPORT_SYMBOL_GPL(nfs_permission);
2275
2276 /*
2277  * Local variables:
2278  *  version-control: t
2279  *  kept-new-versions: 5
2280  * End:
2281  */