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