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