blob: e75f2aaafadf2a22e3810c0f47f911ee7ca7976f [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>
Catalin Marinas04e4bd12010-11-11 12:53:47 +000036#include <linux/kmemleak.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000037#include <linux/xattr.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 *);
Bryan Schumaker480c2002011-03-23 14:48:29 -040047static int nfs_closedir(struct inode *, struct file *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static int nfs_readdir(struct file *, void *, filldir_t);
Josef Bacik02c24a82011-07-16 20:44:56 -040049static int nfs_fsync_dir(struct file *, loff_t, loff_t, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000050static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Trond Myklebust11de3b12010-12-01 14:17:06 -050051static void nfs_readdir_clear_array(struct page*);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080053const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000054 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .read = generic_read_dir,
56 .readdir = nfs_readdir,
57 .open = nfs_opendir,
Bryan Schumaker480c2002011-03-23 14:48:29 -040058 .release = nfs_closedir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .fsync = nfs_fsync_dir,
60};
61
Trond Myklebust11de3b12010-12-01 14:17:06 -050062const struct address_space_operations nfs_dir_aops = {
63 .freepage = nfs_readdir_clear_array,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040064};
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#ifdef CONFIG_NFS_V4
67
Al Virod9585272012-06-22 12:39:14 +040068static int nfs_atomic_open(struct inode *, struct dentry *,
Al Viro30d90492012-06-22 12:40:19 +040069 struct file *, unsigned, umode_t,
Al Virod9585272012-06-22 12:39:14 +040070 int *);
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080071const struct inode_operations nfs4_dir_inode_operations = {
Miklos Szeredi8867fe52012-06-05 15:10:19 +020072 .create = nfs_create,
Miklos Szeredi0dd2b472012-06-05 15:10:18 +020073 .lookup = nfs_lookup,
74 .atomic_open = nfs_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .link = nfs_link,
76 .unlink = nfs_unlink,
77 .symlink = nfs_symlink,
78 .mkdir = nfs_mkdir,
79 .rmdir = nfs_rmdir,
80 .mknod = nfs_mknod,
81 .rename = nfs_rename,
82 .permission = nfs_permission,
83 .getattr = nfs_getattr,
84 .setattr = nfs_setattr,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000085 .getxattr = generic_getxattr,
86 .setxattr = generic_setxattr,
87 .listxattr = generic_listxattr,
88 .removexattr = generic_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91#endif /* CONFIG_NFS_V4 */
92
Trond Myklebust0c030802011-07-30 12:45:35 -040093static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, struct rpc_cred *cred)
Bryan Schumaker480c2002011-03-23 14:48:29 -040094{
95 struct nfs_open_dir_context *ctx;
96 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
97 if (ctx != NULL) {
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040098 ctx->duped = 0;
Trond Myklebust0c030802011-07-30 12:45:35 -040099 ctx->attr_gencount = NFS_I(dir)->attr_gencount;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400100 ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400101 ctx->dup_cookie = 0;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400102 ctx->cred = get_rpccred(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -0400103 return ctx;
104 }
105 return ERR_PTR(-ENOMEM);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400106}
107
108static void put_nfs_open_dir_context(struct nfs_open_dir_context *ctx)
109{
110 put_rpccred(ctx->cred);
111 kfree(ctx);
112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Open file
116 */
117static int
118nfs_opendir(struct inode *inode, struct file *filp)
119{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400120 int res = 0;
121 struct nfs_open_dir_context *ctx;
122 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Chuck Lever6da24bc2008-06-11 17:55:58 -0400124 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400125 filp->f_path.dentry->d_parent->d_name.name,
126 filp->f_path.dentry->d_name.name);
127
128 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500129
Bryan Schumaker480c2002011-03-23 14:48:29 -0400130 cred = rpc_lookup_cred();
131 if (IS_ERR(cred))
132 return PTR_ERR(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -0400133 ctx = alloc_nfs_open_dir_context(inode, cred);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400134 if (IS_ERR(ctx)) {
135 res = PTR_ERR(ctx);
136 goto out;
137 }
138 filp->private_data = ctx;
Neil Brownf5a73672010-08-10 10:20:05 -0400139 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
140 /* This is a mountpoint, so d_revalidate will never
141 * have been called, so we need to refresh the
142 * inode (for close-open consistency) ourselves.
143 */
144 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
145 }
Bryan Schumaker480c2002011-03-23 14:48:29 -0400146out:
147 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return res;
149}
150
Bryan Schumaker480c2002011-03-23 14:48:29 -0400151static int
152nfs_closedir(struct inode *inode, struct file *filp)
153{
154 put_nfs_open_dir_context(filp->private_data);
155 return 0;
156}
157
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400158struct nfs_cache_array_entry {
159 u64 cookie;
160 u64 ino;
161 struct qstr string;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500162 unsigned char d_type;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400163};
164
165struct nfs_cache_array {
Chuck Lever88b8e132012-03-01 17:00:23 -0500166 int size;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400167 int eof_index;
168 u64 last_cookie;
169 struct nfs_cache_array_entry array[0];
170};
171
Chuck Lever573c4e12010-12-14 14:58:11 +0000172typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173typedef struct {
174 struct file *file;
175 struct page *page;
176 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000177 u64 *dir_cookie;
Trond Myklebust0aded702010-11-30 21:56:32 -0500178 u64 last_cookie;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000179 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400181
Neil Brown1f4eab72007-04-16 09:35:27 +1000182 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400183 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400184 unsigned int cache_entry_index;
185 unsigned int plus:1;
186 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187} nfs_readdir_descriptor_t;
188
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400189/*
190 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
192static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400193struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500195 void *ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400196 if (page == NULL)
197 return ERR_PTR(-EIO);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500198 ptr = kmap(page);
199 if (ptr == NULL)
200 return ERR_PTR(-ENOMEM);
201 return ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400202}
203
204static
205void nfs_readdir_release_array(struct page *page)
206{
207 kunmap(page);
208}
209
210/*
211 * we are freeing strings created by nfs_add_to_readdir_array()
212 */
213static
Trond Myklebust11de3b12010-12-01 14:17:06 -0500214void nfs_readdir_clear_array(struct page *page)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400215{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500216 struct nfs_cache_array *array;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400217 int i;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500218
Cong Wang2b86ce22011-11-25 23:14:33 +0800219 array = kmap_atomic(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400220 for (i = 0; i < array->size; i++)
221 kfree(array->array[i].string.name);
Cong Wang2b86ce22011-11-25 23:14:33 +0800222 kunmap_atomic(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400223}
224
225/*
226 * the caller is responsible for freeing qstr.name
227 * when called by nfs_readdir_add_to_array, the strings will be freed in
228 * nfs_clear_readdir_array()
229 */
230static
Trond Myklebust4a201d62010-10-23 14:53:23 -0400231int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400232{
233 string->len = len;
234 string->name = kmemdup(name, len, GFP_KERNEL);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400235 if (string->name == NULL)
236 return -ENOMEM;
Catalin Marinas04e4bd12010-11-11 12:53:47 +0000237 /*
238 * Avoid a kmemleak false positive. The pointer to the name is stored
239 * in a page cache page which kmemleak does not scan.
240 */
241 kmemleak_not_leak(string->name);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400242 string->hash = full_name_hash(name, len);
243 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400244}
245
246static
247int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
248{
249 struct nfs_cache_array *array = nfs_readdir_get_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400250 struct nfs_cache_array_entry *cache_entry;
251 int ret;
252
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400253 if (IS_ERR(array))
254 return PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400255
Trond Myklebust4a201d62010-10-23 14:53:23 -0400256 cache_entry = &array->array[array->size];
Trond Myklebust30200932010-11-20 15:18:22 -0500257
258 /* Check that this entry lies within the page bounds */
259 ret = -ENOSPC;
260 if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
261 goto out;
262
Trond Myklebust4a201d62010-10-23 14:53:23 -0400263 cache_entry->cookie = entry->prev_cookie;
264 cache_entry->ino = entry->ino;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500265 cache_entry->d_type = entry->d_type;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400266 ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
267 if (ret)
268 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400269 array->last_cookie = entry->cookie;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500270 array->size++;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500271 if (entry->eof != 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400272 array->eof_index = array->size;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400273out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400274 nfs_readdir_release_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400275 return ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400276}
277
278static
279int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
280{
281 loff_t diff = desc->file->f_pos - desc->current_index;
282 unsigned int index;
283
284 if (diff < 0)
285 goto out_eof;
286 if (diff >= array->size) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500287 if (array->eof_index >= 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400288 goto out_eof;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400289 return -EAGAIN;
290 }
291
292 index = (unsigned int)diff;
293 *desc->dir_cookie = array->array[index].cookie;
294 desc->cache_entry_index = index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400295 return 0;
296out_eof:
297 desc->eof = 1;
298 return -EBADCOOKIE;
299}
300
301static
302int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
303{
304 int i;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400305 loff_t new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400306 int status = -EAGAIN;
307
308 for (i = 0; i < array->size; i++) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400309 if (array->array[i].cookie == *desc->dir_cookie) {
Trond Myklebust0c030802011-07-30 12:45:35 -0400310 struct nfs_inode *nfsi = NFS_I(desc->file->f_path.dentry->d_inode);
311 struct nfs_open_dir_context *ctx = desc->file->private_data;
312
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400313 new_pos = desc->current_index + i;
Trond Myklebust0c030802011-07-30 12:45:35 -0400314 if (ctx->attr_gencount != nfsi->attr_gencount
315 || (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))) {
316 ctx->duped = 0;
317 ctx->attr_gencount = nfsi->attr_gencount;
318 } else if (new_pos < desc->file->f_pos) {
319 if (ctx->duped > 0
320 && ctx->dup_cookie == *desc->dir_cookie) {
321 if (printk_ratelimit()) {
322 pr_notice("NFS: directory %s/%s contains a readdir loop."
323 "Please contact your server vendor. "
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400324 "The file: %s has duplicate cookie %llu\n",
Trond Myklebust0c030802011-07-30 12:45:35 -0400325 desc->file->f_dentry->d_parent->d_name.name,
326 desc->file->f_dentry->d_name.name,
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400327 array->array[i].string.name,
Trond Myklebust0c030802011-07-30 12:45:35 -0400328 *desc->dir_cookie);
329 }
330 status = -ELOOP;
331 goto out;
332 }
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400333 ctx->dup_cookie = *desc->dir_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400334 ctx->duped = -1;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400335 }
336 desc->file->f_pos = new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400337 desc->cache_entry_index = i;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500338 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400339 }
340 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500341 if (array->eof_index >= 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500342 status = -EBADCOOKIE;
Trond Myklebust18fb5fe2010-12-07 12:41:58 -0500343 if (*desc->dir_cookie == array->last_cookie)
344 desc->eof = 1;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500345 }
Trond Myklebust0c030802011-07-30 12:45:35 -0400346out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400347 return status;
348}
349
350static
351int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
352{
353 struct nfs_cache_array *array;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500354 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400355
356 array = nfs_readdir_get_array(desc->page);
357 if (IS_ERR(array)) {
358 status = PTR_ERR(array);
359 goto out;
360 }
361
362 if (*desc->dir_cookie == 0)
363 status = nfs_readdir_search_for_pos(array, desc);
364 else
365 status = nfs_readdir_search_for_cookie(array, desc);
366
Trond Myklebust47c716c2010-12-07 12:44:56 -0500367 if (status == -EAGAIN) {
Trond Myklebust0aded702010-11-30 21:56:32 -0500368 desc->last_cookie = array->last_cookie;
Trond Myklebuste47c0852011-03-23 08:43:09 -0400369 desc->current_index += array->size;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500370 desc->page_index++;
371 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400372 nfs_readdir_release_array(desc->page);
373out:
374 return status;
375}
376
377/* Fill a page with xdr information before transferring to the cache page */
378static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400379int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400380 struct nfs_entry *entry, struct file *file, struct inode *inode)
381{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400382 struct nfs_open_dir_context *ctx = file->private_data;
383 struct rpc_cred *cred = ctx->cred;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400384 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int error;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 again:
388 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400389 gencount = nfs_inc_attr_generation_counter();
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400390 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 NFS_SERVER(inode)->dtsize, desc->plus);
392 if (error < 0) {
393 /* We requested READDIRPLUS, but the server doesn't grok it */
394 if (error == -ENOTSUPP && desc->plus) {
395 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200396 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 desc->plus = 0;
398 goto again;
399 }
400 goto error;
401 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000402 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400403 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400404error:
405 return error;
406}
407
Chuck Lever573c4e12010-12-14 14:58:11 +0000408static int xdr_decode(nfs_readdir_descriptor_t *desc,
409 struct nfs_entry *entry, struct xdr_stream *xdr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400410{
Chuck Lever573c4e12010-12-14 14:58:11 +0000411 int error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400412
Chuck Lever573c4e12010-12-14 14:58:11 +0000413 error = desc->decode(xdr, entry, desc->plus);
414 if (error)
415 return error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400416 entry->fattr->time_start = desc->timestamp;
417 entry->fattr->gencount = desc->gencount;
418 return 0;
419}
420
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400421static
422int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
423{
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400424 if (dentry->d_inode == NULL)
425 goto different;
Trond Myklebust37a09f02010-11-30 12:42:34 -0500426 if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400427 goto different;
428 return 1;
429different:
430 return 0;
431}
432
433static
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400434bool nfs_use_readdirplus(struct inode *dir, struct file *filp)
435{
436 if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
437 return false;
438 if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
439 return true;
440 if (filp->f_pos == 0)
441 return true;
442 return false;
443}
444
445/*
446 * This function is called by the lookup code to request the use of
447 * readdirplus to accelerate any future lookups in the same
448 * directory.
449 */
450static
451void nfs_advise_use_readdirplus(struct inode *dir)
452{
453 set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags);
454}
455
456static
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400457void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
458{
Linus Torvalds26fe5752012-05-10 13:14:12 -0700459 struct qstr filename = QSTR_INIT(entry->name, entry->len);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400460 struct dentry *dentry;
461 struct dentry *alias;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400462 struct inode *dir = parent->d_inode;
463 struct inode *inode;
464
Trond Myklebust4a201d62010-10-23 14:53:23 -0400465 if (filename.name[0] == '.') {
466 if (filename.len == 1)
467 return;
468 if (filename.len == 2 && filename.name[1] == '.')
469 return;
470 }
471 filename.hash = full_name_hash(filename.name, filename.len);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400472
Trond Myklebust4a201d62010-10-23 14:53:23 -0400473 dentry = d_lookup(parent, &filename);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400474 if (dentry != NULL) {
475 if (nfs_same_file(dentry, entry)) {
476 nfs_refresh_inode(dentry->d_inode, entry->fattr);
477 goto out;
478 } else {
479 d_drop(dentry);
480 dput(dentry);
481 }
482 }
483
484 dentry = d_alloc(parent, &filename);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400485 if (dentry == NULL)
486 return;
487
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400488 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
489 if (IS_ERR(inode))
490 goto out;
491
492 alias = d_materialise_unique(dentry, inode);
493 if (IS_ERR(alias))
494 goto out;
495 else if (alias) {
496 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
497 dput(alias);
498 } else
499 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
500
501out:
502 dput(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400503}
504
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400505/* Perform conversion from xdr to cache array */
506static
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500507int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Trond Myklebust66502392011-01-08 17:45:38 -0500508 struct page **xdr_pages, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400509{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400510 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400511 struct xdr_buf buf;
Trond Myklebust66502392011-01-08 17:45:38 -0500512 struct page *scratch;
Bryan Schumaker99424382010-10-21 16:33:16 -0400513 struct nfs_cache_array *array;
Trond Myklebust5c346852010-11-20 12:43:45 -0500514 unsigned int count = 0;
515 int status;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400516
Trond Myklebust66502392011-01-08 17:45:38 -0500517 scratch = alloc_page(GFP_KERNEL);
518 if (scratch == NULL)
519 return -ENOMEM;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400520
Benny Halevyf7da7a12011-05-19 14:16:47 -0400521 xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
Trond Myklebust66502392011-01-08 17:45:38 -0500522 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
Bryan Schumaker99424382010-10-21 16:33:16 -0400523
524 do {
525 status = xdr_decode(desc, entry, &stream);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500526 if (status != 0) {
527 if (status == -EAGAIN)
528 status = 0;
Bryan Schumaker99424382010-10-21 16:33:16 -0400529 break;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500530 }
Bryan Schumaker99424382010-10-21 16:33:16 -0400531
Trond Myklebust5c346852010-11-20 12:43:45 -0500532 count++;
533
Trond Myklebust47c716c2010-12-07 12:44:56 -0500534 if (desc->plus != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400535 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500536
537 status = nfs_readdir_add_to_array(entry, page);
538 if (status != 0)
539 break;
Bryan Schumaker99424382010-10-21 16:33:16 -0400540 } while (!entry->eof);
541
Trond Myklebust47c716c2010-12-07 12:44:56 -0500542 if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
Bryan Schumaker99424382010-10-21 16:33:16 -0400543 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500544 if (!IS_ERR(array)) {
545 array->eof_index = array->size;
546 status = 0;
547 nfs_readdir_release_array(page);
Trond Myklebust5c346852010-11-20 12:43:45 -0500548 } else
549 status = PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400550 }
Trond Myklebust66502392011-01-08 17:45:38 -0500551
552 put_page(scratch);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500553 return status;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400554}
555
556static
557void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
558{
559 unsigned int i;
560 for (i = 0; i < npages; i++)
561 put_page(pages[i]);
562}
563
564static
565void nfs_readdir_free_large_page(void *ptr, struct page **pages,
566 unsigned int npages)
567{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400568 nfs_readdir_free_pagearray(pages, npages);
569}
570
571/*
572 * nfs_readdir_large_page will allocate pages that must be freed with a call
573 * to nfs_readdir_free_large_page
574 */
575static
Trond Myklebust66502392011-01-08 17:45:38 -0500576int nfs_readdir_large_page(struct page **pages, unsigned int npages)
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400577{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400578 unsigned int i;
579
580 for (i = 0; i < npages; i++) {
581 struct page *page = alloc_page(GFP_KERNEL);
582 if (page == NULL)
583 goto out_freepages;
584 pages[i] = page;
585 }
Trond Myklebust66502392011-01-08 17:45:38 -0500586 return 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400587
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400588out_freepages:
589 nfs_readdir_free_pagearray(pages, i);
Trond Myklebust66502392011-01-08 17:45:38 -0500590 return -ENOMEM;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400591}
592
593static
594int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
595{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400596 struct page *pages[NFS_MAX_READDIR_PAGES];
597 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400598 struct nfs_entry entry;
599 struct file *file = desc->file;
600 struct nfs_cache_array *array;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500601 int status = -ENOMEM;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400602 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400603
604 entry.prev_cookie = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500605 entry.cookie = desc->last_cookie;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400606 entry.eof = 0;
607 entry.fh = nfs_alloc_fhandle();
608 entry.fattr = nfs_alloc_fattr();
Chuck Lever573c4e12010-12-14 14:58:11 +0000609 entry.server = NFS_SERVER(inode);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400610 if (entry.fh == NULL || entry.fattr == NULL)
611 goto out;
612
613 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500614 if (IS_ERR(array)) {
615 status = PTR_ERR(array);
616 goto out;
617 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400618 memset(array, 0, sizeof(struct nfs_cache_array));
619 array->eof_index = -1;
620
Trond Myklebust66502392011-01-08 17:45:38 -0500621 status = nfs_readdir_large_page(pages, array_size);
622 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400623 goto out_release_array;
624 do {
Trond Myklebustac396122010-11-15 20:26:22 -0500625 unsigned int pglen;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400626 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400627
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400628 if (status < 0)
629 break;
Trond Myklebustac396122010-11-15 20:26:22 -0500630 pglen = status;
Trond Myklebust66502392011-01-08 17:45:38 -0500631 status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500632 if (status < 0) {
633 if (status == -ENOSPC)
634 status = 0;
635 break;
636 }
637 } while (array->eof_index < 0);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400638
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400639 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400640out_release_array:
641 nfs_readdir_release_array(page);
642out:
643 nfs_free_fattr(entry.fattr);
644 nfs_free_fhandle(entry.fh);
645 return status;
646}
647
648/*
649 * Now we cache directories properly, by converting xdr information
650 * to an array that can be used for lookups later. This results in
651 * fewer cache pages, since we can store more information on each page.
652 * We only need to convert from xdr once so future lookups are much simpler
653 */
654static
655int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
656{
657 struct inode *inode = desc->file->f_path.dentry->d_inode;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500658 int ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400659
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500660 ret = nfs_readdir_xdr_to_array(desc, page, inode);
661 if (ret < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400662 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400664
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400665 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700666 /* Should never happen */
667 nfs_zap_mapping(inode, inode->i_mapping);
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unlock_page(page);
670 return 0;
671 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 unlock_page(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400676static
677void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500679 if (!desc->page->mapping)
680 nfs_readdir_clear_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 page_cache_release(desc->page);
682 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400685static
686struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500688 return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400689 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400693 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000694 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400695static
696int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000697{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400698 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000699
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400700 desc->page = get_cache_page(desc);
701 if (IS_ERR(desc->page))
702 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000703
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400704 res = nfs_readdir_search_array(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500705 if (res != 0)
706 cache_page_release(desc);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400707 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000708}
709
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400710/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711static inline
712int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
713{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500714 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000715
Trond Myklebust0aded702010-11-30 21:56:32 -0500716 if (desc->page_index == 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500717 desc->current_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500718 desc->last_cookie = 0;
719 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500720 do {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400721 res = find_cache_page(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500722 } while (res == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return res;
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * Once we've found the start of the dirent within a page: fill 'er up...
728 */
729static
730int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
731 filldir_t filldir)
732{
733 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400734 int i = 0;
735 int res = 0;
736 struct nfs_cache_array *array = NULL;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400737 struct nfs_open_dir_context *ctx = file->private_data;
738
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400739 array = nfs_readdir_get_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500740 if (IS_ERR(array)) {
741 res = PTR_ERR(array);
742 goto out;
743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400745 for (i = desc->cache_entry_index; i < array->size; i++) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500746 struct nfs_cache_array_entry *ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Trond Myklebustece0b422010-11-20 13:55:33 -0500748 ent = &array->array[i];
749 if (filldir(dirent, ent->string.name, ent->string.len,
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500750 file->f_pos, nfs_compat_user_ino64(ent->ino),
751 ent->d_type) < 0) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500752 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
Trond Myklebustece0b422010-11-20 13:55:33 -0500754 }
Olivier Galibert00a92642005-06-22 17:16:29 +0000755 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400756 if (i < (array->size-1))
757 *desc->dir_cookie = array->array[i+1].cookie;
758 else
759 *desc->dir_cookie = array->last_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400760 if (ctx->duped != 0)
761 ctx->duped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500763 if (array->eof_index >= 0)
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500764 desc->eof = 1;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400765
766 nfs_readdir_release_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500767out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400768 cache_page_release(desc);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500769 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
770 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return res;
772}
773
774/*
775 * If we cannot find a cookie in our cache, we suspect that this is
776 * because it points to a deleted file, so we ask the server to return
777 * whatever it thinks is the next entry. We then feed this to filldir.
778 * If all goes well, we should then be able to find our way round the
779 * cache on the next call to readdir_search_pagecache();
780 *
781 * NOTE: we cannot add the anonymous page to the pagecache because
782 * the data it contains might not be page aligned. Besides,
783 * we should already have a complete representation of the
784 * directory in the page cache by the time we get here.
785 */
786static inline
787int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
788 filldir_t filldir)
789{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct page *page = NULL;
791 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400792 struct inode *inode = desc->file->f_path.dentry->d_inode;
Trond Myklebust0c030802011-07-30 12:45:35 -0400793 struct nfs_open_dir_context *ctx = desc->file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500795 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
796 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 page = alloc_page(GFP_HIGHUSER);
799 if (!page) {
800 status = -ENOMEM;
801 goto out;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500804 desc->page_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500805 desc->last_cookie = *desc->dir_cookie;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500806 desc->page = page;
Trond Myklebust0c030802011-07-30 12:45:35 -0400807 ctx->duped = 0;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500808
Trond Myklebust85f86072010-11-20 13:24:49 -0500809 status = nfs_readdir_xdr_to_array(desc, page, inode);
810 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400811 goto out_release;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 status = nfs_do_filldir(desc, dirent, filldir);
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500816 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700817 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return status;
819 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400820 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 goto out;
822}
823
Olivier Galibert00a92642005-06-22 17:16:29 +0000824/* The file offset position represents the dirent entry number. A
825 last cookie cache takes care of the common case of reading the
826 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 */
828static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
829{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800830 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct inode *inode = dentry->d_inode;
832 nfs_readdir_descriptor_t my_desc,
833 *desc = &my_desc;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400834 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500835 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Chuck Lever6da24bc2008-06-11 17:55:58 -0400837 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500838 dentry->d_parent->d_name.name, dentry->d_name.name,
839 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500840 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000843 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000844 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000845 * to either find the entry with the appropriate number or
846 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
848 memset(desc, 0, sizeof(*desc));
849
850 desc->file = filp;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400851 desc->dir_cookie = &dir_ctx->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 desc->decode = NFS_PROTO(inode)->decode_dirent;
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400853 desc->plus = nfs_use_readdirplus(inode, filp) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Trond Myklebust565277f2007-10-15 18:17:53 -0400855 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800856 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500857 if (res < 0)
858 goto out;
859
Trond Myklebust47c716c2010-12-07 12:44:56 -0500860 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (res == -EBADCOOKIE) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500864 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400866 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Or that the server has 'lost' a cookie */
868 res = uncached_readdir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500869 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 continue;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873 }
874 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200875 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400877 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400879 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 continue;
881 }
882 if (res < 0)
883 break;
884
885 res = nfs_do_filldir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500886 if (res < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500888 } while (!desc->eof);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500889out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400890 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500891 if (res > 0)
892 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400893 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500894 dentry->d_parent->d_name.name, dentry->d_name.name,
895 res);
896 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Trond Myklebust10afec902007-05-14 17:16:04 -0400899static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000900{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400901 struct dentry *dentry = filp->f_path.dentry;
902 struct inode *inode = dentry->d_inode;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400903 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Chuck Leverb84e06c2008-06-11 17:55:34 -0400904
Chuck Lever6da24bc2008-06-11 17:55:58 -0400905 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400906 dentry->d_parent->d_name.name,
907 dentry->d_name.name,
908 offset, origin);
909
910 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000911 switch (origin) {
912 case 1:
913 offset += filp->f_pos;
914 case 0:
915 if (offset >= 0)
916 break;
917 default:
918 offset = -EINVAL;
919 goto out;
920 }
921 if (offset != filp->f_pos) {
922 filp->f_pos = offset;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400923 dir_ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400924 dir_ctx->duped = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000925 }
926out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400927 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000928 return offset;
929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
932 * All directory operations under NFS are synchronous, so fsync()
933 * is a dummy operation.
934 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400935static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
936 int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200938 struct dentry *dentry = filp->f_path.dentry;
Josef Bacik02c24a82011-07-16 20:44:56 -0400939 struct inode *inode = dentry->d_inode;
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200940
Chuck Lever6da24bc2008-06-11 17:55:58 -0400941 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500942 dentry->d_parent->d_name.name, dentry->d_name.name,
943 datasync);
944
Josef Bacik02c24a82011-07-16 20:44:56 -0400945 mutex_lock(&inode->i_mutex);
Chuck Lever54917782008-05-27 16:29:07 -0400946 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Josef Bacik02c24a82011-07-16 20:44:56 -0400947 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
949}
950
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400951/**
952 * nfs_force_lookup_revalidate - Mark the directory as having changed
953 * @dir - pointer to directory inode
954 *
955 * This forces the revalidation code in nfs_lookup_revalidate() to do a
956 * full lookup on all child dentries of 'dir' whenever a change occurs
957 * on the server that might have invalidated our dcache.
958 *
959 * The caller should be holding dir->i_lock
960 */
961void nfs_force_lookup_revalidate(struct inode *dir)
962{
Trond Myklebust011935a2008-10-14 19:24:50 -0400963 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400964}
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966/*
967 * A check for whether or not the parent directory has changed.
968 * In the case it has, we assume that the dentries are untrustworthy
969 * and may need to be looked up again.
970 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500971static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 if (IS_ROOT(dentry))
974 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400975 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
976 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400977 if (!nfs_verify_change_attribute(dir, dentry->d_time))
978 return 0;
979 /* Revalidate nfsi->cache_change_attribute before we declare a match */
980 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
981 return 0;
982 if (!nfs_verify_change_attribute(dir, dentry->d_time))
983 return 0;
984 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400988 * Use intent information to check whether or not we're going to do
989 * an O_EXCL create using this path component.
990 */
Al Virofa3c56b2012-06-10 15:36:40 -0400991static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
Trond Myklebusta12802c2007-10-02 19:13:04 -0400992{
993 if (NFS_PROTO(dir)->version == 2)
994 return 0;
Al Virofa3c56b2012-06-10 15:36:40 -0400995 return flags & LOOKUP_EXCL;
Trond Myklebusta12802c2007-10-02 19:13:04 -0400996}
997
998/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400999 * Inode and filehandle revalidation for lookups.
1000 *
1001 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
1002 * or if the intent information indicates that we're about to open this
1003 * particular file and the "nocto" mount flag is not set.
1004 *
1005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006static inline
Al Virofa3c56b2012-06-10 15:36:40 -04001007int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct nfs_server *server = NFS_SERVER(inode);
1010
David Howells36d43a42011-01-14 18:45:42 +00001011 if (IS_AUTOMOUNT(inode))
Trond Myklebust4e99a1f2008-03-06 12:34:59 -05001012 return 0;
Al Virofacc3532012-06-10 15:33:51 -04001013 /* VFS wants an on-the-wire revalidation */
Al Virofa3c56b2012-06-10 15:36:40 -04001014 if (flags & LOOKUP_REVAL)
Al Virofacc3532012-06-10 15:33:51 -04001015 goto out_force;
1016 /* This is an open(2) */
Al Virofa3c56b2012-06-10 15:36:40 -04001017 if ((flags & LOOKUP_OPEN) && !(server->flags & NFS_MOUNT_NOCTO) &&
1018 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
Al Virofacc3532012-06-10 15:33:51 -04001019 goto out_force;
1020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021out_force:
1022 return __nfs_revalidate_inode(server, inode);
1023}
1024
1025/*
1026 * We judge how long we want to trust negative
1027 * dentries by looking at the parent inode mtime.
1028 *
1029 * If parent mtime has changed, we revalidate, else we wait for a
1030 * period corresponding to the parent's attribute cache timeout value.
1031 */
1032static inline
1033int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
Al Virofa3c56b2012-06-10 15:36:40 -04001034 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 /* Don't revalidate a negative dentry if we're creating a new file */
Al Virofa3c56b2012-06-10 15:36:40 -04001037 if (flags & LOOKUP_CREATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001039 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1040 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return !nfs_check_verifier(dir, dentry);
1042}
1043
1044/*
1045 * This is called every time the dcache has a lookup hit,
1046 * and we should check whether we can really trust that
1047 * lookup.
1048 *
1049 * NOTE! The hit can be a negative hit too, don't assume
1050 * we have an inode!
1051 *
1052 * If the parent directory is seen to have changed, we throw out the
1053 * cached dentry and do a new lookup.
1054 */
Al Viro0b728e12012-06-10 16:03:43 -04001055static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 struct inode *dir;
1058 struct inode *inode;
1059 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001060 struct nfs_fh *fhandle = NULL;
1061 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Al Virofa3c56b2012-06-10 15:36:40 -04001064 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001065 return -ECHILD;
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -05001069 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 inode = dentry->d_inode;
1071
1072 if (!inode) {
Al Virofa3c56b2012-06-10 15:36:40 -04001073 if (nfs_neg_need_reval(dir, dentry, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 goto out_bad;
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001075 goto out_valid_noent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
1078 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001079 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001080 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001081 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 goto out_bad;
1083 }
1084
Bryan Schumaker011e2a72012-06-20 15:53:43 -04001085 if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
Trond Myklebust15860ab2008-12-23 15:21:54 -05001086 goto out_set_verifier;
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /* Force a full look up iff the parent directory has changed */
Al Virofa3c56b2012-06-10 15:36:40 -04001089 if (!nfs_is_exclusive_create(dir, flags) && nfs_check_verifier(dir, dentry)) {
1090 if (nfs_lookup_verify_inode(inode, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto out_zap_parent;
1092 goto out_valid;
1093 }
1094
1095 if (NFS_STALE(inode))
1096 goto out_bad;
1097
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001098 error = -ENOMEM;
1099 fhandle = nfs_alloc_fhandle();
1100 fattr = nfs_alloc_fattr();
1101 if (fhandle == NULL || fattr == NULL)
1102 goto out_error;
1103
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001104 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (error)
1106 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001107 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001109 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto out_bad;
1111
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001112 nfs_free_fattr(fattr);
1113 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001114out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001115 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 out_valid:
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001117 /* Success: notify readdir to use READDIRPLUS */
1118 nfs_advise_use_readdirplus(dir);
1119 out_valid_noent:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001121 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001122 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001123 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return 1;
1125out_zap_parent:
1126 nfs_zap_caches(dir);
1127 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -04001128 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (inode && S_ISDIR(inode->i_mode)) {
1130 /* Purge readdir caches. */
1131 nfs_zap_caches(inode);
1132 /* If we have submounts, don't unhash ! */
1133 if (have_submounts(dentry))
1134 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +01001135 if (dentry->d_flags & DCACHE_DISCONNECTED)
1136 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 shrink_dcache_parent(dentry);
1138 }
1139 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001140 nfs_free_fattr(fattr);
1141 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001143 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001144 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001145 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001147out_error:
1148 nfs_free_fattr(fattr);
1149 nfs_free_fhandle(fhandle);
1150 dput(parent);
1151 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1152 __func__, dentry->d_parent->d_name.name,
1153 dentry->d_name.name, error);
1154 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157/*
1158 * This is called from dput() when d_count is going to 0.
1159 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001160static int nfs_dentry_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1163 dentry->d_parent->d_name.name, dentry->d_name.name,
1164 dentry->d_flags);
1165
Trond Myklebust77f11192008-01-28 19:43:19 -05001166 /* Unhash any dentry with a stale inode */
1167 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1168 return 1;
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1171 /* Unhash it, so that ->d_iput() would be called */
1172 return 1;
1173 }
1174 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1175 /* Unhash it, so that ancestors of killed async unlink
1176 * files will be cleaned up during umount */
1177 return 1;
1178 }
1179 return 0;
1180
1181}
1182
Trond Myklebust1b83d702008-06-11 15:44:04 -04001183static void nfs_drop_nlink(struct inode *inode)
1184{
1185 spin_lock(&inode->i_lock);
1186 if (inode->i_nlink > 0)
1187 drop_nlink(inode);
1188 spin_unlock(&inode->i_lock);
1189}
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191/*
1192 * Called when the dentry loses inode.
1193 * We use it to clean up silly-renamed files.
1194 */
1195static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1196{
Neil Brown83672d32007-02-26 12:48:25 +11001197 if (S_ISDIR(inode->i_mode))
1198 /* drop any readdir cache as it could easily be old */
1199 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001202 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001203 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 iput(inode);
1206}
1207
Al Virob1942c52011-03-16 05:44:14 -04001208static void nfs_d_release(struct dentry *dentry)
1209{
1210 /* free cached devname value, if it survived that far */
1211 if (unlikely(dentry->d_fsdata)) {
1212 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1213 WARN_ON(1);
1214 else
1215 kfree(dentry->d_fsdata);
1216 }
1217}
1218
Al Virof786aa92009-02-20 05:51:22 +00001219const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 .d_revalidate = nfs_lookup_revalidate,
1221 .d_delete = nfs_dentry_delete,
1222 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001223 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001224 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225};
1226
Bryan Schumaker597d9282012-07-16 16:39:10 -04001227struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001230 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001232 struct nfs_fh *fhandle = NULL;
1233 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1237 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001238 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 res = ERR_PTR(-ENAMETOOLONG);
1241 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1242 goto out;
1243
Trond Myklebustfd684072006-09-05 12:27:44 -04001244 /*
1245 * If we're doing an exclusive create, optimize away the lookup
1246 * but don't hash the dentry.
1247 */
Al Viro00cd8dd2012-06-10 17:13:09 -04001248 if (nfs_is_exclusive_create(dir, flags)) {
Trond Myklebustfd684072006-09-05 12:27:44 -04001249 d_instantiate(dentry, NULL);
1250 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001251 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001254 res = ERR_PTR(-ENOMEM);
1255 fhandle = nfs_alloc_fhandle();
1256 fattr = nfs_alloc_fattr();
1257 if (fhandle == NULL || fattr == NULL)
1258 goto out;
1259
Trond Myklebust565277f2007-10-15 18:17:53 -04001260 parent = dentry->d_parent;
1261 /* Protect against concurrent sillydeletes */
1262 nfs_block_sillyrename(parent);
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001263 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (error == -ENOENT)
1265 goto no_entry;
1266 if (error < 0) {
1267 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001268 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001270 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Namhyung Kimbf0c84f2010-12-28 17:02:46 +00001271 res = ERR_CAST(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001272 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001273 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001274
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001275 /* Success: notify readdir to use READDIRPLUS */
1276 nfs_advise_use_readdirplus(dir);
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001279 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001280 if (res != NULL) {
1281 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001282 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001286out_unblock_sillyrename:
1287 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001289 nfs_free_fattr(fattr);
1290 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return res;
1292}
1293
1294#ifdef CONFIG_NFS_V4
Al Viro0b728e12012-06-10 16:03:43 -04001295static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Al Virof786aa92009-02-20 05:51:22 +00001297const struct dentry_operations nfs4_dentry_operations = {
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001298 .d_revalidate = nfs4_lookup_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 .d_delete = nfs_dentry_delete,
1300 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001301 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001302 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303};
1304
Al Viro8a5e9292011-06-25 19:15:54 -04001305static fmode_t flags_to_mode(int flags)
1306{
1307 fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1308 if ((flags & O_ACCMODE) != O_WRONLY)
1309 res |= FMODE_READ;
1310 if ((flags & O_ACCMODE) != O_RDONLY)
1311 res |= FMODE_WRITE;
1312 return res;
1313}
1314
Al Viro51141592011-06-22 18:47:28 -04001315static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001316{
Al Viro5ede7b12011-10-23 18:49:54 -04001317 return alloc_nfs_open_context(dentry, flags_to_mode(open_flags));
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001318}
1319
1320static int do_open(struct inode *inode, struct file *filp)
1321{
1322 nfs_fscache_set_inode_cookie(inode, filp);
1323 return 0;
1324}
1325
Al Virod9585272012-06-22 12:39:14 +04001326static int nfs_finish_open(struct nfs_open_context *ctx,
1327 struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +04001328 struct file *file, unsigned open_flags,
Al Virod9585272012-06-22 12:39:14 +04001329 int *opened)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001330{
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001331 int err;
1332
1333 if (ctx->dentry != dentry) {
1334 dput(ctx->dentry);
1335 ctx->dentry = dget(dentry);
1336 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001337
1338 /* If the open_intent is for execute, we have an extra check to make */
1339 if (ctx->mode & FMODE_EXEC) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001340 err = nfs_may_open(dentry->d_inode, ctx->cred, open_flags);
Al Virod9585272012-06-22 12:39:14 +04001341 if (err < 0)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001342 goto out;
1343 }
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001344
Al Viro30d90492012-06-22 12:40:19 +04001345 err = finish_open(file, dentry, do_open, opened);
1346 if (err)
Al Virod9585272012-06-22 12:39:14 +04001347 goto out;
Al Viro30d90492012-06-22 12:40:19 +04001348 nfs_file_set_open_context(file, ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001349
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001350out:
1351 put_nfs_open_context(ctx);
Al Virod9585272012-06-22 12:39:14 +04001352 return err;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001353}
1354
Al Virod9585272012-06-22 12:39:14 +04001355static int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +04001356 struct file *file, unsigned open_flags,
Al Virod9585272012-06-22 12:39:14 +04001357 umode_t mode, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001359 struct nfs_open_context *ctx;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001360 struct dentry *res;
1361 struct iattr attr = { .ia_valid = ATTR_OPEN };
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001362 struct inode *inode;
Trond Myklebust898f6352010-10-23 11:24:25 -04001363 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001365 /* Expect a negative dentry */
1366 BUG_ON(dentry->d_inode);
1367
1368 dfprintk(VFS, "NFS: atomic_open(%s/%ld), %s\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001369 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1370
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001371 /* NFS only supports OPEN on regular files */
1372 if ((open_flags & O_DIRECTORY)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001373 if (!d_unhashed(dentry)) {
1374 /*
1375 * Hashed negative dentry with O_DIRECTORY: dentry was
1376 * revalidated and is fine, no need to perform lookup
1377 * again
1378 */
Al Virod9585272012-06-22 12:39:14 +04001379 return -ENOENT;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001384 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
Al Virod9585272012-06-22 12:39:14 +04001385 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001387 if (open_flags & O_CREAT) {
Trond Myklebust536e43d2012-01-17 22:04:26 -05001388 attr.ia_valid |= ATTR_MODE;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001389 attr.ia_mode = mode & ~current_umask();
1390 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001391 if (open_flags & O_TRUNC) {
1392 attr.ia_valid |= ATTR_SIZE;
1393 attr.ia_size = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001394 }
1395
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001396 ctx = create_nfs_open_context(dentry, open_flags);
1397 err = PTR_ERR(ctx);
1398 if (IS_ERR(ctx))
Al Virod9585272012-06-22 12:39:14 +04001399 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001400
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001401 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001402 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001403 d_drop(dentry);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001404 if (IS_ERR(inode)) {
1405 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001406 put_nfs_open_context(ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001407 err = PTR_ERR(inode);
1408 switch (err) {
1409 case -ENOENT:
1410 d_add(dentry, NULL);
1411 break;
1412 case -EISDIR:
1413 case -ENOTDIR:
1414 goto no_open;
1415 case -ELOOP:
1416 if (!(open_flags & O_NOFOLLOW))
Trond Myklebust6f926b52005-10-18 14:20:18 -07001417 goto no_open;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 /* case -EINVAL: */
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001420 default:
1421 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Al Virod9585272012-06-22 12:39:14 +04001423 goto out;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001424 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001425 res = d_add_unique(dentry, inode);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001426 if (res != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 dentry = res;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001428
1429 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001430 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001431
Al Viro30d90492012-06-22 12:40:19 +04001432 err = nfs_finish_open(ctx, dentry, file, open_flags, opened);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001433
1434 dput(res);
Al Virod9585272012-06-22 12:39:14 +04001435out:
1436 return err;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438no_open:
Al Viro00cd8dd2012-06-10 17:13:09 -04001439 res = nfs_lookup(dir, dentry, 0);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001440 err = PTR_ERR(res);
1441 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +04001442 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001443
Al Viroe45198a2012-06-10 06:48:09 -04001444 return finish_no_open(file, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
Al Viro0b728e12012-06-10 16:03:43 -04001447static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct dentry *parent = NULL;
Nick Piggin657e94b2011-01-14 02:48:39 +00001450 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 struct inode *dir;
Miklos Szeredi50de3482012-06-05 15:10:20 +02001452 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Al Virofa3c56b2012-06-10 15:36:40 -04001454 if (flags & LOOKUP_RCU)
Nick Piggin657e94b2011-01-14 02:48:39 +00001455 return -ECHILD;
1456
Al Virofa3c56b2012-06-10 15:36:40 -04001457 if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
Miklos Szeredieda72af2012-06-05 15:10:21 +02001458 goto no_open;
1459 if (d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001460 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001461
Miklos Szeredieda72af2012-06-05 15:10:21 +02001462 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 parent = dget_parent(dentry);
1464 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /* We can't create new files in nfs_open_revalidate(), so we
1467 * optimize away revalidation of negative dentries.
1468 */
Trond Myklebust216d5d062007-10-01 20:10:12 -04001469 if (inode == NULL) {
Al Virofa3c56b2012-06-10 15:36:40 -04001470 if (!nfs_neg_need_reval(dir, dentry, flags))
Trond Myklebust216d5d062007-10-01 20:10:12 -04001471 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 goto out;
Trond Myklebust216d5d062007-10-01 20:10:12 -04001473 }
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 /* NFS only supports OPEN on regular files */
1476 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001477 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /* We cannot do exclusive creation on a positive dentry */
Al Virofa3c56b2012-06-10 15:36:40 -04001479 if (flags & LOOKUP_EXCL)
Trond Myklebust5584c302008-12-23 15:21:54 -05001480 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001482 /* Let f_op->open() actually open (and revalidate) the file */
1483 ret = 1;
Trond Myklebust536e43d2012-01-17 22:04:26 -05001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485out:
1486 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001488
Trond Myklebust5584c302008-12-23 15:21:54 -05001489no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001491no_open:
Al Viro0b728e12012-06-10 16:03:43 -04001492 return nfs_lookup_revalidate(dentry, flags);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495#endif /* CONFIG_NFSV4 */
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497/*
1498 * Code common to create, mkdir, and mknod.
1499 */
1500int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1501 struct nfs_fattr *fattr)
1502{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001503 struct dentry *parent = dget_parent(dentry);
1504 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct inode *inode;
1506 int error = -EACCES;
1507
Trond Myklebustfab728e2007-09-29 17:41:33 -04001508 d_drop(dentry);
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 /* We may have been initialized further down */
1511 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001512 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (fhandle->size == 0) {
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001514 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001516 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001518 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1520 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001521 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001523 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001526 error = PTR_ERR(inode);
1527 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001528 goto out_error;
1529 d_add(dentry, inode);
1530out:
1531 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001533out_error:
1534 nfs_mark_for_revalidate(dir);
1535 dput(parent);
1536 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
1540 * Following a failed create operation, we drop the dentry rather
1541 * than retain a negative dentry. This avoids a problem in the event
1542 * that the operation succeeded on the server, but an error in the
1543 * reply path made it appear to have failed.
1544 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001545int nfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04001546 umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 struct iattr attr;
Al Viroebfc3b42012-06-10 18:05:36 -04001549 int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001552 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1553 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 attr.ia_mode = mode;
1556 attr.ia_valid = ATTR_MODE;
1557
Miklos Szeredi8867fe52012-06-05 15:10:19 +02001558 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (error != 0)
1560 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return 0;
1562out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 d_drop(dentry);
1564 return error;
1565}
1566
1567/*
1568 * See comments for nfs_proc_create regarding failed operations.
1569 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001570int
Al Viro1a67aaf2011-07-26 01:52:52 -04001571nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
1573 struct iattr attr;
1574 int status;
1575
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001576 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1577 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (!new_valid_dev(rdev))
1580 return -EINVAL;
1581
1582 attr.ia_mode = mode;
1583 attr.ia_valid = ATTR_MODE;
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (status != 0)
1587 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return 0;
1589out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 d_drop(dentry);
1591 return status;
1592}
1593
1594/*
1595 * See comments for nfs_proc_create regarding failed operations.
1596 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001597int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct iattr attr;
1600 int error;
1601
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001602 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1603 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 attr.ia_valid = ATTR_MODE;
1606 attr.ia_mode = mode | S_IFDIR;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (error != 0)
1610 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return 0;
1612out_err:
1613 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return error;
1615}
1616
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001617static void nfs_dentry_handle_enoent(struct dentry *dentry)
1618{
1619 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1620 d_delete(dentry);
1621}
1622
Bryan Schumaker597d9282012-07-16 16:39:10 -04001623int nfs_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 int error;
1626
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001627 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1628 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1631 /* Ensure the VFS deletes this inode */
1632 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001633 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001634 else if (error == -ENOENT)
1635 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 return error;
1638}
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640/*
1641 * Remove a file after making sure there are no pending writes,
1642 * and after checking that the file has only one user.
1643 *
1644 * We invalidate the attribute cache and free the inode prior to the operation
1645 * to avoid possible races if the server reuses the inode.
1646 */
1647static int nfs_safe_remove(struct dentry *dentry)
1648{
1649 struct inode *dir = dentry->d_parent->d_inode;
1650 struct inode *inode = dentry->d_inode;
1651 int error = -EBUSY;
1652
1653 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1654 dentry->d_parent->d_name.name, dentry->d_name.name);
1655
1656 /* If the dentry was sillyrenamed, we simply call d_delete() */
1657 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1658 error = 0;
1659 goto out;
1660 }
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (inode != NULL) {
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001663 NFS_PROTO(inode)->return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1665 /* The VFS may want to delete this inode */
1666 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001667 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001668 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 } else
1670 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001671 if (error == -ENOENT)
1672 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673out:
1674 return error;
1675}
1676
1677/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1678 * belongs to an active ".nfs..." file and we return -EBUSY.
1679 *
1680 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1681 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001682int nfs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 int error;
1685 int need_rehash = 0;
1686
1687 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1688 dir->i_ino, dentry->d_name.name);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001691 if (dentry->d_count > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 spin_unlock(&dentry->d_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001693 /* Start asynchronous writeout of the inode */
1694 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return error;
1697 }
1698 if (!d_unhashed(dentry)) {
1699 __d_drop(dentry);
1700 need_rehash = 1;
1701 }
1702 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001704 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1706 } else if (need_rehash)
1707 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return error;
1709}
1710
Chuck Lever873101b2006-08-22 20:06:23 -04001711/*
1712 * To create a symbolic link, most file systems instantiate a new inode,
1713 * add a page to it containing the path, then write it out to the disk
1714 * using prepare_write/commit_write.
1715 *
1716 * Unfortunately the NFS client can't create the in-core inode first
1717 * because it needs a file handle to create an in-core inode (see
1718 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1719 * symlink request has completed on the server.
1720 *
1721 * So instead we allocate a raw page, copy the symname into it, then do
1722 * the SYMLINK request with the page as the buffer. If it succeeds, we
1723 * now have a new file handle and can instantiate an in-core NFS inode
1724 * and move the raw page into its mapping.
1725 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001726int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Chuck Lever873101b2006-08-22 20:06:23 -04001728 struct pagevec lru_pvec;
1729 struct page *page;
1730 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001732 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 int error;
1734
1735 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1736 dir->i_ino, dentry->d_name.name, symname);
1737
Chuck Lever873101b2006-08-22 20:06:23 -04001738 if (pathlen > PAGE_SIZE)
1739 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Chuck Lever873101b2006-08-22 20:06:23 -04001741 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1742 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Jeff Layton83d93f22007-06-07 09:58:08 -04001744 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001745 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001746 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001747
Cong Wang2b86ce22011-11-25 23:14:33 +08001748 kaddr = kmap_atomic(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001749 memcpy(kaddr, symname, pathlen);
1750 if (pathlen < PAGE_SIZE)
1751 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
Cong Wang2b86ce22011-11-25 23:14:33 +08001752 kunmap_atomic(kaddr);
Chuck Lever873101b2006-08-22 20:06:23 -04001753
Chuck Lever94a6d752006-08-22 20:06:23 -04001754 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001755 if (error != 0) {
1756 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1757 dir->i_sb->s_id, dir->i_ino,
1758 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001760 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001761 return error;
1762 }
1763
1764 /*
1765 * No big deal if we can't add this page to the page cache here.
1766 * READLINK will get the missing page from the server if needed.
1767 */
1768 pagevec_init(&lru_pvec, 0);
1769 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1770 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001771 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001772 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001773 SetPageUptodate(page);
1774 unlock_page(page);
1775 } else
1776 __free_page(page);
1777
Chuck Lever873101b2006-08-22 20:06:23 -04001778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
Bryan Schumaker597d9282012-07-16 16:39:10 -04001781int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1783{
1784 struct inode *inode = old_dentry->d_inode;
1785 int error;
1786
1787 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1788 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1789 dentry->d_parent->d_name.name, dentry->d_name.name);
1790
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001791 NFS_PROTO(inode)->return_delegation(inode);
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001792
Trond Myklebust9697d232007-10-02 21:58:05 -04001793 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001795 if (error == 0) {
Al Viro7de9c6ee2010-10-23 11:11:40 -04001796 ihold(inode);
Trond Myklebust9697d232007-10-02 21:58:05 -04001797 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return error;
1800}
1801
1802/*
1803 * RENAME
1804 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1805 * different file handle for the same inode after a rename (e.g. when
1806 * moving to a different directory). A fail-safe method to do so would
1807 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1808 * rename the old file using the sillyrename stuff. This way, the original
1809 * file in old_dir will go away when the last process iput()s the inode.
1810 *
1811 * FIXED.
1812 *
1813 * It actually works quite well. One needs to have the possibility for
1814 * at least one ".nfs..." file in each directory the file ever gets
1815 * moved or linked to which happens automagically with the new
1816 * implementation that only depends on the dcache stuff instead of
1817 * using the inode layer
1818 *
1819 * Unfortunately, things are a little more complicated than indicated
1820 * above. For a cross-directory move, we want to make sure we can get
1821 * rid of the old inode after the operation. This means there must be
1822 * no pending writes (if it's a file), and the use count must be 1.
1823 * If these conditions are met, we can drop the dentries before doing
1824 * the rename.
1825 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001826int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 struct inode *new_dir, struct dentry *new_dentry)
1828{
1829 struct inode *old_inode = old_dentry->d_inode;
1830 struct inode *new_inode = new_dentry->d_inode;
1831 struct dentry *dentry = NULL, *rehash = NULL;
1832 int error = -EBUSY;
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1835 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1836 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001837 new_dentry->d_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001840 * For non-directories, check whether the target is busy and if so,
1841 * make a copy of the dentry and then do a silly-rename. If the
1842 * silly-rename succeeds, the copied dentry is hashed and becomes
1843 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001845 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1846 /*
1847 * To prevent any new references to the target during the
1848 * rename, we unhash the dentry in advance.
1849 */
1850 if (!d_unhashed(new_dentry)) {
1851 d_drop(new_dentry);
1852 rehash = new_dentry;
1853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001855 if (new_dentry->d_count > 2) {
Miklos Szeredi27226102009-12-03 15:58:56 -05001856 int err;
1857
1858 /* copy the target dentry's name */
1859 dentry = d_alloc(new_dentry->d_parent,
1860 &new_dentry->d_name);
1861 if (!dentry)
1862 goto out;
1863
1864 /* silly-rename the existing target ... */
1865 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001866 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001867 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001868
1869 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001870 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001871 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001872 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001875 NFS_PROTO(old_inode)->return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001876 if (new_inode != NULL)
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001877 NFS_PROTO(new_inode)->return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1880 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001881 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882out:
1883 if (rehash)
1884 d_rehash(rehash);
1885 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001886 if (new_inode != NULL)
1887 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001888 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001889 nfs_set_verifier(new_dentry,
1890 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001891 } else if (error == -ENOENT)
1892 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 /* new dentry created? */
1895 if (dentry)
1896 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return error;
1898}
1899
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001900static DEFINE_SPINLOCK(nfs_access_lru_lock);
1901static LIST_HEAD(nfs_access_lru_list);
1902static atomic_long_t nfs_access_nr_entries;
1903
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001904static void nfs_access_free_entry(struct nfs_access_entry *entry)
1905{
1906 put_rpccred(entry->cred);
1907 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001908 smp_mb__before_atomic_dec();
1909 atomic_long_dec(&nfs_access_nr_entries);
1910 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001911}
1912
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001913static void nfs_access_free_list(struct list_head *head)
1914{
1915 struct nfs_access_entry *cache;
1916
1917 while (!list_empty(head)) {
1918 cache = list_entry(head->next, struct nfs_access_entry, lru);
1919 list_del(&cache->lru);
1920 nfs_access_free_entry(cache);
1921 }
1922}
1923
Ying Han1495f232011-05-24 17:12:27 -07001924int nfs_access_cache_shrinker(struct shrinker *shrink,
1925 struct shrink_control *sc)
Trond Myklebust979df722006-07-25 11:28:19 -04001926{
1927 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001928 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001929 struct nfs_access_entry *cache;
Ying Han1495f232011-05-24 17:12:27 -07001930 int nr_to_scan = sc->nr_to_scan;
1931 gfp_t gfp_mask = sc->gfp_mask;
Trond Myklebust979df722006-07-25 11:28:19 -04001932
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001933 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1934 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001935
Trond Myklebusta50f7952007-06-05 19:23:43 -04001936 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001937 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001938 struct inode *inode;
1939
1940 if (nr_to_scan-- == 0)
1941 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001942 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001943 spin_lock(&inode->i_lock);
1944 if (list_empty(&nfsi->access_cache_entry_lru))
1945 goto remove_lru_entry;
1946 cache = list_entry(nfsi->access_cache_entry_lru.next,
1947 struct nfs_access_entry, lru);
1948 list_move(&cache->lru, &head);
1949 rb_erase(&cache->rb_node, &nfsi->access_cache);
1950 if (!list_empty(&nfsi->access_cache_entry_lru))
1951 list_move_tail(&nfsi->access_cache_inode_lru,
1952 &nfs_access_lru_list);
1953 else {
1954remove_lru_entry:
1955 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001956 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001957 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001958 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001959 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001960 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001961 }
1962 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001963 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001964 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1965}
1966
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001967static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001968{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001969 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001970 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001971 struct nfs_access_entry *entry;
1972
1973 /* Unhook entries from the cache */
1974 while ((n = rb_first(root_node)) != NULL) {
1975 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1976 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001977 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001978 }
1979 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001980}
1981
1982void nfs_access_zap_cache(struct inode *inode)
1983{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001984 LIST_HEAD(head);
1985
1986 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1987 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001988 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001989 spin_lock(&nfs_access_lru_lock);
1990 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001991 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001992
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001993 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001994 __nfs_access_zap_cache(NFS_I(inode), &head);
1995 spin_unlock(&inode->i_lock);
1996 spin_unlock(&nfs_access_lru_lock);
1997 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001998}
1999
2000static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
2001{
2002 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
2003 struct nfs_access_entry *entry;
2004
2005 while (n != NULL) {
2006 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2007
2008 if (cred < entry->cred)
2009 n = n->rb_left;
2010 else if (cred > entry->cred)
2011 n = n->rb_right;
2012 else
2013 return entry;
2014 }
2015 return NULL;
2016}
2017
Trond Myklebustaf22f942007-08-10 17:45:10 -04002018static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Chuck Lever55296802005-08-18 11:24:09 -07002020 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002021 struct nfs_access_entry *cache;
2022 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002024 spin_lock(&inode->i_lock);
2025 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2026 goto out_zap;
2027 cache = nfs_access_search_rbtree(inode, cred);
2028 if (cache == NULL)
2029 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002030 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002031 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002032 goto out_stale;
2033 res->jiffies = cache->jiffies;
2034 res->cred = cache->cred;
2035 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002036 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002037 err = 0;
2038out:
2039 spin_unlock(&inode->i_lock);
2040 return err;
2041out_stale:
2042 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002043 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002044 spin_unlock(&inode->i_lock);
2045 nfs_access_free_entry(cache);
2046 return -ENOENT;
2047out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002048 spin_unlock(&inode->i_lock);
2049 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002050 return -ENOENT;
2051}
2052
2053static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2054{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002055 struct nfs_inode *nfsi = NFS_I(inode);
2056 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002057 struct rb_node **p = &root_node->rb_node;
2058 struct rb_node *parent = NULL;
2059 struct nfs_access_entry *entry;
2060
2061 spin_lock(&inode->i_lock);
2062 while (*p != NULL) {
2063 parent = *p;
2064 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2065
2066 if (set->cred < entry->cred)
2067 p = &parent->rb_left;
2068 else if (set->cred > entry->cred)
2069 p = &parent->rb_right;
2070 else
2071 goto found;
2072 }
2073 rb_link_node(&set->rb_node, parent, p);
2074 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002075 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002076 spin_unlock(&inode->i_lock);
2077 return;
2078found:
2079 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002080 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2081 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002082 spin_unlock(&inode->i_lock);
2083 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
Trond Myklebustaf22f942007-08-10 17:45:10 -04002086static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002088 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2089 if (cache == NULL)
2090 return;
2091 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002093 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002095
2096 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002097
2098 /* Update accounting */
2099 smp_mb__before_atomic_inc();
2100 atomic_long_inc(&nfs_access_nr_entries);
2101 smp_mb__after_atomic_inc();
2102
2103 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002104 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002105 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002106 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2107 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2108 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002109 spin_unlock(&nfs_access_lru_lock);
2110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
2113static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2114{
2115 struct nfs_access_entry cache;
2116 int status;
2117
2118 status = nfs_access_get_cached(inode, cred, &cache);
2119 if (status == 0)
2120 goto out;
2121
2122 /* Be clever: ask server to check for all possible rights */
2123 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2124 cache.cred = cred;
2125 cache.jiffies = jiffies;
2126 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002127 if (status != 0) {
2128 if (status == -ESTALE) {
2129 nfs_zap_caches(inode);
2130 if (!S_ISDIR(inode->i_mode))
2131 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 nfs_access_add_cache(inode, &cache);
2136out:
Al Viroe6305c42008-07-15 21:03:57 -04002137 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return 0;
2139 return -EACCES;
2140}
2141
Trond Myklebustaf22f942007-08-10 17:45:10 -04002142static int nfs_open_permission_mask(int openflags)
2143{
2144 int mask = 0;
2145
Al Viro8a5e9292011-06-25 19:15:54 -04002146 if ((openflags & O_ACCMODE) != O_WRONLY)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002147 mask |= MAY_READ;
Al Viro8a5e9292011-06-25 19:15:54 -04002148 if ((openflags & O_ACCMODE) != O_RDONLY)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002149 mask |= MAY_WRITE;
Al Viro8a5e9292011-06-25 19:15:54 -04002150 if (openflags & __FMODE_EXEC)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002151 mask |= MAY_EXEC;
2152 return mask;
2153}
2154
2155int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2156{
2157 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2158}
2159
Al Viro10556cb22011-06-20 19:28:19 -04002160int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 struct rpc_cred *cred;
2163 int res = 0;
2164
Al Viro10556cb22011-06-20 19:28:19 -04002165 if (mask & MAY_NOT_BLOCK)
Nick Pigginb74c79e2011-01-07 17:49:58 +11002166 return -ECHILD;
2167
Chuck Lever91d5b472006-03-20 13:44:14 -05002168 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2169
Al Viroe6305c42008-07-15 21:03:57 -04002170 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 goto out;
2172 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002173 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 goto force_lookup;
2175
2176 switch (inode->i_mode & S_IFMT) {
2177 case S_IFLNK:
2178 goto out;
2179 case S_IFREG:
2180 /* NFSv4 has atomic_open... */
2181 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002182 && (mask & MAY_OPEN)
2183 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 goto out;
2185 break;
2186 case S_IFDIR:
2187 /*
2188 * Optimize away all write operations, since the server
2189 * will check permissions when we perform the op.
2190 */
2191 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2192 goto out;
2193 }
2194
2195force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 if (!NFS_PROTO(inode)->access)
2197 goto out_notsup;
2198
Trond Myklebust98a8e322008-03-12 12:25:28 -04002199 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 if (!IS_ERR(cred)) {
2201 res = nfs_do_access(inode, cred, mask);
2202 put_rpccred(cred);
2203 } else
2204 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002206 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2207 res = -EACCES;
2208
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002209 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2210 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return res;
2212out_notsup:
2213 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2214 if (res == 0)
Al Viro2830ba72011-06-20 19:16:29 -04002215 res = generic_permission(inode, mask);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217}
2218
2219/*
2220 * Local variables:
2221 * version-control: t
2222 * kept-new-versions: 5
2223 * End:
2224 */