Merge to Fedora kernel-2.6.18-1.2255_FC5-vs2.0.2.2-rc9 patched with stable patch...
[linux-2.6.git] / fs / nfs / dir.c
1 /*
2  *  linux/fs/nfs/dir.c
3  *
4  *  Copyright (C) 1992  Rick Sladkey
5  *
6  *  nfs directory handling functions
7  *
8  * 10 Apr 1996  Added silly rename for unlink   --okir
9  * 28 Sep 1996  Improved directory cache --okir
10  * 23 Aug 1997  Claus Heine claus@momo.math.rwth-aachen.de 
11  *              Re-implemented silly rename for unlink, newly implemented
12  *              silly rename for nfs_rename() following the suggestions
13  *              of Olaf Kirch (okir) found in this file.
14  *              Following Linus comments on my original hack, this version
15  *              depends only on the dcache stuff and doesn't touch the inode
16  *              layer (iput() and friends).
17  *  6 Jun 1999  Cache readdir lookups in the page cache. -DaveM
18  */
19
20 #include <linux/time.h>
21 #include <linux/errno.h>
22 #include <linux/stat.h>
23 #include <linux/fcntl.h>
24 #include <linux/string.h>
25 #include <linux/kernel.h>
26 #include <linux/slab.h>
27 #include <linux/mm.h>
28 #include <linux/sunrpc/clnt.h>
29 #include <linux/nfs_fs.h>
30 #include <linux/nfs_mount.h>
31 #include <linux/pagemap.h>
32 #include <linux/smp_lock.h>
33 #include <linux/namei.h>
34 #include <linux/mount.h>
35 #include <linux/vserver/xid.h>
36
37 #include "nfs4_fs.h"
38 #include "delegation.h"
39 #include "iostat.h"
40
41 #define NFS_PARANOIA 1
42 /* #define NFS_DEBUG_VERBOSE 1 */
43
44 static int nfs_opendir(struct inode *, struct file *);
45 static int nfs_readdir(struct file *, void *, filldir_t);
46 static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
47 static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
48 static int nfs_mkdir(struct inode *, struct dentry *, int);
49 static int nfs_rmdir(struct inode *, struct dentry *);
50 static int nfs_unlink(struct inode *, struct dentry *);
51 static int nfs_symlink(struct inode *, struct dentry *, const char *);
52 static int nfs_link(struct dentry *, struct inode *, struct dentry *);
53 static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
54 static int nfs_rename(struct inode *, struct dentry *,
55                       struct inode *, struct dentry *);
56 static int nfs_fsync_dir(struct file *, struct dentry *, int);
57 static loff_t nfs_llseek_dir(struct file *, loff_t, int);
58
59 const struct file_operations nfs_dir_operations = {
60         .llseek         = nfs_llseek_dir,
61         .read           = generic_read_dir,
62         .readdir        = nfs_readdir,
63         .open           = nfs_opendir,
64         .release        = nfs_release,
65         .fsync          = nfs_fsync_dir,
66 };
67
68 struct inode_operations nfs_dir_inode_operations = {
69         .create         = nfs_create,
70         .lookup         = nfs_lookup,
71         .link           = nfs_link,
72         .unlink         = nfs_unlink,
73         .symlink        = nfs_symlink,
74         .mkdir          = nfs_mkdir,
75         .rmdir          = nfs_rmdir,
76         .mknod          = nfs_mknod,
77         .rename         = nfs_rename,
78         .permission     = nfs_permission,
79         .getattr        = nfs_getattr,
80         .setattr        = nfs_setattr,
81 };
82
83 #ifdef CONFIG_NFS_V3
84 struct inode_operations nfs3_dir_inode_operations = {
85         .create         = nfs_create,
86         .lookup         = nfs_lookup,
87         .link           = nfs_link,
88         .unlink         = nfs_unlink,
89         .symlink        = nfs_symlink,
90         .mkdir          = nfs_mkdir,
91         .rmdir          = nfs_rmdir,
92         .mknod          = nfs_mknod,
93         .rename         = nfs_rename,
94         .permission     = nfs_permission,
95         .getattr        = nfs_getattr,
96         .setattr        = nfs_setattr,
97         .listxattr      = nfs3_listxattr,
98         .getxattr       = nfs3_getxattr,
99         .setxattr       = nfs3_setxattr,
100         .removexattr    = nfs3_removexattr,
101 };
102 #endif  /* CONFIG_NFS_V3 */
103
104 #ifdef CONFIG_NFS_V4
105
106 static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
107 struct inode_operations nfs4_dir_inode_operations = {
108         .create         = nfs_create,
109         .lookup         = nfs_atomic_lookup,
110         .link           = nfs_link,
111         .unlink         = nfs_unlink,
112         .symlink        = nfs_symlink,
113         .mkdir          = nfs_mkdir,
114         .rmdir          = nfs_rmdir,
115         .mknod          = nfs_mknod,
116         .rename         = nfs_rename,
117         .permission     = nfs_permission,
118         .getattr        = nfs_getattr,
119         .setattr        = nfs_setattr,
120         .getxattr       = nfs4_getxattr,
121         .setxattr       = nfs4_setxattr,
122         .listxattr      = nfs4_listxattr,
123 };
124
125 #endif /* CONFIG_NFS_V4 */
126
127 /*
128  * Open file
129  */
130 static int
131 nfs_opendir(struct inode *inode, struct file *filp)
132 {
133         int res;
134
135         dfprintk(VFS, "NFS: opendir(%s/%ld)\n",
136                         inode->i_sb->s_id, inode->i_ino);
137
138         lock_kernel();
139         /* Call generic open code in order to cache credentials */
140         res = nfs_open(inode, filp);
141         unlock_kernel();
142         return res;
143 }
144
145 typedef u32 * (*decode_dirent_t)(u32 *, struct nfs_entry *, int);
146 typedef struct {
147         struct file     *file;
148         struct page     *page;
149         unsigned long   page_index;
150         u32             *ptr;
151         u64             *dir_cookie;
152         loff_t          current_index;
153         struct nfs_entry *entry;
154         decode_dirent_t decode;
155         int             plus;
156         int             error;
157 } nfs_readdir_descriptor_t;
158
159 /* Now we cache directories properly, by stuffing the dirent
160  * data directly in the page cache.
161  *
162  * Inode invalidation due to refresh etc. takes care of
163  * _everything_, no sloppy entry flushing logic, no extraneous
164  * copying, network direct to page cache, the way it was meant
165  * to be.
166  *
167  * NOTE: Dirent information verification is done always by the
168  *       page-in of the RPC reply, nowhere else, this simplies
169  *       things substantially.
170  */
171 static
172 int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page *page)
173 {
174         struct file     *file = desc->file;
175         struct inode    *inode = file->f_dentry->d_inode;
176         struct rpc_cred *cred = nfs_file_cred(file);
177         unsigned long   timestamp;
178         int             error;
179
180         dfprintk(DIRCACHE, "NFS: %s: reading cookie %Lu into page %lu\n",
181                         __FUNCTION__, (long long)desc->entry->cookie,
182                         page->index);
183
184  again:
185         timestamp = jiffies;
186         error = NFS_PROTO(inode)->readdir(file->f_dentry, cred, desc->entry->cookie, page,
187                                           NFS_SERVER(inode)->dtsize, desc->plus);
188         if (error < 0) {
189                 /* We requested READDIRPLUS, but the server doesn't grok it */
190                 if (error == -ENOTSUPP && desc->plus) {
191                         NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
192                         clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
193                         desc->plus = 0;
194                         goto again;
195                 }
196                 goto error;
197         }
198         SetPageUptodate(page);
199         spin_lock(&inode->i_lock);
200         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
201         spin_unlock(&inode->i_lock);
202         /* Ensure consistent page alignment of the data.
203          * Note: assumes we have exclusive access to this mapping either
204          *       through inode->i_mutex or some other mechanism.
205          */
206         if (page->index == 0)
207                 invalidate_inode_pages2_range(inode->i_mapping, PAGE_CACHE_SIZE, -1);
208         unlock_page(page);
209         return 0;
210  error:
211         SetPageError(page);
212         unlock_page(page);
213         nfs_zap_caches(inode);
214         desc->error = error;
215         return -EIO;
216 }
217
218 static inline
219 int dir_decode(nfs_readdir_descriptor_t *desc)
220 {
221         u32     *p = desc->ptr;
222         p = desc->decode(p, desc->entry, desc->plus);
223         if (IS_ERR(p))
224                 return PTR_ERR(p);
225         desc->ptr = p;
226         return 0;
227 }
228
229 static inline
230 void dir_page_release(nfs_readdir_descriptor_t *desc)
231 {
232         kunmap(desc->page);
233         page_cache_release(desc->page);
234         desc->page = NULL;
235         desc->ptr = NULL;
236 }
237
238 /*
239  * Given a pointer to a buffer that has already been filled by a call
240  * to readdir, find the next entry with cookie '*desc->dir_cookie'.
241  *
242  * If the end of the buffer has been reached, return -EAGAIN, if not,
243  * return the offset within the buffer of the next entry to be
244  * read.
245  */
246 static inline
247 int find_dirent(nfs_readdir_descriptor_t *desc)
248 {
249         struct nfs_entry *entry = desc->entry;
250         int             loop_count = 0,
251                         status;
252
253         while((status = dir_decode(desc)) == 0) {
254                 dfprintk(DIRCACHE, "NFS: %s: examining cookie %Lu\n",
255                                 __FUNCTION__, (unsigned long long)entry->cookie);
256                 if (entry->prev_cookie == *desc->dir_cookie)
257                         break;
258                 if (loop_count++ > 200) {
259                         loop_count = 0;
260                         schedule();
261                 }
262         }
263         return status;
264 }
265
266 /*
267  * Given a pointer to a buffer that has already been filled by a call
268  * to readdir, find the entry at offset 'desc->file->f_pos'.
269  *
270  * If the end of the buffer has been reached, return -EAGAIN, if not,
271  * return the offset within the buffer of the next entry to be
272  * read.
273  */
274 static inline
275 int find_dirent_index(nfs_readdir_descriptor_t *desc)
276 {
277         struct nfs_entry *entry = desc->entry;
278         int             loop_count = 0,
279                         status;
280
281         for(;;) {
282                 status = dir_decode(desc);
283                 if (status)
284                         break;
285
286                 dfprintk(DIRCACHE, "NFS: found cookie %Lu at index %Ld\n",
287                                 (unsigned long long)entry->cookie, desc->current_index);
288
289                 if (desc->file->f_pos == desc->current_index) {
290                         *desc->dir_cookie = entry->cookie;
291                         break;
292                 }
293                 desc->current_index++;
294                 if (loop_count++ > 200) {
295                         loop_count = 0;
296                         schedule();
297                 }
298         }
299         return status;
300 }
301
302 /*
303  * Find the given page, and call find_dirent() or find_dirent_index in
304  * order to try to return the next entry.
305  */
306 static inline
307 int find_dirent_page(nfs_readdir_descriptor_t *desc)
308 {
309         struct inode    *inode = desc->file->f_dentry->d_inode;
310         struct page     *page;
311         int             status;
312
313         dfprintk(DIRCACHE, "NFS: %s: searching page %ld for target %Lu\n",
314                         __FUNCTION__, desc->page_index,
315                         (long long) *desc->dir_cookie);
316
317         page = read_cache_page(inode->i_mapping, desc->page_index,
318                                (filler_t *)nfs_readdir_filler, desc);
319         if (IS_ERR(page)) {
320                 status = PTR_ERR(page);
321                 goto out;
322         }
323         if (!PageUptodate(page))
324                 goto read_error;
325
326         /* NOTE: Someone else may have changed the READDIRPLUS flag */
327         desc->page = page;
328         desc->ptr = kmap(page);         /* matching kunmap in nfs_do_filldir */
329         if (*desc->dir_cookie != 0)
330                 status = find_dirent(desc);
331         else
332                 status = find_dirent_index(desc);
333         if (status < 0)
334                 dir_page_release(desc);
335  out:
336         dfprintk(DIRCACHE, "NFS: %s: returns %d\n", __FUNCTION__, status);
337         return status;
338  read_error:
339         page_cache_release(page);
340         return -EIO;
341 }
342
343 /*
344  * Recurse through the page cache pages, and return a
345  * filled nfs_entry structure of the next directory entry if possible.
346  *
347  * The target for the search is '*desc->dir_cookie' if non-0,
348  * 'desc->file->f_pos' otherwise
349  */
350 static inline
351 int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
352 {
353         int             loop_count = 0;
354         int             res;
355
356         /* Always search-by-index from the beginning of the cache */
357         if (*desc->dir_cookie == 0) {
358                 dfprintk(DIRCACHE, "NFS: readdir_search_pagecache() searching for offset %Ld\n",
359                                 (long long)desc->file->f_pos);
360                 desc->page_index = 0;
361                 desc->entry->cookie = desc->entry->prev_cookie = 0;
362                 desc->entry->eof = 0;
363                 desc->current_index = 0;
364         } else
365                 dfprintk(DIRCACHE, "NFS: readdir_search_pagecache() searching for cookie %Lu\n",
366                                 (unsigned long long)*desc->dir_cookie);
367
368         for (;;) {
369                 res = find_dirent_page(desc);
370                 if (res != -EAGAIN)
371                         break;
372                 /* Align to beginning of next page */
373                 desc->page_index ++;
374                 if (loop_count++ > 200) {
375                         loop_count = 0;
376                         schedule();
377                 }
378         }
379
380         dfprintk(DIRCACHE, "NFS: %s: returns %d\n", __FUNCTION__, res);
381         return res;
382 }
383
384 static inline unsigned int dt_type(struct inode *inode)
385 {
386         return (inode->i_mode >> 12) & 15;
387 }
388
389 static struct dentry *nfs_readdir_lookup(nfs_readdir_descriptor_t *desc);
390
391 /*
392  * Once we've found the start of the dirent within a page: fill 'er up...
393  */
394 static 
395 int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
396                    filldir_t filldir)
397 {
398         struct file     *file = desc->file;
399         struct nfs_entry *entry = desc->entry;
400         struct dentry   *dentry = NULL;
401         u64             fileid;
402         int             loop_count = 0,
403                         res;
404
405         dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling starting @ cookie %Lu\n",
406                         (unsigned long long)entry->cookie);
407
408         for(;;) {
409                 unsigned d_type = DT_UNKNOWN;
410                 /* Note: entry->prev_cookie contains the cookie for
411                  *       retrieving the current dirent on the server */
412                 fileid = entry->ino;
413
414                 /* Get a dentry if we have one */
415                 if (dentry != NULL)
416                         dput(dentry);
417                 dentry = nfs_readdir_lookup(desc);
418
419                 /* Use readdirplus info */
420                 if (dentry != NULL && dentry->d_inode != NULL) {
421                         d_type = dt_type(dentry->d_inode);
422                         fileid = NFS_FILEID(dentry->d_inode);
423                 }
424
425                 res = filldir(dirent, entry->name, entry->len, 
426                               file->f_pos, fileid, d_type);
427                 if (res < 0)
428                         break;
429                 file->f_pos++;
430                 *desc->dir_cookie = entry->cookie;
431                 if (dir_decode(desc) != 0) {
432                         desc->page_index ++;
433                         break;
434                 }
435                 if (loop_count++ > 200) {
436                         loop_count = 0;
437                         schedule();
438                 }
439         }
440         dir_page_release(desc);
441         if (dentry != NULL)
442                 dput(dentry);
443         dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
444                         (unsigned long long)*desc->dir_cookie, res);
445         return res;
446 }
447
448 /*
449  * If we cannot find a cookie in our cache, we suspect that this is
450  * because it points to a deleted file, so we ask the server to return
451  * whatever it thinks is the next entry. We then feed this to filldir.
452  * If all goes well, we should then be able to find our way round the
453  * cache on the next call to readdir_search_pagecache();
454  *
455  * NOTE: we cannot add the anonymous page to the pagecache because
456  *       the data it contains might not be page aligned. Besides,
457  *       we should already have a complete representation of the
458  *       directory in the page cache by the time we get here.
459  */
460 static inline
461 int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
462                      filldir_t filldir)
463 {
464         struct file     *file = desc->file;
465         struct inode    *inode = file->f_dentry->d_inode;
466         struct rpc_cred *cred = nfs_file_cred(file);
467         struct page     *page = NULL;
468         int             status;
469
470         dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
471                         (unsigned long long)*desc->dir_cookie);
472
473         page = alloc_page(GFP_HIGHUSER);
474         if (!page) {
475                 status = -ENOMEM;
476                 goto out;
477         }
478         desc->error = NFS_PROTO(inode)->readdir(file->f_dentry, cred, *desc->dir_cookie,
479                                                 page,
480                                                 NFS_SERVER(inode)->dtsize,
481                                                 desc->plus);
482         spin_lock(&inode->i_lock);
483         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
484         spin_unlock(&inode->i_lock);
485         desc->page = page;
486         desc->ptr = kmap(page);         /* matching kunmap in nfs_do_filldir */
487         if (desc->error >= 0) {
488                 if ((status = dir_decode(desc)) == 0)
489                         desc->entry->prev_cookie = *desc->dir_cookie;
490         } else
491                 status = -EIO;
492         if (status < 0)
493                 goto out_release;
494
495         status = nfs_do_filldir(desc, dirent, filldir);
496
497         /* Reset read descriptor so it searches the page cache from
498          * the start upon the next call to readdir_search_pagecache() */
499         desc->page_index = 0;
500         desc->entry->cookie = desc->entry->prev_cookie = 0;
501         desc->entry->eof = 0;
502  out:
503         dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
504                         __FUNCTION__, status);
505         return status;
506  out_release:
507         dir_page_release(desc);
508         goto out;
509 }
510
511 /* The file offset position represents the dirent entry number.  A
512    last cookie cache takes care of the common case of reading the
513    whole directory.
514  */
515 static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
516 {
517         struct dentry   *dentry = filp->f_dentry;
518         struct inode    *inode = dentry->d_inode;
519         nfs_readdir_descriptor_t my_desc,
520                         *desc = &my_desc;
521         struct nfs_entry my_entry;
522         struct nfs_fh    fh;
523         struct nfs_fattr fattr;
524         long            res;
525
526         dfprintk(VFS, "NFS: readdir(%s/%s) starting at cookie %Lu\n",
527                         dentry->d_parent->d_name.name, dentry->d_name.name,
528                         (long long)filp->f_pos);
529         nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
530
531         lock_kernel();
532
533         res = nfs_revalidate_mapping(inode, filp->f_mapping);
534         if (res < 0) {
535                 unlock_kernel();
536                 return res;
537         }
538
539         /*
540          * filp->f_pos points to the dirent entry number.
541          * *desc->dir_cookie has the cookie for the next entry. We have
542          * to either find the entry with the appropriate number or
543          * revalidate the cookie.
544          */
545         memset(desc, 0, sizeof(*desc));
546
547         desc->file = filp;
548         desc->dir_cookie = &((struct nfs_open_context *)filp->private_data)->dir_cookie;
549         desc->decode = NFS_PROTO(inode)->decode_dirent;
550         desc->plus = NFS_USE_READDIRPLUS(inode);
551
552         my_entry.cookie = my_entry.prev_cookie = 0;
553         my_entry.eof = 0;
554         my_entry.fh = &fh;
555         my_entry.fattr = &fattr;
556         nfs_fattr_init(&fattr);
557         desc->entry = &my_entry;
558
559         while(!desc->entry->eof) {
560                 res = readdir_search_pagecache(desc);
561
562                 if (res == -EBADCOOKIE) {
563                         /* This means either end of directory */
564                         if (*desc->dir_cookie && desc->entry->cookie != *desc->dir_cookie) {
565                                 /* Or that the server has 'lost' a cookie */
566                                 res = uncached_readdir(desc, dirent, filldir);
567                                 if (res >= 0)
568                                         continue;
569                         }
570                         res = 0;
571                         break;
572                 }
573                 if (res == -ETOOSMALL && desc->plus) {
574                         clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
575                         nfs_zap_caches(inode);
576                         desc->plus = 0;
577                         desc->entry->eof = 0;
578                         continue;
579                 }
580                 if (res < 0)
581                         break;
582
583                 res = nfs_do_filldir(desc, dirent, filldir);
584                 if (res < 0) {
585                         res = 0;
586                         break;
587                 }
588         }
589         unlock_kernel();
590         if (res > 0)
591                 res = 0;
592         dfprintk(VFS, "NFS: readdir(%s/%s) returns %ld\n",
593                         dentry->d_parent->d_name.name, dentry->d_name.name,
594                         res);
595         return res;
596 }
597
598 loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
599 {
600         mutex_lock(&filp->f_dentry->d_inode->i_mutex);
601         switch (origin) {
602                 case 1:
603                         offset += filp->f_pos;
604                 case 0:
605                         if (offset >= 0)
606                                 break;
607                 default:
608                         offset = -EINVAL;
609                         goto out;
610         }
611         if (offset != filp->f_pos) {
612                 filp->f_pos = offset;
613                 ((struct nfs_open_context *)filp->private_data)->dir_cookie = 0;
614         }
615 out:
616         mutex_unlock(&filp->f_dentry->d_inode->i_mutex);
617         return offset;
618 }
619
620 /*
621  * All directory operations under NFS are synchronous, so fsync()
622  * is a dummy operation.
623  */
624 int nfs_fsync_dir(struct file *filp, struct dentry *dentry, int datasync)
625 {
626         dfprintk(VFS, "NFS: fsync_dir(%s/%s) datasync %d\n",
627                         dentry->d_parent->d_name.name, dentry->d_name.name,
628                         datasync);
629
630         return 0;
631 }
632
633 /*
634  * A check for whether or not the parent directory has changed.
635  * In the case it has, we assume that the dentries are untrustworthy
636  * and may need to be looked up again.
637  */
638 static inline int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
639 {
640         if (IS_ROOT(dentry))
641                 return 1;
642         if ((NFS_I(dir)->cache_validity & NFS_INO_INVALID_ATTR) != 0
643                         || nfs_attribute_timeout(dir))
644                 return 0;
645         return nfs_verify_change_attribute(dir, (unsigned long)dentry->d_fsdata);
646 }
647
648 static inline void nfs_set_verifier(struct dentry * dentry, unsigned long verf)
649 {
650         dentry->d_fsdata = (void *)verf;
651 }
652
653 /*
654  * Whenever an NFS operation succeeds, we know that the dentry
655  * is valid, so we update the revalidation timestamp.
656  */
657 static inline void nfs_renew_times(struct dentry * dentry)
658 {
659         dentry->d_time = jiffies;
660 }
661
662 /*
663  * Return the intent data that applies to this particular path component
664  *
665  * Note that the current set of intents only apply to the very last
666  * component of the path.
667  * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
668  */
669 static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
670 {
671         if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
672                 return 0;
673         return nd->flags & mask;
674 }
675
676 /*
677  * Inode and filehandle revalidation for lookups.
678  *
679  * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
680  * or if the intent information indicates that we're about to open this
681  * particular file and the "nocto" mount flag is not set.
682  *
683  */
684 static inline
685 int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
686 {
687         struct nfs_server *server = NFS_SERVER(inode);
688
689         if (nd != NULL) {
690                 /* VFS wants an on-the-wire revalidation */
691                 if (nd->flags & LOOKUP_REVAL)
692                         goto out_force;
693                 /* This is an open(2) */
694                 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
695                                 !(server->flags & NFS_MOUNT_NOCTO) &&
696                                 (S_ISREG(inode->i_mode) ||
697                                  S_ISDIR(inode->i_mode)))
698                         goto out_force;
699         }
700         return nfs_revalidate_inode(server, inode);
701 out_force:
702         return __nfs_revalidate_inode(server, inode);
703 }
704
705 /*
706  * We judge how long we want to trust negative
707  * dentries by looking at the parent inode mtime.
708  *
709  * If parent mtime has changed, we revalidate, else we wait for a
710  * period corresponding to the parent's attribute cache timeout value.
711  */
712 static inline
713 int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
714                        struct nameidata *nd)
715 {
716         /* Don't revalidate a negative dentry if we're creating a new file */
717         if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
718                 return 0;
719         return !nfs_check_verifier(dir, dentry);
720 }
721
722 /*
723  * This is called every time the dcache has a lookup hit,
724  * and we should check whether we can really trust that
725  * lookup.
726  *
727  * NOTE! The hit can be a negative hit too, don't assume
728  * we have an inode!
729  *
730  * If the parent directory is seen to have changed, we throw out the
731  * cached dentry and do a new lookup.
732  */
733 static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
734 {
735         struct inode *dir;
736         struct inode *inode;
737         struct dentry *parent;
738         int error;
739         struct nfs_fh fhandle;
740         struct nfs_fattr fattr;
741         unsigned long verifier;
742
743         parent = dget_parent(dentry);
744         lock_kernel();
745         dir = parent->d_inode;
746         nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
747         inode = dentry->d_inode;
748
749         if (!inode) {
750                 if (nfs_neg_need_reval(dir, dentry, nd))
751                         goto out_bad;
752                 goto out_valid;
753         }
754
755         if (is_bad_inode(inode)) {
756                 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
757                                 __FUNCTION__, dentry->d_parent->d_name.name,
758                                 dentry->d_name.name);
759                 goto out_bad;
760         }
761
762         /* Revalidate parent directory attribute cache */
763         if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
764                 goto out_zap_parent;
765
766         /* Force a full look up iff the parent directory has changed */
767         if (nfs_check_verifier(dir, dentry)) {
768                 if (nfs_lookup_verify_inode(inode, nd))
769                         goto out_zap_parent;
770                 goto out_valid;
771         }
772
773         if (NFS_STALE(inode))
774                 goto out_bad;
775
776         verifier = nfs_save_change_attribute(dir);
777         error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
778         if (error)
779                 goto out_bad;
780         if (nfs_compare_fh(NFS_FH(inode), &fhandle))
781                 goto out_bad;
782         if ((error = nfs_refresh_inode(inode, &fattr)) != 0)
783                 goto out_bad;
784
785         nfs_renew_times(dentry);
786         nfs_set_verifier(dentry, verifier);
787  out_valid:
788         unlock_kernel();
789         dput(parent);
790         dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
791                         __FUNCTION__, dentry->d_parent->d_name.name,
792                         dentry->d_name.name);
793         return 1;
794 out_zap_parent:
795         nfs_zap_caches(dir);
796  out_bad:
797         NFS_CACHEINV(dir);
798         if (inode && S_ISDIR(inode->i_mode)) {
799                 /* Purge readdir caches. */
800                 nfs_zap_caches(inode);
801                 /* If we have submounts, don't unhash ! */
802                 if (have_submounts(dentry))
803                         goto out_valid;
804                 shrink_dcache_parent(dentry);
805         }
806         d_drop(dentry);
807         unlock_kernel();
808         dput(parent);
809         dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
810                         __FUNCTION__, dentry->d_parent->d_name.name,
811                         dentry->d_name.name);
812         return 0;
813 }
814
815 /*
816  * This is called from dput() when d_count is going to 0.
817  */
818 static int nfs_dentry_delete(struct dentry *dentry)
819 {
820         dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
821                 dentry->d_parent->d_name.name, dentry->d_name.name,
822                 dentry->d_flags);
823
824         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
825                 /* Unhash it, so that ->d_iput() would be called */
826                 return 1;
827         }
828         if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
829                 /* Unhash it, so that ancestors of killed async unlink
830                  * files will be cleaned up during umount */
831                 return 1;
832         }
833         return 0;
834
835 }
836
837 /*
838  * Called when the dentry loses inode.
839  * We use it to clean up silly-renamed files.
840  */
841 static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
842 {
843         nfs_inode_return_delegation(inode);
844         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
845                 lock_kernel();
846                 inode->i_nlink--;
847                 nfs_complete_unlink(dentry);
848                 unlock_kernel();
849         }
850         /* When creating a negative dentry, we want to renew d_time */
851         nfs_renew_times(dentry);
852         iput(inode);
853 }
854
855 struct dentry_operations nfs_dentry_operations = {
856         .d_revalidate   = nfs_lookup_revalidate,
857         .d_delete       = nfs_dentry_delete,
858         .d_iput         = nfs_dentry_iput,
859 };
860
861 /*
862  * Use intent information to check whether or not we're going to do
863  * an O_EXCL create using this path component.
864  */
865 static inline
866 int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
867 {
868         if (NFS_PROTO(dir)->version == 2)
869                 return 0;
870         if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_CREATE) == 0)
871                 return 0;
872         return (nd->intent.open.flags & O_EXCL) != 0;
873 }
874
875 static inline int nfs_reval_fsid(struct vfsmount *mnt, struct inode *dir,
876                                  struct nfs_fh *fh, struct nfs_fattr *fattr)
877 {
878         struct nfs_server *server = NFS_SERVER(dir);
879
880         if (!nfs_fsid_equal(&server->fsid, &fattr->fsid))
881                 /* Revalidate fsid on root dir */
882                 return __nfs_revalidate_inode(server, mnt->mnt_root->d_inode);
883         return 0;
884 }
885
886 static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
887 {
888         struct dentry *res;
889         struct inode *inode = NULL;
890         int error;
891         struct nfs_fh fhandle;
892         struct nfs_fattr fattr;
893
894         dfprintk(VFS, "NFS: lookup(%s/%s)\n",
895                 dentry->d_parent->d_name.name, dentry->d_name.name);
896         nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
897
898         res = ERR_PTR(-ENAMETOOLONG);
899         if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
900                 goto out;
901
902         res = ERR_PTR(-ENOMEM);
903         dentry->d_op = NFS_PROTO(dir)->dentry_ops;
904
905         lock_kernel();
906
907         /*
908          * If we're doing an exclusive create, optimize away the lookup
909          * but don't hash the dentry.
910          */
911         if (nfs_is_exclusive_create(dir, nd)) {
912                 d_instantiate(dentry, NULL);
913                 res = NULL;
914                 goto out_unlock;
915         }
916
917         error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
918         if (error == -ENOENT)
919                 goto no_entry;
920         if (error < 0) {
921                 res = ERR_PTR(error);
922                 goto out_unlock;
923         }
924         error = nfs_reval_fsid(nd->mnt, dir, &fhandle, &fattr);
925         if (error < 0) {
926                 res = ERR_PTR(error);
927                 goto out_unlock;
928         }
929         inode = nfs_fhget(dentry->d_sb, &fhandle, &fattr);
930         res = (struct dentry *)inode;
931         if (IS_ERR(res))
932                 goto out_unlock;
933         vx_propagate_xid(nd, inode);
934
935 no_entry:
936         res = d_materialise_unique(dentry, inode);
937         if (res != NULL)
938                 dentry = res;
939         nfs_renew_times(dentry);
940         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
941 out_unlock:
942         unlock_kernel();
943 out:
944         return res;
945 }
946
947 #ifdef CONFIG_NFS_V4
948 static int nfs_open_revalidate(struct dentry *, struct nameidata *);
949
950 struct dentry_operations nfs4_dentry_operations = {
951         .d_revalidate   = nfs_open_revalidate,
952         .d_delete       = nfs_dentry_delete,
953         .d_iput         = nfs_dentry_iput,
954 };
955
956 /*
957  * Use intent information to determine whether we need to substitute
958  * the NFSv4-style stateful OPEN for the LOOKUP call
959  */
960 static int is_atomic_open(struct inode *dir, struct nameidata *nd)
961 {
962         if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
963                 return 0;
964         /* NFS does not (yet) have a stateful open for directories */
965         if (nd->flags & LOOKUP_DIRECTORY)
966                 return 0;
967         /* Are we trying to write to a read only partition? */
968         if ((IS_RDONLY(dir) || MNT_IS_RDONLY(nd->mnt)) &&
969                 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
970                 return 0;
971         return 1;
972 }
973
974 static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
975 {
976         struct dentry *res = NULL;
977         int error;
978
979         dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
980                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
981
982         /* Check that we are indeed trying to open this file */
983         if (!is_atomic_open(dir, nd))
984                 goto no_open;
985
986         if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
987                 res = ERR_PTR(-ENAMETOOLONG);
988                 goto out;
989         }
990         dentry->d_op = NFS_PROTO(dir)->dentry_ops;
991
992         /* Let vfs_create() deal with O_EXCL */
993         if (nd->intent.open.flags & O_EXCL) {
994                 d_add(dentry, NULL);
995                 goto out;
996         }
997
998         /* Open the file on the server */
999         lock_kernel();
1000         /* Revalidate parent directory attribute cache */
1001         error = nfs_revalidate_inode(NFS_SERVER(dir), dir);
1002         if (error < 0) {
1003                 res = ERR_PTR(error);
1004                 unlock_kernel();
1005                 goto out;
1006         }
1007
1008         if (nd->intent.open.flags & O_CREAT) {
1009                 nfs_begin_data_update(dir);
1010                 res = nfs4_atomic_open(dir, dentry, nd);
1011                 nfs_end_data_update(dir);
1012         } else
1013                 res = nfs4_atomic_open(dir, dentry, nd);
1014         unlock_kernel();
1015         if (IS_ERR(res)) {
1016                 error = PTR_ERR(res);
1017                 switch (error) {
1018                         /* Make a negative dentry */
1019                         case -ENOENT:
1020                                 res = NULL;
1021                                 goto out;
1022                         /* This turned out not to be a regular file */
1023                         case -EISDIR:
1024                         case -ENOTDIR:
1025                                 goto no_open;
1026                         case -ELOOP:
1027                                 if (!(nd->intent.open.flags & O_NOFOLLOW))
1028                                         goto no_open;
1029                         /* case -EINVAL: */
1030                         default:
1031                                 goto out;
1032                 }
1033         } else if (res != NULL)
1034                 dentry = res;
1035         nfs_renew_times(dentry);
1036         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1037 out:
1038         return res;
1039 no_open:
1040         return nfs_lookup(dir, dentry, nd);
1041 }
1042
1043 static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1044 {
1045         struct dentry *parent = NULL;
1046         struct inode *inode = dentry->d_inode;
1047         struct inode *dir;
1048         unsigned long verifier;
1049         int openflags, ret = 0;
1050
1051         parent = dget_parent(dentry);
1052         dir = parent->d_inode;
1053         if (!is_atomic_open(dir, nd))
1054                 goto no_open;
1055         /* We can't create new files in nfs_open_revalidate(), so we
1056          * optimize away revalidation of negative dentries.
1057          */
1058         if (inode == NULL)
1059                 goto out;
1060         /* NFS only supports OPEN on regular files */
1061         if (!S_ISREG(inode->i_mode))
1062                 goto no_open;
1063         openflags = nd->intent.open.flags;
1064         /* We cannot do exclusive creation on a positive dentry */
1065         if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
1066                 goto no_open;
1067         /* We can't create new files, or truncate existing ones here */
1068         openflags &= ~(O_CREAT|O_TRUNC);
1069
1070         /*
1071          * Note: we're not holding inode->i_mutex and so may be racing with
1072          * operations that change the directory. We therefore save the
1073          * change attribute *before* we do the RPC call.
1074          */
1075         lock_kernel();
1076         verifier = nfs_save_change_attribute(dir);
1077         ret = nfs4_open_revalidate(dir, dentry, openflags, nd);
1078         if (!ret)
1079                 nfs_set_verifier(dentry, verifier);
1080         unlock_kernel();
1081 out:
1082         dput(parent);
1083         if (!ret)
1084                 d_drop(dentry);
1085         return ret;
1086 no_open:
1087         dput(parent);
1088         if (inode != NULL && nfs_have_delegation(inode, FMODE_READ))
1089                 return 1;
1090         return nfs_lookup_revalidate(dentry, nd);
1091 }
1092 #endif /* CONFIG_NFSV4 */
1093
1094 static struct dentry *nfs_readdir_lookup(nfs_readdir_descriptor_t *desc)
1095 {
1096         struct dentry *parent = desc->file->f_dentry;
1097         struct inode *dir = parent->d_inode;
1098         struct nfs_entry *entry = desc->entry;
1099         struct dentry *dentry, *alias;
1100         struct qstr name = {
1101                 .name = entry->name,
1102                 .len = entry->len,
1103         };
1104         struct inode *inode;
1105
1106         switch (name.len) {
1107                 case 2:
1108                         if (name.name[0] == '.' && name.name[1] == '.')
1109                                 return dget_parent(parent);
1110                         break;
1111                 case 1:
1112                         if (name.name[0] == '.')
1113                                 return dget(parent);
1114         }
1115         name.hash = full_name_hash(name.name, name.len);
1116         dentry = d_lookup(parent, &name);
1117         if (dentry != NULL)
1118                 return dentry;
1119         if (!desc->plus || !(entry->fattr->valid & NFS_ATTR_FATTR))
1120                 return NULL;
1121         /* Note: caller is already holding the dir->i_mutex! */
1122         dentry = d_alloc(parent, &name);
1123         if (dentry == NULL)
1124                 return NULL;
1125         dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1126         inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
1127         if (IS_ERR(inode)) {
1128                 dput(dentry);
1129                 return NULL;
1130         }
1131
1132         alias = d_materialise_unique(dentry, inode);
1133         if (alias != NULL) {
1134                 dput(dentry);
1135                 dentry = alias;
1136         }
1137
1138         nfs_renew_times(dentry);
1139         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1140         return dentry;
1141 }
1142
1143 /*
1144  * Code common to create, mkdir, and mknod.
1145  */
1146 int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1147                                 struct nfs_fattr *fattr)
1148 {
1149         struct inode *inode;
1150         int error = -EACCES;
1151
1152         /* We may have been initialized further down */
1153         if (dentry->d_inode)
1154                 return 0;
1155         if (fhandle->size == 0) {
1156                 struct inode *dir = dentry->d_parent->d_inode;
1157                 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1158                 if (error)
1159                         goto out_err;
1160         }
1161         if (!(fattr->valid & NFS_ATTR_FATTR)) {
1162                 struct nfs_server *server = NFS_SB(dentry->d_sb);
1163                 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
1164                 if (error < 0)
1165                         goto out_err;
1166         }
1167         inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
1168         error = PTR_ERR(inode);
1169         if (IS_ERR(inode))
1170                 goto out_err;
1171         d_instantiate(dentry, inode);
1172         if (d_unhashed(dentry))
1173                 d_rehash(dentry);
1174         return 0;
1175 out_err:
1176         d_drop(dentry);
1177         return error;
1178 }
1179
1180 /*
1181  * Following a failed create operation, we drop the dentry rather
1182  * than retain a negative dentry. This avoids a problem in the event
1183  * that the operation succeeded on the server, but an error in the
1184  * reply path made it appear to have failed.
1185  */
1186 static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1187                 struct nameidata *nd)
1188 {
1189         struct iattr attr;
1190         int error;
1191         int open_flags = 0;
1192
1193         dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1194                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1195
1196         attr.ia_mode = mode;
1197         attr.ia_valid = ATTR_MODE;
1198
1199         if (nd && (nd->flags & LOOKUP_CREATE))
1200                 open_flags = nd->intent.open.flags;
1201
1202         lock_kernel();
1203         nfs_begin_data_update(dir);
1204         error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, nd);
1205         nfs_end_data_update(dir);
1206         if (error != 0)
1207                 goto out_err;
1208         nfs_renew_times(dentry);
1209         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1210         unlock_kernel();
1211         return 0;
1212 out_err:
1213         unlock_kernel();
1214         d_drop(dentry);
1215         return error;
1216 }
1217
1218 /*
1219  * See comments for nfs_proc_create regarding failed operations.
1220  */
1221 static int
1222 nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1223 {
1224         struct iattr attr;
1225         int status;
1226
1227         dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1228                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1229
1230         if (!new_valid_dev(rdev))
1231                 return -EINVAL;
1232
1233         attr.ia_mode = mode;
1234         attr.ia_valid = ATTR_MODE;
1235
1236         lock_kernel();
1237         nfs_begin_data_update(dir);
1238         status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
1239         nfs_end_data_update(dir);
1240         if (status != 0)
1241                 goto out_err;
1242         nfs_renew_times(dentry);
1243         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1244         unlock_kernel();
1245         return 0;
1246 out_err:
1247         unlock_kernel();
1248         d_drop(dentry);
1249         return status;
1250 }
1251
1252 /*
1253  * See comments for nfs_proc_create regarding failed operations.
1254  */
1255 static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1256 {
1257         struct iattr attr;
1258         int error;
1259
1260         dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1261                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1262
1263         attr.ia_valid = ATTR_MODE;
1264         attr.ia_mode = mode | S_IFDIR;
1265
1266         lock_kernel();
1267         nfs_begin_data_update(dir);
1268         error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
1269         nfs_end_data_update(dir);
1270         if (error != 0)
1271                 goto out_err;
1272         nfs_renew_times(dentry);
1273         nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1274         unlock_kernel();
1275         return 0;
1276 out_err:
1277         d_drop(dentry);
1278         unlock_kernel();
1279         return error;
1280 }
1281
1282 static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1283 {
1284         int error;
1285
1286         dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1287                         dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1288
1289         lock_kernel();
1290         nfs_begin_data_update(dir);
1291         error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1292         /* Ensure the VFS deletes this inode */
1293         if (error == 0 && dentry->d_inode != NULL)
1294                 dentry->d_inode->i_nlink = 0;
1295         nfs_end_data_update(dir);
1296         unlock_kernel();
1297
1298         return error;
1299 }
1300
1301 static int nfs_sillyrename(struct inode *dir, struct dentry *dentry)
1302 {
1303         static unsigned int sillycounter;
1304         const int      i_inosize  = sizeof(dir->i_ino)*2;
1305         const int      countersize = sizeof(sillycounter)*2;
1306         const int      slen       = sizeof(".nfs") + i_inosize + countersize - 1;
1307         char           silly[slen+1];
1308         struct qstr    qsilly;
1309         struct dentry *sdentry;
1310         int            error = -EIO;
1311
1312         dfprintk(VFS, "NFS: silly-rename(%s/%s, ct=%d)\n",
1313                 dentry->d_parent->d_name.name, dentry->d_name.name, 
1314                 atomic_read(&dentry->d_count));
1315         nfs_inc_stats(dir, NFSIOS_SILLYRENAME);
1316
1317 #ifdef NFS_PARANOIA
1318 if (!dentry->d_inode)
1319 printk("NFS: silly-renaming %s/%s, negative dentry??\n",
1320 dentry->d_parent->d_name.name, dentry->d_name.name);
1321 #endif
1322         /*
1323          * We don't allow a dentry to be silly-renamed twice.
1324          */
1325         error = -EBUSY;
1326         if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1327                 goto out;
1328
1329         sprintf(silly, ".nfs%*.*lx",
1330                 i_inosize, i_inosize, dentry->d_inode->i_ino);
1331
1332         /* Return delegation in anticipation of the rename */
1333         nfs_inode_return_delegation(dentry->d_inode);
1334
1335         sdentry = NULL;
1336         do {
1337                 char *suffix = silly + slen - countersize;
1338
1339                 dput(sdentry);
1340                 sillycounter++;
1341                 sprintf(suffix, "%*.*x", countersize, countersize, sillycounter);
1342
1343                 dfprintk(VFS, "NFS: trying to rename %s to %s\n",
1344                                 dentry->d_name.name, silly);
1345                 
1346                 sdentry = lookup_one_len(silly, dentry->d_parent, slen);
1347                 /*
1348                  * N.B. Better to return EBUSY here ... it could be
1349                  * dangerous to delete the file while it's in use.
1350                  */
1351                 if (IS_ERR(sdentry))
1352                         goto out;
1353         } while(sdentry->d_inode != NULL); /* need negative lookup */
1354
1355         qsilly.name = silly;
1356         qsilly.len  = strlen(silly);
1357         nfs_begin_data_update(dir);
1358         if (dentry->d_inode) {
1359                 nfs_begin_data_update(dentry->d_inode);
1360                 error = NFS_PROTO(dir)->rename(dir, &dentry->d_name,
1361                                 dir, &qsilly);
1362                 nfs_mark_for_revalidate(dentry->d_inode);
1363                 nfs_end_data_update(dentry->d_inode);
1364         } else
1365                 error = NFS_PROTO(dir)->rename(dir, &dentry->d_name,
1366                                 dir, &qsilly);
1367         nfs_end_data_update(dir);
1368         if (!error) {
1369                 nfs_renew_times(dentry);
1370                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1371                 d_move(dentry, sdentry);
1372                 error = nfs_async_unlink(dentry);
1373                 /* If we return 0 we don't unlink */
1374         }
1375         dput(sdentry);
1376 out:
1377         return error;
1378 }
1379
1380 /*
1381  * Remove a file after making sure there are no pending writes,
1382  * and after checking that the file has only one user. 
1383  *
1384  * We invalidate the attribute cache and free the inode prior to the operation
1385  * to avoid possible races if the server reuses the inode.
1386  */
1387 static int nfs_safe_remove(struct dentry *dentry)
1388 {
1389         struct inode *dir = dentry->d_parent->d_inode;
1390         struct inode *inode = dentry->d_inode;
1391         int error = -EBUSY;
1392                 
1393         dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1394                 dentry->d_parent->d_name.name, dentry->d_name.name);
1395
1396         /* If the dentry was sillyrenamed, we simply call d_delete() */
1397         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1398                 error = 0;
1399                 goto out;
1400         }
1401
1402         nfs_begin_data_update(dir);
1403         if (inode != NULL) {
1404                 nfs_inode_return_delegation(inode);
1405                 nfs_begin_data_update(inode);
1406                 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1407                 /* The VFS may want to delete this inode */
1408                 if (error == 0)
1409                         inode->i_nlink--;
1410                 nfs_mark_for_revalidate(inode);
1411                 nfs_end_data_update(inode);
1412         } else
1413                 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1414         nfs_end_data_update(dir);
1415 out:
1416         return error;
1417 }
1418
1419 /*  We do silly rename. In case sillyrename() returns -EBUSY, the inode
1420  *  belongs to an active ".nfs..." file and we return -EBUSY.
1421  *
1422  *  If sillyrename() returns 0, we do nothing, otherwise we unlink.
1423  */
1424 static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1425 {
1426         int error;
1427         int need_rehash = 0;
1428
1429         dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1430                 dir->i_ino, dentry->d_name.name);
1431
1432         lock_kernel();
1433         spin_lock(&dcache_lock);
1434         spin_lock(&dentry->d_lock);
1435         if (atomic_read(&dentry->d_count) > 1) {
1436                 spin_unlock(&dentry->d_lock);
1437                 spin_unlock(&dcache_lock);
1438                 error = nfs_sillyrename(dir, dentry);
1439                 unlock_kernel();
1440                 return error;
1441         }
1442         if (!d_unhashed(dentry)) {
1443                 __d_drop(dentry);
1444                 need_rehash = 1;
1445         }
1446         spin_unlock(&dentry->d_lock);
1447         spin_unlock(&dcache_lock);
1448         error = nfs_safe_remove(dentry);
1449         if (!error) {
1450                 nfs_renew_times(dentry);
1451                 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1452         } else if (need_rehash)
1453                 d_rehash(dentry);
1454         unlock_kernel();
1455         return error;
1456 }
1457
1458 static int
1459 nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1460 {
1461         struct iattr attr;
1462         struct nfs_fattr sym_attr;
1463         struct nfs_fh sym_fh;
1464         struct qstr qsymname;
1465         int error;
1466
1467         dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1468                 dir->i_ino, dentry->d_name.name, symname);
1469
1470 #ifdef NFS_PARANOIA
1471 if (dentry->d_inode)
1472 printk("nfs_proc_symlink: %s/%s not negative!\n",
1473 dentry->d_parent->d_name.name, dentry->d_name.name);
1474 #endif
1475         /*
1476          * Fill in the sattr for the call.
1477          * Note: SunOS 4.1.2 crashes if the mode isn't initialized!
1478          */
1479         attr.ia_valid = ATTR_MODE;
1480         attr.ia_mode = S_IFLNK | S_IRWXUGO;
1481
1482         qsymname.name = symname;
1483         qsymname.len  = strlen(symname);
1484
1485         lock_kernel();
1486         nfs_begin_data_update(dir);
1487         error = NFS_PROTO(dir)->symlink(dir, &dentry->d_name, &qsymname,
1488                                           &attr, &sym_fh, &sym_attr);
1489         nfs_end_data_update(dir);
1490         if (!error) {
1491                 error = nfs_instantiate(dentry, &sym_fh, &sym_attr);
1492         } else {
1493                 if (error == -EEXIST)
1494                         printk("nfs_proc_symlink: %s/%s already exists??\n",
1495                                dentry->d_parent->d_name.name, dentry->d_name.name);
1496                 d_drop(dentry);
1497         }
1498         unlock_kernel();
1499         return error;
1500 }
1501
1502 static int 
1503 nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1504 {
1505         struct inode *inode = old_dentry->d_inode;
1506         int error;
1507
1508         dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1509                 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1510                 dentry->d_parent->d_name.name, dentry->d_name.name);
1511
1512         lock_kernel();
1513         nfs_begin_data_update(dir);
1514         nfs_begin_data_update(inode);
1515         error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
1516         if (error == 0) {
1517                 atomic_inc(&inode->i_count);
1518                 d_instantiate(dentry, inode);
1519         }
1520         nfs_end_data_update(inode);
1521         nfs_end_data_update(dir);
1522         unlock_kernel();
1523         return error;
1524 }
1525
1526 /*
1527  * RENAME
1528  * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1529  * different file handle for the same inode after a rename (e.g. when
1530  * moving to a different directory). A fail-safe method to do so would
1531  * be to look up old_dir/old_name, create a link to new_dir/new_name and
1532  * rename the old file using the sillyrename stuff. This way, the original
1533  * file in old_dir will go away when the last process iput()s the inode.
1534  *
1535  * FIXED.
1536  * 
1537  * It actually works quite well. One needs to have the possibility for
1538  * at least one ".nfs..." file in each directory the file ever gets
1539  * moved or linked to which happens automagically with the new
1540  * implementation that only depends on the dcache stuff instead of
1541  * using the inode layer
1542  *
1543  * Unfortunately, things are a little more complicated than indicated
1544  * above. For a cross-directory move, we want to make sure we can get
1545  * rid of the old inode after the operation.  This means there must be
1546  * no pending writes (if it's a file), and the use count must be 1.
1547  * If these conditions are met, we can drop the dentries before doing
1548  * the rename.
1549  */
1550 static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1551                       struct inode *new_dir, struct dentry *new_dentry)
1552 {
1553         struct inode *old_inode = old_dentry->d_inode;
1554         struct inode *new_inode = new_dentry->d_inode;
1555         struct dentry *dentry = NULL, *rehash = NULL;
1556         int error = -EBUSY;
1557
1558         /*
1559          * To prevent any new references to the target during the rename,
1560          * we unhash the dentry and free the inode in advance.
1561          */
1562         lock_kernel();
1563         if (!d_unhashed(new_dentry)) {
1564                 d_drop(new_dentry);
1565                 rehash = new_dentry;
1566         }
1567
1568         dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1569                  old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1570                  new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1571                  atomic_read(&new_dentry->d_count));
1572
1573         /*
1574          * First check whether the target is busy ... we can't
1575          * safely do _any_ rename if the target is in use.
1576          *
1577          * For files, make a copy of the dentry and then do a 
1578          * silly-rename. If the silly-rename succeeds, the
1579          * copied dentry is hashed and becomes the new target.
1580          */
1581         if (!new_inode)
1582                 goto go_ahead;
1583         if (S_ISDIR(new_inode->i_mode)) {
1584                 error = -EISDIR;
1585                 if (!S_ISDIR(old_inode->i_mode))
1586                         goto out;
1587         } else if (atomic_read(&new_dentry->d_count) > 2) {
1588                 int err;
1589                 /* copy the target dentry's name */
1590                 dentry = d_alloc(new_dentry->d_parent,
1591                                  &new_dentry->d_name);
1592                 if (!dentry)
1593                         goto out;
1594
1595                 /* silly-rename the existing target ... */
1596                 err = nfs_sillyrename(new_dir, new_dentry);
1597                 if (!err) {
1598                         new_dentry = rehash = dentry;
1599                         new_inode = NULL;
1600                         /* instantiate the replacement target */
1601                         d_instantiate(new_dentry, NULL);
1602                 } else if (atomic_read(&new_dentry->d_count) > 1) {
1603                 /* dentry still busy? */
1604 #ifdef NFS_PARANOIA
1605                         printk("nfs_rename: target %s/%s busy, d_count=%d\n",
1606                                new_dentry->d_parent->d_name.name,
1607                                new_dentry->d_name.name,
1608                                atomic_read(&new_dentry->d_count));
1609 #endif
1610                         goto out;
1611                 }
1612         } else
1613                 new_inode->i_nlink--;
1614
1615 go_ahead:
1616         /*
1617          * ... prune child dentries and writebacks if needed.
1618          */
1619         if (atomic_read(&old_dentry->d_count) > 1) {
1620                 nfs_wb_all(old_inode);
1621                 shrink_dcache_parent(old_dentry);
1622         }
1623         nfs_inode_return_delegation(old_inode);
1624
1625         if (new_inode != NULL) {
1626                 nfs_inode_return_delegation(new_inode);
1627                 d_delete(new_dentry);
1628         }
1629
1630         nfs_begin_data_update(old_dir);
1631         nfs_begin_data_update(new_dir);
1632         nfs_begin_data_update(old_inode);
1633         error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1634                                            new_dir, &new_dentry->d_name);
1635         nfs_mark_for_revalidate(old_inode);
1636         nfs_end_data_update(old_inode);
1637         nfs_end_data_update(new_dir);
1638         nfs_end_data_update(old_dir);
1639 out:
1640         if (rehash)
1641                 d_rehash(rehash);
1642         if (!error) {
1643                 if (!S_ISDIR(old_inode->i_mode))
1644                         d_move(old_dentry, new_dentry);
1645                 nfs_renew_times(new_dentry);
1646                 nfs_set_verifier(new_dentry, nfs_save_change_attribute(new_dir));
1647         }
1648
1649         /* new dentry created? */
1650         if (dentry)
1651                 dput(dentry);
1652         unlock_kernel();
1653         return error;
1654 }
1655
1656 int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
1657 {
1658         struct nfs_inode *nfsi = NFS_I(inode);
1659         struct nfs_access_entry *cache = &nfsi->cache_access;
1660
1661         if (cache->cred != cred
1662                         || time_after(jiffies, cache->jiffies + NFS_ATTRTIMEO(inode))
1663                         || (nfsi->cache_validity & NFS_INO_INVALID_ACCESS))
1664                 return -ENOENT;
1665         memcpy(res, cache, sizeof(*res));
1666         return 0;
1667 }
1668
1669 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
1670 {
1671         struct nfs_inode *nfsi = NFS_I(inode);
1672         struct nfs_access_entry *cache = &nfsi->cache_access;
1673
1674         if (cache->cred != set->cred) {
1675                 if (cache->cred)
1676                         put_rpccred(cache->cred);
1677                 cache->cred = get_rpccred(set->cred);
1678         }
1679         /* FIXME: replace current access_cache BKL reliance with inode->i_lock */
1680         spin_lock(&inode->i_lock);
1681         nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
1682         spin_unlock(&inode->i_lock);
1683         cache->jiffies = set->jiffies;
1684         cache->mask = set->mask;
1685 }
1686
1687 static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
1688 {
1689         struct nfs_access_entry cache;
1690         int status;
1691
1692         status = nfs_access_get_cached(inode, cred, &cache);
1693         if (status == 0)
1694                 goto out;
1695
1696         /* Be clever: ask server to check for all possible rights */
1697         cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
1698         cache.cred = cred;
1699         cache.jiffies = jiffies;
1700         status = NFS_PROTO(inode)->access(inode, &cache);
1701         if (status != 0)
1702                 return status;
1703         nfs_access_add_cache(inode, &cache);
1704 out:
1705         if ((cache.mask & mask) == mask)
1706                 return 0;
1707         return -EACCES;
1708 }
1709
1710 int nfs_permission(struct inode *inode, int mask, struct nameidata *nd)
1711 {
1712         struct rpc_cred *cred;
1713         int res = 0;
1714
1715         nfs_inc_stats(inode, NFSIOS_VFSACCESS);
1716
1717         if (mask == 0)
1718                 goto out;
1719         /* Is this sys_access() ? */
1720         if (nd != NULL && (nd->flags & LOOKUP_ACCESS))
1721                 goto force_lookup;
1722
1723         switch (inode->i_mode & S_IFMT) {
1724                 case S_IFLNK:
1725                         goto out;
1726                 case S_IFREG:
1727                         /* NFSv4 has atomic_open... */
1728                         if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
1729                                         && nd != NULL
1730                                         && (nd->flags & LOOKUP_OPEN))
1731                                 goto out;
1732                         break;
1733                 case S_IFDIR:
1734                         /*
1735                          * Optimize away all write operations, since the server
1736                          * will check permissions when we perform the op.
1737                          */
1738                         if ((mask & MAY_WRITE) && !(mask & MAY_READ))
1739                                 goto out;
1740         }
1741
1742 force_lookup:
1743         lock_kernel();
1744
1745         if (!NFS_PROTO(inode)->access)
1746                 goto out_notsup;
1747
1748         cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1749         if (!IS_ERR(cred)) {
1750                 res = nfs_do_access(inode, cred, mask);
1751                 put_rpccred(cred);
1752         } else
1753                 res = PTR_ERR(cred);
1754         unlock_kernel();
1755 out:
1756         dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
1757                 inode->i_sb->s_id, inode->i_ino, mask, res);
1758         return res;
1759 out_notsup:
1760         res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1761         if (res == 0)
1762                 res = generic_permission(inode, mask, NULL);
1763         unlock_kernel();
1764         goto out;
1765 }
1766
1767 /*
1768  * Local variables:
1769  *  version-control: t
1770  *  kept-new-versions: 5
1771  * End:
1772  */