blob: 5d7da3ad4e859bab8ac9dd514fcaa4fd3d51a6e4 [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 Schumakerbabddc72010-10-20 15:44:29 -0400445
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) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400457 if (nfs_readdir_add_to_array(entry, page) == -1)
458 break;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400459 if (desc->plus == 1)
460 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400461 }
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400462}
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;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400503}
504
505static
506int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
507{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400508 struct page *pages[NFS_MAX_READDIR_PAGES];
509 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400510 struct nfs_entry entry;
511 struct file *file = desc->file;
512 struct nfs_cache_array *array;
513 int status = 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400514 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400515
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;
523
524 array = nfs_readdir_get_array(page);
525 memset(array, 0, sizeof(struct nfs_cache_array));
526 array->eof_index = -1;
527
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400528 pages_ptr = nfs_readdir_large_page(pages, array_size);
529 if (!pages_ptr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400530 goto out_release_array;
531 do {
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400532 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400533
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400534 if (status < 0)
535 break;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400536 nfs_readdir_page_filler(desc, &entry, pages_ptr, page, array_size * PAGE_SIZE);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400537 } while (array->eof_index < 0 && array->size < MAX_READDIR_ARRAY);
538
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400539 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400540out_release_array:
541 nfs_readdir_release_array(page);
542out:
543 nfs_free_fattr(entry.fattr);
544 nfs_free_fhandle(entry.fh);
545 return status;
546}
547
548/*
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
553 */
554static
555int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
556{
557 struct inode *inode = desc->file->f_path.dentry->d_inode;
558
559 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1)
560 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400562
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400563 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700564 /* Should never happen */
565 nfs_zap_mapping(inode, inode->i_mapping);
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 unlock_page(page);
568 return 0;
569 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return -EIO;
572}
573
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400574static
575void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 page_cache_release(desc->page);
578 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400581static
582struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400584 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400593 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000594 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400595static
596int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000597{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400598 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000599
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400600 desc->page = get_cache_page(desc);
601 if (IS_ERR(desc->page))
602 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000603
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400604 res = nfs_readdir_search_array(desc);
605 if (res == 0)
606 return 0;
607 cache_page_release(desc);
608 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000609}
610
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400611/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static inline
613int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
614{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400615 int res = -EAGAIN;
Olivier Galibert00a92642005-06-22 17:16:29 +0000616
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400617 while (1) {
618 res = find_cache_page(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (res != -EAGAIN)
620 break;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400621 desc->page_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return res;
624}
625
626static inline unsigned int dt_type(struct inode *inode)
627{
628 return (inode->i_mode >> 12) & 15;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/*
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;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400639 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400645 array = nfs_readdir_get_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400647 for (i = desc->cache_entry_index; i < array->size; i++) {
648 d_type = DT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400650 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (res < 0)
654 break;
Olivier Galibert00a92642005-06-22 17:16:29 +0000655 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400656 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 break;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400666
667 nfs_readdir_release_array(desc->page);
668 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (dentry != NULL)
670 dput(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500671 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
672 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct page *page = NULL;
693 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400694 struct inode *inode = desc->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500696 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
697 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 page = alloc_page(GFP_HIGHUSER);
700 if (!page) {
701 status = -ENOMEM;
702 goto out;
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400705 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) {
706 status = -EIO;
707 goto out_release;
708 }
709
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400710 desc->page_index = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400711 desc->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 status = nfs_do_filldir(desc, dirent, filldir);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500715 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700716 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return status;
718 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400719 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 goto out;
721}
722
Olivier Galibert00a92642005-06-22 17:16:29 +0000723/* 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 */
727static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
728{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800729 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 struct inode *inode = dentry->d_inode;
731 nfs_readdir_descriptor_t my_desc,
732 *desc = &my_desc;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400733 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Chuck Lever6da24bc2008-06-11 17:55:58 -0400735 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500736 dentry->d_parent->d_name.name, dentry->d_name.name,
737 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500738 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000741 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000742 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000743 * to either find the entry with the appropriate number or
744 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
746 memset(desc, 0, sizeof(*desc));
747
748 desc->file = filp;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400749 desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 desc->decode = NFS_PROTO(inode)->decode_dirent;
751 desc->plus = NFS_USE_READDIRPLUS(inode);
752
Trond Myklebust565277f2007-10-15 18:17:53 -0400753 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800754 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500755 if (res < 0)
756 goto out;
757
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400758 while (desc->eof != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (res == -EBADCOOKIE) {
762 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400763 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /* 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) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200773 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400775 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400777 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 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 }
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500789out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400790 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500791 if (res > 0)
792 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400793 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500794 dentry->d_parent->d_name.name, dentry->d_name.name,
795 res);
796 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Trond Myklebust10afec92007-05-14 17:16:04 -0400799static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000800{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400801 struct dentry *dentry = filp->f_path.dentry;
802 struct inode *inode = dentry->d_inode;
803
Chuck Lever6da24bc2008-06-11 17:55:58 -0400804 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400805 dentry->d_parent->d_name.name,
806 dentry->d_name.name,
807 offset, origin);
808
809 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000810 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;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400822 nfs_file_open_context(filp)->dir_cookie = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000823 }
824out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400825 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000826 return offset;
827}
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829/*
830 * All directory operations under NFS are synchronous, so fsync()
831 * is a dummy operation.
832 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200833static int nfs_fsync_dir(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200835 struct dentry *dentry = filp->f_path.dentry;
836
Chuck Lever6da24bc2008-06-11 17:55:58 -0400837 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500838 dentry->d_parent->d_name.name, dentry->d_name.name,
839 datasync);
840
Chuck Lever54917782008-05-27 16:29:07 -0400841 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 0;
843}
844
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400845/**
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{
Trond Myklebust011935a2008-10-14 19:24:50 -0400857 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400858}
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/*
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 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500865static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 if (IS_ROOT(dentry))
868 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400869 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
870 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400871 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400882 * 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
895/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400896 * 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;
Al Viro35165862008-08-05 03:00:49 -0400903 return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
Trond Myklebusta12802c2007-10-02 19:13:04 -0400904}
905
906/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400907 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914static inline
915int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
916{
917 struct nfs_server *server = NFS_SERVER(inode);
918
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500919 if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400923 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto out_force;
925 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400926 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400927 !(server->flags & NFS_MOUNT_NOCTO) &&
928 (S_ISREG(inode->i_mode) ||
929 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto out_force;
Trond Myklebust4f48af42007-10-02 23:13:32 -0400931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400950 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400952 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
953 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 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;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400973 struct nfs_fh *fhandle = NULL;
974 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -0500979 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 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)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500989 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700990 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500991 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 goto out_bad;
993 }
994
Trond Myklebust15860ab2008-12-23 15:21:54 -0500995 if (nfs_have_delegation(inode, FMODE_READ))
996 goto out_set_verifier;
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* Force a full look up iff the parent directory has changed */
Trond Myklebusta12802c2007-10-02 19:13:04 -0400999 if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 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
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001008 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (error)
1016 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001017 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001019 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto out_bad;
1021
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001022 nfs_free_fattr(fattr);
1023 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001024out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001025 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 out_valid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001028 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001029 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001030 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return 1;
1032out_zap_parent:
1033 nfs_zap_caches(dir);
1034 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -04001035 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 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;
Al Virod9e80b72010-04-29 03:10:43 +01001042 if (dentry->d_flags & DCACHE_DISCONNECTED)
1043 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 shrink_dcache_parent(dentry);
1045 }
1046 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001047 nfs_free_fattr(fattr);
1048 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001050 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001051 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001052 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001054out_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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
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
Trond Myklebust77f11192008-01-28 19:43:19 -05001073 /* Unhash any dentry with a stale inode */
1074 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1075 return 1;
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 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
Trond Myklebust1b83d702008-06-11 15:44:04 -04001090static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098/*
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{
Neil Brown83672d32007-02-26 12:48:25 +11001104 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001109 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001110 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 iput(inode);
1113}
1114
Al Virof786aa92009-02-20 05:51:22 +00001115const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 .d_revalidate = nfs_lookup_revalidate,
1117 .d_delete = nfs_dentry_delete,
1118 .d_iput = nfs_dentry_iput,
1119};
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
1122{
1123 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001124 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001126 struct nfs_fh *fhandle = NULL;
1127 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1131 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001132 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 res = ERR_PTR(-ENAMETOOLONG);
1135 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1136 goto out;
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1139
Trond Myklebustfd684072006-09-05 12:27:44 -04001140 /*
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;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001147 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001150 res = ERR_PTR(-ENOMEM);
1151 fhandle = nfs_alloc_fhandle();
1152 fattr = nfs_alloc_fattr();
1153 if (fhandle == NULL || fattr == NULL)
1154 goto out;
1155
Trond Myklebust565277f2007-10-15 18:17:53 -04001156 parent = dentry->d_parent;
1157 /* Protect against concurrent sillydeletes */
1158 nfs_block_sillyrename(parent);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001159 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (error == -ENOENT)
1161 goto no_entry;
1162 if (error < 0) {
1163 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001164 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001166 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001167 res = (struct dentry *)inode;
1168 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001169 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001172 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001173 if (res != NULL) {
1174 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001175 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001179out_unblock_sillyrename:
1180 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001182 nfs_free_fattr(fattr);
1183 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return res;
1185}
1186
1187#ifdef CONFIG_NFS_V4
1188static int nfs_open_revalidate(struct dentry *, struct nameidata *);
1189
Al Virof786aa92009-02-20 05:51:22 +00001190const struct dentry_operations nfs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 .d_revalidate = nfs_open_revalidate,
1192 .d_delete = nfs_dentry_delete,
1193 .d_iput = nfs_dentry_iput,
1194};
1195
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001196/*
1197 * Use intent information to determine whether we need to substitute
1198 * the NFSv4-style stateful OPEN for the LOOKUP call
1199 */
Trond Myklebust5584c302008-12-23 15:21:54 -05001200static int is_atomic_open(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001202 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 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? */
Dave Hansen2c463e92008-02-15 14:37:56 -08001208 if (__mnt_is_readonly(nd->path.mnt) &&
1209 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return 0;
1211 return 1;
1212}
1213
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001214static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1264{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001265 struct nfs_open_context *ctx;
1266 struct iattr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 struct dentry *res = NULL;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001268 struct inode *inode;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001269 int open_flags;
Trond Myklebust898f6352010-10-23 11:24:25 -04001270 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001272 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
1273 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* Check that we are indeed trying to open this file */
Trond Myklebust5584c302008-12-23 15:21:54 -05001276 if (!is_atomic_open(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 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
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001285 /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
1286 * the dentry. */
Al Viro35165862008-08-05 03:00:49 -04001287 if (nd->flags & LOOKUP_EXCL) {
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001288 d_instantiate(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001289 goto out;
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001292 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 {
Trond Myklebust898f6352010-10-23 11:24:25 -04001304 open_flags &= ~(O_EXCL | O_CREAT);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001305 attr.ia_valid = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001306 }
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /* Open the file on the server */
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001309 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001310 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001311 if (IS_ERR(inode)) {
1312 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001313 put_nfs_open_context(ctx);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001314 switch (PTR_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 /* Make a negative dentry */
1316 case -ENOENT:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001317 d_add(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001318 res = NULL;
1319 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 /* This turned out not to be a regular file */
Trond Myklebust80e60632010-03-25 13:51:05 -04001321 case -EISDIR:
Trond Myklebust6f926b52005-10-18 14:20:18 -07001322 case -ENOTDIR:
1323 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 case -ELOOP:
1325 if (!(nd->intent.open.flags & O_NOFOLLOW))
1326 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /* case -EINVAL: */
1328 default:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001329 res = ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 goto out;
1331 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001332 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001333 res = d_add_unique(dentry, inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001334 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001335 if (res != NULL) {
1336 dput(ctx->path.dentry);
1337 ctx->path.dentry = dget(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 dentry = res;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001339 }
Trond Myklebust898f6352010-10-23 11:24:25 -04001340 err = nfs_intent_set_file(nd, ctx);
1341 if (err < 0) {
1342 if (res != NULL)
1343 dput(res);
1344 return ERR_PTR(err);
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346out:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001347 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 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;
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001358 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 int openflags, ret = 0;
1360
Trond Myklebust1f063d22010-04-22 15:35:55 -04001361 if (!is_atomic_open(nd) || d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001362 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 parent = dget_parent(dentry);
1365 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /* We can't create new files in nfs_open_revalidate(), so we
1368 * optimize away revalidation of negative dentries.
1369 */
Trond Myklebust216d5d02007-10-01 20:10:12 -04001370 if (inode == NULL) {
1371 if (!nfs_neg_need_reval(dir, dentry, nd))
1372 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto out;
Trond Myklebust216d5d02007-10-01 20:10:12 -04001374 }
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* NFS only supports OPEN on regular files */
1377 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001378 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 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))
Trond Myklebust5584c302008-12-23 15:21:54 -05001382 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /* We can't create new files, or truncate existing ones here */
Trond Myklebust0a377cf2010-08-18 09:25:42 -04001384 openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001386 ctx = nameidata_to_nfs_open_context(dentry, nd);
1387 ret = PTR_ERR(ctx);
1388 if (IS_ERR(ctx))
1389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001391 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * operations that change the directory. We therefore save the
1393 * change attribute *before* we do the RPC call.
1394 */
Trond Myklebust2b484292010-09-17 10:56:51 -04001395 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
Trond Myklebust535918f2010-09-17 10:56:51 -04001396 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);
Trond Myklebust898f6352010-10-23 11:24:25 -04001410 if (inode != dentry->d_inode)
Trond Myklebust535918f2010-09-17 10:56:51 -04001411 goto out_drop;
Trond Myklebust898f6352010-10-23 11:24:25 -04001412
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417out:
1418 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001420out_drop:
1421 d_drop(dentry);
1422 ret = 0;
1423out_put_ctx:
1424 put_nfs_open_context(ctx);
1425 goto out;
1426
Trond Myklebust5584c302008-12-23 15:21:54 -05001427no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001429no_open:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return nfs_lookup_revalidate(dentry, nd);
1431}
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001432
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))
Trond Myklebust898f6352010-10-23 11:24:25 -04001453 goto out_err_drop;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001454 }
1455
1456 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
1457 if (error != 0)
1458 goto out_put_ctx;
Trond Myklebust898f6352010-10-23 11:24:25 -04001459 if (ctx != NULL) {
1460 error = nfs_intent_set_file(nd, ctx);
1461 if (error < 0)
1462 goto out_err;
1463 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001464 return 0;
1465out_put_ctx:
1466 if (ctx != NULL)
1467 put_nfs_open_context(ctx);
Trond Myklebust898f6352010-10-23 11:24:25 -04001468out_err_drop:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001469 d_drop(dentry);
Trond Myklebust898f6352010-10-23 11:24:25 -04001470out_err:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001471 return error;
1472}
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474#endif /* CONFIG_NFSV4 */
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/*
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{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001482 struct dentry *parent = dget_parent(dentry);
1483 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 struct inode *inode;
1485 int error = -EACCES;
1486
Trond Myklebustfab728e2007-09-29 17:41:33 -04001487 d_drop(dentry);
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 /* We may have been initialized further down */
1490 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (fhandle->size == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1494 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001495 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001497 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1499 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001500 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001502 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001505 error = PTR_ERR(inode);
1506 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001507 goto out_error;
1508 d_add(dentry, inode);
1509out:
1510 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001512out_error:
1513 nfs_mark_for_revalidate(dir);
1514 dput(parent);
1515 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001530 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1531 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 attr.ia_mode = mode;
1534 attr.ia_valid = ATTR_MODE;
1535
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001536 error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (error != 0)
1538 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 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
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001554 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1555 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 if (!new_valid_dev(rdev))
1558 return -EINVAL;
1559
1560 attr.ia_mode = mode;
1561 attr.ia_valid = ATTR_MODE;
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (status != 0)
1565 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return 0;
1567out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 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
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001580 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1581 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 attr.ia_valid = ATTR_MODE;
1584 attr.ia_mode = mode | S_IFDIR;
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (error != 0)
1588 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return 0;
1590out_err:
1591 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return error;
1593}
1594
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001595static void nfs_dentry_handle_enoent(struct dentry *dentry)
1596{
1597 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1598 d_delete(dentry);
1599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1602{
1603 int error;
1604
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001605 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1606 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1609 /* Ensure the VFS deletes this inode */
1610 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001611 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001612 else if (error == -ENOENT)
1613 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 return error;
1616}
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001641 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1643 /* The VFS may want to delete this inode */
1644 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001645 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001646 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } else
1648 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001649 if (error == -ENOENT)
1650 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651out:
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 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);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001673 /* Start asynchronous writeout of the inode */
1674 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 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);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001685 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1687 } else if (need_rehash)
1688 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return error;
1690}
1691
Chuck Lever873101b2006-08-22 20:06:23 -04001692/*
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
Chuck Lever873101b2006-08-22 20:06:23 -04001709 struct pagevec lru_pvec;
1710 struct page *page;
1711 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001713 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 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
Chuck Lever873101b2006-08-22 20:06:23 -04001719 if (pathlen > PAGE_SIZE)
1720 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Chuck Lever873101b2006-08-22 20:06:23 -04001722 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1723 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Jeff Layton83d93f22007-06-07 09:58:08 -04001725 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001726 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001727 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001728
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
Chuck Lever94a6d752006-08-22 20:06:23 -04001735 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001736 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001741 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001742 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)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001752 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001753 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001754 SetPageUptodate(page);
1755 unlock_page(page);
1756 } else
1757 __free_page(page);
1758
Chuck Lever873101b2006-08-22 20:06:23 -04001759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
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
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001772 nfs_inode_return_delegation(inode);
1773
Trond Myklebust9697d232007-10-02 21:58:05 -04001774 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001776 if (error == 0) {
1777 atomic_inc(&inode->i_count);
Trond Myklebust9697d232007-10-02 21:58:05 -04001778 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 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 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001821 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001826 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Miklos Szeredi27226102009-12-03 15:58:56 -05001836 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);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001847 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001848 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001849
1850 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001851 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001852 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001853 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Trond Myklebustcae7a072005-10-18 14:20:19 -07001856 nfs_inode_return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001857 if (new_inode != NULL)
Trond Myklebust24174112006-01-03 09:55:33 +01001858 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1861 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001862 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863out:
1864 if (rehash)
1865 d_rehash(rehash);
1866 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001867 if (new_inode != NULL)
1868 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001869 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001870 nfs_set_verifier(new_dentry,
1871 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001872 } else if (error == -ENOENT)
1873 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 /* new dentry created? */
1876 if (dentry)
1877 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return error;
1879}
1880
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001881static DEFINE_SPINLOCK(nfs_access_lru_lock);
1882static LIST_HEAD(nfs_access_lru_list);
1883static atomic_long_t nfs_access_nr_entries;
1884
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001885static void nfs_access_free_entry(struct nfs_access_entry *entry)
1886{
1887 put_rpccred(entry->cred);
1888 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001889 smp_mb__before_atomic_dec();
1890 atomic_long_dec(&nfs_access_nr_entries);
1891 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001892}
1893
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001894static 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
Dave Chinner7f8275d2010-07-19 14:56:17 +10001905int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Trond Myklebust979df722006-07-25 11:28:19 -04001906{
1907 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001908 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001909 struct nfs_access_entry *cache;
1910
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001911 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1912 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001913
Trond Myklebusta50f7952007-06-05 19:23:43 -04001914 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001915 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001916 struct inode *inode;
1917
1918 if (nr_to_scan-- == 0)
1919 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001920 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001921 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);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001934 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001935 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001936 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001937 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001938 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001939 }
1940 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001941 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001942 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1943}
1944
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001945static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001946{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001947 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001948 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001949 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);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001955 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001956 }
1957 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001958}
1959
1960void nfs_access_zap_cache(struct inode *inode)
1961{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001962 LIST_HEAD(head);
1963
1964 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1965 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001966 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001967 spin_lock(&nfs_access_lru_lock);
1968 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001969 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001970
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001971 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001972 __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);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001976}
1977
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;
1992 }
1993 return NULL;
1994}
1995
Trond Myklebustaf22f942007-08-10 17:45:10 -04001996static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Chuck Lever55296802005-08-18 11:24:09 -07001998 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001999 struct nfs_access_entry *cache;
2000 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002002 spin_lock(&inode->i_lock);
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;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002008 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002009 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002010 goto out_stale;
2011 res->jiffies = cache->jiffies;
2012 res->cred = cache->cred;
2013 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002014 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002015 err = 0;
2016out:
2017 spin_unlock(&inode->i_lock);
2018 return err;
2019out_stale:
2020 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002021 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002022 spin_unlock(&inode->i_lock);
2023 nfs_access_free_entry(cache);
2024 return -ENOENT;
2025out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002026 spin_unlock(&inode->i_lock);
2027 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002028 return -ENOENT;
2029}
2030
2031static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2032{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002033 struct nfs_inode *nfsi = NFS_I(inode);
2034 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002035 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);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002053 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002054 spin_unlock(&inode->i_lock);
2055 return;
2056found:
2057 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002058 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2059 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002060 spin_unlock(&inode->i_lock);
2061 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Trond Myklebustaf22f942007-08-10 17:45:10 -04002064static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002066 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2067 if (cache == NULL)
2068 return;
2069 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002071 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002073
2074 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002075
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 */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002082 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002083 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002084 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);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002087 spin_unlock(&nfs_access_lru_lock);
2088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
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);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002105 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 nfs_access_add_cache(inode, &cache);
2114out:
Al Viroe6305c42008-07-15 21:03:57 -04002115 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return 0;
2117 return -EACCES;
2118}
2119
Trond Myklebustaf22f942007-08-10 17:45:10 -04002120static 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
Al Viroe6305c42008-07-15 21:03:57 -04002138int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 struct rpc_cred *cred;
2141 int res = 0;
2142
Chuck Lever91d5b472006-03-20 13:44:14 -05002143 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2144
Al Viroe6305c42008-07-15 21:03:57 -04002145 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 goto out;
2147 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002148 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 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)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002157 && (mask & MAY_OPEN)
2158 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 if (!NFS_PROTO(inode)->access)
2172 goto out_notsup;
2173
Trond Myklebust98a8e322008-03-12 12:25:28 -04002174 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (!IS_ERR(cred)) {
2176 res = nfs_do_access(inode, cred, mask);
2177 put_rpccred(cred);
2178 } else
2179 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002181 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2182 res = -EACCES;
2183
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002184 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2185 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return res;
2187out_notsup:
2188 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2189 if (res == 0)
2190 res = generic_permission(inode, mask, NULL);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
2194/*
2195 * Local variables:
2196 * version-control: t
2197 * kept-new-versions: 5
2198 * End:
2199 */