blob: 0cbb714a09d8da13bb010765241158ccca3e42e8 [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>
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -040036#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050039#include "iostat.h"
Adrian Bunk4c30d562007-11-21 15:04:31 -080040#include "internal.h"
Trond Myklebustcd9a1c02010-09-17 10:56:50 -040041#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* #define NFS_DEBUG_VERBOSE 1 */
44
45static int nfs_opendir(struct inode *, struct file *);
46static int nfs_readdir(struct file *, void *, filldir_t);
47static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
48static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
49static int nfs_mkdir(struct inode *, struct dentry *, int);
50static int nfs_rmdir(struct inode *, struct dentry *);
51static int nfs_unlink(struct inode *, struct dentry *);
52static int nfs_symlink(struct inode *, struct dentry *, const char *);
53static int nfs_link(struct dentry *, struct inode *, struct dentry *);
54static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
55static int nfs_rename(struct inode *, struct dentry *,
56 struct inode *, struct dentry *);
Christoph Hellwig7ea80852010-05-26 17:53:25 +020057static int nfs_fsync_dir(struct file *, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000058static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040059static int nfs_readdir_clear_array(struct page*, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080061const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000062 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .read = generic_read_dir,
64 .readdir = nfs_readdir,
65 .open = nfs_opendir,
66 .release = nfs_release,
67 .fsync = nfs_fsync_dir,
68};
69
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080070const struct inode_operations nfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 .create = nfs_create,
72 .lookup = nfs_lookup,
73 .link = nfs_link,
74 .unlink = nfs_unlink,
75 .symlink = nfs_symlink,
76 .mkdir = nfs_mkdir,
77 .rmdir = nfs_rmdir,
78 .mknod = nfs_mknod,
79 .rename = nfs_rename,
80 .permission = nfs_permission,
81 .getattr = nfs_getattr,
82 .setattr = nfs_setattr,
83};
84
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040085const struct address_space_operations nfs_dir_addr_space_ops = {
86 .releasepage = nfs_readdir_clear_array,
87};
88
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000089#ifdef CONFIG_NFS_V3
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080090const struct inode_operations nfs3_dir_inode_operations = {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000091 .create = nfs_create,
92 .lookup = nfs_lookup,
93 .link = nfs_link,
94 .unlink = nfs_unlink,
95 .symlink = nfs_symlink,
96 .mkdir = nfs_mkdir,
97 .rmdir = nfs_rmdir,
98 .mknod = nfs_mknod,
99 .rename = nfs_rename,
100 .permission = nfs_permission,
101 .getattr = nfs_getattr,
102 .setattr = nfs_setattr,
103 .listxattr = nfs3_listxattr,
104 .getxattr = nfs3_getxattr,
105 .setxattr = nfs3_setxattr,
106 .removexattr = nfs3_removexattr,
107};
108#endif /* CONFIG_NFS_V3 */
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#ifdef CONFIG_NFS_V4
111
112static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400113static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd);
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800114const struct inode_operations nfs4_dir_inode_operations = {
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400115 .create = nfs_open_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .lookup = nfs_atomic_lookup,
117 .link = nfs_link,
118 .unlink = nfs_unlink,
119 .symlink = nfs_symlink,
120 .mkdir = nfs_mkdir,
121 .rmdir = nfs_rmdir,
122 .mknod = nfs_mknod,
123 .rename = nfs_rename,
124 .permission = nfs_permission,
125 .getattr = nfs_getattr,
126 .setattr = nfs_setattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +0000127 .getxattr = nfs4_getxattr,
128 .setxattr = nfs4_setxattr,
129 .listxattr = nfs4_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132#endif /* CONFIG_NFS_V4 */
133
134/*
135 * Open file
136 */
137static int
138nfs_opendir(struct inode *inode, struct file *filp)
139{
Carsten Otte7451c4f2006-04-19 13:06:37 -0400140 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Chuck Lever6da24bc2008-06-11 17:55:58 -0400142 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400143 filp->f_path.dentry->d_parent->d_name.name,
144 filp->f_path.dentry->d_name.name);
145
146 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* Call generic open code in order to cache credentials */
Carsten Otte7451c4f2006-04-19 13:06:37 -0400149 res = nfs_open(inode, filp);
Neil Brownf5a73672010-08-10 10:20:05 -0400150 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
151 /* This is a mountpoint, so d_revalidate will never
152 * have been called, so we need to refresh the
153 * inode (for close-open consistency) ourselves.
154 */
155 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return res;
158}
159
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400160struct nfs_cache_array_entry {
161 u64 cookie;
162 u64 ino;
163 struct qstr string;
164};
165
166struct nfs_cache_array {
167 unsigned int size;
168 int eof_index;
169 u64 last_cookie;
170 struct nfs_cache_array_entry array[0];
171};
172
173#define MAX_READDIR_ARRAY ((PAGE_SIZE - sizeof(struct nfs_cache_array)) / sizeof(struct nfs_cache_array_entry))
174
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400175typedef __be32 * (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176typedef struct {
177 struct file *file;
178 struct page *page;
179 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000180 u64 *dir_cookie;
181 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400183
Neil Brown1f4eab72007-04-16 09:35:27 +1000184 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400185 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400186 unsigned int cache_entry_index;
187 unsigned int plus:1;
188 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189} nfs_readdir_descriptor_t;
190
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400191/*
192 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
194static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400195struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400197 if (page == NULL)
198 return ERR_PTR(-EIO);
199 return (struct nfs_cache_array *)kmap(page);
200}
201
202static
203void nfs_readdir_release_array(struct page *page)
204{
205 kunmap(page);
206}
207
208/*
209 * we are freeing strings created by nfs_add_to_readdir_array()
210 */
211static
212int nfs_readdir_clear_array(struct page *page, gfp_t mask)
213{
214 struct nfs_cache_array *array = nfs_readdir_get_array(page);
215 int i;
216 for (i = 0; i < array->size; i++)
217 kfree(array->array[i].string.name);
218 nfs_readdir_release_array(page);
219 return 0;
220}
221
222/*
223 * the caller is responsible for freeing qstr.name
224 * when called by nfs_readdir_add_to_array, the strings will be freed in
225 * nfs_clear_readdir_array()
226 */
227static
228void nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
229{
230 string->len = len;
231 string->name = kmemdup(name, len, GFP_KERNEL);
232 string->hash = full_name_hash(string->name, string->len);
233}
234
235static
236int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
237{
238 struct nfs_cache_array *array = nfs_readdir_get_array(page);
239 if (IS_ERR(array))
240 return PTR_ERR(array);
241 if (array->size >= MAX_READDIR_ARRAY) {
242 nfs_readdir_release_array(page);
243 return -EIO;
244 }
245
246 array->array[array->size].cookie = entry->prev_cookie;
247 array->last_cookie = entry->cookie;
248 array->array[array->size].ino = entry->ino;
249 nfs_readdir_make_qstr(&array->array[array->size].string, entry->name, entry->len);
250 if (entry->eof == 1)
251 array->eof_index = array->size;
252 array->size++;
253 nfs_readdir_release_array(page);
254 return 0;
255}
256
257static
258int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
259{
260 loff_t diff = desc->file->f_pos - desc->current_index;
261 unsigned int index;
262
263 if (diff < 0)
264 goto out_eof;
265 if (diff >= array->size) {
266 if (array->eof_index > 0)
267 goto out_eof;
268 desc->current_index += array->size;
269 return -EAGAIN;
270 }
271
272 index = (unsigned int)diff;
273 *desc->dir_cookie = array->array[index].cookie;
274 desc->cache_entry_index = index;
275 if (index == array->eof_index)
276 desc->eof = 1;
277 return 0;
278out_eof:
279 desc->eof = 1;
280 return -EBADCOOKIE;
281}
282
283static
284int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
285{
286 int i;
287 int status = -EAGAIN;
288
289 for (i = 0; i < array->size; i++) {
290 if (i == array->eof_index) {
291 desc->eof = 1;
292 status = -EBADCOOKIE;
293 }
294 if (array->array[i].cookie == *desc->dir_cookie) {
295 desc->cache_entry_index = i;
296 status = 0;
297 break;
298 }
299 }
300
301 return status;
302}
303
304static
305int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
306{
307 struct nfs_cache_array *array;
308 int status = -EBADCOOKIE;
309
310 if (desc->dir_cookie == NULL)
311 goto out;
312
313 array = nfs_readdir_get_array(desc->page);
314 if (IS_ERR(array)) {
315 status = PTR_ERR(array);
316 goto out;
317 }
318
319 if (*desc->dir_cookie == 0)
320 status = nfs_readdir_search_for_pos(array, desc);
321 else
322 status = nfs_readdir_search_for_cookie(array, desc);
323
324 nfs_readdir_release_array(desc->page);
325out:
326 return status;
327}
328
329/* Fill a page with xdr information before transferring to the cache page */
330static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400331int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400332 struct nfs_entry *entry, struct file *file, struct inode *inode)
333{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct rpc_cred *cred = nfs_file_cred(file);
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400335 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int error;
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 again:
339 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400340 gencount = nfs_inc_attr_generation_counter();
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400341 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 NFS_SERVER(inode)->dtsize, desc->plus);
343 if (error < 0) {
344 /* We requested READDIRPLUS, but the server doesn't grok it */
345 if (error == -ENOTSUPP && desc->plus) {
346 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200347 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 desc->plus = 0;
349 goto again;
350 }
351 goto error;
352 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000353 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400354 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400355error:
356 return error;
357}
358
359/* Fill in an entry based on the xdr code stored in desc->page */
360static
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400361int xdr_decode(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, struct xdr_stream *stream)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400362{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400363 __be32 *p = desc->decode(stream, entry, desc->plus);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400364 if (IS_ERR(p))
365 return PTR_ERR(p);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400366
367 entry->fattr->time_start = desc->timestamp;
368 entry->fattr->gencount = desc->gencount;
369 return 0;
370}
371
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400372static
373int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
374{
375 struct nfs_inode *node;
376 if (dentry->d_inode == NULL)
377 goto different;
378 node = NFS_I(dentry->d_inode);
379 if (node->fh.size != entry->fh->size)
380 goto different;
381 if (strncmp(node->fh.data, entry->fh->data, node->fh.size) != 0)
382 goto different;
383 return 1;
384different:
385 return 0;
386}
387
388static
389void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
390{
391 struct qstr filename;
392 struct dentry *dentry = NULL;
393 struct dentry *alias = NULL;
394 struct inode *dir = parent->d_inode;
395 struct inode *inode;
396
397 nfs_readdir_make_qstr(&filename, entry->name, entry->len);
398 if (filename.len == 1 && filename.name[0] == '.')
399 dentry = dget(parent);
400 else if (filename.len == 2 && filename.name[0] == '.'
401 && filename.name[1] == '.')
402 dentry = dget_parent(parent);
403 else
404 dentry = d_lookup(parent, &filename);
405
406 if (dentry != NULL) {
407 if (nfs_same_file(dentry, entry)) {
408 nfs_refresh_inode(dentry->d_inode, entry->fattr);
409 goto out;
410 } else {
411 d_drop(dentry);
412 dput(dentry);
413 }
414 }
415
416 dentry = d_alloc(parent, &filename);
417 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
418 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
419 if (IS_ERR(inode))
420 goto out;
421
422 alias = d_materialise_unique(dentry, inode);
423 if (IS_ERR(alias))
424 goto out;
425 else if (alias) {
426 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
427 dput(alias);
428 } else
429 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
430
431out:
432 dput(dentry);
433 kfree(filename.name);
434 return;
435}
436
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400437/* Perform conversion from xdr to cache array */
438static
439void nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400440 void *xdr_page, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400441{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400442 struct xdr_stream stream;
443 struct xdr_buf buf;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400444 __be32 *ptr = xdr_page;
Bryan Schumaker99424382010-10-21 16:33:16 -0400445 int status;
446 struct nfs_cache_array *array;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400447
448 buf.head->iov_base = xdr_page;
449 buf.head->iov_len = buflen;
450 buf.tail->iov_len = 0;
451 buf.page_base = 0;
452 buf.page_len = 0;
453 buf.buflen = buf.head->iov_len;
454 buf.len = buf.head->iov_len;
455
456 xdr_init_decode(&stream, &buf, ptr);
457
Bryan Schumaker99424382010-10-21 16:33:16 -0400458
459 do {
460 status = xdr_decode(desc, entry, &stream);
461 if (status != 0)
462 break;
463
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400464 if (nfs_readdir_add_to_array(entry, page) == -1)
465 break;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400466 if (desc->plus == 1)
467 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Bryan Schumaker99424382010-10-21 16:33:16 -0400468 } while (!entry->eof);
469
470 if (status == -EBADCOOKIE && entry->eof) {
471 array = nfs_readdir_get_array(page);
472 array->eof_index = array->size - 1;
473 status = 0;
474 nfs_readdir_release_array(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400475 }
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400476}
477
478static
479void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
480{
481 unsigned int i;
482 for (i = 0; i < npages; i++)
483 put_page(pages[i]);
484}
485
486static
487void nfs_readdir_free_large_page(void *ptr, struct page **pages,
488 unsigned int npages)
489{
490 vm_unmap_ram(ptr, npages);
491 nfs_readdir_free_pagearray(pages, npages);
492}
493
494/*
495 * nfs_readdir_large_page will allocate pages that must be freed with a call
496 * to nfs_readdir_free_large_page
497 */
498static
499void *nfs_readdir_large_page(struct page **pages, unsigned int npages)
500{
501 void *ptr;
502 unsigned int i;
503
504 for (i = 0; i < npages; i++) {
505 struct page *page = alloc_page(GFP_KERNEL);
506 if (page == NULL)
507 goto out_freepages;
508 pages[i] = page;
509 }
510
511 ptr = vm_map_ram(pages, NFS_MAX_READDIR_PAGES, 0, PAGE_KERNEL);
512 if (!IS_ERR_OR_NULL(ptr))
513 return ptr;
514out_freepages:
515 nfs_readdir_free_pagearray(pages, i);
516 return NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400517}
518
519static
520int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
521{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400522 struct page *pages[NFS_MAX_READDIR_PAGES];
523 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400524 struct nfs_entry entry;
525 struct file *file = desc->file;
526 struct nfs_cache_array *array;
527 int status = 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400528 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400529
530 entry.prev_cookie = 0;
531 entry.cookie = *desc->dir_cookie;
532 entry.eof = 0;
533 entry.fh = nfs_alloc_fhandle();
534 entry.fattr = nfs_alloc_fattr();
535 if (entry.fh == NULL || entry.fattr == NULL)
536 goto out;
537
538 array = nfs_readdir_get_array(page);
539 memset(array, 0, sizeof(struct nfs_cache_array));
540 array->eof_index = -1;
541
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400542 pages_ptr = nfs_readdir_large_page(pages, array_size);
543 if (!pages_ptr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400544 goto out_release_array;
545 do {
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400546 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400547
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400548 if (status < 0)
549 break;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400550 nfs_readdir_page_filler(desc, &entry, pages_ptr, page, array_size * PAGE_SIZE);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400551 } while (array->eof_index < 0 && array->size < MAX_READDIR_ARRAY);
552
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400553 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400554out_release_array:
555 nfs_readdir_release_array(page);
556out:
557 nfs_free_fattr(entry.fattr);
558 nfs_free_fhandle(entry.fh);
559 return status;
560}
561
562/*
563 * Now we cache directories properly, by converting xdr information
564 * to an array that can be used for lookups later. This results in
565 * fewer cache pages, since we can store more information on each page.
566 * We only need to convert from xdr once so future lookups are much simpler
567 */
568static
569int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
570{
571 struct inode *inode = desc->file->f_path.dentry->d_inode;
572
Bryan Schumaker3c8a1ae2010-10-21 16:33:16 -0400573 if (nfs_readdir_xdr_to_array(desc, page, inode) < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400574 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400576
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400577 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700578 /* Should never happen */
579 nfs_zap_mapping(inode, inode->i_mapping);
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 unlock_page(page);
582 return 0;
583 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return -EIO;
586}
587
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400588static
589void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 page_cache_release(desc->page);
592 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400595static
596struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400598 struct page *page;
599 page = read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
600 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
601 if (IS_ERR(page))
602 desc->eof = 1;
603 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400607 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000608 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400609static
610int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000611{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400612 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000613
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400614 desc->page = get_cache_page(desc);
615 if (IS_ERR(desc->page))
616 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000617
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400618 res = nfs_readdir_search_array(desc);
619 if (res == 0)
620 return 0;
621 cache_page_release(desc);
622 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000623}
624
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400625/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626static inline
627int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
628{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400629 int res = -EAGAIN;
Olivier Galibert00a92642005-06-22 17:16:29 +0000630
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400631 while (1) {
632 res = find_cache_page(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (res != -EAGAIN)
634 break;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400635 desc->page_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return res;
638}
639
640static inline unsigned int dt_type(struct inode *inode)
641{
642 return (inode->i_mode >> 12) & 15;
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645/*
646 * Once we've found the start of the dirent within a page: fill 'er up...
647 */
648static
649int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
650 filldir_t filldir)
651{
652 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400653 int i = 0;
654 int res = 0;
655 struct nfs_cache_array *array = NULL;
656 unsigned int d_type = DT_UNKNOWN;
657 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400659 array = nfs_readdir_get_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400661 for (i = desc->cache_entry_index; i < array->size; i++) {
662 d_type = DT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400664 res = filldir(dirent, array->array[i].string.name,
665 array->array[i].string.len, file->f_pos,
666 nfs_compat_user_ino64(array->array[i].ino), d_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (res < 0)
668 break;
Olivier Galibert00a92642005-06-22 17:16:29 +0000669 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400670 desc->cache_entry_index = i;
671 if (i < (array->size-1))
672 *desc->dir_cookie = array->array[i+1].cookie;
673 else
674 *desc->dir_cookie = array->last_cookie;
675 if (i == array->eof_index) {
676 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400680
681 nfs_readdir_release_array(desc->page);
682 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (dentry != NULL)
684 dput(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500685 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
686 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return res;
688}
689
690/*
691 * If we cannot find a cookie in our cache, we suspect that this is
692 * because it points to a deleted file, so we ask the server to return
693 * whatever it thinks is the next entry. We then feed this to filldir.
694 * If all goes well, we should then be able to find our way round the
695 * cache on the next call to readdir_search_pagecache();
696 *
697 * NOTE: we cannot add the anonymous page to the pagecache because
698 * the data it contains might not be page aligned. Besides,
699 * we should already have a complete representation of the
700 * directory in the page cache by the time we get here.
701 */
702static inline
703int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
704 filldir_t filldir)
705{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct page *page = NULL;
707 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400708 struct inode *inode = desc->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500710 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
711 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 page = alloc_page(GFP_HIGHUSER);
714 if (!page) {
715 status = -ENOMEM;
716 goto out;
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400719 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) {
720 status = -EIO;
721 goto out_release;
722 }
723
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400724 desc->page_index = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400725 desc->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 status = nfs_do_filldir(desc, dirent, filldir);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500729 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700730 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return status;
732 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400733 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto out;
735}
736
Olivier Galibert00a92642005-06-22 17:16:29 +0000737/* The file offset position represents the dirent entry number. A
738 last cookie cache takes care of the common case of reading the
739 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
741static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
742{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800743 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct inode *inode = dentry->d_inode;
745 nfs_readdir_descriptor_t my_desc,
746 *desc = &my_desc;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400747 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Chuck Lever6da24bc2008-06-11 17:55:58 -0400749 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500750 dentry->d_parent->d_name.name, dentry->d_name.name,
751 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500752 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000755 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000756 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000757 * to either find the entry with the appropriate number or
758 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
760 memset(desc, 0, sizeof(*desc));
761
762 desc->file = filp;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400763 desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 desc->decode = NFS_PROTO(inode)->decode_dirent;
765 desc->plus = NFS_USE_READDIRPLUS(inode);
766
Trond Myklebust565277f2007-10-15 18:17:53 -0400767 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800768 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500769 if (res < 0)
770 goto out;
771
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400772 while (desc->eof != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (res == -EBADCOOKIE) {
776 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400777 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Or that the server has 'lost' a cookie */
779 res = uncached_readdir(desc, dirent, filldir);
780 if (res >= 0)
781 continue;
782 }
783 res = 0;
784 break;
785 }
786 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200787 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400789 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400791 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 continue;
793 }
794 if (res < 0)
795 break;
796
797 res = nfs_do_filldir(desc, dirent, filldir);
798 if (res < 0) {
799 res = 0;
800 break;
801 }
802 }
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500803out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400804 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500805 if (res > 0)
806 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400807 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500808 dentry->d_parent->d_name.name, dentry->d_name.name,
809 res);
810 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Trond Myklebust10afec92007-05-14 17:16:04 -0400813static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000814{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400815 struct dentry *dentry = filp->f_path.dentry;
816 struct inode *inode = dentry->d_inode;
817
Chuck Lever6da24bc2008-06-11 17:55:58 -0400818 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400819 dentry->d_parent->d_name.name,
820 dentry->d_name.name,
821 offset, origin);
822
823 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000824 switch (origin) {
825 case 1:
826 offset += filp->f_pos;
827 case 0:
828 if (offset >= 0)
829 break;
830 default:
831 offset = -EINVAL;
832 goto out;
833 }
834 if (offset != filp->f_pos) {
835 filp->f_pos = offset;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400836 nfs_file_open_context(filp)->dir_cookie = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000837 }
838out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400839 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000840 return offset;
841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843/*
844 * All directory operations under NFS are synchronous, so fsync()
845 * is a dummy operation.
846 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200847static int nfs_fsync_dir(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200849 struct dentry *dentry = filp->f_path.dentry;
850
Chuck Lever6da24bc2008-06-11 17:55:58 -0400851 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500852 dentry->d_parent->d_name.name, dentry->d_name.name,
853 datasync);
854
Chuck Lever54917782008-05-27 16:29:07 -0400855 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return 0;
857}
858
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400859/**
860 * nfs_force_lookup_revalidate - Mark the directory as having changed
861 * @dir - pointer to directory inode
862 *
863 * This forces the revalidation code in nfs_lookup_revalidate() to do a
864 * full lookup on all child dentries of 'dir' whenever a change occurs
865 * on the server that might have invalidated our dcache.
866 *
867 * The caller should be holding dir->i_lock
868 */
869void nfs_force_lookup_revalidate(struct inode *dir)
870{
Trond Myklebust011935a2008-10-14 19:24:50 -0400871 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/*
875 * A check for whether or not the parent directory has changed.
876 * In the case it has, we assume that the dentries are untrustworthy
877 * and may need to be looked up again.
878 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500879static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 if (IS_ROOT(dentry))
882 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400883 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
884 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400885 if (!nfs_verify_change_attribute(dir, dentry->d_time))
886 return 0;
887 /* Revalidate nfsi->cache_change_attribute before we declare a match */
888 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
889 return 0;
890 if (!nfs_verify_change_attribute(dir, dentry->d_time))
891 return 0;
892 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400896 * Return the intent data that applies to this particular path component
897 *
898 * Note that the current set of intents only apply to the very last
899 * component of the path.
900 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
901 */
902static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
903{
904 if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
905 return 0;
906 return nd->flags & mask;
907}
908
909/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400910 * Use intent information to check whether or not we're going to do
911 * an O_EXCL create using this path component.
912 */
913static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
914{
915 if (NFS_PROTO(dir)->version == 2)
916 return 0;
Al Viro35165862008-08-05 03:00:49 -0400917 return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
Trond Myklebusta12802c2007-10-02 19:13:04 -0400918}
919
920/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400921 * Inode and filehandle revalidation for lookups.
922 *
923 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
924 * or if the intent information indicates that we're about to open this
925 * particular file and the "nocto" mount flag is not set.
926 *
927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928static inline
929int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
930{
931 struct nfs_server *server = NFS_SERVER(inode);
932
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500933 if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400937 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto out_force;
939 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400940 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400941 !(server->flags & NFS_MOUNT_NOCTO) &&
942 (S_ISREG(inode->i_mode) ||
943 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 goto out_force;
Trond Myklebust4f48af42007-10-02 23:13:32 -0400945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 return nfs_revalidate_inode(server, inode);
948out_force:
949 return __nfs_revalidate_inode(server, inode);
950}
951
952/*
953 * We judge how long we want to trust negative
954 * dentries by looking at the parent inode mtime.
955 *
956 * If parent mtime has changed, we revalidate, else we wait for a
957 * period corresponding to the parent's attribute cache timeout value.
958 */
959static inline
960int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
961 struct nameidata *nd)
962{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400964 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400966 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
967 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return !nfs_check_verifier(dir, dentry);
969}
970
971/*
972 * This is called every time the dcache has a lookup hit,
973 * and we should check whether we can really trust that
974 * lookup.
975 *
976 * NOTE! The hit can be a negative hit too, don't assume
977 * we have an inode!
978 *
979 * If the parent directory is seen to have changed, we throw out the
980 * cached dentry and do a new lookup.
981 */
982static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
983{
984 struct inode *dir;
985 struct inode *inode;
986 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400987 struct nfs_fh *fhandle = NULL;
988 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -0500993 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 inode = dentry->d_inode;
995
996 if (!inode) {
997 if (nfs_neg_need_reval(dir, dentry, nd))
998 goto out_bad;
999 goto out_valid;
1000 }
1001
1002 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001003 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001004 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001005 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto out_bad;
1007 }
1008
Trond Myklebust15860ab2008-12-23 15:21:54 -05001009 if (nfs_have_delegation(inode, FMODE_READ))
1010 goto out_set_verifier;
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* Force a full look up iff the parent directory has changed */
Trond Myklebusta12802c2007-10-02 19:13:04 -04001013 if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (nfs_lookup_verify_inode(inode, nd))
1015 goto out_zap_parent;
1016 goto out_valid;
1017 }
1018
1019 if (NFS_STALE(inode))
1020 goto out_bad;
1021
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001022 error = -ENOMEM;
1023 fhandle = nfs_alloc_fhandle();
1024 fattr = nfs_alloc_fattr();
1025 if (fhandle == NULL || fattr == NULL)
1026 goto out_error;
1027
1028 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (error)
1030 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001031 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001033 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 goto out_bad;
1035
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001036 nfs_free_fattr(fattr);
1037 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001038out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001039 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 out_valid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001042 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001043 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001044 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 1;
1046out_zap_parent:
1047 nfs_zap_caches(dir);
1048 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -04001049 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (inode && S_ISDIR(inode->i_mode)) {
1051 /* Purge readdir caches. */
1052 nfs_zap_caches(inode);
1053 /* If we have submounts, don't unhash ! */
1054 if (have_submounts(dentry))
1055 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +01001056 if (dentry->d_flags & DCACHE_DISCONNECTED)
1057 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 shrink_dcache_parent(dentry);
1059 }
1060 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001061 nfs_free_fattr(fattr);
1062 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001064 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001065 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001066 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001068out_error:
1069 nfs_free_fattr(fattr);
1070 nfs_free_fhandle(fhandle);
1071 dput(parent);
1072 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1073 __func__, dentry->d_parent->d_name.name,
1074 dentry->d_name.name, error);
1075 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078/*
1079 * This is called from dput() when d_count is going to 0.
1080 */
1081static int nfs_dentry_delete(struct dentry *dentry)
1082{
1083 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1084 dentry->d_parent->d_name.name, dentry->d_name.name,
1085 dentry->d_flags);
1086
Trond Myklebust77f11192008-01-28 19:43:19 -05001087 /* Unhash any dentry with a stale inode */
1088 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1089 return 1;
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1092 /* Unhash it, so that ->d_iput() would be called */
1093 return 1;
1094 }
1095 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1096 /* Unhash it, so that ancestors of killed async unlink
1097 * files will be cleaned up during umount */
1098 return 1;
1099 }
1100 return 0;
1101
1102}
1103
Trond Myklebust1b83d702008-06-11 15:44:04 -04001104static void nfs_drop_nlink(struct inode *inode)
1105{
1106 spin_lock(&inode->i_lock);
1107 if (inode->i_nlink > 0)
1108 drop_nlink(inode);
1109 spin_unlock(&inode->i_lock);
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112/*
1113 * Called when the dentry loses inode.
1114 * We use it to clean up silly-renamed files.
1115 */
1116static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1117{
Neil Brown83672d32007-02-26 12:48:25 +11001118 if (S_ISDIR(inode->i_mode))
1119 /* drop any readdir cache as it could easily be old */
1120 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001123 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001124 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 iput(inode);
1127}
1128
Al Virof786aa92009-02-20 05:51:22 +00001129const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .d_revalidate = nfs_lookup_revalidate,
1131 .d_delete = nfs_dentry_delete,
1132 .d_iput = nfs_dentry_iput,
1133};
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
1136{
1137 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001138 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001140 struct nfs_fh *fhandle = NULL;
1141 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1145 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001146 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 res = ERR_PTR(-ENAMETOOLONG);
1149 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1150 goto out;
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1153
Trond Myklebustfd684072006-09-05 12:27:44 -04001154 /*
1155 * If we're doing an exclusive create, optimize away the lookup
1156 * but don't hash the dentry.
1157 */
1158 if (nfs_is_exclusive_create(dir, nd)) {
1159 d_instantiate(dentry, NULL);
1160 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001161 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001164 res = ERR_PTR(-ENOMEM);
1165 fhandle = nfs_alloc_fhandle();
1166 fattr = nfs_alloc_fattr();
1167 if (fhandle == NULL || fattr == NULL)
1168 goto out;
1169
Trond Myklebust565277f2007-10-15 18:17:53 -04001170 parent = dentry->d_parent;
1171 /* Protect against concurrent sillydeletes */
1172 nfs_block_sillyrename(parent);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001173 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (error == -ENOENT)
1175 goto no_entry;
1176 if (error < 0) {
1177 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001178 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001180 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001181 res = (struct dentry *)inode;
1182 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001183 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001186 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001187 if (res != NULL) {
1188 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001189 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001193out_unblock_sillyrename:
1194 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001196 nfs_free_fattr(fattr);
1197 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return res;
1199}
1200
1201#ifdef CONFIG_NFS_V4
1202static int nfs_open_revalidate(struct dentry *, struct nameidata *);
1203
Al Virof786aa92009-02-20 05:51:22 +00001204const struct dentry_operations nfs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 .d_revalidate = nfs_open_revalidate,
1206 .d_delete = nfs_dentry_delete,
1207 .d_iput = nfs_dentry_iput,
1208};
1209
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001210/*
1211 * Use intent information to determine whether we need to substitute
1212 * the NFSv4-style stateful OPEN for the LOOKUP call
1213 */
Trond Myklebust5584c302008-12-23 15:21:54 -05001214static int is_atomic_open(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001216 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return 0;
1218 /* NFS does not (yet) have a stateful open for directories */
1219 if (nd->flags & LOOKUP_DIRECTORY)
1220 return 0;
1221 /* Are we trying to write to a read only partition? */
Dave Hansen2c463e92008-02-15 14:37:56 -08001222 if (__mnt_is_readonly(nd->path.mnt) &&
1223 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return 0;
1225 return 1;
1226}
1227
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001228static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
1229{
1230 struct path path = {
1231 .mnt = nd->path.mnt,
1232 .dentry = dentry,
1233 };
1234 struct nfs_open_context *ctx;
1235 struct rpc_cred *cred;
1236 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
1237
1238 cred = rpc_lookup_cred();
1239 if (IS_ERR(cred))
1240 return ERR_CAST(cred);
1241 ctx = alloc_nfs_open_context(&path, cred, fmode);
1242 put_rpccred(cred);
1243 if (ctx == NULL)
1244 return ERR_PTR(-ENOMEM);
1245 return ctx;
1246}
1247
1248static int do_open(struct inode *inode, struct file *filp)
1249{
1250 nfs_fscache_set_inode_cookie(inode, filp);
1251 return 0;
1252}
1253
1254static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
1255{
1256 struct file *filp;
1257 int ret = 0;
1258
1259 /* If the open_intent is for execute, we have an extra check to make */
1260 if (ctx->mode & FMODE_EXEC) {
1261 ret = nfs_may_open(ctx->path.dentry->d_inode,
1262 ctx->cred,
1263 nd->intent.open.flags);
1264 if (ret < 0)
1265 goto out;
1266 }
1267 filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
1268 if (IS_ERR(filp))
1269 ret = PTR_ERR(filp);
1270 else
1271 nfs_file_set_open_context(filp, ctx);
1272out:
1273 put_nfs_open_context(ctx);
1274 return ret;
1275}
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1278{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001279 struct nfs_open_context *ctx;
1280 struct iattr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 struct dentry *res = NULL;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001282 struct inode *inode;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001283 int open_flags;
Trond Myklebust898f6352010-10-23 11:24:25 -04001284 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001286 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
1287 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /* Check that we are indeed trying to open this file */
Trond Myklebust5584c302008-12-23 15:21:54 -05001290 if (!is_atomic_open(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 goto no_open;
1292
1293 if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
1294 res = ERR_PTR(-ENAMETOOLONG);
1295 goto out;
1296 }
1297 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1298
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001299 /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
1300 * the dentry. */
Al Viro35165862008-08-05 03:00:49 -04001301 if (nd->flags & LOOKUP_EXCL) {
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001302 d_instantiate(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001303 goto out;
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001306 ctx = nameidata_to_nfs_open_context(dentry, nd);
1307 res = ERR_CAST(ctx);
1308 if (IS_ERR(ctx))
1309 goto out;
1310
1311 open_flags = nd->intent.open.flags;
1312 if (nd->flags & LOOKUP_CREATE) {
1313 attr.ia_mode = nd->intent.open.create_mode;
1314 attr.ia_valid = ATTR_MODE;
1315 if (!IS_POSIXACL(dir))
1316 attr.ia_mode &= ~current_umask();
1317 } else {
Trond Myklebust898f6352010-10-23 11:24:25 -04001318 open_flags &= ~(O_EXCL | O_CREAT);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001319 attr.ia_valid = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001320 }
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /* Open the file on the server */
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001323 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001324 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001325 if (IS_ERR(inode)) {
1326 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001327 put_nfs_open_context(ctx);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001328 switch (PTR_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 /* Make a negative dentry */
1330 case -ENOENT:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001331 d_add(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001332 res = NULL;
1333 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* This turned out not to be a regular file */
Trond Myklebust80e60632010-03-25 13:51:05 -04001335 case -EISDIR:
Trond Myklebust6f926b52005-10-18 14:20:18 -07001336 case -ENOTDIR:
1337 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 case -ELOOP:
1339 if (!(nd->intent.open.flags & O_NOFOLLOW))
1340 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /* case -EINVAL: */
1342 default:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001343 res = ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 goto out;
1345 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001346 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001347 res = d_add_unique(dentry, inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001348 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001349 if (res != NULL) {
1350 dput(ctx->path.dentry);
1351 ctx->path.dentry = dget(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 dentry = res;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001353 }
Trond Myklebust898f6352010-10-23 11:24:25 -04001354 err = nfs_intent_set_file(nd, ctx);
1355 if (err < 0) {
1356 if (res != NULL)
1357 dput(res);
1358 return ERR_PTR(err);
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360out:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001361 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return res;
1363no_open:
1364 return nfs_lookup(dir, dentry, nd);
1365}
1366
1367static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1368{
1369 struct dentry *parent = NULL;
1370 struct inode *inode = dentry->d_inode;
1371 struct inode *dir;
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001372 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 int openflags, ret = 0;
1374
Trond Myklebust1f063d22010-04-22 15:35:55 -04001375 if (!is_atomic_open(nd) || d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001376 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 parent = dget_parent(dentry);
1379 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 /* We can't create new files in nfs_open_revalidate(), so we
1382 * optimize away revalidation of negative dentries.
1383 */
Trond Myklebust216d5d02007-10-01 20:10:12 -04001384 if (inode == NULL) {
1385 if (!nfs_neg_need_reval(dir, dentry, nd))
1386 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto out;
Trond Myklebust216d5d02007-10-01 20:10:12 -04001388 }
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /* NFS only supports OPEN on regular files */
1391 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001392 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 openflags = nd->intent.open.flags;
1394 /* We cannot do exclusive creation on a positive dentry */
1395 if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
Trond Myklebust5584c302008-12-23 15:21:54 -05001396 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /* We can't create new files, or truncate existing ones here */
Trond Myklebust0a377cf2010-08-18 09:25:42 -04001398 openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001400 ctx = nameidata_to_nfs_open_context(dentry, nd);
1401 ret = PTR_ERR(ctx);
1402 if (IS_ERR(ctx))
1403 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001405 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 * operations that change the directory. We therefore save the
1407 * change attribute *before* we do the RPC call.
1408 */
Trond Myklebust2b484292010-09-17 10:56:51 -04001409 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
Trond Myklebust535918f2010-09-17 10:56:51 -04001410 if (IS_ERR(inode)) {
1411 ret = PTR_ERR(inode);
1412 switch (ret) {
1413 case -EPERM:
1414 case -EACCES:
1415 case -EDQUOT:
1416 case -ENOSPC:
1417 case -EROFS:
1418 goto out_put_ctx;
1419 default:
1420 goto out_drop;
1421 }
1422 }
1423 iput(inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001424 if (inode != dentry->d_inode)
Trond Myklebust535918f2010-09-17 10:56:51 -04001425 goto out_drop;
Trond Myklebust898f6352010-10-23 11:24:25 -04001426
1427 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1428 ret = nfs_intent_set_file(nd, ctx);
1429 if (ret >= 0)
1430 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431out:
1432 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001434out_drop:
1435 d_drop(dentry);
1436 ret = 0;
1437out_put_ctx:
1438 put_nfs_open_context(ctx);
1439 goto out;
1440
Trond Myklebust5584c302008-12-23 15:21:54 -05001441no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001443no_open:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return nfs_lookup_revalidate(dentry, nd);
1445}
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001446
1447static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
1448 struct nameidata *nd)
1449{
1450 struct nfs_open_context *ctx = NULL;
1451 struct iattr attr;
1452 int error;
1453 int open_flags = 0;
1454
1455 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1456 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1457
1458 attr.ia_mode = mode;
1459 attr.ia_valid = ATTR_MODE;
1460
1461 if ((nd->flags & LOOKUP_CREATE) != 0) {
1462 open_flags = nd->intent.open.flags;
1463
1464 ctx = nameidata_to_nfs_open_context(dentry, nd);
1465 error = PTR_ERR(ctx);
1466 if (IS_ERR(ctx))
Trond Myklebust898f6352010-10-23 11:24:25 -04001467 goto out_err_drop;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001468 }
1469
1470 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
1471 if (error != 0)
1472 goto out_put_ctx;
Trond Myklebust898f6352010-10-23 11:24:25 -04001473 if (ctx != NULL) {
1474 error = nfs_intent_set_file(nd, ctx);
1475 if (error < 0)
1476 goto out_err;
1477 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001478 return 0;
1479out_put_ctx:
1480 if (ctx != NULL)
1481 put_nfs_open_context(ctx);
Trond Myklebust898f6352010-10-23 11:24:25 -04001482out_err_drop:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001483 d_drop(dentry);
Trond Myklebust898f6352010-10-23 11:24:25 -04001484out_err:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001485 return error;
1486}
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488#endif /* CONFIG_NFSV4 */
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490/*
1491 * Code common to create, mkdir, and mknod.
1492 */
1493int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1494 struct nfs_fattr *fattr)
1495{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001496 struct dentry *parent = dget_parent(dentry);
1497 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 struct inode *inode;
1499 int error = -EACCES;
1500
Trond Myklebustfab728e2007-09-29 17:41:33 -04001501 d_drop(dentry);
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 /* We may have been initialized further down */
1504 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001505 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (fhandle->size == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1508 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001509 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001511 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1513 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001514 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001516 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001519 error = PTR_ERR(inode);
1520 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001521 goto out_error;
1522 d_add(dentry, inode);
1523out:
1524 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001526out_error:
1527 nfs_mark_for_revalidate(dir);
1528 dput(parent);
1529 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532/*
1533 * Following a failed create operation, we drop the dentry rather
1534 * than retain a negative dentry. This avoids a problem in the event
1535 * that the operation succeeded on the server, but an error in the
1536 * reply path made it appear to have failed.
1537 */
1538static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1539 struct nameidata *nd)
1540{
1541 struct iattr attr;
1542 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001544 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1545 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 attr.ia_mode = mode;
1548 attr.ia_valid = ATTR_MODE;
1549
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001550 error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (error != 0)
1552 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return 0;
1554out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 d_drop(dentry);
1556 return error;
1557}
1558
1559/*
1560 * See comments for nfs_proc_create regarding failed operations.
1561 */
1562static int
1563nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1564{
1565 struct iattr attr;
1566 int status;
1567
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001568 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1569 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 if (!new_valid_dev(rdev))
1572 return -EINVAL;
1573
1574 attr.ia_mode = mode;
1575 attr.ia_valid = ATTR_MODE;
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (status != 0)
1579 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 d_drop(dentry);
1583 return status;
1584}
1585
1586/*
1587 * See comments for nfs_proc_create regarding failed operations.
1588 */
1589static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1590{
1591 struct iattr attr;
1592 int error;
1593
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001594 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1595 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 attr.ia_valid = ATTR_MODE;
1598 attr.ia_mode = mode | S_IFDIR;
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (error != 0)
1602 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return 0;
1604out_err:
1605 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return error;
1607}
1608
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001609static void nfs_dentry_handle_enoent(struct dentry *dentry)
1610{
1611 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1612 d_delete(dentry);
1613}
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1616{
1617 int error;
1618
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001619 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1620 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1623 /* Ensure the VFS deletes this inode */
1624 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001625 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001626 else if (error == -ENOENT)
1627 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 return error;
1630}
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632/*
1633 * Remove a file after making sure there are no pending writes,
1634 * and after checking that the file has only one user.
1635 *
1636 * We invalidate the attribute cache and free the inode prior to the operation
1637 * to avoid possible races if the server reuses the inode.
1638 */
1639static int nfs_safe_remove(struct dentry *dentry)
1640{
1641 struct inode *dir = dentry->d_parent->d_inode;
1642 struct inode *inode = dentry->d_inode;
1643 int error = -EBUSY;
1644
1645 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1646 dentry->d_parent->d_name.name, dentry->d_name.name);
1647
1648 /* If the dentry was sillyrenamed, we simply call d_delete() */
1649 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1650 error = 0;
1651 goto out;
1652 }
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001655 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1657 /* The VFS may want to delete this inode */
1658 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001659 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001660 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 } else
1662 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001663 if (error == -ENOENT)
1664 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665out:
1666 return error;
1667}
1668
1669/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1670 * belongs to an active ".nfs..." file and we return -EBUSY.
1671 *
1672 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1673 */
1674static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1675{
1676 int error;
1677 int need_rehash = 0;
1678
1679 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1680 dir->i_ino, dentry->d_name.name);
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 spin_lock(&dcache_lock);
1683 spin_lock(&dentry->d_lock);
1684 if (atomic_read(&dentry->d_count) > 1) {
1685 spin_unlock(&dentry->d_lock);
1686 spin_unlock(&dcache_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001687 /* Start asynchronous writeout of the inode */
1688 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return error;
1691 }
1692 if (!d_unhashed(dentry)) {
1693 __d_drop(dentry);
1694 need_rehash = 1;
1695 }
1696 spin_unlock(&dentry->d_lock);
1697 spin_unlock(&dcache_lock);
1698 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001699 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1701 } else if (need_rehash)
1702 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return error;
1704}
1705
Chuck Lever873101b2006-08-22 20:06:23 -04001706/*
1707 * To create a symbolic link, most file systems instantiate a new inode,
1708 * add a page to it containing the path, then write it out to the disk
1709 * using prepare_write/commit_write.
1710 *
1711 * Unfortunately the NFS client can't create the in-core inode first
1712 * because it needs a file handle to create an in-core inode (see
1713 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1714 * symlink request has completed on the server.
1715 *
1716 * So instead we allocate a raw page, copy the symname into it, then do
1717 * the SYMLINK request with the page as the buffer. If it succeeds, we
1718 * now have a new file handle and can instantiate an in-core NFS inode
1719 * and move the raw page into its mapping.
1720 */
1721static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Chuck Lever873101b2006-08-22 20:06:23 -04001723 struct pagevec lru_pvec;
1724 struct page *page;
1725 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001727 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 int error;
1729
1730 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1731 dir->i_ino, dentry->d_name.name, symname);
1732
Chuck Lever873101b2006-08-22 20:06:23 -04001733 if (pathlen > PAGE_SIZE)
1734 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Chuck Lever873101b2006-08-22 20:06:23 -04001736 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1737 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Jeff Layton83d93f22007-06-07 09:58:08 -04001739 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001740 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001741 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001742
1743 kaddr = kmap_atomic(page, KM_USER0);
1744 memcpy(kaddr, symname, pathlen);
1745 if (pathlen < PAGE_SIZE)
1746 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1747 kunmap_atomic(kaddr, KM_USER0);
1748
Chuck Lever94a6d752006-08-22 20:06:23 -04001749 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001750 if (error != 0) {
1751 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1752 dir->i_sb->s_id, dir->i_ino,
1753 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001755 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001756 return error;
1757 }
1758
1759 /*
1760 * No big deal if we can't add this page to the page cache here.
1761 * READLINK will get the missing page from the server if needed.
1762 */
1763 pagevec_init(&lru_pvec, 0);
1764 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1765 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001766 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001767 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001768 SetPageUptodate(page);
1769 unlock_page(page);
1770 } else
1771 __free_page(page);
1772
Chuck Lever873101b2006-08-22 20:06:23 -04001773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
1776static int
1777nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1778{
1779 struct inode *inode = old_dentry->d_inode;
1780 int error;
1781
1782 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1783 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1784 dentry->d_parent->d_name.name, dentry->d_name.name);
1785
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001786 nfs_inode_return_delegation(inode);
1787
Trond Myklebust9697d232007-10-02 21:58:05 -04001788 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001790 if (error == 0) {
1791 atomic_inc(&inode->i_count);
Trond Myklebust9697d232007-10-02 21:58:05 -04001792 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return error;
1795}
1796
1797/*
1798 * RENAME
1799 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1800 * different file handle for the same inode after a rename (e.g. when
1801 * moving to a different directory). A fail-safe method to do so would
1802 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1803 * rename the old file using the sillyrename stuff. This way, the original
1804 * file in old_dir will go away when the last process iput()s the inode.
1805 *
1806 * FIXED.
1807 *
1808 * It actually works quite well. One needs to have the possibility for
1809 * at least one ".nfs..." file in each directory the file ever gets
1810 * moved or linked to which happens automagically with the new
1811 * implementation that only depends on the dcache stuff instead of
1812 * using the inode layer
1813 *
1814 * Unfortunately, things are a little more complicated than indicated
1815 * above. For a cross-directory move, we want to make sure we can get
1816 * rid of the old inode after the operation. This means there must be
1817 * no pending writes (if it's a file), and the use count must be 1.
1818 * If these conditions are met, we can drop the dentries before doing
1819 * the rename.
1820 */
1821static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1822 struct inode *new_dir, struct dentry *new_dentry)
1823{
1824 struct inode *old_inode = old_dentry->d_inode;
1825 struct inode *new_inode = new_dentry->d_inode;
1826 struct dentry *dentry = NULL, *rehash = NULL;
1827 int error = -EBUSY;
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1830 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1831 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1832 atomic_read(&new_dentry->d_count));
1833
1834 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001835 * For non-directories, check whether the target is busy and if so,
1836 * make a copy of the dentry and then do a silly-rename. If the
1837 * silly-rename succeeds, the copied dentry is hashed and becomes
1838 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001840 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1841 /*
1842 * To prevent any new references to the target during the
1843 * rename, we unhash the dentry in advance.
1844 */
1845 if (!d_unhashed(new_dentry)) {
1846 d_drop(new_dentry);
1847 rehash = new_dentry;
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Miklos Szeredi27226102009-12-03 15:58:56 -05001850 if (atomic_read(&new_dentry->d_count) > 2) {
1851 int err;
1852
1853 /* copy the target dentry's name */
1854 dentry = d_alloc(new_dentry->d_parent,
1855 &new_dentry->d_name);
1856 if (!dentry)
1857 goto out;
1858
1859 /* silly-rename the existing target ... */
1860 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001861 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001862 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001863
1864 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001865 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001866 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001867 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Trond Myklebustcae7a072005-10-18 14:20:19 -07001870 nfs_inode_return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001871 if (new_inode != NULL)
Trond Myklebust24174112006-01-03 09:55:33 +01001872 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1875 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001876 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877out:
1878 if (rehash)
1879 d_rehash(rehash);
1880 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001881 if (new_inode != NULL)
1882 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001883 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001884 nfs_set_verifier(new_dentry,
1885 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001886 } else if (error == -ENOENT)
1887 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /* new dentry created? */
1890 if (dentry)
1891 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return error;
1893}
1894
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001895static DEFINE_SPINLOCK(nfs_access_lru_lock);
1896static LIST_HEAD(nfs_access_lru_list);
1897static atomic_long_t nfs_access_nr_entries;
1898
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001899static void nfs_access_free_entry(struct nfs_access_entry *entry)
1900{
1901 put_rpccred(entry->cred);
1902 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001903 smp_mb__before_atomic_dec();
1904 atomic_long_dec(&nfs_access_nr_entries);
1905 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001906}
1907
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001908static void nfs_access_free_list(struct list_head *head)
1909{
1910 struct nfs_access_entry *cache;
1911
1912 while (!list_empty(head)) {
1913 cache = list_entry(head->next, struct nfs_access_entry, lru);
1914 list_del(&cache->lru);
1915 nfs_access_free_entry(cache);
1916 }
1917}
1918
Dave Chinner7f8275d2010-07-19 14:56:17 +10001919int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Trond Myklebust979df722006-07-25 11:28:19 -04001920{
1921 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001922 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001923 struct nfs_access_entry *cache;
1924
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001925 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1926 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001927
Trond Myklebusta50f7952007-06-05 19:23:43 -04001928 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001929 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001930 struct inode *inode;
1931
1932 if (nr_to_scan-- == 0)
1933 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001934 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001935 spin_lock(&inode->i_lock);
1936 if (list_empty(&nfsi->access_cache_entry_lru))
1937 goto remove_lru_entry;
1938 cache = list_entry(nfsi->access_cache_entry_lru.next,
1939 struct nfs_access_entry, lru);
1940 list_move(&cache->lru, &head);
1941 rb_erase(&cache->rb_node, &nfsi->access_cache);
1942 if (!list_empty(&nfsi->access_cache_entry_lru))
1943 list_move_tail(&nfsi->access_cache_inode_lru,
1944 &nfs_access_lru_list);
1945 else {
1946remove_lru_entry:
1947 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001948 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001949 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001950 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001951 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001952 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001953 }
1954 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001955 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001956 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1957}
1958
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001959static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001960{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001961 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001962 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001963 struct nfs_access_entry *entry;
1964
1965 /* Unhook entries from the cache */
1966 while ((n = rb_first(root_node)) != NULL) {
1967 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1968 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001969 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001970 }
1971 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001972}
1973
1974void nfs_access_zap_cache(struct inode *inode)
1975{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001976 LIST_HEAD(head);
1977
1978 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1979 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001980 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001981 spin_lock(&nfs_access_lru_lock);
1982 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001983 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001984
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001985 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001986 __nfs_access_zap_cache(NFS_I(inode), &head);
1987 spin_unlock(&inode->i_lock);
1988 spin_unlock(&nfs_access_lru_lock);
1989 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001990}
1991
1992static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
1993{
1994 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
1995 struct nfs_access_entry *entry;
1996
1997 while (n != NULL) {
1998 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1999
2000 if (cred < entry->cred)
2001 n = n->rb_left;
2002 else if (cred > entry->cred)
2003 n = n->rb_right;
2004 else
2005 return entry;
2006 }
2007 return NULL;
2008}
2009
Trond Myklebustaf22f942007-08-10 17:45:10 -04002010static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Chuck Lever55296802005-08-18 11:24:09 -07002012 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002013 struct nfs_access_entry *cache;
2014 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002016 spin_lock(&inode->i_lock);
2017 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2018 goto out_zap;
2019 cache = nfs_access_search_rbtree(inode, cred);
2020 if (cache == NULL)
2021 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002022 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002023 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002024 goto out_stale;
2025 res->jiffies = cache->jiffies;
2026 res->cred = cache->cred;
2027 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002028 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002029 err = 0;
2030out:
2031 spin_unlock(&inode->i_lock);
2032 return err;
2033out_stale:
2034 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002035 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002036 spin_unlock(&inode->i_lock);
2037 nfs_access_free_entry(cache);
2038 return -ENOENT;
2039out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002040 spin_unlock(&inode->i_lock);
2041 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002042 return -ENOENT;
2043}
2044
2045static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2046{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002047 struct nfs_inode *nfsi = NFS_I(inode);
2048 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002049 struct rb_node **p = &root_node->rb_node;
2050 struct rb_node *parent = NULL;
2051 struct nfs_access_entry *entry;
2052
2053 spin_lock(&inode->i_lock);
2054 while (*p != NULL) {
2055 parent = *p;
2056 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2057
2058 if (set->cred < entry->cred)
2059 p = &parent->rb_left;
2060 else if (set->cred > entry->cred)
2061 p = &parent->rb_right;
2062 else
2063 goto found;
2064 }
2065 rb_link_node(&set->rb_node, parent, p);
2066 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002067 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002068 spin_unlock(&inode->i_lock);
2069 return;
2070found:
2071 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002072 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2073 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002074 spin_unlock(&inode->i_lock);
2075 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Trond Myklebustaf22f942007-08-10 17:45:10 -04002078static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002080 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2081 if (cache == NULL)
2082 return;
2083 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002085 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002087
2088 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002089
2090 /* Update accounting */
2091 smp_mb__before_atomic_inc();
2092 atomic_long_inc(&nfs_access_nr_entries);
2093 smp_mb__after_atomic_inc();
2094
2095 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002096 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002097 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002098 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2099 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2100 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002101 spin_unlock(&nfs_access_lru_lock);
2102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
2105static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2106{
2107 struct nfs_access_entry cache;
2108 int status;
2109
2110 status = nfs_access_get_cached(inode, cred, &cache);
2111 if (status == 0)
2112 goto out;
2113
2114 /* Be clever: ask server to check for all possible rights */
2115 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2116 cache.cred = cred;
2117 cache.jiffies = jiffies;
2118 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002119 if (status != 0) {
2120 if (status == -ESTALE) {
2121 nfs_zap_caches(inode);
2122 if (!S_ISDIR(inode->i_mode))
2123 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 nfs_access_add_cache(inode, &cache);
2128out:
Al Viroe6305c42008-07-15 21:03:57 -04002129 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return 0;
2131 return -EACCES;
2132}
2133
Trond Myklebustaf22f942007-08-10 17:45:10 -04002134static int nfs_open_permission_mask(int openflags)
2135{
2136 int mask = 0;
2137
2138 if (openflags & FMODE_READ)
2139 mask |= MAY_READ;
2140 if (openflags & FMODE_WRITE)
2141 mask |= MAY_WRITE;
2142 if (openflags & FMODE_EXEC)
2143 mask |= MAY_EXEC;
2144 return mask;
2145}
2146
2147int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2148{
2149 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2150}
2151
Al Viroe6305c42008-07-15 21:03:57 -04002152int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
2154 struct rpc_cred *cred;
2155 int res = 0;
2156
Chuck Lever91d5b472006-03-20 13:44:14 -05002157 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2158
Al Viroe6305c42008-07-15 21:03:57 -04002159 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 goto out;
2161 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002162 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 goto force_lookup;
2164
2165 switch (inode->i_mode & S_IFMT) {
2166 case S_IFLNK:
2167 goto out;
2168 case S_IFREG:
2169 /* NFSv4 has atomic_open... */
2170 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002171 && (mask & MAY_OPEN)
2172 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 goto out;
2174 break;
2175 case S_IFDIR:
2176 /*
2177 * Optimize away all write operations, since the server
2178 * will check permissions when we perform the op.
2179 */
2180 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2181 goto out;
2182 }
2183
2184force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (!NFS_PROTO(inode)->access)
2186 goto out_notsup;
2187
Trond Myklebust98a8e322008-03-12 12:25:28 -04002188 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (!IS_ERR(cred)) {
2190 res = nfs_do_access(inode, cred, mask);
2191 put_rpccred(cred);
2192 } else
2193 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002195 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2196 res = -EACCES;
2197
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002198 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2199 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 return res;
2201out_notsup:
2202 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2203 if (res == 0)
2204 res = generic_permission(inode, mask, NULL);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
2208/*
2209 * Local variables:
2210 * version-control: t
2211 * kept-new-versions: 5
2212 * End:
2213 */