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