blob: 8ea4a4180a8739f4a80baa2548d9ee004cfbd32e [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>
Catalin Marinas04e4bd12010-11-11 12:53:47 +000037#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050040#include "iostat.h"
Adrian Bunk4c30d562007-11-21 15:04:31 -080041#include "internal.h"
Trond Myklebustcd9a1c02010-09-17 10:56:50 -040042#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* #define NFS_DEBUG_VERBOSE 1 */
45
46static int nfs_opendir(struct inode *, struct file *);
47static int nfs_readdir(struct file *, void *, filldir_t);
48static struct dentry *nfs_lookup(struct inode *, struct dentry *, struct nameidata *);
49static int nfs_create(struct inode *, struct dentry *, int, struct nameidata *);
50static int nfs_mkdir(struct inode *, struct dentry *, int);
51static int nfs_rmdir(struct inode *, struct dentry *);
52static int nfs_unlink(struct inode *, struct dentry *);
53static int nfs_symlink(struct inode *, struct dentry *, const char *);
54static int nfs_link(struct dentry *, struct inode *, struct dentry *);
55static int nfs_mknod(struct inode *, struct dentry *, int, dev_t);
56static int nfs_rename(struct inode *, struct dentry *,
57 struct inode *, struct dentry *);
Christoph Hellwig7ea80852010-05-26 17:53:25 +020058static int nfs_fsync_dir(struct file *, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000059static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040060static int nfs_readdir_clear_array(struct page*, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080062const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000063 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .read = generic_read_dir,
65 .readdir = nfs_readdir,
66 .open = nfs_opendir,
67 .release = nfs_release,
68 .fsync = nfs_fsync_dir,
69};
70
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080071const struct inode_operations nfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .create = nfs_create,
73 .lookup = nfs_lookup,
74 .link = nfs_link,
75 .unlink = nfs_unlink,
76 .symlink = nfs_symlink,
77 .mkdir = nfs_mkdir,
78 .rmdir = nfs_rmdir,
79 .mknod = nfs_mknod,
80 .rename = nfs_rename,
81 .permission = nfs_permission,
82 .getattr = nfs_getattr,
83 .setattr = nfs_setattr,
84};
85
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040086const struct address_space_operations nfs_dir_addr_space_ops = {
87 .releasepage = nfs_readdir_clear_array,
88};
89
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000090#ifdef CONFIG_NFS_V3
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080091const struct inode_operations nfs3_dir_inode_operations = {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000092 .create = nfs_create,
93 .lookup = nfs_lookup,
94 .link = nfs_link,
95 .unlink = nfs_unlink,
96 .symlink = nfs_symlink,
97 .mkdir = nfs_mkdir,
98 .rmdir = nfs_rmdir,
99 .mknod = nfs_mknod,
100 .rename = nfs_rename,
101 .permission = nfs_permission,
102 .getattr = nfs_getattr,
103 .setattr = nfs_setattr,
104 .listxattr = nfs3_listxattr,
105 .getxattr = nfs3_getxattr,
106 .setxattr = nfs3_setxattr,
107 .removexattr = nfs3_removexattr,
108};
109#endif /* CONFIG_NFS_V3 */
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#ifdef CONFIG_NFS_V4
112
113static struct dentry *nfs_atomic_lookup(struct inode *, struct dentry *, struct nameidata *);
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400114static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd);
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800115const struct inode_operations nfs4_dir_inode_operations = {
Trond Myklebustc0204fd2010-09-17 10:56:51 -0400116 .create = nfs_open_create,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .lookup = nfs_atomic_lookup,
118 .link = nfs_link,
119 .unlink = nfs_unlink,
120 .symlink = nfs_symlink,
121 .mkdir = nfs_mkdir,
122 .rmdir = nfs_rmdir,
123 .mknod = nfs_mknod,
124 .rename = nfs_rename,
125 .permission = nfs_permission,
126 .getattr = nfs_getattr,
127 .setattr = nfs_setattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +0000128 .getxattr = nfs4_getxattr,
129 .setxattr = nfs4_setxattr,
130 .listxattr = nfs4_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133#endif /* CONFIG_NFS_V4 */
134
135/*
136 * Open file
137 */
138static int
139nfs_opendir(struct inode *inode, struct file *filp)
140{
Carsten Otte7451c4f2006-04-19 13:06:37 -0400141 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Chuck Lever6da24bc2008-06-11 17:55:58 -0400143 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400144 filp->f_path.dentry->d_parent->d_name.name,
145 filp->f_path.dentry->d_name.name);
146
147 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* Call generic open code in order to cache credentials */
Carsten Otte7451c4f2006-04-19 13:06:37 -0400150 res = nfs_open(inode, filp);
Neil Brownf5a73672010-08-10 10:20:05 -0400151 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
152 /* This is a mountpoint, so d_revalidate will never
153 * have been called, so we need to refresh the
154 * inode (for close-open consistency) ourselves.
155 */
156 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return res;
159}
160
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400161struct nfs_cache_array_entry {
162 u64 cookie;
163 u64 ino;
164 struct qstr string;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500165 unsigned char d_type;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400166};
167
168struct nfs_cache_array {
169 unsigned int size;
170 int eof_index;
171 u64 last_cookie;
172 struct nfs_cache_array_entry array[0];
173};
174
Bryan Schumaker82f2e542010-10-21 16:33:18 -0400175typedef __be32 * (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, struct nfs_server *, 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{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500197 void *ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400198 if (page == NULL)
199 return ERR_PTR(-EIO);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500200 ptr = kmap(page);
201 if (ptr == NULL)
202 return ERR_PTR(-ENOMEM);
203 return ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400204}
205
206static
207void nfs_readdir_release_array(struct page *page)
208{
209 kunmap(page);
210}
211
212/*
213 * we are freeing strings created by nfs_add_to_readdir_array()
214 */
215static
216int nfs_readdir_clear_array(struct page *page, gfp_t mask)
217{
218 struct nfs_cache_array *array = nfs_readdir_get_array(page);
219 int i;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500220
221 if (IS_ERR(array))
222 return PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400223 for (i = 0; i < array->size; i++)
224 kfree(array->array[i].string.name);
225 nfs_readdir_release_array(page);
226 return 0;
227}
228
229/*
230 * the caller is responsible for freeing qstr.name
231 * when called by nfs_readdir_add_to_array, the strings will be freed in
232 * nfs_clear_readdir_array()
233 */
234static
Trond Myklebust4a201d62010-10-23 14:53:23 -0400235int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400236{
237 string->len = len;
238 string->name = kmemdup(name, len, GFP_KERNEL);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400239 if (string->name == NULL)
240 return -ENOMEM;
Catalin Marinas04e4bd12010-11-11 12:53:47 +0000241 /*
242 * Avoid a kmemleak false positive. The pointer to the name is stored
243 * in a page cache page which kmemleak does not scan.
244 */
245 kmemleak_not_leak(string->name);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400246 string->hash = full_name_hash(name, len);
247 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400248}
249
250static
251int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
252{
253 struct nfs_cache_array *array = nfs_readdir_get_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400254 struct nfs_cache_array_entry *cache_entry;
255 int ret;
256
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400257 if (IS_ERR(array))
258 return PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400259
Trond Myklebust4a201d62010-10-23 14:53:23 -0400260 cache_entry = &array->array[array->size];
Trond Myklebust30200932010-11-20 15:18:22 -0500261
262 /* Check that this entry lies within the page bounds */
263 ret = -ENOSPC;
264 if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
265 goto out;
266
Trond Myklebust4a201d62010-10-23 14:53:23 -0400267 cache_entry->cookie = entry->prev_cookie;
268 cache_entry->ino = entry->ino;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500269 cache_entry->d_type = entry->d_type;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400270 ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
271 if (ret)
272 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400273 array->last_cookie = entry->cookie;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500274 array->size++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400275 if (entry->eof == 1)
276 array->eof_index = array->size;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400277out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400278 nfs_readdir_release_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400279 return ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400280}
281
282static
283int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
284{
285 loff_t diff = desc->file->f_pos - desc->current_index;
286 unsigned int index;
287
288 if (diff < 0)
289 goto out_eof;
290 if (diff >= array->size) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500291 if (array->eof_index >= 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400292 goto out_eof;
293 desc->current_index += array->size;
294 return -EAGAIN;
295 }
296
297 index = (unsigned int)diff;
298 *desc->dir_cookie = array->array[index].cookie;
299 desc->cache_entry_index = index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400300 return 0;
301out_eof:
302 desc->eof = 1;
303 return -EBADCOOKIE;
304}
305
306static
307int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
308{
309 int i;
310 int status = -EAGAIN;
311
312 for (i = 0; i < array->size; i++) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400313 if (array->array[i].cookie == *desc->dir_cookie) {
314 desc->cache_entry_index = i;
315 status = 0;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500316 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400317 }
318 }
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500319 if (i == array->eof_index) {
320 desc->eof = 1;
321 status = -EBADCOOKIE;
322 }
323out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400324 return status;
325}
326
327static
328int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
329{
330 struct nfs_cache_array *array;
331 int status = -EBADCOOKIE;
332
333 if (desc->dir_cookie == NULL)
334 goto out;
335
336 array = nfs_readdir_get_array(desc->page);
337 if (IS_ERR(array)) {
338 status = PTR_ERR(array);
339 goto out;
340 }
341
342 if (*desc->dir_cookie == 0)
343 status = nfs_readdir_search_for_pos(array, desc);
344 else
345 status = nfs_readdir_search_for_cookie(array, desc);
346
347 nfs_readdir_release_array(desc->page);
348out:
349 return status;
350}
351
352/* Fill a page with xdr information before transferring to the cache page */
353static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400354int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400355 struct nfs_entry *entry, struct file *file, struct inode *inode)
356{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct rpc_cred *cred = nfs_file_cred(file);
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400358 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int error;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 again:
362 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400363 gencount = nfs_inc_attr_generation_counter();
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400364 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 NFS_SERVER(inode)->dtsize, desc->plus);
366 if (error < 0) {
367 /* We requested READDIRPLUS, but the server doesn't grok it */
368 if (error == -ENOTSUPP && desc->plus) {
369 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200370 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 desc->plus = 0;
372 goto again;
373 }
374 goto error;
375 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000376 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400377 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400378error:
379 return error;
380}
381
382/* Fill in an entry based on the xdr code stored in desc->page */
383static
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400384int xdr_decode(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry, struct xdr_stream *stream)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400385{
Bryan Schumaker82f2e542010-10-21 16:33:18 -0400386 __be32 *p = desc->decode(stream, entry, NFS_SERVER(desc->file->f_path.dentry->d_inode), desc->plus);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400387 if (IS_ERR(p))
388 return PTR_ERR(p);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400389
390 entry->fattr->time_start = desc->timestamp;
391 entry->fattr->gencount = desc->gencount;
392 return 0;
393}
394
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400395static
396int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
397{
398 struct nfs_inode *node;
399 if (dentry->d_inode == NULL)
400 goto different;
401 node = NFS_I(dentry->d_inode);
402 if (node->fh.size != entry->fh->size)
403 goto different;
404 if (strncmp(node->fh.data, entry->fh->data, node->fh.size) != 0)
405 goto different;
406 return 1;
407different:
408 return 0;
409}
410
411static
412void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
413{
Trond Myklebust4a201d62010-10-23 14:53:23 -0400414 struct qstr filename = {
415 .len = entry->len,
416 .name = entry->name,
417 };
418 struct dentry *dentry;
419 struct dentry *alias;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400420 struct inode *dir = parent->d_inode;
421 struct inode *inode;
422
Trond Myklebust4a201d62010-10-23 14:53:23 -0400423 if (filename.name[0] == '.') {
424 if (filename.len == 1)
425 return;
426 if (filename.len == 2 && filename.name[1] == '.')
427 return;
428 }
429 filename.hash = full_name_hash(filename.name, filename.len);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400430
Trond Myklebust4a201d62010-10-23 14:53:23 -0400431 dentry = d_lookup(parent, &filename);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400432 if (dentry != NULL) {
433 if (nfs_same_file(dentry, entry)) {
434 nfs_refresh_inode(dentry->d_inode, entry->fattr);
435 goto out;
436 } else {
437 d_drop(dentry);
438 dput(dentry);
439 }
440 }
441
442 dentry = d_alloc(parent, &filename);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400443 if (dentry == NULL)
444 return;
445
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400446 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
447 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
448 if (IS_ERR(inode))
449 goto out;
450
451 alias = d_materialise_unique(dentry, inode);
452 if (IS_ERR(alias))
453 goto out;
454 else if (alias) {
455 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
456 dput(alias);
457 } else
458 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
459
460out:
461 dput(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400462}
463
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400464/* Perform conversion from xdr to cache array */
465static
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500466int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400467 void *xdr_page, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400468{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400469 struct xdr_stream stream;
470 struct xdr_buf buf;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400471 __be32 *ptr = xdr_page;
Bryan Schumaker99424382010-10-21 16:33:16 -0400472 struct nfs_cache_array *array;
Trond Myklebust5c346852010-11-20 12:43:45 -0500473 unsigned int count = 0;
474 int status;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400475
476 buf.head->iov_base = xdr_page;
477 buf.head->iov_len = buflen;
478 buf.tail->iov_len = 0;
479 buf.page_base = 0;
480 buf.page_len = 0;
481 buf.buflen = buf.head->iov_len;
482 buf.len = buf.head->iov_len;
483
484 xdr_init_decode(&stream, &buf, ptr);
485
Bryan Schumaker99424382010-10-21 16:33:16 -0400486
487 do {
488 status = xdr_decode(desc, entry, &stream);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500489 if (status != 0) {
490 if (status == -EAGAIN)
491 status = 0;
Bryan Schumaker99424382010-10-21 16:33:16 -0400492 break;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500493 }
Bryan Schumaker99424382010-10-21 16:33:16 -0400494
Trond Myklebust5c346852010-11-20 12:43:45 -0500495 count++;
496
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400497 if (desc->plus == 1)
498 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500499
500 status = nfs_readdir_add_to_array(entry, page);
501 if (status != 0)
502 break;
Bryan Schumaker99424382010-10-21 16:33:16 -0400503 } while (!entry->eof);
504
Trond Myklebust5c346852010-11-20 12:43:45 -0500505 if (count == 0 || (status == -EBADCOOKIE && entry->eof == 1)) {
Bryan Schumaker99424382010-10-21 16:33:16 -0400506 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500507 if (!IS_ERR(array)) {
508 array->eof_index = array->size;
509 status = 0;
510 nfs_readdir_release_array(page);
Trond Myklebust5c346852010-11-20 12:43:45 -0500511 } else
512 status = PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400513 }
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500514 return status;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400515}
516
517static
518void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
519{
520 unsigned int i;
521 for (i = 0; i < npages; i++)
522 put_page(pages[i]);
523}
524
525static
526void nfs_readdir_free_large_page(void *ptr, struct page **pages,
527 unsigned int npages)
528{
529 vm_unmap_ram(ptr, npages);
530 nfs_readdir_free_pagearray(pages, npages);
531}
532
533/*
534 * nfs_readdir_large_page will allocate pages that must be freed with a call
535 * to nfs_readdir_free_large_page
536 */
537static
538void *nfs_readdir_large_page(struct page **pages, unsigned int npages)
539{
540 void *ptr;
541 unsigned int i;
542
543 for (i = 0; i < npages; i++) {
544 struct page *page = alloc_page(GFP_KERNEL);
545 if (page == NULL)
546 goto out_freepages;
547 pages[i] = page;
548 }
549
Trond Myklebust4a201d62010-10-23 14:53:23 -0400550 ptr = vm_map_ram(pages, npages, 0, PAGE_KERNEL);
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400551 if (!IS_ERR_OR_NULL(ptr))
552 return ptr;
553out_freepages:
554 nfs_readdir_free_pagearray(pages, i);
555 return NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400556}
557
558static
559int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
560{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400561 struct page *pages[NFS_MAX_READDIR_PAGES];
562 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400563 struct nfs_entry entry;
564 struct file *file = desc->file;
565 struct nfs_cache_array *array;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500566 int status = -ENOMEM;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400567 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400568
569 entry.prev_cookie = 0;
570 entry.cookie = *desc->dir_cookie;
571 entry.eof = 0;
572 entry.fh = nfs_alloc_fhandle();
573 entry.fattr = nfs_alloc_fattr();
574 if (entry.fh == NULL || entry.fattr == NULL)
575 goto out;
576
577 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500578 if (IS_ERR(array)) {
579 status = PTR_ERR(array);
580 goto out;
581 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400582 memset(array, 0, sizeof(struct nfs_cache_array));
583 array->eof_index = -1;
584
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400585 pages_ptr = nfs_readdir_large_page(pages, array_size);
586 if (!pages_ptr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400587 goto out_release_array;
588 do {
Trond Myklebustac396122010-11-15 20:26:22 -0500589 unsigned int pglen;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400590 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400591
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400592 if (status < 0)
593 break;
Trond Myklebustac396122010-11-15 20:26:22 -0500594 pglen = status;
595 status = nfs_readdir_page_filler(desc, &entry, pages_ptr, page, pglen);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500596 if (status < 0) {
597 if (status == -ENOSPC)
598 status = 0;
599 break;
600 }
601 } while (array->eof_index < 0);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400602
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400603 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400604out_release_array:
605 nfs_readdir_release_array(page);
606out:
607 nfs_free_fattr(entry.fattr);
608 nfs_free_fhandle(entry.fh);
609 return status;
610}
611
612/*
613 * Now we cache directories properly, by converting xdr information
614 * to an array that can be used for lookups later. This results in
615 * fewer cache pages, since we can store more information on each page.
616 * We only need to convert from xdr once so future lookups are much simpler
617 */
618static
619int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
620{
621 struct inode *inode = desc->file->f_path.dentry->d_inode;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500622 int ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400623
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500624 ret = nfs_readdir_xdr_to_array(desc, page, inode);
625 if (ret < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400626 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400628
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400629 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700630 /* Should never happen */
631 nfs_zap_mapping(inode, inode->i_mapping);
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 unlock_page(page);
634 return 0;
635 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unlock_page(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500637 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400640static
641void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 page_cache_release(desc->page);
644 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400647static
648struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500650 return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400651 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400655 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000656 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400657static
658int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000659{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400660 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000661
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400662 desc->page = get_cache_page(desc);
663 if (IS_ERR(desc->page))
664 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000665
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400666 res = nfs_readdir_search_array(desc);
667 if (res == 0)
668 return 0;
669 cache_page_release(desc);
670 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000671}
672
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400673/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674static inline
675int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
676{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500677 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000678
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500679 if (desc->page_index == 0)
680 desc->current_index = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400681 while (1) {
682 res = find_cache_page(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (res != -EAGAIN)
684 break;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400685 desc->page_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return res;
688}
689
690static inline unsigned int dt_type(struct inode *inode)
691{
692 return (inode->i_mode >> 12) & 15;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
696 * Once we've found the start of the dirent within a page: fill 'er up...
697 */
698static
699int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
700 filldir_t filldir)
701{
702 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400703 int i = 0;
704 int res = 0;
705 struct nfs_cache_array *array = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400707 array = nfs_readdir_get_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500708 if (IS_ERR(array)) {
709 res = PTR_ERR(array);
710 goto out;
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400713 for (i = desc->cache_entry_index; i < array->size; i++) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500714 struct nfs_cache_array_entry *ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Trond Myklebustece0b422010-11-20 13:55:33 -0500716 ent = &array->array[i];
717 if (filldir(dirent, ent->string.name, ent->string.len,
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500718 file->f_pos, nfs_compat_user_ino64(ent->ino),
719 ent->d_type) < 0) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500720 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
Trond Myklebustece0b422010-11-20 13:55:33 -0500722 }
Olivier Galibert00a92642005-06-22 17:16:29 +0000723 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400724 desc->cache_entry_index = i;
725 if (i < (array->size-1))
726 *desc->dir_cookie = array->array[i+1].cookie;
727 else
728 *desc->dir_cookie = array->last_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500730 if (i == array->eof_index)
731 desc->eof = 1;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400732
733 nfs_readdir_release_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500734out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400735 cache_page_release(desc);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500736 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
737 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return res;
739}
740
741/*
742 * If we cannot find a cookie in our cache, we suspect that this is
743 * because it points to a deleted file, so we ask the server to return
744 * whatever it thinks is the next entry. We then feed this to filldir.
745 * If all goes well, we should then be able to find our way round the
746 * cache on the next call to readdir_search_pagecache();
747 *
748 * NOTE: we cannot add the anonymous page to the pagecache because
749 * the data it contains might not be page aligned. Besides,
750 * we should already have a complete representation of the
751 * directory in the page cache by the time we get here.
752 */
753static inline
754int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
755 filldir_t filldir)
756{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct page *page = NULL;
758 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400759 struct inode *inode = desc->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500761 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
762 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 page = alloc_page(GFP_HIGHUSER);
765 if (!page) {
766 status = -ENOMEM;
767 goto out;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500770 desc->page_index = 0;
771 desc->page = page;
772
Trond Myklebust85f86072010-11-20 13:24:49 -0500773 status = nfs_readdir_xdr_to_array(desc, page, inode);
774 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400775 goto out_release;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 status = nfs_do_filldir(desc, dirent, filldir);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500780 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700781 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return status;
783 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400784 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto out;
786}
787
Olivier Galibert00a92642005-06-22 17:16:29 +0000788/* The file offset position represents the dirent entry number. A
789 last cookie cache takes care of the common case of reading the
790 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
792static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
793{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800794 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct inode *inode = dentry->d_inode;
796 nfs_readdir_descriptor_t my_desc,
797 *desc = &my_desc;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400798 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Chuck Lever6da24bc2008-06-11 17:55:58 -0400800 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500801 dentry->d_parent->d_name.name, dentry->d_name.name,
802 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500803 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000806 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000807 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000808 * to either find the entry with the appropriate number or
809 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 */
811 memset(desc, 0, sizeof(*desc));
812
813 desc->file = filp;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400814 desc->dir_cookie = &nfs_file_open_context(filp)->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 desc->decode = NFS_PROTO(inode)->decode_dirent;
816 desc->plus = NFS_USE_READDIRPLUS(inode);
817
Trond Myklebust565277f2007-10-15 18:17:53 -0400818 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800819 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500820 if (res < 0)
821 goto out;
822
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400823 while (desc->eof != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (res == -EBADCOOKIE) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500827 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400829 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Or that the server has 'lost' a cookie */
831 res = uncached_readdir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500832 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 continue;
834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
836 }
837 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200838 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400840 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400842 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 continue;
844 }
845 if (res < 0)
846 break;
847
848 res = nfs_do_filldir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500849 if (res < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500852out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400853 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500854 if (res > 0)
855 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400856 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500857 dentry->d_parent->d_name.name, dentry->d_name.name,
858 res);
859 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
Trond Myklebust10afec92007-05-14 17:16:04 -0400862static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000863{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400864 struct dentry *dentry = filp->f_path.dentry;
865 struct inode *inode = dentry->d_inode;
866
Chuck Lever6da24bc2008-06-11 17:55:58 -0400867 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400868 dentry->d_parent->d_name.name,
869 dentry->d_name.name,
870 offset, origin);
871
872 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000873 switch (origin) {
874 case 1:
875 offset += filp->f_pos;
876 case 0:
877 if (offset >= 0)
878 break;
879 default:
880 offset = -EINVAL;
881 goto out;
882 }
883 if (offset != filp->f_pos) {
884 filp->f_pos = offset;
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400885 nfs_file_open_context(filp)->dir_cookie = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000886 }
887out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400888 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000889 return offset;
890}
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892/*
893 * All directory operations under NFS are synchronous, so fsync()
894 * is a dummy operation.
895 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200896static int nfs_fsync_dir(struct file *filp, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200898 struct dentry *dentry = filp->f_path.dentry;
899
Chuck Lever6da24bc2008-06-11 17:55:58 -0400900 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500901 dentry->d_parent->d_name.name, dentry->d_name.name,
902 datasync);
903
Chuck Lever54917782008-05-27 16:29:07 -0400904 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return 0;
906}
907
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400908/**
909 * nfs_force_lookup_revalidate - Mark the directory as having changed
910 * @dir - pointer to directory inode
911 *
912 * This forces the revalidation code in nfs_lookup_revalidate() to do a
913 * full lookup on all child dentries of 'dir' whenever a change occurs
914 * on the server that might have invalidated our dcache.
915 *
916 * The caller should be holding dir->i_lock
917 */
918void nfs_force_lookup_revalidate(struct inode *dir)
919{
Trond Myklebust011935a02008-10-14 19:24:50 -0400920 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923/*
924 * A check for whether or not the parent directory has changed.
925 * In the case it has, we assume that the dentries are untrustworthy
926 * and may need to be looked up again.
927 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500928static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 if (IS_ROOT(dentry))
931 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400932 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
933 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400934 if (!nfs_verify_change_attribute(dir, dentry->d_time))
935 return 0;
936 /* Revalidate nfsi->cache_change_attribute before we declare a match */
937 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
938 return 0;
939 if (!nfs_verify_change_attribute(dir, dentry->d_time))
940 return 0;
941 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400945 * Return the intent data that applies to this particular path component
946 *
947 * Note that the current set of intents only apply to the very last
948 * component of the path.
949 * We check for this using LOOKUP_CONTINUE and LOOKUP_PARENT.
950 */
951static inline unsigned int nfs_lookup_check_intent(struct nameidata *nd, unsigned int mask)
952{
953 if (nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))
954 return 0;
955 return nd->flags & mask;
956}
957
958/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400959 * Use intent information to check whether or not we're going to do
960 * an O_EXCL create using this path component.
961 */
962static int nfs_is_exclusive_create(struct inode *dir, struct nameidata *nd)
963{
964 if (NFS_PROTO(dir)->version == 2)
965 return 0;
Al Viro35165862008-08-05 03:00:49 -0400966 return nd && nfs_lookup_check_intent(nd, LOOKUP_EXCL);
Trond Myklebusta12802c2007-10-02 19:13:04 -0400967}
968
969/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400970 * Inode and filehandle revalidation for lookups.
971 *
972 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
973 * or if the intent information indicates that we're about to open this
974 * particular file and the "nocto" mount flag is not set.
975 *
976 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977static inline
978int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd)
979{
980 struct nfs_server *server = NFS_SERVER(inode);
981
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500982 if (test_bit(NFS_INO_MOUNTPOINT, &NFS_I(inode)->flags))
983 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (nd != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* VFS wants an on-the-wire revalidation */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400986 if (nd->flags & LOOKUP_REVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 goto out_force;
988 /* This is an open(2) */
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400989 if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 &&
Trond Myklebust4e0641a2006-07-05 13:05:13 -0400990 !(server->flags & NFS_MOUNT_NOCTO) &&
991 (S_ISREG(inode->i_mode) ||
992 S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 goto out_force;
Trond Myklebust4f48af42007-10-02 23:13:32 -0400994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 return nfs_revalidate_inode(server, inode);
997out_force:
998 return __nfs_revalidate_inode(server, inode);
999}
1000
1001/*
1002 * We judge how long we want to trust negative
1003 * dentries by looking at the parent inode mtime.
1004 *
1005 * If parent mtime has changed, we revalidate, else we wait for a
1006 * period corresponding to the parent's attribute cache timeout value.
1007 */
1008static inline
1009int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
1010 struct nameidata *nd)
1011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* Don't revalidate a negative dentry if we're creating a new file */
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001013 if (nd != NULL && nfs_lookup_check_intent(nd, LOOKUP_CREATE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001015 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1016 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return !nfs_check_verifier(dir, dentry);
1018}
1019
1020/*
1021 * This is called every time the dcache has a lookup hit,
1022 * and we should check whether we can really trust that
1023 * lookup.
1024 *
1025 * NOTE! The hit can be a negative hit too, don't assume
1026 * we have an inode!
1027 *
1028 * If the parent directory is seen to have changed, we throw out the
1029 * cached dentry and do a new lookup.
1030 */
1031static int nfs_lookup_revalidate(struct dentry * dentry, struct nameidata *nd)
1032{
1033 struct inode *dir;
1034 struct inode *inode;
1035 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001036 struct nfs_fh *fhandle = NULL;
1037 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -05001042 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 inode = dentry->d_inode;
1044
1045 if (!inode) {
1046 if (nfs_neg_need_reval(dir, dentry, nd))
1047 goto out_bad;
1048 goto out_valid;
1049 }
1050
1051 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001052 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001053 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001054 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 goto out_bad;
1056 }
1057
Trond Myklebust15860ab2008-12-23 15:21:54 -05001058 if (nfs_have_delegation(inode, FMODE_READ))
1059 goto out_set_verifier;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 /* Force a full look up iff the parent directory has changed */
Trond Myklebusta12802c2007-10-02 19:13:04 -04001062 if (!nfs_is_exclusive_create(dir, nd) && nfs_check_verifier(dir, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (nfs_lookup_verify_inode(inode, nd))
1064 goto out_zap_parent;
1065 goto out_valid;
1066 }
1067
1068 if (NFS_STALE(inode))
1069 goto out_bad;
1070
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001071 error = -ENOMEM;
1072 fhandle = nfs_alloc_fhandle();
1073 fattr = nfs_alloc_fattr();
1074 if (fhandle == NULL || fattr == NULL)
1075 goto out_error;
1076
1077 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (error)
1079 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001080 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001082 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto out_bad;
1084
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001085 nfs_free_fattr(fattr);
1086 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001087out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001088 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 out_valid:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001091 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001092 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001093 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return 1;
1095out_zap_parent:
1096 nfs_zap_caches(dir);
1097 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -04001098 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (inode && S_ISDIR(inode->i_mode)) {
1100 /* Purge readdir caches. */
1101 nfs_zap_caches(inode);
1102 /* If we have submounts, don't unhash ! */
1103 if (have_submounts(dentry))
1104 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +01001105 if (dentry->d_flags & DCACHE_DISCONNECTED)
1106 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 shrink_dcache_parent(dentry);
1108 }
1109 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001110 nfs_free_fattr(fattr);
1111 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001113 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001114 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001115 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001117out_error:
1118 nfs_free_fattr(fattr);
1119 nfs_free_fhandle(fhandle);
1120 dput(parent);
1121 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1122 __func__, dentry->d_parent->d_name.name,
1123 dentry->d_name.name, error);
1124 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
1127/*
1128 * This is called from dput() when d_count is going to 0.
1129 */
1130static int nfs_dentry_delete(struct dentry *dentry)
1131{
1132 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1133 dentry->d_parent->d_name.name, dentry->d_name.name,
1134 dentry->d_flags);
1135
Trond Myklebust77f11192008-01-28 19:43:19 -05001136 /* Unhash any dentry with a stale inode */
1137 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1138 return 1;
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1141 /* Unhash it, so that ->d_iput() would be called */
1142 return 1;
1143 }
1144 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1145 /* Unhash it, so that ancestors of killed async unlink
1146 * files will be cleaned up during umount */
1147 return 1;
1148 }
1149 return 0;
1150
1151}
1152
Trond Myklebust1b83d702008-06-11 15:44:04 -04001153static void nfs_drop_nlink(struct inode *inode)
1154{
1155 spin_lock(&inode->i_lock);
1156 if (inode->i_nlink > 0)
1157 drop_nlink(inode);
1158 spin_unlock(&inode->i_lock);
1159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161/*
1162 * Called when the dentry loses inode.
1163 * We use it to clean up silly-renamed files.
1164 */
1165static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1166{
Neil Brown83672d32007-02-26 12:48:25 +11001167 if (S_ISDIR(inode->i_mode))
1168 /* drop any readdir cache as it could easily be old */
1169 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001172 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001173 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 iput(inode);
1176}
1177
Al Virof786aa92009-02-20 05:51:22 +00001178const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 .d_revalidate = nfs_lookup_revalidate,
1180 .d_delete = nfs_dentry_delete,
1181 .d_iput = nfs_dentry_iput,
1182};
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *nd)
1185{
1186 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001187 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001189 struct nfs_fh *fhandle = NULL;
1190 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1194 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001195 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 res = ERR_PTR(-ENAMETOOLONG);
1198 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1199 goto out;
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1202
Trond Myklebustfd684072006-09-05 12:27:44 -04001203 /*
1204 * If we're doing an exclusive create, optimize away the lookup
1205 * but don't hash the dentry.
1206 */
1207 if (nfs_is_exclusive_create(dir, nd)) {
1208 d_instantiate(dentry, NULL);
1209 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001210 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001213 res = ERR_PTR(-ENOMEM);
1214 fhandle = nfs_alloc_fhandle();
1215 fattr = nfs_alloc_fattr();
1216 if (fhandle == NULL || fattr == NULL)
1217 goto out;
1218
Trond Myklebust565277f2007-10-15 18:17:53 -04001219 parent = dentry->d_parent;
1220 /* Protect against concurrent sillydeletes */
1221 nfs_block_sillyrename(parent);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001222 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (error == -ENOENT)
1224 goto no_entry;
1225 if (error < 0) {
1226 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001227 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001229 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001230 res = (struct dentry *)inode;
1231 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001232 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001235 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001236 if (res != NULL) {
1237 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001238 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001242out_unblock_sillyrename:
1243 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001245 nfs_free_fattr(fattr);
1246 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return res;
1248}
1249
1250#ifdef CONFIG_NFS_V4
1251static int nfs_open_revalidate(struct dentry *, struct nameidata *);
1252
Al Virof786aa92009-02-20 05:51:22 +00001253const struct dentry_operations nfs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 .d_revalidate = nfs_open_revalidate,
1255 .d_delete = nfs_dentry_delete,
1256 .d_iput = nfs_dentry_iput,
1257};
1258
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001259/*
1260 * Use intent information to determine whether we need to substitute
1261 * the NFSv4-style stateful OPEN for the LOOKUP call
1262 */
Trond Myklebust5584c302008-12-23 15:21:54 -05001263static int is_atomic_open(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001265 if (nd == NULL || nfs_lookup_check_intent(nd, LOOKUP_OPEN) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return 0;
1267 /* NFS does not (yet) have a stateful open for directories */
1268 if (nd->flags & LOOKUP_DIRECTORY)
1269 return 0;
1270 /* Are we trying to write to a read only partition? */
Dave Hansen2c463e92008-02-15 14:37:56 -08001271 if (__mnt_is_readonly(nd->path.mnt) &&
1272 (nd->intent.open.flags & (O_CREAT|O_TRUNC|FMODE_WRITE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 return 0;
1274 return 1;
1275}
1276
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001277static struct nfs_open_context *nameidata_to_nfs_open_context(struct dentry *dentry, struct nameidata *nd)
1278{
1279 struct path path = {
1280 .mnt = nd->path.mnt,
1281 .dentry = dentry,
1282 };
1283 struct nfs_open_context *ctx;
1284 struct rpc_cred *cred;
1285 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
1286
1287 cred = rpc_lookup_cred();
1288 if (IS_ERR(cred))
1289 return ERR_CAST(cred);
1290 ctx = alloc_nfs_open_context(&path, cred, fmode);
1291 put_rpccred(cred);
1292 if (ctx == NULL)
1293 return ERR_PTR(-ENOMEM);
1294 return ctx;
1295}
1296
1297static int do_open(struct inode *inode, struct file *filp)
1298{
1299 nfs_fscache_set_inode_cookie(inode, filp);
1300 return 0;
1301}
1302
1303static int nfs_intent_set_file(struct nameidata *nd, struct nfs_open_context *ctx)
1304{
1305 struct file *filp;
1306 int ret = 0;
1307
1308 /* If the open_intent is for execute, we have an extra check to make */
1309 if (ctx->mode & FMODE_EXEC) {
1310 ret = nfs_may_open(ctx->path.dentry->d_inode,
1311 ctx->cred,
1312 nd->intent.open.flags);
1313 if (ret < 0)
1314 goto out;
1315 }
1316 filp = lookup_instantiate_filp(nd, ctx->path.dentry, do_open);
1317 if (IS_ERR(filp))
1318 ret = PTR_ERR(filp);
1319 else
1320 nfs_file_set_open_context(filp, ctx);
1321out:
1322 put_nfs_open_context(ctx);
1323 return ret;
1324}
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1327{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001328 struct nfs_open_context *ctx;
1329 struct iattr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 struct dentry *res = NULL;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001331 struct inode *inode;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001332 int open_flags;
Trond Myklebust898f6352010-10-23 11:24:25 -04001333 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001335 dfprintk(VFS, "NFS: atomic_lookup(%s/%ld), %s\n",
1336 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* Check that we are indeed trying to open this file */
Trond Myklebust5584c302008-12-23 15:21:54 -05001339 if (!is_atomic_open(nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto no_open;
1341
1342 if (dentry->d_name.len > NFS_SERVER(dir)->namelen) {
1343 res = ERR_PTR(-ENAMETOOLONG);
1344 goto out;
1345 }
1346 dentry->d_op = NFS_PROTO(dir)->dentry_ops;
1347
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001348 /* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
1349 * the dentry. */
Al Viro35165862008-08-05 03:00:49 -04001350 if (nd->flags & LOOKUP_EXCL) {
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04001351 d_instantiate(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001352 goto out;
1353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001355 ctx = nameidata_to_nfs_open_context(dentry, nd);
1356 res = ERR_CAST(ctx);
1357 if (IS_ERR(ctx))
1358 goto out;
1359
1360 open_flags = nd->intent.open.flags;
1361 if (nd->flags & LOOKUP_CREATE) {
1362 attr.ia_mode = nd->intent.open.create_mode;
1363 attr.ia_valid = ATTR_MODE;
1364 if (!IS_POSIXACL(dir))
1365 attr.ia_mode &= ~current_umask();
1366 } else {
Trond Myklebust898f6352010-10-23 11:24:25 -04001367 open_flags &= ~(O_EXCL | O_CREAT);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001368 attr.ia_valid = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001369 }
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* Open the file on the server */
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001372 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001373 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001374 if (IS_ERR(inode)) {
1375 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001376 put_nfs_open_context(ctx);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001377 switch (PTR_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /* Make a negative dentry */
1379 case -ENOENT:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001380 d_add(dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001381 res = NULL;
1382 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /* This turned out not to be a regular file */
Trond Myklebust6f926b52005-10-18 14:20:18 -07001384 case -ENOTDIR:
1385 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 case -ELOOP:
1387 if (!(nd->intent.open.flags & O_NOFOLLOW))
1388 goto no_open;
Trond Myklebust23ebbd92010-11-03 10:24:16 -04001389 /* case -EISDIR: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /* case -EINVAL: */
1391 default:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001392 res = ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 goto out;
1394 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001395 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001396 res = d_add_unique(dentry, inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001397 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001398 if (res != NULL) {
1399 dput(ctx->path.dentry);
1400 ctx->path.dentry = dget(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 dentry = res;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001402 }
Trond Myklebust898f6352010-10-23 11:24:25 -04001403 err = nfs_intent_set_file(nd, ctx);
1404 if (err < 0) {
1405 if (res != NULL)
1406 dput(res);
1407 return ERR_PTR(err);
1408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409out:
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001410 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return res;
1412no_open:
1413 return nfs_lookup(dir, dentry, nd);
1414}
1415
1416static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
1417{
1418 struct dentry *parent = NULL;
1419 struct inode *inode = dentry->d_inode;
1420 struct inode *dir;
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001421 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 int openflags, ret = 0;
1423
Trond Myklebust1f063d22010-04-22 15:35:55 -04001424 if (!is_atomic_open(nd) || d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001425 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 parent = dget_parent(dentry);
1428 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* We can't create new files in nfs_open_revalidate(), so we
1431 * optimize away revalidation of negative dentries.
1432 */
Trond Myklebust216d5d02007-10-01 20:10:12 -04001433 if (inode == NULL) {
1434 if (!nfs_neg_need_reval(dir, dentry, nd))
1435 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 goto out;
Trond Myklebust216d5d02007-10-01 20:10:12 -04001437 }
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* NFS only supports OPEN on regular files */
1440 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001441 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 openflags = nd->intent.open.flags;
1443 /* We cannot do exclusive creation on a positive dentry */
1444 if ((openflags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
Trond Myklebust5584c302008-12-23 15:21:54 -05001445 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /* We can't create new files, or truncate existing ones here */
Trond Myklebust0a377cf2010-08-18 09:25:42 -04001447 openflags &= ~(O_CREAT|O_EXCL|O_TRUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Trond Myklebustb8d4cad2010-09-17 10:56:51 -04001449 ctx = nameidata_to_nfs_open_context(dentry, nd);
1450 ret = PTR_ERR(ctx);
1451 if (IS_ERR(ctx))
1452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 /*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001454 * Note: we're not holding inode->i_mutex and so may be racing with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 * operations that change the directory. We therefore save the
1456 * change attribute *before* we do the RPC call.
1457 */
Trond Myklebust2b484292010-09-17 10:56:51 -04001458 inode = NFS_PROTO(dir)->open_context(dir, ctx, openflags, NULL);
Trond Myklebust535918f2010-09-17 10:56:51 -04001459 if (IS_ERR(inode)) {
1460 ret = PTR_ERR(inode);
1461 switch (ret) {
1462 case -EPERM:
1463 case -EACCES:
1464 case -EDQUOT:
1465 case -ENOSPC:
1466 case -EROFS:
1467 goto out_put_ctx;
1468 default:
1469 goto out_drop;
1470 }
1471 }
1472 iput(inode);
Trond Myklebust898f6352010-10-23 11:24:25 -04001473 if (inode != dentry->d_inode)
Trond Myklebust535918f2010-09-17 10:56:51 -04001474 goto out_drop;
Trond Myklebust898f6352010-10-23 11:24:25 -04001475
1476 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1477 ret = nfs_intent_set_file(nd, ctx);
1478 if (ret >= 0)
1479 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480out:
1481 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001483out_drop:
1484 d_drop(dentry);
1485 ret = 0;
1486out_put_ctx:
1487 put_nfs_open_context(ctx);
1488 goto out;
1489
Trond Myklebust5584c302008-12-23 15:21:54 -05001490no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001492no_open:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return nfs_lookup_revalidate(dentry, nd);
1494}
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001495
1496static int nfs_open_create(struct inode *dir, struct dentry *dentry, int mode,
1497 struct nameidata *nd)
1498{
1499 struct nfs_open_context *ctx = NULL;
1500 struct iattr attr;
1501 int error;
1502 int open_flags = 0;
1503
1504 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1505 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1506
1507 attr.ia_mode = mode;
1508 attr.ia_valid = ATTR_MODE;
1509
1510 if ((nd->flags & LOOKUP_CREATE) != 0) {
1511 open_flags = nd->intent.open.flags;
1512
1513 ctx = nameidata_to_nfs_open_context(dentry, nd);
1514 error = PTR_ERR(ctx);
1515 if (IS_ERR(ctx))
Trond Myklebust898f6352010-10-23 11:24:25 -04001516 goto out_err_drop;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001517 }
1518
1519 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags, ctx);
1520 if (error != 0)
1521 goto out_put_ctx;
Trond Myklebust898f6352010-10-23 11:24:25 -04001522 if (ctx != NULL) {
1523 error = nfs_intent_set_file(nd, ctx);
1524 if (error < 0)
1525 goto out_err;
1526 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001527 return 0;
1528out_put_ctx:
1529 if (ctx != NULL)
1530 put_nfs_open_context(ctx);
Trond Myklebust898f6352010-10-23 11:24:25 -04001531out_err_drop:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001532 d_drop(dentry);
Trond Myklebust898f6352010-10-23 11:24:25 -04001533out_err:
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001534 return error;
1535}
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537#endif /* CONFIG_NFSV4 */
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539/*
1540 * Code common to create, mkdir, and mknod.
1541 */
1542int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1543 struct nfs_fattr *fattr)
1544{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001545 struct dentry *parent = dget_parent(dentry);
1546 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 struct inode *inode;
1548 int error = -EACCES;
1549
Trond Myklebustfab728e2007-09-29 17:41:33 -04001550 d_drop(dentry);
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /* We may have been initialized further down */
1553 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001554 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (fhandle->size == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
1557 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001558 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001560 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1562 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001563 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001565 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001568 error = PTR_ERR(inode);
1569 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001570 goto out_error;
1571 d_add(dentry, inode);
1572out:
1573 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001575out_error:
1576 nfs_mark_for_revalidate(dir);
1577 dput(parent);
1578 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581/*
1582 * Following a failed create operation, we drop the dentry rather
1583 * than retain a negative dentry. This avoids a problem in the event
1584 * that the operation succeeded on the server, but an error in the
1585 * reply path made it appear to have failed.
1586 */
1587static int nfs_create(struct inode *dir, struct dentry *dentry, int mode,
1588 struct nameidata *nd)
1589{
1590 struct iattr attr;
1591 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001593 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1594 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 attr.ia_mode = mode;
1597 attr.ia_valid = ATTR_MODE;
1598
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001599 error = NFS_PROTO(dir)->create(dir, dentry, &attr, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (error != 0)
1601 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return 0;
1603out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 d_drop(dentry);
1605 return error;
1606}
1607
1608/*
1609 * See comments for nfs_proc_create regarding failed operations.
1610 */
1611static int
1612nfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1613{
1614 struct iattr attr;
1615 int status;
1616
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001617 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1618 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 if (!new_valid_dev(rdev))
1621 return -EINVAL;
1622
1623 attr.ia_mode = mode;
1624 attr.ia_valid = ATTR_MODE;
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (status != 0)
1628 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
1630out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 d_drop(dentry);
1632 return status;
1633}
1634
1635/*
1636 * See comments for nfs_proc_create regarding failed operations.
1637 */
1638static int nfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1639{
1640 struct iattr attr;
1641 int error;
1642
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001643 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1644 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 attr.ia_valid = ATTR_MODE;
1647 attr.ia_mode = mode | S_IFDIR;
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (error != 0)
1651 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return 0;
1653out_err:
1654 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return error;
1656}
1657
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001658static void nfs_dentry_handle_enoent(struct dentry *dentry)
1659{
1660 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1661 d_delete(dentry);
1662}
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664static int nfs_rmdir(struct inode *dir, struct dentry *dentry)
1665{
1666 int error;
1667
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001668 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1669 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1672 /* Ensure the VFS deletes this inode */
1673 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001674 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001675 else if (error == -ENOENT)
1676 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 return error;
1679}
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681/*
1682 * Remove a file after making sure there are no pending writes,
1683 * and after checking that the file has only one user.
1684 *
1685 * We invalidate the attribute cache and free the inode prior to the operation
1686 * to avoid possible races if the server reuses the inode.
1687 */
1688static int nfs_safe_remove(struct dentry *dentry)
1689{
1690 struct inode *dir = dentry->d_parent->d_inode;
1691 struct inode *inode = dentry->d_inode;
1692 int error = -EBUSY;
1693
1694 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1695 dentry->d_parent->d_name.name, dentry->d_name.name);
1696
1697 /* If the dentry was sillyrenamed, we simply call d_delete() */
1698 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1699 error = 0;
1700 goto out;
1701 }
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (inode != NULL) {
Trond Myklebustcae7a072005-10-18 14:20:19 -07001704 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1706 /* The VFS may want to delete this inode */
1707 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001708 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001709 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 } else
1711 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001712 if (error == -ENOENT)
1713 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714out:
1715 return error;
1716}
1717
1718/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1719 * belongs to an active ".nfs..." file and we return -EBUSY.
1720 *
1721 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1722 */
1723static int nfs_unlink(struct inode *dir, struct dentry *dentry)
1724{
1725 int error;
1726 int need_rehash = 0;
1727
1728 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1729 dir->i_ino, dentry->d_name.name);
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 spin_lock(&dcache_lock);
1732 spin_lock(&dentry->d_lock);
1733 if (atomic_read(&dentry->d_count) > 1) {
1734 spin_unlock(&dentry->d_lock);
1735 spin_unlock(&dcache_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001736 /* Start asynchronous writeout of the inode */
1737 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 return error;
1740 }
1741 if (!d_unhashed(dentry)) {
1742 __d_drop(dentry);
1743 need_rehash = 1;
1744 }
1745 spin_unlock(&dentry->d_lock);
1746 spin_unlock(&dcache_lock);
1747 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001748 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1750 } else if (need_rehash)
1751 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return error;
1753}
1754
Chuck Lever873101b2006-08-22 20:06:23 -04001755/*
1756 * To create a symbolic link, most file systems instantiate a new inode,
1757 * add a page to it containing the path, then write it out to the disk
1758 * using prepare_write/commit_write.
1759 *
1760 * Unfortunately the NFS client can't create the in-core inode first
1761 * because it needs a file handle to create an in-core inode (see
1762 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1763 * symlink request has completed on the server.
1764 *
1765 * So instead we allocate a raw page, copy the symname into it, then do
1766 * the SYMLINK request with the page as the buffer. If it succeeds, we
1767 * now have a new file handle and can instantiate an in-core NFS inode
1768 * and move the raw page into its mapping.
1769 */
1770static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
Chuck Lever873101b2006-08-22 20:06:23 -04001772 struct pagevec lru_pvec;
1773 struct page *page;
1774 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001776 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 int error;
1778
1779 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1780 dir->i_ino, dentry->d_name.name, symname);
1781
Chuck Lever873101b2006-08-22 20:06:23 -04001782 if (pathlen > PAGE_SIZE)
1783 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Chuck Lever873101b2006-08-22 20:06:23 -04001785 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1786 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Jeff Layton83d93f22007-06-07 09:58:08 -04001788 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001789 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001790 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001791
1792 kaddr = kmap_atomic(page, KM_USER0);
1793 memcpy(kaddr, symname, pathlen);
1794 if (pathlen < PAGE_SIZE)
1795 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
1796 kunmap_atomic(kaddr, KM_USER0);
1797
Chuck Lever94a6d752006-08-22 20:06:23 -04001798 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001799 if (error != 0) {
1800 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1801 dir->i_sb->s_id, dir->i_ino,
1802 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001804 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001805 return error;
1806 }
1807
1808 /*
1809 * No big deal if we can't add this page to the page cache here.
1810 * READLINK will get the missing page from the server if needed.
1811 */
1812 pagevec_init(&lru_pvec, 0);
1813 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1814 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001815 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001816 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001817 SetPageUptodate(page);
1818 unlock_page(page);
1819 } else
1820 __free_page(page);
1821
Chuck Lever873101b2006-08-22 20:06:23 -04001822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
1825static int
1826nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1827{
1828 struct inode *inode = old_dentry->d_inode;
1829 int error;
1830
1831 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1832 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1833 dentry->d_parent->d_name.name, dentry->d_name.name);
1834
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001835 nfs_inode_return_delegation(inode);
1836
Trond Myklebust9697d232007-10-02 21:58:05 -04001837 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001839 if (error == 0) {
Al Viro7de9c6e2010-10-23 11:11:40 -04001840 ihold(inode);
Trond Myklebust9697d232007-10-02 21:58:05 -04001841 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return error;
1844}
1845
1846/*
1847 * RENAME
1848 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1849 * different file handle for the same inode after a rename (e.g. when
1850 * moving to a different directory). A fail-safe method to do so would
1851 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1852 * rename the old file using the sillyrename stuff. This way, the original
1853 * file in old_dir will go away when the last process iput()s the inode.
1854 *
1855 * FIXED.
1856 *
1857 * It actually works quite well. One needs to have the possibility for
1858 * at least one ".nfs..." file in each directory the file ever gets
1859 * moved or linked to which happens automagically with the new
1860 * implementation that only depends on the dcache stuff instead of
1861 * using the inode layer
1862 *
1863 * Unfortunately, things are a little more complicated than indicated
1864 * above. For a cross-directory move, we want to make sure we can get
1865 * rid of the old inode after the operation. This means there must be
1866 * no pending writes (if it's a file), and the use count must be 1.
1867 * If these conditions are met, we can drop the dentries before doing
1868 * the rename.
1869 */
1870static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1871 struct inode *new_dir, struct dentry *new_dentry)
1872{
1873 struct inode *old_inode = old_dentry->d_inode;
1874 struct inode *new_inode = new_dentry->d_inode;
1875 struct dentry *dentry = NULL, *rehash = NULL;
1876 int error = -EBUSY;
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1879 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1880 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
1881 atomic_read(&new_dentry->d_count));
1882
1883 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001884 * For non-directories, check whether the target is busy and if so,
1885 * make a copy of the dentry and then do a silly-rename. If the
1886 * silly-rename succeeds, the copied dentry is hashed and becomes
1887 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001889 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1890 /*
1891 * To prevent any new references to the target during the
1892 * rename, we unhash the dentry in advance.
1893 */
1894 if (!d_unhashed(new_dentry)) {
1895 d_drop(new_dentry);
1896 rehash = new_dentry;
1897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Miklos Szeredi27226102009-12-03 15:58:56 -05001899 if (atomic_read(&new_dentry->d_count) > 2) {
1900 int err;
1901
1902 /* copy the target dentry's name */
1903 dentry = d_alloc(new_dentry->d_parent,
1904 &new_dentry->d_name);
1905 if (!dentry)
1906 goto out;
1907
1908 /* silly-rename the existing target ... */
1909 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001910 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001911 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001912
1913 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001914 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001915 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001916 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Trond Myklebustcae7a072005-10-18 14:20:19 -07001919 nfs_inode_return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001920 if (new_inode != NULL)
Trond Myklebust24174112006-01-03 09:55:33 +01001921 nfs_inode_return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1924 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001925 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926out:
1927 if (rehash)
1928 d_rehash(rehash);
1929 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001930 if (new_inode != NULL)
1931 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001932 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001933 nfs_set_verifier(new_dentry,
1934 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001935 } else if (error == -ENOENT)
1936 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 /* new dentry created? */
1939 if (dentry)
1940 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return error;
1942}
1943
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001944static DEFINE_SPINLOCK(nfs_access_lru_lock);
1945static LIST_HEAD(nfs_access_lru_list);
1946static atomic_long_t nfs_access_nr_entries;
1947
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001948static void nfs_access_free_entry(struct nfs_access_entry *entry)
1949{
1950 put_rpccred(entry->cred);
1951 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001952 smp_mb__before_atomic_dec();
1953 atomic_long_dec(&nfs_access_nr_entries);
1954 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001955}
1956
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001957static void nfs_access_free_list(struct list_head *head)
1958{
1959 struct nfs_access_entry *cache;
1960
1961 while (!list_empty(head)) {
1962 cache = list_entry(head->next, struct nfs_access_entry, lru);
1963 list_del(&cache->lru);
1964 nfs_access_free_entry(cache);
1965 }
1966}
1967
Dave Chinner7f8275d2010-07-19 14:56:17 +10001968int nfs_access_cache_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Trond Myklebust979df722006-07-25 11:28:19 -04001969{
1970 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001971 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001972 struct nfs_access_entry *cache;
1973
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001974 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1975 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001976
Trond Myklebusta50f7952007-06-05 19:23:43 -04001977 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001978 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001979 struct inode *inode;
1980
1981 if (nr_to_scan-- == 0)
1982 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001983 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001984 spin_lock(&inode->i_lock);
1985 if (list_empty(&nfsi->access_cache_entry_lru))
1986 goto remove_lru_entry;
1987 cache = list_entry(nfsi->access_cache_entry_lru.next,
1988 struct nfs_access_entry, lru);
1989 list_move(&cache->lru, &head);
1990 rb_erase(&cache->rb_node, &nfsi->access_cache);
1991 if (!list_empty(&nfsi->access_cache_entry_lru))
1992 list_move_tail(&nfsi->access_cache_inode_lru,
1993 &nfs_access_lru_list);
1994 else {
1995remove_lru_entry:
1996 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001997 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001998 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001999 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04002000 }
Trond Myklebust59844a92010-05-26 08:42:24 -04002001 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04002002 }
2003 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002004 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04002005 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
2006}
2007
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002008static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002009{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002010 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002011 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002012 struct nfs_access_entry *entry;
2013
2014 /* Unhook entries from the cache */
2015 while ((n = rb_first(root_node)) != NULL) {
2016 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2017 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002018 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002019 }
2020 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002021}
2022
2023void nfs_access_zap_cache(struct inode *inode)
2024{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002025 LIST_HEAD(head);
2026
2027 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
2028 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002029 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002030 spin_lock(&nfs_access_lru_lock);
2031 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002032 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002033
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002034 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002035 __nfs_access_zap_cache(NFS_I(inode), &head);
2036 spin_unlock(&inode->i_lock);
2037 spin_unlock(&nfs_access_lru_lock);
2038 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002039}
2040
2041static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
2042{
2043 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
2044 struct nfs_access_entry *entry;
2045
2046 while (n != NULL) {
2047 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2048
2049 if (cred < entry->cred)
2050 n = n->rb_left;
2051 else if (cred > entry->cred)
2052 n = n->rb_right;
2053 else
2054 return entry;
2055 }
2056 return NULL;
2057}
2058
Trond Myklebustaf22f942007-08-10 17:45:10 -04002059static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Chuck Lever55296802005-08-18 11:24:09 -07002061 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002062 struct nfs_access_entry *cache;
2063 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002065 spin_lock(&inode->i_lock);
2066 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2067 goto out_zap;
2068 cache = nfs_access_search_rbtree(inode, cred);
2069 if (cache == NULL)
2070 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002071 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002072 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002073 goto out_stale;
2074 res->jiffies = cache->jiffies;
2075 res->cred = cache->cred;
2076 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002077 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002078 err = 0;
2079out:
2080 spin_unlock(&inode->i_lock);
2081 return err;
2082out_stale:
2083 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002084 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002085 spin_unlock(&inode->i_lock);
2086 nfs_access_free_entry(cache);
2087 return -ENOENT;
2088out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002089 spin_unlock(&inode->i_lock);
2090 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002091 return -ENOENT;
2092}
2093
2094static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2095{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002096 struct nfs_inode *nfsi = NFS_I(inode);
2097 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002098 struct rb_node **p = &root_node->rb_node;
2099 struct rb_node *parent = NULL;
2100 struct nfs_access_entry *entry;
2101
2102 spin_lock(&inode->i_lock);
2103 while (*p != NULL) {
2104 parent = *p;
2105 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2106
2107 if (set->cred < entry->cred)
2108 p = &parent->rb_left;
2109 else if (set->cred > entry->cred)
2110 p = &parent->rb_right;
2111 else
2112 goto found;
2113 }
2114 rb_link_node(&set->rb_node, parent, p);
2115 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002116 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002117 spin_unlock(&inode->i_lock);
2118 return;
2119found:
2120 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002121 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2122 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002123 spin_unlock(&inode->i_lock);
2124 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
Trond Myklebustaf22f942007-08-10 17:45:10 -04002127static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002129 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2130 if (cache == NULL)
2131 return;
2132 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002134 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002136
2137 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002138
2139 /* Update accounting */
2140 smp_mb__before_atomic_inc();
2141 atomic_long_inc(&nfs_access_nr_entries);
2142 smp_mb__after_atomic_inc();
2143
2144 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002145 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002146 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002147 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2148 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2149 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002150 spin_unlock(&nfs_access_lru_lock);
2151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152}
2153
2154static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2155{
2156 struct nfs_access_entry cache;
2157 int status;
2158
2159 status = nfs_access_get_cached(inode, cred, &cache);
2160 if (status == 0)
2161 goto out;
2162
2163 /* Be clever: ask server to check for all possible rights */
2164 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2165 cache.cred = cred;
2166 cache.jiffies = jiffies;
2167 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002168 if (status != 0) {
2169 if (status == -ESTALE) {
2170 nfs_zap_caches(inode);
2171 if (!S_ISDIR(inode->i_mode))
2172 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 nfs_access_add_cache(inode, &cache);
2177out:
Al Viroe6305c42008-07-15 21:03:57 -04002178 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return 0;
2180 return -EACCES;
2181}
2182
Trond Myklebustaf22f942007-08-10 17:45:10 -04002183static int nfs_open_permission_mask(int openflags)
2184{
2185 int mask = 0;
2186
2187 if (openflags & FMODE_READ)
2188 mask |= MAY_READ;
2189 if (openflags & FMODE_WRITE)
2190 mask |= MAY_WRITE;
2191 if (openflags & FMODE_EXEC)
2192 mask |= MAY_EXEC;
2193 return mask;
2194}
2195
2196int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2197{
2198 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2199}
2200
Al Viroe6305c42008-07-15 21:03:57 -04002201int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 struct rpc_cred *cred;
2204 int res = 0;
2205
Chuck Lever91d5b472006-03-20 13:44:14 -05002206 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2207
Al Viroe6305c42008-07-15 21:03:57 -04002208 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 goto out;
2210 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002211 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 goto force_lookup;
2213
2214 switch (inode->i_mode & S_IFMT) {
2215 case S_IFLNK:
2216 goto out;
2217 case S_IFREG:
2218 /* NFSv4 has atomic_open... */
2219 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002220 && (mask & MAY_OPEN)
2221 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 goto out;
2223 break;
2224 case S_IFDIR:
2225 /*
2226 * Optimize away all write operations, since the server
2227 * will check permissions when we perform the op.
2228 */
2229 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2230 goto out;
2231 }
2232
2233force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (!NFS_PROTO(inode)->access)
2235 goto out_notsup;
2236
Trond Myklebust98a8e322008-03-12 12:25:28 -04002237 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (!IS_ERR(cred)) {
2239 res = nfs_do_access(inode, cred, mask);
2240 put_rpccred(cred);
2241 } else
2242 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002244 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2245 res = -EACCES;
2246
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002247 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2248 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return res;
2250out_notsup:
2251 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2252 if (res == 0)
2253 res = generic_permission(inode, mask, NULL);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002254 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257/*
2258 * Local variables:
2259 * version-control: t
2260 * kept-new-versions: 5
2261 * End:
2262 */