blob: fd30f185ec01cd86023e7345d78609acdcbb9a32 [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>
Chuck Lever873101b2006-08-22 20:06:23 -040032#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/namei.h>
David Howells54ceac42006-08-22 20:06:13 -040034#include <linux/mount.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050038#include "iostat.h"
Adrian Bunk4c30d562007-11-21 15:04:31 -080039#include "internal.h"
Trond Myklebustcd9a1c02010-09-17 10:56:50 -040040#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* #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 *);
Christoph Hellwig7ea80852010-05-26 17:53:25 +020056static int nfs_fsync_dir(struct file *, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000057static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040058static int nfs_readdir_clear_array(struct page*, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080060const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000061 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .read = generic_read_dir,
63 .readdir = nfs_readdir,
64 .open = nfs_opendir,
65 .release = nfs_release,
66 .fsync = nfs_fsync_dir,
67};
68
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080069const struct inode_operations nfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .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
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040084const struct address_space_operations nfs_dir_addr_space_ops = {
85 .releasepage = nfs_readdir_clear_array,
86};
87
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000088#ifdef CONFIG_NFS_V3
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080089const struct inode_operations nfs3_dir_inode_operations = {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000090 .create = nfs_create,
91 .lookup = nfs_lookup,
92 .link = nfs_link,
93 .unlink = nfs_unlink,
94 .symlink = nfs_symlink,
95 .mkdir = nfs_mkdir,
96 .rmdir = nfs_rmdir,
97 .mknod = nfs_mknod,
98 .rename = nfs_rename,
99 .permission = nfs_permission,
100 .getattr = nfs_getattr,
101 .setattr = nfs_setattr,
102 .listxattr = nfs3_listxattr,
103 .getxattr = nfs3_getxattr,
104 .setxattr = nfs3_setxattr,
105 .removexattr = nfs3_removexattr,
106};
107#endif /* CONFIG_NFS_V3 */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_NFS_V4
110
111static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400112static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd);
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800113const struct inode_operations nfs4_dir_inode_operations = {
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400114 .create = nfs_open_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .lookup = nfs_atomic_lookup,
116 .link = nfs_link,
117 .unlink = nfs_unlink,
118 .symlink = nfs_symlink,
119 .mkdir = nfs_mkdir,
120 .rmdir = nfs_rmdir,
121 .mknod = nfs_mknod,
122 .rename = nfs_rename,
123 .permission = nfs_permission,
124 .getattr = nfs_getattr,
125 .setattr = nfs_setattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +0000126 .getxattr = nfs4_getxattr,
127 .setxattr = nfs4_setxattr,
128 .listxattr = nfs4_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131#endif /* CONFIG_NFS_V4 */
132
133/*
134 * Open file
135 */
136static int
137nfs_opendir(struct inode *inode, struct file *filp)
138{
Carsten Otte7451c4f2006-04-19 13:06:37 -0400139 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Chuck Lever6da24bc2008-06-11 17:55:58 -0400141 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400142 filp->f_path.dentry->d_parent->d_name.name,
143 filp->f_path.dentry->d_name.name);
144
145 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Call generic open code in order to cache credentials */
Carsten Otte7451c4f2006-04-19 13:06:37 -0400148 res = nfs_open(inode, filp);
Neil Brownf5a73672010-08-10 10:20:05 -0400149 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
150 /* This is a mountpoint, so d_revalidate will never
151 * have been called, so we need to refresh the
152 * inode (for close-open consistency) ourselves.
153 */
154 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return res;
157}
158
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400159struct nfs_cache_array_entry {
160 u64 cookie;
161 u64 ino;
162 struct qstr string;
163};
164
165struct nfs_cache_array {
166 unsigned int size;
167 int eof_index;
168 u64 last_cookie;
169 struct nfs_cache_array_entry array[0];
170};
171
172#define MAX_READDIR_ARRAY ((PAGE_SIZE - sizeof(struct nfs_cache_array)) / sizeof(struct nfs_cache_array_entry))
173
Al Viro0dbb4c62006-10-19 23:28:49 -0700174typedef __be32 * (*decode_dirent_t)(__be32 *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175typedef struct {
176 struct file *file;
177 struct page *page;
178 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000179 u64 *dir_cookie;
180 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400182
Neil Brown1f4eab72007-04-16 09:35:27 +1000183 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400184 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400185 unsigned int cache_entry_index;
186 unsigned int plus:1;
187 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188} nfs_readdir_descriptor_t;
189
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400190/*
191 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
193static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400194struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400196 if (page == NULL)
197 return ERR_PTR(-EIO);
198 return (struct nfs_cache_array *)kmap(page);
199}
200
201static
202void nfs_readdir_release_array(struct page *page)
203{
204 kunmap(page);
205}
206
207/*
208 * we are freeing strings created by nfs_add_to_readdir_array()
209 */
210static
211int nfs_readdir_clear_array(struct page *page, gfp_t mask)
212{
213 struct nfs_cache_array *array = nfs_readdir_get_array(page);
214 int i;
215 for (i = 0; i < array->size; i++)
216 kfree(array->array[i].string.name);
217 nfs_readdir_release_array(page);
218 return 0;
219}
220
221/*
222 * the caller is responsible for freeing qstr.name
223 * when called by nfs_readdir_add_to_array, the strings will be freed in
224 * nfs_clear_readdir_array()
225 */
226static
227void nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
228{
229 string->len = len;
230 string->name = kmemdup(name, len, GFP_KERNEL);
231 string->hash = full_name_hash(string->name, string->len);
232}
233
234static
235int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
236{
237 struct nfs_cache_array *array = nfs_readdir_get_array(page);
238 if (IS_ERR(array))
239 return PTR_ERR(array);
240 if (array->size >= MAX_READDIR_ARRAY) {
241 nfs_readdir_release_array(page);
242 return -EIO;
243 }
244
245 array->array[array->size].cookie = entry->prev_cookie;
246 array->last_cookie = entry->cookie;
247 array->array[array->size].ino = entry->ino;
248 nfs_readdir_make_qstr(&array->array[array->size].string, entry->name, entry->len);
249 if (entry->eof == 1)
250 array->eof_index = array->size;
251 array->size++;
252 nfs_readdir_release_array(page);
253 return 0;
254}
255
256static
257int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
258{
259 loff_t diff = desc->file->f_pos - desc->current_index;
260 unsigned int index;
261
262 if (diff < 0)
263 goto out_eof;
264 if (diff >= array->size) {
265 if (array->eof_index > 0)
266 goto out_eof;
267 desc->current_index += array->size;
268 return -EAGAIN;
269 }
270
271 index = (unsigned int)diff;
272 *desc->dir_cookie = array->array[index].cookie;
273 desc->cache_entry_index = index;
274 if (index == array->eof_index)
275 desc->eof = 1;
276 return 0;
277out_eof:
278 desc->eof = 1;
279 return -EBADCOOKIE;
280}
281
282static
283int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
284{
285 int i;
286 int status = -EAGAIN;
287
288 for (i = 0; i < array->size; i++) {
289 if (i == array->eof_index) {
290 desc->eof = 1;
291 status = -EBADCOOKIE;
292 }
293 if (array->array[i].cookie == *desc->dir_cookie) {
294 desc->cache_entry_index = i;
295 status = 0;
296 break;
297 }
298 }
299
300 return status;
301}
302
303static
304int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
305{
306 struct nfs_cache_array *array;
307 int status = -EBADCOOKIE;
308
309 if (desc->dir_cookie == NULL)
310 goto out;
311
312 array = nfs_readdir_get_array(desc->page);
313 if (IS_ERR(array)) {
314 status = PTR_ERR(array);
315 goto out;
316 }
317
318 if (*desc->dir_cookie == 0)
319 status = nfs_readdir_search_for_pos(array, desc);
320 else
321 status = nfs_readdir_search_for_cookie(array, desc);
322
323 nfs_readdir_release_array(desc->page);
324out:
325 return status;
326}
327
328/* Fill a page with xdr information before transferring to the cache page */
329static
330int nfs_readdir_xdr_filler(struct page *xdr_page, nfs_readdir_descriptor_t *desc,
331 struct nfs_entry *entry, struct file *file, struct inode *inode)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct rpc_cred *cred = nfs_file_cred(file);
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400334 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int error;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 again:
338 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400339 gencount = nfs_inc_attr_generation_counter();
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400340 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, xdr_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 NFS_SERVER(inode)->dtsize, desc->plus);
342 if (error < 0) {
343 /* We requested READDIRPLUS, but the server doesn't grok it */
344 if (error == -ENOTSUPP && desc->plus) {
345 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200346 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 desc->plus = 0;
348 goto again;
349 }
350 goto error;
351 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000352 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400353 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400354error:
355 return error;
356}
357
358/* Fill in an entry based on the xdr code stored in desc->page */
359static
360int xdr_decode(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, __be32 **ptr)
361{
362 __be32 *p = *ptr;
363 p = desc->decode(p, entry, desc->plus);
364 if (IS_ERR(p))
365 return PTR_ERR(p);
366 *ptr = p;
367
368 entry->fattr->time_start = desc->timestamp;
369 entry->fattr->gencount = desc->gencount;
370 return 0;
371}
372
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400373static
374int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
375{
376 struct nfs_inode *node;
377 if (dentry->d_inode == NULL)
378 goto different;
379 node = NFS_I(dentry->d_inode);
380 if (node->fh.size != entry->fh->size)
381 goto different;
382 if (strncmp(node->fh.data, entry->fh->data, node->fh.size) != 0)
383 goto different;
384 return 1;
385different:
386 return 0;
387}
388
389static
390void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
391{
392 struct qstr filename;
393 struct dentry *dentry = NULL;
394 struct dentry *alias = NULL;
395 struct inode *dir = parent->d_inode;
396 struct inode *inode;
397
398 nfs_readdir_make_qstr(&filename, entry->name, entry->len);
399 if (filename.len == 1 && filename.name[0] == '.')
400 dentry = dget(parent);
401 else if (filename.len == 2 && filename.name[0] == '.'
402 && filename.name[1] == '.')
403 dentry = dget_parent(parent);
404 else
405 dentry = d_lookup(parent, &filename);
406
407 if (dentry != NULL) {
408 if (nfs_same_file(dentry, entry)) {
409 nfs_refresh_inode(dentry->d_inode, entry->fattr);
410 goto out;
411 } else {
412 d_drop(dentry);
413 dput(dentry);
414 }
415 }
416
417 dentry = d_alloc(parent, &filename);
418 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
419 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
420 if (IS_ERR(inode))
421 goto out;
422
423 alias = d_materialise_unique(dentry, inode);
424 if (IS_ERR(alias))
425 goto out;
426 else if (alias) {
427 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
428 dput(alias);
429 } else
430 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
431
432out:
433 dput(dentry);
434 kfree(filename.name);
435 return;
436}
437
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400438/* Perform conversion from xdr to cache array */
439static
440void nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
441 struct page *xdr_page, struct page *page)
442{
443 __be32 *ptr = kmap(xdr_page);
444 while (xdr_decode(desc, entry, &ptr) == 0) {
445 if (nfs_readdir_add_to_array(entry, page) == -1)
446 break;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400447 if (desc->plus == 1)
448 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400449 }
450 kunmap(xdr_page);
451}
452
453static
454int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
455{
456 struct page *xdr_page;
457 struct nfs_entry entry;
458 struct file *file = desc->file;
459 struct nfs_cache_array *array;
460 int status = 0;
461
462 entry.prev_cookie = 0;
463 entry.cookie = *desc->dir_cookie;
464 entry.eof = 0;
465 entry.fh = nfs_alloc_fhandle();
466 entry.fattr = nfs_alloc_fattr();
467 if (entry.fh == NULL || entry.fattr == NULL)
468 goto out;
469
470 array = nfs_readdir_get_array(page);
471 memset(array, 0, sizeof(struct nfs_cache_array));
472 array->eof_index = -1;
473
474 xdr_page = alloc_page(GFP_KERNEL);
475 if (!xdr_page)
476 goto out_release_array;
477 do {
478 status = nfs_readdir_xdr_filler(xdr_page, desc, &entry, file, inode);
479 if (status < 0)
480 break;
481 nfs_readdir_page_filler(desc, &entry, xdr_page, page);
482 } while (array->eof_index < 0 && array->size < MAX_READDIR_ARRAY);
483
484 put_page(xdr_page);
485out_release_array:
486 nfs_readdir_release_array(page);
487out:
488 nfs_free_fattr(entry.fattr);
489 nfs_free_fhandle(entry.fh);
490 return status;
491}
492
493/*
494 * Now we cache directories properly, by converting xdr information
495 * to an array that can be used for lookups later. This results in
496 * fewer cache pages, since we can store more information on each page.
497 * We only need to convert from xdr once so future lookups are much simpler
498 */
499static
500int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
501{
502 struct inode *inode = desc->file->f_path.dentry->d_inode;
503
504 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1)
505 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400507
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400508 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700509 /* Should never happen */
510 nfs_zap_mapping(inode, inode->i_mapping);
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 unlock_page(page);
513 return 0;
514 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -EIO;
517}
518
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400519static
520void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 page_cache_release(desc->page);
523 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400526static
527struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400529 struct page *page;
530 page = read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
531 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
532 if (IS_ERR(page))
533 desc->eof = 1;
534 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400538 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000539 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400540static
541int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000542{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400543 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000544
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400545 desc->page = get_cache_page(desc);
546 if (IS_ERR(desc->page))
547 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000548
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400549 res = nfs_readdir_search_array(desc);
550 if (res == 0)
551 return 0;
552 cache_page_release(desc);
553 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000554}
555
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400556/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557static inline
558int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
559{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400560 int res = -EAGAIN;
Olivier Galibert00a92642005-06-22 17:16:29 +0000561
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400562 while (1) {
563 res = find_cache_page(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (res != -EAGAIN)
565 break;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400566 desc->page_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return res;
569}
570
571static inline unsigned int dt_type(struct inode *inode)
572{
573 return (inode->i_mode >> 12) & 15;
574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/*
577 * Once we've found the start of the dirent within a page: fill 'er up...
578 */
579static
580int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
581 filldir_t filldir)
582{
583 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400584 int i = 0;
585 int res = 0;
586 struct nfs_cache_array *array = NULL;
587 unsigned int d_type = DT_UNKNOWN;
588 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400590 array = nfs_readdir_get_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400592 for (i = desc->cache_entry_index; i < array->size; i++) {
593 d_type = DT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400595 res = filldir(dirent, array->array[i].string.name,
596 array->array[i].string.len, file->f_pos,
597 nfs_compat_user_ino64(array->array[i].ino), d_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (res < 0)
599 break;
Olivier Galibert00a92642005-06-22 17:16:29 +0000600 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400601 desc->cache_entry_index = i;
602 if (i < (array->size-1))
603 *desc->dir_cookie = array->array[i+1].cookie;
604 else
605 *desc->dir_cookie = array->last_cookie;
606 if (i == array->eof_index) {
607 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 break;
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400611
612 nfs_readdir_release_array(desc->page);
613 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (dentry != NULL)
615 dput(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500616 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
617 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return res;
619}
620
621/*
622 * If we cannot find a cookie in our cache, we suspect that this is
623 * because it points to a deleted file, so we ask the server to return
624 * whatever it thinks is the next entry. We then feed this to filldir.
625 * If all goes well, we should then be able to find our way round the
626 * cache on the next call to readdir_search_pagecache();
627 *
628 * NOTE: we cannot add the anonymous page to the pagecache because
629 * the data it contains might not be page aligned. Besides,
630 * we should already have a complete representation of the
631 * directory in the page cache by the time we get here.
632 */
633static inline
634int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
635 filldir_t filldir)
636{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 struct page *page = NULL;
638 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400639 struct inode *inode = desc->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500641 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
642 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 page = alloc_page(GFP_HIGHUSER);
645 if (!page) {
646 status = -ENOMEM;
647 goto out;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400650 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) {
651 status = -EIO;
652 goto out_release;
653 }
654
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400655 desc->page_index = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400656 desc->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 status = nfs_do_filldir(desc, dirent, filldir);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500660 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700661 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return status;
663 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400664 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 goto out;
666}
667
Olivier Galibert00a92642005-06-22 17:16:29 +0000668/* The file offset position represents the dirent entry number. A
669 last cookie cache takes care of the common case of reading the
670 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
672static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
673{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800674 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct inode *inode = dentry->d_inode;
676 nfs_readdir_descriptor_t my_desc,
677 *desc = &my_desc;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400678 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Chuck Lever6da24bc2008-06-11 17:55:58 -0400680 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500681 dentry->d_parent->d_name.name, dentry->d_name.name,
682 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500683 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000686 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000687 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000688 * to either find the entry with the appropriate number or
689 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
691 memset(desc, 0, sizeof(*desc));
692
693 desc->file = filp;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400694 desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 desc->decode = NFS_PROTO(inode)->decode_dirent;
696 desc->plus = NFS_USE_READDIRPLUS(inode);
697
Trond Myklebust565277f2007-10-15 18:17:53 -0400698 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800699 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500700 if (res < 0)
701 goto out;
702
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400703 while (desc->eof != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (res == -EBADCOOKIE) {
707 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400708 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* Or that the server has 'lost' a cookie */
710 res = uncached_readdir(desc, dirent, filldir);
711 if (res >= 0)
712 continue;
713 }
714 res = 0;
715 break;
716 }
717 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200718 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400720 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400722 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 continue;
724 }
725 if (res < 0)
726 break;
727
728 res = nfs_do_filldir(desc, dirent, filldir);
729 if (res < 0) {
730 res = 0;
731 break;
732 }
733 }
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500734out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400735 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500736 if (res > 0)
737 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400738 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500739 dentry->d_parent->d_name.name, dentry->d_name.name,
740 res);
741 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Trond Myklebust10afec92007-05-14 17:16:04 -0400744static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000745{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400746 struct dentry *dentry = filp->f_path.dentry;
747 struct inode *inode = dentry->d_inode;
748
Chuck Lever6da24bc2008-06-11 17:55:58 -0400749 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400750 dentry->d_parent->d_name.name,
751 dentry->d_name.name,
752 offset, origin);
753
754 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000755 switch (origin) {
756 case 1:
757 offset += filp->f_pos;
758 case 0:
759 if (offset >= 0)
760 break;
761 default:
762 offset = -EINVAL;
763 goto out;
764 }
765 if (offset != filp->f_pos) {
766 filp->f_pos = offset;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400767 nfs_file_open_context(filp)->dir_cookie = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000768 }
769out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400770 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000771 return offset;
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*
775 * All directory operations under NFS are synchronous, so fsync()
776 * is a dummy operation.
777 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200778static int nfs_fsync_dir(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200780 struct dentry *dentry = filp->f_path.dentry;
781
Chuck Lever6da24bc2008-06-11 17:55:58 -0400782 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500783 dentry->d_parent->d_name.name, dentry->d_name.name,
784 datasync);
785
Chuck Lever54917782008-05-27 16:29:07 -0400786 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return 0;
788}
789
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400790/**
791 * nfs_force_lookup_revalidate - Mark the directory as having changed
792 * @dir - pointer to directory inode
793 *
794 * This forces the revalidation code in nfs_lookup_revalidate() to do a
795 * full lookup on all child dentries of 'dir' whenever a change occurs
796 * on the server that might have invalidated our dcache.
797 *
798 * The caller should be holding dir->i_lock
799 */
800void nfs_force_lookup_revalidate(struct inode *dir)
801{
Trond Myklebust011935a02008-10-14 19:24:50 -0400802 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805/*
806 * A check for whether or not the parent directory has changed.
807 * In the case it has, we assume that the dentries are untrustworthy
808 * and may need to be looked up again.
809 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500810static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 if (IS_ROOT(dentry))
813 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400814 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
815 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400816 if (!nfs_verify_change_attribute(dir, dentry->d_time))
817 return 0;
818 /* Revalidate nfsi->cache_change_attribute before we declare a match */
819 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
820 return 0;
821 if (!nfs_verify_change_attribute(dir, dentry->d_time))
822 return 0;
823 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400827 * Return the intent data that applies to this particular path component
828 *
829 * Note that the current set of intents only apply to the very last
830 * component of the path.
831 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
832 */
833static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
834{
835 if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
836 return 0;
837 return nd->flags & mask;
838}
839
840/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400841 * Use intent information to check whether or not we're going to do
842 * an O_EXCL create using this path component.
843 */
844static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
845{
846 if (NFS_PROTO(dir)->version == 2)
847 return 0;
Al Viro35165862008-08-05 03:00:49 -0400848 return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
Trond Myklebusta12802c2007-10-02 19:13:04 -0400849}
850
851/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400852 * Inode and filehandle revalidation for lookups.
853 *
854 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
855 * or if the intent information indicates that we're about to open this
856 * particular file and the "nocto" mount flag is not set.
857 *
858 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859static inline
860int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
861{
862 struct nfs_server *server = NFS_SERVER(inode);
863
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500864 if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400868 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto out_force;
870 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400871 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400872 !(server->flags & NFS_MOUNT_NOCTO) &&
873 (S_ISREG(inode->i_mode) ||
874 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto out_force;
Trond Myklebust4f48af42007-10-02 23:13:32 -0400876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878 return nfs_revalidate_inode(server, inode);
879out_force:
880 return __nfs_revalidate_inode(server, inode);
881}
882
883/*
884 * We judge how long we want to trust negative
885 * dentries by looking at the parent inode mtime.
886 *
887 * If parent mtime has changed, we revalidate, else we wait for a
888 * period corresponding to the parent's attribute cache timeout value.
889 */
890static inline
891int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
892 struct nameidata *nd)
893{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400895 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400897 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
898 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return !nfs_check_verifier(dir, dentry);
900}
901
902/*
903 * This is called every time the dcache has a lookup hit,
904 * and we should check whether we can really trust that
905 * lookup.
906 *
907 * NOTE! The hit can be a negative hit too, don't assume
908 * we have an inode!
909 *
910 * If the parent directory is seen to have changed, we throw out the
911 * cached dentry and do a new lookup.
912 */
913static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
914{
915 struct inode *dir;
916 struct inode *inode;
917 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400918 struct nfs_fh *fhandle = NULL;
919 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -0500924 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 inode = dentry->d_inode;
926
927 if (!inode) {
928 if (nfs_neg_need_reval(dir, dentry, nd))
929 goto out_bad;
930 goto out_valid;
931 }
932
933 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500934 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700935 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500936 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto out_bad;
938 }
939
Trond Myklebust15860ab2008-12-23 15:21:54 -0500940 if (nfs_have_delegation(inode, FMODE_READ))
941 goto out_set_verifier;
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /* Force a full look up iff the parent directory has changed */
Trond Myklebusta12802c2007-10-02 19:13:04 -0400944 if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (nfs_lookup_verify_inode(inode, nd))
946 goto out_zap_parent;
947 goto out_valid;
948 }
949
950 if (NFS_STALE(inode))
951 goto out_bad;
952
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400953 error = -ENOMEM;
954 fhandle = nfs_alloc_fhandle();
955 fattr = nfs_alloc_fattr();
956 if (fhandle == NULL || fattr == NULL)
957 goto out_error;
958
959 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (error)
961 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400962 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400964 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto out_bad;
966
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400967 nfs_free_fattr(fattr);
968 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -0500969out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -0400970 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 out_valid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500973 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700974 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500975 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 1;
977out_zap_parent:
978 nfs_zap_caches(dir);
979 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -0400980 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (inode && S_ISDIR(inode->i_mode)) {
982 /* Purge readdir caches. */
983 nfs_zap_caches(inode);
984 /* If we have submounts, don't unhash ! */
985 if (have_submounts(dentry))
986 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +0100987 if (dentry->d_flags & DCACHE_DISCONNECTED)
988 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 shrink_dcache_parent(dentry);
990 }
991 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400992 nfs_free_fattr(fattr);
993 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500995 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700996 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500997 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400999out_error:
1000 nfs_free_fattr(fattr);
1001 nfs_free_fhandle(fhandle);
1002 dput(parent);
1003 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1004 __func__, dentry->d_parent->d_name.name,
1005 dentry->d_name.name, error);
1006 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009/*
1010 * This is called from dput() when d_count is going to 0.
1011 */
1012static int nfs_dentry_delete(struct dentry *dentry)
1013{
1014 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1015 dentry->d_parent->d_name.name, dentry->d_name.name,
1016 dentry->d_flags);
1017
Trond Myklebust77f11192008-01-28 19:43:19 -05001018 /* Unhash any dentry with a stale inode */
1019 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1020 return 1;
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1023 /* Unhash it, so that ->d_iput() would be called */
1024 return 1;
1025 }
1026 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1027 /* Unhash it, so that ancestors of killed async unlink
1028 * files will be cleaned up during umount */
1029 return 1;
1030 }
1031 return 0;
1032
1033}
1034
Trond Myklebust1b83d702008-06-11 15:44:04 -04001035static void nfs_drop_nlink(struct inode *inode)
1036{
1037 spin_lock(&inode->i_lock);
1038 if (inode->i_nlink > 0)
1039 drop_nlink(inode);
1040 spin_unlock(&inode->i_lock);
1041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/*
1044 * Called when the dentry loses inode.
1045 * We use it to clean up silly-renamed files.
1046 */
1047static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1048{
Neil Brown83672d32007-02-26 12:48:25 +11001049 if (S_ISDIR(inode->i_mode))
1050 /* drop any readdir cache as it could easily be old */
1051 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001054 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001055 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 iput(inode);
1058}
1059
Al Virof786aa92009-02-20 05:51:22 +00001060const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .d_revalidate = nfs_lookup_revalidate,
1062 .d_delete = nfs_dentry_delete,
1063 .d_iput = nfs_dentry_iput,
1064};
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
1067{
1068 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001069 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001071 struct nfs_fh *fhandle = NULL;
1072 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1076 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001077 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 res = ERR_PTR(-ENAMETOOLONG);
1080 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1081 goto out;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1084
Trond Myklebustfd684072006-09-05 12:27:44 -04001085 /*
1086 * If we're doing an exclusive create, optimize away the lookup
1087 * but don't hash the dentry.
1088 */
1089 if (nfs_is_exclusive_create(dir, nd)) {
1090 d_instantiate(dentry, NULL);
1091 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001092 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001095 res = ERR_PTR(-ENOMEM);
1096 fhandle = nfs_alloc_fhandle();
1097 fattr = nfs_alloc_fattr();
1098 if (fhandle == NULL || fattr == NULL)
1099 goto out;
1100
Trond Myklebust565277f2007-10-15 18:17:53 -04001101 parent = dentry->d_parent;
1102 /* Protect against concurrent sillydeletes */
1103 nfs_block_sillyrename(parent);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001104 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (error == -ENOENT)
1106 goto no_entry;
1107 if (error < 0) {
1108 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001109 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001111 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001112 res = (struct dentry *)inode;
1113 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001114 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001117 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001118 if (res != NULL) {
1119 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001120 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001124out_unblock_sillyrename:
1125 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001127 nfs_free_fattr(fattr);
1128 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return res;
1130}
1131
1132#ifdef CONFIG_NFS_V4
1133static int nfs_open_revalidate(struct dentry *, struct nameidata *);
1134
Al Virof786aa92009-02-20 05:51:22 +00001135const struct dentry_operations nfs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 .d_revalidate = nfs_open_revalidate,
1137 .d_delete = nfs_dentry_delete,
1138 .d_iput = nfs_dentry_iput,
1139};
1140
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001141/*
1142 * Use intent information to determine whether we need to substitute
1143 * the NFSv4-style stateful OPEN for the LOOKUP call
1144 */
Trond Myklebust5584c302008-12-23 15:21:54 -05001145static int is_atomic_open(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001147 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return 0;
1149 /* NFS does not (yet) have a stateful open for directories */
1150 if (nd->flags & LOOKUP_DIRECTORY)
1151 return 0;
1152 /* Are we trying to write to a read only partition? */
Dave Hansen2c463e92008-02-15 14:37:56 -08001153 if (__mnt_is_readonly(nd->path.mnt) &&
1154 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return 0;
1156 return 1;
1157}
1158
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001159static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
1160{
1161 struct path path = {
1162 .mnt = nd->path.mnt,
1163 .dentry = dentry,
1164 };
1165 struct nfs_open_context *ctx;
1166 struct rpc_cred *cred;
1167 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
1168
1169 cred = rpc_lookup_cred();
1170 if (IS_ERR(cred))
1171 return ERR_CAST(cred);
1172 ctx = alloc_nfs_open_context(&path, cred, fmode);
1173 put_rpccred(cred);
1174 if (ctx == NULL)
1175 return ERR_PTR(-ENOMEM);
1176 return ctx;
1177}
1178
1179static int do_open(struct inode *inode, struct file *filp)
1180{
1181 nfs_fscache_set_inode_cookie(inode, filp);
1182 return 0;
1183}
1184
1185static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
1186{
1187 struct file *filp;
1188 int ret = 0;
1189
1190 /* If the open_intent is for execute, we have an extra check to make */
1191 if (ctx->mode & FMODE_EXEC) {
1192 ret = nfs_may_open(ctx->path.dentry->d_inode,
1193 ctx->cred,
1194 nd->intent.open.flags);
1195 if (ret < 0)
1196 goto out;
1197 }
1198 filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
1199 if (IS_ERR(filp))
1200 ret = PTR_ERR(filp);
1201 else
1202 nfs_file_set_open_context(filp, ctx);
1203out:
1204 put_nfs_open_context(ctx);
1205 return ret;
1206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1209{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001210 struct nfs_open_context *ctx;
1211 struct iattr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct dentry *res = NULL;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001213 struct inode *inode;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001214 int open_flags;
Trond Myklebust898f6352010-10-23 11:24:25 -04001215 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001217 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
1218 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /* Check that we are indeed trying to open this file */
Trond Myklebust5584c302008-12-23 15:21:54 -05001221 if (!is_atomic_open(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 goto no_open;
1223
1224 if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
1225 res = ERR_PTR(-ENAMETOOLONG);
1226 goto out;
1227 }
1228 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1229
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001230 /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
1231 * the dentry. */
Al Viro35165862008-08-05 03:00:49 -04001232 if (nd->flags & LOOKUP_EXCL) {
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001233 d_instantiate(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001234 goto out;
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001237 ctx = nameidata_to_nfs_open_context(dentry, nd);
1238 res = ERR_CAST(ctx);
1239 if (IS_ERR(ctx))
1240 goto out;
1241
1242 open_flags = nd->intent.open.flags;
1243 if (nd->flags & LOOKUP_CREATE) {
1244 attr.ia_mode = nd->intent.open.create_mode;
1245 attr.ia_valid = ATTR_MODE;
1246 if (!IS_POSIXACL(dir))
1247 attr.ia_mode &= ~current_umask();
1248 } else {
Trond Myklebust898f6352010-10-23 11:24:25 -04001249 open_flags &= ~(O_EXCL | O_CREAT);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001250 attr.ia_valid = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001251 }
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /* Open the file on the server */
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001254 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001255 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001256 if (IS_ERR(inode)) {
1257 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001258 put_nfs_open_context(ctx);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001259 switch (PTR_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 /* Make a negative dentry */
1261 case -ENOENT:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001262 d_add(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001263 res = NULL;
1264 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* This turned out not to be a regular file */
Trond Myklebust80e60632010-03-25 13:51:05 -04001266 case -EISDIR:
Trond Myklebust6f926b52005-10-18 14:20:18 -07001267 case -ENOTDIR:
1268 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 case -ELOOP:
1270 if (!(nd->intent.open.flags & O_NOFOLLOW))
1271 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /* case -EINVAL: */
1273 default:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001274 res = ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 goto out;
1276 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001277 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001278 res = d_add_unique(dentry, inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001279 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001280 if (res != NULL) {
1281 dput(ctx->path.dentry);
1282 ctx->path.dentry = dget(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 dentry = res;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001284 }
Trond Myklebust898f6352010-10-23 11:24:25 -04001285 err = nfs_intent_set_file(nd, ctx);
1286 if (err < 0) {
1287 if (res != NULL)
1288 dput(res);
1289 return ERR_PTR(err);
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291out:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001292 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return res;
1294no_open:
1295 return nfs_lookup(dir, dentry, nd);
1296}
1297
1298static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1299{
1300 struct dentry *parent = NULL;
1301 struct inode *inode = dentry->d_inode;
1302 struct inode *dir;
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001303 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 int openflags, ret = 0;
1305
Trond Myklebust1f063d22010-04-22 15:35:55 -04001306 if (!is_atomic_open(nd) || d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001307 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 parent = dget_parent(dentry);
1310 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /* We can't create new files in nfs_open_revalidate(), so we
1313 * optimize away revalidation of negative dentries.
1314 */
Trond Myklebust216d5d02007-10-01 20:10:12 -04001315 if (inode == NULL) {
1316 if (!nfs_neg_need_reval(dir, dentry, nd))
1317 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 goto out;
Trond Myklebust216d5d02007-10-01 20:10:12 -04001319 }
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /* NFS only supports OPEN on regular files */
1322 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001323 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 openflags = nd->intent.open.flags;
1325 /* We cannot do exclusive creation on a positive dentry */
1326 if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
Trond Myklebust5584c302008-12-23 15:21:54 -05001327 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /* We can't create new files, or truncate existing ones here */
Trond Myklebust0a377cf2010-08-18 09:25:42 -04001329 openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001331 ctx = nameidata_to_nfs_open_context(dentry, nd);
1332 ret = PTR_ERR(ctx);
1333 if (IS_ERR(ctx))
1334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001336 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * operations that change the directory. We therefore save the
1338 * change attribute *before* we do the RPC call.
1339 */
Trond Myklebust2b484292010-09-17 10:56:51 -04001340 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
Trond Myklebust535918f2010-09-17 10:56:51 -04001341 if (IS_ERR(inode)) {
1342 ret = PTR_ERR(inode);
1343 switch (ret) {
1344 case -EPERM:
1345 case -EACCES:
1346 case -EDQUOT:
1347 case -ENOSPC:
1348 case -EROFS:
1349 goto out_put_ctx;
1350 default:
1351 goto out_drop;
1352 }
1353 }
1354 iput(inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001355 if (inode != dentry->d_inode)
Trond Myklebust535918f2010-09-17 10:56:51 -04001356 goto out_drop;
Trond Myklebust898f6352010-10-23 11:24:25 -04001357
1358 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1359 ret = nfs_intent_set_file(nd, ctx);
1360 if (ret >= 0)
1361 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362out:
1363 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001365out_drop:
1366 d_drop(dentry);
1367 ret = 0;
1368out_put_ctx:
1369 put_nfs_open_context(ctx);
1370 goto out;
1371
Trond Myklebust5584c302008-12-23 15:21:54 -05001372no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001374no_open:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 return nfs_lookup_revalidate(dentry, nd);
1376}
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001377
1378static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
1379 struct nameidata *nd)
1380{
1381 struct nfs_open_context *ctx = NULL;
1382 struct iattr attr;
1383 int error;
1384 int open_flags = 0;
1385
1386 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1387 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1388
1389 attr.ia_mode = mode;
1390 attr.ia_valid = ATTR_MODE;
1391
1392 if ((nd->flags & LOOKUP_CREATE) != 0) {
1393 open_flags = nd->intent.open.flags;
1394
1395 ctx = nameidata_to_nfs_open_context(dentry, nd);
1396 error = PTR_ERR(ctx);
1397 if (IS_ERR(ctx))
Trond Myklebust898f6352010-10-23 11:24:25 -04001398 goto out_err_drop;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001399 }
1400
1401 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
1402 if (error != 0)
1403 goto out_put_ctx;
Trond Myklebust898f6352010-10-23 11:24:25 -04001404 if (ctx != NULL) {
1405 error = nfs_intent_set_file(nd, ctx);
1406 if (error < 0)
1407 goto out_err;
1408 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001409 return 0;
1410out_put_ctx:
1411 if (ctx != NULL)
1412 put_nfs_open_context(ctx);
Trond Myklebust898f6352010-10-23 11:24:25 -04001413out_err_drop:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001414 d_drop(dentry);
Trond Myklebust898f6352010-10-23 11:24:25 -04001415out_err:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001416 return error;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419#endif /* CONFIG_NFSV4 */
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421/*
1422 * Code common to create, mkdir, and mknod.
1423 */
1424int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1425 struct nfs_fattr *fattr)
1426{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001427 struct dentry *parent = dget_parent(dentry);
1428 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 struct inode *inode;
1430 int error = -EACCES;
1431
Trond Myklebustfab728e2007-09-29 17:41:33 -04001432 d_drop(dentry);
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 /* We may have been initialized further down */
1435 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (fhandle->size == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1439 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001440 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001442 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1444 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001445 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001447 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001450 error = PTR_ERR(inode);
1451 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001452 goto out_error;
1453 d_add(dentry, inode);
1454out:
1455 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001457out_error:
1458 nfs_mark_for_revalidate(dir);
1459 dput(parent);
1460 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463/*
1464 * Following a failed create operation, we drop the dentry rather
1465 * than retain a negative dentry. This avoids a problem in the event
1466 * that the operation succeeded on the server, but an error in the
1467 * reply path made it appear to have failed.
1468 */
1469static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1470 struct nameidata *nd)
1471{
1472 struct iattr attr;
1473 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001475 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1476 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 attr.ia_mode = mode;
1479 attr.ia_valid = ATTR_MODE;
1480
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001481 error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (error != 0)
1483 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return 0;
1485out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 d_drop(dentry);
1487 return error;
1488}
1489
1490/*
1491 * See comments for nfs_proc_create regarding failed operations.
1492 */
1493static int
1494nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1495{
1496 struct iattr attr;
1497 int status;
1498
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001499 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1500 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 if (!new_valid_dev(rdev))
1503 return -EINVAL;
1504
1505 attr.ia_mode = mode;
1506 attr.ia_valid = ATTR_MODE;
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (status != 0)
1510 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return 0;
1512out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 d_drop(dentry);
1514 return status;
1515}
1516
1517/*
1518 * See comments for nfs_proc_create regarding failed operations.
1519 */
1520static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1521{
1522 struct iattr attr;
1523 int error;
1524
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001525 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1526 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 attr.ia_valid = ATTR_MODE;
1529 attr.ia_mode = mode | S_IFDIR;
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (error != 0)
1533 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return 0;
1535out_err:
1536 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return error;
1538}
1539
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001540static void nfs_dentry_handle_enoent(struct dentry *dentry)
1541{
1542 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1543 d_delete(dentry);
1544}
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1547{
1548 int error;
1549
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001550 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1551 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1554 /* Ensure the VFS deletes this inode */
1555 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001556 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001557 else if (error == -ENOENT)
1558 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 return error;
1561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/*
1564 * Remove a file after making sure there are no pending writes,
1565 * and after checking that the file has only one user.
1566 *
1567 * We invalidate the attribute cache and free the inode prior to the operation
1568 * to avoid possible races if the server reuses the inode.
1569 */
1570static int nfs_safe_remove(struct dentry *dentry)
1571{
1572 struct inode *dir = dentry->d_parent->d_inode;
1573 struct inode *inode = dentry->d_inode;
1574 int error = -EBUSY;
1575
1576 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1577 dentry->d_parent->d_name.name, dentry->d_name.name);
1578
1579 /* If the dentry was sillyrenamed, we simply call d_delete() */
1580 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1581 error = 0;
1582 goto out;
1583 }
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001586 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1588 /* The VFS may want to delete this inode */
1589 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001590 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001591 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 } else
1593 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001594 if (error == -ENOENT)
1595 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596out:
1597 return error;
1598}
1599
1600/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1601 * belongs to an active ".nfs..." file and we return -EBUSY.
1602 *
1603 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1604 */
1605static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1606{
1607 int error;
1608 int need_rehash = 0;
1609
1610 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1611 dir->i_ino, dentry->d_name.name);
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 spin_lock(&dcache_lock);
1614 spin_lock(&dentry->d_lock);
1615 if (atomic_read(&dentry->d_count) > 1) {
1616 spin_unlock(&dentry->d_lock);
1617 spin_unlock(&dcache_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001618 /* Start asynchronous writeout of the inode */
1619 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return error;
1622 }
1623 if (!d_unhashed(dentry)) {
1624 __d_drop(dentry);
1625 need_rehash = 1;
1626 }
1627 spin_unlock(&dentry->d_lock);
1628 spin_unlock(&dcache_lock);
1629 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001630 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1632 } else if (need_rehash)
1633 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return error;
1635}
1636
Chuck Lever873101b2006-08-22 20:06:23 -04001637/*
1638 * To create a symbolic link, most file systems instantiate a new inode,
1639 * add a page to it containing the path, then write it out to the disk
1640 * using prepare_write/commit_write.
1641 *
1642 * Unfortunately the NFS client can't create the in-core inode first
1643 * because it needs a file handle to create an in-core inode (see
1644 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1645 * symlink request has completed on the server.
1646 *
1647 * So instead we allocate a raw page, copy the symname into it, then do
1648 * the SYMLINK request with the page as the buffer. If it succeeds, we
1649 * now have a new file handle and can instantiate an in-core NFS inode
1650 * and move the raw page into its mapping.
1651 */
1652static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Chuck Lever873101b2006-08-22 20:06:23 -04001654 struct pagevec lru_pvec;
1655 struct page *page;
1656 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001658 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 int error;
1660
1661 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1662 dir->i_ino, dentry->d_name.name, symname);
1663
Chuck Lever873101b2006-08-22 20:06:23 -04001664 if (pathlen > PAGE_SIZE)
1665 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Chuck Lever873101b2006-08-22 20:06:23 -04001667 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1668 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Jeff Layton83d93f22007-06-07 09:58:08 -04001670 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001671 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001672 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001673
1674 kaddr = kmap_atomic(page, KM_USER0);
1675 memcpy(kaddr, symname, pathlen);
1676 if (pathlen < PAGE_SIZE)
1677 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1678 kunmap_atomic(kaddr, KM_USER0);
1679
Chuck Lever94a6d752006-08-22 20:06:23 -04001680 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001681 if (error != 0) {
1682 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1683 dir->i_sb->s_id, dir->i_ino,
1684 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001686 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001687 return error;
1688 }
1689
1690 /*
1691 * No big deal if we can't add this page to the page cache here.
1692 * READLINK will get the missing page from the server if needed.
1693 */
1694 pagevec_init(&lru_pvec, 0);
1695 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1696 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001697 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001698 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001699 SetPageUptodate(page);
1700 unlock_page(page);
1701 } else
1702 __free_page(page);
1703
Chuck Lever873101b2006-08-22 20:06:23 -04001704 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707static int
1708nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1709{
1710 struct inode *inode = old_dentry->d_inode;
1711 int error;
1712
1713 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1714 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1715 dentry->d_parent->d_name.name, dentry->d_name.name);
1716
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001717 nfs_inode_return_delegation(inode);
1718
Trond Myklebust9697d232007-10-02 21:58:05 -04001719 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001721 if (error == 0) {
1722 atomic_inc(&inode->i_count);
Trond Myklebust9697d232007-10-02 21:58:05 -04001723 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return error;
1726}
1727
1728/*
1729 * RENAME
1730 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1731 * different file handle for the same inode after a rename (e.g. when
1732 * moving to a different directory). A fail-safe method to do so would
1733 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1734 * rename the old file using the sillyrename stuff. This way, the original
1735 * file in old_dir will go away when the last process iput()s the inode.
1736 *
1737 * FIXED.
1738 *
1739 * It actually works quite well. One needs to have the possibility for
1740 * at least one ".nfs..." file in each directory the file ever gets
1741 * moved or linked to which happens automagically with the new
1742 * implementation that only depends on the dcache stuff instead of
1743 * using the inode layer
1744 *
1745 * Unfortunately, things are a little more complicated than indicated
1746 * above. For a cross-directory move, we want to make sure we can get
1747 * rid of the old inode after the operation. This means there must be
1748 * no pending writes (if it's a file), and the use count must be 1.
1749 * If these conditions are met, we can drop the dentries before doing
1750 * the rename.
1751 */
1752static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1753 struct inode *new_dir, struct dentry *new_dentry)
1754{
1755 struct inode *old_inode = old_dentry->d_inode;
1756 struct inode *new_inode = new_dentry->d_inode;
1757 struct dentry *dentry = NULL, *rehash = NULL;
1758 int error = -EBUSY;
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1761 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1762 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1763 atomic_read(&new_dentry->d_count));
1764
1765 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001766 * For non-directories, check whether the target is busy and if so,
1767 * make a copy of the dentry and then do a silly-rename. If the
1768 * silly-rename succeeds, the copied dentry is hashed and becomes
1769 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001771 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1772 /*
1773 * To prevent any new references to the target during the
1774 * rename, we unhash the dentry in advance.
1775 */
1776 if (!d_unhashed(new_dentry)) {
1777 d_drop(new_dentry);
1778 rehash = new_dentry;
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Miklos Szeredi27226102009-12-03 15:58:56 -05001781 if (atomic_read(&new_dentry->d_count) > 2) {
1782 int err;
1783
1784 /* copy the target dentry's name */
1785 dentry = d_alloc(new_dentry->d_parent,
1786 &new_dentry->d_name);
1787 if (!dentry)
1788 goto out;
1789
1790 /* silly-rename the existing target ... */
1791 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001792 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001793 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001794
1795 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001796 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001797 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001798 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Trond Myklebustcae7a072005-10-18 14:20:19 -07001801 nfs_inode_return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001802 if (new_inode != NULL)
Trond Myklebust24174112006-01-03 09:55:33 +01001803 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1806 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001807 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808out:
1809 if (rehash)
1810 d_rehash(rehash);
1811 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001812 if (new_inode != NULL)
1813 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001814 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001815 nfs_set_verifier(new_dentry,
1816 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001817 } else if (error == -ENOENT)
1818 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 /* new dentry created? */
1821 if (dentry)
1822 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return error;
1824}
1825
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001826static DEFINE_SPINLOCK(nfs_access_lru_lock);
1827static LIST_HEAD(nfs_access_lru_list);
1828static atomic_long_t nfs_access_nr_entries;
1829
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001830static void nfs_access_free_entry(struct nfs_access_entry *entry)
1831{
1832 put_rpccred(entry->cred);
1833 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001834 smp_mb__before_atomic_dec();
1835 atomic_long_dec(&nfs_access_nr_entries);
1836 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001837}
1838
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001839static void nfs_access_free_list(struct list_head *head)
1840{
1841 struct nfs_access_entry *cache;
1842
1843 while (!list_empty(head)) {
1844 cache = list_entry(head->next, struct nfs_access_entry, lru);
1845 list_del(&cache->lru);
1846 nfs_access_free_entry(cache);
1847 }
1848}
1849
Dave Chinner7f8275d2010-07-19 14:56:17 +10001850int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Trond Myklebust979df722006-07-25 11:28:19 -04001851{
1852 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001853 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001854 struct nfs_access_entry *cache;
1855
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001856 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1857 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001858
Trond Myklebusta50f7952007-06-05 19:23:43 -04001859 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001860 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001861 struct inode *inode;
1862
1863 if (nr_to_scan-- == 0)
1864 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001865 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001866 spin_lock(&inode->i_lock);
1867 if (list_empty(&nfsi->access_cache_entry_lru))
1868 goto remove_lru_entry;
1869 cache = list_entry(nfsi->access_cache_entry_lru.next,
1870 struct nfs_access_entry, lru);
1871 list_move(&cache->lru, &head);
1872 rb_erase(&cache->rb_node, &nfsi->access_cache);
1873 if (!list_empty(&nfsi->access_cache_entry_lru))
1874 list_move_tail(&nfsi->access_cache_inode_lru,
1875 &nfs_access_lru_list);
1876 else {
1877remove_lru_entry:
1878 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001879 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001880 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001881 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001882 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001883 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001884 }
1885 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001886 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001887 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1888}
1889
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001890static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001891{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001892 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001893 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001894 struct nfs_access_entry *entry;
1895
1896 /* Unhook entries from the cache */
1897 while ((n = rb_first(root_node)) != NULL) {
1898 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1899 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001900 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001901 }
1902 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001903}
1904
1905void nfs_access_zap_cache(struct inode *inode)
1906{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001907 LIST_HEAD(head);
1908
1909 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1910 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001911 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001912 spin_lock(&nfs_access_lru_lock);
1913 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001914 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001915
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001916 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001917 __nfs_access_zap_cache(NFS_I(inode), &head);
1918 spin_unlock(&inode->i_lock);
1919 spin_unlock(&nfs_access_lru_lock);
1920 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001921}
1922
1923static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
1924{
1925 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
1926 struct nfs_access_entry *entry;
1927
1928 while (n != NULL) {
1929 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1930
1931 if (cred < entry->cred)
1932 n = n->rb_left;
1933 else if (cred > entry->cred)
1934 n = n->rb_right;
1935 else
1936 return entry;
1937 }
1938 return NULL;
1939}
1940
Trond Myklebustaf22f942007-08-10 17:45:10 -04001941static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Chuck Lever55296802005-08-18 11:24:09 -07001943 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001944 struct nfs_access_entry *cache;
1945 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001947 spin_lock(&inode->i_lock);
1948 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
1949 goto out_zap;
1950 cache = nfs_access_search_rbtree(inode, cred);
1951 if (cache == NULL)
1952 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05001953 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05001954 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001955 goto out_stale;
1956 res->jiffies = cache->jiffies;
1957 res->cred = cache->cred;
1958 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001959 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001960 err = 0;
1961out:
1962 spin_unlock(&inode->i_lock);
1963 return err;
1964out_stale:
1965 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001966 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001967 spin_unlock(&inode->i_lock);
1968 nfs_access_free_entry(cache);
1969 return -ENOENT;
1970out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001971 spin_unlock(&inode->i_lock);
1972 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001973 return -ENOENT;
1974}
1975
1976static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
1977{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001978 struct nfs_inode *nfsi = NFS_I(inode);
1979 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001980 struct rb_node **p = &root_node->rb_node;
1981 struct rb_node *parent = NULL;
1982 struct nfs_access_entry *entry;
1983
1984 spin_lock(&inode->i_lock);
1985 while (*p != NULL) {
1986 parent = *p;
1987 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
1988
1989 if (set->cred < entry->cred)
1990 p = &parent->rb_left;
1991 else if (set->cred > entry->cred)
1992 p = &parent->rb_right;
1993 else
1994 goto found;
1995 }
1996 rb_link_node(&set->rb_node, parent, p);
1997 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001998 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001999 spin_unlock(&inode->i_lock);
2000 return;
2001found:
2002 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002003 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2004 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002005 spin_unlock(&inode->i_lock);
2006 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Trond Myklebustaf22f942007-08-10 17:45:10 -04002009static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002011 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2012 if (cache == NULL)
2013 return;
2014 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002016 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002018
2019 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002020
2021 /* Update accounting */
2022 smp_mb__before_atomic_inc();
2023 atomic_long_inc(&nfs_access_nr_entries);
2024 smp_mb__after_atomic_inc();
2025
2026 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002027 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002028 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002029 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2030 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2031 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002032 spin_unlock(&nfs_access_lru_lock);
2033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
2036static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2037{
2038 struct nfs_access_entry cache;
2039 int status;
2040
2041 status = nfs_access_get_cached(inode, cred, &cache);
2042 if (status == 0)
2043 goto out;
2044
2045 /* Be clever: ask server to check for all possible rights */
2046 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2047 cache.cred = cred;
2048 cache.jiffies = jiffies;
2049 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002050 if (status != 0) {
2051 if (status == -ESTALE) {
2052 nfs_zap_caches(inode);
2053 if (!S_ISDIR(inode->i_mode))
2054 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 nfs_access_add_cache(inode, &cache);
2059out:
Al Viroe6305c42008-07-15 21:03:57 -04002060 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return 0;
2062 return -EACCES;
2063}
2064
Trond Myklebustaf22f942007-08-10 17:45:10 -04002065static int nfs_open_permission_mask(int openflags)
2066{
2067 int mask = 0;
2068
2069 if (openflags & FMODE_READ)
2070 mask |= MAY_READ;
2071 if (openflags & FMODE_WRITE)
2072 mask |= MAY_WRITE;
2073 if (openflags & FMODE_EXEC)
2074 mask |= MAY_EXEC;
2075 return mask;
2076}
2077
2078int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2079{
2080 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2081}
2082
Al Viroe6305c42008-07-15 21:03:57 -04002083int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 struct rpc_cred *cred;
2086 int res = 0;
2087
Chuck Lever91d5b472006-03-20 13:44:14 -05002088 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2089
Al Viroe6305c42008-07-15 21:03:57 -04002090 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto out;
2092 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002093 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 goto force_lookup;
2095
2096 switch (inode->i_mode & S_IFMT) {
2097 case S_IFLNK:
2098 goto out;
2099 case S_IFREG:
2100 /* NFSv4 has atomic_open... */
2101 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002102 && (mask & MAY_OPEN)
2103 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 goto out;
2105 break;
2106 case S_IFDIR:
2107 /*
2108 * Optimize away all write operations, since the server
2109 * will check permissions when we perform the op.
2110 */
2111 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2112 goto out;
2113 }
2114
2115force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (!NFS_PROTO(inode)->access)
2117 goto out_notsup;
2118
Trond Myklebust98a8e322008-03-12 12:25:28 -04002119 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (!IS_ERR(cred)) {
2121 res = nfs_do_access(inode, cred, mask);
2122 put_rpccred(cred);
2123 } else
2124 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002126 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2127 res = -EACCES;
2128
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002129 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2130 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return res;
2132out_notsup:
2133 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2134 if (res == 0)
2135 res = generic_permission(inode, mask, NULL);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002136 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
2139/*
2140 * Local variables:
2141 * version-control: t
2142 * kept-new-versions: 5
2143 * End:
2144 */