blob: b483e5d206cb74eaa08dcd2636c2b61662f24b72 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Chuck Lever873101b2006-08-22 20:06:23 -040033#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/namei.h>
David Howells54ceac42006-08-22 20:06:13 -040035#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Trond Myklebust4ce79712005-06-22 17:16:21 +000037#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050039#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define NFS_PARANOIA 1
42/* #define NFS_DEBUG_VERBOSE 1 */
43
44static int nfs_opendir(struct inode *, struct file *);
45static int nfs_readdir(struct file *, void *, filldir_t);
46static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
47static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
48static int nfs_mkdir(struct inode *, struct dentry *, int);
49static int nfs_rmdir(struct inode *, struct dentry *);
50static int nfs_unlink(struct inode *, struct dentry *);
51static int nfs_symlink(struct inode *, struct dentry *, const char *);
52static int nfs_link(struct dentry *, struct inode *, struct dentry *);
53static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
54static int nfs_rename(struct inode *, struct dentry *,
55 struct inode *, struct dentry *);
56static int nfs_fsync_dir(struct file *, struct dentry *, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000057static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080059const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000060 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .read = generic_read_dir,
62 .readdir = nfs_readdir,
63 .open = nfs_opendir,
64 .release = nfs_release,
65 .fsync = nfs_fsync_dir,
66};
67
68struct inode_operations nfs_dir_inode_operations = {
69 .create = nfs_create,
70 .lookup = nfs_lookup,
71 .link = nfs_link,
72 .unlink = nfs_unlink,
73 .symlink = nfs_symlink,
74 .mkdir = nfs_mkdir,
75 .rmdir = nfs_rmdir,
76 .mknod = nfs_mknod,
77 .rename = nfs_rename,
78 .permission = nfs_permission,
79 .getattr = nfs_getattr,
80 .setattr = nfs_setattr,
81};
82
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000083#ifdef CONFIG_NFS_V3
84struct inode_operations nfs3_dir_inode_operations = {
85 .create = nfs_create,
86 .lookup = nfs_lookup,
87 .link = nfs_link,
88 .unlink = nfs_unlink,
89 .symlink = nfs_symlink,
90 .mkdir = nfs_mkdir,
91 .rmdir = nfs_rmdir,
92 .mknod = nfs_mknod,
93 .rename = nfs_rename,
94 .permission = nfs_permission,
95 .getattr = nfs_getattr,
96 .setattr = nfs_setattr,
97 .listxattr = nfs3_listxattr,
98 .getxattr = nfs3_getxattr,
99 .setxattr = nfs3_setxattr,
100 .removexattr = nfs3_removexattr,
101};
102#endif /* CONFIG_NFS_V3 */
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#ifdef CONFIG_NFS_V4
105
106static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
107struct inode_operations nfs4_dir_inode_operations = {
108 .create = nfs_create,
109 .lookup = nfs_atomic_lookup,
110 .link = nfs_link,
111 .unlink = nfs_unlink,
112 .symlink = nfs_symlink,
113 .mkdir = nfs_mkdir,
114 .rmdir = nfs_rmdir,
115 .mknod = nfs_mknod,
116 .rename = nfs_rename,
117 .permission = nfs_permission,
118 .getattr = nfs_getattr,
119 .setattr = nfs_setattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +0000120 .getxattr = nfs4_getxattr,
121 .setxattr = nfs4_setxattr,
122 .listxattr = nfs4_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
125#endif /* CONFIG_NFS_V4 */
126
127/*
128 * Open file
129 */
130static int
131nfs_opendir(struct inode *inode, struct file *filp)
132{
Carsten Otte7451c4f2006-04-19 13:06:37 -0400133 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500135 dfprintk(VFS, "NFS: opendir(%s/%ld)\n",
136 inode->i_sb->s_id, inode->i_ino);
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 lock_kernel();
139 /* Call generic open code in order to cache credentials */
Carsten Otte7451c4f2006-04-19 13:06:37 -0400140 res = nfs_open(inode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unlock_kernel();
142 return res;
143}
144
145typedef u32 * (*decode_dirent_t)(u32 *, struct nfs_entry *, int);
146typedef struct {
147 struct file *file;
148 struct page *page;
149 unsigned long page_index;
150 u32 *ptr;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000151 u64 *dir_cookie;
152 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct nfs_entry *entry;
154 decode_dirent_t decode;
155 int plus;
156 int error;
157} nfs_readdir_descriptor_t;
158
159/* Now we cache directories properly, by stuffing the dirent
160 * data directly in the page cache.
161 *
162 * Inode invalidation due to refresh etc. takes care of
163 * _everything_, no sloppy entry flushing logic, no extraneous
164 * copying, network direct to page cache, the way it was meant
165 * to be.
166 *
167 * NOTE: Dirent information verification is done always by the
168 * page-in of the RPC reply, nowhere else, this simplies
169 * things substantially.
170 */
171static
172int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page *page)
173{
174 struct file *file = desc->file;
175 struct inode *inode = file->f_dentry->d_inode;
176 struct rpc_cred *cred = nfs_file_cred(file);
177 unsigned long timestamp;
178 int error;
179
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500180 dfprintk(DIRCACHE, "NFS: %s: reading cookie %Lu into page %lu\n",
181 __FUNCTION__, (long long)desc->entry->cookie,
182 page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 again:
185 timestamp = jiffies;
186 error = NFS_PROTO(inode)->readdir(file->f_dentry, cred, desc->entry->cookie, page,
187 NFS_SERVER(inode)->dtsize, desc->plus);
188 if (error < 0) {
189 /* We requested READDIRPLUS, but the server doesn't grok it */
190 if (error == -ENOTSUPP && desc->plus) {
191 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Chuck Lever412d5822005-08-18 11:24:11 -0700192 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 desc->plus = 0;
194 goto again;
195 }
196 goto error;
197 }
198 SetPageUptodate(page);
Chuck Leverdc592502005-08-18 11:24:12 -0700199 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -0700200 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
Chuck Leverdc592502005-08-18 11:24:12 -0700201 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Ensure consistent page alignment of the data.
203 * Note: assumes we have exclusive access to this mapping either
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800204 * through inode->i_mutex or some other mechanism.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 */
Trond Myklebusta656db92005-06-22 17:16:21 +0000206 if (page->index == 0)
207 invalidate_inode_pages2_range(inode->i_mapping, PAGE_CACHE_SIZE, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unlock_page(page);
209 return 0;
210 error:
211 SetPageError(page);
212 unlock_page(page);
213 nfs_zap_caches(inode);
214 desc->error = error;
215 return -EIO;
216}
217
218static inline
219int dir_decode(nfs_readdir_descriptor_t *desc)
220{
221 u32 *p = desc->ptr;
222 p = desc->decode(p, desc->entry, desc->plus);
223 if (IS_ERR(p))
224 return PTR_ERR(p);
225 desc->ptr = p;
226 return 0;
227}
228
229static inline
230void dir_page_release(nfs_readdir_descriptor_t *desc)
231{
232 kunmap(desc->page);
233 page_cache_release(desc->page);
234 desc->page = NULL;
235 desc->ptr = NULL;
236}
237
238/*
239 * Given a pointer to a buffer that has already been filled by a call
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000240 * to readdir, find the next entry with cookie '*desc->dir_cookie'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 *
242 * If the end of the buffer has been reached, return -EAGAIN, if not,
243 * return the offset within the buffer of the next entry to be
244 * read.
245 */
246static inline
Olivier Galibert00a92642005-06-22 17:16:29 +0000247int find_dirent(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct nfs_entry *entry = desc->entry;
250 int loop_count = 0,
251 status;
252
253 while((status = dir_decode(desc)) == 0) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500254 dfprintk(DIRCACHE, "NFS: %s: examining cookie %Lu\n",
255 __FUNCTION__, (unsigned long long)entry->cookie);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000256 if (entry->prev_cookie == *desc->dir_cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 if (loop_count++ > 200) {
259 loop_count = 0;
260 schedule();
261 }
262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return status;
264}
265
266/*
Olivier Galibert00a92642005-06-22 17:16:29 +0000267 * Given a pointer to a buffer that has already been filled by a call
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000268 * to readdir, find the entry at offset 'desc->file->f_pos'.
Olivier Galibert00a92642005-06-22 17:16:29 +0000269 *
270 * If the end of the buffer has been reached, return -EAGAIN, if not,
271 * return the offset within the buffer of the next entry to be
272 * read.
273 */
274static inline
275int find_dirent_index(nfs_readdir_descriptor_t *desc)
276{
277 struct nfs_entry *entry = desc->entry;
278 int loop_count = 0,
279 status;
280
281 for(;;) {
282 status = dir_decode(desc);
283 if (status)
284 break;
285
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500286 dfprintk(DIRCACHE, "NFS: found cookie %Lu at index %Ld\n",
287 (unsigned long long)entry->cookie, desc->current_index);
Olivier Galibert00a92642005-06-22 17:16:29 +0000288
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000289 if (desc->file->f_pos == desc->current_index) {
290 *desc->dir_cookie = entry->cookie;
Olivier Galibert00a92642005-06-22 17:16:29 +0000291 break;
292 }
293 desc->current_index++;
294 if (loop_count++ > 200) {
295 loop_count = 0;
296 schedule();
297 }
298 }
Olivier Galibert00a92642005-06-22 17:16:29 +0000299 return status;
300}
301
302/*
303 * Find the given page, and call find_dirent() or find_dirent_index in
304 * order to try to return the next entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
306static inline
307int find_dirent_page(nfs_readdir_descriptor_t *desc)
308{
309 struct inode *inode = desc->file->f_dentry->d_inode;
310 struct page *page;
311 int status;
312
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500313 dfprintk(DIRCACHE, "NFS: %s: searching page %ld for target %Lu\n",
314 __FUNCTION__, desc->page_index,
315 (long long) *desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 page = read_cache_page(inode->i_mapping, desc->page_index,
318 (filler_t *)nfs_readdir_filler, desc);
319 if (IS_ERR(page)) {
320 status = PTR_ERR(page);
321 goto out;
322 }
323 if (!PageUptodate(page))
324 goto read_error;
325
326 /* NOTE: Someone else may have changed the READDIRPLUS flag */
327 desc->page = page;
328 desc->ptr = kmap(page); /* matching kunmap in nfs_do_filldir */
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000329 if (*desc->dir_cookie != 0)
Olivier Galibert00a92642005-06-22 17:16:29 +0000330 status = find_dirent(desc);
331 else
332 status = find_dirent_index(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (status < 0)
334 dir_page_release(desc);
335 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500336 dfprintk(DIRCACHE, "NFS: %s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return status;
338 read_error:
339 page_cache_release(page);
340 return -EIO;
341}
342
343/*
344 * Recurse through the page cache pages, and return a
345 * filled nfs_entry structure of the next directory entry if possible.
346 *
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000347 * The target for the search is '*desc->dir_cookie' if non-0,
348 * 'desc->file->f_pos' otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
350static inline
351int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
352{
353 int loop_count = 0;
354 int res;
355
Olivier Galibert00a92642005-06-22 17:16:29 +0000356 /* Always search-by-index from the beginning of the cache */
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000357 if (*desc->dir_cookie == 0) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500358 dfprintk(DIRCACHE, "NFS: readdir_search_pagecache() searching for offset %Ld\n",
359 (long long)desc->file->f_pos);
Olivier Galibert00a92642005-06-22 17:16:29 +0000360 desc->page_index = 0;
361 desc->entry->cookie = desc->entry->prev_cookie = 0;
362 desc->entry->eof = 0;
363 desc->current_index = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000364 } else
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500365 dfprintk(DIRCACHE, "NFS: readdir_search_pagecache() searching for cookie %Lu\n",
366 (unsigned long long)*desc->dir_cookie);
Olivier Galibert00a92642005-06-22 17:16:29 +0000367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 for (;;) {
369 res = find_dirent_page(desc);
370 if (res != -EAGAIN)
371 break;
372 /* Align to beginning of next page */
373 desc->page_index ++;
374 if (loop_count++ > 200) {
375 loop_count = 0;
376 schedule();
377 }
378 }
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500379
380 dfprintk(DIRCACHE, "NFS: %s: returns %d\n", __FUNCTION__, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return res;
382}
383
384static inline unsigned int dt_type(struct inode *inode)
385{
386 return (inode->i_mode >> 12) & 15;
387}
388
389static struct dentry *nfs_readdir_lookup(nfs_readdir_descriptor_t *desc);
390
391/*
392 * Once we've found the start of the dirent within a page: fill 'er up...
393 */
394static
395int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
396 filldir_t filldir)
397{
398 struct file *file = desc->file;
399 struct nfs_entry *entry = desc->entry;
400 struct dentry *dentry = NULL;
401 unsigned long fileid;
402 int loop_count = 0,
403 res;
404
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500405 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling starting @ cookie %Lu\n",
406 (unsigned long long)entry->cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 for(;;) {
409 unsigned d_type = DT_UNKNOWN;
410 /* Note: entry->prev_cookie contains the cookie for
411 * retrieving the current dirent on the server */
412 fileid = nfs_fileid_to_ino_t(entry->ino);
413
414 /* Get a dentry if we have one */
415 if (dentry != NULL)
416 dput(dentry);
417 dentry = nfs_readdir_lookup(desc);
418
419 /* Use readdirplus info */
420 if (dentry != NULL && dentry->d_inode != NULL) {
421 d_type = dt_type(dentry->d_inode);
422 fileid = dentry->d_inode->i_ino;
423 }
424
425 res = filldir(dirent, entry->name, entry->len,
Olivier Galibert00a92642005-06-22 17:16:29 +0000426 file->f_pos, fileid, d_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (res < 0)
428 break;
Olivier Galibert00a92642005-06-22 17:16:29 +0000429 file->f_pos++;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000430 *desc->dir_cookie = entry->cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (dir_decode(desc) != 0) {
432 desc->page_index ++;
433 break;
434 }
435 if (loop_count++ > 200) {
436 loop_count = 0;
437 schedule();
438 }
439 }
440 dir_page_release(desc);
441 if (dentry != NULL)
442 dput(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500443 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
444 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return res;
446}
447
448/*
449 * If we cannot find a cookie in our cache, we suspect that this is
450 * because it points to a deleted file, so we ask the server to return
451 * whatever it thinks is the next entry. We then feed this to filldir.
452 * If all goes well, we should then be able to find our way round the
453 * cache on the next call to readdir_search_pagecache();
454 *
455 * NOTE: we cannot add the anonymous page to the pagecache because
456 * the data it contains might not be page aligned. Besides,
457 * we should already have a complete representation of the
458 * directory in the page cache by the time we get here.
459 */
460static inline
461int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
462 filldir_t filldir)
463{
464 struct file *file = desc->file;
465 struct inode *inode = file->f_dentry->d_inode;
466 struct rpc_cred *cred = nfs_file_cred(file);
467 struct page *page = NULL;
468 int status;
469
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500470 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
471 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 page = alloc_page(GFP_HIGHUSER);
474 if (!page) {
475 status = -ENOMEM;
476 goto out;
477 }
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000478 desc->error = NFS_PROTO(inode)->readdir(file->f_dentry, cred, *desc->dir_cookie,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 page,
480 NFS_SERVER(inode)->dtsize,
481 desc->plus);
Chuck Leverdc592502005-08-18 11:24:12 -0700482 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -0700483 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
Chuck Leverdc592502005-08-18 11:24:12 -0700484 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 desc->page = page;
486 desc->ptr = kmap(page); /* matching kunmap in nfs_do_filldir */
487 if (desc->error >= 0) {
488 if ((status = dir_decode(desc)) == 0)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000489 desc->entry->prev_cookie = *desc->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 } else
491 status = -EIO;
492 if (status < 0)
493 goto out_release;
494
495 status = nfs_do_filldir(desc, dirent, filldir);
496
497 /* Reset read descriptor so it searches the page cache from
498 * the start upon the next call to readdir_search_pagecache() */
499 desc->page_index = 0;
500 desc->entry->cookie = desc->entry->prev_cookie = 0;
501 desc->entry->eof = 0;
502 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500503 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
504 __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return status;
506 out_release:
507 dir_page_release(desc);
508 goto out;
509}
510
Olivier Galibert00a92642005-06-22 17:16:29 +0000511/* The file offset position represents the dirent entry number. A
512 last cookie cache takes care of the common case of reading the
513 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
515static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
516{
517 struct dentry *dentry = filp->f_dentry;
518 struct inode *inode = dentry->d_inode;
519 nfs_readdir_descriptor_t my_desc,
520 *desc = &my_desc;
521 struct nfs_entry my_entry;
522 struct nfs_fh fh;
523 struct nfs_fattr fattr;
524 long res;
525
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500526 dfprintk(VFS, "NFS: readdir(%s/%s) starting at cookie %Lu\n",
527 dentry->d_parent->d_name.name, dentry->d_name.name,
528 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500529 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 lock_kernel();
532
Trond Myklebust44b11872006-05-25 01:40:59 -0400533 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (res < 0) {
535 unlock_kernel();
536 return res;
537 }
538
539 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000540 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000541 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000542 * to either find the entry with the appropriate number or
543 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 */
545 memset(desc, 0, sizeof(*desc));
546
547 desc->file = filp;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000548 desc->dir_cookie = &((struct nfs_open_context *)filp->private_data)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 desc->decode = NFS_PROTO(inode)->decode_dirent;
550 desc->plus = NFS_USE_READDIRPLUS(inode);
551
552 my_entry.cookie = my_entry.prev_cookie = 0;
553 my_entry.eof = 0;
554 my_entry.fh = &fh;
555 my_entry.fattr = &fattr;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400556 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 desc->entry = &my_entry;
558
559 while(!desc->entry->eof) {
560 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (res == -EBADCOOKIE) {
563 /* This means either end of directory */
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000564 if (*desc->dir_cookie && desc->entry->cookie != *desc->dir_cookie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* Or that the server has 'lost' a cookie */
566 res = uncached_readdir(desc, dirent, filldir);
567 if (res >= 0)
568 continue;
569 }
570 res = 0;
571 break;
572 }
573 if (res == -ETOOSMALL && desc->plus) {
Chuck Lever412d5822005-08-18 11:24:11 -0700574 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 nfs_zap_caches(inode);
576 desc->plus = 0;
577 desc->entry->eof = 0;
578 continue;
579 }
580 if (res < 0)
581 break;
582
583 res = nfs_do_filldir(desc, dirent, filldir);
584 if (res < 0) {
585 res = 0;
586 break;
587 }
588 }
589 unlock_kernel();
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500590 if (res > 0)
591 res = 0;
592 dfprintk(VFS, "NFS: readdir(%s/%s) returns %ld\n",
593 dentry->d_parent->d_name.name, dentry->d_name.name,
594 res);
595 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000598loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
599{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800600 mutex_lock(&filp->f_dentry->d_inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000601 switch (origin) {
602 case 1:
603 offset += filp->f_pos;
604 case 0:
605 if (offset >= 0)
606 break;
607 default:
608 offset = -EINVAL;
609 goto out;
610 }
611 if (offset != filp->f_pos) {
612 filp->f_pos = offset;
613 ((struct nfs_open_context *)filp->private_data)->dir_cookie = 0;
614 }
615out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800616 mutex_unlock(&filp->f_dentry->d_inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000617 return offset;
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/*
621 * All directory operations under NFS are synchronous, so fsync()
622 * is a dummy operation.
623 */
624int nfs_fsync_dir(struct file *filp, struct dentry *dentry, int datasync)
625{
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500626 dfprintk(VFS, "NFS: fsync_dir(%s/%s) datasync %d\n",
627 dentry->d_parent->d_name.name, dentry->d_name.name,
628 datasync);
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return 0;
631}
632
633/*
634 * A check for whether or not the parent directory has changed.
635 * In the case it has, we assume that the dentries are untrustworthy
636 * and may need to be looked up again.
637 */
638static inline int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
639{
640 if (IS_ROOT(dentry))
641 return 1;
Chuck Lever55296802005-08-18 11:24:09 -0700642 if ((NFS_I(dir)->cache_validity & NFS_INO_INVALID_ATTR) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 || nfs_attribute_timeout(dir))
644 return 0;
645 return nfs_verify_change_attribute(dir, (unsigned long)dentry->d_fsdata);
646}
647
648static inline void nfs_set_verifier(struct dentry * dentry, unsigned long verf)
649{
650 dentry->d_fsdata = (void *)verf;
651}
652
653/*
654 * Whenever an NFS operation succeeds, we know that the dentry
655 * is valid, so we update the revalidation timestamp.
656 */
657static inline void nfs_renew_times(struct dentry * dentry)
658{
659 dentry->d_time = jiffies;
660}
661
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400662/*
663 * Return the intent data that applies to this particular path component
664 *
665 * Note that the current set of intents only apply to the very last
666 * component of the path.
667 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
668 */
669static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
670{
671 if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
672 return 0;
673 return nd->flags & mask;
674}
675
676/*
677 * Inode and filehandle revalidation for lookups.
678 *
679 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
680 * or if the intent information indicates that we're about to open this
681 * particular file and the "nocto" mount flag is not set.
682 *
683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684static inline
685int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
686{
687 struct nfs_server *server = NFS_SERVER(inode);
688
689 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400691 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 goto out_force;
693 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400694 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400695 !(server->flags & NFS_MOUNT_NOCTO) &&
696 (S_ISREG(inode->i_mode) ||
697 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 goto out_force;
699 }
700 return nfs_revalidate_inode(server, inode);
701out_force:
702 return __nfs_revalidate_inode(server, inode);
703}
704
705/*
706 * We judge how long we want to trust negative
707 * dentries by looking at the parent inode mtime.
708 *
709 * If parent mtime has changed, we revalidate, else we wait for a
710 * period corresponding to the parent's attribute cache timeout value.
711 */
712static inline
713int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
714 struct nameidata *nd)
715{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400717 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719 return !nfs_check_verifier(dir, dentry);
720}
721
722/*
723 * This is called every time the dcache has a lookup hit,
724 * and we should check whether we can really trust that
725 * lookup.
726 *
727 * NOTE! The hit can be a negative hit too, don't assume
728 * we have an inode!
729 *
730 * If the parent directory is seen to have changed, we throw out the
731 * cached dentry and do a new lookup.
732 */
733static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
734{
735 struct inode *dir;
736 struct inode *inode;
737 struct dentry *parent;
738 int error;
739 struct nfs_fh fhandle;
740 struct nfs_fattr fattr;
741 unsigned long verifier;
742
743 parent = dget_parent(dentry);
744 lock_kernel();
745 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -0500746 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 inode = dentry->d_inode;
748
749 if (!inode) {
750 if (nfs_neg_need_reval(dir, dentry, nd))
751 goto out_bad;
752 goto out_valid;
753 }
754
755 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500756 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
757 __FUNCTION__, dentry->d_parent->d_name.name,
758 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 goto out_bad;
760 }
761
762 /* Revalidate parent directory attribute cache */
763 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
764 goto out_zap_parent;
765
766 /* Force a full look up iff the parent directory has changed */
767 if (nfs_check_verifier(dir, dentry)) {
768 if (nfs_lookup_verify_inode(inode, nd))
769 goto out_zap_parent;
770 goto out_valid;
771 }
772
773 if (NFS_STALE(inode))
774 goto out_bad;
775
776 verifier = nfs_save_change_attribute(dir);
777 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
778 if (error)
779 goto out_bad;
780 if (nfs_compare_fh(NFS_FH(inode), &fhandle))
781 goto out_bad;
782 if ((error = nfs_refresh_inode(inode, &fattr)) != 0)
783 goto out_bad;
784
785 nfs_renew_times(dentry);
786 nfs_set_verifier(dentry, verifier);
787 out_valid:
788 unlock_kernel();
789 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500790 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
791 __FUNCTION__, dentry->d_parent->d_name.name,
792 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return 1;
794out_zap_parent:
795 nfs_zap_caches(dir);
796 out_bad:
797 NFS_CACHEINV(dir);
798 if (inode && S_ISDIR(inode->i_mode)) {
799 /* Purge readdir caches. */
800 nfs_zap_caches(inode);
801 /* If we have submounts, don't unhash ! */
802 if (have_submounts(dentry))
803 goto out_valid;
804 shrink_dcache_parent(dentry);
805 }
806 d_drop(dentry);
807 unlock_kernel();
808 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500809 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
810 __FUNCTION__, dentry->d_parent->d_name.name,
811 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return 0;
813}
814
815/*
816 * This is called from dput() when d_count is going to 0.
817 */
818static int nfs_dentry_delete(struct dentry *dentry)
819{
820 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
821 dentry->d_parent->d_name.name, dentry->d_name.name,
822 dentry->d_flags);
823
824 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
825 /* Unhash it, so that ->d_iput() would be called */
826 return 1;
827 }
828 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
829 /* Unhash it, so that ancestors of killed async unlink
830 * files will be cleaned up during umount */
831 return 1;
832 }
833 return 0;
834
835}
836
837/*
838 * Called when the dentry loses inode.
839 * We use it to clean up silly-renamed files.
840 */
841static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
842{
Trond Myklebustcae7a072005-10-18 14:20:19 -0700843 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
845 lock_kernel();
846 inode->i_nlink--;
847 nfs_complete_unlink(dentry);
848 unlock_kernel();
849 }
850 /* When creating a negative dentry, we want to renew d_time */
851 nfs_renew_times(dentry);
852 iput(inode);
853}
854
855struct dentry_operations nfs_dentry_operations = {
856 .d_revalidate = nfs_lookup_revalidate,
857 .d_delete = nfs_dentry_delete,
858 .d_iput = nfs_dentry_iput,
859};
860
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400861/*
862 * Use intent information to check whether or not we're going to do
863 * an O_EXCL create using this path component.
864 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865static inline
866int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
867{
868 if (NFS_PROTO(dir)->version == 2)
869 return 0;
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400870 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_CREATE) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return 0;
872 return (nd->intent.open.flags & O_EXCL) != 0;
873}
874
David Howells54ceac42006-08-22 20:06:13 -0400875static inline int nfs_reval_fsid(struct vfsmount *mnt, struct inode *dir,
876 struct nfs_fh *fh, struct nfs_fattr *fattr)
Trond Myklebust55a97592006-06-09 09:34:19 -0400877{
878 struct nfs_server *server = NFS_SERVER(dir);
879
880 if (!nfs_fsid_equal(&server->fsid, &fattr->fsid))
881 /* Revalidate fsid on root dir */
David Howells54ceac42006-08-22 20:06:13 -0400882 return __nfs_revalidate_inode(server, mnt->mnt_root->d_inode);
Trond Myklebust55a97592006-06-09 09:34:19 -0400883 return 0;
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
887{
888 struct dentry *res;
889 struct inode *inode = NULL;
890 int error;
891 struct nfs_fh fhandle;
892 struct nfs_fattr fattr;
893
894 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
895 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -0500896 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 res = ERR_PTR(-ENAMETOOLONG);
899 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
900 goto out;
901
902 res = ERR_PTR(-ENOMEM);
903 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
904
905 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /* If we're doing an exclusive create, optimize away the lookup */
908 if (nfs_is_exclusive_create(dir, nd))
909 goto no_entry;
910
911 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, &fhandle, &fattr);
912 if (error == -ENOENT)
913 goto no_entry;
914 if (error < 0) {
915 res = ERR_PTR(error);
916 goto out_unlock;
917 }
David Howells54ceac42006-08-22 20:06:13 -0400918 error = nfs_reval_fsid(nd->mnt, dir, &fhandle, &fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400919 if (error < 0) {
920 res = ERR_PTR(error);
921 goto out_unlock;
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 inode = nfs_fhget(dentry->d_sb, &fhandle, &fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500924 res = (struct dentry *)inode;
925 if (IS_ERR(res))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 goto out_unlock;
David Howells54ceac42006-08-22 20:06:13 -0400927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928no_entry:
David Howells54ceac42006-08-22 20:06:13 -0400929 res = d_materialise_unique(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (res != NULL)
931 dentry = res;
932 nfs_renew_times(dentry);
933 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
934out_unlock:
935 unlock_kernel();
936out:
937 return res;
938}
939
940#ifdef CONFIG_NFS_V4
941static int nfs_open_revalidate(struct dentry *, struct nameidata *);
942
943struct dentry_operations nfs4_dentry_operations = {
944 .d_revalidate = nfs_open_revalidate,
945 .d_delete = nfs_dentry_delete,
946 .d_iput = nfs_dentry_iput,
947};
948
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400949/*
950 * Use intent information to determine whether we need to substitute
951 * the NFSv4-style stateful OPEN for the LOOKUP call
952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953static int is_atomic_open(struct inode *dir, struct nameidata *nd)
954{
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400955 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return 0;
957 /* NFS does not (yet) have a stateful open for directories */
958 if (nd->flags & LOOKUP_DIRECTORY)
959 return 0;
960 /* Are we trying to write to a read only partition? */
961 if (IS_RDONLY(dir) && (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
962 return 0;
963 return 1;
964}
965
966static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
967{
968 struct dentry *res = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 int error;
970
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500971 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
972 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* Check that we are indeed trying to open this file */
975 if (!is_atomic_open(dir, nd))
976 goto no_open;
977
978 if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
979 res = ERR_PTR(-ENAMETOOLONG);
980 goto out;
981 }
982 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
983
984 /* Let vfs_create() deal with O_EXCL */
Trond Myklebust02a913a2005-10-18 14:20:17 -0700985 if (nd->intent.open.flags & O_EXCL) {
986 d_add(dentry, NULL);
987 goto out;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /* Open the file on the server */
991 lock_kernel();
992 /* Revalidate parent directory attribute cache */
993 error = nfs_revalidate_inode(NFS_SERVER(dir), dir);
994 if (error < 0) {
995 res = ERR_PTR(error);
Steve Dickson01c314a2005-08-19 17:57:48 -0700996 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 goto out;
998 }
999
1000 if (nd->intent.open.flags & O_CREAT) {
1001 nfs_begin_data_update(dir);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001002 res = nfs4_atomic_open(dir, dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 nfs_end_data_update(dir);
1004 } else
Trond Myklebust02a913a2005-10-18 14:20:17 -07001005 res = nfs4_atomic_open(dir, dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 unlock_kernel();
Trond Myklebust02a913a2005-10-18 14:20:17 -07001007 if (IS_ERR(res)) {
1008 error = PTR_ERR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 switch (error) {
1010 /* Make a negative dentry */
1011 case -ENOENT:
Trond Myklebust02a913a2005-10-18 14:20:17 -07001012 res = NULL;
1013 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* This turned out not to be a regular file */
Trond Myklebust6f926b52005-10-18 14:20:18 -07001015 case -EISDIR:
1016 case -ENOTDIR:
1017 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 case -ELOOP:
1019 if (!(nd->intent.open.flags & O_NOFOLLOW))
1020 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /* case -EINVAL: */
1022 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 goto out;
1024 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001025 } else if (res != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 dentry = res;
1027 nfs_renew_times(dentry);
1028 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1029out:
1030 return res;
1031no_open:
1032 return nfs_lookup(dir, dentry, nd);
1033}
1034
1035static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1036{
1037 struct dentry *parent = NULL;
1038 struct inode *inode = dentry->d_inode;
1039 struct inode *dir;
1040 unsigned long verifier;
1041 int openflags, ret = 0;
1042
1043 parent = dget_parent(dentry);
1044 dir = parent->d_inode;
1045 if (!is_atomic_open(dir, nd))
1046 goto no_open;
1047 /* We can't create new files in nfs_open_revalidate(), so we
1048 * optimize away revalidation of negative dentries.
1049 */
1050 if (inode == NULL)
1051 goto out;
1052 /* NFS only supports OPEN on regular files */
1053 if (!S_ISREG(inode->i_mode))
1054 goto no_open;
1055 openflags = nd->intent.open.flags;
1056 /* We cannot do exclusive creation on a positive dentry */
1057 if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
1058 goto no_open;
1059 /* We can't create new files, or truncate existing ones here */
1060 openflags &= ~(O_CREAT|O_TRUNC);
1061
1062 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001063 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * operations that change the directory. We therefore save the
1065 * change attribute *before* we do the RPC call.
1066 */
1067 lock_kernel();
1068 verifier = nfs_save_change_attribute(dir);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001069 ret = nfs4_open_revalidate(dir, dentry, openflags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (!ret)
1071 nfs_set_verifier(dentry, verifier);
1072 unlock_kernel();
1073out:
1074 dput(parent);
1075 if (!ret)
1076 d_drop(dentry);
1077 return ret;
1078no_open:
1079 dput(parent);
1080 if (inode != NULL && nfs_have_delegation(inode, FMODE_READ))
1081 return 1;
1082 return nfs_lookup_revalidate(dentry, nd);
1083}
1084#endif /* CONFIG_NFSV4 */
1085
1086static struct dentry *nfs_readdir_lookup(nfs_readdir_descriptor_t *desc)
1087{
1088 struct dentry *parent = desc->file->f_dentry;
1089 struct inode *dir = parent->d_inode;
1090 struct nfs_entry *entry = desc->entry;
1091 struct dentry *dentry, *alias;
1092 struct qstr name = {
1093 .name = entry->name,
1094 .len = entry->len,
1095 };
1096 struct inode *inode;
1097
1098 switch (name.len) {
1099 case 2:
1100 if (name.name[0] == '.' && name.name[1] == '.')
1101 return dget_parent(parent);
1102 break;
1103 case 1:
1104 if (name.name[0] == '.')
1105 return dget(parent);
1106 }
1107 name.hash = full_name_hash(name.name, name.len);
1108 dentry = d_lookup(parent, &name);
1109 if (dentry != NULL)
1110 return dentry;
1111 if (!desc->plus || !(entry->fattr->valid & NFS_ATTR_FATTR))
1112 return NULL;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001113 /* Note: caller is already holding the dir->i_mutex! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 dentry = d_alloc(parent, &name);
1115 if (dentry == NULL)
1116 return NULL;
1117 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1118 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001119 if (IS_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 dput(dentry);
1121 return NULL;
1122 }
David Howells54ceac42006-08-22 20:06:13 -04001123
1124 alias = d_materialise_unique(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (alias != NULL) {
1126 dput(dentry);
1127 dentry = alias;
1128 }
David Howells54ceac42006-08-22 20:06:13 -04001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 nfs_renew_times(dentry);
1131 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1132 return dentry;
1133}
1134
1135/*
1136 * Code common to create, mkdir, and mknod.
1137 */
1138int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1139 struct nfs_fattr *fattr)
1140{
1141 struct inode *inode;
1142 int error = -EACCES;
1143
1144 /* We may have been initialized further down */
1145 if (dentry->d_inode)
1146 return 0;
1147 if (fhandle->size == 0) {
1148 struct inode *dir = dentry->d_parent->d_inode;
1149 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1150 if (error)
Chuck Lever4f390c12006-08-22 20:06:22 -04001151 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1154 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001155 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (error < 0)
Chuck Lever4f390c12006-08-22 20:06:22 -04001157 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001160 error = PTR_ERR(inode);
1161 if (IS_ERR(inode))
Chuck Lever4f390c12006-08-22 20:06:22 -04001162 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 d_instantiate(dentry, inode);
1164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167/*
1168 * Following a failed create operation, we drop the dentry rather
1169 * than retain a negative dentry. This avoids a problem in the event
1170 * that the operation succeeded on the server, but an error in the
1171 * reply path made it appear to have failed.
1172 */
1173static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1174 struct nameidata *nd)
1175{
1176 struct iattr attr;
1177 int error;
1178 int open_flags = 0;
1179
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001180 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1181 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 attr.ia_mode = mode;
1184 attr.ia_valid = ATTR_MODE;
1185
1186 if (nd && (nd->flags & LOOKUP_CREATE))
1187 open_flags = nd->intent.open.flags;
1188
1189 lock_kernel();
1190 nfs_begin_data_update(dir);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001191 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 nfs_end_data_update(dir);
1193 if (error != 0)
1194 goto out_err;
1195 nfs_renew_times(dentry);
1196 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1197 unlock_kernel();
1198 return 0;
1199out_err:
1200 unlock_kernel();
1201 d_drop(dentry);
1202 return error;
1203}
1204
1205/*
1206 * See comments for nfs_proc_create regarding failed operations.
1207 */
1208static int
1209nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1210{
1211 struct iattr attr;
1212 int status;
1213
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001214 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1215 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if (!new_valid_dev(rdev))
1218 return -EINVAL;
1219
1220 attr.ia_mode = mode;
1221 attr.ia_valid = ATTR_MODE;
1222
1223 lock_kernel();
1224 nfs_begin_data_update(dir);
1225 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
1226 nfs_end_data_update(dir);
1227 if (status != 0)
1228 goto out_err;
1229 nfs_renew_times(dentry);
1230 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1231 unlock_kernel();
1232 return 0;
1233out_err:
1234 unlock_kernel();
1235 d_drop(dentry);
1236 return status;
1237}
1238
1239/*
1240 * See comments for nfs_proc_create regarding failed operations.
1241 */
1242static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1243{
1244 struct iattr attr;
1245 int error;
1246
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001247 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1248 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 attr.ia_valid = ATTR_MODE;
1251 attr.ia_mode = mode | S_IFDIR;
1252
1253 lock_kernel();
1254 nfs_begin_data_update(dir);
1255 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
1256 nfs_end_data_update(dir);
1257 if (error != 0)
1258 goto out_err;
1259 nfs_renew_times(dentry);
1260 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1261 unlock_kernel();
1262 return 0;
1263out_err:
1264 d_drop(dentry);
1265 unlock_kernel();
1266 return error;
1267}
1268
1269static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1270{
1271 int error;
1272
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001273 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1274 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 lock_kernel();
1277 nfs_begin_data_update(dir);
1278 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1279 /* Ensure the VFS deletes this inode */
1280 if (error == 0 && dentry->d_inode != NULL)
1281 dentry->d_inode->i_nlink = 0;
1282 nfs_end_data_update(dir);
1283 unlock_kernel();
1284
1285 return error;
1286}
1287
1288static int nfs_sillyrename(struct inode *dir, struct dentry *dentry)
1289{
1290 static unsigned int sillycounter;
1291 const int i_inosize = sizeof(dir->i_ino)*2;
1292 const int countersize = sizeof(sillycounter)*2;
1293 const int slen = sizeof(".nfs") + i_inosize + countersize - 1;
1294 char silly[slen+1];
1295 struct qstr qsilly;
1296 struct dentry *sdentry;
1297 int error = -EIO;
1298
1299 dfprintk(VFS, "NFS: silly-rename(%s/%s, ct=%d)\n",
1300 dentry->d_parent->d_name.name, dentry->d_name.name,
1301 atomic_read(&dentry->d_count));
Chuck Lever91d5b472006-03-20 13:44:14 -05001302 nfs_inc_stats(dir, NFSIOS_SILLYRENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304#ifdef NFS_PARANOIA
1305if (!dentry->d_inode)
1306printk("NFS: silly-renaming %s/%s, negative dentry??\n",
1307dentry->d_parent->d_name.name, dentry->d_name.name);
1308#endif
1309 /*
1310 * We don't allow a dentry to be silly-renamed twice.
1311 */
1312 error = -EBUSY;
1313 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1314 goto out;
1315
1316 sprintf(silly, ".nfs%*.*lx",
1317 i_inosize, i_inosize, dentry->d_inode->i_ino);
1318
Trond Myklebust34ea8182005-11-04 15:35:02 -05001319 /* Return delegation in anticipation of the rename */
1320 nfs_inode_return_delegation(dentry->d_inode);
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 sdentry = NULL;
1323 do {
1324 char *suffix = silly + slen - countersize;
1325
1326 dput(sdentry);
1327 sillycounter++;
1328 sprintf(suffix, "%*.*x", countersize, countersize, sillycounter);
1329
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001330 dfprintk(VFS, "NFS: trying to rename %s to %s\n",
1331 dentry->d_name.name, silly);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 sdentry = lookup_one_len(silly, dentry->d_parent, slen);
1334 /*
1335 * N.B. Better to return EBUSY here ... it could be
1336 * dangerous to delete the file while it's in use.
1337 */
1338 if (IS_ERR(sdentry))
1339 goto out;
1340 } while(sdentry->d_inode != NULL); /* need negative lookup */
1341
1342 qsilly.name = silly;
1343 qsilly.len = strlen(silly);
1344 nfs_begin_data_update(dir);
1345 if (dentry->d_inode) {
1346 nfs_begin_data_update(dentry->d_inode);
1347 error = NFS_PROTO(dir)->rename(dir, &dentry->d_name,
1348 dir, &qsilly);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001349 nfs_mark_for_revalidate(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 nfs_end_data_update(dentry->d_inode);
1351 } else
1352 error = NFS_PROTO(dir)->rename(dir, &dentry->d_name,
1353 dir, &qsilly);
1354 nfs_end_data_update(dir);
1355 if (!error) {
1356 nfs_renew_times(dentry);
1357 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1358 d_move(dentry, sdentry);
1359 error = nfs_async_unlink(dentry);
1360 /* If we return 0 we don't unlink */
1361 }
1362 dput(sdentry);
1363out:
1364 return error;
1365}
1366
1367/*
1368 * Remove a file after making sure there are no pending writes,
1369 * and after checking that the file has only one user.
1370 *
1371 * We invalidate the attribute cache and free the inode prior to the operation
1372 * to avoid possible races if the server reuses the inode.
1373 */
1374static int nfs_safe_remove(struct dentry *dentry)
1375{
1376 struct inode *dir = dentry->d_parent->d_inode;
1377 struct inode *inode = dentry->d_inode;
1378 int error = -EBUSY;
1379
1380 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1381 dentry->d_parent->d_name.name, dentry->d_name.name);
1382
1383 /* If the dentry was sillyrenamed, we simply call d_delete() */
1384 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1385 error = 0;
1386 goto out;
1387 }
1388
1389 nfs_begin_data_update(dir);
1390 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001391 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 nfs_begin_data_update(inode);
1393 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1394 /* The VFS may want to delete this inode */
1395 if (error == 0)
1396 inode->i_nlink--;
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001397 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 nfs_end_data_update(inode);
1399 } else
1400 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1401 nfs_end_data_update(dir);
1402out:
1403 return error;
1404}
1405
1406/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1407 * belongs to an active ".nfs..." file and we return -EBUSY.
1408 *
1409 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1410 */
1411static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1412{
1413 int error;
1414 int need_rehash = 0;
1415
1416 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1417 dir->i_ino, dentry->d_name.name);
1418
1419 lock_kernel();
1420 spin_lock(&dcache_lock);
1421 spin_lock(&dentry->d_lock);
1422 if (atomic_read(&dentry->d_count) > 1) {
1423 spin_unlock(&dentry->d_lock);
1424 spin_unlock(&dcache_lock);
1425 error = nfs_sillyrename(dir, dentry);
1426 unlock_kernel();
1427 return error;
1428 }
1429 if (!d_unhashed(dentry)) {
1430 __d_drop(dentry);
1431 need_rehash = 1;
1432 }
1433 spin_unlock(&dentry->d_lock);
1434 spin_unlock(&dcache_lock);
1435 error = nfs_safe_remove(dentry);
1436 if (!error) {
1437 nfs_renew_times(dentry);
1438 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1439 } else if (need_rehash)
1440 d_rehash(dentry);
1441 unlock_kernel();
1442 return error;
1443}
1444
Chuck Lever873101b2006-08-22 20:06:23 -04001445/*
1446 * To create a symbolic link, most file systems instantiate a new inode,
1447 * add a page to it containing the path, then write it out to the disk
1448 * using prepare_write/commit_write.
1449 *
1450 * Unfortunately the NFS client can't create the in-core inode first
1451 * because it needs a file handle to create an in-core inode (see
1452 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1453 * symlink request has completed on the server.
1454 *
1455 * So instead we allocate a raw page, copy the symname into it, then do
1456 * the SYMLINK request with the page as the buffer. If it succeeds, we
1457 * now have a new file handle and can instantiate an in-core NFS inode
1458 * and move the raw page into its mapping.
1459 */
1460static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Chuck Lever873101b2006-08-22 20:06:23 -04001462 struct pagevec lru_pvec;
1463 struct page *page;
1464 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001466 unsigned int pathlen = strlen(symname);
1467 struct qstr qsymname = {
1468 .name = symname,
1469 .len = pathlen,
1470 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 int error;
1472
1473 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1474 dir->i_ino, dentry->d_name.name, symname);
1475
Chuck Lever873101b2006-08-22 20:06:23 -04001476 if (pathlen > PAGE_SIZE)
1477 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Chuck Lever873101b2006-08-22 20:06:23 -04001479 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1480 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 lock_kernel();
Chuck Lever873101b2006-08-22 20:06:23 -04001483
1484 page = alloc_page(GFP_KERNEL);
1485 if (!page) {
1486 unlock_kernel();
1487 return -ENOMEM;
1488 }
1489
1490 kaddr = kmap_atomic(page, KM_USER0);
1491 memcpy(kaddr, symname, pathlen);
1492 if (pathlen < PAGE_SIZE)
1493 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1494 kunmap_atomic(kaddr, KM_USER0);
1495
1496 /* XXX: eventually this will pass in {page, pathlen},
1497 * instead of qsymname; need XDR changes for that */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 nfs_begin_data_update(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04001499 error = NFS_PROTO(dir)->symlink(dir, dentry, &qsymname, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 nfs_end_data_update(dir);
Chuck Lever873101b2006-08-22 20:06:23 -04001501 if (error != 0) {
1502 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1503 dir->i_sb->s_id, dir->i_ino,
1504 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001506 __free_page(page);
1507 unlock_kernel();
1508 return error;
1509 }
1510
1511 /*
1512 * No big deal if we can't add this page to the page cache here.
1513 * READLINK will get the missing page from the server if needed.
1514 */
1515 pagevec_init(&lru_pvec, 0);
1516 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1517 GFP_KERNEL)) {
1518 if (!pagevec_add(&lru_pvec, page))
1519 __pagevec_lru_add(&lru_pvec);
1520 SetPageUptodate(page);
1521 unlock_page(page);
1522 } else
1523 __free_page(page);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 unlock_kernel();
Chuck Lever873101b2006-08-22 20:06:23 -04001526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
1529static int
1530nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1531{
1532 struct inode *inode = old_dentry->d_inode;
1533 int error;
1534
1535 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1536 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1537 dentry->d_parent->d_name.name, dentry->d_name.name);
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 nfs_begin_data_update(dir);
1541 nfs_begin_data_update(inode);
1542 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001543 if (error == 0) {
1544 atomic_inc(&inode->i_count);
1545 d_instantiate(dentry, inode);
1546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 nfs_end_data_update(inode);
1548 nfs_end_data_update(dir);
1549 unlock_kernel();
1550 return error;
1551}
1552
1553/*
1554 * RENAME
1555 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1556 * different file handle for the same inode after a rename (e.g. when
1557 * moving to a different directory). A fail-safe method to do so would
1558 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1559 * rename the old file using the sillyrename stuff. This way, the original
1560 * file in old_dir will go away when the last process iput()s the inode.
1561 *
1562 * FIXED.
1563 *
1564 * It actually works quite well. One needs to have the possibility for
1565 * at least one ".nfs..." file in each directory the file ever gets
1566 * moved or linked to which happens automagically with the new
1567 * implementation that only depends on the dcache stuff instead of
1568 * using the inode layer
1569 *
1570 * Unfortunately, things are a little more complicated than indicated
1571 * above. For a cross-directory move, we want to make sure we can get
1572 * rid of the old inode after the operation. This means there must be
1573 * no pending writes (if it's a file), and the use count must be 1.
1574 * If these conditions are met, we can drop the dentries before doing
1575 * the rename.
1576 */
1577static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1578 struct inode *new_dir, struct dentry *new_dentry)
1579{
1580 struct inode *old_inode = old_dentry->d_inode;
1581 struct inode *new_inode = new_dentry->d_inode;
1582 struct dentry *dentry = NULL, *rehash = NULL;
1583 int error = -EBUSY;
1584
1585 /*
1586 * To prevent any new references to the target during the rename,
1587 * we unhash the dentry and free the inode in advance.
1588 */
1589 lock_kernel();
1590 if (!d_unhashed(new_dentry)) {
1591 d_drop(new_dentry);
1592 rehash = new_dentry;
1593 }
1594
1595 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1596 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1597 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1598 atomic_read(&new_dentry->d_count));
1599
1600 /*
1601 * First check whether the target is busy ... we can't
1602 * safely do _any_ rename if the target is in use.
1603 *
1604 * For files, make a copy of the dentry and then do a
1605 * silly-rename. If the silly-rename succeeds, the
1606 * copied dentry is hashed and becomes the new target.
1607 */
1608 if (!new_inode)
1609 goto go_ahead;
Trond Myklebust6fe43f92005-10-18 14:20:22 -07001610 if (S_ISDIR(new_inode->i_mode)) {
1611 error = -EISDIR;
1612 if (!S_ISDIR(old_inode->i_mode))
1613 goto out;
1614 } else if (atomic_read(&new_dentry->d_count) > 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 int err;
1616 /* copy the target dentry's name */
1617 dentry = d_alloc(new_dentry->d_parent,
1618 &new_dentry->d_name);
1619 if (!dentry)
1620 goto out;
1621
1622 /* silly-rename the existing target ... */
1623 err = nfs_sillyrename(new_dir, new_dentry);
1624 if (!err) {
1625 new_dentry = rehash = dentry;
1626 new_inode = NULL;
1627 /* instantiate the replacement target */
1628 d_instantiate(new_dentry, NULL);
1629 } else if (atomic_read(&new_dentry->d_count) > 1) {
1630 /* dentry still busy? */
1631#ifdef NFS_PARANOIA
1632 printk("nfs_rename: target %s/%s busy, d_count=%d\n",
1633 new_dentry->d_parent->d_name.name,
1634 new_dentry->d_name.name,
1635 atomic_read(&new_dentry->d_count));
1636#endif
1637 goto out;
1638 }
Trond Myklebust20509f12005-08-25 16:25:34 -07001639 } else
1640 new_inode->i_nlink--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642go_ahead:
1643 /*
1644 * ... prune child dentries and writebacks if needed.
1645 */
1646 if (atomic_read(&old_dentry->d_count) > 1) {
1647 nfs_wb_all(old_inode);
1648 shrink_dcache_parent(old_dentry);
1649 }
Trond Myklebustcae7a072005-10-18 14:20:19 -07001650 nfs_inode_return_delegation(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Trond Myklebust24174112006-01-03 09:55:33 +01001652 if (new_inode != NULL) {
1653 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 d_delete(new_dentry);
Trond Myklebust24174112006-01-03 09:55:33 +01001655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 nfs_begin_data_update(old_dir);
1658 nfs_begin_data_update(new_dir);
1659 nfs_begin_data_update(old_inode);
1660 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1661 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001662 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 nfs_end_data_update(old_inode);
1664 nfs_end_data_update(new_dir);
1665 nfs_end_data_update(old_dir);
1666out:
1667 if (rehash)
1668 d_rehash(rehash);
1669 if (!error) {
1670 if (!S_ISDIR(old_inode->i_mode))
1671 d_move(old_dentry, new_dentry);
1672 nfs_renew_times(new_dentry);
1673 nfs_set_verifier(new_dentry, nfs_save_change_attribute(new_dir));
1674 }
1675
1676 /* new dentry created? */
1677 if (dentry)
1678 dput(dentry);
1679 unlock_kernel();
1680 return error;
1681}
1682
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001683static DEFINE_SPINLOCK(nfs_access_lru_lock);
1684static LIST_HEAD(nfs_access_lru_list);
1685static atomic_long_t nfs_access_nr_entries;
1686
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001687static void nfs_access_free_entry(struct nfs_access_entry *entry)
1688{
1689 put_rpccred(entry->cred);
1690 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001691 smp_mb__before_atomic_dec();
1692 atomic_long_dec(&nfs_access_nr_entries);
1693 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001694}
1695
Trond Myklebust979df722006-07-25 11:28:19 -04001696int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask)
1697{
1698 LIST_HEAD(head);
1699 struct nfs_inode *nfsi;
1700 struct nfs_access_entry *cache;
1701
1702 spin_lock(&nfs_access_lru_lock);
1703restart:
1704 list_for_each_entry(nfsi, &nfs_access_lru_list, access_cache_inode_lru) {
1705 struct inode *inode;
1706
1707 if (nr_to_scan-- == 0)
1708 break;
1709 inode = igrab(&nfsi->vfs_inode);
1710 if (inode == NULL)
1711 continue;
1712 spin_lock(&inode->i_lock);
1713 if (list_empty(&nfsi->access_cache_entry_lru))
1714 goto remove_lru_entry;
1715 cache = list_entry(nfsi->access_cache_entry_lru.next,
1716 struct nfs_access_entry, lru);
1717 list_move(&cache->lru, &head);
1718 rb_erase(&cache->rb_node, &nfsi->access_cache);
1719 if (!list_empty(&nfsi->access_cache_entry_lru))
1720 list_move_tail(&nfsi->access_cache_inode_lru,
1721 &nfs_access_lru_list);
1722 else {
1723remove_lru_entry:
1724 list_del_init(&nfsi->access_cache_inode_lru);
1725 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
1726 }
1727 spin_unlock(&inode->i_lock);
1728 iput(inode);
1729 goto restart;
1730 }
1731 spin_unlock(&nfs_access_lru_lock);
1732 while (!list_empty(&head)) {
1733 cache = list_entry(head.next, struct nfs_access_entry, lru);
1734 list_del(&cache->lru);
1735 nfs_access_free_entry(cache);
1736 }
1737 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1738}
1739
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001740static void __nfs_access_zap_cache(struct inode *inode)
1741{
1742 struct nfs_inode *nfsi = NFS_I(inode);
1743 struct rb_root *root_node = &nfsi->access_cache;
1744 struct rb_node *n, *dispose = NULL;
1745 struct nfs_access_entry *entry;
1746
1747 /* Unhook entries from the cache */
1748 while ((n = rb_first(root_node)) != NULL) {
1749 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1750 rb_erase(n, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001751 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001752 n->rb_left = dispose;
1753 dispose = n;
1754 }
1755 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
1756 spin_unlock(&inode->i_lock);
1757
1758 /* Now kill them all! */
1759 while (dispose != NULL) {
1760 n = dispose;
1761 dispose = n->rb_left;
1762 nfs_access_free_entry(rb_entry(n, struct nfs_access_entry, rb_node));
1763 }
1764}
1765
1766void nfs_access_zap_cache(struct inode *inode)
1767{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001768 /* Remove from global LRU init */
1769 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_FLAGS(inode))) {
1770 spin_lock(&nfs_access_lru_lock);
1771 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
1772 spin_unlock(&nfs_access_lru_lock);
1773 }
1774
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001775 spin_lock(&inode->i_lock);
1776 /* This will release the spinlock */
1777 __nfs_access_zap_cache(inode);
1778}
1779
1780static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
1781{
1782 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
1783 struct nfs_access_entry *entry;
1784
1785 while (n != NULL) {
1786 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1787
1788 if (cred < entry->cred)
1789 n = n->rb_left;
1790 else if (cred > entry->cred)
1791 n = n->rb_right;
1792 else
1793 return entry;
1794 }
1795 return NULL;
1796}
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
1799{
Chuck Lever55296802005-08-18 11:24:09 -07001800 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001801 struct nfs_access_entry *cache;
1802 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001804 spin_lock(&inode->i_lock);
1805 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
1806 goto out_zap;
1807 cache = nfs_access_search_rbtree(inode, cred);
1808 if (cache == NULL)
1809 goto out;
1810 if (time_after(jiffies, cache->jiffies + NFS_ATTRTIMEO(inode)))
1811 goto out_stale;
1812 res->jiffies = cache->jiffies;
1813 res->cred = cache->cred;
1814 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001815 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001816 err = 0;
1817out:
1818 spin_unlock(&inode->i_lock);
1819 return err;
1820out_stale:
1821 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001822 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001823 spin_unlock(&inode->i_lock);
1824 nfs_access_free_entry(cache);
1825 return -ENOENT;
1826out_zap:
1827 /* This will release the spinlock */
1828 __nfs_access_zap_cache(inode);
1829 return -ENOENT;
1830}
1831
1832static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
1833{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001834 struct nfs_inode *nfsi = NFS_I(inode);
1835 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001836 struct rb_node **p = &root_node->rb_node;
1837 struct rb_node *parent = NULL;
1838 struct nfs_access_entry *entry;
1839
1840 spin_lock(&inode->i_lock);
1841 while (*p != NULL) {
1842 parent = *p;
1843 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
1844
1845 if (set->cred < entry->cred)
1846 p = &parent->rb_left;
1847 else if (set->cred > entry->cred)
1848 p = &parent->rb_right;
1849 else
1850 goto found;
1851 }
1852 rb_link_node(&set->rb_node, parent, p);
1853 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001854 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001855 spin_unlock(&inode->i_lock);
1856 return;
1857found:
1858 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001859 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
1860 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001861 spin_unlock(&inode->i_lock);
1862 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
1865void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
1866{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001867 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
1868 if (cache == NULL)
1869 return;
1870 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001872 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001874
1875 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001876
1877 /* Update accounting */
1878 smp_mb__before_atomic_inc();
1879 atomic_long_inc(&nfs_access_nr_entries);
1880 smp_mb__after_atomic_inc();
1881
1882 /* Add inode to global LRU list */
1883 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_FLAGS(inode))) {
1884 spin_lock(&nfs_access_lru_lock);
1885 list_add_tail(&NFS_I(inode)->access_cache_inode_lru, &nfs_access_lru_list);
1886 spin_unlock(&nfs_access_lru_lock);
1887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
1890static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
1891{
1892 struct nfs_access_entry cache;
1893 int status;
1894
1895 status = nfs_access_get_cached(inode, cred, &cache);
1896 if (status == 0)
1897 goto out;
1898
1899 /* Be clever: ask server to check for all possible rights */
1900 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
1901 cache.cred = cred;
1902 cache.jiffies = jiffies;
1903 status = NFS_PROTO(inode)->access(inode, &cache);
1904 if (status != 0)
1905 return status;
1906 nfs_access_add_cache(inode, &cache);
1907out:
1908 if ((cache.mask & mask) == mask)
1909 return 0;
1910 return -EACCES;
1911}
1912
1913int nfs_permission(struct inode *inode, int mask, struct nameidata *nd)
1914{
1915 struct rpc_cred *cred;
1916 int res = 0;
1917
Chuck Lever91d5b472006-03-20 13:44:14 -05001918 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (mask == 0)
1921 goto out;
1922 /* Is this sys_access() ? */
1923 if (nd != NULL && (nd->flags & LOOKUP_ACCESS))
1924 goto force_lookup;
1925
1926 switch (inode->i_mode & S_IFMT) {
1927 case S_IFLNK:
1928 goto out;
1929 case S_IFREG:
1930 /* NFSv4 has atomic_open... */
1931 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
1932 && nd != NULL
1933 && (nd->flags & LOOKUP_OPEN))
1934 goto out;
1935 break;
1936 case S_IFDIR:
1937 /*
1938 * Optimize away all write operations, since the server
1939 * will check permissions when we perform the op.
1940 */
1941 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
1942 goto out;
1943 }
1944
1945force_lookup:
1946 lock_kernel();
1947
1948 if (!NFS_PROTO(inode)->access)
1949 goto out_notsup;
1950
1951 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1952 if (!IS_ERR(cred)) {
1953 res = nfs_do_access(inode, cred, mask);
1954 put_rpccred(cred);
1955 } else
1956 res = PTR_ERR(cred);
1957 unlock_kernel();
1958out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001959 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
1960 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return res;
1962out_notsup:
1963 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1964 if (res == 0)
1965 res = generic_permission(inode, mask, NULL);
1966 unlock_kernel();
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001967 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
1969
1970/*
1971 * Local variables:
1972 * version-control: t
1973 * kept-new-versions: 5
1974 * End:
1975 */