blob: 33b0ce7a97befc55a9d1374d7e23f21e2f237827 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/dir.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * nfs directory handling functions
7 *
8 * 10 Apr 1996 Added silly rename for unlink --okir
9 * 28 Sep 1996 Improved directory cache --okir
10 * 23 Aug 1997 Claus Heine claus@momo.math.rwth-aachen.de
11 * Re-implemented silly rename for unlink, newly implemented
12 * silly rename for nfs_rename() following the suggestions
13 * of Olaf Kirch (okir) found in this file.
14 * Following Linus comments on my original hack, this version
15 * depends only on the dcache stuff and doesn't touch the inode
16 * layer (iput() and friends).
17 * 6 Jun 1999 Cache readdir lookups in the page cache. -DaveM
18 */
19
20#include <linux/time.h>
21#include <linux/errno.h>
22#include <linux/stat.h>
23#include <linux/fcntl.h>
24#include <linux/string.h>
25#include <linux/kernel.h>
26#include <linux/slab.h>
27#include <linux/mm.h>
28#include <linux/sunrpc/clnt.h>
29#include <linux/nfs_fs.h>
30#include <linux/nfs_mount.h>
31#include <linux/pagemap.h>
Chuck Lever873101b2006-08-22 20:06:23 -040032#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/namei.h>
David Howells54ceac42006-08-22 20:06:13 -040034#include <linux/mount.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050038#include "iostat.h"
Adrian Bunk4c30d562007-11-21 15:04:31 -080039#include "internal.h"
Trond Myklebustcd9a1c02010-09-17 10:56:50 -040040#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* #define NFS_DEBUG_VERBOSE 1 */
43
44static int nfs_opendir(struct inode *, struct file *);
45static int nfs_readdir(struct file *, void *, filldir_t);
46static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
47static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
48static int nfs_mkdir(struct inode *, struct dentry *, int);
49static int nfs_rmdir(struct inode *, struct dentry *);
50static int nfs_unlink(struct inode *, struct dentry *);
51static int nfs_symlink(struct inode *, struct dentry *, const char *);
52static int nfs_link(struct dentry *, struct inode *, struct dentry *);
53static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
54static int nfs_rename(struct inode *, struct dentry *,
55 struct inode *, struct dentry *);
Christoph Hellwig7ea80852010-05-26 17:53:25 +020056static int nfs_fsync_dir(struct file *, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000057static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040058static int nfs_readdir_clear_array(struct page*, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080060const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000061 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .read = generic_read_dir,
63 .readdir = nfs_readdir,
64 .open = nfs_opendir,
65 .release = nfs_release,
66 .fsync = nfs_fsync_dir,
67};
68
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080069const struct inode_operations nfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .create = nfs_create,
71 .lookup = nfs_lookup,
72 .link = nfs_link,
73 .unlink = nfs_unlink,
74 .symlink = nfs_symlink,
75 .mkdir = nfs_mkdir,
76 .rmdir = nfs_rmdir,
77 .mknod = nfs_mknod,
78 .rename = nfs_rename,
79 .permission = nfs_permission,
80 .getattr = nfs_getattr,
81 .setattr = nfs_setattr,
82};
83
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040084const struct address_space_operations nfs_dir_addr_space_ops = {
85 .releasepage = nfs_readdir_clear_array,
86};
87
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000088#ifdef CONFIG_NFS_V3
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080089const struct inode_operations nfs3_dir_inode_operations = {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000090 .create = nfs_create,
91 .lookup = nfs_lookup,
92 .link = nfs_link,
93 .unlink = nfs_unlink,
94 .symlink = nfs_symlink,
95 .mkdir = nfs_mkdir,
96 .rmdir = nfs_rmdir,
97 .mknod = nfs_mknod,
98 .rename = nfs_rename,
99 .permission = nfs_permission,
100 .getattr = nfs_getattr,
101 .setattr = nfs_setattr,
102 .listxattr = nfs3_listxattr,
103 .getxattr = nfs3_getxattr,
104 .setxattr = nfs3_setxattr,
105 .removexattr = nfs3_removexattr,
106};
107#endif /* CONFIG_NFS_V3 */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_NFS_V4
110
111static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400112static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd);
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800113const struct inode_operations nfs4_dir_inode_operations = {
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400114 .create = nfs_open_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .lookup = nfs_atomic_lookup,
116 .link = nfs_link,
117 .unlink = nfs_unlink,
118 .symlink = nfs_symlink,
119 .mkdir = nfs_mkdir,
120 .rmdir = nfs_rmdir,
121 .mknod = nfs_mknod,
122 .rename = nfs_rename,
123 .permission = nfs_permission,
124 .getattr = nfs_getattr,
125 .setattr = nfs_setattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +0000126 .getxattr = nfs4_getxattr,
127 .setxattr = nfs4_setxattr,
128 .listxattr = nfs4_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131#endif /* CONFIG_NFS_V4 */
132
133/*
134 * Open file
135 */
136static int
137nfs_opendir(struct inode *inode, struct file *filp)
138{
Carsten Otte7451c4f2006-04-19 13:06:37 -0400139 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Chuck Lever6da24bc2008-06-11 17:55:58 -0400141 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400142 filp->f_path.dentry->d_parent->d_name.name,
143 filp->f_path.dentry->d_name.name);
144
145 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Call generic open code in order to cache credentials */
Carsten Otte7451c4f2006-04-19 13:06:37 -0400148 res = nfs_open(inode, filp);
Neil Brownf5a73672010-08-10 10:20:05 -0400149 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
150 /* This is a mountpoint, so d_revalidate will never
151 * have been called, so we need to refresh the
152 * inode (for close-open consistency) ourselves.
153 */
154 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return res;
157}
158
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400159struct nfs_cache_array_entry {
160 u64 cookie;
161 u64 ino;
162 struct qstr string;
163};
164
165struct nfs_cache_array {
166 unsigned int size;
167 int eof_index;
168 u64 last_cookie;
169 struct nfs_cache_array_entry array[0];
170};
171
172#define MAX_READDIR_ARRAY ((PAGE_SIZE - sizeof(struct nfs_cache_array)) / sizeof(struct nfs_cache_array_entry))
173
Al Viro0dbb4c62006-10-19 23:28:49 -0700174typedef __be32 * (*decode_dirent_t)(__be32 *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175typedef struct {
176 struct file *file;
177 struct page *page;
178 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000179 u64 *dir_cookie;
180 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400182
Neil Brown1f4eab72007-04-16 09:35:27 +1000183 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400184 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400185 unsigned int cache_entry_index;
186 unsigned int plus:1;
187 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188} nfs_readdir_descriptor_t;
189
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400190/*
191 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
193static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400194struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400196 if (page == NULL)
197 return ERR_PTR(-EIO);
198 return (struct nfs_cache_array *)kmap(page);
199}
200
201static
202void nfs_readdir_release_array(struct page *page)
203{
204 kunmap(page);
205}
206
207/*
208 * we are freeing strings created by nfs_add_to_readdir_array()
209 */
210static
211int nfs_readdir_clear_array(struct page *page, gfp_t mask)
212{
213 struct nfs_cache_array *array = nfs_readdir_get_array(page);
214 int i;
215 for (i = 0; i < array->size; i++)
216 kfree(array->array[i].string.name);
217 nfs_readdir_release_array(page);
218 return 0;
219}
220
221/*
222 * the caller is responsible for freeing qstr.name
223 * when called by nfs_readdir_add_to_array, the strings will be freed in
224 * nfs_clear_readdir_array()
225 */
226static
227void nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
228{
229 string->len = len;
230 string->name = kmemdup(name, len, GFP_KERNEL);
231 string->hash = full_name_hash(string->name, string->len);
232}
233
234static
235int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
236{
237 struct nfs_cache_array *array = nfs_readdir_get_array(page);
238 if (IS_ERR(array))
239 return PTR_ERR(array);
240 if (array->size >= MAX_READDIR_ARRAY) {
241 nfs_readdir_release_array(page);
242 return -EIO;
243 }
244
245 array->array[array->size].cookie = entry->prev_cookie;
246 array->last_cookie = entry->cookie;
247 array->array[array->size].ino = entry->ino;
248 nfs_readdir_make_qstr(&array->array[array->size].string, entry->name, entry->len);
249 if (entry->eof == 1)
250 array->eof_index = array->size;
251 array->size++;
252 nfs_readdir_release_array(page);
253 return 0;
254}
255
256static
257int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
258{
259 loff_t diff = desc->file->f_pos - desc->current_index;
260 unsigned int index;
261
262 if (diff < 0)
263 goto out_eof;
264 if (diff >= array->size) {
265 if (array->eof_index > 0)
266 goto out_eof;
267 desc->current_index += array->size;
268 return -EAGAIN;
269 }
270
271 index = (unsigned int)diff;
272 *desc->dir_cookie = array->array[index].cookie;
273 desc->cache_entry_index = index;
274 if (index == array->eof_index)
275 desc->eof = 1;
276 return 0;
277out_eof:
278 desc->eof = 1;
279 return -EBADCOOKIE;
280}
281
282static
283int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
284{
285 int i;
286 int status = -EAGAIN;
287
288 for (i = 0; i < array->size; i++) {
289 if (i == array->eof_index) {
290 desc->eof = 1;
291 status = -EBADCOOKIE;
292 }
293 if (array->array[i].cookie == *desc->dir_cookie) {
294 desc->cache_entry_index = i;
295 status = 0;
296 break;
297 }
298 }
299
300 return status;
301}
302
303static
304int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
305{
306 struct nfs_cache_array *array;
307 int status = -EBADCOOKIE;
308
309 if (desc->dir_cookie == NULL)
310 goto out;
311
312 array = nfs_readdir_get_array(desc->page);
313 if (IS_ERR(array)) {
314 status = PTR_ERR(array);
315 goto out;
316 }
317
318 if (*desc->dir_cookie == 0)
319 status = nfs_readdir_search_for_pos(array, desc);
320 else
321 status = nfs_readdir_search_for_cookie(array, desc);
322
323 nfs_readdir_release_array(desc->page);
324out:
325 return status;
326}
327
328/* Fill a page with xdr information before transferring to the cache page */
329static
330int nfs_readdir_xdr_filler(struct page *xdr_page, nfs_readdir_descriptor_t *desc,
331 struct nfs_entry *entry, struct file *file, struct inode *inode)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct rpc_cred *cred = nfs_file_cred(file);
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400334 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int error;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 again:
338 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400339 gencount = nfs_inc_attr_generation_counter();
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400340 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, xdr_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 NFS_SERVER(inode)->dtsize, desc->plus);
342 if (error < 0) {
343 /* We requested READDIRPLUS, but the server doesn't grok it */
344 if (error == -ENOTSUPP && desc->plus) {
345 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200346 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 desc->plus = 0;
348 goto again;
349 }
350 goto error;
351 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000352 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400353 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400354error:
355 return error;
356}
357
358/* Fill in an entry based on the xdr code stored in desc->page */
359static
360int xdr_decode(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, __be32 **ptr)
361{
362 __be32 *p = *ptr;
363 p = desc->decode(p, entry, desc->plus);
364 if (IS_ERR(p))
365 return PTR_ERR(p);
366 *ptr = p;
367
368 entry->fattr->time_start = desc->timestamp;
369 entry->fattr->gencount = desc->gencount;
370 return 0;
371}
372
373/* Perform conversion from xdr to cache array */
374static
375void nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
376 struct page *xdr_page, struct page *page)
377{
378 __be32 *ptr = kmap(xdr_page);
379 while (xdr_decode(desc, entry, &ptr) == 0) {
380 if (nfs_readdir_add_to_array(entry, page) == -1)
381 break;
382 }
383 kunmap(xdr_page);
384}
385
386static
387int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
388{
389 struct page *xdr_page;
390 struct nfs_entry entry;
391 struct file *file = desc->file;
392 struct nfs_cache_array *array;
393 int status = 0;
394
395 entry.prev_cookie = 0;
396 entry.cookie = *desc->dir_cookie;
397 entry.eof = 0;
398 entry.fh = nfs_alloc_fhandle();
399 entry.fattr = nfs_alloc_fattr();
400 if (entry.fh == NULL || entry.fattr == NULL)
401 goto out;
402
403 array = nfs_readdir_get_array(page);
404 memset(array, 0, sizeof(struct nfs_cache_array));
405 array->eof_index = -1;
406
407 xdr_page = alloc_page(GFP_KERNEL);
408 if (!xdr_page)
409 goto out_release_array;
410 do {
411 status = nfs_readdir_xdr_filler(xdr_page, desc, &entry, file, inode);
412 if (status < 0)
413 break;
414 nfs_readdir_page_filler(desc, &entry, xdr_page, page);
415 } while (array->eof_index < 0 && array->size < MAX_READDIR_ARRAY);
416
417 put_page(xdr_page);
418out_release_array:
419 nfs_readdir_release_array(page);
420out:
421 nfs_free_fattr(entry.fattr);
422 nfs_free_fhandle(entry.fh);
423 return status;
424}
425
426/*
427 * Now we cache directories properly, by converting xdr information
428 * to an array that can be used for lookups later. This results in
429 * fewer cache pages, since we can store more information on each page.
430 * We only need to convert from xdr once so future lookups are much simpler
431 */
432static
433int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
434{
435 struct inode *inode = desc->file->f_path.dentry->d_inode;
436
437 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1)
438 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400440
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400441 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700442 /* Should never happen */
443 nfs_zap_mapping(inode, inode->i_mapping);
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unlock_page(page);
446 return 0;
447 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return -EIO;
450}
451
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400452static
453void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 page_cache_release(desc->page);
456 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400459static
460struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400462 struct page *page;
463 page = read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
464 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
465 if (IS_ERR(page))
466 desc->eof = 1;
467 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400471 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000472 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400473static
474int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000475{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400476 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000477
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400478 desc->page = get_cache_page(desc);
479 if (IS_ERR(desc->page))
480 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000481
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400482 res = nfs_readdir_search_array(desc);
483 if (res == 0)
484 return 0;
485 cache_page_release(desc);
486 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000487}
488
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400489/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static inline
491int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
492{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400493 int res = -EAGAIN;
Olivier Galibert00a92642005-06-22 17:16:29 +0000494
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400495 while (1) {
496 res = find_cache_page(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (res != -EAGAIN)
498 break;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400499 desc->page_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return res;
502}
503
504static inline unsigned int dt_type(struct inode *inode)
505{
506 return (inode->i_mode >> 12) & 15;
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/*
510 * Once we've found the start of the dirent within a page: fill 'er up...
511 */
512static
513int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
514 filldir_t filldir)
515{
516 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400517 int i = 0;
518 int res = 0;
519 struct nfs_cache_array *array = NULL;
520 unsigned int d_type = DT_UNKNOWN;
521 struct dentry *dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400523 array = nfs_readdir_get_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400525 for (i = desc->cache_entry_index; i < array->size; i++) {
526 d_type = DT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400528 res = filldir(dirent, array->array[i].string.name,
529 array->array[i].string.len, file->f_pos,
530 nfs_compat_user_ino64(array->array[i].ino), d_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (res < 0)
532 break;
Olivier Galibert00a92642005-06-22 17:16:29 +0000533 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400534 desc->cache_entry_index = i;
535 if (i < (array->size-1))
536 *desc->dir_cookie = array->array[i+1].cookie;
537 else
538 *desc->dir_cookie = array->last_cookie;
539 if (i == array->eof_index) {
540 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400544
545 nfs_readdir_release_array(desc->page);
546 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (dentry != NULL)
548 dput(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500549 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
550 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return res;
552}
553
554/*
555 * If we cannot find a cookie in our cache, we suspect that this is
556 * because it points to a deleted file, so we ask the server to return
557 * whatever it thinks is the next entry. We then feed this to filldir.
558 * If all goes well, we should then be able to find our way round the
559 * cache on the next call to readdir_search_pagecache();
560 *
561 * NOTE: we cannot add the anonymous page to the pagecache because
562 * the data it contains might not be page aligned. Besides,
563 * we should already have a complete representation of the
564 * directory in the page cache by the time we get here.
565 */
566static inline
567int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
568 filldir_t filldir)
569{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 struct page *page = NULL;
571 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400572 struct inode *inode = desc->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500574 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
575 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 page = alloc_page(GFP_HIGHUSER);
578 if (!page) {
579 status = -ENOMEM;
580 goto out;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400583 if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) {
584 status = -EIO;
585 goto out_release;
586 }
587
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400588 desc->page_index = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400589 desc->page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 status = nfs_do_filldir(desc, dirent, filldir);
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500593 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700594 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return status;
596 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400597 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 goto out;
599}
600
Olivier Galibert00a92642005-06-22 17:16:29 +0000601/* The file offset position represents the dirent entry number. A
602 last cookie cache takes care of the common case of reading the
603 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
606{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800607 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct inode *inode = dentry->d_inode;
609 nfs_readdir_descriptor_t my_desc,
610 *desc = &my_desc;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400611 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Chuck Lever6da24bc2008-06-11 17:55:58 -0400613 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500614 dentry->d_parent->d_name.name, dentry->d_name.name,
615 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500616 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000619 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000620 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000621 * to either find the entry with the appropriate number or
622 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624 memset(desc, 0, sizeof(*desc));
625
626 desc->file = filp;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400627 desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 desc->decode = NFS_PROTO(inode)->decode_dirent;
629 desc->plus = NFS_USE_READDIRPLUS(inode);
630
Trond Myklebust565277f2007-10-15 18:17:53 -0400631 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800632 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500633 if (res < 0)
634 goto out;
635
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400636 while (desc->eof != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (res == -EBADCOOKIE) {
640 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400641 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Or that the server has 'lost' a cookie */
643 res = uncached_readdir(desc, dirent, filldir);
644 if (res >= 0)
645 continue;
646 }
647 res = 0;
648 break;
649 }
650 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200651 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400653 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400655 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 continue;
657 }
658 if (res < 0)
659 break;
660
661 res = nfs_do_filldir(desc, dirent, filldir);
662 if (res < 0) {
663 res = 0;
664 break;
665 }
666 }
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500667out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400668 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500669 if (res > 0)
670 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400671 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500672 dentry->d_parent->d_name.name, dentry->d_name.name,
673 res);
674 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Trond Myklebust10afec92007-05-14 17:16:04 -0400677static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000678{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400679 struct dentry *dentry = filp->f_path.dentry;
680 struct inode *inode = dentry->d_inode;
681
Chuck Lever6da24bc2008-06-11 17:55:58 -0400682 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400683 dentry->d_parent->d_name.name,
684 dentry->d_name.name,
685 offset, origin);
686
687 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000688 switch (origin) {
689 case 1:
690 offset += filp->f_pos;
691 case 0:
692 if (offset >= 0)
693 break;
694 default:
695 offset = -EINVAL;
696 goto out;
697 }
698 if (offset != filp->f_pos) {
699 filp->f_pos = offset;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400700 nfs_file_open_context(filp)->dir_cookie = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000701 }
702out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400703 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000704 return offset;
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/*
708 * All directory operations under NFS are synchronous, so fsync()
709 * is a dummy operation.
710 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200711static int nfs_fsync_dir(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200713 struct dentry *dentry = filp->f_path.dentry;
714
Chuck Lever6da24bc2008-06-11 17:55:58 -0400715 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500716 dentry->d_parent->d_name.name, dentry->d_name.name,
717 datasync);
718
Chuck Lever54917782008-05-27 16:29:07 -0400719 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return 0;
721}
722
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400723/**
724 * nfs_force_lookup_revalidate - Mark the directory as having changed
725 * @dir - pointer to directory inode
726 *
727 * This forces the revalidation code in nfs_lookup_revalidate() to do a
728 * full lookup on all child dentries of 'dir' whenever a change occurs
729 * on the server that might have invalidated our dcache.
730 *
731 * The caller should be holding dir->i_lock
732 */
733void nfs_force_lookup_revalidate(struct inode *dir)
734{
Trond Myklebust011935a2008-10-14 19:24:50 -0400735 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/*
739 * A check for whether or not the parent directory has changed.
740 * In the case it has, we assume that the dentries are untrustworthy
741 * and may need to be looked up again.
742 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500743static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 if (IS_ROOT(dentry))
746 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400747 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
748 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400749 if (!nfs_verify_change_attribute(dir, dentry->d_time))
750 return 0;
751 /* Revalidate nfsi->cache_change_attribute before we declare a match */
752 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
753 return 0;
754 if (!nfs_verify_change_attribute(dir, dentry->d_time))
755 return 0;
756 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400760 * Return the intent data that applies to this particular path component
761 *
762 * Note that the current set of intents only apply to the very last
763 * component of the path.
764 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
765 */
766static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
767{
768 if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
769 return 0;
770 return nd->flags & mask;
771}
772
773/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400774 * Use intent information to check whether or not we're going to do
775 * an O_EXCL create using this path component.
776 */
777static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
778{
779 if (NFS_PROTO(dir)->version == 2)
780 return 0;
Al Viro35165862008-08-05 03:00:49 -0400781 return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
Trond Myklebusta12802c2007-10-02 19:13:04 -0400782}
783
784/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400785 * Inode and filehandle revalidation for lookups.
786 *
787 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
788 * or if the intent information indicates that we're about to open this
789 * particular file and the "nocto" mount flag is not set.
790 *
791 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static inline
793int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
794{
795 struct nfs_server *server = NFS_SERVER(inode);
796
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500797 if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400801 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto out_force;
803 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400804 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400805 !(server->flags & NFS_MOUNT_NOCTO) &&
806 (S_ISREG(inode->i_mode) ||
807 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 goto out_force;
Trond Myklebust4f48af42007-10-02 23:13:32 -0400809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811 return nfs_revalidate_inode(server, inode);
812out_force:
813 return __nfs_revalidate_inode(server, inode);
814}
815
816/*
817 * We judge how long we want to trust negative
818 * dentries by looking at the parent inode mtime.
819 *
820 * If parent mtime has changed, we revalidate, else we wait for a
821 * period corresponding to the parent's attribute cache timeout value.
822 */
823static inline
824int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
825 struct nameidata *nd)
826{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400828 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400830 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
831 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return !nfs_check_verifier(dir, dentry);
833}
834
835/*
836 * This is called every time the dcache has a lookup hit,
837 * and we should check whether we can really trust that
838 * lookup.
839 *
840 * NOTE! The hit can be a negative hit too, don't assume
841 * we have an inode!
842 *
843 * If the parent directory is seen to have changed, we throw out the
844 * cached dentry and do a new lookup.
845 */
846static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
847{
848 struct inode *dir;
849 struct inode *inode;
850 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400851 struct nfs_fh *fhandle = NULL;
852 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -0500857 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 inode = dentry->d_inode;
859
860 if (!inode) {
861 if (nfs_neg_need_reval(dir, dentry, nd))
862 goto out_bad;
863 goto out_valid;
864 }
865
866 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500867 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700868 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500869 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 goto out_bad;
871 }
872
Trond Myklebust15860ab2008-12-23 15:21:54 -0500873 if (nfs_have_delegation(inode, FMODE_READ))
874 goto out_set_verifier;
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* Force a full look up iff the parent directory has changed */
Trond Myklebusta12802c2007-10-02 19:13:04 -0400877 if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (nfs_lookup_verify_inode(inode, nd))
879 goto out_zap_parent;
880 goto out_valid;
881 }
882
883 if (NFS_STALE(inode))
884 goto out_bad;
885
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400886 error = -ENOMEM;
887 fhandle = nfs_alloc_fhandle();
888 fattr = nfs_alloc_fattr();
889 if (fhandle == NULL || fattr == NULL)
890 goto out_error;
891
892 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (error)
894 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400895 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400897 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 goto out_bad;
899
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400900 nfs_free_fattr(fattr);
901 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -0500902out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -0400903 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 out_valid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500906 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700907 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500908 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return 1;
910out_zap_parent:
911 nfs_zap_caches(dir);
912 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -0400913 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (inode && S_ISDIR(inode->i_mode)) {
915 /* Purge readdir caches. */
916 nfs_zap_caches(inode);
917 /* If we have submounts, don't unhash ! */
918 if (have_submounts(dentry))
919 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +0100920 if (dentry->d_flags & DCACHE_DISCONNECTED)
921 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 shrink_dcache_parent(dentry);
923 }
924 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400925 nfs_free_fattr(fattr);
926 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500928 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700929 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500930 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400932out_error:
933 nfs_free_fattr(fattr);
934 nfs_free_fhandle(fhandle);
935 dput(parent);
936 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
937 __func__, dentry->d_parent->d_name.name,
938 dentry->d_name.name, error);
939 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942/*
943 * This is called from dput() when d_count is going to 0.
944 */
945static int nfs_dentry_delete(struct dentry *dentry)
946{
947 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
948 dentry->d_parent->d_name.name, dentry->d_name.name,
949 dentry->d_flags);
950
Trond Myklebust77f11192008-01-28 19:43:19 -0500951 /* Unhash any dentry with a stale inode */
952 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
953 return 1;
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
956 /* Unhash it, so that ->d_iput() would be called */
957 return 1;
958 }
959 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
960 /* Unhash it, so that ancestors of killed async unlink
961 * files will be cleaned up during umount */
962 return 1;
963 }
964 return 0;
965
966}
967
Trond Myklebust1b83d702008-06-11 15:44:04 -0400968static void nfs_drop_nlink(struct inode *inode)
969{
970 spin_lock(&inode->i_lock);
971 if (inode->i_nlink > 0)
972 drop_nlink(inode);
973 spin_unlock(&inode->i_lock);
974}
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976/*
977 * Called when the dentry loses inode.
978 * We use it to clean up silly-renamed files.
979 */
980static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
981{
Neil Brown83672d32007-02-26 12:48:25 +1100982 if (S_ISDIR(inode->i_mode))
983 /* drop any readdir cache as it could easily be old */
984 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700987 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400988 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 iput(inode);
991}
992
Al Virof786aa92009-02-20 05:51:22 +0000993const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 .d_revalidate = nfs_lookup_revalidate,
995 .d_delete = nfs_dentry_delete,
996 .d_iput = nfs_dentry_iput,
997};
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
1000{
1001 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001002 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001004 struct nfs_fh *fhandle = NULL;
1005 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1009 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001010 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 res = ERR_PTR(-ENAMETOOLONG);
1013 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1014 goto out;
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1017
Trond Myklebustfd684072006-09-05 12:27:44 -04001018 /*
1019 * If we're doing an exclusive create, optimize away the lookup
1020 * but don't hash the dentry.
1021 */
1022 if (nfs_is_exclusive_create(dir, nd)) {
1023 d_instantiate(dentry, NULL);
1024 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001025 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001028 res = ERR_PTR(-ENOMEM);
1029 fhandle = nfs_alloc_fhandle();
1030 fattr = nfs_alloc_fattr();
1031 if (fhandle == NULL || fattr == NULL)
1032 goto out;
1033
Trond Myklebust565277f2007-10-15 18:17:53 -04001034 parent = dentry->d_parent;
1035 /* Protect against concurrent sillydeletes */
1036 nfs_block_sillyrename(parent);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001037 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (error == -ENOENT)
1039 goto no_entry;
1040 if (error < 0) {
1041 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001042 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001044 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001045 res = (struct dentry *)inode;
1046 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001047 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001050 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001051 if (res != NULL) {
1052 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001053 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001057out_unblock_sillyrename:
1058 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001060 nfs_free_fattr(fattr);
1061 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return res;
1063}
1064
1065#ifdef CONFIG_NFS_V4
1066static int nfs_open_revalidate(struct dentry *, struct nameidata *);
1067
Al Virof786aa92009-02-20 05:51:22 +00001068const struct dentry_operations nfs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 .d_revalidate = nfs_open_revalidate,
1070 .d_delete = nfs_dentry_delete,
1071 .d_iput = nfs_dentry_iput,
1072};
1073
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001074/*
1075 * Use intent information to determine whether we need to substitute
1076 * the NFSv4-style stateful OPEN for the LOOKUP call
1077 */
Trond Myklebust5584c302008-12-23 15:21:54 -05001078static int is_atomic_open(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001080 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
1082 /* NFS does not (yet) have a stateful open for directories */
1083 if (nd->flags & LOOKUP_DIRECTORY)
1084 return 0;
1085 /* Are we trying to write to a read only partition? */
Dave Hansen2c463e92008-02-15 14:37:56 -08001086 if (__mnt_is_readonly(nd->path.mnt) &&
1087 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 0;
1089 return 1;
1090}
1091
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001092static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
1093{
1094 struct path path = {
1095 .mnt = nd->path.mnt,
1096 .dentry = dentry,
1097 };
1098 struct nfs_open_context *ctx;
1099 struct rpc_cred *cred;
1100 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
1101
1102 cred = rpc_lookup_cred();
1103 if (IS_ERR(cred))
1104 return ERR_CAST(cred);
1105 ctx = alloc_nfs_open_context(&path, cred, fmode);
1106 put_rpccred(cred);
1107 if (ctx == NULL)
1108 return ERR_PTR(-ENOMEM);
1109 return ctx;
1110}
1111
1112static int do_open(struct inode *inode, struct file *filp)
1113{
1114 nfs_fscache_set_inode_cookie(inode, filp);
1115 return 0;
1116}
1117
1118static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
1119{
1120 struct file *filp;
1121 int ret = 0;
1122
1123 /* If the open_intent is for execute, we have an extra check to make */
1124 if (ctx->mode & FMODE_EXEC) {
1125 ret = nfs_may_open(ctx->path.dentry->d_inode,
1126 ctx->cred,
1127 nd->intent.open.flags);
1128 if (ret < 0)
1129 goto out;
1130 }
1131 filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
1132 if (IS_ERR(filp))
1133 ret = PTR_ERR(filp);
1134 else
1135 nfs_file_set_open_context(filp, ctx);
1136out:
1137 put_nfs_open_context(ctx);
1138 return ret;
1139}
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1142{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001143 struct nfs_open_context *ctx;
1144 struct iattr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 struct dentry *res = NULL;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001146 struct inode *inode;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001147 int open_flags;
Trond Myklebust898f6352010-10-23 11:24:25 -04001148 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001150 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
1151 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* Check that we are indeed trying to open this file */
Trond Myklebust5584c302008-12-23 15:21:54 -05001154 if (!is_atomic_open(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 goto no_open;
1156
1157 if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
1158 res = ERR_PTR(-ENAMETOOLONG);
1159 goto out;
1160 }
1161 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1162
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001163 /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
1164 * the dentry. */
Al Viro35165862008-08-05 03:00:49 -04001165 if (nd->flags & LOOKUP_EXCL) {
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001166 d_instantiate(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001167 goto out;
1168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001170 ctx = nameidata_to_nfs_open_context(dentry, nd);
1171 res = ERR_CAST(ctx);
1172 if (IS_ERR(ctx))
1173 goto out;
1174
1175 open_flags = nd->intent.open.flags;
1176 if (nd->flags & LOOKUP_CREATE) {
1177 attr.ia_mode = nd->intent.open.create_mode;
1178 attr.ia_valid = ATTR_MODE;
1179 if (!IS_POSIXACL(dir))
1180 attr.ia_mode &= ~current_umask();
1181 } else {
Trond Myklebust898f6352010-10-23 11:24:25 -04001182 open_flags &= ~(O_EXCL | O_CREAT);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001183 attr.ia_valid = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001184 }
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* Open the file on the server */
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001187 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001188 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001189 if (IS_ERR(inode)) {
1190 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001191 put_nfs_open_context(ctx);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001192 switch (PTR_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /* Make a negative dentry */
1194 case -ENOENT:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001195 d_add(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001196 res = NULL;
1197 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* This turned out not to be a regular file */
Trond Myklebust80e60632010-03-25 13:51:05 -04001199 case -EISDIR:
Trond Myklebust6f926b52005-10-18 14:20:18 -07001200 case -ENOTDIR:
1201 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 case -ELOOP:
1203 if (!(nd->intent.open.flags & O_NOFOLLOW))
1204 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 /* case -EINVAL: */
1206 default:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001207 res = ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 goto out;
1209 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001210 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001211 res = d_add_unique(dentry, inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001212 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001213 if (res != NULL) {
1214 dput(ctx->path.dentry);
1215 ctx->path.dentry = dget(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 dentry = res;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001217 }
Trond Myklebust898f6352010-10-23 11:24:25 -04001218 err = nfs_intent_set_file(nd, ctx);
1219 if (err < 0) {
1220 if (res != NULL)
1221 dput(res);
1222 return ERR_PTR(err);
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224out:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001225 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return res;
1227no_open:
1228 return nfs_lookup(dir, dentry, nd);
1229}
1230
1231static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1232{
1233 struct dentry *parent = NULL;
1234 struct inode *inode = dentry->d_inode;
1235 struct inode *dir;
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001236 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 int openflags, ret = 0;
1238
Trond Myklebust1f063d22010-04-22 15:35:55 -04001239 if (!is_atomic_open(nd) || d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001240 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 parent = dget_parent(dentry);
1243 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* We can't create new files in nfs_open_revalidate(), so we
1246 * optimize away revalidation of negative dentries.
1247 */
Trond Myklebust216d5d062007-10-01 20:10:12 -04001248 if (inode == NULL) {
1249 if (!nfs_neg_need_reval(dir, dentry, nd))
1250 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 goto out;
Trond Myklebust216d5d062007-10-01 20:10:12 -04001252 }
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /* NFS only supports OPEN on regular files */
1255 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001256 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 openflags = nd->intent.open.flags;
1258 /* We cannot do exclusive creation on a positive dentry */
1259 if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
Trond Myklebust5584c302008-12-23 15:21:54 -05001260 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /* We can't create new files, or truncate existing ones here */
Trond Myklebust0a377cf2010-08-18 09:25:42 -04001262 openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001264 ctx = nameidata_to_nfs_open_context(dentry, nd);
1265 ret = PTR_ERR(ctx);
1266 if (IS_ERR(ctx))
1267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001269 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 * operations that change the directory. We therefore save the
1271 * change attribute *before* we do the RPC call.
1272 */
Trond Myklebust2b484292010-09-17 10:56:51 -04001273 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
Trond Myklebust535918f2010-09-17 10:56:51 -04001274 if (IS_ERR(inode)) {
1275 ret = PTR_ERR(inode);
1276 switch (ret) {
1277 case -EPERM:
1278 case -EACCES:
1279 case -EDQUOT:
1280 case -ENOSPC:
1281 case -EROFS:
1282 goto out_put_ctx;
1283 default:
1284 goto out_drop;
1285 }
1286 }
1287 iput(inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001288 if (inode != dentry->d_inode)
Trond Myklebust535918f2010-09-17 10:56:51 -04001289 goto out_drop;
Trond Myklebust898f6352010-10-23 11:24:25 -04001290
1291 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1292 ret = nfs_intent_set_file(nd, ctx);
1293 if (ret >= 0)
1294 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295out:
1296 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001298out_drop:
1299 d_drop(dentry);
1300 ret = 0;
1301out_put_ctx:
1302 put_nfs_open_context(ctx);
1303 goto out;
1304
Trond Myklebust5584c302008-12-23 15:21:54 -05001305no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001307no_open:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return nfs_lookup_revalidate(dentry, nd);
1309}
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001310
1311static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
1312 struct nameidata *nd)
1313{
1314 struct nfs_open_context *ctx = NULL;
1315 struct iattr attr;
1316 int error;
1317 int open_flags = 0;
1318
1319 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1320 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1321
1322 attr.ia_mode = mode;
1323 attr.ia_valid = ATTR_MODE;
1324
1325 if ((nd->flags & LOOKUP_CREATE) != 0) {
1326 open_flags = nd->intent.open.flags;
1327
1328 ctx = nameidata_to_nfs_open_context(dentry, nd);
1329 error = PTR_ERR(ctx);
1330 if (IS_ERR(ctx))
Trond Myklebust898f6352010-10-23 11:24:25 -04001331 goto out_err_drop;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001332 }
1333
1334 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
1335 if (error != 0)
1336 goto out_put_ctx;
Trond Myklebust898f6352010-10-23 11:24:25 -04001337 if (ctx != NULL) {
1338 error = nfs_intent_set_file(nd, ctx);
1339 if (error < 0)
1340 goto out_err;
1341 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001342 return 0;
1343out_put_ctx:
1344 if (ctx != NULL)
1345 put_nfs_open_context(ctx);
Trond Myklebust898f6352010-10-23 11:24:25 -04001346out_err_drop:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001347 d_drop(dentry);
Trond Myklebust898f6352010-10-23 11:24:25 -04001348out_err:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001349 return error;
1350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352#endif /* CONFIG_NFSV4 */
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354/*
1355 * Code common to create, mkdir, and mknod.
1356 */
1357int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1358 struct nfs_fattr *fattr)
1359{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001360 struct dentry *parent = dget_parent(dentry);
1361 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 struct inode *inode;
1363 int error = -EACCES;
1364
Trond Myklebustfab728e2007-09-29 17:41:33 -04001365 d_drop(dentry);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /* We may have been initialized further down */
1368 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (fhandle->size == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1372 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001373 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001375 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1377 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001378 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001380 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001383 error = PTR_ERR(inode);
1384 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001385 goto out_error;
1386 d_add(dentry, inode);
1387out:
1388 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001390out_error:
1391 nfs_mark_for_revalidate(dir);
1392 dput(parent);
1393 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396/*
1397 * Following a failed create operation, we drop the dentry rather
1398 * than retain a negative dentry. This avoids a problem in the event
1399 * that the operation succeeded on the server, but an error in the
1400 * reply path made it appear to have failed.
1401 */
1402static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1403 struct nameidata *nd)
1404{
1405 struct iattr attr;
1406 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001408 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1409 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 attr.ia_mode = mode;
1412 attr.ia_valid = ATTR_MODE;
1413
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001414 error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (error != 0)
1416 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return 0;
1418out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 d_drop(dentry);
1420 return error;
1421}
1422
1423/*
1424 * See comments for nfs_proc_create regarding failed operations.
1425 */
1426static int
1427nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1428{
1429 struct iattr attr;
1430 int status;
1431
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001432 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1433 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 if (!new_valid_dev(rdev))
1436 return -EINVAL;
1437
1438 attr.ia_mode = mode;
1439 attr.ia_valid = ATTR_MODE;
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (status != 0)
1443 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return 0;
1445out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 d_drop(dentry);
1447 return status;
1448}
1449
1450/*
1451 * See comments for nfs_proc_create regarding failed operations.
1452 */
1453static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1454{
1455 struct iattr attr;
1456 int error;
1457
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001458 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1459 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 attr.ia_valid = ATTR_MODE;
1462 attr.ia_mode = mode | S_IFDIR;
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (error != 0)
1466 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return 0;
1468out_err:
1469 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return error;
1471}
1472
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001473static void nfs_dentry_handle_enoent(struct dentry *dentry)
1474{
1475 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1476 d_delete(dentry);
1477}
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1480{
1481 int error;
1482
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001483 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1484 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1487 /* Ensure the VFS deletes this inode */
1488 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001489 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001490 else if (error == -ENOENT)
1491 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 return error;
1494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496/*
1497 * Remove a file after making sure there are no pending writes,
1498 * and after checking that the file has only one user.
1499 *
1500 * We invalidate the attribute cache and free the inode prior to the operation
1501 * to avoid possible races if the server reuses the inode.
1502 */
1503static int nfs_safe_remove(struct dentry *dentry)
1504{
1505 struct inode *dir = dentry->d_parent->d_inode;
1506 struct inode *inode = dentry->d_inode;
1507 int error = -EBUSY;
1508
1509 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1510 dentry->d_parent->d_name.name, dentry->d_name.name);
1511
1512 /* If the dentry was sillyrenamed, we simply call d_delete() */
1513 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1514 error = 0;
1515 goto out;
1516 }
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001519 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1521 /* The VFS may want to delete this inode */
1522 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001523 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001524 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else
1526 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001527 if (error == -ENOENT)
1528 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529out:
1530 return error;
1531}
1532
1533/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1534 * belongs to an active ".nfs..." file and we return -EBUSY.
1535 *
1536 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1537 */
1538static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1539{
1540 int error;
1541 int need_rehash = 0;
1542
1543 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1544 dir->i_ino, dentry->d_name.name);
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 spin_lock(&dcache_lock);
1547 spin_lock(&dentry->d_lock);
1548 if (atomic_read(&dentry->d_count) > 1) {
1549 spin_unlock(&dentry->d_lock);
1550 spin_unlock(&dcache_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001551 /* Start asynchronous writeout of the inode */
1552 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return error;
1555 }
1556 if (!d_unhashed(dentry)) {
1557 __d_drop(dentry);
1558 need_rehash = 1;
1559 }
1560 spin_unlock(&dentry->d_lock);
1561 spin_unlock(&dcache_lock);
1562 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001563 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1565 } else if (need_rehash)
1566 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return error;
1568}
1569
Chuck Lever873101b2006-08-22 20:06:23 -04001570/*
1571 * To create a symbolic link, most file systems instantiate a new inode,
1572 * add a page to it containing the path, then write it out to the disk
1573 * using prepare_write/commit_write.
1574 *
1575 * Unfortunately the NFS client can't create the in-core inode first
1576 * because it needs a file handle to create an in-core inode (see
1577 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1578 * symlink request has completed on the server.
1579 *
1580 * So instead we allocate a raw page, copy the symname into it, then do
1581 * the SYMLINK request with the page as the buffer. If it succeeds, we
1582 * now have a new file handle and can instantiate an in-core NFS inode
1583 * and move the raw page into its mapping.
1584 */
1585static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Chuck Lever873101b2006-08-22 20:06:23 -04001587 struct pagevec lru_pvec;
1588 struct page *page;
1589 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001591 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 int error;
1593
1594 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1595 dir->i_ino, dentry->d_name.name, symname);
1596
Chuck Lever873101b2006-08-22 20:06:23 -04001597 if (pathlen > PAGE_SIZE)
1598 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Chuck Lever873101b2006-08-22 20:06:23 -04001600 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1601 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Jeff Layton83d93f22007-06-07 09:58:08 -04001603 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001604 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001605 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001606
1607 kaddr = kmap_atomic(page, KM_USER0);
1608 memcpy(kaddr, symname, pathlen);
1609 if (pathlen < PAGE_SIZE)
1610 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1611 kunmap_atomic(kaddr, KM_USER0);
1612
Chuck Lever94a6d752006-08-22 20:06:23 -04001613 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001614 if (error != 0) {
1615 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1616 dir->i_sb->s_id, dir->i_ino,
1617 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001619 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001620 return error;
1621 }
1622
1623 /*
1624 * No big deal if we can't add this page to the page cache here.
1625 * READLINK will get the missing page from the server if needed.
1626 */
1627 pagevec_init(&lru_pvec, 0);
1628 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1629 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001630 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001631 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001632 SetPageUptodate(page);
1633 unlock_page(page);
1634 } else
1635 __free_page(page);
1636
Chuck Lever873101b2006-08-22 20:06:23 -04001637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
1640static int
1641nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1642{
1643 struct inode *inode = old_dentry->d_inode;
1644 int error;
1645
1646 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1647 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1648 dentry->d_parent->d_name.name, dentry->d_name.name);
1649
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001650 nfs_inode_return_delegation(inode);
1651
Trond Myklebust9697d232007-10-02 21:58:05 -04001652 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001654 if (error == 0) {
1655 atomic_inc(&inode->i_count);
Trond Myklebust9697d232007-10-02 21:58:05 -04001656 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return error;
1659}
1660
1661/*
1662 * RENAME
1663 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1664 * different file handle for the same inode after a rename (e.g. when
1665 * moving to a different directory). A fail-safe method to do so would
1666 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1667 * rename the old file using the sillyrename stuff. This way, the original
1668 * file in old_dir will go away when the last process iput()s the inode.
1669 *
1670 * FIXED.
1671 *
1672 * It actually works quite well. One needs to have the possibility for
1673 * at least one ".nfs..." file in each directory the file ever gets
1674 * moved or linked to which happens automagically with the new
1675 * implementation that only depends on the dcache stuff instead of
1676 * using the inode layer
1677 *
1678 * Unfortunately, things are a little more complicated than indicated
1679 * above. For a cross-directory move, we want to make sure we can get
1680 * rid of the old inode after the operation. This means there must be
1681 * no pending writes (if it's a file), and the use count must be 1.
1682 * If these conditions are met, we can drop the dentries before doing
1683 * the rename.
1684 */
1685static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1686 struct inode *new_dir, struct dentry *new_dentry)
1687{
1688 struct inode *old_inode = old_dentry->d_inode;
1689 struct inode *new_inode = new_dentry->d_inode;
1690 struct dentry *dentry = NULL, *rehash = NULL;
1691 int error = -EBUSY;
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1694 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1695 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1696 atomic_read(&new_dentry->d_count));
1697
1698 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001699 * For non-directories, check whether the target is busy and if so,
1700 * make a copy of the dentry and then do a silly-rename. If the
1701 * silly-rename succeeds, the copied dentry is hashed and becomes
1702 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001704 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1705 /*
1706 * To prevent any new references to the target during the
1707 * rename, we unhash the dentry in advance.
1708 */
1709 if (!d_unhashed(new_dentry)) {
1710 d_drop(new_dentry);
1711 rehash = new_dentry;
1712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Miklos Szeredi27226102009-12-03 15:58:56 -05001714 if (atomic_read(&new_dentry->d_count) > 2) {
1715 int err;
1716
1717 /* copy the target dentry's name */
1718 dentry = d_alloc(new_dentry->d_parent,
1719 &new_dentry->d_name);
1720 if (!dentry)
1721 goto out;
1722
1723 /* silly-rename the existing target ... */
1724 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001725 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001726 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001727
1728 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001729 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001730 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001731 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Trond Myklebustcae7a072005-10-18 14:20:19 -07001734 nfs_inode_return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001735 if (new_inode != NULL)
Trond Myklebust24174112006-01-03 09:55:33 +01001736 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1739 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001740 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741out:
1742 if (rehash)
1743 d_rehash(rehash);
1744 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001745 if (new_inode != NULL)
1746 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001747 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001748 nfs_set_verifier(new_dentry,
1749 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001750 } else if (error == -ENOENT)
1751 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 /* new dentry created? */
1754 if (dentry)
1755 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return error;
1757}
1758
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001759static DEFINE_SPINLOCK(nfs_access_lru_lock);
1760static LIST_HEAD(nfs_access_lru_list);
1761static atomic_long_t nfs_access_nr_entries;
1762
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001763static void nfs_access_free_entry(struct nfs_access_entry *entry)
1764{
1765 put_rpccred(entry->cred);
1766 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001767 smp_mb__before_atomic_dec();
1768 atomic_long_dec(&nfs_access_nr_entries);
1769 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001770}
1771
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001772static void nfs_access_free_list(struct list_head *head)
1773{
1774 struct nfs_access_entry *cache;
1775
1776 while (!list_empty(head)) {
1777 cache = list_entry(head->next, struct nfs_access_entry, lru);
1778 list_del(&cache->lru);
1779 nfs_access_free_entry(cache);
1780 }
1781}
1782
Dave Chinner7f8275d2010-07-19 14:56:17 +10001783int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Trond Myklebust979df722006-07-25 11:28:19 -04001784{
1785 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001786 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001787 struct nfs_access_entry *cache;
1788
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001789 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1790 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001791
Trond Myklebusta50f7952007-06-05 19:23:43 -04001792 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001793 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001794 struct inode *inode;
1795
1796 if (nr_to_scan-- == 0)
1797 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001798 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001799 spin_lock(&inode->i_lock);
1800 if (list_empty(&nfsi->access_cache_entry_lru))
1801 goto remove_lru_entry;
1802 cache = list_entry(nfsi->access_cache_entry_lru.next,
1803 struct nfs_access_entry, lru);
1804 list_move(&cache->lru, &head);
1805 rb_erase(&cache->rb_node, &nfsi->access_cache);
1806 if (!list_empty(&nfsi->access_cache_entry_lru))
1807 list_move_tail(&nfsi->access_cache_inode_lru,
1808 &nfs_access_lru_list);
1809 else {
1810remove_lru_entry:
1811 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001812 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001813 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001814 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001815 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001816 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001817 }
1818 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001819 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001820 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1821}
1822
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001823static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001824{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001825 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001826 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001827 struct nfs_access_entry *entry;
1828
1829 /* Unhook entries from the cache */
1830 while ((n = rb_first(root_node)) != NULL) {
1831 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1832 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001833 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001834 }
1835 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001836}
1837
1838void nfs_access_zap_cache(struct inode *inode)
1839{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001840 LIST_HEAD(head);
1841
1842 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1843 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001844 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001845 spin_lock(&nfs_access_lru_lock);
1846 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001847 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001848
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001849 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001850 __nfs_access_zap_cache(NFS_I(inode), &head);
1851 spin_unlock(&inode->i_lock);
1852 spin_unlock(&nfs_access_lru_lock);
1853 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001854}
1855
1856static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
1857{
1858 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
1859 struct nfs_access_entry *entry;
1860
1861 while (n != NULL) {
1862 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1863
1864 if (cred < entry->cred)
1865 n = n->rb_left;
1866 else if (cred > entry->cred)
1867 n = n->rb_right;
1868 else
1869 return entry;
1870 }
1871 return NULL;
1872}
1873
Trond Myklebustaf22f942007-08-10 17:45:10 -04001874static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Chuck Lever55296802005-08-18 11:24:09 -07001876 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001877 struct nfs_access_entry *cache;
1878 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001880 spin_lock(&inode->i_lock);
1881 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
1882 goto out_zap;
1883 cache = nfs_access_search_rbtree(inode, cred);
1884 if (cache == NULL)
1885 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05001886 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05001887 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001888 goto out_stale;
1889 res->jiffies = cache->jiffies;
1890 res->cred = cache->cred;
1891 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001892 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001893 err = 0;
1894out:
1895 spin_unlock(&inode->i_lock);
1896 return err;
1897out_stale:
1898 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001899 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001900 spin_unlock(&inode->i_lock);
1901 nfs_access_free_entry(cache);
1902 return -ENOENT;
1903out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001904 spin_unlock(&inode->i_lock);
1905 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001906 return -ENOENT;
1907}
1908
1909static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
1910{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001911 struct nfs_inode *nfsi = NFS_I(inode);
1912 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001913 struct rb_node **p = &root_node->rb_node;
1914 struct rb_node *parent = NULL;
1915 struct nfs_access_entry *entry;
1916
1917 spin_lock(&inode->i_lock);
1918 while (*p != NULL) {
1919 parent = *p;
1920 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
1921
1922 if (set->cred < entry->cred)
1923 p = &parent->rb_left;
1924 else if (set->cred > entry->cred)
1925 p = &parent->rb_right;
1926 else
1927 goto found;
1928 }
1929 rb_link_node(&set->rb_node, parent, p);
1930 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001931 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001932 spin_unlock(&inode->i_lock);
1933 return;
1934found:
1935 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001936 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
1937 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001938 spin_unlock(&inode->i_lock);
1939 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Trond Myklebustaf22f942007-08-10 17:45:10 -04001942static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001944 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
1945 if (cache == NULL)
1946 return;
1947 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001949 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001951
1952 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001953
1954 /* Update accounting */
1955 smp_mb__before_atomic_inc();
1956 atomic_long_inc(&nfs_access_nr_entries);
1957 smp_mb__after_atomic_inc();
1958
1959 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001960 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001961 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001962 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
1963 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
1964 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001965 spin_unlock(&nfs_access_lru_lock);
1966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
1970{
1971 struct nfs_access_entry cache;
1972 int status;
1973
1974 status = nfs_access_get_cached(inode, cred, &cache);
1975 if (status == 0)
1976 goto out;
1977
1978 /* Be clever: ask server to check for all possible rights */
1979 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
1980 cache.cred = cred;
1981 cache.jiffies = jiffies;
1982 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04001983 if (status != 0) {
1984 if (status == -ESTALE) {
1985 nfs_zap_caches(inode);
1986 if (!S_ISDIR(inode->i_mode))
1987 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04001990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 nfs_access_add_cache(inode, &cache);
1992out:
Al Viroe6305c42008-07-15 21:03:57 -04001993 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return 0;
1995 return -EACCES;
1996}
1997
Trond Myklebustaf22f942007-08-10 17:45:10 -04001998static int nfs_open_permission_mask(int openflags)
1999{
2000 int mask = 0;
2001
2002 if (openflags & FMODE_READ)
2003 mask |= MAY_READ;
2004 if (openflags & FMODE_WRITE)
2005 mask |= MAY_WRITE;
2006 if (openflags & FMODE_EXEC)
2007 mask |= MAY_EXEC;
2008 return mask;
2009}
2010
2011int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2012{
2013 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2014}
2015
Al Viroe6305c42008-07-15 21:03:57 -04002016int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct rpc_cred *cred;
2019 int res = 0;
2020
Chuck Lever91d5b472006-03-20 13:44:14 -05002021 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2022
Al Viroe6305c42008-07-15 21:03:57 -04002023 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto out;
2025 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002026 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 goto force_lookup;
2028
2029 switch (inode->i_mode & S_IFMT) {
2030 case S_IFLNK:
2031 goto out;
2032 case S_IFREG:
2033 /* NFSv4 has atomic_open... */
2034 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002035 && (mask & MAY_OPEN)
2036 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 goto out;
2038 break;
2039 case S_IFDIR:
2040 /*
2041 * Optimize away all write operations, since the server
2042 * will check permissions when we perform the op.
2043 */
2044 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2045 goto out;
2046 }
2047
2048force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (!NFS_PROTO(inode)->access)
2050 goto out_notsup;
2051
Trond Myklebust98a8e322008-03-12 12:25:28 -04002052 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (!IS_ERR(cred)) {
2054 res = nfs_do_access(inode, cred, mask);
2055 put_rpccred(cred);
2056 } else
2057 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002059 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2060 res = -EACCES;
2061
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002062 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2063 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return res;
2065out_notsup:
2066 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2067 if (res == 0)
2068 res = generic_permission(inode, mask, NULL);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002069 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
2072/*
2073 * Local variables:
2074 * version-control: t
2075 * kept-new-versions: 5
2076 * End:
2077 */