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