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