4 * Copyright (C) 1992 Rick Sladkey
6 * nfs directory handling functions
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
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>
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>
36 #include "delegation.h"
39 #define NFS_PARANOIA 1
40 /* #define NFS_DEBUG_VERBOSE 1 */
42 static int nfs_opendir(struct inode
*, struct file
*);
43 static int nfs_readdir(struct file
*, void *, filldir_t
);
44 static struct dentry
*nfs_lookup(struct inode
*, struct dentry
*, struct nameidata
*);
45 static int nfs_create(struct inode
*, struct dentry
*, int, struct nameidata
*);
46 static int nfs_mkdir(struct inode
*, struct dentry
*, int);
47 static int nfs_rmdir(struct inode
*, struct dentry
*);
48 static int nfs_unlink(struct inode
*, struct dentry
*);
49 static int nfs_symlink(struct inode
*, struct dentry
*, const char *);
50 static int nfs_link(struct dentry
*, struct inode
*, struct dentry
*);
51 static int nfs_mknod(struct inode
*, struct dentry
*, int, dev_t
);
52 static int nfs_rename(struct inode
*, struct dentry
*,
53 struct inode
*, struct dentry
*);
54 static int nfs_fsync_dir(struct file
*, struct dentry
*, int);
55 static loff_t
nfs_llseek_dir(struct file
*, loff_t
, int);
57 const struct file_operations nfs_dir_operations
= {
58 .llseek
= nfs_llseek_dir
,
59 .read
= generic_read_dir
,
60 .readdir
= nfs_readdir
,
62 .release
= nfs_release
,
63 .fsync
= nfs_fsync_dir
,
66 struct inode_operations nfs_dir_inode_operations
= {
71 .symlink
= nfs_symlink
,
76 .permission
= nfs_permission
,
77 .getattr
= nfs_getattr
,
78 .setattr
= nfs_setattr
,
82 struct inode_operations nfs3_dir_inode_operations
= {
87 .symlink
= nfs_symlink
,
92 .permission
= nfs_permission
,
93 .getattr
= nfs_getattr
,
94 .setattr
= nfs_setattr
,
95 .listxattr
= nfs3_listxattr
,
96 .getxattr
= nfs3_getxattr
,
97 .setxattr
= nfs3_setxattr
,
98 .removexattr
= nfs3_removexattr
,
100 #endif /* CONFIG_NFS_V3 */
104 static struct dentry
*nfs_atomic_lookup(struct inode
*, struct dentry
*, struct nameidata
*);
105 struct inode_operations nfs4_dir_inode_operations
= {
106 .create
= nfs_create
,
107 .lookup
= nfs_atomic_lookup
,
109 .unlink
= nfs_unlink
,
110 .symlink
= nfs_symlink
,
114 .rename
= nfs_rename
,
115 .permission
= nfs_permission
,
116 .getattr
= nfs_getattr
,
117 .setattr
= nfs_setattr
,
118 .getxattr
= nfs4_getxattr
,
119 .setxattr
= nfs4_setxattr
,
120 .listxattr
= nfs4_listxattr
,
123 #endif /* CONFIG_NFS_V4 */
129 nfs_opendir(struct inode
*inode
, struct file
*filp
)
133 dfprintk(VFS
, "NFS: opendir(%s/%ld)\n",
134 inode
->i_sb
->s_id
, inode
->i_ino
);
137 /* Call generic open code in order to cache credentials */
139 res
= nfs_open(inode
, filp
);
144 typedef u32
* (*decode_dirent_t
)(u32
*, struct nfs_entry
*, int);
148 unsigned long page_index
;
151 loff_t current_index
;
152 struct nfs_entry
*entry
;
153 decode_dirent_t decode
;
156 } nfs_readdir_descriptor_t
;
158 /* Now we cache directories properly, by stuffing the dirent
159 * data directly in the page cache.
161 * Inode invalidation due to refresh etc. takes care of
162 * _everything_, no sloppy entry flushing logic, no extraneous
163 * copying, network direct to page cache, the way it was meant
166 * NOTE: Dirent information verification is done always by the
167 * page-in of the RPC reply, nowhere else, this simplies
168 * things substantially.
171 int nfs_readdir_filler(nfs_readdir_descriptor_t
*desc
, struct page
*page
)
173 struct file
*file
= desc
->file
;
174 struct inode
*inode
= file
->f_dentry
->d_inode
;
175 struct rpc_cred
*cred
= nfs_file_cred(file
);
176 unsigned long timestamp
;
179 dfprintk(DIRCACHE
, "NFS: %s: reading cookie %Lu into page %lu\n",
180 __FUNCTION__
, (long long)desc
->entry
->cookie
,
185 error
= NFS_PROTO(inode
)->readdir(file
->f_dentry
, cred
, desc
->entry
->cookie
, page
,
186 NFS_SERVER(inode
)->dtsize
, desc
->plus
);
188 /* We requested READDIRPLUS, but the server doesn't grok it */
189 if (error
== -ENOTSUPP
&& desc
->plus
) {
190 NFS_SERVER(inode
)->caps
&= ~NFS_CAP_READDIRPLUS
;
191 clear_bit(NFS_INO_ADVISE_RDPLUS
, &NFS_FLAGS(inode
));
197 SetPageUptodate(page
);
198 spin_lock(&inode
->i_lock
);
199 NFS_I(inode
)->cache_validity
|= NFS_INO_INVALID_ATIME
;
200 spin_unlock(&inode
->i_lock
);
201 /* Ensure consistent page alignment of the data.
202 * Note: assumes we have exclusive access to this mapping either
203 * through inode->i_mutex or some other mechanism.
205 if (page
->index
== 0)
206 invalidate_inode_pages2_range(inode
->i_mapping
, PAGE_CACHE_SIZE
, -1);
212 nfs_zap_caches(inode
);
218 int dir_decode(nfs_readdir_descriptor_t
*desc
)
221 p
= desc
->decode(p
, desc
->entry
, desc
->plus
);
229 void dir_page_release(nfs_readdir_descriptor_t
*desc
)
232 page_cache_release(desc
->page
);
238 * Given a pointer to a buffer that has already been filled by a call
239 * to readdir, find the next entry with cookie '*desc->dir_cookie'.
241 * If the end of the buffer has been reached, return -EAGAIN, if not,
242 * return the offset within the buffer of the next entry to be
246 int find_dirent(nfs_readdir_descriptor_t
*desc
)
248 struct nfs_entry
*entry
= desc
->entry
;
252 while((status
= dir_decode(desc
)) == 0) {
253 dfprintk(DIRCACHE
, "NFS: %s: examining cookie %Lu\n",
254 __FUNCTION__
, (unsigned long long)entry
->cookie
);
255 if (entry
->prev_cookie
== *desc
->dir_cookie
)
257 if (loop_count
++ > 200) {
266 * Given a pointer to a buffer that has already been filled by a call
267 * to readdir, find the entry at offset 'desc->file->f_pos'.
269 * If the end of the buffer has been reached, return -EAGAIN, if not,
270 * return the offset within the buffer of the next entry to be
274 int find_dirent_index(nfs_readdir_descriptor_t
*desc
)
276 struct nfs_entry
*entry
= desc
->entry
;
281 status
= dir_decode(desc
);
285 dfprintk(DIRCACHE
, "NFS: found cookie %Lu at index %Ld\n",
286 (unsigned long long)entry
->cookie
, desc
->current_index
);
288 if (desc
->file
->f_pos
== desc
->current_index
) {
289 *desc
->dir_cookie
= entry
->cookie
;
292 desc
->current_index
++;
293 if (loop_count
++ > 200) {
302 * Find the given page, and call find_dirent() or find_dirent_index in
303 * order to try to return the next entry.
306 int find_dirent_page(nfs_readdir_descriptor_t
*desc
)
308 struct inode
*inode
= desc
->file
->f_dentry
->d_inode
;
312 dfprintk(DIRCACHE
, "NFS: %s: searching page %ld for target %Lu\n",
313 __FUNCTION__
, desc
->page_index
,
314 (long long) *desc
->dir_cookie
);
316 page
= read_cache_page(inode
->i_mapping
, desc
->page_index
,
317 (filler_t
*)nfs_readdir_filler
, desc
);
319 status
= PTR_ERR(page
);
322 if (!PageUptodate(page
))
325 /* NOTE: Someone else may have changed the READDIRPLUS flag */
327 desc
->ptr
= kmap(page
); /* matching kunmap in nfs_do_filldir */
328 if (*desc
->dir_cookie
!= 0)
329 status
= find_dirent(desc
);
331 status
= find_dirent_index(desc
);
333 dir_page_release(desc
);
335 dfprintk(DIRCACHE
, "NFS: %s: returns %d\n", __FUNCTION__
, status
);
338 page_cache_release(page
);
343 * Recurse through the page cache pages, and return a
344 * filled nfs_entry structure of the next directory entry if possible.
346 * The target for the search is '*desc->dir_cookie' if non-0,
347 * 'desc->file->f_pos' otherwise
350 int readdir_search_pagecache(nfs_readdir_descriptor_t
*desc
)
355 /* Always search-by-index from the beginning of the cache */
356 if (*desc
->dir_cookie
== 0) {
357 dfprintk(DIRCACHE
, "NFS: readdir_search_pagecache() searching for offset %Ld\n",
358 (long long)desc
->file
->f_pos
);
359 desc
->page_index
= 0;
360 desc
->entry
->cookie
= desc
->entry
->prev_cookie
= 0;
361 desc
->entry
->eof
= 0;
362 desc
->current_index
= 0;
364 dfprintk(DIRCACHE
, "NFS: readdir_search_pagecache() searching for cookie %Lu\n",
365 (unsigned long long)*desc
->dir_cookie
);
368 res
= find_dirent_page(desc
);
371 /* Align to beginning of next page */
373 if (loop_count
++ > 200) {
379 dfprintk(DIRCACHE
, "NFS: %s: returns %d\n", __FUNCTION__
, res
);
383 static inline unsigned int dt_type(struct inode
*inode
)
385 return (inode
->i_mode
>> 12) & 15;
388 static struct dentry
*nfs_readdir_lookup(nfs_readdir_descriptor_t
*desc
);
391 * Once we've found the start of the dirent within a page: fill 'er up...
394 int nfs_do_filldir(nfs_readdir_descriptor_t
*desc
, void *dirent
,
397 struct file
*file
= desc
->file
;
398 struct nfs_entry
*entry
= desc
->entry
;
399 struct dentry
*dentry
= NULL
;
400 unsigned long fileid
;
404 dfprintk(DIRCACHE
, "NFS: nfs_do_filldir() filling starting @ cookie %Lu\n",
405 (unsigned long long)entry
->cookie
);
408 unsigned d_type
= DT_UNKNOWN
;
409 /* Note: entry->prev_cookie contains the cookie for
410 * retrieving the current dirent on the server */
411 fileid
= nfs_fileid_to_ino_t(entry
->ino
);
413 /* Get a dentry if we have one */
416 dentry
= nfs_readdir_lookup(desc
);
418 /* Use readdirplus info */
419 if (dentry
!= NULL
&& dentry
->d_inode
!= NULL
) {
420 d_type
= dt_type(dentry
->d_inode
);
421 fileid
= dentry
->d_inode
->i_ino
;
424 res
= filldir(dirent
, entry
->name
, entry
->len
,
425 file
->f_pos
, fileid
, d_type
);
429 *desc
->dir_cookie
= entry
->cookie
;
430 if (dir_decode(desc
) != 0) {
434 if (loop_count
++ > 200) {
439 dir_page_release(desc
);
442 dfprintk(DIRCACHE
, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
443 (unsigned long long)*desc
->dir_cookie
, res
);
448 * If we cannot find a cookie in our cache, we suspect that this is
449 * because it points to a deleted file, so we ask the server to return
450 * whatever it thinks is the next entry. We then feed this to filldir.
451 * If all goes well, we should then be able to find our way round the
452 * cache on the next call to readdir_search_pagecache();
454 * NOTE: we cannot add the anonymous page to the pagecache because
455 * the data it contains might not be page aligned. Besides,
456 * we should already have a complete representation of the
457 * directory in the page cache by the time we get here.
460 int uncached_readdir(nfs_readdir_descriptor_t
*desc
, void *dirent
,
463 struct file
*file
= desc
->file
;
464 struct inode
*inode
= file
->f_dentry
->d_inode
;
465 struct rpc_cred
*cred
= nfs_file_cred(file
);
466 struct page
*page
= NULL
;
469 dfprintk(DIRCACHE
, "NFS: uncached_readdir() searching for cookie %Lu\n",
470 (unsigned long long)*desc
->dir_cookie
);
472 page
= alloc_page(GFP_HIGHUSER
);
477 desc
->error
= NFS_PROTO(inode
)->readdir(file
->f_dentry
, cred
, *desc
->dir_cookie
,
479 NFS_SERVER(inode
)->dtsize
,
481 spin_lock(&inode
->i_lock
);
482 NFS_I(inode
)->cache_validity
|= NFS_INO_INVALID_ATIME
;
483 spin_unlock(&inode
->i_lock
);
485 desc
->ptr
= kmap(page
); /* matching kunmap in nfs_do_filldir */
486 if (desc
->error
>= 0) {
487 if ((status
= dir_decode(desc
)) == 0)
488 desc
->entry
->prev_cookie
= *desc
->dir_cookie
;
494 status
= nfs_do_filldir(desc
, dirent
, filldir
);
496 /* Reset read descriptor so it searches the page cache from
497 * the start upon the next call to readdir_search_pagecache() */
498 desc
->page_index
= 0;
499 desc
->entry
->cookie
= desc
->entry
->prev_cookie
= 0;
500 desc
->entry
->eof
= 0;
502 dfprintk(DIRCACHE
, "NFS: %s: returns %d\n",
503 __FUNCTION__
, status
);
506 dir_page_release(desc
);
510 /* The file offset position represents the dirent entry number. A
511 last cookie cache takes care of the common case of reading the
514 static int nfs_readdir(struct file
*filp
, void *dirent
, filldir_t filldir
)
516 struct dentry
*dentry
= filp
->f_dentry
;
517 struct inode
*inode
= dentry
->d_inode
;
518 nfs_readdir_descriptor_t my_desc
,
520 struct nfs_entry my_entry
;
522 struct nfs_fattr fattr
;
525 dfprintk(VFS
, "NFS: readdir(%s/%s) starting at cookie %Lu\n",
526 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
527 (long long)filp
->f_pos
);
528 nfs_inc_stats(inode
, NFSIOS_VFSGETDENTS
);
532 res
= nfs_revalidate_inode(NFS_SERVER(inode
), inode
);
539 * filp->f_pos points to the dirent entry number.
540 * *desc->dir_cookie has the cookie for the next entry. We have
541 * to either find the entry with the appropriate number or
542 * revalidate the cookie.
544 memset(desc
, 0, sizeof(*desc
));
547 desc
->dir_cookie
= &((struct nfs_open_context
*)filp
->private_data
)->dir_cookie
;
548 desc
->decode
= NFS_PROTO(inode
)->decode_dirent
;
549 desc
->plus
= NFS_USE_READDIRPLUS(inode
);
551 my_entry
.cookie
= my_entry
.prev_cookie
= 0;
554 my_entry
.fattr
= &fattr
;
555 nfs_fattr_init(&fattr
);
556 desc
->entry
= &my_entry
;
558 while(!desc
->entry
->eof
) {
559 res
= readdir_search_pagecache(desc
);
561 if (res
== -EBADCOOKIE
) {
562 /* This means either end of directory */
563 if (*desc
->dir_cookie
&& desc
->entry
->cookie
!= *desc
->dir_cookie
) {
564 /* Or that the server has 'lost' a cookie */
565 res
= uncached_readdir(desc
, dirent
, filldir
);
572 if (res
== -ETOOSMALL
&& desc
->plus
) {
573 clear_bit(NFS_INO_ADVISE_RDPLUS
, &NFS_FLAGS(inode
));
574 nfs_zap_caches(inode
);
576 desc
->entry
->eof
= 0;
582 res
= nfs_do_filldir(desc
, dirent
, filldir
);
591 dfprintk(VFS
, "NFS: readdir(%s/%s) returns %ld\n",
592 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
597 loff_t
nfs_llseek_dir(struct file
*filp
, loff_t offset
, int origin
)
599 mutex_lock(&filp
->f_dentry
->d_inode
->i_mutex
);
602 offset
+= filp
->f_pos
;
610 if (offset
!= filp
->f_pos
) {
611 filp
->f_pos
= offset
;
612 ((struct nfs_open_context
*)filp
->private_data
)->dir_cookie
= 0;
615 mutex_unlock(&filp
->f_dentry
->d_inode
->i_mutex
);
620 * All directory operations under NFS are synchronous, so fsync()
621 * is a dummy operation.
623 int nfs_fsync_dir(struct file
*filp
, struct dentry
*dentry
, int datasync
)
625 dfprintk(VFS
, "NFS: fsync_dir(%s/%s) datasync %d\n",
626 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
633 * A check for whether or not the parent directory has changed.
634 * In the case it has, we assume that the dentries are untrustworthy
635 * and may need to be looked up again.
637 static inline int nfs_check_verifier(struct inode
*dir
, struct dentry
*dentry
)
641 if ((NFS_I(dir
)->cache_validity
& NFS_INO_INVALID_ATTR
) != 0
642 || nfs_attribute_timeout(dir
))
644 return nfs_verify_change_attribute(dir
, (unsigned long)dentry
->d_fsdata
);
647 static inline void nfs_set_verifier(struct dentry
* dentry
, unsigned long verf
)
649 dentry
->d_fsdata
= (void *)verf
;
653 * Whenever an NFS operation succeeds, we know that the dentry
654 * is valid, so we update the revalidation timestamp.
656 static inline void nfs_renew_times(struct dentry
* dentry
)
658 dentry
->d_time
= jiffies
;
662 * Return the intent data that applies to this particular path component
664 * Note that the current set of intents only apply to the very last
665 * component of the path.
666 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
668 static inline unsigned int nfs_lookup_check_intent(struct nameidata
*nd
, unsigned int mask
)
670 if (nd
->flags
& (LOOKUP_CONTINUE
|LOOKUP_PARENT
))
672 return nd
->flags
& mask
;
676 * Inode and filehandle revalidation for lookups.
678 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
679 * or if the intent information indicates that we're about to open this
680 * particular file and the "nocto" mount flag is not set.
684 int nfs_lookup_verify_inode(struct inode
*inode
, struct nameidata
*nd
)
686 struct nfs_server
*server
= NFS_SERVER(inode
);
689 /* VFS wants an on-the-wire revalidation */
690 if (nd
->flags
& LOOKUP_REVAL
)
692 /* This is an open(2) */
693 if (nfs_lookup_check_intent(nd
, LOOKUP_OPEN
) != 0 &&
694 !(server
->flags
& NFS_MOUNT_NOCTO
))
697 return nfs_revalidate_inode(server
, inode
);
699 return __nfs_revalidate_inode(server
, inode
);
703 * We judge how long we want to trust negative
704 * dentries by looking at the parent inode mtime.
706 * If parent mtime has changed, we revalidate, else we wait for a
707 * period corresponding to the parent's attribute cache timeout value.
710 int nfs_neg_need_reval(struct inode
*dir
, struct dentry
*dentry
,
711 struct nameidata
*nd
)
713 /* Don't revalidate a negative dentry if we're creating a new file */
714 if (nd
!= NULL
&& nfs_lookup_check_intent(nd
, LOOKUP_CREATE
) != 0)
716 return !nfs_check_verifier(dir
, dentry
);
720 * This is called every time the dcache has a lookup hit,
721 * and we should check whether we can really trust that
724 * NOTE! The hit can be a negative hit too, don't assume
727 * If the parent directory is seen to have changed, we throw out the
728 * cached dentry and do a new lookup.
730 static int nfs_lookup_revalidate(struct dentry
* dentry
, struct nameidata
*nd
)
734 struct dentry
*parent
;
736 struct nfs_fh fhandle
;
737 struct nfs_fattr fattr
;
738 unsigned long verifier
;
740 parent
= dget_parent(dentry
);
742 dir
= parent
->d_inode
;
743 nfs_inc_stats(dir
, NFSIOS_DENTRYREVALIDATE
);
744 inode
= dentry
->d_inode
;
747 if (nfs_neg_need_reval(dir
, dentry
, nd
))
752 if (is_bad_inode(inode
)) {
753 dfprintk(LOOKUPCACHE
, "%s: %s/%s has dud inode\n",
754 __FUNCTION__
, dentry
->d_parent
->d_name
.name
,
755 dentry
->d_name
.name
);
759 /* Revalidate parent directory attribute cache */
760 if (nfs_revalidate_inode(NFS_SERVER(dir
), dir
) < 0)
763 /* Force a full look up iff the parent directory has changed */
764 if (nfs_check_verifier(dir
, dentry
)) {
765 if (nfs_lookup_verify_inode(inode
, nd
))
770 if (NFS_STALE(inode
))
773 verifier
= nfs_save_change_attribute(dir
);
774 error
= NFS_PROTO(dir
)->lookup(dir
, &dentry
->d_name
, &fhandle
, &fattr
);
777 if (nfs_compare_fh(NFS_FH(inode
), &fhandle
))
779 if ((error
= nfs_refresh_inode(inode
, &fattr
)) != 0)
782 nfs_renew_times(dentry
);
783 nfs_set_verifier(dentry
, verifier
);
787 dfprintk(LOOKUPCACHE
, "NFS: %s(%s/%s) is valid\n",
788 __FUNCTION__
, dentry
->d_parent
->d_name
.name
,
789 dentry
->d_name
.name
);
795 if (inode
&& S_ISDIR(inode
->i_mode
)) {
796 /* Purge readdir caches. */
797 nfs_zap_caches(inode
);
798 /* If we have submounts, don't unhash ! */
799 if (have_submounts(dentry
))
801 shrink_dcache_parent(dentry
);
806 dfprintk(LOOKUPCACHE
, "NFS: %s(%s/%s) is invalid\n",
807 __FUNCTION__
, dentry
->d_parent
->d_name
.name
,
808 dentry
->d_name
.name
);
813 * This is called from dput() when d_count is going to 0.
815 static int nfs_dentry_delete(struct dentry
*dentry
)
817 dfprintk(VFS
, "NFS: dentry_delete(%s/%s, %x)\n",
818 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
821 if (dentry
->d_flags
& DCACHE_NFSFS_RENAMED
) {
822 /* Unhash it, so that ->d_iput() would be called */
825 if (!(dentry
->d_sb
->s_flags
& MS_ACTIVE
)) {
826 /* Unhash it, so that ancestors of killed async unlink
827 * files will be cleaned up during umount */
835 * Called when the dentry loses inode.
836 * We use it to clean up silly-renamed files.
838 static void nfs_dentry_iput(struct dentry
*dentry
, struct inode
*inode
)
840 nfs_inode_return_delegation(inode
);
841 if (dentry
->d_flags
& DCACHE_NFSFS_RENAMED
) {
844 nfs_complete_unlink(dentry
);
847 /* When creating a negative dentry, we want to renew d_time */
848 nfs_renew_times(dentry
);
852 struct dentry_operations nfs_dentry_operations
= {
853 .d_revalidate
= nfs_lookup_revalidate
,
854 .d_delete
= nfs_dentry_delete
,
855 .d_iput
= nfs_dentry_iput
,
859 * Use intent information to check whether or not we're going to do
860 * an O_EXCL create using this path component.
863 int nfs_is_exclusive_create(struct inode
*dir
, struct nameidata
*nd
)
865 if (NFS_PROTO(dir
)->version
== 2)
867 if (nd
== NULL
|| nfs_lookup_check_intent(nd
, LOOKUP_CREATE
) == 0)
869 return (nd
->intent
.open
.flags
& O_EXCL
) != 0;
872 static struct dentry
*nfs_lookup(struct inode
*dir
, struct dentry
* dentry
, struct nameidata
*nd
)
875 struct inode
*inode
= NULL
;
877 struct nfs_fh fhandle
;
878 struct nfs_fattr fattr
;
880 dfprintk(VFS
, "NFS: lookup(%s/%s)\n",
881 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
882 nfs_inc_stats(dir
, NFSIOS_VFSLOOKUP
);
884 res
= ERR_PTR(-ENAMETOOLONG
);
885 if (dentry
->d_name
.len
> NFS_SERVER(dir
)->namelen
)
888 res
= ERR_PTR(-ENOMEM
);
889 dentry
->d_op
= NFS_PROTO(dir
)->dentry_ops
;
893 /* If we're doing an exclusive create, optimize away the lookup */
894 if (nfs_is_exclusive_create(dir
, nd
))
897 error
= NFS_PROTO(dir
)->lookup(dir
, &dentry
->d_name
, &fhandle
, &fattr
);
898 if (error
== -ENOENT
)
901 res
= ERR_PTR(error
);
904 inode
= nfs_fhget(dentry
->d_sb
, &fhandle
, &fattr
);
905 res
= (struct dentry
*)inode
;
909 res
= d_add_unique(dentry
, inode
);
912 nfs_renew_times(dentry
);
913 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
921 static int nfs_open_revalidate(struct dentry
*, struct nameidata
*);
923 struct dentry_operations nfs4_dentry_operations
= {
924 .d_revalidate
= nfs_open_revalidate
,
925 .d_delete
= nfs_dentry_delete
,
926 .d_iput
= nfs_dentry_iput
,
930 * Use intent information to determine whether we need to substitute
931 * the NFSv4-style stateful OPEN for the LOOKUP call
933 static int is_atomic_open(struct inode
*dir
, struct nameidata
*nd
)
935 if (nd
== NULL
|| nfs_lookup_check_intent(nd
, LOOKUP_OPEN
) == 0)
937 /* NFS does not (yet) have a stateful open for directories */
938 if (nd
->flags
& LOOKUP_DIRECTORY
)
940 /* Are we trying to write to a read only partition? */
941 if (IS_RDONLY(dir
) && (nd
->intent
.open
.flags
& (O_CREAT
|O_TRUNC
|FMODE_WRITE
)))
946 static struct dentry
*nfs_atomic_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
948 struct dentry
*res
= NULL
;
951 dfprintk(VFS
, "NFS: atomic_lookup(%s/%ld), %s\n",
952 dir
->i_sb
->s_id
, dir
->i_ino
, dentry
->d_name
.name
);
954 /* Check that we are indeed trying to open this file */
955 if (!is_atomic_open(dir
, nd
))
958 if (dentry
->d_name
.len
> NFS_SERVER(dir
)->namelen
) {
959 res
= ERR_PTR(-ENAMETOOLONG
);
962 dentry
->d_op
= NFS_PROTO(dir
)->dentry_ops
;
964 /* Let vfs_create() deal with O_EXCL */
965 if (nd
->intent
.open
.flags
& O_EXCL
) {
970 /* Open the file on the server */
972 /* Revalidate parent directory attribute cache */
973 error
= nfs_revalidate_inode(NFS_SERVER(dir
), dir
);
975 res
= ERR_PTR(error
);
980 if (nd
->intent
.open
.flags
& O_CREAT
) {
981 nfs_begin_data_update(dir
);
982 res
= nfs4_atomic_open(dir
, dentry
, nd
);
983 nfs_end_data_update(dir
);
985 res
= nfs4_atomic_open(dir
, dentry
, nd
);
988 error
= PTR_ERR(res
);
990 /* Make a negative dentry */
994 /* This turned out not to be a regular file */
999 if (!(nd
->intent
.open
.flags
& O_NOFOLLOW
))
1005 } else if (res
!= NULL
)
1007 nfs_renew_times(dentry
);
1008 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1012 return nfs_lookup(dir
, dentry
, nd
);
1015 static int nfs_open_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
1017 struct dentry
*parent
= NULL
;
1018 struct inode
*inode
= dentry
->d_inode
;
1020 unsigned long verifier
;
1021 int openflags
, ret
= 0;
1023 parent
= dget_parent(dentry
);
1024 dir
= parent
->d_inode
;
1025 if (!is_atomic_open(dir
, nd
))
1027 /* We can't create new files in nfs_open_revalidate(), so we
1028 * optimize away revalidation of negative dentries.
1032 /* NFS only supports OPEN on regular files */
1033 if (!S_ISREG(inode
->i_mode
))
1035 openflags
= nd
->intent
.open
.flags
;
1036 /* We cannot do exclusive creation on a positive dentry */
1037 if ((openflags
& (O_CREAT
|O_EXCL
)) == (O_CREAT
|O_EXCL
))
1039 /* We can't create new files, or truncate existing ones here */
1040 openflags
&= ~(O_CREAT
|O_TRUNC
);
1043 * Note: we're not holding inode->i_mutex and so may be racing with
1044 * operations that change the directory. We therefore save the
1045 * change attribute *before* we do the RPC call.
1048 verifier
= nfs_save_change_attribute(dir
);
1049 ret
= nfs4_open_revalidate(dir
, dentry
, openflags
, nd
);
1051 nfs_set_verifier(dentry
, verifier
);
1060 if (inode
!= NULL
&& nfs_have_delegation(inode
, FMODE_READ
))
1062 return nfs_lookup_revalidate(dentry
, nd
);
1064 #endif /* CONFIG_NFSV4 */
1066 static struct dentry
*nfs_readdir_lookup(nfs_readdir_descriptor_t
*desc
)
1068 struct dentry
*parent
= desc
->file
->f_dentry
;
1069 struct inode
*dir
= parent
->d_inode
;
1070 struct nfs_entry
*entry
= desc
->entry
;
1071 struct dentry
*dentry
, *alias
;
1072 struct qstr name
= {
1073 .name
= entry
->name
,
1076 struct inode
*inode
;
1080 if (name
.name
[0] == '.' && name
.name
[1] == '.')
1081 return dget_parent(parent
);
1084 if (name
.name
[0] == '.')
1085 return dget(parent
);
1087 name
.hash
= full_name_hash(name
.name
, name
.len
);
1088 dentry
= d_lookup(parent
, &name
);
1091 if (!desc
->plus
|| !(entry
->fattr
->valid
& NFS_ATTR_FATTR
))
1093 /* Note: caller is already holding the dir->i_mutex! */
1094 dentry
= d_alloc(parent
, &name
);
1097 dentry
->d_op
= NFS_PROTO(dir
)->dentry_ops
;
1098 inode
= nfs_fhget(dentry
->d_sb
, entry
->fh
, entry
->fattr
);
1099 if (IS_ERR(inode
)) {
1103 alias
= d_add_unique(dentry
, inode
);
1104 if (alias
!= NULL
) {
1108 nfs_renew_times(dentry
);
1109 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1114 * Code common to create, mkdir, and mknod.
1116 int nfs_instantiate(struct dentry
*dentry
, struct nfs_fh
*fhandle
,
1117 struct nfs_fattr
*fattr
)
1119 struct inode
*inode
;
1120 int error
= -EACCES
;
1122 /* We may have been initialized further down */
1123 if (dentry
->d_inode
)
1125 if (fhandle
->size
== 0) {
1126 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1127 error
= NFS_PROTO(dir
)->lookup(dir
, &dentry
->d_name
, fhandle
, fattr
);
1131 if (!(fattr
->valid
& NFS_ATTR_FATTR
)) {
1132 struct nfs_server
*server
= NFS_SB(dentry
->d_sb
);
1133 error
= server
->rpc_ops
->getattr(server
, fhandle
, fattr
);
1137 inode
= nfs_fhget(dentry
->d_sb
, fhandle
, fattr
);
1138 error
= PTR_ERR(inode
);
1141 d_instantiate(dentry
, inode
);
1149 * Following a failed create operation, we drop the dentry rather
1150 * than retain a negative dentry. This avoids a problem in the event
1151 * that the operation succeeded on the server, but an error in the
1152 * reply path made it appear to have failed.
1154 static int nfs_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
1155 struct nameidata
*nd
)
1161 dfprintk(VFS
, "NFS: create(%s/%ld), %s\n",
1162 dir
->i_sb
->s_id
, dir
->i_ino
, dentry
->d_name
.name
);
1164 attr
.ia_mode
= mode
;
1165 attr
.ia_valid
= ATTR_MODE
;
1167 if (nd
&& (nd
->flags
& LOOKUP_CREATE
))
1168 open_flags
= nd
->intent
.open
.flags
;
1171 nfs_begin_data_update(dir
);
1172 error
= NFS_PROTO(dir
)->create(dir
, dentry
, &attr
, open_flags
, nd
);
1173 nfs_end_data_update(dir
);
1176 nfs_renew_times(dentry
);
1177 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1187 * See comments for nfs_proc_create regarding failed operations.
1190 nfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t rdev
)
1195 dfprintk(VFS
, "NFS: mknod(%s/%ld), %s\n",
1196 dir
->i_sb
->s_id
, dir
->i_ino
, dentry
->d_name
.name
);
1198 if (!new_valid_dev(rdev
))
1201 attr
.ia_mode
= mode
;
1202 attr
.ia_valid
= ATTR_MODE
;
1205 nfs_begin_data_update(dir
);
1206 status
= NFS_PROTO(dir
)->mknod(dir
, dentry
, &attr
, rdev
);
1207 nfs_end_data_update(dir
);
1210 nfs_renew_times(dentry
);
1211 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1221 * See comments for nfs_proc_create regarding failed operations.
1223 static int nfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
1228 dfprintk(VFS
, "NFS: mkdir(%s/%ld), %s\n",
1229 dir
->i_sb
->s_id
, dir
->i_ino
, dentry
->d_name
.name
);
1231 attr
.ia_valid
= ATTR_MODE
;
1232 attr
.ia_mode
= mode
| S_IFDIR
;
1235 nfs_begin_data_update(dir
);
1236 error
= NFS_PROTO(dir
)->mkdir(dir
, dentry
, &attr
);
1237 nfs_end_data_update(dir
);
1240 nfs_renew_times(dentry
);
1241 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1250 static int nfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
1254 dfprintk(VFS
, "NFS: rmdir(%s/%ld), %s\n",
1255 dir
->i_sb
->s_id
, dir
->i_ino
, dentry
->d_name
.name
);
1258 nfs_begin_data_update(dir
);
1259 error
= NFS_PROTO(dir
)->rmdir(dir
, &dentry
->d_name
);
1260 /* Ensure the VFS deletes this inode */
1261 if (error
== 0 && dentry
->d_inode
!= NULL
)
1262 dentry
->d_inode
->i_nlink
= 0;
1263 nfs_end_data_update(dir
);
1269 static int nfs_sillyrename(struct inode
*dir
, struct dentry
*dentry
)
1271 static unsigned int sillycounter
;
1272 const int i_inosize
= sizeof(dir
->i_ino
)*2;
1273 const int countersize
= sizeof(sillycounter
)*2;
1274 const int slen
= sizeof(".nfs") + i_inosize
+ countersize
- 1;
1277 struct dentry
*sdentry
;
1280 dfprintk(VFS
, "NFS: silly-rename(%s/%s, ct=%d)\n",
1281 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
,
1282 atomic_read(&dentry
->d_count
));
1283 nfs_inc_stats(dir
, NFSIOS_SILLYRENAME
);
1286 if (!dentry
->d_inode
)
1287 printk("NFS: silly-renaming %s/%s, negative dentry??\n",
1288 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
1291 * We don't allow a dentry to be silly-renamed twice.
1294 if (dentry
->d_flags
& DCACHE_NFSFS_RENAMED
)
1297 sprintf(silly
, ".nfs%*.*lx",
1298 i_inosize
, i_inosize
, dentry
->d_inode
->i_ino
);
1300 /* Return delegation in anticipation of the rename */
1301 nfs_inode_return_delegation(dentry
->d_inode
);
1305 char *suffix
= silly
+ slen
- countersize
;
1309 sprintf(suffix
, "%*.*x", countersize
, countersize
, sillycounter
);
1311 dfprintk(VFS
, "NFS: trying to rename %s to %s\n",
1312 dentry
->d_name
.name
, silly
);
1314 sdentry
= lookup_one_len(silly
, dentry
->d_parent
, slen
);
1316 * N.B. Better to return EBUSY here ... it could be
1317 * dangerous to delete the file while it's in use.
1319 if (IS_ERR(sdentry
))
1321 } while(sdentry
->d_inode
!= NULL
); /* need negative lookup */
1323 qsilly
.name
= silly
;
1324 qsilly
.len
= strlen(silly
);
1325 nfs_begin_data_update(dir
);
1326 if (dentry
->d_inode
) {
1327 nfs_begin_data_update(dentry
->d_inode
);
1328 error
= NFS_PROTO(dir
)->rename(dir
, &dentry
->d_name
,
1330 nfs_mark_for_revalidate(dentry
->d_inode
);
1331 nfs_end_data_update(dentry
->d_inode
);
1333 error
= NFS_PROTO(dir
)->rename(dir
, &dentry
->d_name
,
1335 nfs_end_data_update(dir
);
1337 nfs_renew_times(dentry
);
1338 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1339 d_move(dentry
, sdentry
);
1340 error
= nfs_async_unlink(dentry
);
1341 /* If we return 0 we don't unlink */
1349 * Remove a file after making sure there are no pending writes,
1350 * and after checking that the file has only one user.
1352 * We invalidate the attribute cache and free the inode prior to the operation
1353 * to avoid possible races if the server reuses the inode.
1355 static int nfs_safe_remove(struct dentry
*dentry
)
1357 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1358 struct inode
*inode
= dentry
->d_inode
;
1361 dfprintk(VFS
, "NFS: safe_remove(%s/%s)\n",
1362 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
1364 /* If the dentry was sillyrenamed, we simply call d_delete() */
1365 if (dentry
->d_flags
& DCACHE_NFSFS_RENAMED
) {
1370 nfs_begin_data_update(dir
);
1371 if (inode
!= NULL
) {
1372 nfs_inode_return_delegation(inode
);
1373 nfs_begin_data_update(inode
);
1374 error
= NFS_PROTO(dir
)->remove(dir
, &dentry
->d_name
);
1375 /* The VFS may want to delete this inode */
1378 nfs_mark_for_revalidate(inode
);
1379 nfs_end_data_update(inode
);
1381 error
= NFS_PROTO(dir
)->remove(dir
, &dentry
->d_name
);
1382 nfs_end_data_update(dir
);
1387 /* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1388 * belongs to an active ".nfs..." file and we return -EBUSY.
1390 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1392 static int nfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
1395 int need_rehash
= 0;
1397 dfprintk(VFS
, "NFS: unlink(%s/%ld, %s)\n", dir
->i_sb
->s_id
,
1398 dir
->i_ino
, dentry
->d_name
.name
);
1401 spin_lock(&dcache_lock
);
1402 spin_lock(&dentry
->d_lock
);
1403 if (atomic_read(&dentry
->d_count
) > 1) {
1404 spin_unlock(&dentry
->d_lock
);
1405 spin_unlock(&dcache_lock
);
1406 error
= nfs_sillyrename(dir
, dentry
);
1410 if (!d_unhashed(dentry
)) {
1414 spin_unlock(&dentry
->d_lock
);
1415 spin_unlock(&dcache_lock
);
1416 error
= nfs_safe_remove(dentry
);
1418 nfs_renew_times(dentry
);
1419 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1420 } else if (need_rehash
)
1427 nfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *symname
)
1430 struct nfs_fattr sym_attr
;
1431 struct nfs_fh sym_fh
;
1432 struct qstr qsymname
;
1435 dfprintk(VFS
, "NFS: symlink(%s/%ld, %s, %s)\n", dir
->i_sb
->s_id
,
1436 dir
->i_ino
, dentry
->d_name
.name
, symname
);
1439 if (dentry
->d_inode
)
1440 printk("nfs_proc_symlink: %s/%s not negative!\n",
1441 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
1444 * Fill in the sattr for the call.
1445 * Note: SunOS 4.1.2 crashes if the mode isn't initialized!
1447 attr
.ia_valid
= ATTR_MODE
;
1448 attr
.ia_mode
= S_IFLNK
| S_IRWXUGO
;
1450 qsymname
.name
= symname
;
1451 qsymname
.len
= strlen(symname
);
1454 nfs_begin_data_update(dir
);
1455 error
= NFS_PROTO(dir
)->symlink(dir
, &dentry
->d_name
, &qsymname
,
1456 &attr
, &sym_fh
, &sym_attr
);
1457 nfs_end_data_update(dir
);
1459 error
= nfs_instantiate(dentry
, &sym_fh
, &sym_attr
);
1461 if (error
== -EEXIST
)
1462 printk("nfs_proc_symlink: %s/%s already exists??\n",
1463 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
1471 nfs_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*dentry
)
1473 struct inode
*inode
= old_dentry
->d_inode
;
1476 dfprintk(VFS
, "NFS: link(%s/%s -> %s/%s)\n",
1477 old_dentry
->d_parent
->d_name
.name
, old_dentry
->d_name
.name
,
1478 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
1481 nfs_begin_data_update(dir
);
1482 nfs_begin_data_update(inode
);
1483 error
= NFS_PROTO(dir
)->link(inode
, dir
, &dentry
->d_name
);
1485 atomic_inc(&inode
->i_count
);
1486 d_instantiate(dentry
, inode
);
1488 nfs_end_data_update(inode
);
1489 nfs_end_data_update(dir
);
1496 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1497 * different file handle for the same inode after a rename (e.g. when
1498 * moving to a different directory). A fail-safe method to do so would
1499 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1500 * rename the old file using the sillyrename stuff. This way, the original
1501 * file in old_dir will go away when the last process iput()s the inode.
1505 * It actually works quite well. One needs to have the possibility for
1506 * at least one ".nfs..." file in each directory the file ever gets
1507 * moved or linked to which happens automagically with the new
1508 * implementation that only depends on the dcache stuff instead of
1509 * using the inode layer
1511 * Unfortunately, things are a little more complicated than indicated
1512 * above. For a cross-directory move, we want to make sure we can get
1513 * rid of the old inode after the operation. This means there must be
1514 * no pending writes (if it's a file), and the use count must be 1.
1515 * If these conditions are met, we can drop the dentries before doing
1518 static int nfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
1519 struct inode
*new_dir
, struct dentry
*new_dentry
)
1521 struct inode
*old_inode
= old_dentry
->d_inode
;
1522 struct inode
*new_inode
= new_dentry
->d_inode
;
1523 struct dentry
*dentry
= NULL
, *rehash
= NULL
;
1527 * To prevent any new references to the target during the rename,
1528 * we unhash the dentry and free the inode in advance.
1531 if (!d_unhashed(new_dentry
)) {
1533 rehash
= new_dentry
;
1536 dfprintk(VFS
, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1537 old_dentry
->d_parent
->d_name
.name
, old_dentry
->d_name
.name
,
1538 new_dentry
->d_parent
->d_name
.name
, new_dentry
->d_name
.name
,
1539 atomic_read(&new_dentry
->d_count
));
1542 * First check whether the target is busy ... we can't
1543 * safely do _any_ rename if the target is in use.
1545 * For files, make a copy of the dentry and then do a
1546 * silly-rename. If the silly-rename succeeds, the
1547 * copied dentry is hashed and becomes the new target.
1551 if (S_ISDIR(new_inode
->i_mode
)) {
1553 if (!S_ISDIR(old_inode
->i_mode
))
1555 } else if (atomic_read(&new_dentry
->d_count
) > 2) {
1557 /* copy the target dentry's name */
1558 dentry
= d_alloc(new_dentry
->d_parent
,
1559 &new_dentry
->d_name
);
1563 /* silly-rename the existing target ... */
1564 err
= nfs_sillyrename(new_dir
, new_dentry
);
1566 new_dentry
= rehash
= dentry
;
1568 /* instantiate the replacement target */
1569 d_instantiate(new_dentry
, NULL
);
1570 } else if (atomic_read(&new_dentry
->d_count
) > 1) {
1571 /* dentry still busy? */
1573 printk("nfs_rename: target %s/%s busy, d_count=%d\n",
1574 new_dentry
->d_parent
->d_name
.name
,
1575 new_dentry
->d_name
.name
,
1576 atomic_read(&new_dentry
->d_count
));
1581 new_inode
->i_nlink
--;
1585 * ... prune child dentries and writebacks if needed.
1587 if (atomic_read(&old_dentry
->d_count
) > 1) {
1588 nfs_wb_all(old_inode
);
1589 shrink_dcache_parent(old_dentry
);
1591 nfs_inode_return_delegation(old_inode
);
1593 if (new_inode
!= NULL
) {
1594 nfs_inode_return_delegation(new_inode
);
1595 d_delete(new_dentry
);
1598 nfs_begin_data_update(old_dir
);
1599 nfs_begin_data_update(new_dir
);
1600 nfs_begin_data_update(old_inode
);
1601 error
= NFS_PROTO(old_dir
)->rename(old_dir
, &old_dentry
->d_name
,
1602 new_dir
, &new_dentry
->d_name
);
1603 nfs_mark_for_revalidate(old_inode
);
1604 nfs_end_data_update(old_inode
);
1605 nfs_end_data_update(new_dir
);
1606 nfs_end_data_update(old_dir
);
1611 if (!S_ISDIR(old_inode
->i_mode
))
1612 d_move(old_dentry
, new_dentry
);
1613 nfs_renew_times(new_dentry
);
1614 nfs_set_verifier(new_dentry
, nfs_save_change_attribute(new_dir
));
1617 /* new dentry created? */
1624 int nfs_access_get_cached(struct inode
*inode
, struct rpc_cred
*cred
, struct nfs_access_entry
*res
)
1626 struct nfs_inode
*nfsi
= NFS_I(inode
);
1627 struct nfs_access_entry
*cache
= &nfsi
->cache_access
;
1629 if (cache
->cred
!= cred
1630 || time_after(jiffies
, cache
->jiffies
+ NFS_ATTRTIMEO(inode
))
1631 || (nfsi
->cache_validity
& NFS_INO_INVALID_ACCESS
))
1633 memcpy(res
, cache
, sizeof(*res
));
1637 void nfs_access_add_cache(struct inode
*inode
, struct nfs_access_entry
*set
)
1639 struct nfs_inode
*nfsi
= NFS_I(inode
);
1640 struct nfs_access_entry
*cache
= &nfsi
->cache_access
;
1642 if (cache
->cred
!= set
->cred
) {
1644 put_rpccred(cache
->cred
);
1645 cache
->cred
= get_rpccred(set
->cred
);
1647 /* FIXME: replace current access_cache BKL reliance with inode->i_lock */
1648 spin_lock(&inode
->i_lock
);
1649 nfsi
->cache_validity
&= ~NFS_INO_INVALID_ACCESS
;
1650 spin_unlock(&inode
->i_lock
);
1651 cache
->jiffies
= set
->jiffies
;
1652 cache
->mask
= set
->mask
;
1655 static int nfs_do_access(struct inode
*inode
, struct rpc_cred
*cred
, int mask
)
1657 struct nfs_access_entry cache
;
1660 status
= nfs_access_get_cached(inode
, cred
, &cache
);
1664 /* Be clever: ask server to check for all possible rights */
1665 cache
.mask
= MAY_EXEC
| MAY_WRITE
| MAY_READ
;
1667 cache
.jiffies
= jiffies
;
1668 status
= NFS_PROTO(inode
)->access(inode
, &cache
);
1671 nfs_access_add_cache(inode
, &cache
);
1673 if ((cache
.mask
& mask
) == mask
)
1678 int nfs_permission(struct inode
*inode
, int mask
, struct nameidata
*nd
)
1680 struct rpc_cred
*cred
;
1683 nfs_inc_stats(inode
, NFSIOS_VFSACCESS
);
1687 /* Is this sys_access() ? */
1688 if (nd
!= NULL
&& (nd
->flags
& LOOKUP_ACCESS
))
1691 switch (inode
->i_mode
& S_IFMT
) {
1695 /* NFSv4 has atomic_open... */
1696 if (nfs_server_capable(inode
, NFS_CAP_ATOMIC_OPEN
)
1698 && (nd
->flags
& LOOKUP_OPEN
))
1703 * Optimize away all write operations, since the server
1704 * will check permissions when we perform the op.
1706 if ((mask
& MAY_WRITE
) && !(mask
& MAY_READ
))
1713 if (!NFS_PROTO(inode
)->access
)
1716 cred
= rpcauth_lookupcred(NFS_CLIENT(inode
)->cl_auth
, 0);
1717 if (!IS_ERR(cred
)) {
1718 res
= nfs_do_access(inode
, cred
, mask
);
1721 res
= PTR_ERR(cred
);
1724 dfprintk(VFS
, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
1725 inode
->i_sb
->s_id
, inode
->i_ino
, mask
, res
);
1728 res
= nfs_revalidate_inode(NFS_SERVER(inode
), inode
);
1730 res
= generic_permission(inode
, mask
, NULL
);
1737 * version-control: t
1738 * kept-new-versions: 5