d2a58f7a73a616f794b15413dc0ad6cffdcb0154
[linux-2.6-microblaze.git] / fs / nfs / dir.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  linux/fs/nfs/dir.c
4  *
5  *  Copyright (C) 1992  Rick Sladkey
6  *
7  *  nfs directory handling functions
8  *
9  * 10 Apr 1996  Added silly rename for unlink   --okir
10  * 28 Sep 1996  Improved directory cache --okir
11  * 23 Aug 1997  Claus Heine claus@momo.math.rwth-aachen.de 
12  *              Re-implemented silly rename for unlink, newly implemented
13  *              silly rename for nfs_rename() following the suggestions
14  *              of Olaf Kirch (okir) found in this file.
15  *              Following Linus comments on my original hack, this version
16  *              depends only on the dcache stuff and doesn't touch the inode
17  *              layer (iput() and friends).
18  *  6 Jun 1999  Cache readdir lookups in the page cache. -DaveM
19  */
20
21 #include <linux/module.h>
22 #include <linux/time.h>
23 #include <linux/errno.h>
24 #include <linux/stat.h>
25 #include <linux/fcntl.h>
26 #include <linux/string.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
29 #include <linux/mm.h>
30 #include <linux/sunrpc/clnt.h>
31 #include <linux/nfs_fs.h>
32 #include <linux/nfs_mount.h>
33 #include <linux/pagemap.h>
34 #include <linux/pagevec.h>
35 #include <linux/namei.h>
36 #include <linux/mount.h>
37 #include <linux/swap.h>
38 #include <linux/sched.h>
39 #include <linux/kmemleak.h>
40 #include <linux/xattr.h>
41
42 #include "delegation.h"
43 #include "iostat.h"
44 #include "internal.h"
45 #include "fscache.h"
46
47 #include "nfstrace.h"
48
49 /* #define NFS_DEBUG_VERBOSE 1 */
50
51 static int nfs_opendir(struct inode *, struct file *);
52 static int nfs_closedir(struct inode *, struct file *);
53 static int nfs_readdir(struct file *, struct dir_context *);
54 static int nfs_fsync_dir(struct file *, loff_t, loff_t, int);
55 static loff_t nfs_llseek_dir(struct file *, loff_t, int);
56 static void nfs_readdir_clear_array(struct page*);
57
58 const struct file_operations nfs_dir_operations = {
59         .llseek         = nfs_llseek_dir,
60         .read           = generic_read_dir,
61         .iterate_shared = nfs_readdir,
62         .open           = nfs_opendir,
63         .release        = nfs_closedir,
64         .fsync          = nfs_fsync_dir,
65 };
66
67 const struct address_space_operations nfs_dir_aops = {
68         .freepage = nfs_readdir_clear_array,
69 };
70
71 static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir)
72 {
73         struct nfs_inode *nfsi = NFS_I(dir);
74         struct nfs_open_dir_context *ctx;
75         ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
76         if (ctx != NULL) {
77                 ctx->duped = 0;
78                 ctx->attr_gencount = nfsi->attr_gencount;
79                 ctx->dir_cookie = 0;
80                 ctx->dup_cookie = 0;
81                 ctx->page_index = 0;
82                 spin_lock(&dir->i_lock);
83                 if (list_empty(&nfsi->open_files) &&
84                     (nfsi->cache_validity & NFS_INO_DATA_INVAL_DEFER))
85                         nfs_set_cache_invalid(dir,
86                                               NFS_INO_INVALID_DATA |
87                                                       NFS_INO_REVAL_FORCED);
88                 list_add(&ctx->list, &nfsi->open_files);
89                 clear_bit(NFS_INO_FORCE_READDIR, &nfsi->flags);
90                 spin_unlock(&dir->i_lock);
91                 return ctx;
92         }
93         return  ERR_PTR(-ENOMEM);
94 }
95
96 static void put_nfs_open_dir_context(struct inode *dir, struct nfs_open_dir_context *ctx)
97 {
98         spin_lock(&dir->i_lock);
99         list_del(&ctx->list);
100         spin_unlock(&dir->i_lock);
101         kfree(ctx);
102 }
103
104 /*
105  * Open file
106  */
107 static int
108 nfs_opendir(struct inode *inode, struct file *filp)
109 {
110         int res = 0;
111         struct nfs_open_dir_context *ctx;
112
113         dfprintk(FILE, "NFS: open dir(%pD2)\n", filp);
114
115         nfs_inc_stats(inode, NFSIOS_VFSOPEN);
116
117         ctx = alloc_nfs_open_dir_context(inode);
118         if (IS_ERR(ctx)) {
119                 res = PTR_ERR(ctx);
120                 goto out;
121         }
122         filp->private_data = ctx;
123 out:
124         return res;
125 }
126
127 static int
128 nfs_closedir(struct inode *inode, struct file *filp)
129 {
130         put_nfs_open_dir_context(file_inode(filp), filp->private_data);
131         return 0;
132 }
133
134 struct nfs_cache_array_entry {
135         u64 cookie;
136         u64 ino;
137         const char *name;
138         unsigned int name_len;
139         unsigned char d_type;
140 };
141
142 struct nfs_cache_array {
143         u64 last_cookie;
144         unsigned int size;
145         unsigned char page_full : 1,
146                       page_is_eof : 1,
147                       cookies_are_ordered : 1;
148         struct nfs_cache_array_entry array[];
149 };
150
151 struct nfs_readdir_descriptor {
152         struct file     *file;
153         struct page     *page;
154         struct dir_context *ctx;
155         pgoff_t         page_index;
156         u64             dir_cookie;
157         u64             last_cookie;
158         u64             dup_cookie;
159         loff_t          current_index;
160         loff_t          prev_index;
161
162         __be32          verf[NFS_DIR_VERIFIER_SIZE];
163         unsigned long   dir_verifier;
164         unsigned long   timestamp;
165         unsigned long   gencount;
166         unsigned long   attr_gencount;
167         unsigned int    cache_entry_index;
168         signed char duped;
169         bool plus;
170         bool eof;
171 };
172
173 static void nfs_readdir_array_init(struct nfs_cache_array *array)
174 {
175         memset(array, 0, sizeof(struct nfs_cache_array));
176 }
177
178 static void nfs_readdir_page_init_array(struct page *page, u64 last_cookie)
179 {
180         struct nfs_cache_array *array;
181
182         array = kmap_atomic(page);
183         nfs_readdir_array_init(array);
184         array->last_cookie = last_cookie;
185         array->cookies_are_ordered = 1;
186         kunmap_atomic(array);
187 }
188
189 /*
190  * we are freeing strings created by nfs_add_to_readdir_array()
191  */
192 static
193 void nfs_readdir_clear_array(struct page *page)
194 {
195         struct nfs_cache_array *array;
196         int i;
197
198         array = kmap_atomic(page);
199         for (i = 0; i < array->size; i++)
200                 kfree(array->array[i].name);
201         nfs_readdir_array_init(array);
202         kunmap_atomic(array);
203 }
204
205 static struct page *
206 nfs_readdir_page_array_alloc(u64 last_cookie, gfp_t gfp_flags)
207 {
208         struct page *page = alloc_page(gfp_flags);
209         if (page)
210                 nfs_readdir_page_init_array(page, last_cookie);
211         return page;
212 }
213
214 static void nfs_readdir_page_array_free(struct page *page)
215 {
216         if (page) {
217                 nfs_readdir_clear_array(page);
218                 put_page(page);
219         }
220 }
221
222 static void nfs_readdir_array_set_eof(struct nfs_cache_array *array)
223 {
224         array->page_is_eof = 1;
225         array->page_full = 1;
226 }
227
228 static bool nfs_readdir_array_is_full(struct nfs_cache_array *array)
229 {
230         return array->page_full;
231 }
232
233 /*
234  * the caller is responsible for freeing qstr.name
235  * when called by nfs_readdir_add_to_array, the strings will be freed in
236  * nfs_clear_readdir_array()
237  */
238 static const char *nfs_readdir_copy_name(const char *name, unsigned int len)
239 {
240         const char *ret = kmemdup_nul(name, len, GFP_KERNEL);
241
242         /*
243          * Avoid a kmemleak false positive. The pointer to the name is stored
244          * in a page cache page which kmemleak does not scan.
245          */
246         if (ret != NULL)
247                 kmemleak_not_leak(ret);
248         return ret;
249 }
250
251 /*
252  * Check that the next array entry lies entirely within the page bounds
253  */
254 static int nfs_readdir_array_can_expand(struct nfs_cache_array *array)
255 {
256         struct nfs_cache_array_entry *cache_entry;
257
258         if (array->page_full)
259                 return -ENOSPC;
260         cache_entry = &array->array[array->size + 1];
261         if ((char *)cache_entry - (char *)array > PAGE_SIZE) {
262                 array->page_full = 1;
263                 return -ENOSPC;
264         }
265         return 0;
266 }
267
268 static
269 int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
270 {
271         struct nfs_cache_array *array;
272         struct nfs_cache_array_entry *cache_entry;
273         const char *name;
274         int ret;
275
276         name = nfs_readdir_copy_name(entry->name, entry->len);
277         if (!name)
278                 return -ENOMEM;
279
280         array = kmap_atomic(page);
281         ret = nfs_readdir_array_can_expand(array);
282         if (ret) {
283                 kfree(name);
284                 goto out;
285         }
286
287         cache_entry = &array->array[array->size];
288         cache_entry->cookie = entry->prev_cookie;
289         cache_entry->ino = entry->ino;
290         cache_entry->d_type = entry->d_type;
291         cache_entry->name_len = entry->len;
292         cache_entry->name = name;
293         array->last_cookie = entry->cookie;
294         if (array->last_cookie <= cache_entry->cookie)
295                 array->cookies_are_ordered = 0;
296         array->size++;
297         if (entry->eof != 0)
298                 nfs_readdir_array_set_eof(array);
299 out:
300         kunmap_atomic(array);
301         return ret;
302 }
303
304 static struct page *nfs_readdir_page_get_locked(struct address_space *mapping,
305                                                 pgoff_t index, u64 last_cookie)
306 {
307         struct page *page;
308
309         page = grab_cache_page(mapping, index);
310         if (page && !PageUptodate(page)) {
311                 nfs_readdir_page_init_array(page, last_cookie);
312                 if (invalidate_inode_pages2_range(mapping, index + 1, -1) < 0)
313                         nfs_zap_mapping(mapping->host, mapping);
314                 SetPageUptodate(page);
315         }
316
317         return page;
318 }
319
320 static u64 nfs_readdir_page_last_cookie(struct page *page)
321 {
322         struct nfs_cache_array *array;
323         u64 ret;
324
325         array = kmap_atomic(page);
326         ret = array->last_cookie;
327         kunmap_atomic(array);
328         return ret;
329 }
330
331 static bool nfs_readdir_page_needs_filling(struct page *page)
332 {
333         struct nfs_cache_array *array;
334         bool ret;
335
336         array = kmap_atomic(page);
337         ret = !nfs_readdir_array_is_full(array);
338         kunmap_atomic(array);
339         return ret;
340 }
341
342 static void nfs_readdir_page_set_eof(struct page *page)
343 {
344         struct nfs_cache_array *array;
345
346         array = kmap_atomic(page);
347         nfs_readdir_array_set_eof(array);
348         kunmap_atomic(array);
349 }
350
351 static void nfs_readdir_page_unlock_and_put(struct page *page)
352 {
353         unlock_page(page);
354         put_page(page);
355 }
356
357 static struct page *nfs_readdir_page_get_next(struct address_space *mapping,
358                                               pgoff_t index, u64 cookie)
359 {
360         struct page *page;
361
362         page = nfs_readdir_page_get_locked(mapping, index, cookie);
363         if (page) {
364                 if (nfs_readdir_page_last_cookie(page) == cookie)
365                         return page;
366                 nfs_readdir_page_unlock_and_put(page);
367         }
368         return NULL;
369 }
370
371 static inline
372 int is_32bit_api(void)
373 {
374 #ifdef CONFIG_COMPAT
375         return in_compat_syscall();
376 #else
377         return (BITS_PER_LONG == 32);
378 #endif
379 }
380
381 static
382 bool nfs_readdir_use_cookie(const struct file *filp)
383 {
384         if ((filp->f_mode & FMODE_32BITHASH) ||
385             (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
386                 return false;
387         return true;
388 }
389
390 static int nfs_readdir_search_for_pos(struct nfs_cache_array *array,
391                                       struct nfs_readdir_descriptor *desc)
392 {
393         loff_t diff = desc->ctx->pos - desc->current_index;
394         unsigned int index;
395
396         if (diff < 0)
397                 goto out_eof;
398         if (diff >= array->size) {
399                 if (array->page_is_eof)
400                         goto out_eof;
401                 return -EAGAIN;
402         }
403
404         index = (unsigned int)diff;
405         desc->dir_cookie = array->array[index].cookie;
406         desc->cache_entry_index = index;
407         return 0;
408 out_eof:
409         desc->eof = true;
410         return -EBADCOOKIE;
411 }
412
413 static bool
414 nfs_readdir_inode_mapping_valid(struct nfs_inode *nfsi)
415 {
416         if (nfsi->cache_validity & (NFS_INO_INVALID_CHANGE |
417                                     NFS_INO_INVALID_DATA))
418                 return false;
419         smp_rmb();
420         return !test_bit(NFS_INO_INVALIDATING, &nfsi->flags);
421 }
422
423 static bool nfs_readdir_array_cookie_in_range(struct nfs_cache_array *array,
424                                               u64 cookie)
425 {
426         if (!array->cookies_are_ordered)
427                 return true;
428         /* Optimisation for monotonically increasing cookies */
429         if (cookie >= array->last_cookie)
430                 return false;
431         if (array->size && cookie < array->array[0].cookie)
432                 return false;
433         return true;
434 }
435
436 static int nfs_readdir_search_for_cookie(struct nfs_cache_array *array,
437                                          struct nfs_readdir_descriptor *desc)
438 {
439         int i;
440         loff_t new_pos;
441         int status = -EAGAIN;
442
443         if (!nfs_readdir_array_cookie_in_range(array, desc->dir_cookie))
444                 goto check_eof;
445
446         for (i = 0; i < array->size; i++) {
447                 if (array->array[i].cookie == desc->dir_cookie) {
448                         struct nfs_inode *nfsi = NFS_I(file_inode(desc->file));
449
450                         new_pos = desc->current_index + i;
451                         if (desc->attr_gencount != nfsi->attr_gencount ||
452                             !nfs_readdir_inode_mapping_valid(nfsi)) {
453                                 desc->duped = 0;
454                                 desc->attr_gencount = nfsi->attr_gencount;
455                         } else if (new_pos < desc->prev_index) {
456                                 if (desc->duped > 0
457                                     && desc->dup_cookie == desc->dir_cookie) {
458                                         if (printk_ratelimit()) {
459                                                 pr_notice("NFS: directory %pD2 contains a readdir loop."
460                                                                 "Please contact your server vendor.  "
461                                                                 "The file: %s has duplicate cookie %llu\n",
462                                                                 desc->file, array->array[i].name, desc->dir_cookie);
463                                         }
464                                         status = -ELOOP;
465                                         goto out;
466                                 }
467                                 desc->dup_cookie = desc->dir_cookie;
468                                 desc->duped = -1;
469                         }
470                         if (nfs_readdir_use_cookie(desc->file))
471                                 desc->ctx->pos = desc->dir_cookie;
472                         else
473                                 desc->ctx->pos = new_pos;
474                         desc->prev_index = new_pos;
475                         desc->cache_entry_index = i;
476                         return 0;
477                 }
478         }
479 check_eof:
480         if (array->page_is_eof) {
481                 status = -EBADCOOKIE;
482                 if (desc->dir_cookie == array->last_cookie)
483                         desc->eof = true;
484         }
485 out:
486         return status;
487 }
488
489 static int nfs_readdir_search_array(struct nfs_readdir_descriptor *desc)
490 {
491         struct nfs_cache_array *array;
492         int status;
493
494         array = kmap_atomic(desc->page);
495
496         if (desc->dir_cookie == 0)
497                 status = nfs_readdir_search_for_pos(array, desc);
498         else
499                 status = nfs_readdir_search_for_cookie(array, desc);
500
501         if (status == -EAGAIN) {
502                 desc->last_cookie = array->last_cookie;
503                 desc->current_index += array->size;
504                 desc->page_index++;
505         }
506         kunmap_atomic(array);
507         return status;
508 }
509
510 /* Fill a page with xdr information before transferring to the cache page */
511 static int nfs_readdir_xdr_filler(struct nfs_readdir_descriptor *desc,
512                                   __be32 *verf, u64 cookie,
513                                   struct page **pages, size_t bufsize,
514                                   __be32 *verf_res)
515 {
516         struct inode *inode = file_inode(desc->file);
517         struct nfs_readdir_arg arg = {
518                 .dentry = file_dentry(desc->file),
519                 .cred = desc->file->f_cred,
520                 .verf = verf,
521                 .cookie = cookie,
522                 .pages = pages,
523                 .page_len = bufsize,
524                 .plus = desc->plus,
525         };
526         struct nfs_readdir_res res = {
527                 .verf = verf_res,
528         };
529         unsigned long   timestamp, gencount;
530         int             error;
531
532  again:
533         timestamp = jiffies;
534         gencount = nfs_inc_attr_generation_counter();
535         desc->dir_verifier = nfs_save_change_attribute(inode);
536         error = NFS_PROTO(inode)->readdir(&arg, &res);
537         if (error < 0) {
538                 /* We requested READDIRPLUS, but the server doesn't grok it */
539                 if (error == -ENOTSUPP && desc->plus) {
540                         NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
541                         clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
542                         desc->plus = arg.plus = false;
543                         goto again;
544                 }
545                 goto error;
546         }
547         desc->timestamp = timestamp;
548         desc->gencount = gencount;
549 error:
550         return error;
551 }
552
553 static int xdr_decode(struct nfs_readdir_descriptor *desc,
554                       struct nfs_entry *entry, struct xdr_stream *xdr)
555 {
556         struct inode *inode = file_inode(desc->file);
557         int error;
558
559         error = NFS_PROTO(inode)->decode_dirent(xdr, entry, desc->plus);
560         if (error)
561                 return error;
562         entry->fattr->time_start = desc->timestamp;
563         entry->fattr->gencount = desc->gencount;
564         return 0;
565 }
566
567 /* Match file and dirent using either filehandle or fileid
568  * Note: caller is responsible for checking the fsid
569  */
570 static
571 int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
572 {
573         struct inode *inode;
574         struct nfs_inode *nfsi;
575
576         if (d_really_is_negative(dentry))
577                 return 0;
578
579         inode = d_inode(dentry);
580         if (is_bad_inode(inode) || NFS_STALE(inode))
581                 return 0;
582
583         nfsi = NFS_I(inode);
584         if (entry->fattr->fileid != nfsi->fileid)
585                 return 0;
586         if (entry->fh->size && nfs_compare_fh(entry->fh, &nfsi->fh) != 0)
587                 return 0;
588         return 1;
589 }
590
591 static
592 bool nfs_use_readdirplus(struct inode *dir, struct dir_context *ctx)
593 {
594         if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
595                 return false;
596         if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
597                 return true;
598         if (ctx->pos == 0)
599                 return true;
600         return false;
601 }
602
603 /*
604  * This function is called by the lookup and getattr code to request the
605  * use of readdirplus to accelerate any future lookups in the same
606  * directory.
607  */
608 void nfs_advise_use_readdirplus(struct inode *dir)
609 {
610         struct nfs_inode *nfsi = NFS_I(dir);
611
612         if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) &&
613             !list_empty(&nfsi->open_files))
614                 set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags);
615 }
616
617 /*
618  * This function is mainly for use by nfs_getattr().
619  *
620  * If this is an 'ls -l', we want to force use of readdirplus.
621  * Do this by checking if there is an active file descriptor
622  * and calling nfs_advise_use_readdirplus, then forcing a
623  * cache flush.
624  */
625 void nfs_force_use_readdirplus(struct inode *dir)
626 {
627         struct nfs_inode *nfsi = NFS_I(dir);
628
629         if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) &&
630             !list_empty(&nfsi->open_files)) {
631                 set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags);
632                 set_bit(NFS_INO_FORCE_READDIR, &nfsi->flags);
633         }
634 }
635
636 static
637 void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry,
638                 unsigned long dir_verifier)
639 {
640         struct qstr filename = QSTR_INIT(entry->name, entry->len);
641         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
642         struct dentry *dentry;
643         struct dentry *alias;
644         struct inode *inode;
645         int status;
646
647         if (!(entry->fattr->valid & NFS_ATTR_FATTR_FILEID))
648                 return;
649         if (!(entry->fattr->valid & NFS_ATTR_FATTR_FSID))
650                 return;
651         if (filename.len == 0)
652                 return;
653         /* Validate that the name doesn't contain any illegal '\0' */
654         if (strnlen(filename.name, filename.len) != filename.len)
655                 return;
656         /* ...or '/' */
657         if (strnchr(filename.name, filename.len, '/'))
658                 return;
659         if (filename.name[0] == '.') {
660                 if (filename.len == 1)
661                         return;
662                 if (filename.len == 2 && filename.name[1] == '.')
663                         return;
664         }
665         filename.hash = full_name_hash(parent, filename.name, filename.len);
666
667         dentry = d_lookup(parent, &filename);
668 again:
669         if (!dentry) {
670                 dentry = d_alloc_parallel(parent, &filename, &wq);
671                 if (IS_ERR(dentry))
672                         return;
673         }
674         if (!d_in_lookup(dentry)) {
675                 /* Is there a mountpoint here? If so, just exit */
676                 if (!nfs_fsid_equal(&NFS_SB(dentry->d_sb)->fsid,
677                                         &entry->fattr->fsid))
678                         goto out;
679                 if (nfs_same_file(dentry, entry)) {
680                         if (!entry->fh->size)
681                                 goto out;
682                         nfs_set_verifier(dentry, dir_verifier);
683                         status = nfs_refresh_inode(d_inode(dentry), entry->fattr);
684                         if (!status)
685                                 nfs_setsecurity(d_inode(dentry), entry->fattr);
686                         goto out;
687                 } else {
688                         d_invalidate(dentry);
689                         dput(dentry);
690                         dentry = NULL;
691                         goto again;
692                 }
693         }
694         if (!entry->fh->size) {
695                 d_lookup_done(dentry);
696                 goto out;
697         }
698
699         inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
700         alias = d_splice_alias(inode, dentry);
701         d_lookup_done(dentry);
702         if (alias) {
703                 if (IS_ERR(alias))
704                         goto out;
705                 dput(dentry);
706                 dentry = alias;
707         }
708         nfs_set_verifier(dentry, dir_verifier);
709 out:
710         dput(dentry);
711 }
712
713 /* Perform conversion from xdr to cache array */
714 static int nfs_readdir_page_filler(struct nfs_readdir_descriptor *desc,
715                                    struct nfs_entry *entry,
716                                    struct page **xdr_pages,
717                                    unsigned int buflen,
718                                    struct page **arrays,
719                                    size_t narrays)
720 {
721         struct address_space *mapping = desc->file->f_mapping;
722         struct xdr_stream stream;
723         struct xdr_buf buf;
724         struct page *scratch, *new, *page = *arrays;
725         int status;
726
727         scratch = alloc_page(GFP_KERNEL);
728         if (scratch == NULL)
729                 return -ENOMEM;
730
731         xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
732         xdr_set_scratch_page(&stream, scratch);
733
734         do {
735                 if (entry->fattr->label)
736                         entry->fattr->label->len = NFS4_MAXLABELLEN;
737
738                 status = xdr_decode(desc, entry, &stream);
739                 if (status != 0)
740                         break;
741
742                 if (desc->plus)
743                         nfs_prime_dcache(file_dentry(desc->file), entry,
744                                         desc->dir_verifier);
745
746                 status = nfs_readdir_add_to_array(entry, page);
747                 if (status != -ENOSPC)
748                         continue;
749
750                 if (page->mapping != mapping) {
751                         if (!--narrays)
752                                 break;
753                         new = nfs_readdir_page_array_alloc(entry->prev_cookie,
754                                                            GFP_KERNEL);
755                         if (!new)
756                                 break;
757                         arrays++;
758                         *arrays = page = new;
759                 } else {
760                         new = nfs_readdir_page_get_next(mapping,
761                                                         page->index + 1,
762                                                         entry->prev_cookie);
763                         if (!new)
764                                 break;
765                         if (page != *arrays)
766                                 nfs_readdir_page_unlock_and_put(page);
767                         page = new;
768                 }
769                 status = nfs_readdir_add_to_array(entry, page);
770         } while (!status && !entry->eof);
771
772         switch (status) {
773         case -EBADCOOKIE:
774                 if (entry->eof) {
775                         nfs_readdir_page_set_eof(page);
776                         status = 0;
777                 }
778                 break;
779         case -ENOSPC:
780         case -EAGAIN:
781                 status = 0;
782                 break;
783         }
784
785         if (page != *arrays)
786                 nfs_readdir_page_unlock_and_put(page);
787
788         put_page(scratch);
789         return status;
790 }
791
792 static void nfs_readdir_free_pages(struct page **pages, size_t npages)
793 {
794         while (npages--)
795                 put_page(pages[npages]);
796         kfree(pages);
797 }
798
799 /*
800  * nfs_readdir_alloc_pages() will allocate pages that must be freed with a call
801  * to nfs_readdir_free_pages()
802  */
803 static struct page **nfs_readdir_alloc_pages(size_t npages)
804 {
805         struct page **pages;
806         size_t i;
807
808         pages = kmalloc_array(npages, sizeof(*pages), GFP_KERNEL);
809         if (!pages)
810                 return NULL;
811         for (i = 0; i < npages; i++) {
812                 struct page *page = alloc_page(GFP_KERNEL);
813                 if (page == NULL)
814                         goto out_freepages;
815                 pages[i] = page;
816         }
817         return pages;
818
819 out_freepages:
820         nfs_readdir_free_pages(pages, i);
821         return NULL;
822 }
823
824 static int nfs_readdir_xdr_to_array(struct nfs_readdir_descriptor *desc,
825                                     __be32 *verf_arg, __be32 *verf_res,
826                                     struct page **arrays, size_t narrays)
827 {
828         struct page **pages;
829         struct page *page = *arrays;
830         struct nfs_entry *entry;
831         size_t array_size;
832         struct inode *inode = file_inode(desc->file);
833         size_t dtsize = NFS_SERVER(inode)->dtsize;
834         int status = -ENOMEM;
835
836         entry = kzalloc(sizeof(*entry), GFP_KERNEL);
837         if (!entry)
838                 return -ENOMEM;
839         entry->cookie = nfs_readdir_page_last_cookie(page);
840         entry->fh = nfs_alloc_fhandle();
841         entry->fattr = nfs_alloc_fattr_with_label(NFS_SERVER(inode));
842         entry->server = NFS_SERVER(inode);
843         if (entry->fh == NULL || entry->fattr == NULL)
844                 goto out;
845
846         array_size = (dtsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
847         pages = nfs_readdir_alloc_pages(array_size);
848         if (!pages)
849                 goto out;
850
851         do {
852                 unsigned int pglen;
853                 status = nfs_readdir_xdr_filler(desc, verf_arg, entry->cookie,
854                                                 pages, dtsize,
855                                                 verf_res);
856                 if (status < 0)
857                         break;
858
859                 pglen = status;
860                 if (pglen == 0) {
861                         nfs_readdir_page_set_eof(page);
862                         break;
863                 }
864
865                 verf_arg = verf_res;
866
867                 status = nfs_readdir_page_filler(desc, entry, pages, pglen,
868                                                  arrays, narrays);
869         } while (!status && nfs_readdir_page_needs_filling(page));
870
871         nfs_readdir_free_pages(pages, array_size);
872 out:
873         nfs_free_fattr(entry->fattr);
874         nfs_free_fhandle(entry->fh);
875         kfree(entry);
876         return status;
877 }
878
879 static void nfs_readdir_page_put(struct nfs_readdir_descriptor *desc)
880 {
881         put_page(desc->page);
882         desc->page = NULL;
883 }
884
885 static void
886 nfs_readdir_page_unlock_and_put_cached(struct nfs_readdir_descriptor *desc)
887 {
888         unlock_page(desc->page);
889         nfs_readdir_page_put(desc);
890 }
891
892 static struct page *
893 nfs_readdir_page_get_cached(struct nfs_readdir_descriptor *desc)
894 {
895         return nfs_readdir_page_get_locked(desc->file->f_mapping,
896                                            desc->page_index,
897                                            desc->last_cookie);
898 }
899
900 /*
901  * Returns 0 if desc->dir_cookie was found on page desc->page_index
902  * and locks the page to prevent removal from the page cache.
903  */
904 static int find_and_lock_cache_page(struct nfs_readdir_descriptor *desc)
905 {
906         struct inode *inode = file_inode(desc->file);
907         struct nfs_inode *nfsi = NFS_I(inode);
908         __be32 verf[NFS_DIR_VERIFIER_SIZE];
909         int res;
910
911         desc->page = nfs_readdir_page_get_cached(desc);
912         if (!desc->page)
913                 return -ENOMEM;
914         if (nfs_readdir_page_needs_filling(desc->page)) {
915                 res = nfs_readdir_xdr_to_array(desc, nfsi->cookieverf, verf,
916                                                &desc->page, 1);
917                 if (res < 0) {
918                         nfs_readdir_page_unlock_and_put_cached(desc);
919                         if (res == -EBADCOOKIE || res == -ENOTSYNC) {
920                                 invalidate_inode_pages2(desc->file->f_mapping);
921                                 desc->page_index = 0;
922                                 return -EAGAIN;
923                         }
924                         return res;
925                 }
926                 /*
927                  * Set the cookie verifier if the page cache was empty
928                  */
929                 if (desc->page_index == 0)
930                         memcpy(nfsi->cookieverf, verf,
931                                sizeof(nfsi->cookieverf));
932         }
933         res = nfs_readdir_search_array(desc);
934         if (res == 0)
935                 return 0;
936         nfs_readdir_page_unlock_and_put_cached(desc);
937         return res;
938 }
939
940 static bool nfs_readdir_dont_search_cache(struct nfs_readdir_descriptor *desc)
941 {
942         struct address_space *mapping = desc->file->f_mapping;
943         struct inode *dir = file_inode(desc->file);
944         unsigned int dtsize = NFS_SERVER(dir)->dtsize;
945         loff_t size = i_size_read(dir);
946
947         /*
948          * Default to uncached readdir if the page cache is empty, and
949          * we're looking for a non-zero cookie in a large directory.
950          */
951         return desc->dir_cookie != 0 && mapping->nrpages == 0 && size > dtsize;
952 }
953
954 /* Search for desc->dir_cookie from the beginning of the page cache */
955 static int readdir_search_pagecache(struct nfs_readdir_descriptor *desc)
956 {
957         int res;
958
959         if (nfs_readdir_dont_search_cache(desc))
960                 return -EBADCOOKIE;
961
962         do {
963                 if (desc->page_index == 0) {
964                         desc->current_index = 0;
965                         desc->prev_index = 0;
966                         desc->last_cookie = 0;
967                 }
968                 res = find_and_lock_cache_page(desc);
969         } while (res == -EAGAIN);
970         return res;
971 }
972
973 /*
974  * Once we've found the start of the dirent within a page: fill 'er up...
975  */
976 static void nfs_do_filldir(struct nfs_readdir_descriptor *desc,
977                            const __be32 *verf)
978 {
979         struct file     *file = desc->file;
980         struct nfs_cache_array *array;
981         unsigned int i = 0;
982
983         array = kmap(desc->page);
984         for (i = desc->cache_entry_index; i < array->size; i++) {
985                 struct nfs_cache_array_entry *ent;
986
987                 ent = &array->array[i];
988                 if (!dir_emit(desc->ctx, ent->name, ent->name_len,
989                     nfs_compat_user_ino64(ent->ino), ent->d_type)) {
990                         desc->eof = true;
991                         break;
992                 }
993                 memcpy(desc->verf, verf, sizeof(desc->verf));
994                 if (i < (array->size-1))
995                         desc->dir_cookie = array->array[i+1].cookie;
996                 else
997                         desc->dir_cookie = array->last_cookie;
998                 if (nfs_readdir_use_cookie(file))
999                         desc->ctx->pos = desc->dir_cookie;
1000                 else
1001                         desc->ctx->pos++;
1002                 if (desc->duped != 0)
1003                         desc->duped = 1;
1004         }
1005         if (array->page_is_eof)
1006                 desc->eof = true;
1007
1008         kunmap(desc->page);
1009         dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %llu\n",
1010                         (unsigned long long)desc->dir_cookie);
1011 }
1012
1013 /*
1014  * If we cannot find a cookie in our cache, we suspect that this is
1015  * because it points to a deleted file, so we ask the server to return
1016  * whatever it thinks is the next entry. We then feed this to filldir.
1017  * If all goes well, we should then be able to find our way round the
1018  * cache on the next call to readdir_search_pagecache();
1019  *
1020  * NOTE: we cannot add the anonymous page to the pagecache because
1021  *       the data it contains might not be page aligned. Besides,
1022  *       we should already have a complete representation of the
1023  *       directory in the page cache by the time we get here.
1024  */
1025 static int uncached_readdir(struct nfs_readdir_descriptor *desc)
1026 {
1027         struct page     **arrays;
1028         size_t          i, sz = 512;
1029         __be32          verf[NFS_DIR_VERIFIER_SIZE];
1030         int             status = -ENOMEM;
1031
1032         dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %llu\n",
1033                         (unsigned long long)desc->dir_cookie);
1034
1035         arrays = kcalloc(sz, sizeof(*arrays), GFP_KERNEL);
1036         if (!arrays)
1037                 goto out;
1038         arrays[0] = nfs_readdir_page_array_alloc(desc->dir_cookie, GFP_KERNEL);
1039         if (!arrays[0])
1040                 goto out;
1041
1042         desc->page_index = 0;
1043         desc->last_cookie = desc->dir_cookie;
1044         desc->duped = 0;
1045
1046         status = nfs_readdir_xdr_to_array(desc, desc->verf, verf, arrays, sz);
1047
1048         for (i = 0; !desc->eof && i < sz && arrays[i]; i++) {
1049                 desc->page = arrays[i];
1050                 nfs_do_filldir(desc, verf);
1051         }
1052         desc->page = NULL;
1053
1054
1055         for (i = 0; i < sz && arrays[i]; i++)
1056                 nfs_readdir_page_array_free(arrays[i]);
1057 out:
1058         kfree(arrays);
1059         dfprintk(DIRCACHE, "NFS: %s: returns %d\n", __func__, status);
1060         return status;
1061 }
1062
1063 /* The file offset position represents the dirent entry number.  A
1064    last cookie cache takes care of the common case of reading the
1065    whole directory.
1066  */
1067 static int nfs_readdir(struct file *file, struct dir_context *ctx)
1068 {
1069         struct dentry   *dentry = file_dentry(file);
1070         struct inode    *inode = d_inode(dentry);
1071         struct nfs_inode *nfsi = NFS_I(inode);
1072         struct nfs_open_dir_context *dir_ctx = file->private_data;
1073         struct nfs_readdir_descriptor *desc;
1074         pgoff_t page_index;
1075         int res;
1076
1077         dfprintk(FILE, "NFS: readdir(%pD2) starting at cookie %llu\n",
1078                         file, (long long)ctx->pos);
1079         nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
1080
1081         /*
1082          * ctx->pos points to the dirent entry number.
1083          * *desc->dir_cookie has the cookie for the next entry. We have
1084          * to either find the entry with the appropriate number or
1085          * revalidate the cookie.
1086          */
1087         if (ctx->pos == 0 || nfs_attribute_cache_expired(inode)) {
1088                 res = nfs_revalidate_mapping(inode, file->f_mapping);
1089                 if (res < 0)
1090                         goto out;
1091         }
1092
1093         res = -ENOMEM;
1094         desc = kzalloc(sizeof(*desc), GFP_KERNEL);
1095         if (!desc)
1096                 goto out;
1097         desc->file = file;
1098         desc->ctx = ctx;
1099         desc->plus = nfs_use_readdirplus(inode, ctx);
1100
1101         spin_lock(&file->f_lock);
1102         desc->dir_cookie = dir_ctx->dir_cookie;
1103         desc->dup_cookie = dir_ctx->dup_cookie;
1104         desc->duped = dir_ctx->duped;
1105         page_index = dir_ctx->page_index;
1106         desc->attr_gencount = dir_ctx->attr_gencount;
1107         memcpy(desc->verf, dir_ctx->verf, sizeof(desc->verf));
1108         spin_unlock(&file->f_lock);
1109
1110         if (test_and_clear_bit(NFS_INO_FORCE_READDIR, &nfsi->flags) &&
1111             list_is_singular(&nfsi->open_files))
1112                 invalidate_mapping_pages(inode->i_mapping, page_index + 1, -1);
1113
1114         do {
1115                 res = readdir_search_pagecache(desc);
1116
1117                 if (res == -EBADCOOKIE) {
1118                         res = 0;
1119                         /* This means either end of directory */
1120                         if (desc->dir_cookie && !desc->eof) {
1121                                 /* Or that the server has 'lost' a cookie */
1122                                 res = uncached_readdir(desc);
1123                                 if (res == 0)
1124                                         continue;
1125                                 if (res == -EBADCOOKIE || res == -ENOTSYNC)
1126                                         res = 0;
1127                         }
1128                         break;
1129                 }
1130                 if (res == -ETOOSMALL && desc->plus) {
1131                         clear_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags);
1132                         nfs_zap_caches(inode);
1133                         desc->page_index = 0;
1134                         desc->plus = false;
1135                         desc->eof = false;
1136                         continue;
1137                 }
1138                 if (res < 0)
1139                         break;
1140
1141                 nfs_do_filldir(desc, nfsi->cookieverf);
1142                 nfs_readdir_page_unlock_and_put_cached(desc);
1143         } while (!desc->eof);
1144
1145         spin_lock(&file->f_lock);
1146         dir_ctx->dir_cookie = desc->dir_cookie;
1147         dir_ctx->dup_cookie = desc->dup_cookie;
1148         dir_ctx->duped = desc->duped;
1149         dir_ctx->attr_gencount = desc->attr_gencount;
1150         dir_ctx->page_index = desc->page_index;
1151         memcpy(dir_ctx->verf, desc->verf, sizeof(dir_ctx->verf));
1152         spin_unlock(&file->f_lock);
1153
1154         kfree(desc);
1155
1156 out:
1157         dfprintk(FILE, "NFS: readdir(%pD2) returns %d\n", file, res);
1158         return res;
1159 }
1160
1161 static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int whence)
1162 {
1163         struct nfs_open_dir_context *dir_ctx = filp->private_data;
1164
1165         dfprintk(FILE, "NFS: llseek dir(%pD2, %lld, %d)\n",
1166                         filp, offset, whence);
1167
1168         switch (whence) {
1169         default:
1170                 return -EINVAL;
1171         case SEEK_SET:
1172                 if (offset < 0)
1173                         return -EINVAL;
1174                 spin_lock(&filp->f_lock);
1175                 break;
1176         case SEEK_CUR:
1177                 if (offset == 0)
1178                         return filp->f_pos;
1179                 spin_lock(&filp->f_lock);
1180                 offset += filp->f_pos;
1181                 if (offset < 0) {
1182                         spin_unlock(&filp->f_lock);
1183                         return -EINVAL;
1184                 }
1185         }
1186         if (offset != filp->f_pos) {
1187                 filp->f_pos = offset;
1188                 if (nfs_readdir_use_cookie(filp))
1189                         dir_ctx->dir_cookie = offset;
1190                 else
1191                         dir_ctx->dir_cookie = 0;
1192                 if (offset == 0)
1193                         memset(dir_ctx->verf, 0, sizeof(dir_ctx->verf));
1194                 dir_ctx->duped = 0;
1195         }
1196         spin_unlock(&filp->f_lock);
1197         return offset;
1198 }
1199
1200 /*
1201  * All directory operations under NFS are synchronous, so fsync()
1202  * is a dummy operation.
1203  */
1204 static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
1205                          int datasync)
1206 {
1207         dfprintk(FILE, "NFS: fsync dir(%pD2) datasync %d\n", filp, datasync);
1208
1209         nfs_inc_stats(file_inode(filp), NFSIOS_VFSFSYNC);
1210         return 0;
1211 }
1212
1213 /**
1214  * nfs_force_lookup_revalidate - Mark the directory as having changed
1215  * @dir: pointer to directory inode
1216  *
1217  * This forces the revalidation code in nfs_lookup_revalidate() to do a
1218  * full lookup on all child dentries of 'dir' whenever a change occurs
1219  * on the server that might have invalidated our dcache.
1220  *
1221  * Note that we reserve bit '0' as a tag to let us know when a dentry
1222  * was revalidated while holding a delegation on its inode.
1223  *
1224  * The caller should be holding dir->i_lock
1225  */
1226 void nfs_force_lookup_revalidate(struct inode *dir)
1227 {
1228         NFS_I(dir)->cache_change_attribute += 2;
1229 }
1230 EXPORT_SYMBOL_GPL(nfs_force_lookup_revalidate);
1231
1232 /**
1233  * nfs_verify_change_attribute - Detects NFS remote directory changes
1234  * @dir: pointer to parent directory inode
1235  * @verf: previously saved change attribute
1236  *
1237  * Return "false" if the verifiers doesn't match the change attribute.
1238  * This would usually indicate that the directory contents have changed on
1239  * the server, and that any dentries need revalidating.
1240  */
1241 static bool nfs_verify_change_attribute(struct inode *dir, unsigned long verf)
1242 {
1243         return (verf & ~1UL) == nfs_save_change_attribute(dir);
1244 }
1245
1246 static void nfs_set_verifier_delegated(unsigned long *verf)
1247 {
1248         *verf |= 1UL;
1249 }
1250
1251 #if IS_ENABLED(CONFIG_NFS_V4)
1252 static void nfs_unset_verifier_delegated(unsigned long *verf)
1253 {
1254         *verf &= ~1UL;
1255 }
1256 #endif /* IS_ENABLED(CONFIG_NFS_V4) */
1257
1258 static bool nfs_test_verifier_delegated(unsigned long verf)
1259 {
1260         return verf & 1;
1261 }
1262
1263 static bool nfs_verifier_is_delegated(struct dentry *dentry)
1264 {
1265         return nfs_test_verifier_delegated(dentry->d_time);
1266 }
1267
1268 static void nfs_set_verifier_locked(struct dentry *dentry, unsigned long verf)
1269 {
1270         struct inode *inode = d_inode(dentry);
1271         struct inode *dir = d_inode(dentry->d_parent);
1272
1273         if (!nfs_verify_change_attribute(dir, verf))
1274                 return;
1275         if (inode && NFS_PROTO(inode)->have_delegation(inode, FMODE_READ))
1276                 nfs_set_verifier_delegated(&verf);
1277         dentry->d_time = verf;
1278 }
1279
1280 /**
1281  * nfs_set_verifier - save a parent directory verifier in the dentry
1282  * @dentry: pointer to dentry
1283  * @verf: verifier to save
1284  *
1285  * Saves the parent directory verifier in @dentry. If the inode has
1286  * a delegation, we also tag the dentry as having been revalidated
1287  * while holding a delegation so that we know we don't have to
1288  * look it up again after a directory change.
1289  */
1290 void nfs_set_verifier(struct dentry *dentry, unsigned long verf)
1291 {
1292
1293         spin_lock(&dentry->d_lock);
1294         nfs_set_verifier_locked(dentry, verf);
1295         spin_unlock(&dentry->d_lock);
1296 }
1297 EXPORT_SYMBOL_GPL(nfs_set_verifier);
1298
1299 #if IS_ENABLED(CONFIG_NFS_V4)
1300 /**
1301  * nfs_clear_verifier_delegated - clear the dir verifier delegation tag
1302  * @inode: pointer to inode
1303  *
1304  * Iterates through the dentries in the inode alias list and clears
1305  * the tag used to indicate that the dentry has been revalidated
1306  * while holding a delegation.
1307  * This function is intended for use when the delegation is being
1308  * returned or revoked.
1309  */
1310 void nfs_clear_verifier_delegated(struct inode *inode)
1311 {
1312         struct dentry *alias;
1313
1314         if (!inode)
1315                 return;
1316         spin_lock(&inode->i_lock);
1317         hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) {
1318                 spin_lock(&alias->d_lock);
1319                 nfs_unset_verifier_delegated(&alias->d_time);
1320                 spin_unlock(&alias->d_lock);
1321         }
1322         spin_unlock(&inode->i_lock);
1323 }
1324 EXPORT_SYMBOL_GPL(nfs_clear_verifier_delegated);
1325 #endif /* IS_ENABLED(CONFIG_NFS_V4) */
1326
1327 static int nfs_dentry_verify_change(struct inode *dir, struct dentry *dentry)
1328 {
1329         if (nfs_server_capable(dir, NFS_CAP_CASE_INSENSITIVE) &&
1330             d_really_is_negative(dentry))
1331                 return dentry->d_time == inode_peek_iversion_raw(dir);
1332         return nfs_verify_change_attribute(dir, dentry->d_time);
1333 }
1334
1335 /*
1336  * A check for whether or not the parent directory has changed.
1337  * In the case it has, we assume that the dentries are untrustworthy
1338  * and may need to be looked up again.
1339  * If rcu_walk prevents us from performing a full check, return 0.
1340  */
1341 static int nfs_check_verifier(struct inode *dir, struct dentry *dentry,
1342                               int rcu_walk)
1343 {
1344         if (IS_ROOT(dentry))
1345                 return 1;
1346         if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
1347                 return 0;
1348         if (!nfs_dentry_verify_change(dir, dentry))
1349                 return 0;
1350         /* Revalidate nfsi->cache_change_attribute before we declare a match */
1351         if (nfs_mapping_need_revalidate_inode(dir)) {
1352                 if (rcu_walk)
1353                         return 0;
1354                 if (__nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
1355                         return 0;
1356         }
1357         if (!nfs_dentry_verify_change(dir, dentry))
1358                 return 0;
1359         return 1;
1360 }
1361
1362 /*
1363  * Use intent information to check whether or not we're going to do
1364  * an O_EXCL create using this path component.
1365  */
1366 static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
1367 {
1368         if (NFS_PROTO(dir)->version == 2)
1369                 return 0;
1370         return flags & LOOKUP_EXCL;
1371 }
1372
1373 /*
1374  * Inode and filehandle revalidation for lookups.
1375  *
1376  * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
1377  * or if the intent information indicates that we're about to open this
1378  * particular file and the "nocto" mount flag is not set.
1379  *
1380  */
1381 static
1382 int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
1383 {
1384         struct nfs_server *server = NFS_SERVER(inode);
1385         int ret;
1386
1387         if (IS_AUTOMOUNT(inode))
1388                 return 0;
1389
1390         if (flags & LOOKUP_OPEN) {
1391                 switch (inode->i_mode & S_IFMT) {
1392                 case S_IFREG:
1393                         /* A NFSv4 OPEN will revalidate later */
1394                         if (server->caps & NFS_CAP_ATOMIC_OPEN)
1395                                 goto out;
1396                         fallthrough;
1397                 case S_IFDIR:
1398                         if (server->flags & NFS_MOUNT_NOCTO)
1399                                 break;
1400                         /* NFS close-to-open cache consistency validation */
1401                         goto out_force;
1402                 }
1403         }
1404
1405         /* VFS wants an on-the-wire revalidation */
1406         if (flags & LOOKUP_REVAL)
1407                 goto out_force;
1408 out:
1409         return (inode->i_nlink == 0) ? -ESTALE : 0;
1410 out_force:
1411         if (flags & LOOKUP_RCU)
1412                 return -ECHILD;
1413         ret = __nfs_revalidate_inode(server, inode);
1414         if (ret != 0)
1415                 return ret;
1416         goto out;
1417 }
1418
1419 static void nfs_mark_dir_for_revalidate(struct inode *inode)
1420 {
1421         spin_lock(&inode->i_lock);
1422         nfs_set_cache_invalid(inode, NFS_INO_INVALID_CHANGE);
1423         spin_unlock(&inode->i_lock);
1424 }
1425
1426 /*
1427  * We judge how long we want to trust negative
1428  * dentries by looking at the parent inode mtime.
1429  *
1430  * If parent mtime has changed, we revalidate, else we wait for a
1431  * period corresponding to the parent's attribute cache timeout value.
1432  *
1433  * If LOOKUP_RCU prevents us from performing a full check, return 1
1434  * suggesting a reval is needed.
1435  *
1436  * Note that when creating a new file, or looking up a rename target,
1437  * then it shouldn't be necessary to revalidate a negative dentry.
1438  */
1439 static inline
1440 int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
1441                        unsigned int flags)
1442 {
1443         if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
1444                 return 0;
1445         if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1446                 return 1;
1447         /* Case insensitive server? Revalidate negative dentries */
1448         if (nfs_server_capable(dir, NFS_CAP_CASE_INSENSITIVE))
1449                 return 1;
1450         return !nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU);
1451 }
1452
1453 static int
1454 nfs_lookup_revalidate_done(struct inode *dir, struct dentry *dentry,
1455                            struct inode *inode, int error)
1456 {
1457         switch (error) {
1458         case 1:
1459                 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is valid\n",
1460                         __func__, dentry);
1461                 return 1;
1462         case 0:
1463                 /*
1464                  * We can't d_drop the root of a disconnected tree:
1465                  * its d_hash is on the s_anon list and d_drop() would hide
1466                  * it from shrink_dcache_for_unmount(), leading to busy
1467                  * inodes on unmount and further oopses.
1468                  */
1469                 if (inode && IS_ROOT(dentry))
1470                         return 1;
1471                 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is invalid\n",
1472                                 __func__, dentry);
1473                 return 0;
1474         }
1475         dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) lookup returned error %d\n",
1476                                 __func__, dentry, error);
1477         return error;
1478 }
1479
1480 static int
1481 nfs_lookup_revalidate_negative(struct inode *dir, struct dentry *dentry,
1482                                unsigned int flags)
1483 {
1484         int ret = 1;
1485         if (nfs_neg_need_reval(dir, dentry, flags)) {
1486                 if (flags & LOOKUP_RCU)
1487                         return -ECHILD;
1488                 ret = 0;
1489         }
1490         return nfs_lookup_revalidate_done(dir, dentry, NULL, ret);
1491 }
1492
1493 static int
1494 nfs_lookup_revalidate_delegated(struct inode *dir, struct dentry *dentry,
1495                                 struct inode *inode)
1496 {
1497         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1498         return nfs_lookup_revalidate_done(dir, dentry, inode, 1);
1499 }
1500
1501 static int
1502 nfs_lookup_revalidate_dentry(struct inode *dir, struct dentry *dentry,
1503                              struct inode *inode)
1504 {
1505         struct nfs_fh *fhandle;
1506         struct nfs_fattr *fattr;
1507         unsigned long dir_verifier;
1508         int ret;
1509
1510         ret = -ENOMEM;
1511         fhandle = nfs_alloc_fhandle();
1512         fattr = nfs_alloc_fattr_with_label(NFS_SERVER(inode));
1513         if (fhandle == NULL || fattr == NULL)
1514                 goto out;
1515
1516         dir_verifier = nfs_save_change_attribute(dir);
1517         ret = NFS_PROTO(dir)->lookup(dir, dentry, fhandle, fattr);
1518         if (ret < 0) {
1519                 switch (ret) {
1520                 case -ESTALE:
1521                 case -ENOENT:
1522                         ret = 0;
1523                         break;
1524                 case -ETIMEDOUT:
1525                         if (NFS_SERVER(inode)->flags & NFS_MOUNT_SOFTREVAL)
1526                                 ret = 1;
1527                 }
1528                 goto out;
1529         }
1530         ret = 0;
1531         if (nfs_compare_fh(NFS_FH(inode), fhandle))
1532                 goto out;
1533         if (nfs_refresh_inode(inode, fattr) < 0)
1534                 goto out;
1535
1536         nfs_setsecurity(inode, fattr);
1537         nfs_set_verifier(dentry, dir_verifier);
1538
1539         /* set a readdirplus hint that we had a cache miss */
1540         nfs_force_use_readdirplus(dir);
1541         ret = 1;
1542 out:
1543         nfs_free_fattr(fattr);
1544         nfs_free_fhandle(fhandle);
1545
1546         /*
1547          * If the lookup failed despite the dentry change attribute being
1548          * a match, then we should revalidate the directory cache.
1549          */
1550         if (!ret && nfs_dentry_verify_change(dir, dentry))
1551                 nfs_mark_dir_for_revalidate(dir);
1552         return nfs_lookup_revalidate_done(dir, dentry, inode, ret);
1553 }
1554
1555 /*
1556  * This is called every time the dcache has a lookup hit,
1557  * and we should check whether we can really trust that
1558  * lookup.
1559  *
1560  * NOTE! The hit can be a negative hit too, don't assume
1561  * we have an inode!
1562  *
1563  * If the parent directory is seen to have changed, we throw out the
1564  * cached dentry and do a new lookup.
1565  */
1566 static int
1567 nfs_do_lookup_revalidate(struct inode *dir, struct dentry *dentry,
1568                          unsigned int flags)
1569 {
1570         struct inode *inode;
1571         int error;
1572
1573         nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
1574         inode = d_inode(dentry);
1575
1576         if (!inode)
1577                 return nfs_lookup_revalidate_negative(dir, dentry, flags);
1578
1579         if (is_bad_inode(inode)) {
1580                 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1581                                 __func__, dentry);
1582                 goto out_bad;
1583         }
1584
1585         if (nfs_verifier_is_delegated(dentry))
1586                 return nfs_lookup_revalidate_delegated(dir, dentry, inode);
1587
1588         /* Force a full look up iff the parent directory has changed */
1589         if (!(flags & (LOOKUP_EXCL | LOOKUP_REVAL)) &&
1590             nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU)) {
1591                 error = nfs_lookup_verify_inode(inode, flags);
1592                 if (error) {
1593                         if (error == -ESTALE)
1594                                 nfs_mark_dir_for_revalidate(dir);
1595                         goto out_bad;
1596                 }
1597                 nfs_advise_use_readdirplus(dir);
1598                 goto out_valid;
1599         }
1600
1601         if (flags & LOOKUP_RCU)
1602                 return -ECHILD;
1603
1604         if (NFS_STALE(inode))
1605                 goto out_bad;
1606
1607         trace_nfs_lookup_revalidate_enter(dir, dentry, flags);
1608         error = nfs_lookup_revalidate_dentry(dir, dentry, inode);
1609         trace_nfs_lookup_revalidate_exit(dir, dentry, flags, error);
1610         return error;
1611 out_valid:
1612         return nfs_lookup_revalidate_done(dir, dentry, inode, 1);
1613 out_bad:
1614         if (flags & LOOKUP_RCU)
1615                 return -ECHILD;
1616         return nfs_lookup_revalidate_done(dir, dentry, inode, 0);
1617 }
1618
1619 static int
1620 __nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags,
1621                         int (*reval)(struct inode *, struct dentry *, unsigned int))
1622 {
1623         struct dentry *parent;
1624         struct inode *dir;
1625         int ret;
1626
1627         if (flags & LOOKUP_RCU) {
1628                 parent = READ_ONCE(dentry->d_parent);
1629                 dir = d_inode_rcu(parent);
1630                 if (!dir)
1631                         return -ECHILD;
1632                 ret = reval(dir, dentry, flags);
1633                 if (parent != READ_ONCE(dentry->d_parent))
1634                         return -ECHILD;
1635         } else {
1636                 parent = dget_parent(dentry);
1637                 ret = reval(d_inode(parent), dentry, flags);
1638                 dput(parent);
1639         }
1640         return ret;
1641 }
1642
1643 static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
1644 {
1645         return __nfs_lookup_revalidate(dentry, flags, nfs_do_lookup_revalidate);
1646 }
1647
1648 /*
1649  * A weaker form of d_revalidate for revalidating just the d_inode(dentry)
1650  * when we don't really care about the dentry name. This is called when a
1651  * pathwalk ends on a dentry that was not found via a normal lookup in the
1652  * parent dir (e.g.: ".", "..", procfs symlinks or mountpoint traversals).
1653  *
1654  * In this situation, we just want to verify that the inode itself is OK
1655  * since the dentry might have changed on the server.
1656  */
1657 static int nfs_weak_revalidate(struct dentry *dentry, unsigned int flags)
1658 {
1659         struct inode *inode = d_inode(dentry);
1660         int error = 0;
1661
1662         /*
1663          * I believe we can only get a negative dentry here in the case of a
1664          * procfs-style symlink. Just assume it's correct for now, but we may
1665          * eventually need to do something more here.
1666          */
1667         if (!inode) {
1668                 dfprintk(LOOKUPCACHE, "%s: %pd2 has negative inode\n",
1669                                 __func__, dentry);
1670                 return 1;
1671         }
1672
1673         if (is_bad_inode(inode)) {
1674                 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1675                                 __func__, dentry);
1676                 return 0;
1677         }
1678
1679         error = nfs_lookup_verify_inode(inode, flags);
1680         dfprintk(LOOKUPCACHE, "NFS: %s: inode %lu is %s\n",
1681                         __func__, inode->i_ino, error ? "invalid" : "valid");
1682         return !error;
1683 }
1684
1685 /*
1686  * This is called from dput() when d_count is going to 0.
1687  */
1688 static int nfs_dentry_delete(const struct dentry *dentry)
1689 {
1690         dfprintk(VFS, "NFS: dentry_delete(%pd2, %x)\n",
1691                 dentry, dentry->d_flags);
1692
1693         /* Unhash any dentry with a stale inode */
1694         if (d_really_is_positive(dentry) && NFS_STALE(d_inode(dentry)))
1695                 return 1;
1696
1697         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1698                 /* Unhash it, so that ->d_iput() would be called */
1699                 return 1;
1700         }
1701         if (!(dentry->d_sb->s_flags & SB_ACTIVE)) {
1702                 /* Unhash it, so that ancestors of killed async unlink
1703                  * files will be cleaned up during umount */
1704                 return 1;
1705         }
1706         return 0;
1707
1708 }
1709
1710 /* Ensure that we revalidate inode->i_nlink */
1711 static void nfs_drop_nlink(struct inode *inode)
1712 {
1713         spin_lock(&inode->i_lock);
1714         /* drop the inode if we're reasonably sure this is the last link */
1715         if (inode->i_nlink > 0)
1716                 drop_nlink(inode);
1717         NFS_I(inode)->attr_gencount = nfs_inc_attr_generation_counter();
1718         nfs_set_cache_invalid(
1719                 inode, NFS_INO_INVALID_CHANGE | NFS_INO_INVALID_CTIME |
1720                                NFS_INO_INVALID_NLINK);
1721         spin_unlock(&inode->i_lock);
1722 }
1723
1724 /*
1725  * Called when the dentry loses inode.
1726  * We use it to clean up silly-renamed files.
1727  */
1728 static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1729 {
1730         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1731                 nfs_complete_unlink(dentry, inode);
1732                 nfs_drop_nlink(inode);
1733         }
1734         iput(inode);
1735 }
1736
1737 static void nfs_d_release(struct dentry *dentry)
1738 {
1739         /* free cached devname value, if it survived that far */
1740         if (unlikely(dentry->d_fsdata)) {
1741                 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1742                         WARN_ON(1);
1743                 else
1744                         kfree(dentry->d_fsdata);
1745         }
1746 }
1747
1748 const struct dentry_operations nfs_dentry_operations = {
1749         .d_revalidate   = nfs_lookup_revalidate,
1750         .d_weak_revalidate      = nfs_weak_revalidate,
1751         .d_delete       = nfs_dentry_delete,
1752         .d_iput         = nfs_dentry_iput,
1753         .d_automount    = nfs_d_automount,
1754         .d_release      = nfs_d_release,
1755 };
1756 EXPORT_SYMBOL_GPL(nfs_dentry_operations);
1757
1758 struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
1759 {
1760         struct dentry *res;
1761         struct inode *inode = NULL;
1762         struct nfs_fh *fhandle = NULL;
1763         struct nfs_fattr *fattr = NULL;
1764         unsigned long dir_verifier;
1765         int error;
1766
1767         dfprintk(VFS, "NFS: lookup(%pd2)\n", dentry);
1768         nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
1769
1770         if (unlikely(dentry->d_name.len > NFS_SERVER(dir)->namelen))
1771                 return ERR_PTR(-ENAMETOOLONG);
1772
1773         /*
1774          * If we're doing an exclusive create, optimize away the lookup
1775          * but don't hash the dentry.
1776          */
1777         if (nfs_is_exclusive_create(dir, flags) || flags & LOOKUP_RENAME_TARGET)
1778                 return NULL;
1779
1780         res = ERR_PTR(-ENOMEM);
1781         fhandle = nfs_alloc_fhandle();
1782         fattr = nfs_alloc_fattr_with_label(NFS_SERVER(dir));
1783         if (fhandle == NULL || fattr == NULL)
1784                 goto out;
1785
1786         dir_verifier = nfs_save_change_attribute(dir);
1787         trace_nfs_lookup_enter(dir, dentry, flags);
1788         error = NFS_PROTO(dir)->lookup(dir, dentry, fhandle, fattr);
1789         if (error == -ENOENT) {
1790                 if (nfs_server_capable(dir, NFS_CAP_CASE_INSENSITIVE))
1791                         dir_verifier = inode_peek_iversion_raw(dir);
1792                 goto no_entry;
1793         }
1794         if (error < 0) {
1795                 res = ERR_PTR(error);
1796                 goto out;
1797         }
1798         inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
1799         res = ERR_CAST(inode);
1800         if (IS_ERR(res))
1801                 goto out;
1802
1803         /* Notify readdir to use READDIRPLUS */
1804         nfs_force_use_readdirplus(dir);
1805
1806 no_entry:
1807         res = d_splice_alias(inode, dentry);
1808         if (res != NULL) {
1809                 if (IS_ERR(res))
1810                         goto out;
1811                 dentry = res;
1812         }
1813         nfs_set_verifier(dentry, dir_verifier);
1814 out:
1815         trace_nfs_lookup_exit(dir, dentry, flags, PTR_ERR_OR_ZERO(res));
1816         nfs_free_fattr(fattr);
1817         nfs_free_fhandle(fhandle);
1818         return res;
1819 }
1820 EXPORT_SYMBOL_GPL(nfs_lookup);
1821
1822 void nfs_d_prune_case_insensitive_aliases(struct inode *inode)
1823 {
1824         /* Case insensitive server? Revalidate dentries */
1825         if (inode && nfs_server_capable(inode, NFS_CAP_CASE_INSENSITIVE))
1826                 d_prune_aliases(inode);
1827 }
1828 EXPORT_SYMBOL_GPL(nfs_d_prune_case_insensitive_aliases);
1829
1830 #if IS_ENABLED(CONFIG_NFS_V4)
1831 static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
1832
1833 const struct dentry_operations nfs4_dentry_operations = {
1834         .d_revalidate   = nfs4_lookup_revalidate,
1835         .d_weak_revalidate      = nfs_weak_revalidate,
1836         .d_delete       = nfs_dentry_delete,
1837         .d_iput         = nfs_dentry_iput,
1838         .d_automount    = nfs_d_automount,
1839         .d_release      = nfs_d_release,
1840 };
1841 EXPORT_SYMBOL_GPL(nfs4_dentry_operations);
1842
1843 static fmode_t flags_to_mode(int flags)
1844 {
1845         fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1846         if ((flags & O_ACCMODE) != O_WRONLY)
1847                 res |= FMODE_READ;
1848         if ((flags & O_ACCMODE) != O_RDONLY)
1849                 res |= FMODE_WRITE;
1850         return res;
1851 }
1852
1853 static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags, struct file *filp)
1854 {
1855         return alloc_nfs_open_context(dentry, flags_to_mode(open_flags), filp);
1856 }
1857
1858 static int do_open(struct inode *inode, struct file *filp)
1859 {
1860         nfs_fscache_open_file(inode, filp);
1861         return 0;
1862 }
1863
1864 static int nfs_finish_open(struct nfs_open_context *ctx,
1865                            struct dentry *dentry,
1866                            struct file *file, unsigned open_flags)
1867 {
1868         int err;
1869
1870         err = finish_open(file, dentry, do_open);
1871         if (err)
1872                 goto out;
1873         if (S_ISREG(file->f_path.dentry->d_inode->i_mode))
1874                 nfs_file_set_open_context(file, ctx);
1875         else
1876                 err = -EOPENSTALE;
1877 out:
1878         return err;
1879 }
1880
1881 int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
1882                     struct file *file, unsigned open_flags,
1883                     umode_t mode)
1884 {
1885         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1886         struct nfs_open_context *ctx;
1887         struct dentry *res;
1888         struct iattr attr = { .ia_valid = ATTR_OPEN };
1889         struct inode *inode;
1890         unsigned int lookup_flags = 0;
1891         bool switched = false;
1892         int created = 0;
1893         int err;
1894
1895         /* Expect a negative dentry */
1896         BUG_ON(d_inode(dentry));
1897
1898         dfprintk(VFS, "NFS: atomic_open(%s/%lu), %pd\n",
1899                         dir->i_sb->s_id, dir->i_ino, dentry);
1900
1901         err = nfs_check_flags(open_flags);
1902         if (err)
1903                 return err;
1904
1905         /* NFS only supports OPEN on regular files */
1906         if ((open_flags & O_DIRECTORY)) {
1907                 if (!d_in_lookup(dentry)) {
1908                         /*
1909                          * Hashed negative dentry with O_DIRECTORY: dentry was
1910                          * revalidated and is fine, no need to perform lookup
1911                          * again
1912                          */
1913                         return -ENOENT;
1914                 }
1915                 lookup_flags = LOOKUP_OPEN|LOOKUP_DIRECTORY;
1916                 goto no_open;
1917         }
1918
1919         if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1920                 return -ENAMETOOLONG;
1921
1922         if (open_flags & O_CREAT) {
1923                 struct nfs_server *server = NFS_SERVER(dir);
1924
1925                 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
1926                         mode &= ~current_umask();
1927
1928                 attr.ia_valid |= ATTR_MODE;
1929                 attr.ia_mode = mode;
1930         }
1931         if (open_flags & O_TRUNC) {
1932                 attr.ia_valid |= ATTR_SIZE;
1933                 attr.ia_size = 0;
1934         }
1935
1936         if (!(open_flags & O_CREAT) && !d_in_lookup(dentry)) {
1937                 d_drop(dentry);
1938                 switched = true;
1939                 dentry = d_alloc_parallel(dentry->d_parent,
1940                                           &dentry->d_name, &wq);
1941                 if (IS_ERR(dentry))
1942                         return PTR_ERR(dentry);
1943                 if (unlikely(!d_in_lookup(dentry)))
1944                         return finish_no_open(file, dentry);
1945         }
1946
1947         ctx = create_nfs_open_context(dentry, open_flags, file);
1948         err = PTR_ERR(ctx);
1949         if (IS_ERR(ctx))
1950                 goto out;
1951
1952         trace_nfs_atomic_open_enter(dir, ctx, open_flags);
1953         inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr, &created);
1954         if (created)
1955                 file->f_mode |= FMODE_CREATED;
1956         if (IS_ERR(inode)) {
1957                 err = PTR_ERR(inode);
1958                 trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
1959                 put_nfs_open_context(ctx);
1960                 d_drop(dentry);
1961                 switch (err) {
1962                 case -ENOENT:
1963                         d_splice_alias(NULL, dentry);
1964                         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1965                         break;
1966                 case -EISDIR:
1967                 case -ENOTDIR:
1968                         goto no_open;
1969                 case -ELOOP:
1970                         if (!(open_flags & O_NOFOLLOW))
1971                                 goto no_open;
1972                         break;
1973                         /* case -EINVAL: */
1974                 default:
1975                         break;
1976                 }
1977                 goto out;
1978         }
1979
1980         err = nfs_finish_open(ctx, ctx->dentry, file, open_flags);
1981         trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
1982         put_nfs_open_context(ctx);
1983 out:
1984         if (unlikely(switched)) {
1985                 d_lookup_done(dentry);
1986                 dput(dentry);
1987         }
1988         return err;
1989
1990 no_open:
1991         res = nfs_lookup(dir, dentry, lookup_flags);
1992         if (switched) {
1993                 d_lookup_done(dentry);
1994                 if (!res)
1995                         res = dentry;
1996                 else
1997                         dput(dentry);
1998         }
1999         if (IS_ERR(res))
2000                 return PTR_ERR(res);
2001         return finish_no_open(file, res);
2002 }
2003 EXPORT_SYMBOL_GPL(nfs_atomic_open);
2004
2005 static int
2006 nfs4_do_lookup_revalidate(struct inode *dir, struct dentry *dentry,
2007                           unsigned int flags)
2008 {
2009         struct inode *inode;
2010
2011         if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
2012                 goto full_reval;
2013         if (d_mountpoint(dentry))
2014                 goto full_reval;
2015
2016         inode = d_inode(dentry);
2017
2018         /* We can't create new files in nfs_open_revalidate(), so we
2019          * optimize away revalidation of negative dentries.
2020          */
2021         if (inode == NULL)
2022                 goto full_reval;
2023
2024         if (nfs_verifier_is_delegated(dentry))
2025                 return nfs_lookup_revalidate_delegated(dir, dentry, inode);
2026
2027         /* NFS only supports OPEN on regular files */
2028         if (!S_ISREG(inode->i_mode))
2029                 goto full_reval;
2030
2031         /* We cannot do exclusive creation on a positive dentry */
2032         if (flags & (LOOKUP_EXCL | LOOKUP_REVAL))
2033                 goto reval_dentry;
2034
2035         /* Check if the directory changed */
2036         if (!nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU))
2037                 goto reval_dentry;
2038
2039         /* Let f_op->open() actually open (and revalidate) the file */
2040         return 1;
2041 reval_dentry:
2042         if (flags & LOOKUP_RCU)
2043                 return -ECHILD;
2044         return nfs_lookup_revalidate_dentry(dir, dentry, inode);
2045
2046 full_reval:
2047         return nfs_do_lookup_revalidate(dir, dentry, flags);
2048 }
2049
2050 static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
2051 {
2052         return __nfs_lookup_revalidate(dentry, flags,
2053                         nfs4_do_lookup_revalidate);
2054 }
2055
2056 #endif /* CONFIG_NFSV4 */
2057
2058 struct dentry *
2059 nfs_add_or_obtain(struct dentry *dentry, struct nfs_fh *fhandle,
2060                                 struct nfs_fattr *fattr)
2061 {
2062         struct dentry *parent = dget_parent(dentry);
2063         struct inode *dir = d_inode(parent);
2064         struct inode *inode;
2065         struct dentry *d;
2066         int error;
2067
2068         d_drop(dentry);
2069
2070         if (fhandle->size == 0) {
2071                 error = NFS_PROTO(dir)->lookup(dir, dentry, fhandle, fattr);
2072                 if (error)
2073                         goto out_error;
2074         }
2075         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2076         if (!(fattr->valid & NFS_ATTR_FATTR)) {
2077                 struct nfs_server *server = NFS_SB(dentry->d_sb);
2078                 error = server->nfs_client->rpc_ops->getattr(server, fhandle,
2079                                 fattr, NULL);
2080                 if (error < 0)
2081                         goto out_error;
2082         }
2083         inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
2084         d = d_splice_alias(inode, dentry);
2085 out:
2086         dput(parent);
2087         return d;
2088 out_error:
2089         d = ERR_PTR(error);
2090         goto out;
2091 }
2092 EXPORT_SYMBOL_GPL(nfs_add_or_obtain);
2093
2094 /*
2095  * Code common to create, mkdir, and mknod.
2096  */
2097 int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
2098                                 struct nfs_fattr *fattr)
2099 {
2100         struct dentry *d;
2101
2102         d = nfs_add_or_obtain(dentry, fhandle, fattr);
2103         if (IS_ERR(d))
2104                 return PTR_ERR(d);
2105
2106         /* Callers don't care */
2107         dput(d);
2108         return 0;
2109 }
2110 EXPORT_SYMBOL_GPL(nfs_instantiate);
2111
2112 /*
2113  * Following a failed create operation, we drop the dentry rather
2114  * than retain a negative dentry. This avoids a problem in the event
2115  * that the operation succeeded on the server, but an error in the
2116  * reply path made it appear to have failed.
2117  */
2118 int nfs_create(struct user_namespace *mnt_userns, struct inode *dir,
2119                struct dentry *dentry, umode_t mode, bool excl)
2120 {
2121         struct iattr attr;
2122         int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
2123         int error;
2124
2125         dfprintk(VFS, "NFS: create(%s/%lu), %pd\n",
2126                         dir->i_sb->s_id, dir->i_ino, dentry);
2127
2128         attr.ia_mode = mode;
2129         attr.ia_valid = ATTR_MODE;
2130
2131         trace_nfs_create_enter(dir, dentry, open_flags);
2132         error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
2133         trace_nfs_create_exit(dir, dentry, open_flags, error);
2134         if (error != 0)
2135                 goto out_err;
2136         return 0;
2137 out_err:
2138         d_drop(dentry);
2139         return error;
2140 }
2141 EXPORT_SYMBOL_GPL(nfs_create);
2142
2143 /*
2144  * See comments for nfs_proc_create regarding failed operations.
2145  */
2146 int
2147 nfs_mknod(struct user_namespace *mnt_userns, struct inode *dir,
2148           struct dentry *dentry, umode_t mode, dev_t rdev)
2149 {
2150         struct iattr attr;
2151         int status;
2152
2153         dfprintk(VFS, "NFS: mknod(%s/%lu), %pd\n",
2154                         dir->i_sb->s_id, dir->i_ino, dentry);
2155
2156         attr.ia_mode = mode;
2157         attr.ia_valid = ATTR_MODE;
2158
2159         trace_nfs_mknod_enter(dir, dentry);
2160         status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
2161         trace_nfs_mknod_exit(dir, dentry, status);
2162         if (status != 0)
2163                 goto out_err;
2164         return 0;
2165 out_err:
2166         d_drop(dentry);
2167         return status;
2168 }
2169 EXPORT_SYMBOL_GPL(nfs_mknod);
2170
2171 /*
2172  * See comments for nfs_proc_create regarding failed operations.
2173  */
2174 int nfs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
2175               struct dentry *dentry, umode_t mode)
2176 {
2177         struct iattr attr;
2178         int error;
2179
2180         dfprintk(VFS, "NFS: mkdir(%s/%lu), %pd\n",
2181                         dir->i_sb->s_id, dir->i_ino, dentry);
2182
2183         attr.ia_valid = ATTR_MODE;
2184         attr.ia_mode = mode | S_IFDIR;
2185
2186         trace_nfs_mkdir_enter(dir, dentry);
2187         error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
2188         trace_nfs_mkdir_exit(dir, dentry, error);
2189         if (error != 0)
2190                 goto out_err;
2191         return 0;
2192 out_err:
2193         d_drop(dentry);
2194         return error;
2195 }
2196 EXPORT_SYMBOL_GPL(nfs_mkdir);
2197
2198 static void nfs_dentry_handle_enoent(struct dentry *dentry)
2199 {
2200         if (simple_positive(dentry))
2201                 d_delete(dentry);
2202 }
2203
2204 static void nfs_dentry_remove_handle_error(struct inode *dir,
2205                                            struct dentry *dentry, int error)
2206 {
2207         switch (error) {
2208         case -ENOENT:
2209                 d_delete(dentry);
2210                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2211                 break;
2212         case 0:
2213                 nfs_d_prune_case_insensitive_aliases(d_inode(dentry));
2214                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2215         }
2216 }
2217
2218 int nfs_rmdir(struct inode *dir, struct dentry *dentry)
2219 {
2220         int error;
2221
2222         dfprintk(VFS, "NFS: rmdir(%s/%lu), %pd\n",
2223                         dir->i_sb->s_id, dir->i_ino, dentry);
2224
2225         trace_nfs_rmdir_enter(dir, dentry);
2226         if (d_really_is_positive(dentry)) {
2227                 down_write(&NFS_I(d_inode(dentry))->rmdir_sem);
2228                 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
2229                 /* Ensure the VFS deletes this inode */
2230                 switch (error) {
2231                 case 0:
2232                         clear_nlink(d_inode(dentry));
2233                         break;
2234                 case -ENOENT:
2235                         nfs_dentry_handle_enoent(dentry);
2236                 }
2237                 up_write(&NFS_I(d_inode(dentry))->rmdir_sem);
2238         } else
2239                 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
2240         nfs_dentry_remove_handle_error(dir, dentry, error);
2241         trace_nfs_rmdir_exit(dir, dentry, error);
2242
2243         return error;
2244 }
2245 EXPORT_SYMBOL_GPL(nfs_rmdir);
2246
2247 /*
2248  * Remove a file after making sure there are no pending writes,
2249  * and after checking that the file has only one user. 
2250  *
2251  * We invalidate the attribute cache and free the inode prior to the operation
2252  * to avoid possible races if the server reuses the inode.
2253  */
2254 static int nfs_safe_remove(struct dentry *dentry)
2255 {
2256         struct inode *dir = d_inode(dentry->d_parent);
2257         struct inode *inode = d_inode(dentry);
2258         int error = -EBUSY;
2259                 
2260         dfprintk(VFS, "NFS: safe_remove(%pd2)\n", dentry);
2261
2262         /* If the dentry was sillyrenamed, we simply call d_delete() */
2263         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
2264                 error = 0;
2265                 goto out;
2266         }
2267
2268         trace_nfs_remove_enter(dir, dentry);
2269         if (inode != NULL) {
2270                 error = NFS_PROTO(dir)->remove(dir, dentry);
2271                 if (error == 0)
2272                         nfs_drop_nlink(inode);
2273         } else
2274                 error = NFS_PROTO(dir)->remove(dir, dentry);
2275         if (error == -ENOENT)
2276                 nfs_dentry_handle_enoent(dentry);
2277         trace_nfs_remove_exit(dir, dentry, error);
2278 out:
2279         return error;
2280 }
2281
2282 /*  We do silly rename. In case sillyrename() returns -EBUSY, the inode
2283  *  belongs to an active ".nfs..." file and we return -EBUSY.
2284  *
2285  *  If sillyrename() returns 0, we do nothing, otherwise we unlink.
2286  */
2287 int nfs_unlink(struct inode *dir, struct dentry *dentry)
2288 {
2289         int error;
2290         int need_rehash = 0;
2291
2292         dfprintk(VFS, "NFS: unlink(%s/%lu, %pd)\n", dir->i_sb->s_id,
2293                 dir->i_ino, dentry);
2294
2295         trace_nfs_unlink_enter(dir, dentry);
2296         spin_lock(&dentry->d_lock);
2297         if (d_count(dentry) > 1) {
2298                 spin_unlock(&dentry->d_lock);
2299                 /* Start asynchronous writeout of the inode */
2300                 write_inode_now(d_inode(dentry), 0);
2301                 error = nfs_sillyrename(dir, dentry);
2302                 goto out;
2303         }
2304         if (!d_unhashed(dentry)) {
2305                 __d_drop(dentry);
2306                 need_rehash = 1;
2307         }
2308         spin_unlock(&dentry->d_lock);
2309         error = nfs_safe_remove(dentry);
2310         nfs_dentry_remove_handle_error(dir, dentry, error);
2311         if (need_rehash)
2312                 d_rehash(dentry);
2313 out:
2314         trace_nfs_unlink_exit(dir, dentry, error);
2315         return error;
2316 }
2317 EXPORT_SYMBOL_GPL(nfs_unlink);
2318
2319 /*
2320  * To create a symbolic link, most file systems instantiate a new inode,
2321  * add a page to it containing the path, then write it out to the disk
2322  * using prepare_write/commit_write.
2323  *
2324  * Unfortunately the NFS client can't create the in-core inode first
2325  * because it needs a file handle to create an in-core inode (see
2326  * fs/nfs/inode.c:nfs_fhget).  We only have a file handle *after* the
2327  * symlink request has completed on the server.
2328  *
2329  * So instead we allocate a raw page, copy the symname into it, then do
2330  * the SYMLINK request with the page as the buffer.  If it succeeds, we
2331  * now have a new file handle and can instantiate an in-core NFS inode
2332  * and move the raw page into its mapping.
2333  */
2334 int nfs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
2335                 struct dentry *dentry, const char *symname)
2336 {
2337         struct page *page;
2338         char *kaddr;
2339         struct iattr attr;
2340         unsigned int pathlen = strlen(symname);
2341         int error;
2342
2343         dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s)\n", dir->i_sb->s_id,
2344                 dir->i_ino, dentry, symname);
2345
2346         if (pathlen > PAGE_SIZE)
2347                 return -ENAMETOOLONG;
2348
2349         attr.ia_mode = S_IFLNK | S_IRWXUGO;
2350         attr.ia_valid = ATTR_MODE;
2351
2352         page = alloc_page(GFP_USER);
2353         if (!page)
2354                 return -ENOMEM;
2355
2356         kaddr = page_address(page);
2357         memcpy(kaddr, symname, pathlen);
2358         if (pathlen < PAGE_SIZE)
2359                 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
2360
2361         trace_nfs_symlink_enter(dir, dentry);
2362         error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
2363         trace_nfs_symlink_exit(dir, dentry, error);
2364         if (error != 0) {
2365                 dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s) error %d\n",
2366                         dir->i_sb->s_id, dir->i_ino,
2367                         dentry, symname, error);
2368                 d_drop(dentry);
2369                 __free_page(page);
2370                 return error;
2371         }
2372
2373         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2374
2375         /*
2376          * No big deal if we can't add this page to the page cache here.
2377          * READLINK will get the missing page from the server if needed.
2378          */
2379         if (!add_to_page_cache_lru(page, d_inode(dentry)->i_mapping, 0,
2380                                                         GFP_KERNEL)) {
2381                 SetPageUptodate(page);
2382                 unlock_page(page);
2383                 /*
2384                  * add_to_page_cache_lru() grabs an extra page refcount.
2385                  * Drop it here to avoid leaking this page later.
2386                  */
2387                 put_page(page);
2388         } else
2389                 __free_page(page);
2390
2391         return 0;
2392 }
2393 EXPORT_SYMBOL_GPL(nfs_symlink);
2394
2395 int
2396 nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2397 {
2398         struct inode *inode = d_inode(old_dentry);
2399         int error;
2400
2401         dfprintk(VFS, "NFS: link(%pd2 -> %pd2)\n",
2402                 old_dentry, dentry);
2403
2404         trace_nfs_link_enter(inode, dir, dentry);
2405         d_drop(dentry);
2406         if (S_ISREG(inode->i_mode))
2407                 nfs_sync_inode(inode);
2408         error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
2409         if (error == 0) {
2410                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
2411                 ihold(inode);
2412                 d_add(dentry, inode);
2413         }
2414         trace_nfs_link_exit(inode, dir, dentry, error);
2415         return error;
2416 }
2417 EXPORT_SYMBOL_GPL(nfs_link);
2418
2419 /*
2420  * RENAME
2421  * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
2422  * different file handle for the same inode after a rename (e.g. when
2423  * moving to a different directory). A fail-safe method to do so would
2424  * be to look up old_dir/old_name, create a link to new_dir/new_name and
2425  * rename the old file using the sillyrename stuff. This way, the original
2426  * file in old_dir will go away when the last process iput()s the inode.
2427  *
2428  * FIXED.
2429  * 
2430  * It actually works quite well. One needs to have the possibility for
2431  * at least one ".nfs..." file in each directory the file ever gets
2432  * moved or linked to which happens automagically with the new
2433  * implementation that only depends on the dcache stuff instead of
2434  * using the inode layer
2435  *
2436  * Unfortunately, things are a little more complicated than indicated
2437  * above. For a cross-directory move, we want to make sure we can get
2438  * rid of the old inode after the operation.  This means there must be
2439  * no pending writes (if it's a file), and the use count must be 1.
2440  * If these conditions are met, we can drop the dentries before doing
2441  * the rename.
2442  */
2443 int nfs_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
2444                struct dentry *old_dentry, struct inode *new_dir,
2445                struct dentry *new_dentry, unsigned int flags)
2446 {
2447         struct inode *old_inode = d_inode(old_dentry);
2448         struct inode *new_inode = d_inode(new_dentry);
2449         struct dentry *dentry = NULL, *rehash = NULL;
2450         struct rpc_task *task;
2451         int error = -EBUSY;
2452
2453         if (flags)
2454                 return -EINVAL;
2455
2456         dfprintk(VFS, "NFS: rename(%pd2 -> %pd2, ct=%d)\n",
2457                  old_dentry, new_dentry,
2458                  d_count(new_dentry));
2459
2460         trace_nfs_rename_enter(old_dir, old_dentry, new_dir, new_dentry);
2461         /*
2462          * For non-directories, check whether the target is busy and if so,
2463          * make a copy of the dentry and then do a silly-rename. If the
2464          * silly-rename succeeds, the copied dentry is hashed and becomes
2465          * the new target.
2466          */
2467         if (new_inode && !S_ISDIR(new_inode->i_mode)) {
2468                 /*
2469                  * To prevent any new references to the target during the
2470                  * rename, we unhash the dentry in advance.
2471                  */
2472                 if (!d_unhashed(new_dentry)) {
2473                         d_drop(new_dentry);
2474                         rehash = new_dentry;
2475                 }
2476
2477                 if (d_count(new_dentry) > 2) {
2478                         int err;
2479
2480                         /* copy the target dentry's name */
2481                         dentry = d_alloc(new_dentry->d_parent,
2482                                          &new_dentry->d_name);
2483                         if (!dentry)
2484                                 goto out;
2485
2486                         /* silly-rename the existing target ... */
2487                         err = nfs_sillyrename(new_dir, new_dentry);
2488                         if (err)
2489                                 goto out;
2490
2491                         new_dentry = dentry;
2492                         rehash = NULL;
2493                         new_inode = NULL;
2494                 }
2495         }
2496
2497         if (S_ISREG(old_inode->i_mode))
2498                 nfs_sync_inode(old_inode);
2499         task = nfs_async_rename(old_dir, new_dir, old_dentry, new_dentry, NULL);
2500         if (IS_ERR(task)) {
2501                 error = PTR_ERR(task);
2502                 goto out;
2503         }
2504
2505         error = rpc_wait_for_completion_task(task);
2506         if (error != 0) {
2507                 ((struct nfs_renamedata *)task->tk_calldata)->cancelled = 1;
2508                 /* Paired with the atomic_dec_and_test() barrier in rpc_do_put_task() */
2509                 smp_wmb();
2510         } else
2511                 error = task->tk_status;
2512         rpc_put_task(task);
2513         /* Ensure the inode attributes are revalidated */
2514         if (error == 0) {
2515                 spin_lock(&old_inode->i_lock);
2516                 NFS_I(old_inode)->attr_gencount = nfs_inc_attr_generation_counter();
2517                 nfs_set_cache_invalid(old_inode, NFS_INO_INVALID_CHANGE |
2518                                                          NFS_INO_INVALID_CTIME |
2519                                                          NFS_INO_REVAL_FORCED);
2520                 spin_unlock(&old_inode->i_lock);
2521         }
2522 out:
2523         if (rehash)
2524                 d_rehash(rehash);
2525         trace_nfs_rename_exit(old_dir, old_dentry,
2526                         new_dir, new_dentry, error);
2527         if (!error) {
2528                 if (new_inode != NULL)
2529                         nfs_drop_nlink(new_inode);
2530                 /*
2531                  * The d_move() should be here instead of in an async RPC completion
2532                  * handler because we need the proper locks to move the dentry.  If
2533                  * we're interrupted by a signal, the async RPC completion handler
2534                  * should mark the directories for revalidation.
2535                  */
2536                 d_move(old_dentry, new_dentry);
2537                 nfs_set_verifier(old_dentry,
2538                                         nfs_save_change_attribute(new_dir));
2539         } else if (error == -ENOENT)
2540                 nfs_dentry_handle_enoent(old_dentry);
2541
2542         /* new dentry created? */
2543         if (dentry)
2544                 dput(dentry);
2545         return error;
2546 }
2547 EXPORT_SYMBOL_GPL(nfs_rename);
2548
2549 static DEFINE_SPINLOCK(nfs_access_lru_lock);
2550 static LIST_HEAD(nfs_access_lru_list);
2551 static atomic_long_t nfs_access_nr_entries;
2552
2553 static unsigned long nfs_access_max_cachesize = 4*1024*1024;
2554 module_param(nfs_access_max_cachesize, ulong, 0644);
2555 MODULE_PARM_DESC(nfs_access_max_cachesize, "NFS access maximum total cache length");
2556
2557 static void nfs_access_free_entry(struct nfs_access_entry *entry)
2558 {
2559         put_group_info(entry->group_info);
2560         kfree_rcu(entry, rcu_head);
2561         smp_mb__before_atomic();
2562         atomic_long_dec(&nfs_access_nr_entries);
2563         smp_mb__after_atomic();
2564 }
2565
2566 static void nfs_access_free_list(struct list_head *head)
2567 {
2568         struct nfs_access_entry *cache;
2569
2570         while (!list_empty(head)) {
2571                 cache = list_entry(head->next, struct nfs_access_entry, lru);
2572                 list_del(&cache->lru);
2573                 nfs_access_free_entry(cache);
2574         }
2575 }
2576
2577 static unsigned long
2578 nfs_do_access_cache_scan(unsigned int nr_to_scan)
2579 {
2580         LIST_HEAD(head);
2581         struct nfs_inode *nfsi, *next;
2582         struct nfs_access_entry *cache;
2583         long freed = 0;
2584
2585         spin_lock(&nfs_access_lru_lock);
2586         list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
2587                 struct inode *inode;
2588
2589                 if (nr_to_scan-- == 0)
2590                         break;
2591                 inode = &nfsi->vfs_inode;
2592                 spin_lock(&inode->i_lock);
2593                 if (list_empty(&nfsi->access_cache_entry_lru))
2594                         goto remove_lru_entry;
2595                 cache = list_entry(nfsi->access_cache_entry_lru.next,
2596                                 struct nfs_access_entry, lru);
2597                 list_move(&cache->lru, &head);
2598                 rb_erase(&cache->rb_node, &nfsi->access_cache);
2599                 freed++;
2600                 if (!list_empty(&nfsi->access_cache_entry_lru))
2601                         list_move_tail(&nfsi->access_cache_inode_lru,
2602                                         &nfs_access_lru_list);
2603                 else {
2604 remove_lru_entry:
2605                         list_del_init(&nfsi->access_cache_inode_lru);
2606                         smp_mb__before_atomic();
2607                         clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
2608                         smp_mb__after_atomic();
2609                 }
2610                 spin_unlock(&inode->i_lock);
2611         }
2612         spin_unlock(&nfs_access_lru_lock);
2613         nfs_access_free_list(&head);
2614         return freed;
2615 }
2616
2617 unsigned long
2618 nfs_access_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
2619 {
2620         int nr_to_scan = sc->nr_to_scan;
2621         gfp_t gfp_mask = sc->gfp_mask;
2622
2623         if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
2624                 return SHRINK_STOP;
2625         return nfs_do_access_cache_scan(nr_to_scan);
2626 }
2627
2628
2629 unsigned long
2630 nfs_access_cache_count(struct shrinker *shrink, struct shrink_control *sc)
2631 {
2632         return vfs_pressure_ratio(atomic_long_read(&nfs_access_nr_entries));
2633 }
2634
2635 static void
2636 nfs_access_cache_enforce_limit(void)
2637 {
2638         long nr_entries = atomic_long_read(&nfs_access_nr_entries);
2639         unsigned long diff;
2640         unsigned int nr_to_scan;
2641
2642         if (nr_entries < 0 || nr_entries <= nfs_access_max_cachesize)
2643                 return;
2644         nr_to_scan = 100;
2645         diff = nr_entries - nfs_access_max_cachesize;
2646         if (diff < nr_to_scan)
2647                 nr_to_scan = diff;
2648         nfs_do_access_cache_scan(nr_to_scan);
2649 }
2650
2651 static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
2652 {
2653         struct rb_root *root_node = &nfsi->access_cache;
2654         struct rb_node *n;
2655         struct nfs_access_entry *entry;
2656
2657         /* Unhook entries from the cache */
2658         while ((n = rb_first(root_node)) != NULL) {
2659                 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2660                 rb_erase(n, root_node);
2661                 list_move(&entry->lru, head);
2662         }
2663         nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
2664 }
2665
2666 void nfs_access_zap_cache(struct inode *inode)
2667 {
2668         LIST_HEAD(head);
2669
2670         if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
2671                 return;
2672         /* Remove from global LRU init */
2673         spin_lock(&nfs_access_lru_lock);
2674         if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2675                 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
2676
2677         spin_lock(&inode->i_lock);
2678         __nfs_access_zap_cache(NFS_I(inode), &head);
2679         spin_unlock(&inode->i_lock);
2680         spin_unlock(&nfs_access_lru_lock);
2681         nfs_access_free_list(&head);
2682 }
2683 EXPORT_SYMBOL_GPL(nfs_access_zap_cache);
2684
2685 static int access_cmp(const struct cred *a, const struct nfs_access_entry *b)
2686 {
2687         struct group_info *ga, *gb;
2688         int g;
2689
2690         if (uid_lt(a->fsuid, b->fsuid))
2691                 return -1;
2692         if (uid_gt(a->fsuid, b->fsuid))
2693                 return 1;
2694
2695         if (gid_lt(a->fsgid, b->fsgid))
2696                 return -1;
2697         if (gid_gt(a->fsgid, b->fsgid))
2698                 return 1;
2699
2700         ga = a->group_info;
2701         gb = b->group_info;
2702         if (ga == gb)
2703                 return 0;
2704         if (ga == NULL)
2705                 return -1;
2706         if (gb == NULL)
2707                 return 1;
2708         if (ga->ngroups < gb->ngroups)
2709                 return -1;
2710         if (ga->ngroups > gb->ngroups)
2711                 return 1;
2712
2713         for (g = 0; g < ga->ngroups; g++) {
2714                 if (gid_lt(ga->gid[g], gb->gid[g]))
2715                         return -1;
2716                 if (gid_gt(ga->gid[g], gb->gid[g]))
2717                         return 1;
2718         }
2719         return 0;
2720 }
2721
2722 static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, const struct cred *cred)
2723 {
2724         struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
2725
2726         while (n != NULL) {
2727                 struct nfs_access_entry *entry =
2728                         rb_entry(n, struct nfs_access_entry, rb_node);
2729                 int cmp = access_cmp(cred, entry);
2730
2731                 if (cmp < 0)
2732                         n = n->rb_left;
2733                 else if (cmp > 0)
2734                         n = n->rb_right;
2735                 else
2736                         return entry;
2737         }
2738         return NULL;
2739 }
2740
2741 static int nfs_access_get_cached_locked(struct inode *inode, const struct cred *cred, u32 *mask, bool may_block)
2742 {
2743         struct nfs_inode *nfsi = NFS_I(inode);
2744         struct nfs_access_entry *cache;
2745         bool retry = true;
2746         int err;
2747
2748         spin_lock(&inode->i_lock);
2749         for(;;) {
2750                 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2751                         goto out_zap;
2752                 cache = nfs_access_search_rbtree(inode, cred);
2753                 err = -ENOENT;
2754                 if (cache == NULL)
2755                         goto out;
2756                 /* Found an entry, is our attribute cache valid? */
2757                 if (!nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS))
2758                         break;
2759                 if (!retry)
2760                         break;
2761                 err = -ECHILD;
2762                 if (!may_block)
2763                         goto out;
2764                 spin_unlock(&inode->i_lock);
2765                 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
2766                 if (err)
2767                         return err;
2768                 spin_lock(&inode->i_lock);
2769                 retry = false;
2770         }
2771         *mask = cache->mask;
2772         list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
2773         err = 0;
2774 out:
2775         spin_unlock(&inode->i_lock);
2776         return err;
2777 out_zap:
2778         spin_unlock(&inode->i_lock);
2779         nfs_access_zap_cache(inode);
2780         return -ENOENT;
2781 }
2782
2783 static int nfs_access_get_cached_rcu(struct inode *inode, const struct cred *cred, u32 *mask)
2784 {
2785         /* Only check the most recently returned cache entry,
2786          * but do it without locking.
2787          */
2788         struct nfs_inode *nfsi = NFS_I(inode);
2789         struct nfs_access_entry *cache;
2790         int err = -ECHILD;
2791         struct list_head *lh;
2792
2793         rcu_read_lock();
2794         if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2795                 goto out;
2796         lh = rcu_dereference(list_tail_rcu(&nfsi->access_cache_entry_lru));
2797         cache = list_entry(lh, struct nfs_access_entry, lru);
2798         if (lh == &nfsi->access_cache_entry_lru ||
2799             access_cmp(cred, cache) != 0)
2800                 cache = NULL;
2801         if (cache == NULL)
2802                 goto out;
2803         if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS))
2804                 goto out;
2805         *mask = cache->mask;
2806         err = 0;
2807 out:
2808         rcu_read_unlock();
2809         return err;
2810 }
2811
2812 int nfs_access_get_cached(struct inode *inode, const struct cred *cred,
2813                           u32 *mask, bool may_block)
2814 {
2815         int status;
2816
2817         status = nfs_access_get_cached_rcu(inode, cred, mask);
2818         if (status != 0)
2819                 status = nfs_access_get_cached_locked(inode, cred, mask,
2820                     may_block);
2821
2822         return status;
2823 }
2824 EXPORT_SYMBOL_GPL(nfs_access_get_cached);
2825
2826 static void nfs_access_add_rbtree(struct inode *inode,
2827                                   struct nfs_access_entry *set,
2828                                   const struct cred *cred)
2829 {
2830         struct nfs_inode *nfsi = NFS_I(inode);
2831         struct rb_root *root_node = &nfsi->access_cache;
2832         struct rb_node **p = &root_node->rb_node;
2833         struct rb_node *parent = NULL;
2834         struct nfs_access_entry *entry;
2835         int cmp;
2836
2837         spin_lock(&inode->i_lock);
2838         while (*p != NULL) {
2839                 parent = *p;
2840                 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2841                 cmp = access_cmp(cred, entry);
2842
2843                 if (cmp < 0)
2844                         p = &parent->rb_left;
2845                 else if (cmp > 0)
2846                         p = &parent->rb_right;
2847                 else
2848                         goto found;
2849         }
2850         rb_link_node(&set->rb_node, parent, p);
2851         rb_insert_color(&set->rb_node, root_node);
2852         list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2853         spin_unlock(&inode->i_lock);
2854         return;
2855 found:
2856         rb_replace_node(parent, &set->rb_node, root_node);
2857         list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2858         list_del(&entry->lru);
2859         spin_unlock(&inode->i_lock);
2860         nfs_access_free_entry(entry);
2861 }
2862
2863 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set,
2864                           const struct cred *cred)
2865 {
2866         struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2867         if (cache == NULL)
2868                 return;
2869         RB_CLEAR_NODE(&cache->rb_node);
2870         cache->fsuid = cred->fsuid;
2871         cache->fsgid = cred->fsgid;
2872         cache->group_info = get_group_info(cred->group_info);
2873         cache->mask = set->mask;
2874
2875         /* The above field assignments must be visible
2876          * before this item appears on the lru.  We cannot easily
2877          * use rcu_assign_pointer, so just force the memory barrier.
2878          */
2879         smp_wmb();
2880         nfs_access_add_rbtree(inode, cache, cred);
2881
2882         /* Update accounting */
2883         smp_mb__before_atomic();
2884         atomic_long_inc(&nfs_access_nr_entries);
2885         smp_mb__after_atomic();
2886
2887         /* Add inode to global LRU list */
2888         if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
2889                 spin_lock(&nfs_access_lru_lock);
2890                 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2891                         list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2892                                         &nfs_access_lru_list);
2893                 spin_unlock(&nfs_access_lru_lock);
2894         }
2895         nfs_access_cache_enforce_limit();
2896 }
2897 EXPORT_SYMBOL_GPL(nfs_access_add_cache);
2898
2899 #define NFS_MAY_READ (NFS_ACCESS_READ)
2900 #define NFS_MAY_WRITE (NFS_ACCESS_MODIFY | \
2901                 NFS_ACCESS_EXTEND | \
2902                 NFS_ACCESS_DELETE)
2903 #define NFS_FILE_MAY_WRITE (NFS_ACCESS_MODIFY | \
2904                 NFS_ACCESS_EXTEND)
2905 #define NFS_DIR_MAY_WRITE NFS_MAY_WRITE
2906 #define NFS_MAY_LOOKUP (NFS_ACCESS_LOOKUP)
2907 #define NFS_MAY_EXECUTE (NFS_ACCESS_EXECUTE)
2908 static int
2909 nfs_access_calc_mask(u32 access_result, umode_t umode)
2910 {
2911         int mask = 0;
2912
2913         if (access_result & NFS_MAY_READ)
2914                 mask |= MAY_READ;
2915         if (S_ISDIR(umode)) {
2916                 if ((access_result & NFS_DIR_MAY_WRITE) == NFS_DIR_MAY_WRITE)
2917                         mask |= MAY_WRITE;
2918                 if ((access_result & NFS_MAY_LOOKUP) == NFS_MAY_LOOKUP)
2919                         mask |= MAY_EXEC;
2920         } else if (S_ISREG(umode)) {
2921                 if ((access_result & NFS_FILE_MAY_WRITE) == NFS_FILE_MAY_WRITE)
2922                         mask |= MAY_WRITE;
2923                 if ((access_result & NFS_MAY_EXECUTE) == NFS_MAY_EXECUTE)
2924                         mask |= MAY_EXEC;
2925         } else if (access_result & NFS_MAY_WRITE)
2926                         mask |= MAY_WRITE;
2927         return mask;
2928 }
2929
2930 void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result)
2931 {
2932         entry->mask = access_result;
2933 }
2934 EXPORT_SYMBOL_GPL(nfs_access_set_mask);
2935
2936 static int nfs_do_access(struct inode *inode, const struct cred *cred, int mask)
2937 {
2938         struct nfs_access_entry cache;
2939         bool may_block = (mask & MAY_NOT_BLOCK) == 0;
2940         int cache_mask = -1;
2941         int status;
2942
2943         trace_nfs_access_enter(inode);
2944
2945         status = nfs_access_get_cached(inode, cred, &cache.mask, may_block);
2946         if (status == 0)
2947                 goto out_cached;
2948
2949         status = -ECHILD;
2950         if (!may_block)
2951                 goto out;
2952
2953         /*
2954          * Determine which access bits we want to ask for...
2955          */
2956         cache.mask = NFS_ACCESS_READ | NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND;
2957         if (nfs_server_capable(inode, NFS_CAP_XATTR)) {
2958                 cache.mask |= NFS_ACCESS_XAREAD | NFS_ACCESS_XAWRITE |
2959                     NFS_ACCESS_XALIST;
2960         }
2961         if (S_ISDIR(inode->i_mode))
2962                 cache.mask |= NFS_ACCESS_DELETE | NFS_ACCESS_LOOKUP;
2963         else
2964                 cache.mask |= NFS_ACCESS_EXECUTE;
2965         status = NFS_PROTO(inode)->access(inode, &cache, cred);
2966         if (status != 0) {
2967                 if (status == -ESTALE) {
2968                         if (!S_ISDIR(inode->i_mode))
2969                                 nfs_set_inode_stale(inode);
2970                         else
2971                                 nfs_zap_caches(inode);
2972                 }
2973                 goto out;
2974         }
2975         nfs_access_add_cache(inode, &cache, cred);
2976 out_cached:
2977         cache_mask = nfs_access_calc_mask(cache.mask, inode->i_mode);
2978         if ((mask & ~cache_mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) != 0)
2979                 status = -EACCES;
2980 out:
2981         trace_nfs_access_exit(inode, mask, cache_mask, status);
2982         return status;
2983 }
2984
2985 static int nfs_open_permission_mask(int openflags)
2986 {
2987         int mask = 0;
2988
2989         if (openflags & __FMODE_EXEC) {
2990                 /* ONLY check exec rights */
2991                 mask = MAY_EXEC;
2992         } else {
2993                 if ((openflags & O_ACCMODE) != O_WRONLY)
2994                         mask |= MAY_READ;
2995                 if ((openflags & O_ACCMODE) != O_RDONLY)
2996                         mask |= MAY_WRITE;
2997         }
2998
2999         return mask;
3000 }
3001
3002 int nfs_may_open(struct inode *inode, const struct cred *cred, int openflags)
3003 {
3004         return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
3005 }
3006 EXPORT_SYMBOL_GPL(nfs_may_open);
3007
3008 static int nfs_execute_ok(struct inode *inode, int mask)
3009 {
3010         struct nfs_server *server = NFS_SERVER(inode);
3011         int ret = 0;
3012
3013         if (S_ISDIR(inode->i_mode))
3014                 return 0;
3015         if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_MODE)) {
3016                 if (mask & MAY_NOT_BLOCK)
3017                         return -ECHILD;
3018                 ret = __nfs_revalidate_inode(server, inode);
3019         }
3020         if (ret == 0 && !execute_ok(inode))
3021                 ret = -EACCES;
3022         return ret;
3023 }
3024
3025 int nfs_permission(struct user_namespace *mnt_userns,
3026                    struct inode *inode,
3027                    int mask)
3028 {
3029         const struct cred *cred = current_cred();
3030         int res = 0;
3031
3032         nfs_inc_stats(inode, NFSIOS_VFSACCESS);
3033
3034         if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
3035                 goto out;
3036         /* Is this sys_access() ? */
3037         if (mask & (MAY_ACCESS | MAY_CHDIR))
3038                 goto force_lookup;
3039
3040         switch (inode->i_mode & S_IFMT) {
3041                 case S_IFLNK:
3042                         goto out;
3043                 case S_IFREG:
3044                         if ((mask & MAY_OPEN) &&
3045                            nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN))
3046                                 return 0;
3047                         break;
3048                 case S_IFDIR:
3049                         /*
3050                          * Optimize away all write operations, since the server
3051                          * will check permissions when we perform the op.
3052                          */
3053                         if ((mask & MAY_WRITE) && !(mask & MAY_READ))
3054                                 goto out;
3055         }
3056
3057 force_lookup:
3058         if (!NFS_PROTO(inode)->access)
3059                 goto out_notsup;
3060
3061         res = nfs_do_access(inode, cred, mask);
3062 out:
3063         if (!res && (mask & MAY_EXEC))
3064                 res = nfs_execute_ok(inode, mask);
3065
3066         dfprintk(VFS, "NFS: permission(%s/%lu), mask=0x%x, res=%d\n",
3067                 inode->i_sb->s_id, inode->i_ino, mask, res);
3068         return res;
3069 out_notsup:
3070         if (mask & MAY_NOT_BLOCK)
3071                 return -ECHILD;
3072
3073         res = nfs_revalidate_inode(inode, NFS_INO_INVALID_MODE |
3074                                                   NFS_INO_INVALID_OTHER);
3075         if (res == 0)
3076                 res = generic_permission(&init_user_ns, inode, mask);
3077         goto out;
3078 }
3079 EXPORT_SYMBOL_GPL(nfs_permission);