blob: 812154aff9818ccb6bcb79e88587478d9fe54fd6 [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
Bryan Schumakerddda8e02012-07-30 16:05:23 -040020#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/time.h>
22#include <linux/errno.h>
23#include <linux/stat.h>
24#include <linux/fcntl.h>
25#include <linux/string.h>
26#include <linux/kernel.h>
27#include <linux/slab.h>
28#include <linux/mm.h>
29#include <linux/sunrpc/clnt.h>
30#include <linux/nfs_fs.h>
31#include <linux/nfs_mount.h>
32#include <linux/pagemap.h>
Chuck Lever873101b2006-08-22 20:06:23 -040033#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/namei.h>
David Howells54ceac42006-08-22 20:06:13 -040035#include <linux/mount.h>
Mel Gormana0b8cab32013-07-03 15:02:32 -070036#include <linux/swap.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040037#include <linux/sched.h>
Catalin Marinas04e4bd12010-11-11 12:53:47 +000038#include <linux/kmemleak.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000039#include <linux/xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "delegation.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050042#include "iostat.h"
Adrian Bunk4c30d562007-11-21 15:04:31 -080043#include "internal.h"
Trond Myklebustcd9a1c02010-09-17 10:56:50 -040044#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Trond Myklebustf4ce1292013-08-19 18:59:33 -040046#include "nfstrace.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* #define NFS_DEBUG_VERBOSE 1 */
49
50static int nfs_opendir(struct inode *, struct file *);
Bryan Schumaker480c2002011-03-23 14:48:29 -040051static int nfs_closedir(struct inode *, struct file *);
Al Viro23db8622013-05-17 16:34:50 -040052static int nfs_readdir(struct file *, struct dir_context *);
Josef Bacik02c24a82011-07-16 20:44:56 -040053static int nfs_fsync_dir(struct file *, loff_t, loff_t, int);
Trond Myklebustf0dd2132005-06-22 17:16:29 +000054static loff_t nfs_llseek_dir(struct file *, loff_t, int);
Trond Myklebust11de3b12010-12-01 14:17:06 -050055static void nfs_readdir_clear_array(struct page*);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080057const struct file_operations nfs_dir_operations = {
Trond Myklebustf0dd2132005-06-22 17:16:29 +000058 .llseek = nfs_llseek_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .read = generic_read_dir,
Al Viro23db8622013-05-17 16:34:50 -040060 .iterate = nfs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .open = nfs_opendir,
Bryan Schumaker480c2002011-03-23 14:48:29 -040062 .release = nfs_closedir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .fsync = nfs_fsync_dir,
64};
65
Trond Myklebust11de3b12010-12-01 14:17:06 -050066const struct address_space_operations nfs_dir_aops = {
67 .freepage = nfs_readdir_clear_array,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -040068};
69
Trond Myklebust0c030802011-07-30 12:45:35 -040070static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, struct rpc_cred *cred)
Bryan Schumaker480c2002011-03-23 14:48:29 -040071{
72 struct nfs_open_dir_context *ctx;
73 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
74 if (ctx != NULL) {
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040075 ctx->duped = 0;
Trond Myklebust0c030802011-07-30 12:45:35 -040076 ctx->attr_gencount = NFS_I(dir)->attr_gencount;
Bryan Schumaker480c2002011-03-23 14:48:29 -040077 ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040078 ctx->dup_cookie = 0;
Bryan Schumaker480c2002011-03-23 14:48:29 -040079 ctx->cred = get_rpccred(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -040080 return ctx;
81 }
82 return ERR_PTR(-ENOMEM);
Bryan Schumaker480c2002011-03-23 14:48:29 -040083}
84
85static void put_nfs_open_dir_context(struct nfs_open_dir_context *ctx)
86{
87 put_rpccred(ctx->cred);
88 kfree(ctx);
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * Open file
93 */
94static int
95nfs_opendir(struct inode *inode, struct file *filp)
96{
Bryan Schumaker480c2002011-03-23 14:48:29 -040097 int res = 0;
98 struct nfs_open_dir_context *ctx;
99 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Al Viro6de14722013-09-16 10:53:17 -0400101 dfprintk(FILE, "NFS: open dir(%pD2)\n", filp);
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400102
103 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500104
Bryan Schumaker480c2002011-03-23 14:48:29 -0400105 cred = rpc_lookup_cred();
106 if (IS_ERR(cred))
107 return PTR_ERR(cred);
Trond Myklebust0c030802011-07-30 12:45:35 -0400108 ctx = alloc_nfs_open_dir_context(inode, cred);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400109 if (IS_ERR(ctx)) {
110 res = PTR_ERR(ctx);
111 goto out;
112 }
113 filp->private_data = ctx;
Neil Brownf5a73672010-08-10 10:20:05 -0400114 if (filp->f_path.dentry == filp->f_path.mnt->mnt_root) {
115 /* This is a mountpoint, so d_revalidate will never
116 * have been called, so we need to refresh the
117 * inode (for close-open consistency) ourselves.
118 */
119 __nfs_revalidate_inode(NFS_SERVER(inode), inode);
120 }
Bryan Schumaker480c2002011-03-23 14:48:29 -0400121out:
122 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return res;
124}
125
Bryan Schumaker480c2002011-03-23 14:48:29 -0400126static int
127nfs_closedir(struct inode *inode, struct file *filp)
128{
129 put_nfs_open_dir_context(filp->private_data);
130 return 0;
131}
132
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400133struct nfs_cache_array_entry {
134 u64 cookie;
135 u64 ino;
136 struct qstr string;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500137 unsigned char d_type;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400138};
139
140struct nfs_cache_array {
Chuck Lever88b8e132012-03-01 17:00:23 -0500141 int size;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400142 int eof_index;
143 u64 last_cookie;
144 struct nfs_cache_array_entry array[0];
145};
146
Chuck Lever573c4e12010-12-14 14:58:11 +0000147typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148typedef struct {
149 struct file *file;
150 struct page *page;
Al Viro23db8622013-05-17 16:34:50 -0400151 struct dir_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long page_index;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000153 u64 *dir_cookie;
Trond Myklebust0aded702010-11-30 21:56:32 -0500154 u64 last_cookie;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000155 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400157
Neil Brown1f4eab72007-04-16 09:35:27 +1000158 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400159 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400160 unsigned int cache_entry_index;
161 unsigned int plus:1;
162 unsigned int eof:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163} nfs_readdir_descriptor_t;
164
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400165/*
166 * The caller is responsible for calling nfs_readdir_release_array(page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168static
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400169struct nfs_cache_array *nfs_readdir_get_array(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500171 void *ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400172 if (page == NULL)
173 return ERR_PTR(-EIO);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500174 ptr = kmap(page);
175 if (ptr == NULL)
176 return ERR_PTR(-ENOMEM);
177 return ptr;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400178}
179
180static
181void nfs_readdir_release_array(struct page *page)
182{
183 kunmap(page);
184}
185
186/*
187 * we are freeing strings created by nfs_add_to_readdir_array()
188 */
189static
Trond Myklebust11de3b12010-12-01 14:17:06 -0500190void nfs_readdir_clear_array(struct page *page)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400191{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500192 struct nfs_cache_array *array;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400193 int i;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500194
Cong Wang2b86ce22011-11-25 23:14:33 +0800195 array = kmap_atomic(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400196 for (i = 0; i < array->size; i++)
197 kfree(array->array[i].string.name);
Cong Wang2b86ce22011-11-25 23:14:33 +0800198 kunmap_atomic(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400199}
200
201/*
202 * the caller is responsible for freeing qstr.name
203 * when called by nfs_readdir_add_to_array, the strings will be freed in
204 * nfs_clear_readdir_array()
205 */
206static
Trond Myklebust4a201d62010-10-23 14:53:23 -0400207int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400208{
209 string->len = len;
210 string->name = kmemdup(name, len, GFP_KERNEL);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400211 if (string->name == NULL)
212 return -ENOMEM;
Catalin Marinas04e4bd12010-11-11 12:53:47 +0000213 /*
214 * Avoid a kmemleak false positive. The pointer to the name is stored
215 * in a page cache page which kmemleak does not scan.
216 */
217 kmemleak_not_leak(string->name);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400218 string->hash = full_name_hash(name, len);
219 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400220}
221
222static
223int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
224{
225 struct nfs_cache_array *array = nfs_readdir_get_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400226 struct nfs_cache_array_entry *cache_entry;
227 int ret;
228
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400229 if (IS_ERR(array))
230 return PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400231
Trond Myklebust4a201d62010-10-23 14:53:23 -0400232 cache_entry = &array->array[array->size];
Trond Myklebust3020093f2010-11-20 15:18:22 -0500233
234 /* Check that this entry lies within the page bounds */
235 ret = -ENOSPC;
236 if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
237 goto out;
238
Trond Myklebust4a201d62010-10-23 14:53:23 -0400239 cache_entry->cookie = entry->prev_cookie;
240 cache_entry->ino = entry->ino;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500241 cache_entry->d_type = entry->d_type;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400242 ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
243 if (ret)
244 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400245 array->last_cookie = entry->cookie;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500246 array->size++;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500247 if (entry->eof != 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400248 array->eof_index = array->size;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400249out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400250 nfs_readdir_release_array(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400251 return ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400252}
253
254static
255int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
256{
Al Viro23db8622013-05-17 16:34:50 -0400257 loff_t diff = desc->ctx->pos - desc->current_index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400258 unsigned int index;
259
260 if (diff < 0)
261 goto out_eof;
262 if (diff >= array->size) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500263 if (array->eof_index >= 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400264 goto out_eof;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400265 return -EAGAIN;
266 }
267
268 index = (unsigned int)diff;
269 *desc->dir_cookie = array->array[index].cookie;
270 desc->cache_entry_index = index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400271 return 0;
272out_eof:
273 desc->eof = 1;
274 return -EBADCOOKIE;
275}
276
277static
278int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
279{
280 int i;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400281 loff_t new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400282 int status = -EAGAIN;
283
284 for (i = 0; i < array->size; i++) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400285 if (array->array[i].cookie == *desc->dir_cookie) {
Al Viro496ad9a2013-01-23 17:07:38 -0500286 struct nfs_inode *nfsi = NFS_I(file_inode(desc->file));
Trond Myklebust0c030802011-07-30 12:45:35 -0400287 struct nfs_open_dir_context *ctx = desc->file->private_data;
288
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400289 new_pos = desc->current_index + i;
Trond Myklebust0c030802011-07-30 12:45:35 -0400290 if (ctx->attr_gencount != nfsi->attr_gencount
291 || (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))) {
292 ctx->duped = 0;
293 ctx->attr_gencount = nfsi->attr_gencount;
Al Viro23db8622013-05-17 16:34:50 -0400294 } else if (new_pos < desc->ctx->pos) {
Trond Myklebust0c030802011-07-30 12:45:35 -0400295 if (ctx->duped > 0
296 && ctx->dup_cookie == *desc->dir_cookie) {
297 if (printk_ratelimit()) {
Al Viro6de14722013-09-16 10:53:17 -0400298 pr_notice("NFS: directory %pD2 contains a readdir loop."
Trond Myklebust0c030802011-07-30 12:45:35 -0400299 "Please contact your server vendor. "
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400300 "The file: %s has duplicate cookie %llu\n",
Al Viro6de14722013-09-16 10:53:17 -0400301 desc->file,
Bryan Schumaker374e4e32011-07-29 11:49:06 -0400302 array->array[i].string.name,
Trond Myklebust0c030802011-07-30 12:45:35 -0400303 *desc->dir_cookie);
304 }
305 status = -ELOOP;
306 goto out;
307 }
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400308 ctx->dup_cookie = *desc->dir_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400309 ctx->duped = -1;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400310 }
Al Viro23db8622013-05-17 16:34:50 -0400311 desc->ctx->pos = new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400312 desc->cache_entry_index = i;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500313 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400314 }
315 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500316 if (array->eof_index >= 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500317 status = -EBADCOOKIE;
Trond Myklebust18fb5fe2010-12-07 12:41:58 -0500318 if (*desc->dir_cookie == array->last_cookie)
319 desc->eof = 1;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500320 }
Trond Myklebust0c030802011-07-30 12:45:35 -0400321out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400322 return status;
323}
324
325static
326int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
327{
328 struct nfs_cache_array *array;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500329 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400330
331 array = nfs_readdir_get_array(desc->page);
332 if (IS_ERR(array)) {
333 status = PTR_ERR(array);
334 goto out;
335 }
336
337 if (*desc->dir_cookie == 0)
338 status = nfs_readdir_search_for_pos(array, desc);
339 else
340 status = nfs_readdir_search_for_cookie(array, desc);
341
Trond Myklebust47c716c2010-12-07 12:44:56 -0500342 if (status == -EAGAIN) {
Trond Myklebust0aded702010-11-30 21:56:32 -0500343 desc->last_cookie = array->last_cookie;
Trond Myklebuste47c0852011-03-23 08:43:09 -0400344 desc->current_index += array->size;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500345 desc->page_index++;
346 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400347 nfs_readdir_release_array(desc->page);
348out:
349 return status;
350}
351
352/* Fill a page with xdr information before transferring to the cache page */
353static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400354int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400355 struct nfs_entry *entry, struct file *file, struct inode *inode)
356{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400357 struct nfs_open_dir_context *ctx = file->private_data;
358 struct rpc_cred *cred = ctx->cred;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400359 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 int error;
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 again:
363 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400364 gencount = nfs_inc_attr_generation_counter();
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400365 error = NFS_PROTO(inode)->readdir(file->f_path.dentry, cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 NFS_SERVER(inode)->dtsize, desc->plus);
367 if (error < 0) {
368 /* We requested READDIRPLUS, but the server doesn't grok it */
369 if (error == -ENOTSUPP && desc->plus) {
370 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200371 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 desc->plus = 0;
373 goto again;
374 }
375 goto error;
376 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000377 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400378 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400379error:
380 return error;
381}
382
Chuck Lever573c4e12010-12-14 14:58:11 +0000383static int xdr_decode(nfs_readdir_descriptor_t *desc,
384 struct nfs_entry *entry, struct xdr_stream *xdr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400385{
Chuck Lever573c4e12010-12-14 14:58:11 +0000386 int error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400387
Chuck Lever573c4e12010-12-14 14:58:11 +0000388 error = desc->decode(xdr, entry, desc->plus);
389 if (error)
390 return error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400391 entry->fattr->time_start = desc->timestamp;
392 entry->fattr->gencount = desc->gencount;
393 return 0;
394}
395
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400396static
397int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
398{
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400399 if (dentry->d_inode == NULL)
400 goto different;
Trond Myklebust37a09f02010-11-30 12:42:34 -0500401 if (nfs_compare_fh(entry->fh, NFS_FH(dentry->d_inode)) != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400402 goto different;
403 return 1;
404different:
405 return 0;
406}
407
408static
Al Viro23db8622013-05-17 16:34:50 -0400409bool nfs_use_readdirplus(struct inode *dir, struct dir_context *ctx)
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400410{
411 if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
412 return false;
413 if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
414 return true;
Al Viro23db8622013-05-17 16:34:50 -0400415 if (ctx->pos == 0)
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400416 return true;
417 return false;
418}
419
420/*
421 * This function is called by the lookup code to request the use of
422 * readdirplus to accelerate any future lookups in the same
423 * directory.
424 */
425static
426void nfs_advise_use_readdirplus(struct inode *dir)
427{
428 set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags);
429}
430
431static
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400432void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
433{
Linus Torvalds26fe5752012-05-10 13:14:12 -0700434 struct qstr filename = QSTR_INIT(entry->name, entry->len);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400435 struct dentry *dentry;
436 struct dentry *alias;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400437 struct inode *dir = parent->d_inode;
438 struct inode *inode;
David Quigleyaa9c2662013-05-22 12:50:44 -0400439 int status;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400440
Trond Myklebust4a201d62010-10-23 14:53:23 -0400441 if (filename.name[0] == '.') {
442 if (filename.len == 1)
443 return;
444 if (filename.len == 2 && filename.name[1] == '.')
445 return;
446 }
447 filename.hash = full_name_hash(filename.name, filename.len);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400448
Trond Myklebust4a201d62010-10-23 14:53:23 -0400449 dentry = d_lookup(parent, &filename);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400450 if (dentry != NULL) {
451 if (nfs_same_file(dentry, entry)) {
Jeff Laytoncda57a12013-07-04 06:35:23 -0400452 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
David Quigleyaa9c2662013-05-22 12:50:44 -0400453 status = nfs_refresh_inode(dentry->d_inode, entry->fattr);
454 if (!status)
455 nfs_setsecurity(dentry->d_inode, entry->fattr, entry->label);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400456 goto out;
457 } else {
Al Viro696199f2012-11-29 22:00:51 -0500458 if (d_invalidate(dentry) != 0)
459 goto out;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400460 dput(dentry);
461 }
462 }
463
464 dentry = d_alloc(parent, &filename);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400465 if (dentry == NULL)
466 return;
467
David Quigley1775fd32013-05-22 12:50:42 -0400468 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr, entry->label);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400469 if (IS_ERR(inode))
470 goto out;
471
472 alias = d_materialise_unique(dentry, inode);
473 if (IS_ERR(alias))
474 goto out;
475 else if (alias) {
476 nfs_set_verifier(alias, nfs_save_change_attribute(dir));
477 dput(alias);
478 } else
479 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
480
481out:
482 dput(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400483}
484
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400485/* Perform conversion from xdr to cache array */
486static
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500487int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Trond Myklebust66502392011-01-08 17:45:38 -0500488 struct page **xdr_pages, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400489{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400490 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400491 struct xdr_buf buf;
Trond Myklebust66502392011-01-08 17:45:38 -0500492 struct page *scratch;
Bryan Schumaker99424382010-10-21 16:33:16 -0400493 struct nfs_cache_array *array;
Trond Myklebust5c346852010-11-20 12:43:45 -0500494 unsigned int count = 0;
495 int status;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400496
Trond Myklebust66502392011-01-08 17:45:38 -0500497 scratch = alloc_page(GFP_KERNEL);
498 if (scratch == NULL)
499 return -ENOMEM;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400500
Benny Halevyf7da7a12011-05-19 14:16:47 -0400501 xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
Trond Myklebust66502392011-01-08 17:45:38 -0500502 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
Bryan Schumaker99424382010-10-21 16:33:16 -0400503
504 do {
505 status = xdr_decode(desc, entry, &stream);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500506 if (status != 0) {
507 if (status == -EAGAIN)
508 status = 0;
Bryan Schumaker99424382010-10-21 16:33:16 -0400509 break;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500510 }
Bryan Schumaker99424382010-10-21 16:33:16 -0400511
Trond Myklebust5c346852010-11-20 12:43:45 -0500512 count++;
513
Trond Myklebust47c716c2010-12-07 12:44:56 -0500514 if (desc->plus != 0)
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400515 nfs_prime_dcache(desc->file->f_path.dentry, entry);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500516
517 status = nfs_readdir_add_to_array(entry, page);
518 if (status != 0)
519 break;
Bryan Schumaker99424382010-10-21 16:33:16 -0400520 } while (!entry->eof);
521
Trond Myklebust47c716c2010-12-07 12:44:56 -0500522 if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
Bryan Schumaker99424382010-10-21 16:33:16 -0400523 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500524 if (!IS_ERR(array)) {
525 array->eof_index = array->size;
526 status = 0;
527 nfs_readdir_release_array(page);
Trond Myklebust5c346852010-11-20 12:43:45 -0500528 } else
529 status = PTR_ERR(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400530 }
Trond Myklebust66502392011-01-08 17:45:38 -0500531
532 put_page(scratch);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500533 return status;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400534}
535
536static
537void nfs_readdir_free_pagearray(struct page **pages, unsigned int npages)
538{
539 unsigned int i;
540 for (i = 0; i < npages; i++)
541 put_page(pages[i]);
542}
543
544static
545void nfs_readdir_free_large_page(void *ptr, struct page **pages,
546 unsigned int npages)
547{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400548 nfs_readdir_free_pagearray(pages, npages);
549}
550
551/*
552 * nfs_readdir_large_page will allocate pages that must be freed with a call
553 * to nfs_readdir_free_large_page
554 */
555static
Trond Myklebust66502392011-01-08 17:45:38 -0500556int nfs_readdir_large_page(struct page **pages, unsigned int npages)
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400557{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400558 unsigned int i;
559
560 for (i = 0; i < npages; i++) {
561 struct page *page = alloc_page(GFP_KERNEL);
562 if (page == NULL)
563 goto out_freepages;
564 pages[i] = page;
565 }
Trond Myklebust66502392011-01-08 17:45:38 -0500566 return 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400567
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400568out_freepages:
569 nfs_readdir_free_pagearray(pages, i);
Trond Myklebust66502392011-01-08 17:45:38 -0500570 return -ENOMEM;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400571}
572
573static
574int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
575{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400576 struct page *pages[NFS_MAX_READDIR_PAGES];
577 void *pages_ptr = NULL;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400578 struct nfs_entry entry;
579 struct file *file = desc->file;
580 struct nfs_cache_array *array;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500581 int status = -ENOMEM;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400582 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400583
584 entry.prev_cookie = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500585 entry.cookie = desc->last_cookie;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400586 entry.eof = 0;
587 entry.fh = nfs_alloc_fhandle();
588 entry.fattr = nfs_alloc_fattr();
Chuck Lever573c4e12010-12-14 14:58:11 +0000589 entry.server = NFS_SERVER(inode);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400590 if (entry.fh == NULL || entry.fattr == NULL)
591 goto out;
592
David Quigley14c43f72013-05-22 12:50:43 -0400593 entry.label = nfs4_label_alloc(NFS_SERVER(inode), GFP_NOWAIT);
594 if (IS_ERR(entry.label)) {
595 status = PTR_ERR(entry.label);
596 goto out;
597 }
598
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400599 array = nfs_readdir_get_array(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500600 if (IS_ERR(array)) {
601 status = PTR_ERR(array);
David Quigley14c43f72013-05-22 12:50:43 -0400602 goto out_label_free;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500603 }
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400604 memset(array, 0, sizeof(struct nfs_cache_array));
605 array->eof_index = -1;
606
Trond Myklebust66502392011-01-08 17:45:38 -0500607 status = nfs_readdir_large_page(pages, array_size);
608 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400609 goto out_release_array;
610 do {
Trond Myklebustac396122010-11-15 20:26:22 -0500611 unsigned int pglen;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400612 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400613
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400614 if (status < 0)
615 break;
Trond Myklebustac396122010-11-15 20:26:22 -0500616 pglen = status;
Trond Myklebust66502392011-01-08 17:45:38 -0500617 status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500618 if (status < 0) {
619 if (status == -ENOSPC)
620 status = 0;
621 break;
622 }
623 } while (array->eof_index < 0);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400624
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400625 nfs_readdir_free_large_page(pages_ptr, pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400626out_release_array:
627 nfs_readdir_release_array(page);
David Quigley14c43f72013-05-22 12:50:43 -0400628out_label_free:
629 nfs4_label_free(entry.label);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400630out:
631 nfs_free_fattr(entry.fattr);
632 nfs_free_fhandle(entry.fh);
633 return status;
634}
635
636/*
637 * Now we cache directories properly, by converting xdr information
638 * to an array that can be used for lookups later. This results in
639 * fewer cache pages, since we can store more information on each page.
640 * We only need to convert from xdr once so future lookups are much simpler
641 */
642static
643int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
644{
Al Viro496ad9a2013-01-23 17:07:38 -0500645 struct inode *inode = file_inode(desc->file);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500646 int ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400647
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500648 ret = nfs_readdir_xdr_to_array(desc, page, inode);
649 if (ret < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400650 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400652
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400653 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700654 /* Should never happen */
655 nfs_zap_mapping(inode, inode->i_mapping);
656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 unlock_page(page);
658 return 0;
659 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 unlock_page(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500661 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400664static
665void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500667 if (!desc->page->mapping)
668 nfs_readdir_clear_array(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 page_cache_release(desc->page);
670 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400673static
674struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Al Viro496ad9a2013-01-23 17:07:38 -0500676 return read_cache_page(file_inode(desc->file)->i_mapping,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400677 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400681 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000682 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400683static
684int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000685{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400686 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000687
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400688 desc->page = get_cache_page(desc);
689 if (IS_ERR(desc->page))
690 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000691
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400692 res = nfs_readdir_search_array(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500693 if (res != 0)
694 cache_page_release(desc);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400695 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000696}
697
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400698/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static inline
700int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
701{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500702 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000703
Trond Myklebust0aded702010-11-30 21:56:32 -0500704 if (desc->page_index == 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500705 desc->current_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500706 desc->last_cookie = 0;
707 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500708 do {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400709 res = find_cache_page(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500710 } while (res == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return res;
712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
715 * Once we've found the start of the dirent within a page: fill 'er up...
716 */
717static
Al Viro23db8622013-05-17 16:34:50 -0400718int nfs_do_filldir(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400721 int i = 0;
722 int res = 0;
723 struct nfs_cache_array *array = NULL;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400724 struct nfs_open_dir_context *ctx = file->private_data;
725
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400726 array = nfs_readdir_get_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500727 if (IS_ERR(array)) {
728 res = PTR_ERR(array);
729 goto out;
730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400732 for (i = desc->cache_entry_index; i < array->size; i++) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500733 struct nfs_cache_array_entry *ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Trond Myklebustece0b422010-11-20 13:55:33 -0500735 ent = &array->array[i];
Al Viro23db8622013-05-17 16:34:50 -0400736 if (!dir_emit(desc->ctx, ent->string.name, ent->string.len,
737 nfs_compat_user_ino64(ent->ino), ent->d_type)) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500738 desc->eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 break;
Trond Myklebustece0b422010-11-20 13:55:33 -0500740 }
Al Viro23db8622013-05-17 16:34:50 -0400741 desc->ctx->pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400742 if (i < (array->size-1))
743 *desc->dir_cookie = array->array[i+1].cookie;
744 else
745 *desc->dir_cookie = array->last_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400746 if (ctx->duped != 0)
747 ctx->duped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500749 if (array->eof_index >= 0)
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500750 desc->eof = 1;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400751
752 nfs_readdir_release_array(desc->page);
Trond Myklebuste7c58e92010-11-20 13:22:24 -0500753out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400754 cache_page_release(desc);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500755 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
756 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return res;
758}
759
760/*
761 * If we cannot find a cookie in our cache, we suspect that this is
762 * because it points to a deleted file, so we ask the server to return
763 * whatever it thinks is the next entry. We then feed this to filldir.
764 * If all goes well, we should then be able to find our way round the
765 * cache on the next call to readdir_search_pagecache();
766 *
767 * NOTE: we cannot add the anonymous page to the pagecache because
768 * the data it contains might not be page aligned. Besides,
769 * we should already have a complete representation of the
770 * directory in the page cache by the time we get here.
771 */
772static inline
Al Viro23db8622013-05-17 16:34:50 -0400773int uncached_readdir(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct page *page = NULL;
776 int status;
Al Viro496ad9a2013-01-23 17:07:38 -0500777 struct inode *inode = file_inode(desc->file);
Trond Myklebust0c030802011-07-30 12:45:35 -0400778 struct nfs_open_dir_context *ctx = desc->file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500780 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
781 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 page = alloc_page(GFP_HIGHUSER);
784 if (!page) {
785 status = -ENOMEM;
786 goto out;
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500789 desc->page_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500790 desc->last_cookie = *desc->dir_cookie;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500791 desc->page = page;
Trond Myklebust0c030802011-07-30 12:45:35 -0400792 ctx->duped = 0;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500793
Trond Myklebust85f86072010-11-20 13:24:49 -0500794 status = nfs_readdir_xdr_to_array(desc, page, inode);
795 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400796 goto out_release;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400797
Al Viro23db8622013-05-17 16:34:50 -0400798 status = nfs_do_filldir(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500801 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700802 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return status;
804 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400805 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 goto out;
807}
808
Olivier Galibert00a92642005-06-22 17:16:29 +0000809/* The file offset position represents the dirent entry number. A
810 last cookie cache takes care of the common case of reading the
811 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
Al Viro23db8622013-05-17 16:34:50 -0400813static int nfs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Al Viro23db8622013-05-17 16:34:50 -0400815 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 struct inode *inode = dentry->d_inode;
817 nfs_readdir_descriptor_t my_desc,
818 *desc = &my_desc;
Al Viro23db8622013-05-17 16:34:50 -0400819 struct nfs_open_dir_context *dir_ctx = file->private_data;
Scott Mayhew07b5ce82013-07-05 17:49:31 -0400820 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Al Viro6de14722013-09-16 10:53:17 -0400822 dfprintk(FILE, "NFS: readdir(%pD2) starting at cookie %llu\n",
823 file, (long long)ctx->pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500824 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 /*
Al Viro23db8622013-05-17 16:34:50 -0400827 * ctx->pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000828 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000829 * to either find the entry with the appropriate number or
830 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
832 memset(desc, 0, sizeof(*desc));
833
Al Viro23db8622013-05-17 16:34:50 -0400834 desc->file = file;
835 desc->ctx = ctx;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400836 desc->dir_cookie = &dir_ctx->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 desc->decode = NFS_PROTO(inode)->decode_dirent;
Al Viro23db8622013-05-17 16:34:50 -0400838 desc->plus = nfs_use_readdirplus(inode, ctx) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Trond Myklebust565277f2007-10-15 18:17:53 -0400840 nfs_block_sillyrename(dentry);
Scott Mayhew07b5ce82013-07-05 17:49:31 -0400841 if (ctx->pos == 0 || nfs_attribute_cache_expired(inode))
842 res = nfs_revalidate_mapping(inode, file->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500843 if (res < 0)
844 goto out;
845
Trond Myklebust47c716c2010-12-07 12:44:56 -0500846 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (res == -EBADCOOKIE) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500850 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* This means either end of directory */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400852 if (*desc->dir_cookie && desc->eof == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /* Or that the server has 'lost' a cookie */
Al Viro23db8622013-05-17 16:34:50 -0400854 res = uncached_readdir(desc);
Trond Myklebustece0b422010-11-20 13:55:33 -0500855 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 continue;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 break;
859 }
860 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200861 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400863 desc->page_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 desc->plus = 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400865 desc->eof = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 continue;
867 }
868 if (res < 0)
869 break;
870
Al Viro23db8622013-05-17 16:34:50 -0400871 res = nfs_do_filldir(desc);
Trond Myklebustece0b422010-11-20 13:55:33 -0500872 if (res < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500874 } while (!desc->eof);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500875out:
Trond Myklebust565277f2007-10-15 18:17:53 -0400876 nfs_unblock_sillyrename(dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500877 if (res > 0)
878 res = 0;
Al Viro6de14722013-09-16 10:53:17 -0400879 dfprintk(FILE, "NFS: readdir(%pD2) returns %d\n", file, res);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500880 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Andrew Morton965c8e52012-12-17 15:59:39 -0800883static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int whence)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000884{
Al Viro6de14722013-09-16 10:53:17 -0400885 struct inode *inode = file_inode(filp);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400886 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Chuck Leverb84e06c2008-06-11 17:55:34 -0400887
Al Viro6de14722013-09-16 10:53:17 -0400888 dfprintk(FILE, "NFS: llseek dir(%pD2, %lld, %d)\n",
889 filp, offset, whence);
Chuck Leverb84e06c2008-06-11 17:55:34 -0400890
891 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800892 switch (whence) {
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000893 case 1:
894 offset += filp->f_pos;
895 case 0:
896 if (offset >= 0)
897 break;
898 default:
899 offset = -EINVAL;
900 goto out;
901 }
902 if (offset != filp->f_pos) {
903 filp->f_pos = offset;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400904 dir_ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400905 dir_ctx->duped = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000906 }
907out:
Chuck Leverb84e06c2008-06-11 17:55:34 -0400908 mutex_unlock(&inode->i_mutex);
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000909 return offset;
910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/*
913 * All directory operations under NFS are synchronous, so fsync()
914 * is a dummy operation.
915 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400916static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
917 int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Al Viro6de14722013-09-16 10:53:17 -0400919 struct inode *inode = file_inode(filp);
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200920
Al Viro6de14722013-09-16 10:53:17 -0400921 dfprintk(FILE, "NFS: fsync dir(%pD2) datasync %d\n", filp, datasync);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500922
Josef Bacik02c24a82011-07-16 20:44:56 -0400923 mutex_lock(&inode->i_mutex);
Al Viro6de14722013-09-16 10:53:17 -0400924 nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
Josef Bacik02c24a82011-07-16 20:44:56 -0400925 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927}
928
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400929/**
930 * nfs_force_lookup_revalidate - Mark the directory as having changed
931 * @dir - pointer to directory inode
932 *
933 * This forces the revalidation code in nfs_lookup_revalidate() to do a
934 * full lookup on all child dentries of 'dir' whenever a change occurs
935 * on the server that might have invalidated our dcache.
936 *
937 * The caller should be holding dir->i_lock
938 */
939void nfs_force_lookup_revalidate(struct inode *dir)
940{
Trond Myklebust011935a2008-10-14 19:24:50 -0400941 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400942}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400943EXPORT_SYMBOL_GPL(nfs_force_lookup_revalidate);
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945/*
946 * A check for whether or not the parent directory has changed.
947 * In the case it has, we assume that the dentries are untrustworthy
948 * and may need to be looked up again.
949 */
Trond Myklebustc79ba782007-01-31 08:16:24 -0500950static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 if (IS_ROOT(dentry))
953 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -0400954 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
955 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -0400956 if (!nfs_verify_change_attribute(dir, dentry->d_time))
957 return 0;
958 /* Revalidate nfsi->cache_change_attribute before we declare a match */
959 if (nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
960 return 0;
961 if (!nfs_verify_change_attribute(dir, dentry->d_time))
962 return 0;
963 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966/*
Trond Myklebusta12802c2007-10-02 19:13:04 -0400967 * Use intent information to check whether or not we're going to do
968 * an O_EXCL create using this path component.
969 */
Al Virofa3c56b2012-06-10 15:36:40 -0400970static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
Trond Myklebusta12802c2007-10-02 19:13:04 -0400971{
972 if (NFS_PROTO(dir)->version == 2)
973 return 0;
Al Virofa3c56b2012-06-10 15:36:40 -0400974 return flags & LOOKUP_EXCL;
Trond Myklebusta12802c2007-10-02 19:13:04 -0400975}
976
977/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -0400978 * Inode and filehandle revalidation for lookups.
979 *
980 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
981 * or if the intent information indicates that we're about to open this
982 * particular file and the "nocto" mount flag is not set.
983 *
984 */
Trond Myklebust65a0c142012-12-14 17:51:40 -0500985static
Al Virofa3c56b2012-06-10 15:36:40 -0400986int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust65a0c142012-12-14 17:51:40 -0500989 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
David Howells36d43a42011-01-14 18:45:42 +0000991 if (IS_AUTOMOUNT(inode))
Trond Myklebust4e99a1f2008-03-06 12:34:59 -0500992 return 0;
Al Virofacc3532012-06-10 15:33:51 -0400993 /* VFS wants an on-the-wire revalidation */
Al Virofa3c56b2012-06-10 15:36:40 -0400994 if (flags & LOOKUP_REVAL)
Al Virofacc3532012-06-10 15:33:51 -0400995 goto out_force;
996 /* This is an open(2) */
Al Virofa3c56b2012-06-10 15:36:40 -0400997 if ((flags & LOOKUP_OPEN) && !(server->flags & NFS_MOUNT_NOCTO) &&
998 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
Al Virofacc3532012-06-10 15:33:51 -0400999 goto out_force;
Trond Myklebust65a0c142012-12-14 17:51:40 -05001000out:
1001 return (inode->i_nlink == 0) ? -ENOENT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002out_force:
Trond Myklebust65a0c142012-12-14 17:51:40 -05001003 ret = __nfs_revalidate_inode(server, inode);
1004 if (ret != 0)
1005 return ret;
1006 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009/*
1010 * We judge how long we want to trust negative
1011 * dentries by looking at the parent inode mtime.
1012 *
1013 * If parent mtime has changed, we revalidate, else we wait for a
1014 * period corresponding to the parent's attribute cache timeout value.
1015 */
1016static inline
1017int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
Al Virofa3c56b2012-06-10 15:36:40 -04001018 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* Don't revalidate a negative dentry if we're creating a new file */
Al Virofa3c56b2012-06-10 15:36:40 -04001021 if (flags & LOOKUP_CREATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001023 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1024 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return !nfs_check_verifier(dir, dentry);
1026}
1027
1028/*
1029 * This is called every time the dcache has a lookup hit,
1030 * and we should check whether we can really trust that
1031 * lookup.
1032 *
1033 * NOTE! The hit can be a negative hit too, don't assume
1034 * we have an inode!
1035 *
1036 * If the parent directory is seen to have changed, we throw out the
1037 * cached dentry and do a new lookup.
1038 */
Al Viro0b728e12012-06-10 16:03:43 -04001039static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 struct inode *dir;
1042 struct inode *inode;
1043 struct dentry *parent;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001044 struct nfs_fh *fhandle = NULL;
1045 struct nfs_fattr *fattr = NULL;
David Quigley1775fd32013-05-22 12:50:42 -04001046 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Al Virofa3c56b2012-06-10 15:36:40 -04001049 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001050 return -ECHILD;
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 parent = dget_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 dir = parent->d_inode;
Chuck Lever91d5b472006-03-20 13:44:14 -05001054 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 inode = dentry->d_inode;
1056
1057 if (!inode) {
Al Virofa3c56b2012-06-10 15:36:40 -04001058 if (nfs_neg_need_reval(dir, dentry, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 goto out_bad;
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001060 goto out_valid_noent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
1063 if (is_bad_inode(inode)) {
Al Viro6de14722013-09-16 10:53:17 -04001064 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1065 __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 goto out_bad;
1067 }
1068
Bryan Schumaker011e2a72012-06-20 15:53:43 -04001069 if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
Trond Myklebust15860ab2008-12-23 15:21:54 -05001070 goto out_set_verifier;
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /* Force a full look up iff the parent directory has changed */
Al Virofa3c56b2012-06-10 15:36:40 -04001073 if (!nfs_is_exclusive_create(dir, flags) && nfs_check_verifier(dir, dentry)) {
1074 if (nfs_lookup_verify_inode(inode, flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 goto out_zap_parent;
1076 goto out_valid;
1077 }
1078
1079 if (NFS_STALE(inode))
1080 goto out_bad;
1081
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001082 error = -ENOMEM;
1083 fhandle = nfs_alloc_fhandle();
1084 fattr = nfs_alloc_fattr();
1085 if (fhandle == NULL || fattr == NULL)
1086 goto out_error;
1087
David Quigley14c43f72013-05-22 12:50:43 -04001088 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_NOWAIT);
1089 if (IS_ERR(label))
1090 goto out_error;
1091
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001092 trace_nfs_lookup_revalidate_enter(dir, dentry, flags);
David Quigley1775fd32013-05-22 12:50:42 -04001093 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001094 trace_nfs_lookup_revalidate_exit(dir, dentry, flags, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (error)
1096 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001097 if (nfs_compare_fh(NFS_FH(inode), fhandle))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 goto out_bad;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001099 if ((error = nfs_refresh_inode(inode, fattr)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 goto out_bad;
1101
David Quigleyaa9c2662013-05-22 12:50:44 -04001102 nfs_setsecurity(inode, fattr, label);
1103
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001104 nfs_free_fattr(fattr);
1105 nfs_free_fhandle(fhandle);
David Quigley14c43f72013-05-22 12:50:43 -04001106 nfs4_label_free(label);
1107
Trond Myklebust15860ab2008-12-23 15:21:54 -05001108out_set_verifier:
Trond Myklebustcf8ba452007-10-01 13:46:53 -04001109 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 out_valid:
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001111 /* Success: notify readdir to use READDIRPLUS */
1112 nfs_advise_use_readdirplus(dir);
1113 out_valid_noent:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 dput(parent);
Al Viro6de14722013-09-16 10:53:17 -04001115 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is valid\n",
1116 __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return 1;
1118out_zap_parent:
1119 nfs_zap_caches(dir);
1120 out_bad:
Al Viroc44600c2012-11-29 22:04:36 -05001121 nfs_free_fattr(fattr);
1122 nfs_free_fhandle(fhandle);
David Quigley14c43f72013-05-22 12:50:43 -04001123 nfs4_label_free(label);
Trond Myklebusta1643a92007-09-29 17:25:43 -04001124 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (inode && S_ISDIR(inode->i_mode)) {
1126 /* Purge readdir caches. */
1127 nfs_zap_caches(inode);
J. Bruce Fieldsa3f432b2013-10-15 17:03:16 -04001128 /*
1129 * We can't d_drop the root of a disconnected tree:
1130 * its d_hash is on the s_anon list and d_drop() would hide
1131 * it from shrink_dcache_for_unmount(), leading to busy
1132 * inodes on unmount and further oopses.
1133 */
1134 if (IS_ROOT(dentry))
Al Virod9e80b72010-04-29 03:10:43 +01001135 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
Miklos Szeredi13caa9f2013-09-05 11:44:40 +02001137 /* If we have submounts, don't unhash ! */
1138 if (check_submounts_and_drop(dentry) != 0)
1139 goto out_valid;
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 dput(parent);
Al Viro6de14722013-09-16 10:53:17 -04001142 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is invalid\n",
1143 __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return 0;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001145out_error:
1146 nfs_free_fattr(fattr);
1147 nfs_free_fhandle(fhandle);
David Quigley14c43f72013-05-22 12:50:43 -04001148 nfs4_label_free(label);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001149 dput(parent);
Al Viro6de14722013-09-16 10:53:17 -04001150 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) lookup returned error %d\n",
1151 __func__, dentry, error);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001152 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
1155/*
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001156 * A weaker form of d_revalidate for revalidating just the dentry->d_inode
1157 * when we don't really care about the dentry name. This is called when a
1158 * pathwalk ends on a dentry that was not found via a normal lookup in the
1159 * parent dir (e.g.: ".", "..", procfs symlinks or mountpoint traversals).
1160 *
1161 * In this situation, we just want to verify that the inode itself is OK
1162 * since the dentry might have changed on the server.
1163 */
1164static int nfs_weak_revalidate(struct dentry *dentry, unsigned int flags)
1165{
1166 int error;
1167 struct inode *inode = dentry->d_inode;
1168
1169 /*
1170 * I believe we can only get a negative dentry here in the case of a
1171 * procfs-style symlink. Just assume it's correct for now, but we may
1172 * eventually need to do something more here.
1173 */
1174 if (!inode) {
Al Viro6de14722013-09-16 10:53:17 -04001175 dfprintk(LOOKUPCACHE, "%s: %pd2 has negative inode\n",
1176 __func__, dentry);
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001177 return 1;
1178 }
1179
1180 if (is_bad_inode(inode)) {
Al Viro6de14722013-09-16 10:53:17 -04001181 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1182 __func__, dentry);
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001183 return 0;
1184 }
1185
1186 error = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1187 dfprintk(LOOKUPCACHE, "NFS: %s: inode %lu is %s\n",
1188 __func__, inode->i_ino, error ? "invalid" : "valid");
1189 return !error;
1190}
1191
1192/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 * This is called from dput() when d_count is going to 0.
1194 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001195static int nfs_dentry_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Al Viro6de14722013-09-16 10:53:17 -04001197 dfprintk(VFS, "NFS: dentry_delete(%pd2, %x)\n",
1198 dentry, dentry->d_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Trond Myklebust77f11192008-01-28 19:43:19 -05001200 /* Unhash any dentry with a stale inode */
1201 if (dentry->d_inode != NULL && NFS_STALE(dentry->d_inode))
1202 return 1;
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1205 /* Unhash it, so that ->d_iput() would be called */
1206 return 1;
1207 }
1208 if (!(dentry->d_sb->s_flags & MS_ACTIVE)) {
1209 /* Unhash it, so that ancestors of killed async unlink
1210 * files will be cleaned up during umount */
1211 return 1;
1212 }
1213 return 0;
1214
1215}
1216
Trond Myklebust1f018452012-12-14 16:38:46 -05001217/* Ensure that we revalidate inode->i_nlink */
Trond Myklebust1b83d702008-06-11 15:44:04 -04001218static void nfs_drop_nlink(struct inode *inode)
1219{
1220 spin_lock(&inode->i_lock);
Trond Myklebust1f018452012-12-14 16:38:46 -05001221 /* drop the inode if we're reasonably sure this is the last link */
1222 if (inode->i_nlink == 1)
1223 clear_nlink(inode);
1224 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
Trond Myklebust1b83d702008-06-11 15:44:04 -04001225 spin_unlock(&inode->i_lock);
1226}
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228/*
1229 * Called when the dentry loses inode.
1230 * We use it to clean up silly-renamed files.
1231 */
1232static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1233{
Neil Brown83672d32007-02-26 12:48:25 +11001234 if (S_ISDIR(inode->i_mode))
1235 /* drop any readdir cache as it could easily be old */
1236 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001239 nfs_complete_unlink(dentry, inode);
Trond Myklebust1f018452012-12-14 16:38:46 -05001240 nfs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 iput(inode);
1243}
1244
Al Virob1942c52011-03-16 05:44:14 -04001245static void nfs_d_release(struct dentry *dentry)
1246{
1247 /* free cached devname value, if it survived that far */
1248 if (unlikely(dentry->d_fsdata)) {
1249 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1250 WARN_ON(1);
1251 else
1252 kfree(dentry->d_fsdata);
1253 }
1254}
1255
Al Virof786aa92009-02-20 05:51:22 +00001256const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 .d_revalidate = nfs_lookup_revalidate,
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001258 .d_weak_revalidate = nfs_weak_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 .d_delete = nfs_dentry_delete,
1260 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001261 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001262 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263};
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001264EXPORT_SYMBOL_GPL(nfs_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Bryan Schumaker597d9282012-07-16 16:39:10 -04001266struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
1268 struct dentry *res;
Trond Myklebust565277f2007-10-15 18:17:53 -04001269 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001271 struct nfs_fh *fhandle = NULL;
1272 struct nfs_fattr *fattr = NULL;
David Quigley1775fd32013-05-22 12:50:42 -04001273 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Al Viro6de14722013-09-16 10:53:17 -04001276 dfprintk(VFS, "NFS: lookup(%pd2)\n", dentry);
Chuck Lever91d5b472006-03-20 13:44:14 -05001277 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 res = ERR_PTR(-ENAMETOOLONG);
1280 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
1281 goto out;
1282
Trond Myklebustfd684072006-09-05 12:27:44 -04001283 /*
1284 * If we're doing an exclusive create, optimize away the lookup
1285 * but don't hash the dentry.
1286 */
Al Viro00cd8dd2012-06-10 17:13:09 -04001287 if (nfs_is_exclusive_create(dir, flags)) {
Trond Myklebustfd684072006-09-05 12:27:44 -04001288 d_instantiate(dentry, NULL);
1289 res = NULL;
Trond Myklebustfc0f6842008-06-11 15:44:20 -04001290 goto out;
Trond Myklebustfd684072006-09-05 12:27:44 -04001291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001293 res = ERR_PTR(-ENOMEM);
1294 fhandle = nfs_alloc_fhandle();
1295 fattr = nfs_alloc_fattr();
1296 if (fhandle == NULL || fattr == NULL)
1297 goto out;
1298
David Quigley14c43f72013-05-22 12:50:43 -04001299 label = nfs4_label_alloc(NFS_SERVER(dir), GFP_NOWAIT);
1300 if (IS_ERR(label))
1301 goto out;
1302
Trond Myklebust565277f2007-10-15 18:17:53 -04001303 parent = dentry->d_parent;
1304 /* Protect against concurrent sillydeletes */
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001305 trace_nfs_lookup_enter(dir, dentry, flags);
Trond Myklebust565277f2007-10-15 18:17:53 -04001306 nfs_block_sillyrename(parent);
David Quigley1775fd32013-05-22 12:50:42 -04001307 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (error == -ENOENT)
1309 goto no_entry;
1310 if (error < 0) {
1311 res = ERR_PTR(error);
Trond Myklebust565277f2007-10-15 18:17:53 -04001312 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
David Quigley1775fd32013-05-22 12:50:42 -04001314 inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label);
Namhyung Kimbf0c84f2010-12-28 17:02:46 +00001315 res = ERR_CAST(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001316 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001317 goto out_unblock_sillyrename;
David Howells54ceac42006-08-22 20:06:13 -04001318
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001319 /* Success: notify readdir to use READDIRPLUS */
1320 nfs_advise_use_readdirplus(dir);
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322no_entry:
David Howells54ceac42006-08-22 20:06:13 -04001323 res = d_materialise_unique(dentry, inode);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001324 if (res != NULL) {
1325 if (IS_ERR(res))
Trond Myklebust565277f2007-10-15 18:17:53 -04001326 goto out_unblock_sillyrename;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001330out_unblock_sillyrename:
1331 nfs_unblock_sillyrename(parent);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001332 trace_nfs_lookup_exit(dir, dentry, flags, error);
David Quigley14c43f72013-05-22 12:50:43 -04001333 nfs4_label_free(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001335 nfs_free_fattr(fattr);
1336 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return res;
1338}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001339EXPORT_SYMBOL_GPL(nfs_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001341#if IS_ENABLED(CONFIG_NFS_V4)
Al Viro0b728e12012-06-10 16:03:43 -04001342static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Al Virof786aa92009-02-20 05:51:22 +00001344const struct dentry_operations nfs4_dentry_operations = {
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001345 .d_revalidate = nfs4_lookup_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 .d_delete = nfs_dentry_delete,
1347 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001348 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001349 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350};
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001351EXPORT_SYMBOL_GPL(nfs4_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Al Viro8a5e9292011-06-25 19:15:54 -04001353static fmode_t flags_to_mode(int flags)
1354{
1355 fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1356 if ((flags & O_ACCMODE) != O_WRONLY)
1357 res |= FMODE_READ;
1358 if ((flags & O_ACCMODE) != O_RDONLY)
1359 res |= FMODE_WRITE;
1360 return res;
1361}
1362
Al Viro51141592011-06-22 18:47:28 -04001363static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001364{
Al Viro5ede7b12011-10-23 18:49:54 -04001365 return alloc_nfs_open_context(dentry, flags_to_mode(open_flags));
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001366}
1367
1368static int do_open(struct inode *inode, struct file *filp)
1369{
David Howellsf1fe29b2013-09-27 11:20:03 +01001370 nfs_fscache_open_file(inode, filp);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001371 return 0;
1372}
1373
Al Virod9585272012-06-22 12:39:14 +04001374static int nfs_finish_open(struct nfs_open_context *ctx,
1375 struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +04001376 struct file *file, unsigned open_flags,
Al Virod9585272012-06-22 12:39:14 +04001377 int *opened)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001378{
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001379 int err;
1380
Miklos Szeredi01c919a2013-09-16 14:52:04 +02001381 if ((open_flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
1382 *opened |= FILE_CREATED;
1383
Al Viro30d90492012-06-22 12:40:19 +04001384 err = finish_open(file, dentry, do_open, opened);
1385 if (err)
Al Virod9585272012-06-22 12:39:14 +04001386 goto out;
Al Viro30d90492012-06-22 12:40:19 +04001387 nfs_file_set_open_context(file, ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001388
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001389out:
Al Virod9585272012-06-22 12:39:14 +04001390 return err;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001391}
1392
Bryan Schumaker73a79702012-07-16 16:39:12 -04001393int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
1394 struct file *file, unsigned open_flags,
1395 umode_t mode, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001397 struct nfs_open_context *ctx;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001398 struct dentry *res;
1399 struct iattr attr = { .ia_valid = ATTR_OPEN };
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001400 struct inode *inode;
Trond Myklebust1472b832013-08-20 11:59:41 -04001401 unsigned int lookup_flags = 0;
Trond Myklebust898f6352010-10-23 11:24:25 -04001402 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001404 /* Expect a negative dentry */
1405 BUG_ON(dentry->d_inode);
1406
Al Viro6de14722013-09-16 10:53:17 -04001407 dfprintk(VFS, "NFS: atomic_open(%s/%ld), %pd\n",
1408 dir->i_sb->s_id, dir->i_ino, dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001409
Jeff Layton9597c132013-08-02 11:39:32 -04001410 err = nfs_check_flags(open_flags);
1411 if (err)
1412 return err;
1413
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001414 /* NFS only supports OPEN on regular files */
1415 if ((open_flags & O_DIRECTORY)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001416 if (!d_unhashed(dentry)) {
1417 /*
1418 * Hashed negative dentry with O_DIRECTORY: dentry was
1419 * revalidated and is fine, no need to perform lookup
1420 * again
1421 */
Al Virod9585272012-06-22 12:39:14 +04001422 return -ENOENT;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001423 }
Trond Myklebust1472b832013-08-20 11:59:41 -04001424 lookup_flags = LOOKUP_OPEN|LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001428 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
Al Virod9585272012-06-22 12:39:14 +04001429 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001431 if (open_flags & O_CREAT) {
Trond Myklebust536e43d2012-01-17 22:04:26 -05001432 attr.ia_valid |= ATTR_MODE;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001433 attr.ia_mode = mode & ~current_umask();
1434 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001435 if (open_flags & O_TRUNC) {
1436 attr.ia_valid |= ATTR_SIZE;
1437 attr.ia_size = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001438 }
1439
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001440 ctx = create_nfs_open_context(dentry, open_flags);
1441 err = PTR_ERR(ctx);
1442 if (IS_ERR(ctx))
Al Virod9585272012-06-22 12:39:14 +04001443 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001444
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001445 trace_nfs_atomic_open_enter(dir, ctx, open_flags);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001446 nfs_block_sillyrename(dentry->d_parent);
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04001447 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr, opened);
Trond Myklebust275bb302013-05-29 13:11:28 -04001448 nfs_unblock_sillyrename(dentry->d_parent);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001449 if (IS_ERR(inode)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001450 err = PTR_ERR(inode);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001451 trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
Trond Myklebust2d9db752013-08-30 09:17:33 -04001452 put_nfs_open_context(ctx);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001453 switch (err) {
1454 case -ENOENT:
Trond Myklebust275bb302013-05-29 13:11:28 -04001455 d_drop(dentry);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001456 d_add(dentry, NULL);
1457 break;
1458 case -EISDIR:
1459 case -ENOTDIR:
1460 goto no_open;
1461 case -ELOOP:
1462 if (!(open_flags & O_NOFOLLOW))
Trond Myklebust6f926b52005-10-18 14:20:18 -07001463 goto no_open;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 /* case -EINVAL: */
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001466 default:
1467 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Al Virod9585272012-06-22 12:39:14 +04001469 goto out;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001470 }
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001471
Trond Myklebust275bb302013-05-29 13:11:28 -04001472 err = nfs_finish_open(ctx, ctx->dentry, file, open_flags, opened);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001473 trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
Trond Myklebust2d9db752013-08-30 09:17:33 -04001474 put_nfs_open_context(ctx);
Al Virod9585272012-06-22 12:39:14 +04001475out:
1476 return err;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478no_open:
Trond Myklebust1472b832013-08-20 11:59:41 -04001479 res = nfs_lookup(dir, dentry, lookup_flags);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001480 err = PTR_ERR(res);
1481 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +04001482 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001483
Al Viroe45198a2012-06-10 06:48:09 -04001484 return finish_no_open(file, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001486EXPORT_SYMBOL_GPL(nfs_atomic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Al Viro0b728e12012-06-10 16:03:43 -04001488static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 struct dentry *parent = NULL;
Nick Piggin657e94b2011-01-14 02:48:39 +00001491 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 struct inode *dir;
Miklos Szeredi50de3482012-06-05 15:10:20 +02001493 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Al Virofa3c56b2012-06-10 15:36:40 -04001495 if (flags & LOOKUP_RCU)
Nick Piggin657e94b2011-01-14 02:48:39 +00001496 return -ECHILD;
1497
Al Virofa3c56b2012-06-10 15:36:40 -04001498 if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
Miklos Szeredieda72af2012-06-05 15:10:21 +02001499 goto no_open;
1500 if (d_mountpoint(dentry))
Trond Myklebust5584c302008-12-23 15:21:54 -05001501 goto no_open;
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001502 if (NFS_SB(dentry->d_sb)->caps & NFS_CAP_ATOMIC_OPEN_V1)
1503 goto no_open;
Trond Myklebust2b484292010-09-17 10:56:51 -04001504
Miklos Szeredieda72af2012-06-05 15:10:21 +02001505 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 parent = dget_parent(dentry);
1507 dir = parent->d_inode;
Trond Myklebust2b484292010-09-17 10:56:51 -04001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 /* We can't create new files in nfs_open_revalidate(), so we
1510 * optimize away revalidation of negative dentries.
1511 */
Trond Myklebust216d5d02007-10-01 20:10:12 -04001512 if (inode == NULL) {
Al Virofa3c56b2012-06-10 15:36:40 -04001513 if (!nfs_neg_need_reval(dir, dentry, flags))
Trond Myklebust216d5d02007-10-01 20:10:12 -04001514 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 goto out;
Trond Myklebust216d5d02007-10-01 20:10:12 -04001516 }
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* NFS only supports OPEN on regular files */
1519 if (!S_ISREG(inode->i_mode))
Trond Myklebust5584c302008-12-23 15:21:54 -05001520 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* We cannot do exclusive creation on a positive dentry */
Al Virofa3c56b2012-06-10 15:36:40 -04001522 if (flags & LOOKUP_EXCL)
Trond Myklebust5584c302008-12-23 15:21:54 -05001523 goto no_open_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001525 /* Let f_op->open() actually open (and revalidate) the file */
1526 ret = 1;
Trond Myklebust536e43d2012-01-17 22:04:26 -05001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528out:
1529 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 return ret;
Trond Myklebust535918f2010-09-17 10:56:51 -04001531
Trond Myklebust5584c302008-12-23 15:21:54 -05001532no_open_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 dput(parent);
Trond Myklebust5584c302008-12-23 15:21:54 -05001534no_open:
Al Viro0b728e12012-06-10 16:03:43 -04001535 return nfs_lookup_revalidate(dentry, flags);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538#endif /* CONFIG_NFSV4 */
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540/*
1541 * Code common to create, mkdir, and mknod.
1542 */
1543int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04001544 struct nfs_fattr *fattr,
1545 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001547 struct dentry *parent = dget_parent(dentry);
1548 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 struct inode *inode;
1550 int error = -EACCES;
1551
Trond Myklebustfab728e2007-09-29 17:41:33 -04001552 d_drop(dentry);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* We may have been initialized further down */
1555 if (dentry->d_inode)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001556 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (fhandle->size == 0) {
David Quigley1775fd32013-05-22 12:50:42 -04001558 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001560 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001562 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1564 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Quigley1775fd32013-05-22 12:50:42 -04001565 error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001567 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
David Quigley1775fd32013-05-22 12:50:42 -04001569 inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001570 error = PTR_ERR(inode);
1571 if (IS_ERR(inode))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001572 goto out_error;
1573 d_add(dentry, inode);
1574out:
1575 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001577out_error:
1578 nfs_mark_for_revalidate(dir);
1579 dput(parent);
1580 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001582EXPORT_SYMBOL_GPL(nfs_instantiate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584/*
1585 * Following a failed create operation, we drop the dentry rather
1586 * than retain a negative dentry. This avoids a problem in the event
1587 * that the operation succeeded on the server, but an error in the
1588 * reply path made it appear to have failed.
1589 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001590int nfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04001591 umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 struct iattr attr;
Al Viroebfc3b42012-06-10 18:05:36 -04001594 int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Al Viro6de14722013-09-16 10:53:17 -04001597 dfprintk(VFS, "NFS: create(%s/%ld), %pd\n",
1598 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 attr.ia_mode = mode;
1601 attr.ia_valid = ATTR_MODE;
1602
Trond Myklebust8b0ad3d2013-08-21 10:53:09 -04001603 trace_nfs_create_enter(dir, dentry, open_flags);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02001604 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
Trond Myklebust8b0ad3d2013-08-21 10:53:09 -04001605 trace_nfs_create_exit(dir, dentry, open_flags, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (error != 0)
1607 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return 0;
1609out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 d_drop(dentry);
1611 return error;
1612}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001613EXPORT_SYMBOL_GPL(nfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615/*
1616 * See comments for nfs_proc_create regarding failed operations.
1617 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001618int
Al Viro1a67aaf2011-07-26 01:52:52 -04001619nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
1621 struct iattr attr;
1622 int status;
1623
Al Viro6de14722013-09-16 10:53:17 -04001624 dfprintk(VFS, "NFS: mknod(%s/%ld), %pd\n",
1625 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 if (!new_valid_dev(rdev))
1628 return -EINVAL;
1629
1630 attr.ia_mode = mode;
1631 attr.ia_valid = ATTR_MODE;
1632
Trond Myklebust1ca42382013-08-21 12:36:04 -04001633 trace_nfs_mknod_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001635 trace_nfs_mknod_exit(dir, dentry, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (status != 0)
1637 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return 0;
1639out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 d_drop(dentry);
1641 return status;
1642}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001643EXPORT_SYMBOL_GPL(nfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645/*
1646 * See comments for nfs_proc_create regarding failed operations.
1647 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001648int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 struct iattr attr;
1651 int error;
1652
Al Viro6de14722013-09-16 10:53:17 -04001653 dfprintk(VFS, "NFS: mkdir(%s/%ld), %pd\n",
1654 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 attr.ia_valid = ATTR_MODE;
1657 attr.ia_mode = mode | S_IFDIR;
1658
Trond Myklebust1ca42382013-08-21 12:36:04 -04001659 trace_nfs_mkdir_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001661 trace_nfs_mkdir_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (error != 0)
1663 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return 0;
1665out_err:
1666 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return error;
1668}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001669EXPORT_SYMBOL_GPL(nfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001671static void nfs_dentry_handle_enoent(struct dentry *dentry)
1672{
1673 if (dentry->d_inode != NULL && !d_unhashed(dentry))
1674 d_delete(dentry);
1675}
1676
Bryan Schumaker597d9282012-07-16 16:39:10 -04001677int nfs_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 int error;
1680
Al Viro6de14722013-09-16 10:53:17 -04001681 dfprintk(VFS, "NFS: rmdir(%s/%ld), %pd\n",
1682 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Trond Myklebust1ca42382013-08-21 12:36:04 -04001684 trace_nfs_rmdir_enter(dir, dentry);
Trond Myklebustba6c0592013-08-30 12:24:25 -04001685 if (dentry->d_inode) {
1686 nfs_wait_on_sillyrename(dentry);
1687 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1688 /* Ensure the VFS deletes this inode */
1689 switch (error) {
1690 case 0:
1691 clear_nlink(dentry->d_inode);
1692 break;
1693 case -ENOENT:
1694 nfs_dentry_handle_enoent(dentry);
1695 }
1696 } else
1697 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001698 trace_nfs_rmdir_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 return error;
1701}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001702EXPORT_SYMBOL_GPL(nfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704/*
1705 * Remove a file after making sure there are no pending writes,
1706 * and after checking that the file has only one user.
1707 *
1708 * We invalidate the attribute cache and free the inode prior to the operation
1709 * to avoid possible races if the server reuses the inode.
1710 */
1711static int nfs_safe_remove(struct dentry *dentry)
1712{
1713 struct inode *dir = dentry->d_parent->d_inode;
1714 struct inode *inode = dentry->d_inode;
1715 int error = -EBUSY;
1716
Al Viro6de14722013-09-16 10:53:17 -04001717 dfprintk(VFS, "NFS: safe_remove(%pd2)\n", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 /* If the dentry was sillyrenamed, we simply call d_delete() */
1720 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1721 error = 0;
1722 goto out;
1723 }
1724
Trond Myklebust1ca42382013-08-21 12:36:04 -04001725 trace_nfs_remove_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (inode != NULL) {
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001727 NFS_PROTO(inode)->return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001730 nfs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 } else
1732 error = NFS_PROTO(dir)->remove(dir, &dentry->d_name);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001733 if (error == -ENOENT)
1734 nfs_dentry_handle_enoent(dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001735 trace_nfs_remove_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736out:
1737 return error;
1738}
1739
1740/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1741 * belongs to an active ".nfs..." file and we return -EBUSY.
1742 *
1743 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1744 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001745int nfs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
1747 int error;
1748 int need_rehash = 0;
1749
Al Viro6de14722013-09-16 10:53:17 -04001750 dfprintk(VFS, "NFS: unlink(%s/%ld, %pd)\n", dir->i_sb->s_id,
1751 dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Trond Myklebust1ca42382013-08-21 12:36:04 -04001753 trace_nfs_unlink_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 spin_lock(&dentry->d_lock);
Al Viro84d08fa2013-07-05 18:59:33 +04001755 if (d_count(dentry) > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 spin_unlock(&dentry->d_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001757 /* Start asynchronous writeout of the inode */
1758 write_inode_now(dentry->d_inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 error = nfs_sillyrename(dir, dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001760 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 if (!d_unhashed(dentry)) {
1763 __d_drop(dentry);
1764 need_rehash = 1;
1765 }
1766 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001768 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1770 } else if (need_rehash)
1771 d_rehash(dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001772out:
1773 trace_nfs_unlink_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return error;
1775}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001776EXPORT_SYMBOL_GPL(nfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Chuck Lever873101b2006-08-22 20:06:23 -04001778/*
1779 * To create a symbolic link, most file systems instantiate a new inode,
1780 * add a page to it containing the path, then write it out to the disk
1781 * using prepare_write/commit_write.
1782 *
1783 * Unfortunately the NFS client can't create the in-core inode first
1784 * because it needs a file handle to create an in-core inode (see
1785 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1786 * symlink request has completed on the server.
1787 *
1788 * So instead we allocate a raw page, copy the symname into it, then do
1789 * the SYMLINK request with the page as the buffer. If it succeeds, we
1790 * now have a new file handle and can instantiate an in-core NFS inode
1791 * and move the raw page into its mapping.
1792 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001793int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Chuck Lever873101b2006-08-22 20:06:23 -04001795 struct page *page;
1796 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04001798 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 int error;
1800
Al Viro6de14722013-09-16 10:53:17 -04001801 dfprintk(VFS, "NFS: symlink(%s/%ld, %pd, %s)\n", dir->i_sb->s_id,
1802 dir->i_ino, dentry, symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Chuck Lever873101b2006-08-22 20:06:23 -04001804 if (pathlen > PAGE_SIZE)
1805 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Chuck Lever873101b2006-08-22 20:06:23 -04001807 attr.ia_mode = S_IFLNK | S_IRWXUGO;
1808 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Jeff Layton83d93f22007-06-07 09:58:08 -04001810 page = alloc_page(GFP_HIGHUSER);
Trond Myklebust76566992008-06-11 15:44:22 -04001811 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04001812 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04001813
Cong Wang2b86ce22011-11-25 23:14:33 +08001814 kaddr = kmap_atomic(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001815 memcpy(kaddr, symname, pathlen);
1816 if (pathlen < PAGE_SIZE)
1817 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
Cong Wang2b86ce22011-11-25 23:14:33 +08001818 kunmap_atomic(kaddr);
Chuck Lever873101b2006-08-22 20:06:23 -04001819
Trond Myklebust1ca42382013-08-21 12:36:04 -04001820 trace_nfs_symlink_enter(dir, dentry);
Chuck Lever94a6d752006-08-22 20:06:23 -04001821 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001822 trace_nfs_symlink_exit(dir, dentry, error);
Chuck Lever873101b2006-08-22 20:06:23 -04001823 if (error != 0) {
Al Viro6de14722013-09-16 10:53:17 -04001824 dfprintk(VFS, "NFS: symlink(%s/%ld, %pd, %s) error %d\n",
Chuck Lever873101b2006-08-22 20:06:23 -04001825 dir->i_sb->s_id, dir->i_ino,
Al Viro6de14722013-09-16 10:53:17 -04001826 dentry, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04001828 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04001829 return error;
1830 }
1831
1832 /*
1833 * No big deal if we can't add this page to the page cache here.
1834 * READLINK will get the missing page from the server if needed.
1835 */
Mel Gormana0b8cab32013-07-03 15:02:32 -07001836 if (!add_to_page_cache_lru(page, dentry->d_inode->i_mapping, 0,
Chuck Lever873101b2006-08-22 20:06:23 -04001837 GFP_KERNEL)) {
Chuck Lever873101b2006-08-22 20:06:23 -04001838 SetPageUptodate(page);
1839 unlock_page(page);
1840 } else
1841 __free_page(page);
1842
Chuck Lever873101b2006-08-22 20:06:23 -04001843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001845EXPORT_SYMBOL_GPL(nfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Bryan Schumaker597d9282012-07-16 16:39:10 -04001847int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1849{
1850 struct inode *inode = old_dentry->d_inode;
1851 int error;
1852
Al Viro6de14722013-09-16 10:53:17 -04001853 dfprintk(VFS, "NFS: link(%pd2 -> %pd2)\n",
1854 old_dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Trond Myklebust1fd10852013-08-21 13:54:44 -04001856 trace_nfs_link_enter(inode, dir, dentry);
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001857 NFS_PROTO(inode)->return_delegation(inode);
Trond Myklebust9a3936a2009-10-26 08:09:46 -04001858
Trond Myklebust9697d232007-10-02 21:58:05 -04001859 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04001861 if (error == 0) {
Al Viro7de9c6ee2010-10-23 11:11:40 -04001862 ihold(inode);
Trond Myklebust9697d232007-10-02 21:58:05 -04001863 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04001864 }
Trond Myklebust1fd10852013-08-21 13:54:44 -04001865 trace_nfs_link_exit(inode, dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return error;
1867}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001868EXPORT_SYMBOL_GPL(nfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870/*
1871 * RENAME
1872 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
1873 * different file handle for the same inode after a rename (e.g. when
1874 * moving to a different directory). A fail-safe method to do so would
1875 * be to look up old_dir/old_name, create a link to new_dir/new_name and
1876 * rename the old file using the sillyrename stuff. This way, the original
1877 * file in old_dir will go away when the last process iput()s the inode.
1878 *
1879 * FIXED.
1880 *
1881 * It actually works quite well. One needs to have the possibility for
1882 * at least one ".nfs..." file in each directory the file ever gets
1883 * moved or linked to which happens automagically with the new
1884 * implementation that only depends on the dcache stuff instead of
1885 * using the inode layer
1886 *
1887 * Unfortunately, things are a little more complicated than indicated
1888 * above. For a cross-directory move, we want to make sure we can get
1889 * rid of the old inode after the operation. This means there must be
1890 * no pending writes (if it's a file), and the use count must be 1.
1891 * If these conditions are met, we can drop the dentries before doing
1892 * the rename.
1893 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001894int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct inode *new_dir, struct dentry *new_dentry)
1896{
1897 struct inode *old_inode = old_dentry->d_inode;
1898 struct inode *new_inode = new_dentry->d_inode;
1899 struct dentry *dentry = NULL, *rehash = NULL;
1900 int error = -EBUSY;
1901
Al Viro6de14722013-09-16 10:53:17 -04001902 dfprintk(VFS, "NFS: rename(%pd2 -> %pd2, ct=%d)\n",
1903 old_dentry, new_dentry,
Al Viro84d08fa2013-07-05 18:59:33 +04001904 d_count(new_dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Trond Myklebust70ded202013-08-21 12:08:45 -04001906 trace_nfs_rename_enter(old_dir, old_dentry, new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05001908 * For non-directories, check whether the target is busy and if so,
1909 * make a copy of the dentry and then do a silly-rename. If the
1910 * silly-rename succeeds, the copied dentry is hashed and becomes
1911 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 */
Miklos Szeredi27226102009-12-03 15:58:56 -05001913 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
1914 /*
1915 * To prevent any new references to the target during the
1916 * rename, we unhash the dentry in advance.
1917 */
1918 if (!d_unhashed(new_dentry)) {
1919 d_drop(new_dentry);
1920 rehash = new_dentry;
1921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Al Viro84d08fa2013-07-05 18:59:33 +04001923 if (d_count(new_dentry) > 2) {
Miklos Szeredi27226102009-12-03 15:58:56 -05001924 int err;
1925
1926 /* copy the target dentry's name */
1927 dentry = d_alloc(new_dentry->d_parent,
1928 &new_dentry->d_name);
1929 if (!dentry)
1930 goto out;
1931
1932 /* silly-rename the existing target ... */
1933 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05001934 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05001935 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001936
1937 new_dentry = dentry;
OGAWA Hirofumi56335932010-01-06 18:48:26 -05001938 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05001939 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05001940 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001943 NFS_PROTO(old_inode)->return_delegation(old_inode);
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001944 if (new_inode != NULL)
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001945 NFS_PROTO(new_inode)->return_delegation(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
1948 new_dir, &new_dentry->d_name);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -05001949 nfs_mark_for_revalidate(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950out:
1951 if (rehash)
1952 d_rehash(rehash);
Trond Myklebust70ded202013-08-21 12:08:45 -04001953 trace_nfs_rename_exit(old_dir, old_dentry,
1954 new_dir, new_dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (!error) {
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04001956 if (new_inode != NULL)
1957 nfs_drop_nlink(new_inode);
Mark Fasheh349457c2006-09-08 14:22:21 -07001958 d_move(old_dentry, new_dentry);
Chuck Lever8fb559f2007-09-24 15:40:16 -04001959 nfs_set_verifier(new_dentry,
1960 nfs_save_change_attribute(new_dir));
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001961 } else if (error == -ENOENT)
1962 nfs_dentry_handle_enoent(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 /* new dentry created? */
1965 if (dentry)
1966 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return error;
1968}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001969EXPORT_SYMBOL_GPL(nfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001971static DEFINE_SPINLOCK(nfs_access_lru_lock);
1972static LIST_HEAD(nfs_access_lru_list);
1973static atomic_long_t nfs_access_nr_entries;
1974
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001975static void nfs_access_free_entry(struct nfs_access_entry *entry)
1976{
1977 put_rpccred(entry->cred);
1978 kfree(entry);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04001979 smp_mb__before_atomic_dec();
1980 atomic_long_dec(&nfs_access_nr_entries);
1981 smp_mb__after_atomic_dec();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04001982}
1983
Trond Myklebust1a81bb82010-05-13 12:51:06 -04001984static void nfs_access_free_list(struct list_head *head)
1985{
1986 struct nfs_access_entry *cache;
1987
1988 while (!list_empty(head)) {
1989 cache = list_entry(head->next, struct nfs_access_entry, lru);
1990 list_del(&cache->lru);
1991 nfs_access_free_entry(cache);
1992 }
1993}
1994
Dave Chinner1ab6c492013-08-28 10:18:09 +10001995unsigned long
1996nfs_access_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
Trond Myklebust979df722006-07-25 11:28:19 -04001997{
1998 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04001999 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04002000 struct nfs_access_entry *cache;
Ying Han1495f232011-05-24 17:12:27 -07002001 int nr_to_scan = sc->nr_to_scan;
2002 gfp_t gfp_mask = sc->gfp_mask;
Dave Chinner1ab6c492013-08-28 10:18:09 +10002003 long freed = 0;
Trond Myklebust979df722006-07-25 11:28:19 -04002004
Trond Myklebust61d5eb22010-05-13 12:51:06 -04002005 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
Dave Chinner1ab6c492013-08-28 10:18:09 +10002006 return SHRINK_STOP;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04002007
Trond Myklebusta50f7952007-06-05 19:23:43 -04002008 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04002009 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04002010 struct inode *inode;
2011
2012 if (nr_to_scan-- == 0)
2013 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04002014 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04002015 spin_lock(&inode->i_lock);
2016 if (list_empty(&nfsi->access_cache_entry_lru))
2017 goto remove_lru_entry;
2018 cache = list_entry(nfsi->access_cache_entry_lru.next,
2019 struct nfs_access_entry, lru);
2020 list_move(&cache->lru, &head);
2021 rb_erase(&cache->rb_node, &nfsi->access_cache);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002022 freed++;
Trond Myklebust979df722006-07-25 11:28:19 -04002023 if (!list_empty(&nfsi->access_cache_entry_lru))
2024 list_move_tail(&nfsi->access_cache_inode_lru,
2025 &nfs_access_lru_list);
2026 else {
2027remove_lru_entry:
2028 list_del_init(&nfsi->access_cache_inode_lru);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04002029 smp_mb__before_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04002030 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04002031 smp_mb__after_clear_bit();
Trond Myklebust979df722006-07-25 11:28:19 -04002032 }
Trond Myklebust59844a92010-05-26 08:42:24 -04002033 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04002034 }
2035 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002036 nfs_access_free_list(&head);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002037 return freed;
2038}
2039
2040unsigned long
2041nfs_access_cache_count(struct shrinker *shrink, struct shrink_control *sc)
2042{
Glauber Costa55f841c2013-08-28 10:17:53 +10002043 return vfs_pressure_ratio(atomic_long_read(&nfs_access_nr_entries));
Trond Myklebust979df722006-07-25 11:28:19 -04002044}
2045
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002046static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002047{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002048 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002049 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002050 struct nfs_access_entry *entry;
2051
2052 /* Unhook entries from the cache */
2053 while ((n = rb_first(root_node)) != NULL) {
2054 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2055 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002056 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002057 }
2058 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002059}
2060
2061void nfs_access_zap_cache(struct inode *inode)
2062{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002063 LIST_HEAD(head);
2064
2065 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
2066 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002067 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002068 spin_lock(&nfs_access_lru_lock);
2069 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002070 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002071
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002072 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002073 __nfs_access_zap_cache(NFS_I(inode), &head);
2074 spin_unlock(&inode->i_lock);
2075 spin_unlock(&nfs_access_lru_lock);
2076 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002077}
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04002078EXPORT_SYMBOL_GPL(nfs_access_zap_cache);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002079
2080static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, struct rpc_cred *cred)
2081{
2082 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
2083 struct nfs_access_entry *entry;
2084
2085 while (n != NULL) {
2086 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2087
2088 if (cred < entry->cred)
2089 n = n->rb_left;
2090 else if (cred > entry->cred)
2091 n = n->rb_right;
2092 else
2093 return entry;
2094 }
2095 return NULL;
2096}
2097
Trond Myklebustaf22f942007-08-10 17:45:10 -04002098static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, struct nfs_access_entry *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Chuck Lever55296802005-08-18 11:24:09 -07002100 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002101 struct nfs_access_entry *cache;
2102 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002104 spin_lock(&inode->i_lock);
2105 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2106 goto out_zap;
2107 cache = nfs_access_search_rbtree(inode, cred);
2108 if (cache == NULL)
2109 goto out;
Trond Myklebustb4d23142010-03-10 15:21:44 -05002110 if (!nfs_have_delegated_attributes(inode) &&
Peter Staubach64672d52008-12-23 15:21:56 -05002111 !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo))
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002112 goto out_stale;
2113 res->jiffies = cache->jiffies;
2114 res->cred = cache->cred;
2115 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002116 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002117 err = 0;
2118out:
2119 spin_unlock(&inode->i_lock);
2120 return err;
2121out_stale:
2122 rb_erase(&cache->rb_node, &nfsi->access_cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002123 list_del(&cache->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002124 spin_unlock(&inode->i_lock);
2125 nfs_access_free_entry(cache);
2126 return -ENOENT;
2127out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002128 spin_unlock(&inode->i_lock);
2129 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002130 return -ENOENT;
2131}
2132
2133static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2134{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002135 struct nfs_inode *nfsi = NFS_I(inode);
2136 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002137 struct rb_node **p = &root_node->rb_node;
2138 struct rb_node *parent = NULL;
2139 struct nfs_access_entry *entry;
2140
2141 spin_lock(&inode->i_lock);
2142 while (*p != NULL) {
2143 parent = *p;
2144 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
2145
2146 if (set->cred < entry->cred)
2147 p = &parent->rb_left;
2148 else if (set->cred > entry->cred)
2149 p = &parent->rb_right;
2150 else
2151 goto found;
2152 }
2153 rb_link_node(&set->rb_node, parent, p);
2154 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002155 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002156 spin_unlock(&inode->i_lock);
2157 return;
2158found:
2159 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002160 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2161 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002162 spin_unlock(&inode->i_lock);
2163 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002166void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002168 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2169 if (cache == NULL)
2170 return;
2171 RB_CLEAR_NODE(&cache->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 cache->jiffies = set->jiffies;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002173 cache->cred = get_rpccred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002175
2176 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002177
2178 /* Update accounting */
2179 smp_mb__before_atomic_inc();
2180 atomic_long_inc(&nfs_access_nr_entries);
2181 smp_mb__after_atomic_inc();
2182
2183 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002184 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002185 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002186 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2187 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2188 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002189 spin_unlock(&nfs_access_lru_lock);
2190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002192EXPORT_SYMBOL_GPL(nfs_access_add_cache);
2193
2194void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result)
2195{
2196 entry->mask = 0;
2197 if (access_result & NFS4_ACCESS_READ)
2198 entry->mask |= MAY_READ;
2199 if (access_result &
2200 (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2201 entry->mask |= MAY_WRITE;
2202 if (access_result & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2203 entry->mask |= MAY_EXEC;
2204}
2205EXPORT_SYMBOL_GPL(nfs_access_set_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207static int nfs_do_access(struct inode *inode, struct rpc_cred *cred, int mask)
2208{
2209 struct nfs_access_entry cache;
2210 int status;
2211
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002212 trace_nfs_access_enter(inode);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 status = nfs_access_get_cached(inode, cred, &cache);
2215 if (status == 0)
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002216 goto out_cached;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 /* Be clever: ask server to check for all possible rights */
2219 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
2220 cache.cred = cred;
2221 cache.jiffies = jiffies;
2222 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002223 if (status != 0) {
2224 if (status == -ESTALE) {
2225 nfs_zap_caches(inode);
2226 if (!S_ISDIR(inode->i_mode))
2227 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2228 }
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002229 goto out;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 nfs_access_add_cache(inode, &cache);
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002232out_cached:
2233 if ((mask & ~cache.mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) != 0)
2234 status = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235out:
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002236 trace_nfs_access_exit(inode, status);
2237 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Trond Myklebustaf22f942007-08-10 17:45:10 -04002240static int nfs_open_permission_mask(int openflags)
2241{
2242 int mask = 0;
2243
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002244 if (openflags & __FMODE_EXEC) {
2245 /* ONLY check exec rights */
2246 mask = MAY_EXEC;
2247 } else {
2248 if ((openflags & O_ACCMODE) != O_WRONLY)
2249 mask |= MAY_READ;
2250 if ((openflags & O_ACCMODE) != O_RDONLY)
2251 mask |= MAY_WRITE;
2252 }
2253
Trond Myklebustaf22f942007-08-10 17:45:10 -04002254 return mask;
2255}
2256
2257int nfs_may_open(struct inode *inode, struct rpc_cred *cred, int openflags)
2258{
2259 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2260}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002261EXPORT_SYMBOL_GPL(nfs_may_open);
Trond Myklebustaf22f942007-08-10 17:45:10 -04002262
Al Viro10556cb2011-06-20 19:28:19 -04002263int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
2265 struct rpc_cred *cred;
2266 int res = 0;
2267
Al Viro10556cb2011-06-20 19:28:19 -04002268 if (mask & MAY_NOT_BLOCK)
Nick Pigginb74c79e2011-01-07 17:49:58 +11002269 return -ECHILD;
2270
Chuck Lever91d5b472006-03-20 13:44:14 -05002271 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2272
Al Viroe6305c42008-07-15 21:03:57 -04002273 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 goto out;
2275 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002276 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 goto force_lookup;
2278
2279 switch (inode->i_mode & S_IFMT) {
2280 case S_IFLNK:
2281 goto out;
2282 case S_IFREG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 break;
2284 case S_IFDIR:
2285 /*
2286 * Optimize away all write operations, since the server
2287 * will check permissions when we perform the op.
2288 */
2289 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2290 goto out;
2291 }
2292
2293force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (!NFS_PROTO(inode)->access)
2295 goto out_notsup;
2296
Trond Myklebust98a8e322008-03-12 12:25:28 -04002297 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (!IS_ERR(cred)) {
2299 res = nfs_do_access(inode, cred, mask);
2300 put_rpccred(cred);
2301 } else
2302 res = PTR_ERR(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303out:
Miklos Szeredif696a362008-07-31 13:41:58 +02002304 if (!res && (mask & MAY_EXEC) && !execute_ok(inode))
2305 res = -EACCES;
2306
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002307 dfprintk(VFS, "NFS: permission(%s/%ld), mask=0x%x, res=%d\n",
2308 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return res;
2310out_notsup:
2311 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2312 if (res == 0)
Al Viro2830ba72011-06-20 19:16:29 -04002313 res = generic_permission(inode, mask);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002314 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04002316EXPORT_SYMBOL_GPL(nfs_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318/*
2319 * Local variables:
2320 * version-control: t
2321 * kept-new-versions: 5
2322 * End:
2323 */