blob: d49f1b9cd3fdc058e9863384629fc618ffb49314 [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
Trond Myklebust0c030802011-07-30 12:45:35 -040066static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, struct rpc_cred *cred)
Bryan Schumaker480c2002011-03-23 14:48:29 -040067{
68 struct nfs_open_dir_context *ctx;
69 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
70 if (ctx != NULL) {
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040071 ctx->duped = 0;
Trond Myklebust0c030802011-07-30 12:45:35 -040072 ctx->attr_gencount = NFS_I(dir)->attr_gencount;
Bryan Schumaker480c2002011-03-23 14:48:29 -040073 ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040074 ctx->dup_cookie = 0;
Bryan Schumaker480c2002011-03-23 14:48:29 -040075 ctx->cred = get_rpccred(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -040076 return ctx;
77 }
78 return ERR_PTR(-ENOMEM);
Bryan Schumaker480c2002011-03-23 14:48:29 -040079}
80
81static void put_nfs_open_dir_context(struct nfs_open_dir_context *ctx)
82{
83 put_rpccred(ctx->cred);
84 kfree(ctx);
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * Open file
89 */
90static int
91nfs_opendir(struct inode *inode, struct file *filp)
92{
Bryan Schumaker480c2002011-03-23 14:48:29 -040093 int res = 0;
94 struct nfs_open_dir_context *ctx;
95 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Chuck Lever6da24bc2008-06-11 17:55:58 -040097 dfprintk(FILE, "NFS: open dir(%s/%s)\n",
Chuck Levercc0dd2d2008-06-11 17:55:42 -040098 filp->f_path.dentry->d_parent->d_name.name,
99 filp->f_path.dentry->d_name.name);
100
101 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500102
Bryan Schumaker480c2002011-03-23 14:48:29 -0400103 cred = rpc_lookup_cred();
104 if (IS_ERR(cred))
105 return PTR_ERR(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -0400106 ctx = alloc_nfs_open_dir_context(inode, cred);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400107 if (IS_ERR(ctx)) {
108 res = PTR_ERR(ctx);
109 goto out;
110 }
111 filp->private_data = ctx;
Neil Brownf5a73672010-08-10 10:20:05 -0400112 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
113 /* This is a mountpoint, so d_revalidate will never
114 * have been called, so we need to refresh the
115 * inode (for close-open consistency) ourselves.
116 */
117 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
118 }
Bryan Schumaker480c2002011-03-23 14:48:29 -0400119out:
120 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return res;
122}
123
Bryan Schumaker480c2002011-03-23 14:48:29 -0400124static int
125nfs_closedir(struct inode *inode, struct file *filp)
126{
127 put_nfs_open_dir_context(filp->private_data);
128 return 0;
129}
130
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400131struct nfs_cache_array_entry {
132 u64 cookie;
133 u64 ino;
134 struct qstr string;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500135 unsigned char d_type;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400136};
137
138struct nfs_cache_array {
Chuck Lever88b8e132012-03-01 17:00:23 -0500139 int size;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400140 int eof_index;
141 u64 last_cookie;
142 struct nfs_cache_array_entry array[0];
143};
144
Chuck Lever573c4e12010-12-14 14:58:11 +0000145typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146typedef struct {
147 struct file *file;
148 struct page *page;
149 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000150 u64 *dir_cookie;
Trond Myklebust0aded702010-11-30 21:56:32 -0500151 u64 last_cookie;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000152 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400154
Neil Brown1f4eab72007-04-16 09:35:27 +1000155 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400156 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400157 unsigned int cache_entry_index;
158 unsigned int plus:1;
159 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160} nfs_readdir_descriptor_t;
161
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400162/*
163 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
165static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400166struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500168 void *ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400169 if (page == NULL)
170 return ERR_PTR(-EIO);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500171 ptr = kmap(page);
172 if (ptr == NULL)
173 return ERR_PTR(-ENOMEM);
174 return ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400175}
176
177static
178void nfs_readdir_release_array(struct page *page)
179{
180 kunmap(page);
181}
182
183/*
184 * we are freeing strings created by nfs_add_to_readdir_array()
185 */
186static
Trond Myklebust11de3b12010-12-01 14:17:06 -0500187void nfs_readdir_clear_array(struct page *page)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400188{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500189 struct nfs_cache_array *array;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400190 int i;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500191
Cong Wang2b86ce22011-11-25 23:14:33 +0800192 array = kmap_atomic(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400193 for (i = 0; i < array->size; i++)
194 kfree(array->array[i].string.name);
Cong Wang2b86ce22011-11-25 23:14:33 +0800195 kunmap_atomic(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400196}
197
198/*
199 * the caller is responsible for freeing qstr.name
200 * when called by nfs_readdir_add_to_array, the strings will be freed in
201 * nfs_clear_readdir_array()
202 */
203static
Trond Myklebust4a201d62010-10-23 14:53:23 -0400204int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400205{
206 string->len = len;
207 string->name = kmemdup(name, len, GFP_KERNEL);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400208 if (string->name == NULL)
209 return -ENOMEM;
Catalin Marinas04e4bd12010-11-11 12:53:47 +0000210 /*
211 * Avoid a kmemleak false positive. The pointer to the name is stored
212 * in a page cache page which kmemleak does not scan.
213 */
214 kmemleak_not_leak(string->name);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400215 string->hash = full_name_hash(name, len);
216 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400217}
218
219static
220int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
221{
222 struct nfs_cache_array *array = nfs_readdir_get_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400223 struct nfs_cache_array_entry *cache_entry;
224 int ret;
225
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400226 if (IS_ERR(array))
227 return PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400228
Trond Myklebust4a201d62010-10-23 14:53:23 -0400229 cache_entry = &array->array[array->size];
Trond Myklebust30200932010-11-20 15:18:22 -0500230
231 /* Check that this entry lies within the page bounds */
232 ret = -ENOSPC;
233 if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
234 goto out;
235
Trond Myklebust4a201d62010-10-23 14:53:23 -0400236 cache_entry->cookie = entry->prev_cookie;
237 cache_entry->ino = entry->ino;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500238 cache_entry->d_type = entry->d_type;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400239 ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
240 if (ret)
241 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400242 array->last_cookie = entry->cookie;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500243 array->size++;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500244 if (entry->eof != 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400245 array->eof_index = array->size;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400246out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400247 nfs_readdir_release_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400248 return ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400249}
250
251static
252int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
253{
254 loff_t diff = desc->file->f_pos - desc->current_index;
255 unsigned int index;
256
257 if (diff < 0)
258 goto out_eof;
259 if (diff >= array->size) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500260 if (array->eof_index >= 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400261 goto out_eof;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400262 return -EAGAIN;
263 }
264
265 index = (unsigned int)diff;
266 *desc->dir_cookie = array->array[index].cookie;
267 desc->cache_entry_index = index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400268 return 0;
269out_eof:
270 desc->eof = 1;
271 return -EBADCOOKIE;
272}
273
274static
275int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
276{
277 int i;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400278 loff_t new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400279 int status = -EAGAIN;
280
281 for (i = 0; i < array->size; i++) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400282 if (array->array[i].cookie == *desc->dir_cookie) {
Trond Myklebust0c030802011-07-30 12:45:35 -0400283 struct nfs_inode *nfsi = NFS_I(desc->file->f_path.dentry->d_inode);
284 struct nfs_open_dir_context *ctx = desc->file->private_data;
285
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400286 new_pos = desc->current_index + i;
Trond Myklebust0c030802011-07-30 12:45:35 -0400287 if (ctx->attr_gencount != nfsi->attr_gencount
288 || (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))) {
289 ctx->duped = 0;
290 ctx->attr_gencount = nfsi->attr_gencount;
291 } else if (new_pos < desc->file->f_pos) {
292 if (ctx->duped > 0
293 && ctx->dup_cookie == *desc->dir_cookie) {
294 if (printk_ratelimit()) {
295 pr_notice("NFS: directory %s/%s contains a readdir loop."
296 "Please contact your server vendor. "
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400297 "The file: %s has duplicate cookie %llu\n",
Trond Myklebust0c030802011-07-30 12:45:35 -0400298 desc->file->f_dentry->d_parent->d_name.name,
299 desc->file->f_dentry->d_name.name,
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400300 array->array[i].string.name,
Trond Myklebust0c030802011-07-30 12:45:35 -0400301 *desc->dir_cookie);
302 }
303 status = -ELOOP;
304 goto out;
305 }
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400306 ctx->dup_cookie = *desc->dir_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400307 ctx->duped = -1;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400308 }
309 desc->file->f_pos = new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400310 desc->cache_entry_index = i;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500311 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400312 }
313 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500314 if (array->eof_index >= 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500315 status = -EBADCOOKIE;
Trond Myklebust18fb5fe2010-12-07 12:41:58 -0500316 if (*desc->dir_cookie == array->last_cookie)
317 desc->eof = 1;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500318 }
Trond Myklebust0c030802011-07-30 12:45:35 -0400319out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400320 return status;
321}
322
323static
324int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
325{
326 struct nfs_cache_array *array;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500327 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400328
329 array = nfs_readdir_get_array(desc->page);
330 if (IS_ERR(array)) {
331 status = PTR_ERR(array);
332 goto out;
333 }
334
335 if (*desc->dir_cookie == 0)
336 status = nfs_readdir_search_for_pos(array, desc);
337 else
338 status = nfs_readdir_search_for_cookie(array, desc);
339
Trond Myklebust47c716c2010-12-07 12:44:56 -0500340 if (status == -EAGAIN) {
Trond Myklebust0aded702010-11-30 21:56:32 -0500341 desc->last_cookie = array->last_cookie;
Trond Myklebuste47c0852011-03-23 08:43:09 -0400342 desc->current_index += array->size;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500343 desc->page_index++;
344 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400345 nfs_readdir_release_array(desc->page);
346out:
347 return status;
348}
349
350/* Fill a page with xdr information before transferring to the cache page */
351static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400352int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400353 struct nfs_entry *entry, struct file *file, struct inode *inode)
354{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400355 struct nfs_open_dir_context *ctx = file->private_data;
356 struct rpc_cred *cred = ctx->cred;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400357 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 int error;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 again:
361 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400362 gencount = nfs_inc_attr_generation_counter();
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400363 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 NFS_SERVER(inode)->dtsize, desc->plus);
365 if (error < 0) {
366 /* We requested READDIRPLUS, but the server doesn't grok it */
367 if (error == -ENOTSUPP && desc->plus) {
368 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200369 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 desc->plus = 0;
371 goto again;
372 }
373 goto error;
374 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000375 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400376 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400377error:
378 return error;
379}
380
Chuck Lever573c4e12010-12-14 14:58:11 +0000381static int xdr_decode(nfs_readdir_descriptor_t *desc,
382 struct nfs_entry *entry, struct xdr_stream *xdr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400383{
Chuck Lever573c4e12010-12-14 14:58:11 +0000384 int error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400385
Chuck Lever573c4e12010-12-14 14:58:11 +0000386 error = desc->decode(xdr, entry, desc->plus);
387 if (error)
388 return error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400389 entry->fattr->time_start = desc->timestamp;
390 entry->fattr->gencount = desc->gencount;
391 return 0;
392}
393
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400394static
395int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
396{
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400397 if (dentry->d_inode == NULL)
398 goto different;
Trond Myklebust37a09f02010-11-30 12:42:34 -0500399 if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400400 goto different;
401 return 1;
402different:
403 return 0;
404}
405
406static
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400407bool nfs_use_readdirplus(struct inode *dir, struct file *filp)
408{
409 if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
410 return false;
411 if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
412 return true;
413 if (filp->f_pos == 0)
414 return true;
415 return false;
416}
417
418/*
419 * This function is called by the lookup code to request the use of
420 * readdirplus to accelerate any future lookups in the same
421 * directory.
422 */
423static
424void nfs_advise_use_readdirplus(struct inode *dir)
425{
426 set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags);
427}
428
429static
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400430void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
431{
Linus Torvalds26fe5752012-05-10 13:14:12 -0700432 struct qstr filename = QSTR_INIT(entry->name, entry->len);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400433 struct dentry *dentry;
434 struct dentry *alias;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400435 struct inode *dir = parent->d_inode;
436 struct inode *inode;
437
Trond Myklebust4a201d62010-10-23 14:53:23 -0400438 if (filename.name[0] == '.') {
439 if (filename.len == 1)
440 return;
441 if (filename.len == 2 && filename.name[1] == '.')
442 return;
443 }
444 filename.hash = full_name_hash(filename.name, filename.len);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400445
Trond Myklebust4a201d62010-10-23 14:53:23 -0400446 dentry = d_lookup(parent, &filename);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400447 if (dentry != NULL) {
448 if (nfs_same_file(dentry, entry)) {
449 nfs_refresh_inode(dentry->d_inode, entry->fattr);
450 goto out;
451 } else {
452 d_drop(dentry);
453 dput(dentry);
454 }
455 }
456
457 dentry = d_alloc(parent, &filename);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400458 if (dentry == NULL)
459 return;
460
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400461 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr);
462 if (IS_ERR(inode))
463 goto out;
464
465 alias = d_materialise_unique(dentry, inode);
466 if (IS_ERR(alias))
467 goto out;
468 else if (alias) {
469 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
470 dput(alias);
471 } else
472 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
473
474out:
475 dput(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400476}
477
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400478/* Perform conversion from xdr to cache array */
479static
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500480int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Trond Myklebust66502392011-01-08 17:45:38 -0500481 struct page **xdr_pages, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400482{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400483 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400484 struct xdr_buf buf;
Trond Myklebust66502392011-01-08 17:45:38 -0500485 struct page *scratch;
Bryan Schumaker99424382010-10-21 16:33:16 -0400486 struct nfs_cache_array *array;
Trond Myklebust5c346852010-11-20 12:43:45 -0500487 unsigned int count = 0;
488 int status;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400489
Trond Myklebust66502392011-01-08 17:45:38 -0500490 scratch = alloc_page(GFP_KERNEL);
491 if (scratch == NULL)
492 return -ENOMEM;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400493
Benny Halevyf7da7a12011-05-19 14:16:47 -0400494 xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
Trond Myklebust66502392011-01-08 17:45:38 -0500495 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
Bryan Schumaker99424382010-10-21 16:33:16 -0400496
497 do {
498 status = xdr_decode(desc, entry, &stream);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500499 if (status != 0) {
500 if (status == -EAGAIN)
501 status = 0;
Bryan Schumaker99424382010-10-21 16:33:16 -0400502 break;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500503 }
Bryan Schumaker99424382010-10-21 16:33:16 -0400504
Trond Myklebust5c346852010-11-20 12:43:45 -0500505 count++;
506
Trond Myklebust47c716c2010-12-07 12:44:56 -0500507 if (desc->plus != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400508 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500509
510 status = nfs_readdir_add_to_array(entry, page);
511 if (status != 0)
512 break;
Bryan Schumaker99424382010-10-21 16:33:16 -0400513 } while (!entry->eof);
514
Trond Myklebust47c716c2010-12-07 12:44:56 -0500515 if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
Bryan Schumaker99424382010-10-21 16:33:16 -0400516 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500517 if (!IS_ERR(array)) {
518 array->eof_index = array->size;
519 status = 0;
520 nfs_readdir_release_array(page);
Trond Myklebust5c346852010-11-20 12:43:45 -0500521 } else
522 status = PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400523 }
Trond Myklebust66502392011-01-08 17:45:38 -0500524
525 put_page(scratch);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500526 return status;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400527}
528
529static
530void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
531{
532 unsigned int i;
533 for (i = 0; i < npages; i++)
534 put_page(pages[i]);
535}
536
537static
538void nfs_readdir_free_large_page(void *ptr, struct page **pages,
539 unsigned int npages)
540{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400541 nfs_readdir_free_pagearray(pages, npages);
542}
543
544/*
545 * nfs_readdir_large_page will allocate pages that must be freed with a call
546 * to nfs_readdir_free_large_page
547 */
548static
Trond Myklebust66502392011-01-08 17:45:38 -0500549int nfs_readdir_large_page(struct page **pages, unsigned int npages)
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400550{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400551 unsigned int i;
552
553 for (i = 0; i < npages; i++) {
554 struct page *page = alloc_page(GFP_KERNEL);
555 if (page == NULL)
556 goto out_freepages;
557 pages[i] = page;
558 }
Trond Myklebust66502392011-01-08 17:45:38 -0500559 return 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400560
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400561out_freepages:
562 nfs_readdir_free_pagearray(pages, i);
Trond Myklebust66502392011-01-08 17:45:38 -0500563 return -ENOMEM;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400564}
565
566static
567int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
568{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400569 struct page *pages[NFS_MAX_READDIR_PAGES];
570 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400571 struct nfs_entry entry;
572 struct file *file = desc->file;
573 struct nfs_cache_array *array;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500574 int status = -ENOMEM;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400575 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400576
577 entry.prev_cookie = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500578 entry.cookie = desc->last_cookie;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400579 entry.eof = 0;
580 entry.fh = nfs_alloc_fhandle();
581 entry.fattr = nfs_alloc_fattr();
Chuck Lever573c4e12010-12-14 14:58:11 +0000582 entry.server = NFS_SERVER(inode);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400583 if (entry.fh == NULL || entry.fattr == NULL)
584 goto out;
585
586 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500587 if (IS_ERR(array)) {
588 status = PTR_ERR(array);
589 goto out;
590 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400591 memset(array, 0, sizeof(struct nfs_cache_array));
592 array->eof_index = -1;
593
Trond Myklebust66502392011-01-08 17:45:38 -0500594 status = nfs_readdir_large_page(pages, array_size);
595 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400596 goto out_release_array;
597 do {
Trond Myklebustac396122010-11-15 20:26:22 -0500598 unsigned int pglen;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400599 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400600
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400601 if (status < 0)
602 break;
Trond Myklebustac396122010-11-15 20:26:22 -0500603 pglen = status;
Trond Myklebust66502392011-01-08 17:45:38 -0500604 status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500605 if (status < 0) {
606 if (status == -ENOSPC)
607 status = 0;
608 break;
609 }
610 } while (array->eof_index < 0);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400611
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400612 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400613out_release_array:
614 nfs_readdir_release_array(page);
615out:
616 nfs_free_fattr(entry.fattr);
617 nfs_free_fhandle(entry.fh);
618 return status;
619}
620
621/*
622 * Now we cache directories properly, by converting xdr information
623 * to an array that can be used for lookups later. This results in
624 * fewer cache pages, since we can store more information on each page.
625 * We only need to convert from xdr once so future lookups are much simpler
626 */
627static
628int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
629{
630 struct inode *inode = desc->file->f_path.dentry->d_inode;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500631 int ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400632
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500633 ret = nfs_readdir_xdr_to_array(desc, page, inode);
634 if (ret < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400635 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400637
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400638 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700639 /* Should never happen */
640 nfs_zap_mapping(inode, inode->i_mapping);
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 unlock_page(page);
643 return 0;
644 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 unlock_page(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500646 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400649static
650void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500652 if (!desc->page->mapping)
653 nfs_readdir_clear_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 page_cache_release(desc->page);
655 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400658static
659struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500661 return read_cache_page(desc->file->f_path.dentry->d_inode->i_mapping,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400662 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400666 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000667 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400668static
669int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000670{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400671 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000672
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400673 desc->page = get_cache_page(desc);
674 if (IS_ERR(desc->page))
675 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000676
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400677 res = nfs_readdir_search_array(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500678 if (res != 0)
679 cache_page_release(desc);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400680 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000681}
682
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400683/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684static inline
685int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
686{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500687 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000688
Trond Myklebust0aded702010-11-30 21:56:32 -0500689 if (desc->page_index == 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500690 desc->current_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500691 desc->last_cookie = 0;
692 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500693 do {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400694 res = find_cache_page(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500695 } while (res == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return res;
697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699/*
700 * Once we've found the start of the dirent within a page: fill 'er up...
701 */
702static
703int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
704 filldir_t filldir)
705{
706 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400707 int i = 0;
708 int res = 0;
709 struct nfs_cache_array *array = NULL;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400710 struct nfs_open_dir_context *ctx = file->private_data;
711
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400712 array = nfs_readdir_get_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500713 if (IS_ERR(array)) {
714 res = PTR_ERR(array);
715 goto out;
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400718 for (i = desc->cache_entry_index; i < array->size; i++) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500719 struct nfs_cache_array_entry *ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Trond Myklebustece0b422010-11-20 13:55:33 -0500721 ent = &array->array[i];
722 if (filldir(dirent, ent->string.name, ent->string.len,
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500723 file->f_pos, nfs_compat_user_ino64(ent->ino),
724 ent->d_type) < 0) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500725 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 break;
Trond Myklebustece0b422010-11-20 13:55:33 -0500727 }
Olivier Galibert00a92642005-06-22 17:16:29 +0000728 file->f_pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400729 if (i < (array->size-1))
730 *desc->dir_cookie = array->array[i+1].cookie;
731 else
732 *desc->dir_cookie = array->last_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400733 if (ctx->duped != 0)
734 ctx->duped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500736 if (array->eof_index >= 0)
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500737 desc->eof = 1;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400738
739 nfs_readdir_release_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500740out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400741 cache_page_release(desc);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500742 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
743 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return res;
745}
746
747/*
748 * If we cannot find a cookie in our cache, we suspect that this is
749 * because it points to a deleted file, so we ask the server to return
750 * whatever it thinks is the next entry. We then feed this to filldir.
751 * If all goes well, we should then be able to find our way round the
752 * cache on the next call to readdir_search_pagecache();
753 *
754 * NOTE: we cannot add the anonymous page to the pagecache because
755 * the data it contains might not be page aligned. Besides,
756 * we should already have a complete representation of the
757 * directory in the page cache by the time we get here.
758 */
759static inline
760int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
761 filldir_t filldir)
762{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct page *page = NULL;
764 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400765 struct inode *inode = desc->file->f_path.dentry->d_inode;
Trond Myklebust0c030802011-07-30 12:45:35 -0400766 struct nfs_open_dir_context *ctx = desc->file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500768 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
769 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 page = alloc_page(GFP_HIGHUSER);
772 if (!page) {
773 status = -ENOMEM;
774 goto out;
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500777 desc->page_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500778 desc->last_cookie = *desc->dir_cookie;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500779 desc->page = page;
Trond Myklebust0c030802011-07-30 12:45:35 -0400780 ctx->duped = 0;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500781
Trond Myklebust85f86072010-11-20 13:24:49 -0500782 status = nfs_readdir_xdr_to_array(desc, page, inode);
783 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400784 goto out_release;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 status = nfs_do_filldir(desc, dirent, filldir);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500789 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700790 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return status;
792 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400793 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 goto out;
795}
796
Olivier Galibert00a92642005-06-22 17:16:29 +0000797/* The file offset position represents the dirent entry number. A
798 last cookie cache takes care of the common case of reading the
799 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
801static int nfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
802{
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800803 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct inode *inode = dentry->d_inode;
805 nfs_readdir_descriptor_t my_desc,
806 *desc = &my_desc;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400807 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500808 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Chuck Lever6da24bc2008-06-11 17:55:58 -0400810 dfprintk(FILE, "NFS: readdir(%s/%s) starting at cookie %llu\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500811 dentry->d_parent->d_name.name, dentry->d_name.name,
812 (long long)filp->f_pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500813 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /*
Olivier Galibert00a92642005-06-22 17:16:29 +0000816 * filp->f_pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000817 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000818 * to either find the entry with the appropriate number or
819 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
821 memset(desc, 0, sizeof(*desc));
822
823 desc->file = filp;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400824 desc->dir_cookie = &dir_ctx->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 desc->decode = NFS_PROTO(inode)->decode_dirent;
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400826 desc->plus = nfs_use_readdirplus(inode, filp) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Trond Myklebust565277f2007-10-15 18:17:53 -0400828 nfs_block_sillyrename(dentry);
Trond Myklebust1cda7072010-02-19 17:03:30 -0800829 res = nfs_revalidate_mapping(inode, filp->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500830 if (res < 0)
831 goto out;
832
Trond Myklebust47c716c2010-12-07 12:44:56 -0500833 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (res == -EBADCOOKIE) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500837 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400839 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* Or that the server has 'lost' a cookie */
841 res = uncached_readdir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500842 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 continue;
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846 }
847 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200848 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400850 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400852 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 continue;
854 }
855 if (res < 0)
856 break;
857
858 res = nfs_do_filldir(desc, dirent, filldir);
Trond Myklebustece0b422010-11-20 13:55:33 -0500859 if (res < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500861 } while (!desc->eof);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500862out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400863 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500864 if (res > 0)
865 res = 0;
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400866 dfprintk(FILE, "NFS: readdir(%s/%s) returns %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500867 dentry->d_parent->d_name.name, dentry->d_name.name,
868 res);
869 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Trond Myklebust10afec902007-05-14 17:16:04 -0400872static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int origin)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000873{
Chuck Leverb84e06c2008-06-11 17:55:34 -0400874 struct dentry *dentry = filp->f_path.dentry;
875 struct inode *inode = dentry->d_inode;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400876 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Chuck Leverb84e06c2008-06-11 17:55:34 -0400877
Chuck Lever6da24bc2008-06-11 17:55:58 -0400878 dfprintk(FILE, "NFS: llseek dir(%s/%s, %lld, %d)\n",
Chuck Leverb84e06c2008-06-11 17:55:34 -0400879 dentry->d_parent->d_name.name,
880 dentry->d_name.name,
881 offset, origin);
882
883 mutex_lock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000884 switch (origin) {
885 case 1:
886 offset += filp->f_pos;
887 case 0:
888 if (offset >= 0)
889 break;
890 default:
891 offset = -EINVAL;
892 goto out;
893 }
894 if (offset != filp->f_pos) {
895 filp->f_pos = offset;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400896 dir_ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400897 dir_ctx->duped = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000898 }
899out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400900 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000901 return offset;
902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * All directory operations under NFS are synchronous, so fsync()
906 * is a dummy operation.
907 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400908static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
909 int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200911 struct dentry *dentry = filp->f_path.dentry;
Josef Bacik02c24a82011-07-16 20:44:56 -0400912 struct inode *inode = dentry->d_inode;
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200913
Chuck Lever6da24bc2008-06-11 17:55:58 -0400914 dfprintk(FILE, "NFS: fsync dir(%s/%s) datasync %d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500915 dentry->d_parent->d_name.name, dentry->d_name.name,
916 datasync);
917
Josef Bacik02c24a82011-07-16 20:44:56 -0400918 mutex_lock(&inode->i_mutex);
Chuck Lever54917782008-05-27 16:29:07 -0400919 nfs_inc_stats(dentry->d_inode, NFSIOS_VFSFSYNC);
Josef Bacik02c24a82011-07-16 20:44:56 -0400920 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return 0;
922}
923
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400924/**
925 * nfs_force_lookup_revalidate - Mark the directory as having changed
926 * @dir - pointer to directory inode
927 *
928 * This forces the revalidation code in nfs_lookup_revalidate() to do a
929 * full lookup on all child dentries of 'dir' whenever a change occurs
930 * on the server that might have invalidated our dcache.
931 *
932 * The caller should be holding dir->i_lock
933 */
934void nfs_force_lookup_revalidate(struct inode *dir)
935{
Trond Myklebust011935a2008-10-14 19:24:50 -0400936 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/*
940 * A check for whether or not the parent directory has changed.
941 * In the case it has, we assume that the dentries are untrustworthy
942 * and may need to be looked up again.
943 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500944static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 if (IS_ROOT(dentry))
947 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400948 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
949 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400950 if (!nfs_verify_change_attribute(dir, dentry->d_time))
951 return 0;
952 /* Revalidate nfsi->cache_change_attribute before we declare a match */
953 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
954 return 0;
955 if (!nfs_verify_change_attribute(dir, dentry->d_time))
956 return 0;
957 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400961 * Use intent information to check whether or not we're going to do
962 * an O_EXCL create using this path component.
963 */
Al Virofa3c56b2012-06-10 15:36:40 -0400964static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
Trond Myklebusta12802c2007-10-02 19:13:04 -0400965{
966 if (NFS_PROTO(dir)->version == 2)
967 return 0;
Al Virofa3c56b2012-06-10 15:36:40 -0400968 return flags & LOOKUP_EXCL;
Trond Myklebusta12802c2007-10-02 19:13:04 -0400969}
970
971/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400972 * Inode and filehandle revalidation for lookups.
973 *
974 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
975 * or if the intent information indicates that we're about to open this
976 * particular file and the "nocto" mount flag is not set.
977 *
978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979static inline
Al Virofa3c56b2012-06-10 15:36:40 -0400980int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct nfs_server *server = NFS_SERVER(inode);
983
David Howells36d43a42011-01-14 18:45:42 +0000984 if (IS_AUTOMOUNT(inode))
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500985 return 0;
Al Virofacc3532012-06-10 15:33:51 -0400986 /* VFS wants an on-the-wire revalidation */
Al Virofa3c56b2012-06-10 15:36:40 -0400987 if (flags & LOOKUP_REVAL)
Al Virofacc3532012-06-10 15:33:51 -0400988 goto out_force;
989 /* This is an open(2) */
Al Virofa3c56b2012-06-10 15:36:40 -0400990 if ((flags & LOOKUP_OPEN) && !(server->flags & NFS_MOUNT_NOCTO) &&
991 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
Al Virofacc3532012-06-10 15:33:51 -0400992 goto out_force;
993 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994out_force:
995 return __nfs_revalidate_inode(server, inode);
996}
997
998/*
999 * We judge how long we want to trust negative
1000 * dentries by looking at the parent inode mtime.
1001 *
1002 * If parent mtime has changed, we revalidate, else we wait for a
1003 * period corresponding to the parent's attribute cache timeout value.
1004 */
1005static inline
1006int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
Al Virofa3c56b2012-06-10 15:36:40 -04001007 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* Don't revalidate a negative dentry if we're creating a new file */
Al Virofa3c56b2012-06-10 15:36:40 -04001010 if (flags & LOOKUP_CREATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001012 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1013 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return !nfs_check_verifier(dir, dentry);
1015}
1016
1017/*
1018 * This is called every time the dcache has a lookup hit,
1019 * and we should check whether we can really trust that
1020 * lookup.
1021 *
1022 * NOTE! The hit can be a negative hit too, don't assume
1023 * we have an inode!
1024 *
1025 * If the parent directory is seen to have changed, we throw out the
1026 * cached dentry and do a new lookup.
1027 */
Al Viro0b728e12012-06-10 16:03:43 -04001028static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct inode *dir;
1031 struct inode *inode;
1032 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001033 struct nfs_fh *fhandle = NULL;
1034 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Al Virofa3c56b2012-06-10 15:36:40 -04001037 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001038 return -ECHILD;
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -05001042 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 inode = dentry->d_inode;
1044
1045 if (!inode) {
Al Virofa3c56b2012-06-10 15:36:40 -04001046 if (nfs_neg_need_reval(dir, dentry, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 goto out_bad;
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001048 goto out_valid_noent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
1051 if (is_bad_inode(inode)) {
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001052 dfprintk(LOOKUPCACHE, "%s: %s/%s has dud inode\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001053 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001054 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 goto out_bad;
1056 }
1057
Bryan Schumaker011e2a72012-06-20 15:53:43 -04001058 if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
Trond Myklebust15860ab2008-12-23 15:21:54 -05001059 goto out_set_verifier;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 /* Force a full look up iff the parent directory has changed */
Al Virofa3c56b2012-06-10 15:36:40 -04001062 if (!nfs_is_exclusive_create(dir, flags) && nfs_check_verifier(dir, dentry)) {
1063 if (nfs_lookup_verify_inode(inode, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 goto out_zap_parent;
1065 goto out_valid;
1066 }
1067
1068 if (NFS_STALE(inode))
1069 goto out_bad;
1070
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001071 error = -ENOMEM;
1072 fhandle = nfs_alloc_fhandle();
1073 fattr = nfs_alloc_fattr();
1074 if (fhandle == NULL || fattr == NULL)
1075 goto out_error;
1076
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001077 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (error)
1079 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001080 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001082 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto out_bad;
1084
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001085 nfs_free_fattr(fattr);
1086 nfs_free_fhandle(fhandle);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001087out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001088 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 out_valid:
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001090 /* Success: notify readdir to use READDIRPLUS */
1091 nfs_advise_use_readdirplus(dir);
1092 out_valid_noent:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001094 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is valid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001095 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001096 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return 1;
1098out_zap_parent:
1099 nfs_zap_caches(dir);
1100 out_bad:
Trond Myklebusta1643a92007-09-29 17:25:43 -04001101 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (inode && S_ISDIR(inode->i_mode)) {
1103 /* Purge readdir caches. */
1104 nfs_zap_caches(inode);
1105 /* If we have submounts, don't unhash ! */
1106 if (have_submounts(dentry))
1107 goto out_valid;
Al Virod9e80b72010-04-29 03:10:43 +01001108 if (dentry->d_flags & DCACHE_DISCONNECTED)
1109 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 shrink_dcache_parent(dentry);
1111 }
1112 d_drop(dentry);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001113 nfs_free_fattr(fattr);
1114 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 dput(parent);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001116 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) is invalid\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001117 __func__, dentry->d_parent->d_name.name,
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001118 dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001120out_error:
1121 nfs_free_fattr(fattr);
1122 nfs_free_fhandle(fhandle);
1123 dput(parent);
1124 dfprintk(LOOKUPCACHE, "NFS: %s(%s/%s) lookup returned error %d\n",
1125 __func__, dentry->d_parent->d_name.name,
1126 dentry->d_name.name, error);
1127 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/*
1131 * This is called from dput() when d_count is going to 0.
1132 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001133static int nfs_dentry_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 dfprintk(VFS, "NFS: dentry_delete(%s/%s, %x)\n",
1136 dentry->d_parent->d_name.name, dentry->d_name.name,
1137 dentry->d_flags);
1138
Trond Myklebust77f11192008-01-28 19:43:19 -05001139 /* Unhash any dentry with a stale inode */
1140 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1141 return 1;
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1144 /* Unhash it, so that ->d_iput() would be called */
1145 return 1;
1146 }
1147 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1148 /* Unhash it, so that ancestors of killed async unlink
1149 * files will be cleaned up during umount */
1150 return 1;
1151 }
1152 return 0;
1153
1154}
1155
Trond Myklebust1b83d702008-06-11 15:44:04 -04001156static void nfs_drop_nlink(struct inode *inode)
1157{
1158 spin_lock(&inode->i_lock);
1159 if (inode->i_nlink > 0)
1160 drop_nlink(inode);
1161 spin_unlock(&inode->i_lock);
1162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164/*
1165 * Called when the dentry loses inode.
1166 * We use it to clean up silly-renamed files.
1167 */
1168static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1169{
Neil Brown83672d32007-02-26 12:48:25 +11001170 if (S_ISDIR(inode->i_mode))
1171 /* drop any readdir cache as it could easily be old */
1172 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001175 drop_nlink(inode);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001176 nfs_complete_unlink(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 iput(inode);
1179}
1180
Al Virob1942c52011-03-16 05:44:14 -04001181static void nfs_d_release(struct dentry *dentry)
1182{
1183 /* free cached devname value, if it survived that far */
1184 if (unlikely(dentry->d_fsdata)) {
1185 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1186 WARN_ON(1);
1187 else
1188 kfree(dentry->d_fsdata);
1189 }
1190}
1191
Al Virof786aa92009-02-20 05:51:22 +00001192const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .d_revalidate = nfs_lookup_revalidate,
1194 .d_delete = nfs_dentry_delete,
1195 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001196 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001197 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198};
1199
Bryan Schumaker597d9282012-07-16 16:39:10 -04001200struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001203 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001205 struct nfs_fh *fhandle = NULL;
1206 struct nfs_fattr *fattr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 dfprintk(VFS, "NFS: lookup(%s/%s)\n",
1210 dentry->d_parent->d_name.name, dentry->d_name.name);
Chuck Lever91d5b472006-03-20 13:44:14 -05001211 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 res = ERR_PTR(-ENAMETOOLONG);
1214 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1215 goto out;
1216
Trond Myklebustfd684072006-09-05 12:27:44 -04001217 /*
1218 * If we're doing an exclusive create, optimize away the lookup
1219 * but don't hash the dentry.
1220 */
Al Viro00cd8dd2012-06-10 17:13:09 -04001221 if (nfs_is_exclusive_create(dir, flags)) {
Trond Myklebustfd684072006-09-05 12:27:44 -04001222 d_instantiate(dentry, NULL);
1223 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001224 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001227 res = ERR_PTR(-ENOMEM);
1228 fhandle = nfs_alloc_fhandle();
1229 fattr = nfs_alloc_fattr();
1230 if (fhandle == NULL || fattr == NULL)
1231 goto out;
1232
Trond Myklebust565277f2007-10-15 18:17:53 -04001233 parent = dentry->d_parent;
1234 /* Protect against concurrent sillydeletes */
1235 nfs_block_sillyrename(parent);
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001236 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (error == -ENOENT)
1238 goto no_entry;
1239 if (error < 0) {
1240 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001241 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001243 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Namhyung Kimbf0c84f2010-12-28 17:02:46 +00001244 res = ERR_CAST(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001245 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001246 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001247
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001248 /* Success: notify readdir to use READDIRPLUS */
1249 nfs_advise_use_readdirplus(dir);
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001252 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001253 if (res != NULL) {
1254 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001255 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001259out_unblock_sillyrename:
1260 nfs_unblock_sillyrename(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001262 nfs_free_fattr(fattr);
1263 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return res;
1265}
1266
1267#ifdef CONFIG_NFS_V4
Al Viro0b728e12012-06-10 16:03:43 -04001268static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Al Virof786aa92009-02-20 05:51:22 +00001270const struct dentry_operations nfs4_dentry_operations = {
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001271 .d_revalidate = nfs4_lookup_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 .d_delete = nfs_dentry_delete,
1273 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001274 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001275 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276};
1277
Al Viro8a5e9292011-06-25 19:15:54 -04001278static fmode_t flags_to_mode(int flags)
1279{
1280 fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1281 if ((flags & O_ACCMODE) != O_WRONLY)
1282 res |= FMODE_READ;
1283 if ((flags & O_ACCMODE) != O_RDONLY)
1284 res |= FMODE_WRITE;
1285 return res;
1286}
1287
Al Viro51141592011-06-22 18:47:28 -04001288static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001289{
Al Viro5ede7b12011-10-23 18:49:54 -04001290 return alloc_nfs_open_context(dentry, flags_to_mode(open_flags));
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001291}
1292
1293static int do_open(struct inode *inode, struct file *filp)
1294{
1295 nfs_fscache_set_inode_cookie(inode, filp);
1296 return 0;
1297}
1298
Al Virod9585272012-06-22 12:39:14 +04001299static int nfs_finish_open(struct nfs_open_context *ctx,
1300 struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +04001301 struct file *file, unsigned open_flags,
Al Virod9585272012-06-22 12:39:14 +04001302 int *opened)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001303{
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001304 int err;
1305
1306 if (ctx->dentry != dentry) {
1307 dput(ctx->dentry);
1308 ctx->dentry = dget(dentry);
1309 }
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001310
1311 /* If the open_intent is for execute, we have an extra check to make */
1312 if (ctx->mode & FMODE_EXEC) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001313 err = nfs_may_open(dentry->d_inode, ctx->cred, open_flags);
Al Virod9585272012-06-22 12:39:14 +04001314 if (err < 0)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001315 goto out;
1316 }
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001317
Al Viro30d90492012-06-22 12:40:19 +04001318 err = finish_open(file, dentry, do_open, opened);
1319 if (err)
Al Virod9585272012-06-22 12:39:14 +04001320 goto out;
Al Viro30d90492012-06-22 12:40:19 +04001321 nfs_file_set_open_context(file, ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001322
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001323out:
1324 put_nfs_open_context(ctx);
Al Virod9585272012-06-22 12:39:14 +04001325 return err;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001326}
1327
Bryan Schumaker73a79702012-07-16 16:39:12 -04001328int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
1329 struct file *file, unsigned open_flags,
1330 umode_t mode, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001332 struct nfs_open_context *ctx;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001333 struct dentry *res;
1334 struct iattr attr = { .ia_valid = ATTR_OPEN };
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001335 struct inode *inode;
Trond Myklebust898f6352010-10-23 11:24:25 -04001336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001338 /* Expect a negative dentry */
1339 BUG_ON(dentry->d_inode);
1340
1341 dfprintk(VFS, "NFS: atomic_open(%s/%ld), %s\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001342 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
1343
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001344 /* NFS only supports OPEN on regular files */
1345 if ((open_flags & O_DIRECTORY)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001346 if (!d_unhashed(dentry)) {
1347 /*
1348 * Hashed negative dentry with O_DIRECTORY: dentry was
1349 * revalidated and is fine, no need to perform lookup
1350 * again
1351 */
Al Virod9585272012-06-22 12:39:14 +04001352 return -ENOENT;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001357 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
Al Virod9585272012-06-22 12:39:14 +04001358 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001360 if (open_flags & O_CREAT) {
Trond Myklebust536e43d2012-01-17 22:04:26 -05001361 attr.ia_valid |= ATTR_MODE;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001362 attr.ia_mode = mode & ~current_umask();
1363 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001364 if (open_flags & O_TRUNC) {
1365 attr.ia_valid |= ATTR_SIZE;
1366 attr.ia_size = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001367 }
1368
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001369 ctx = create_nfs_open_context(dentry, open_flags);
1370 err = PTR_ERR(ctx);
1371 if (IS_ERR(ctx))
Al Virod9585272012-06-22 12:39:14 +04001372 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001373
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001374 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust2b484292010-09-17 10:56:51 -04001375 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001376 d_drop(dentry);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001377 if (IS_ERR(inode)) {
1378 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001379 put_nfs_open_context(ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001380 err = PTR_ERR(inode);
1381 switch (err) {
1382 case -ENOENT:
1383 d_add(dentry, NULL);
1384 break;
1385 case -EISDIR:
1386 case -ENOTDIR:
1387 goto no_open;
1388 case -ELOOP:
1389 if (!(open_flags & O_NOFOLLOW))
Trond Myklebust6f926b52005-10-18 14:20:18 -07001390 goto no_open;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /* case -EINVAL: */
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001393 default:
1394 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
Al Virod9585272012-06-22 12:39:14 +04001396 goto out;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001397 }
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001398 res = d_add_unique(dentry, inode);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001399 if (res != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 dentry = res;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001401
1402 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001403 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001404
Al Viro30d90492012-06-22 12:40:19 +04001405 err = nfs_finish_open(ctx, dentry, file, open_flags, opened);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001406
1407 dput(res);
Al Virod9585272012-06-22 12:39:14 +04001408out:
1409 return err;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411no_open:
Al Viro00cd8dd2012-06-10 17:13:09 -04001412 res = nfs_lookup(dir, dentry, 0);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001413 err = PTR_ERR(res);
1414 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +04001415 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001416
Al Viroe45198a2012-06-10 06:48:09 -04001417 return finish_no_open(file, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Al Viro0b728e12012-06-10 16:03:43 -04001420static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
1422 struct dentry *parent = NULL;
Nick Piggin657e94b2011-01-14 02:48:39 +00001423 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 struct inode *dir;
Miklos Szeredi50de3482012-06-05 15:10:20 +02001425 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Al Virofa3c56b2012-06-10 15:36:40 -04001427 if (flags & LOOKUP_RCU)
Nick Piggin657e94b2011-01-14 02:48:39 +00001428 return -ECHILD;
1429
Al Virofa3c56b2012-06-10 15:36:40 -04001430 if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
Miklos Szeredieda72af2012-06-05 15:10:21 +02001431 goto no_open;
1432 if (d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001433 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001434
Miklos Szeredieda72af2012-06-05 15:10:21 +02001435 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 parent = dget_parent(dentry);
1437 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* We can't create new files in nfs_open_revalidate(), so we
1440 * optimize away revalidation of negative dentries.
1441 */
Trond Myklebust216d5d062007-10-01 20:10:12 -04001442 if (inode == NULL) {
Al Virofa3c56b2012-06-10 15:36:40 -04001443 if (!nfs_neg_need_reval(dir, dentry, flags))
Trond Myklebust216d5d062007-10-01 20:10:12 -04001444 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 goto out;
Trond Myklebust216d5d062007-10-01 20:10:12 -04001446 }
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 /* NFS only supports OPEN on regular files */
1449 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001450 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /* We cannot do exclusive creation on a positive dentry */
Al Virofa3c56b2012-06-10 15:36:40 -04001452 if (flags & LOOKUP_EXCL)
Trond Myklebust5584c302008-12-23 15:21:54 -05001453 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001455 /* Let f_op->open() actually open (and revalidate) the file */
1456 ret = 1;
Trond Myklebust536e43d2012-01-17 22:04:26 -05001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458out:
1459 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001461
Trond Myklebust5584c302008-12-23 15:21:54 -05001462no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001464no_open:
Al Viro0b728e12012-06-10 16:03:43 -04001465 return nfs_lookup_revalidate(dentry, flags);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468#endif /* CONFIG_NFSV4 */
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/*
1471 * Code common to create, mkdir, and mknod.
1472 */
1473int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
1474 struct nfs_fattr *fattr)
1475{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001476 struct dentry *parent = dget_parent(dentry);
1477 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 struct inode *inode;
1479 int error = -EACCES;
1480
Trond Myklebustfab728e2007-09-29 17:41:33 -04001481 d_drop(dentry);
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* We may have been initialized further down */
1484 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001485 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (fhandle->size == 0) {
Bryan Schumaker80a16b22012-04-27 13:27:46 -04001487 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001489 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001491 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1493 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howells8fa5c002006-08-22 20:06:12 -04001494 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001496 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 inode = nfs_fhget(dentry->d_sb, fhandle, fattr);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001499 error = PTR_ERR(inode);
1500 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001501 goto out_error;
1502 d_add(dentry, inode);
1503out:
1504 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001506out_error:
1507 nfs_mark_for_revalidate(dir);
1508 dput(parent);
1509 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512/*
1513 * Following a failed create operation, we drop the dentry rather
1514 * than retain a negative dentry. This avoids a problem in the event
1515 * that the operation succeeded on the server, but an error in the
1516 * reply path made it appear to have failed.
1517 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001518int nfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04001519 umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct iattr attr;
Al Viroebfc3b42012-06-10 18:05:36 -04001522 int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001525 dfprintk(VFS, "NFS: create(%s/%ld), %s\n",
1526 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 attr.ia_mode = mode;
1529 attr.ia_valid = ATTR_MODE;
1530
Miklos Szeredi8867fe52012-06-05 15:10:19 +02001531 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (error != 0)
1533 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return 0;
1535out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 d_drop(dentry);
1537 return error;
1538}
1539
1540/*
1541 * See comments for nfs_proc_create regarding failed operations.
1542 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001543int
Al Viro1a67aaf2011-07-26 01:52:52 -04001544nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 struct iattr attr;
1547 int status;
1548
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001549 dfprintk(VFS, "NFS: mknod(%s/%ld), %s\n",
1550 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 if (!new_valid_dev(rdev))
1553 return -EINVAL;
1554
1555 attr.ia_mode = mode;
1556 attr.ia_valid = ATTR_MODE;
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (status != 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 status;
1565}
1566
1567/*
1568 * See comments for nfs_proc_create regarding failed operations.
1569 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001570int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 struct iattr attr;
1573 int error;
1574
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001575 dfprintk(VFS, "NFS: mkdir(%s/%ld), %s\n",
1576 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 attr.ia_valid = ATTR_MODE;
1579 attr.ia_mode = mode | S_IFDIR;
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (error != 0)
1583 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return 0;
1585out_err:
1586 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return error;
1588}
1589
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001590static void nfs_dentry_handle_enoent(struct dentry *dentry)
1591{
1592 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1593 d_delete(dentry);
1594}
1595
Bryan Schumaker597d9282012-07-16 16:39:10 -04001596int nfs_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 int error;
1599
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001600 dfprintk(VFS, "NFS: rmdir(%s/%ld), %s\n",
1601 dir->i_sb->s_id, dir->i_ino, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1604 /* Ensure the VFS deletes this inode */
1605 if (error == 0 && dentry->d_inode != NULL)
Dave Hansence71ec32006-09-30 23:29:06 -07001606 clear_nlink(dentry->d_inode);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001607 else if (error == -ENOENT)
1608 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 return error;
1611}
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613/*
1614 * Remove a file after making sure there are no pending writes,
1615 * and after checking that the file has only one user.
1616 *
1617 * We invalidate the attribute cache and free the inode prior to the operation
1618 * to avoid possible races if the server reuses the inode.
1619 */
1620static int nfs_safe_remove(struct dentry *dentry)
1621{
1622 struct inode *dir = dentry->d_parent->d_inode;
1623 struct inode *inode = dentry->d_inode;
1624 int error = -EBUSY;
1625
1626 dfprintk(VFS, "NFS: safe_remove(%s/%s)\n",
1627 dentry->d_parent->d_name.name, dentry->d_name.name);
1628
1629 /* If the dentry was sillyrenamed, we simply call d_delete() */
1630 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1631 error = 0;
1632 goto out;
1633 }
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (inode != NULL) {
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001636 NFS_PROTO(inode)->return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
1638 /* The VFS may want to delete this inode */
1639 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001640 nfs_drop_nlink(inode);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001641 nfs_mark_for_revalidate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 } else
1643 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001644 if (error == -ENOENT)
1645 nfs_dentry_handle_enoent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646out:
1647 return error;
1648}
1649
1650/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1651 * belongs to an active ".nfs..." file and we return -EBUSY.
1652 *
1653 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1654 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001655int nfs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
1657 int error;
1658 int need_rehash = 0;
1659
1660 dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,
1661 dir->i_ino, dentry->d_name.name);
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001664 if (dentry->d_count > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 spin_unlock(&dentry->d_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001666 /* Start asynchronous writeout of the inode */
1667 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 error = nfs_sillyrename(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return error;
1670 }
1671 if (!d_unhashed(dentry)) {
1672 __d_drop(dentry);
1673 need_rehash = 1;
1674 }
1675 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001677 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1679 } else if (need_rehash)
1680 d_rehash(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return error;
1682}
1683
Chuck Lever873101b2006-08-22 20:06:23 -04001684/*
1685 * To create a symbolic link, most file systems instantiate a new inode,
1686 * add a page to it containing the path, then write it out to the disk
1687 * using prepare_write/commit_write.
1688 *
1689 * Unfortunately the NFS client can't create the in-core inode first
1690 * because it needs a file handle to create an in-core inode (see
1691 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1692 * symlink request has completed on the server.
1693 *
1694 * So instead we allocate a raw page, copy the symname into it, then do
1695 * the SYMLINK request with the page as the buffer. If it succeeds, we
1696 * now have a new file handle and can instantiate an in-core NFS inode
1697 * and move the raw page into its mapping.
1698 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001699int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Chuck Lever873101b2006-08-22 20:06:23 -04001701 struct pagevec lru_pvec;
1702 struct page *page;
1703 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001705 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 int error;
1707
1708 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s)\n", dir->i_sb->s_id,
1709 dir->i_ino, dentry->d_name.name, symname);
1710
Chuck Lever873101b2006-08-22 20:06:23 -04001711 if (pathlen > PAGE_SIZE)
1712 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Chuck Lever873101b2006-08-22 20:06:23 -04001714 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1715 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Jeff Layton83d93f22007-06-07 09:58:08 -04001717 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001718 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001719 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001720
Cong Wang2b86ce22011-11-25 23:14:33 +08001721 kaddr = kmap_atomic(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001722 memcpy(kaddr, symname, pathlen);
1723 if (pathlen < PAGE_SIZE)
1724 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
Cong Wang2b86ce22011-11-25 23:14:33 +08001725 kunmap_atomic(kaddr);
Chuck Lever873101b2006-08-22 20:06:23 -04001726
Chuck Lever94a6d752006-08-22 20:06:23 -04001727 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Chuck Lever873101b2006-08-22 20:06:23 -04001728 if (error != 0) {
1729 dfprintk(VFS, "NFS: symlink(%s/%ld, %s, %s) error %d\n",
1730 dir->i_sb->s_id, dir->i_ino,
1731 dentry->d_name.name, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001733 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001734 return error;
1735 }
1736
1737 /*
1738 * No big deal if we can't add this page to the page cache here.
1739 * READLINK will get the missing page from the server if needed.
1740 */
1741 pagevec_init(&lru_pvec, 0);
1742 if (!add_to_page_cache(page, dentry->d_inode->i_mapping, 0,
1743 GFP_KERNEL)) {
Chuck Lever39cf8a12006-10-19 23:28:41 -07001744 pagevec_add(&lru_pvec, page);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001745 pagevec_lru_add_file(&lru_pvec);
Chuck Lever873101b2006-08-22 20:06:23 -04001746 SetPageUptodate(page);
1747 unlock_page(page);
1748 } else
1749 __free_page(page);
1750
Chuck Lever873101b2006-08-22 20:06:23 -04001751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
Bryan Schumaker597d9282012-07-16 16:39:10 -04001754int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1756{
1757 struct inode *inode = old_dentry->d_inode;
1758 int error;
1759
1760 dfprintk(VFS, "NFS: link(%s/%s -> %s/%s)\n",
1761 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1762 dentry->d_parent->d_name.name, dentry->d_name.name);
1763
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001764 NFS_PROTO(inode)->return_delegation(inode);
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001765
Trond Myklebust9697d232007-10-02 21:58:05 -04001766 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001768 if (error == 0) {
Al Viro7de9c6ee2010-10-23 11:11:40 -04001769 ihold(inode);
Trond Myklebust9697d232007-10-02 21:58:05 -04001770 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return error;
1773}
1774
1775/*
1776 * RENAME
1777 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1778 * different file handle for the same inode after a rename (e.g. when
1779 * moving to a different directory). A fail-safe method to do so would
1780 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1781 * rename the old file using the sillyrename stuff. This way, the original
1782 * file in old_dir will go away when the last process iput()s the inode.
1783 *
1784 * FIXED.
1785 *
1786 * It actually works quite well. One needs to have the possibility for
1787 * at least one ".nfs..." file in each directory the file ever gets
1788 * moved or linked to which happens automagically with the new
1789 * implementation that only depends on the dcache stuff instead of
1790 * using the inode layer
1791 *
1792 * Unfortunately, things are a little more complicated than indicated
1793 * above. For a cross-directory move, we want to make sure we can get
1794 * rid of the old inode after the operation. This means there must be
1795 * no pending writes (if it's a file), and the use count must be 1.
1796 * If these conditions are met, we can drop the dentries before doing
1797 * the rename.
1798 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001799int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 struct inode *new_dir, struct dentry *new_dentry)
1801{
1802 struct inode *old_inode = old_dentry->d_inode;
1803 struct inode *new_inode = new_dentry->d_inode;
1804 struct dentry *dentry = NULL, *rehash = NULL;
1805 int error = -EBUSY;
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 dfprintk(VFS, "NFS: rename(%s/%s -> %s/%s, ct=%d)\n",
1808 old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
1809 new_dentry->d_parent->d_name.name, new_dentry->d_name.name,
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001810 new_dentry->d_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001813 * For non-directories, check whether the target is busy and if so,
1814 * make a copy of the dentry and then do a silly-rename. If the
1815 * silly-rename succeeds, the copied dentry is hashed and becomes
1816 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001818 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1819 /*
1820 * To prevent any new references to the target during the
1821 * rename, we unhash the dentry in advance.
1822 */
1823 if (!d_unhashed(new_dentry)) {
1824 d_drop(new_dentry);
1825 rehash = new_dentry;
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Nick Pigginb7ab39f2011-01-07 17:49:32 +11001828 if (new_dentry->d_count > 2) {
Miklos Szeredi27226102009-12-03 15:58:56 -05001829 int err;
1830
1831 /* copy the target dentry's name */
1832 dentry = d_alloc(new_dentry->d_parent,
1833 &new_dentry->d_name);
1834 if (!dentry)
1835 goto out;
1836
1837 /* silly-rename the existing target ... */
1838 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001839 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001840 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001841
1842 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001843 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001844 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001845 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001848 NFS_PROTO(old_inode)->return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001849 if (new_inode != NULL)
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001850 NFS_PROTO(new_inode)->return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1853 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001854 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855out:
1856 if (rehash)
1857 d_rehash(rehash);
1858 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001859 if (new_inode != NULL)
1860 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001861 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001862 nfs_set_verifier(new_dentry,
1863 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001864 } else if (error == -ENOENT)
1865 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 /* new dentry created? */
1868 if (dentry)
1869 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return error;
1871}
1872
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001873static DEFINE_SPINLOCK(nfs_access_lru_lock);
1874static LIST_HEAD(nfs_access_lru_list);
1875static atomic_long_t nfs_access_nr_entries;
1876
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001877static void nfs_access_free_entry(struct nfs_access_entry *entry)
1878{
1879 put_rpccred(entry->cred);
1880 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001881 smp_mb__before_atomic_dec();
1882 atomic_long_dec(&nfs_access_nr_entries);
1883 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001884}
1885
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001886static void nfs_access_free_list(struct list_head *head)
1887{
1888 struct nfs_access_entry *cache;
1889
1890 while (!list_empty(head)) {
1891 cache = list_entry(head->next, struct nfs_access_entry, lru);
1892 list_del(&cache->lru);
1893 nfs_access_free_entry(cache);
1894 }
1895}
1896
Ying Han1495f232011-05-24 17:12:27 -07001897int nfs_access_cache_shrinker(struct shrinker *shrink,
1898 struct shrink_control *sc)
Trond Myklebust979df722006-07-25 11:28:19 -04001899{
1900 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001901 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04001902 struct nfs_access_entry *cache;
Ying Han1495f232011-05-24 17:12:27 -07001903 int nr_to_scan = sc->nr_to_scan;
1904 gfp_t gfp_mask = sc->gfp_mask;
Trond Myklebust979df722006-07-25 11:28:19 -04001905
Trond Myklebust61d5eb22010-05-13 12:51:06 -04001906 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
1907 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001908
Trond Myklebusta50f7952007-06-05 19:23:43 -04001909 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001910 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04001911 struct inode *inode;
1912
1913 if (nr_to_scan-- == 0)
1914 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001915 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04001916 spin_lock(&inode->i_lock);
1917 if (list_empty(&nfsi->access_cache_entry_lru))
1918 goto remove_lru_entry;
1919 cache = list_entry(nfsi->access_cache_entry_lru.next,
1920 struct nfs_access_entry, lru);
1921 list_move(&cache->lru, &head);
1922 rb_erase(&cache->rb_node, &nfsi->access_cache);
1923 if (!list_empty(&nfsi->access_cache_entry_lru))
1924 list_move_tail(&nfsi->access_cache_inode_lru,
1925 &nfs_access_lru_list);
1926 else {
1927remove_lru_entry:
1928 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001929 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001930 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04001931 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04001932 }
Trond Myklebust59844a92010-05-26 08:42:24 -04001933 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04001934 }
1935 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001936 nfs_access_free_list(&head);
Trond Myklebust979df722006-07-25 11:28:19 -04001937 return (atomic_long_read(&nfs_access_nr_entries) / 100) * sysctl_vfs_cache_pressure;
1938}
1939
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001940static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001941{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001942 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001943 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001944 struct nfs_access_entry *entry;
1945
1946 /* Unhook entries from the cache */
1947 while ((n = rb_first(root_node)) != NULL) {
1948 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1949 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001950 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001951 }
1952 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001953}
1954
1955void nfs_access_zap_cache(struct inode *inode)
1956{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001957 LIST_HEAD(head);
1958
1959 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
1960 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001961 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001962 spin_lock(&nfs_access_lru_lock);
1963 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001964 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001965
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001966 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001967 __nfs_access_zap_cache(NFS_I(inode), &head);
1968 spin_unlock(&inode->i_lock);
1969 spin_unlock(&nfs_access_lru_lock);
1970 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001971}
1972
1973static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
1974{
1975 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
1976 struct nfs_access_entry *entry;
1977
1978 while (n != NULL) {
1979 entry = rb_entry(n, struct nfs_access_entry, rb_node);
1980
1981 if (cred < entry->cred)
1982 n = n->rb_left;
1983 else if (cred > entry->cred)
1984 n = n->rb_right;
1985 else
1986 return entry;
1987 }
1988 return NULL;
1989}
1990
Trond Myklebustaf22f942007-08-10 17:45:10 -04001991static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Chuck Lever55296802005-08-18 11:24:09 -07001993 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001994 struct nfs_access_entry *cache;
1995 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001997 spin_lock(&inode->i_lock);
1998 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
1999 goto out_zap;
2000 cache = nfs_access_search_rbtree(inode, cred);
2001 if (cache == NULL)
2002 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002003 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002004 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002005 goto out_stale;
2006 res->jiffies = cache->jiffies;
2007 res->cred = cache->cred;
2008 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002009 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002010 err = 0;
2011out:
2012 spin_unlock(&inode->i_lock);
2013 return err;
2014out_stale:
2015 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002016 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002017 spin_unlock(&inode->i_lock);
2018 nfs_access_free_entry(cache);
2019 return -ENOENT;
2020out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002021 spin_unlock(&inode->i_lock);
2022 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002023 return -ENOENT;
2024}
2025
2026static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2027{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002028 struct nfs_inode *nfsi = NFS_I(inode);
2029 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002030 struct rb_node **p = &root_node->rb_node;
2031 struct rb_node *parent = NULL;
2032 struct nfs_access_entry *entry;
2033
2034 spin_lock(&inode->i_lock);
2035 while (*p != NULL) {
2036 parent = *p;
2037 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2038
2039 if (set->cred < entry->cred)
2040 p = &parent->rb_left;
2041 else if (set->cred > entry->cred)
2042 p = &parent->rb_right;
2043 else
2044 goto found;
2045 }
2046 rb_link_node(&set->rb_node, parent, p);
2047 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002048 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002049 spin_unlock(&inode->i_lock);
2050 return;
2051found:
2052 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002053 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2054 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002055 spin_unlock(&inode->i_lock);
2056 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Trond Myklebustaf22f942007-08-10 17:45:10 -04002059static void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002061 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2062 if (cache == NULL)
2063 return;
2064 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002066 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002068
2069 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002070
2071 /* Update accounting */
2072 smp_mb__before_atomic_inc();
2073 atomic_long_inc(&nfs_access_nr_entries);
2074 smp_mb__after_atomic_inc();
2075
2076 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002077 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002078 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002079 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2080 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2081 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002082 spin_unlock(&nfs_access_lru_lock);
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2087{
2088 struct nfs_access_entry cache;
2089 int status;
2090
2091 status = nfs_access_get_cached(inode, cred, &cache);
2092 if (status == 0)
2093 goto out;
2094
2095 /* Be clever: ask server to check for all possible rights */
2096 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2097 cache.cred = cred;
2098 cache.jiffies = jiffies;
2099 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002100 if (status != 0) {
2101 if (status == -ESTALE) {
2102 nfs_zap_caches(inode);
2103 if (!S_ISDIR(inode->i_mode))
2104 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return status;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 nfs_access_add_cache(inode, &cache);
2109out:
Al Viroe6305c42008-07-15 21:03:57 -04002110 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return 0;
2112 return -EACCES;
2113}
2114
Trond Myklebustaf22f942007-08-10 17:45:10 -04002115static int nfs_open_permission_mask(int openflags)
2116{
2117 int mask = 0;
2118
Al Viro8a5e9292011-06-25 19:15:54 -04002119 if ((openflags & O_ACCMODE) != O_WRONLY)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002120 mask |= MAY_READ;
Al Viro8a5e9292011-06-25 19:15:54 -04002121 if ((openflags & O_ACCMODE) != O_RDONLY)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002122 mask |= MAY_WRITE;
Al Viro8a5e9292011-06-25 19:15:54 -04002123 if (openflags & __FMODE_EXEC)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002124 mask |= MAY_EXEC;
2125 return mask;
2126}
2127
2128int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2129{
2130 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2131}
2132
Al Viro10556cb22011-06-20 19:28:19 -04002133int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 struct rpc_cred *cred;
2136 int res = 0;
2137
Al Viro10556cb22011-06-20 19:28:19 -04002138 if (mask & MAY_NOT_BLOCK)
Nick Pigginb74c79e2011-01-07 17:49:58 +11002139 return -ECHILD;
2140
Chuck Lever91d5b472006-03-20 13:44:14 -05002141 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2142
Al Viroe6305c42008-07-15 21:03:57 -04002143 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 goto out;
2145 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002146 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 goto force_lookup;
2148
2149 switch (inode->i_mode & S_IFMT) {
2150 case S_IFLNK:
2151 goto out;
2152 case S_IFREG:
2153 /* NFSv4 has atomic_open... */
2154 if (nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN)
Frank Filz7ee2cb72009-05-18 17:41:40 -04002155 && (mask & MAY_OPEN)
2156 && !(mask & MAY_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 goto out;
2158 break;
2159 case S_IFDIR:
2160 /*
2161 * Optimize away all write operations, since the server
2162 * will check permissions when we perform the op.
2163 */
2164 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2165 goto out;
2166 }
2167
2168force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (!NFS_PROTO(inode)->access)
2170 goto out_notsup;
2171
Trond Myklebust98a8e322008-03-12 12:25:28 -04002172 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (!IS_ERR(cred)) {
2174 res = nfs_do_access(inode, cred, mask);
2175 put_rpccred(cred);
2176 } else
2177 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002179 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2180 res = -EACCES;
2181
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002182 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2183 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return res;
2185out_notsup:
2186 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2187 if (res == 0)
Al Viro2830ba72011-06-20 19:16:29 -04002188 res = generic_permission(inode, mask);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002189 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
2192/*
2193 * Local variables:
2194 * version-control: t
2195 * kept-new-versions: 5
2196 * End:
2197 */