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