blob: 6b3c547154b3b7076cb046a69bfb1fba4c3a95b2 [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,
Benjamin Coddingtonb044f642017-03-10 17:07:46 -050060 .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
NeilBrown684f39b2018-12-03 11:30:30 +110070static struct nfs_open_dir_context *alloc_nfs_open_dir_context(struct inode *dir, const struct cred *cred)
Bryan Schumaker480c2002011-03-23 14:48:29 -040071{
Trond Myklebust311324a2014-02-07 17:02:08 -050072 struct nfs_inode *nfsi = NFS_I(dir);
Bryan Schumaker480c2002011-03-23 14:48:29 -040073 struct nfs_open_dir_context *ctx;
74 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
75 if (ctx != NULL) {
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040076 ctx->duped = 0;
Trond Myklebust311324a2014-02-07 17:02:08 -050077 ctx->attr_gencount = nfsi->attr_gencount;
Bryan Schumaker480c2002011-03-23 14:48:29 -040078 ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -040079 ctx->dup_cookie = 0;
NeilBrown684f39b2018-12-03 11:30:30 +110080 ctx->cred = get_cred(cred);
Trond Myklebust311324a2014-02-07 17:02:08 -050081 spin_lock(&dir->i_lock);
82 list_add(&ctx->list, &nfsi->open_files);
83 spin_unlock(&dir->i_lock);
Trond Myklebust0c030802011-07-30 12:45:35 -040084 return ctx;
85 }
86 return ERR_PTR(-ENOMEM);
Bryan Schumaker480c2002011-03-23 14:48:29 -040087}
88
Trond Myklebust311324a2014-02-07 17:02:08 -050089static void put_nfs_open_dir_context(struct inode *dir, struct nfs_open_dir_context *ctx)
Bryan Schumaker480c2002011-03-23 14:48:29 -040090{
Trond Myklebust311324a2014-02-07 17:02:08 -050091 spin_lock(&dir->i_lock);
92 list_del(&ctx->list);
93 spin_unlock(&dir->i_lock);
NeilBrown684f39b2018-12-03 11:30:30 +110094 put_cred(ctx->cred);
Bryan Schumaker480c2002011-03-23 14:48:29 -040095 kfree(ctx);
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * Open file
100 */
101static int
102nfs_opendir(struct inode *inode, struct file *filp)
103{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400104 int res = 0;
105 struct nfs_open_dir_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Al Viro6de14722013-09-16 10:53:17 -0400107 dfprintk(FILE, "NFS: open dir(%pD2)\n", filp);
Chuck Levercc0dd2d2008-06-11 17:55:42 -0400108
109 nfs_inc_stats(inode, NFSIOS_VFSOPEN);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500110
NeilBrown684f39b2018-12-03 11:30:30 +1100111 ctx = alloc_nfs_open_dir_context(inode, current_cred());
Bryan Schumaker480c2002011-03-23 14:48:29 -0400112 if (IS_ERR(ctx)) {
113 res = PTR_ERR(ctx);
114 goto out;
115 }
116 filp->private_data = ctx;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400117out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return res;
119}
120
Bryan Schumaker480c2002011-03-23 14:48:29 -0400121static int
122nfs_closedir(struct inode *inode, struct file *filp)
123{
Al Viroa4555892014-10-21 20:11:25 -0400124 put_nfs_open_dir_context(file_inode(filp), filp->private_data);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400125 return 0;
126}
127
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400128struct nfs_cache_array_entry {
129 u64 cookie;
130 u64 ino;
131 struct qstr string;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500132 unsigned char d_type;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400133};
134
135struct nfs_cache_array {
Chuck Lever88b8e132012-03-01 17:00:23 -0500136 int size;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400137 int eof_index;
138 u64 last_cookie;
139 struct nfs_cache_array_entry array[0];
140};
141
luanshibe4c2d42019-01-29 15:34:17 +0800142struct readdirvec {
143 unsigned long nr;
144 unsigned long index;
145 struct page *pages[NFS_MAX_READDIR_RAPAGES];
146};
147
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400148typedef int (*decode_dirent_t)(struct xdr_stream *, struct nfs_entry *, bool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149typedef struct {
150 struct file *file;
151 struct page *page;
Al Viro23db8622013-05-17 16:34:50 -0400152 struct dir_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned long page_index;
luanshibe4c2d42019-01-29 15:34:17 +0800154 struct readdirvec pvec;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000155 u64 *dir_cookie;
Trond Myklebust0aded702010-11-30 21:56:32 -0500156 u64 last_cookie;
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000157 loff_t current_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 decode_dirent_t decode;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400159
Neil Brown1f4eab72007-04-16 09:35:27 +1000160 unsigned long timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400161 unsigned long gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400162 unsigned int cache_entry_index;
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400163 bool plus;
164 bool eof;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165} nfs_readdir_descriptor_t;
166
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400167/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400168 * we are freeing strings created by nfs_add_to_readdir_array()
169 */
170static
Trond Myklebust11de3b12010-12-01 14:17:06 -0500171void nfs_readdir_clear_array(struct page *page)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400172{
Trond Myklebust11de3b12010-12-01 14:17:06 -0500173 struct nfs_cache_array *array;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400174 int i;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500175
Cong Wang2b86ce22011-11-25 23:14:33 +0800176 array = kmap_atomic(page);
Benjamin Coddingtonb044f642017-03-10 17:07:46 -0500177 for (i = 0; i < array->size; i++)
178 kfree(array->array[i].string.name);
Cong Wang2b86ce22011-11-25 23:14:33 +0800179 kunmap_atomic(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400180}
181
182/*
183 * the caller is responsible for freeing qstr.name
184 * when called by nfs_readdir_add_to_array, the strings will be freed in
185 * nfs_clear_readdir_array()
186 */
187static
Trond Myklebust4a201d62010-10-23 14:53:23 -0400188int nfs_readdir_make_qstr(struct qstr *string, const char *name, unsigned int len)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400189{
190 string->len = len;
191 string->name = kmemdup(name, len, GFP_KERNEL);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400192 if (string->name == NULL)
193 return -ENOMEM;
Catalin Marinas04e4bd12010-11-11 12:53:47 +0000194 /*
195 * Avoid a kmemleak false positive. The pointer to the name is stored
196 * in a page cache page which kmemleak does not scan.
197 */
198 kmemleak_not_leak(string->name);
Linus Torvalds8387ff22016-06-10 07:51:30 -0700199 string->hash = full_name_hash(NULL, name, len);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400200 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400201}
202
203static
204int nfs_readdir_add_to_array(struct nfs_entry *entry, struct page *page)
205{
Fabian Frederick0795bf82017-05-03 20:52:21 +0200206 struct nfs_cache_array *array = kmap(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400207 struct nfs_cache_array_entry *cache_entry;
208 int ret;
209
Trond Myklebust4a201d62010-10-23 14:53:23 -0400210 cache_entry = &array->array[array->size];
Trond Myklebust30200932010-11-20 15:18:22 -0500211
212 /* Check that this entry lies within the page bounds */
213 ret = -ENOSPC;
214 if ((char *)&cache_entry[1] - (char *)page_address(page) > PAGE_SIZE)
215 goto out;
216
Trond Myklebust4a201d62010-10-23 14:53:23 -0400217 cache_entry->cookie = entry->prev_cookie;
218 cache_entry->ino = entry->ino;
Trond Myklebust0b26a0b2010-11-20 14:26:44 -0500219 cache_entry->d_type = entry->d_type;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400220 ret = nfs_readdir_make_qstr(&cache_entry->string, entry->name, entry->len);
221 if (ret)
222 goto out;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400223 array->last_cookie = entry->cookie;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500224 array->size++;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500225 if (entry->eof != 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400226 array->eof_index = array->size;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400227out:
Fabian Frederick0795bf82017-05-03 20:52:21 +0200228 kunmap(page);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400229 return ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400230}
231
232static
233int nfs_readdir_search_for_pos(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
234{
Al Viro23db8622013-05-17 16:34:50 -0400235 loff_t diff = desc->ctx->pos - desc->current_index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400236 unsigned int index;
237
238 if (diff < 0)
239 goto out_eof;
240 if (diff >= array->size) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500241 if (array->eof_index >= 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400242 goto out_eof;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400243 return -EAGAIN;
244 }
245
246 index = (unsigned int)diff;
247 *desc->dir_cookie = array->array[index].cookie;
248 desc->cache_entry_index = index;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400249 return 0;
250out_eof:
Thomas Meyer6089dd02017-10-07 16:02:21 +0200251 desc->eof = true;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400252 return -EBADCOOKIE;
253}
254
Jeff Layton4db72b42014-01-28 13:47:46 -0500255static bool
256nfs_readdir_inode_mapping_valid(struct nfs_inode *nfsi)
257{
258 if (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))
259 return false;
260 smp_rmb();
261 return !test_bit(NFS_INO_INVALIDATING, &nfsi->flags);
262}
263
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400264static
265int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_descriptor_t *desc)
266{
267 int i;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400268 loff_t new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400269 int status = -EAGAIN;
270
271 for (i = 0; i < array->size; i++) {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400272 if (array->array[i].cookie == *desc->dir_cookie) {
Al Viro496ad9a2013-01-23 17:07:38 -0500273 struct nfs_inode *nfsi = NFS_I(file_inode(desc->file));
Trond Myklebust0c030802011-07-30 12:45:35 -0400274 struct nfs_open_dir_context *ctx = desc->file->private_data;
275
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400276 new_pos = desc->current_index + i;
Jeff Layton4db72b42014-01-28 13:47:46 -0500277 if (ctx->attr_gencount != nfsi->attr_gencount ||
278 !nfs_readdir_inode_mapping_valid(nfsi)) {
Trond Myklebust0c030802011-07-30 12:45:35 -0400279 ctx->duped = 0;
280 ctx->attr_gencount = nfsi->attr_gencount;
Al Viro23db8622013-05-17 16:34:50 -0400281 } else if (new_pos < desc->ctx->pos) {
Trond Myklebust0c030802011-07-30 12:45:35 -0400282 if (ctx->duped > 0
283 && ctx->dup_cookie == *desc->dir_cookie) {
284 if (printk_ratelimit()) {
Al Viro6de14722013-09-16 10:53:17 -0400285 pr_notice("NFS: directory %pD2 contains a readdir loop."
Trond Myklebust0c030802011-07-30 12:45:35 -0400286 "Please contact your server vendor. "
Jeff Layton9581a4a2014-04-05 08:45:57 -0400287 "The file: %.*s has duplicate cookie %llu\n",
288 desc->file, array->array[i].string.len,
289 array->array[i].string.name, *desc->dir_cookie);
Trond Myklebust0c030802011-07-30 12:45:35 -0400290 }
291 status = -ELOOP;
292 goto out;
293 }
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400294 ctx->dup_cookie = *desc->dir_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400295 ctx->duped = -1;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400296 }
Al Viro23db8622013-05-17 16:34:50 -0400297 desc->ctx->pos = new_pos;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400298 desc->cache_entry_index = i;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500299 return 0;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400300 }
301 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500302 if (array->eof_index >= 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500303 status = -EBADCOOKIE;
Trond Myklebust18fb5fe2010-12-07 12:41:58 -0500304 if (*desc->dir_cookie == array->last_cookie)
Thomas Meyer6089dd02017-10-07 16:02:21 +0200305 desc->eof = true;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500306 }
Trond Myklebust0c030802011-07-30 12:45:35 -0400307out:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400308 return status;
309}
310
311static
312int nfs_readdir_search_array(nfs_readdir_descriptor_t *desc)
313{
314 struct nfs_cache_array *array;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500315 int status;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400316
Fabian Frederick0795bf82017-05-03 20:52:21 +0200317 array = kmap(desc->page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400318
319 if (*desc->dir_cookie == 0)
320 status = nfs_readdir_search_for_pos(array, desc);
321 else
322 status = nfs_readdir_search_for_cookie(array, desc);
323
Trond Myklebust47c716c2010-12-07 12:44:56 -0500324 if (status == -EAGAIN) {
Trond Myklebust0aded702010-11-30 21:56:32 -0500325 desc->last_cookie = array->last_cookie;
Trond Myklebuste47c0852011-03-23 08:43:09 -0400326 desc->current_index += array->size;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500327 desc->page_index++;
328 }
Fabian Frederick0795bf82017-05-03 20:52:21 +0200329 kunmap(desc->page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400330 return status;
331}
332
333/* Fill a page with xdr information before transferring to the cache page */
334static
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400335int nfs_readdir_xdr_filler(struct page **pages, nfs_readdir_descriptor_t *desc,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400336 struct nfs_entry *entry, struct file *file, struct inode *inode)
337{
Bryan Schumaker480c2002011-03-23 14:48:29 -0400338 struct nfs_open_dir_context *ctx = file->private_data;
NeilBrown684f39b2018-12-03 11:30:30 +1100339 const struct cred *cred = ctx->cred;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400340 unsigned long timestamp, gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int error;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 again:
344 timestamp = jiffies;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400345 gencount = nfs_inc_attr_generation_counter();
Miklos Szeredibe62a1a2016-03-26 16:14:39 -0400346 error = NFS_PROTO(inode)->readdir(file_dentry(file), cred, entry->cookie, pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 NFS_SERVER(inode)->dtsize, desc->plus);
348 if (error < 0) {
349 /* We requested READDIRPLUS, but the server doesn't grok it */
350 if (error == -ENOTSUPP && desc->plus) {
351 NFS_SERVER(inode)->caps &= ~NFS_CAP_READDIRPLUS;
Benny Halevy3a10c302008-01-23 08:58:59 +0200352 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400353 desc->plus = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto again;
355 }
356 goto error;
357 }
Neil Brown1f4eab72007-04-16 09:35:27 +1000358 desc->timestamp = timestamp;
Trond Myklebust4704f0e2008-10-14 19:16:07 -0400359 desc->gencount = gencount;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400360error:
361 return error;
362}
363
Chuck Lever573c4e12010-12-14 14:58:11 +0000364static int xdr_decode(nfs_readdir_descriptor_t *desc,
365 struct nfs_entry *entry, struct xdr_stream *xdr)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400366{
Chuck Lever573c4e12010-12-14 14:58:11 +0000367 int error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400368
Chuck Lever573c4e12010-12-14 14:58:11 +0000369 error = desc->decode(xdr, entry, desc->plus);
370 if (error)
371 return error;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400372 entry->fattr->time_start = desc->timestamp;
373 entry->fattr->gencount = desc->gencount;
374 return 0;
375}
376
Trond Myklebustfa923362015-02-23 18:51:32 -0500377/* Match file and dirent using either filehandle or fileid
378 * Note: caller is responsible for checking the fsid
379 */
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400380static
381int nfs_same_file(struct dentry *dentry, struct nfs_entry *entry)
382{
Trond Myklebustd8fdb472016-06-17 16:48:27 -0400383 struct inode *inode;
Trond Myklebustfa923362015-02-23 18:51:32 -0500384 struct nfs_inode *nfsi;
385
David Howells2b0143b2015-03-17 22:25:59 +0000386 if (d_really_is_negative(dentry))
387 return 0;
Trond Myklebustfa923362015-02-23 18:51:32 -0500388
Trond Myklebustd8fdb472016-06-17 16:48:27 -0400389 inode = d_inode(dentry);
390 if (is_bad_inode(inode) || NFS_STALE(inode))
391 return 0;
392
393 nfsi = NFS_I(inode);
Trond Myklebust7dc72d52016-09-22 13:38:52 -0400394 if (entry->fattr->fileid != nfsi->fileid)
395 return 0;
396 if (entry->fh->size && nfs_compare_fh(entry->fh, &nfsi->fh) != 0)
397 return 0;
398 return 1;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400399}
400
401static
Al Viro23db8622013-05-17 16:34:50 -0400402bool nfs_use_readdirplus(struct inode *dir, struct dir_context *ctx)
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400403{
404 if (!nfs_server_capable(dir, NFS_CAP_READDIRPLUS))
405 return false;
406 if (test_and_clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(dir)->flags))
407 return true;
Al Viro23db8622013-05-17 16:34:50 -0400408 if (ctx->pos == 0)
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400409 return true;
410 return false;
411}
412
413/*
Trond Myklebust63519fb2016-11-19 11:21:54 -0500414 * This function is called by the lookup and getattr code to request the
415 * use of readdirplus to accelerate any future lookups in the same
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400416 * directory.
417 */
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400418void nfs_advise_use_readdirplus(struct inode *dir)
419{
Trond Myklebust63519fb2016-11-19 11:21:54 -0500420 struct nfs_inode *nfsi = NFS_I(dir);
421
422 if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) &&
423 !list_empty(&nfsi->open_files))
424 set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags);
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400425}
426
Trond Myklebust311324a2014-02-07 17:02:08 -0500427/*
428 * This function is mainly for use by nfs_getattr().
429 *
430 * If this is an 'ls -l', we want to force use of readdirplus.
431 * Do this by checking if there is an active file descriptor
432 * and calling nfs_advise_use_readdirplus, then forcing a
433 * cache flush.
434 */
435void nfs_force_use_readdirplus(struct inode *dir)
436{
Trond Myklebust63519fb2016-11-19 11:21:54 -0500437 struct nfs_inode *nfsi = NFS_I(dir);
438
439 if (nfs_server_capable(dir, NFS_CAP_READDIRPLUS) &&
440 !list_empty(&nfsi->open_files)) {
441 set_bit(NFS_INO_ADVISE_RDPLUS, &nfsi->flags);
Trond Myklebust79f687a32016-11-19 10:54:55 -0500442 invalidate_mapping_pages(dir->i_mapping, 0, -1);
Trond Myklebust311324a2014-02-07 17:02:08 -0500443 }
444}
445
Trond Myklebustd69ee9b2012-05-01 17:37:59 -0400446static
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400447void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
448{
Linus Torvalds26fe5752012-05-10 13:14:12 -0700449 struct qstr filename = QSTR_INIT(entry->name, entry->len);
Al Viro9ac3d3e2016-04-28 19:52:56 -0400450 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Trond Myklebust4a201d62010-10-23 14:53:23 -0400451 struct dentry *dentry;
452 struct dentry *alias;
David Howells2b0143b2015-03-17 22:25:59 +0000453 struct inode *dir = d_inode(parent);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400454 struct inode *inode;
David Quigleyaa9c2662013-05-22 12:50:44 -0400455 int status;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400456
Trond Myklebustfa923362015-02-23 18:51:32 -0500457 if (!(entry->fattr->valid & NFS_ATTR_FATTR_FILEID))
458 return;
Trond Myklebust6c441c22015-02-22 16:35:36 -0500459 if (!(entry->fattr->valid & NFS_ATTR_FATTR_FSID))
460 return;
Trond Myklebust78d04af2016-09-20 14:34:24 -0400461 if (filename.len == 0)
462 return;
463 /* Validate that the name doesn't contain any illegal '\0' */
464 if (strnlen(filename.name, filename.len) != filename.len)
465 return;
466 /* ...or '/' */
467 if (strnchr(filename.name, filename.len, '/'))
468 return;
Trond Myklebust4a201d62010-10-23 14:53:23 -0400469 if (filename.name[0] == '.') {
470 if (filename.len == 1)
471 return;
472 if (filename.len == 2 && filename.name[1] == '.')
473 return;
474 }
Linus Torvalds8387ff22016-06-10 07:51:30 -0700475 filename.hash = full_name_hash(parent, filename.name, filename.len);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400476
Trond Myklebust4a201d62010-10-23 14:53:23 -0400477 dentry = d_lookup(parent, &filename);
Al Viro9ac3d3e2016-04-28 19:52:56 -0400478again:
479 if (!dentry) {
480 dentry = d_alloc_parallel(parent, &filename, &wq);
481 if (IS_ERR(dentry))
482 return;
483 }
484 if (!d_in_lookup(dentry)) {
Trond Myklebust6c441c22015-02-22 16:35:36 -0500485 /* Is there a mountpoint here? If so, just exit */
486 if (!nfs_fsid_equal(&NFS_SB(dentry->d_sb)->fsid,
487 &entry->fattr->fsid))
488 goto out;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400489 if (nfs_same_file(dentry, entry)) {
Trond Myklebust7dc72d52016-09-22 13:38:52 -0400490 if (!entry->fh->size)
491 goto out;
Jeff Laytoncda57a12013-07-04 06:35:23 -0400492 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
David Howells2b0143b2015-03-17 22:25:59 +0000493 status = nfs_refresh_inode(d_inode(dentry), entry->fattr);
David Quigleyaa9c2662013-05-22 12:50:44 -0400494 if (!status)
David Howells2b0143b2015-03-17 22:25:59 +0000495 nfs_setsecurity(d_inode(dentry), entry->fattr, entry->label);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400496 goto out;
497 } else {
Eric W. Biederman5542aa22014-02-13 09:46:25 -0800498 d_invalidate(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400499 dput(dentry);
Al Viro9ac3d3e2016-04-28 19:52:56 -0400500 dentry = NULL;
501 goto again;
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400502 }
503 }
Trond Myklebust7dc72d52016-09-22 13:38:52 -0400504 if (!entry->fh->size) {
505 d_lookup_done(dentry);
506 goto out;
507 }
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400508
David Quigley1775fd32013-05-22 12:50:42 -0400509 inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr, entry->label);
Al Viro41d28bc2014-10-12 22:24:21 -0400510 alias = d_splice_alias(inode, dentry);
Al Viro9ac3d3e2016-04-28 19:52:56 -0400511 d_lookup_done(dentry);
512 if (alias) {
513 if (IS_ERR(alias))
514 goto out;
515 dput(dentry);
516 dentry = alias;
517 }
518 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400519out:
520 dput(dentry);
Bryan Schumakerd39ab9d2010-09-24 18:50:01 -0400521}
522
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400523/* Perform conversion from xdr to cache array */
524static
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500525int nfs_readdir_page_filler(nfs_readdir_descriptor_t *desc, struct nfs_entry *entry,
Trond Myklebust66502392011-01-08 17:45:38 -0500526 struct page **xdr_pages, struct page *page, unsigned int buflen)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400527{
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400528 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400529 struct xdr_buf buf;
Trond Myklebust66502392011-01-08 17:45:38 -0500530 struct page *scratch;
Bryan Schumaker99424382010-10-21 16:33:16 -0400531 struct nfs_cache_array *array;
Trond Myklebust5c346852010-11-20 12:43:45 -0500532 unsigned int count = 0;
533 int status;
luanshibe4c2d42019-01-29 15:34:17 +0800534 int max_rapages = NFS_MAX_READDIR_RAPAGES;
535
536 desc->pvec.index = desc->page_index;
537 desc->pvec.nr = 0;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400538
Trond Myklebust66502392011-01-08 17:45:38 -0500539 scratch = alloc_page(GFP_KERNEL);
540 if (scratch == NULL)
541 return -ENOMEM;
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400542
Benjamin Coddingtonce85cfb2015-04-21 14:17:35 -0400543 if (buflen == 0)
544 goto out_nopages;
545
Benny Halevyf7da7a12011-05-19 14:16:47 -0400546 xdr_init_decode_pages(&stream, &buf, xdr_pages, buflen);
Trond Myklebust66502392011-01-08 17:45:38 -0500547 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
Bryan Schumaker99424382010-10-21 16:33:16 -0400548
549 do {
550 status = xdr_decode(desc, entry, &stream);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500551 if (status != 0) {
552 if (status == -EAGAIN)
553 status = 0;
Bryan Schumaker99424382010-10-21 16:33:16 -0400554 break;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500555 }
Bryan Schumaker99424382010-10-21 16:33:16 -0400556
Trond Myklebust5c346852010-11-20 12:43:45 -0500557 count++;
558
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400559 if (desc->plus)
Miklos Szeredibe62a1a2016-03-26 16:14:39 -0400560 nfs_prime_dcache(file_dentry(desc->file), entry);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500561
luanshibe4c2d42019-01-29 15:34:17 +0800562 status = nfs_readdir_add_to_array(entry, desc->pvec.pages[desc->pvec.nr]);
563 if (status == -ENOSPC) {
564 desc->pvec.nr++;
565 if (desc->pvec.nr == max_rapages)
566 break;
567 status = nfs_readdir_add_to_array(entry, desc->pvec.pages[desc->pvec.nr]);
568 }
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500569 if (status != 0)
570 break;
Bryan Schumaker99424382010-10-21 16:33:16 -0400571 } while (!entry->eof);
572
luanshibe4c2d42019-01-29 15:34:17 +0800573 /*
574 * page and desc->pvec.pages[0] are valid, don't need to check
575 * whether or not to be NULL.
576 */
577 copy_highpage(page, desc->pvec.pages[0]);
578
Benjamin Coddingtonce85cfb2015-04-21 14:17:35 -0400579out_nopages:
Trond Myklebust47c716c2010-12-07 12:44:56 -0500580 if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) {
luanshibe4c2d42019-01-29 15:34:17 +0800581 array = kmap_atomic(desc->pvec.pages[desc->pvec.nr]);
Fabian Frederick0795bf82017-05-03 20:52:21 +0200582 array->eof_index = array->size;
583 status = 0;
luanshibe4c2d42019-01-29 15:34:17 +0800584 kunmap_atomic(array);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400585 }
Trond Myklebust66502392011-01-08 17:45:38 -0500586
587 put_page(scratch);
luanshibe4c2d42019-01-29 15:34:17 +0800588
589 /*
590 * desc->pvec.nr > 0 means at least one page was completely filled,
591 * we should return -ENOSPC. Otherwise function
592 * nfs_readdir_xdr_to_array will enter infinite loop.
593 */
594 if (desc->pvec.nr > 0)
595 return -ENOSPC;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500596 return status;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400597}
598
599static
Anna Schumakerc7e96682015-07-13 14:01:25 -0400600void nfs_readdir_free_pages(struct page **pages, unsigned int npages)
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400601{
602 unsigned int i;
603 for (i = 0; i < npages; i++)
604 put_page(pages[i]);
605}
606
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400607/*
608 * nfs_readdir_large_page will allocate pages that must be freed with a call
Anna Schumaker0b936e32015-07-13 14:01:24 -0400609 * to nfs_readdir_free_pagearray
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400610 */
611static
Anna Schumakerc7e96682015-07-13 14:01:25 -0400612int nfs_readdir_alloc_pages(struct page **pages, unsigned int npages)
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400613{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400614 unsigned int i;
615
616 for (i = 0; i < npages; i++) {
617 struct page *page = alloc_page(GFP_KERNEL);
618 if (page == NULL)
619 goto out_freepages;
620 pages[i] = page;
621 }
Trond Myklebust66502392011-01-08 17:45:38 -0500622 return 0;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400623
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400624out_freepages:
Anna Schumakerc7e96682015-07-13 14:01:25 -0400625 nfs_readdir_free_pages(pages, i);
Trond Myklebust66502392011-01-08 17:45:38 -0500626 return -ENOMEM;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400627}
628
luanshibe4c2d42019-01-29 15:34:17 +0800629/*
630 * nfs_readdir_rapages_init initialize rapages by nfs_cache_array structure.
631 */
632static
633void nfs_readdir_rapages_init(nfs_readdir_descriptor_t *desc)
634{
635 struct nfs_cache_array *array;
636 int max_rapages = NFS_MAX_READDIR_RAPAGES;
637 int index;
638
639 for (index = 0; index < max_rapages; index++) {
640 array = kmap_atomic(desc->pvec.pages[index]);
641 memset(array, 0, sizeof(struct nfs_cache_array));
642 array->eof_index = -1;
643 kunmap_atomic(array);
644 }
645}
646
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400647static
648int nfs_readdir_xdr_to_array(nfs_readdir_descriptor_t *desc, struct page *page, struct inode *inode)
649{
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400650 struct page *pages[NFS_MAX_READDIR_PAGES];
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400651 struct nfs_entry entry;
652 struct file *file = desc->file;
653 struct nfs_cache_array *array;
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500654 int status = -ENOMEM;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400655 unsigned int array_size = ARRAY_SIZE(pages);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400656
luanshibe4c2d42019-01-29 15:34:17 +0800657 /*
658 * This means we hit readdir rdpages miss, the preallocated rdpages
659 * are useless, the preallocate rdpages should be reinitialized.
660 */
661 nfs_readdir_rapages_init(desc);
662
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400663 entry.prev_cookie = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500664 entry.cookie = desc->last_cookie;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400665 entry.eof = 0;
666 entry.fh = nfs_alloc_fhandle();
667 entry.fattr = nfs_alloc_fattr();
Chuck Lever573c4e12010-12-14 14:58:11 +0000668 entry.server = NFS_SERVER(inode);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400669 if (entry.fh == NULL || entry.fattr == NULL)
670 goto out;
671
David Quigley14c43f72013-05-22 12:50:43 -0400672 entry.label = nfs4_label_alloc(NFS_SERVER(inode), GFP_NOWAIT);
673 if (IS_ERR(entry.label)) {
674 status = PTR_ERR(entry.label);
675 goto out;
676 }
677
Fabian Frederick0795bf82017-05-03 20:52:21 +0200678 array = kmap(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400679 memset(array, 0, sizeof(struct nfs_cache_array));
680 array->eof_index = -1;
681
Anna Schumakerc7e96682015-07-13 14:01:25 -0400682 status = nfs_readdir_alloc_pages(pages, array_size);
Trond Myklebust66502392011-01-08 17:45:38 -0500683 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400684 goto out_release_array;
685 do {
Trond Myklebustac396122010-11-15 20:26:22 -0500686 unsigned int pglen;
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400687 status = nfs_readdir_xdr_filler(pages, desc, &entry, file, inode);
Bryan Schumakerbabddc72010-10-20 15:44:29 -0400688
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400689 if (status < 0)
690 break;
Trond Myklebustac396122010-11-15 20:26:22 -0500691 pglen = status;
Trond Myklebust66502392011-01-08 17:45:38 -0500692 status = nfs_readdir_page_filler(desc, &entry, pages, page, pglen);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500693 if (status < 0) {
694 if (status == -ENOSPC)
695 status = 0;
696 break;
697 }
698 } while (array->eof_index < 0);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400699
Anna Schumakerc7e96682015-07-13 14:01:25 -0400700 nfs_readdir_free_pages(pages, array_size);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400701out_release_array:
Fabian Frederick0795bf82017-05-03 20:52:21 +0200702 kunmap(page);
David Quigley14c43f72013-05-22 12:50:43 -0400703 nfs4_label_free(entry.label);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400704out:
705 nfs_free_fattr(entry.fattr);
706 nfs_free_fhandle(entry.fh);
707 return status;
708}
709
710/*
711 * Now we cache directories properly, by converting xdr information
712 * to an array that can be used for lookups later. This results in
713 * fewer cache pages, since we can store more information on each page.
714 * We only need to convert from xdr once so future lookups are much simpler
715 */
716static
717int nfs_readdir_filler(nfs_readdir_descriptor_t *desc, struct page* page)
718{
Al Viro496ad9a2013-01-23 17:07:38 -0500719 struct inode *inode = file_inode(desc->file);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500720 int ret;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400721
luanshibe4c2d42019-01-29 15:34:17 +0800722 /*
723 * If desc->page_index in range desc->pvec.index and
724 * desc->pvec.index + desc->pvec.nr, we get readdir cache hit.
725 */
726 if (desc->page_index >= desc->pvec.index &&
727 desc->page_index < (desc->pvec.index + desc->pvec.nr)) {
728 /*
729 * page and desc->pvec.pages[x] are valid, don't need to check
730 * whether or not to be NULL.
731 */
732 copy_highpage(page, desc->pvec.pages[desc->page_index - desc->pvec.index]);
733 ret = 0;
734 } else {
735 ret = nfs_readdir_xdr_to_array(desc, page, inode);
736 if (ret < 0)
737 goto error;
738 }
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 SetPageUptodate(page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400741
Trond Myklebust2aac05a2008-07-07 13:26:10 -0400742 if (invalidate_inode_pages2_range(inode->i_mapping, page->index + 1, -1) < 0) {
Trond Myklebustcd9ae2b2006-10-19 23:28:40 -0700743 /* Should never happen */
744 nfs_zap_mapping(inode, inode->i_mapping);
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 unlock_page(page);
747 return 0;
748 error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 unlock_page(page);
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500750 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400753static
754void cache_page_release(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Benjamin Coddingtonb044f642017-03-10 17:07:46 -0500756 if (!desc->page->mapping)
757 nfs_readdir_clear_array(desc->page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300758 put_page(desc->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 desc->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400762static
763struct page *get_cache_page(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Benjamin Coddingtonb044f642017-03-10 17:07:46 -0500765 return read_cache_page(desc->file->f_mapping,
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400766 desc->page_index, (filler_t *)nfs_readdir_filler, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769/*
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400770 * Returns 0 if desc->dir_cookie was found on page desc->page_index
Olivier Galibert00a92642005-06-22 17:16:29 +0000771 */
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400772static
773int find_cache_page(nfs_readdir_descriptor_t *desc)
Olivier Galibert00a92642005-06-22 17:16:29 +0000774{
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400775 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000776
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400777 desc->page = get_cache_page(desc);
778 if (IS_ERR(desc->page))
779 return PTR_ERR(desc->page);
Olivier Galibert00a92642005-06-22 17:16:29 +0000780
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400781 res = nfs_readdir_search_array(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500782 if (res != 0)
783 cache_page_release(desc);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400784 return res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000785}
786
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400787/* Search for desc->dir_cookie from the beginning of the page cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788static inline
789int readdir_search_pagecache(nfs_readdir_descriptor_t *desc)
790{
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500791 int res;
Olivier Galibert00a92642005-06-22 17:16:29 +0000792
Trond Myklebust0aded702010-11-30 21:56:32 -0500793 if (desc->page_index == 0) {
Trond Myklebust8cd51a02010-11-15 20:26:22 -0500794 desc->current_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500795 desc->last_cookie = 0;
796 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500797 do {
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400798 res = find_cache_page(desc);
Trond Myklebust47c716c2010-12-07 12:44:56 -0500799 } while (res == -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return res;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * Once we've found the start of the dirent within a page: fill 'er up...
805 */
806static
Al Viro23db8622013-05-17 16:34:50 -0400807int nfs_do_filldir(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 struct file *file = desc->file;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400810 int i = 0;
811 int res = 0;
812 struct nfs_cache_array *array = NULL;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -0400813 struct nfs_open_dir_context *ctx = file->private_data;
814
Fabian Frederick0795bf82017-05-03 20:52:21 +0200815 array = kmap(desc->page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400816 for (i = desc->cache_entry_index; i < array->size; i++) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500817 struct nfs_cache_array_entry *ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Trond Myklebustece0b422010-11-20 13:55:33 -0500819 ent = &array->array[i];
Al Viro23db8622013-05-17 16:34:50 -0400820 if (!dir_emit(desc->ctx, ent->string.name, ent->string.len,
821 nfs_compat_user_ino64(ent->ino), ent->d_type)) {
Thomas Meyer6089dd02017-10-07 16:02:21 +0200822 desc->eof = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
Trond Myklebustece0b422010-11-20 13:55:33 -0500824 }
Al Viro23db8622013-05-17 16:34:50 -0400825 desc->ctx->pos++;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400826 if (i < (array->size-1))
827 *desc->dir_cookie = array->array[i+1].cookie;
828 else
829 *desc->dir_cookie = array->last_cookie;
Trond Myklebust0c030802011-07-30 12:45:35 -0400830 if (ctx->duped != 0)
831 ctx->duped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Trond Myklebust47c716c2010-12-07 12:44:56 -0500833 if (array->eof_index >= 0)
Thomas Meyer6089dd02017-10-07 16:02:21 +0200834 desc->eof = true;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400835
Fabian Frederick0795bf82017-05-03 20:52:21 +0200836 kunmap(desc->page);
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400837 cache_page_release(desc);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500838 dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
839 (unsigned long long)*desc->dir_cookie, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return res;
841}
842
843/*
844 * If we cannot find a cookie in our cache, we suspect that this is
845 * because it points to a deleted file, so we ask the server to return
846 * whatever it thinks is the next entry. We then feed this to filldir.
847 * If all goes well, we should then be able to find our way round the
848 * cache on the next call to readdir_search_pagecache();
849 *
850 * NOTE: we cannot add the anonymous page to the pagecache because
851 * the data it contains might not be page aligned. Besides,
852 * we should already have a complete representation of the
853 * directory in the page cache by the time we get here.
854 */
855static inline
Al Viro23db8622013-05-17 16:34:50 -0400856int uncached_readdir(nfs_readdir_descriptor_t *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 struct page *page = NULL;
859 int status;
Al Viro496ad9a2013-01-23 17:07:38 -0500860 struct inode *inode = file_inode(desc->file);
Trond Myklebust0c030802011-07-30 12:45:35 -0400861 struct nfs_open_dir_context *ctx = desc->file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500863 dfprintk(DIRCACHE, "NFS: uncached_readdir() searching for cookie %Lu\n",
864 (unsigned long long)*desc->dir_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 page = alloc_page(GFP_HIGHUSER);
867 if (!page) {
868 status = -ENOMEM;
869 goto out;
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500872 desc->page_index = 0;
Trond Myklebust0aded702010-11-30 21:56:32 -0500873 desc->last_cookie = *desc->dir_cookie;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500874 desc->page = page;
Trond Myklebust0c030802011-07-30 12:45:35 -0400875 ctx->duped = 0;
Trond Myklebust7a8e1dc2010-11-20 13:24:46 -0500876
Trond Myklebust85f86072010-11-20 13:24:49 -0500877 status = nfs_readdir_xdr_to_array(desc, page, inode);
878 if (status < 0)
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400879 goto out_release;
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400880
Al Viro23db8622013-05-17 16:34:50 -0400881 status = nfs_do_filldir(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 out:
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500884 dfprintk(DIRCACHE, "NFS: %s: returns %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700885 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return status;
887 out_release:
Bryan Schumakerd1bacf92010-09-24 14:48:42 -0400888 cache_page_release(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 goto out;
890}
891
Olivier Galibert00a92642005-06-22 17:16:29 +0000892/* The file offset position represents the dirent entry number. A
893 last cookie cache takes care of the common case of reading the
894 whole directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 */
Al Viro23db8622013-05-17 16:34:50 -0400896static int nfs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Miklos Szeredibe62a1a2016-03-26 16:14:39 -0400898 struct dentry *dentry = file_dentry(file);
David Howells2b0143b2015-03-17 22:25:59 +0000899 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 nfs_readdir_descriptor_t my_desc,
901 *desc = &my_desc;
Al Viro23db8622013-05-17 16:34:50 -0400902 struct nfs_open_dir_context *dir_ctx = file->private_data;
Scott Mayhew07b5ce82013-07-05 17:49:31 -0400903 int res = 0;
luanshibe4c2d42019-01-29 15:34:17 +0800904 int max_rapages = NFS_MAX_READDIR_RAPAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Al Viro6de14722013-09-16 10:53:17 -0400906 dfprintk(FILE, "NFS: readdir(%pD2) starting at cookie %llu\n",
907 file, (long long)ctx->pos);
Chuck Lever91d5b472006-03-20 13:44:14 -0500908 nfs_inc_stats(inode, NFSIOS_VFSGETDENTS);
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /*
Al Viro23db8622013-05-17 16:34:50 -0400911 * ctx->pos points to the dirent entry number.
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000912 * *desc->dir_cookie has the cookie for the next entry. We have
Olivier Galibert00a92642005-06-22 17:16:29 +0000913 * to either find the entry with the appropriate number or
914 * revalidate the cookie.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
916 memset(desc, 0, sizeof(*desc));
917
Al Viro23db8622013-05-17 16:34:50 -0400918 desc->file = file;
919 desc->ctx = ctx;
Bryan Schumaker480c2002011-03-23 14:48:29 -0400920 desc->dir_cookie = &dir_ctx->dir_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 desc->decode = NFS_PROTO(inode)->decode_dirent;
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400922 desc->plus = nfs_use_readdirplus(inode, ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
luanshibe4c2d42019-01-29 15:34:17 +0800924 res = nfs_readdir_alloc_pages(desc->pvec.pages, max_rapages);
925 if (res < 0)
926 return -ENOMEM;
927
928 nfs_readdir_rapages_init(desc);
929
Trond Myklebust79f687a32016-11-19 10:54:55 -0500930 if (ctx->pos == 0 || nfs_attribute_cache_expired(inode))
Scott Mayhew07b5ce82013-07-05 17:49:31 -0400931 res = nfs_revalidate_mapping(inode, file->f_mapping);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500932 if (res < 0)
933 goto out;
934
Trond Myklebust47c716c2010-12-07 12:44:56 -0500935 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 res = readdir_search_pagecache(desc);
Olivier Galibert00a92642005-06-22 17:16:29 +0000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (res == -EBADCOOKIE) {
Trond Myklebustece0b422010-11-20 13:55:33 -0500939 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* This means either end of directory */
Thomas Meyer6089dd02017-10-07 16:02:21 +0200941 if (*desc->dir_cookie && !desc->eof) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* Or that the server has 'lost' a cookie */
Al Viro23db8622013-05-17 16:34:50 -0400943 res = uncached_readdir(desc);
Trond Myklebustece0b422010-11-20 13:55:33 -0500944 if (res == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 continue;
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
948 }
949 if (res == -ETOOSMALL && desc->plus) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200950 clear_bit(NFS_INO_ADVISE_RDPLUS, &NFS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 nfs_zap_caches(inode);
Trond Myklebustbaf57a02010-09-24 18:49:43 -0400952 desc->page_index = 0;
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400953 desc->plus = false;
954 desc->eof = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 continue;
956 }
957 if (res < 0)
958 break;
959
Al Viro23db8622013-05-17 16:34:50 -0400960 res = nfs_do_filldir(desc);
Trond Myklebustece0b422010-11-20 13:55:33 -0500961 if (res < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
Trond Myklebust47c716c2010-12-07 12:44:56 -0500963 } while (!desc->eof);
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500964out:
luanshibe4c2d42019-01-29 15:34:17 +0800965 nfs_readdir_free_pages(desc->pvec.pages, max_rapages);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500966 if (res > 0)
967 res = 0;
Al Viro6de14722013-09-16 10:53:17 -0400968 dfprintk(FILE, "NFS: readdir(%pD2) returns %d\n", file, res);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -0500969 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Andrew Morton965c8e52012-12-17 15:59:39 -0800972static loff_t nfs_llseek_dir(struct file *filp, loff_t offset, int whence)
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000973{
Benjamin Coddingtonb044f642017-03-10 17:07:46 -0500974 struct inode *inode = file_inode(filp);
Bryan Schumaker480c2002011-03-23 14:48:29 -0400975 struct nfs_open_dir_context *dir_ctx = filp->private_data;
Chuck Leverb84e06c2008-06-11 17:55:34 -0400976
Al Viro6de14722013-09-16 10:53:17 -0400977 dfprintk(FILE, "NFS: llseek dir(%pD2, %lld, %d)\n",
978 filp, offset, whence);
Chuck Leverb84e06c2008-06-11 17:55:34 -0400979
Andrew Morton965c8e52012-12-17 15:59:39 -0800980 switch (whence) {
Trond Myklebustb2b1ff32018-06-27 16:25:40 -0400981 default:
982 return -EINVAL;
983 case SEEK_SET:
984 if (offset < 0)
985 return -EINVAL;
986 inode_lock(inode);
987 break;
988 case SEEK_CUR:
989 if (offset == 0)
990 return filp->f_pos;
991 inode_lock(inode);
992 offset += filp->f_pos;
993 if (offset < 0) {
994 inode_unlock(inode);
995 return -EINVAL;
996 }
Trond Myklebustf0dd2132005-06-22 17:16:29 +0000997 }
998 if (offset != filp->f_pos) {
999 filp->f_pos = offset;
Bryan Schumaker480c2002011-03-23 14:48:29 -04001000 dir_ctx->dir_cookie = 0;
Bryan Schumaker8ef2ce32011-03-23 15:04:31 -04001001 dir_ctx->duped = 0;
Trond Myklebustf0dd2132005-06-22 17:16:29 +00001002 }
Benjamin Coddingtonb044f642017-03-10 17:07:46 -05001003 inode_unlock(inode);
Trond Myklebustf0dd2132005-06-22 17:16:29 +00001004 return offset;
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * All directory operations under NFS are synchronous, so fsync()
1009 * is a dummy operation.
1010 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001011static int nfs_fsync_dir(struct file *filp, loff_t start, loff_t end,
1012 int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Al Viro6de14722013-09-16 10:53:17 -04001014 struct inode *inode = file_inode(filp);
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001015
Al Viro6de14722013-09-16 10:53:17 -04001016 dfprintk(FILE, "NFS: fsync dir(%pD2) datasync %d\n", filp, datasync);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001017
Al Viro59551022016-01-22 15:40:57 -05001018 inode_lock(inode);
Al Viro6de14722013-09-16 10:53:17 -04001019 nfs_inc_stats(inode, NFSIOS_VFSFSYNC);
Al Viro59551022016-01-22 15:40:57 -05001020 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return 0;
1022}
1023
Trond Myklebustbfc69a42007-10-15 18:18:29 -04001024/**
1025 * nfs_force_lookup_revalidate - Mark the directory as having changed
Trond Myklebust302fad72019-02-18 13:32:38 -05001026 * @dir: pointer to directory inode
Trond Myklebustbfc69a42007-10-15 18:18:29 -04001027 *
1028 * This forces the revalidation code in nfs_lookup_revalidate() to do a
1029 * full lookup on all child dentries of 'dir' whenever a change occurs
1030 * on the server that might have invalidated our dcache.
1031 *
1032 * The caller should be holding dir->i_lock
1033 */
1034void nfs_force_lookup_revalidate(struct inode *dir)
1035{
Trond Myklebust011935a2008-10-14 19:24:50 -04001036 NFS_I(dir)->cache_change_attribute++;
Trond Myklebustbfc69a42007-10-15 18:18:29 -04001037}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001038EXPORT_SYMBOL_GPL(nfs_force_lookup_revalidate);
Trond Myklebustbfc69a42007-10-15 18:18:29 -04001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040/*
1041 * A check for whether or not the parent directory has changed.
1042 * In the case it has, we assume that the dentries are untrustworthy
1043 * and may need to be looked up again.
NeilBrown912a1082014-07-14 11:28:20 +10001044 * If rcu_walk prevents us from performing a full check, return 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 */
NeilBrown912a1082014-07-14 11:28:20 +10001046static int nfs_check_verifier(struct inode *dir, struct dentry *dentry,
1047 int rcu_walk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 if (IS_ROOT(dentry))
1050 return 1;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001051 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
1052 return 0;
Trond Myklebustf2c77f42007-10-02 12:54:39 -04001053 if (!nfs_verify_change_attribute(dir, dentry->d_time))
1054 return 0;
1055 /* Revalidate nfsi->cache_change_attribute before we declare a match */
Trond Myklebust1cd9cb02016-12-04 18:34:34 -05001056 if (nfs_mapping_need_revalidate_inode(dir)) {
1057 if (rcu_walk)
1058 return 0;
1059 if (__nfs_revalidate_inode(NFS_SERVER(dir), dir) < 0)
1060 return 0;
1061 }
Trond Myklebustf2c77f42007-10-02 12:54:39 -04001062 if (!nfs_verify_change_attribute(dir, dentry->d_time))
1063 return 0;
1064 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067/*
Trond Myklebusta12802c2007-10-02 19:13:04 -04001068 * Use intent information to check whether or not we're going to do
1069 * an O_EXCL create using this path component.
1070 */
Al Virofa3c56b2012-06-10 15:36:40 -04001071static int nfs_is_exclusive_create(struct inode *dir, unsigned int flags)
Trond Myklebusta12802c2007-10-02 19:13:04 -04001072{
1073 if (NFS_PROTO(dir)->version == 2)
1074 return 0;
Al Virofa3c56b2012-06-10 15:36:40 -04001075 return flags & LOOKUP_EXCL;
Trond Myklebusta12802c2007-10-02 19:13:04 -04001076}
1077
1078/*
Trond Myklebust1d6757f2005-06-07 18:37:01 -04001079 * Inode and filehandle revalidation for lookups.
1080 *
1081 * We force revalidation in the cases where the VFS sets LOOKUP_REVAL,
1082 * or if the intent information indicates that we're about to open this
1083 * particular file and the "nocto" mount flag is not set.
1084 *
1085 */
Trond Myklebust65a0c142012-12-14 17:51:40 -05001086static
Al Virofa3c56b2012-06-10 15:36:40 -04001087int nfs_lookup_verify_inode(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust65a0c142012-12-14 17:51:40 -05001090 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
David Howells36d43a42011-01-14 18:45:42 +00001092 if (IS_AUTOMOUNT(inode))
Trond Myklebust4e99a1f2008-03-06 12:34:59 -05001093 return 0;
Trond Myklebust47921922018-05-10 10:08:36 -04001094
1095 if (flags & LOOKUP_OPEN) {
1096 switch (inode->i_mode & S_IFMT) {
1097 case S_IFREG:
1098 /* A NFSv4 OPEN will revalidate later */
1099 if (server->caps & NFS_CAP_ATOMIC_OPEN)
1100 goto out;
1101 /* Fallthrough */
1102 case S_IFDIR:
1103 if (server->flags & NFS_MOUNT_NOCTO)
1104 break;
1105 /* NFS close-to-open cache consistency validation */
1106 goto out_force;
1107 }
1108 }
1109
Al Virofacc3532012-06-10 15:33:51 -04001110 /* VFS wants an on-the-wire revalidation */
Al Virofa3c56b2012-06-10 15:36:40 -04001111 if (flags & LOOKUP_REVAL)
Al Virofacc3532012-06-10 15:33:51 -04001112 goto out_force;
Trond Myklebust65a0c142012-12-14 17:51:40 -05001113out:
Lance Sheltona61246c2018-07-16 13:05:36 -04001114 return (inode->i_nlink == 0) ? -ESTALE : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115out_force:
NeilBrown1fa1e382014-07-14 11:28:20 +10001116 if (flags & LOOKUP_RCU)
1117 return -ECHILD;
Trond Myklebust65a0c142012-12-14 17:51:40 -05001118 ret = __nfs_revalidate_inode(server, inode);
1119 if (ret != 0)
1120 return ret;
1121 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124/*
1125 * We judge how long we want to trust negative
1126 * dentries by looking at the parent inode mtime.
1127 *
1128 * If parent mtime has changed, we revalidate, else we wait for a
1129 * period corresponding to the parent's attribute cache timeout value.
NeilBrown912a1082014-07-14 11:28:20 +10001130 *
1131 * If LOOKUP_RCU prevents us from performing a full check, return 1
1132 * suggesting a reval is needed.
Trond Myklebust9f6d44d2018-05-10 10:34:21 -04001133 *
1134 * Note that when creating a new file, or looking up a rename target,
1135 * then it shouldn't be necessary to revalidate a negative dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 */
1137static inline
1138int nfs_neg_need_reval(struct inode *dir, struct dentry *dentry,
Al Virofa3c56b2012-06-10 15:36:40 -04001139 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Trond Myklebust9f6d44d2018-05-10 10:34:21 -04001141 if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return 0;
Trond Myklebust4eec9522008-07-15 17:58:13 -04001143 if (NFS_SERVER(dir)->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG)
1144 return 1;
NeilBrown912a1082014-07-14 11:28:20 +10001145 return !nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001148static int
1149nfs_lookup_revalidate_done(struct inode *dir, struct dentry *dentry,
1150 struct inode *inode, int error)
1151{
1152 switch (error) {
1153 case 1:
1154 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is valid\n",
1155 __func__, dentry);
1156 return 1;
1157 case 0:
1158 nfs_mark_for_revalidate(dir);
1159 if (inode && S_ISDIR(inode->i_mode)) {
1160 /* Purge readdir caches. */
1161 nfs_zap_caches(inode);
1162 /*
1163 * We can't d_drop the root of a disconnected tree:
1164 * its d_hash is on the s_anon list and d_drop() would hide
1165 * it from shrink_dcache_for_unmount(), leading to busy
1166 * inodes on unmount and further oopses.
1167 */
1168 if (IS_ROOT(dentry))
1169 return 1;
1170 }
1171 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) is invalid\n",
1172 __func__, dentry);
1173 return 0;
1174 }
1175 dfprintk(LOOKUPCACHE, "NFS: %s(%pd2) lookup returned error %d\n",
1176 __func__, dentry, error);
1177 return error;
1178}
1179
1180static int
1181nfs_lookup_revalidate_negative(struct inode *dir, struct dentry *dentry,
1182 unsigned int flags)
1183{
1184 int ret = 1;
1185 if (nfs_neg_need_reval(dir, dentry, flags)) {
1186 if (flags & LOOKUP_RCU)
1187 return -ECHILD;
1188 ret = 0;
1189 }
1190 return nfs_lookup_revalidate_done(dir, dentry, NULL, ret);
1191}
1192
1193static int
1194nfs_lookup_revalidate_delegated(struct inode *dir, struct dentry *dentry,
1195 struct inode *inode)
1196{
1197 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1198 return nfs_lookup_revalidate_done(dir, dentry, inode, 1);
1199}
1200
1201static int
1202nfs_lookup_revalidate_dentry(struct inode *dir, struct dentry *dentry,
1203 struct inode *inode)
1204{
1205 struct nfs_fh *fhandle;
1206 struct nfs_fattr *fattr;
1207 struct nfs4_label *label;
1208 int ret;
1209
1210 ret = -ENOMEM;
1211 fhandle = nfs_alloc_fhandle();
1212 fattr = nfs_alloc_fattr();
1213 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
1214 if (fhandle == NULL || fattr == NULL || IS_ERR(label))
1215 goto out;
1216
1217 ret = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label);
1218 if (ret < 0) {
1219 if (ret == -ESTALE || ret == -ENOENT)
1220 ret = 0;
1221 goto out;
1222 }
1223 ret = 0;
1224 if (nfs_compare_fh(NFS_FH(inode), fhandle))
1225 goto out;
1226 if (nfs_refresh_inode(inode, fattr) < 0)
1227 goto out;
1228
1229 nfs_setsecurity(inode, fattr, label);
1230 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1231
1232 /* set a readdirplus hint that we had a cache miss */
1233 nfs_force_use_readdirplus(dir);
1234 ret = 1;
1235out:
1236 nfs_free_fattr(fattr);
1237 nfs_free_fhandle(fhandle);
1238 nfs4_label_free(label);
1239 return nfs_lookup_revalidate_done(dir, dentry, inode, ret);
1240}
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242/*
1243 * This is called every time the dcache has a lookup hit,
1244 * and we should check whether we can really trust that
1245 * lookup.
1246 *
1247 * NOTE! The hit can be a negative hit too, don't assume
1248 * we have an inode!
1249 *
1250 * If the parent directory is seen to have changed, we throw out the
1251 * cached dentry and do a new lookup.
1252 */
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001253static int
1254nfs_do_lookup_revalidate(struct inode *dir, struct dentry *dentry,
1255 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Chuck Lever91d5b472006-03-20 13:44:14 -05001260 nfs_inc_stats(dir, NFSIOS_DENTRYREVALIDATE);
David Howells2b0143b2015-03-17 22:25:59 +00001261 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001263 if (!inode)
1264 return nfs_lookup_revalidate_negative(dir, dentry, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 if (is_bad_inode(inode)) {
Al Viro6de14722013-09-16 10:53:17 -04001267 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1268 __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 goto out_bad;
1270 }
1271
Bryan Schumaker011e2a72012-06-20 15:53:43 -04001272 if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001273 return nfs_lookup_revalidate_delegated(dir, dentry, inode);
Trond Myklebust15860ab2008-12-23 15:21:54 -05001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* Force a full look up iff the parent directory has changed */
Trond Myklebust73dd6842018-05-10 10:13:09 -04001276 if (!(flags & (LOOKUP_EXCL | LOOKUP_REVAL)) &&
NeilBrown912a1082014-07-14 11:28:20 +10001277 nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU)) {
NeilBrowncc896842017-07-05 12:22:20 +10001278 error = nfs_lookup_verify_inode(inode, flags);
1279 if (error) {
NeilBrowncc896842017-07-05 12:22:20 +10001280 if (error == -ESTALE)
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001281 nfs_zap_caches(dir);
1282 goto out_bad;
NeilBrown1fa1e382014-07-14 11:28:20 +10001283 }
Trond Myklebust63519fb2016-11-19 11:21:54 -05001284 nfs_advise_use_readdirplus(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 goto out_valid;
1286 }
1287
NeilBrown912a1082014-07-14 11:28:20 +10001288 if (flags & LOOKUP_RCU)
1289 return -ECHILD;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (NFS_STALE(inode))
1292 goto out_bad;
1293
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001294 trace_nfs_lookup_revalidate_enter(dir, dentry, flags);
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001295 error = nfs_lookup_revalidate_dentry(dir, dentry, inode);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001296 trace_nfs_lookup_revalidate_exit(dir, dentry, flags, error);
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001297 return error;
1298out_valid:
1299 return nfs_lookup_revalidate_done(dir, dentry, inode, 1);
1300out_bad:
1301 if (flags & LOOKUP_RCU)
1302 return -ECHILD;
1303 return nfs_lookup_revalidate_done(dir, dentry, inode, 0);
1304}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001306static int
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001307__nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags,
1308 int (*reval)(struct inode *, struct dentry *, unsigned int))
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001309{
1310 struct dentry *parent;
1311 struct inode *dir;
1312 int ret;
David Quigleyaa9c2662013-05-22 12:50:44 -04001313
NeilBrownd51ac1a2014-07-14 11:28:20 +10001314 if (flags & LOOKUP_RCU) {
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001315 parent = READ_ONCE(dentry->d_parent);
1316 dir = d_inode_rcu(parent);
1317 if (!dir)
1318 return -ECHILD;
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001319 ret = reval(dir, dentry, flags);
Mark Rutland6aa7de02017-10-23 14:07:29 -07001320 if (parent != READ_ONCE(dentry->d_parent))
NeilBrownd51ac1a2014-07-14 11:28:20 +10001321 return -ECHILD;
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001322 } else {
1323 parent = dget_parent(dentry);
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001324 ret = reval(d_inode(parent), dentry, flags);
NeilBrownd51ac1a2014-07-14 11:28:20 +10001325 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Trond Myklebust5ceb9d72018-09-28 09:04:05 -04001327 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001330static int nfs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
1331{
1332 return __nfs_lookup_revalidate(dentry, flags, nfs_do_lookup_revalidate);
1333}
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335/*
David Howells2b0143b2015-03-17 22:25:59 +00001336 * A weaker form of d_revalidate for revalidating just the d_inode(dentry)
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001337 * when we don't really care about the dentry name. This is called when a
1338 * pathwalk ends on a dentry that was not found via a normal lookup in the
1339 * parent dir (e.g.: ".", "..", procfs symlinks or mountpoint traversals).
1340 *
1341 * In this situation, we just want to verify that the inode itself is OK
1342 * since the dentry might have changed on the server.
1343 */
1344static int nfs_weak_revalidate(struct dentry *dentry, unsigned int flags)
1345{
David Howells2b0143b2015-03-17 22:25:59 +00001346 struct inode *inode = d_inode(dentry);
Trond Myklebust9cdd1d32016-12-16 18:04:47 -05001347 int error = 0;
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001348
1349 /*
1350 * I believe we can only get a negative dentry here in the case of a
1351 * procfs-style symlink. Just assume it's correct for now, but we may
1352 * eventually need to do something more here.
1353 */
1354 if (!inode) {
Al Viro6de14722013-09-16 10:53:17 -04001355 dfprintk(LOOKUPCACHE, "%s: %pd2 has negative inode\n",
1356 __func__, dentry);
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001357 return 1;
1358 }
1359
1360 if (is_bad_inode(inode)) {
Al Viro6de14722013-09-16 10:53:17 -04001361 dfprintk(LOOKUPCACHE, "%s: %pd2 has dud inode\n",
1362 __func__, dentry);
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001363 return 0;
1364 }
1365
NeilBrownb6887412017-08-25 17:34:41 +10001366 error = nfs_lookup_verify_inode(inode, flags);
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001367 dfprintk(LOOKUPCACHE, "NFS: %s: inode %lu is %s\n",
1368 __func__, inode->i_ino, error ? "invalid" : "valid");
1369 return !error;
1370}
1371
1372/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * This is called from dput() when d_count is going to 0.
1374 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001375static int nfs_dentry_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Al Viro6de14722013-09-16 10:53:17 -04001377 dfprintk(VFS, "NFS: dentry_delete(%pd2, %x)\n",
1378 dentry, dentry->d_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Trond Myklebust77f11192008-01-28 19:43:19 -05001380 /* Unhash any dentry with a stale inode */
David Howells2b0143b2015-03-17 22:25:59 +00001381 if (d_really_is_positive(dentry) && NFS_STALE(d_inode(dentry)))
Trond Myklebust77f11192008-01-28 19:43:19 -05001382 return 1;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1385 /* Unhash it, so that ->d_iput() would be called */
1386 return 1;
1387 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001388 if (!(dentry->d_sb->s_flags & SB_ACTIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /* Unhash it, so that ancestors of killed async unlink
1390 * files will be cleaned up during umount */
1391 return 1;
1392 }
1393 return 0;
1394
1395}
1396
Trond Myklebust1f018452012-12-14 16:38:46 -05001397/* Ensure that we revalidate inode->i_nlink */
Trond Myklebust1b83d702008-06-11 15:44:04 -04001398static void nfs_drop_nlink(struct inode *inode)
1399{
1400 spin_lock(&inode->i_lock);
Trond Myklebust1f018452012-12-14 16:38:46 -05001401 /* drop the inode if we're reasonably sure this is the last link */
Trond Myklebust59a707b2018-04-08 18:11:18 -04001402 if (inode->i_nlink > 0)
1403 drop_nlink(inode);
1404 NFS_I(inode)->attr_gencount = nfs_inc_attr_generation_counter();
Trond Myklebust16e14372018-03-20 16:53:31 -04001405 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_CHANGE
1406 | NFS_INO_INVALID_CTIME
Trond Myklebust59a707b2018-04-08 18:11:18 -04001407 | NFS_INO_INVALID_OTHER
1408 | NFS_INO_REVAL_FORCED;
Trond Myklebust1b83d702008-06-11 15:44:04 -04001409 spin_unlock(&inode->i_lock);
1410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/*
1413 * Called when the dentry loses inode.
1414 * We use it to clean up silly-renamed files.
1415 */
1416static void nfs_dentry_iput(struct dentry *dentry, struct inode *inode)
1417{
Neil Brown83672d32007-02-26 12:48:25 +11001418 if (S_ISDIR(inode->i_mode))
1419 /* drop any readdir cache as it could easily be old */
1420 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04001423 nfs_complete_unlink(dentry, inode);
Trond Myklebust1f018452012-12-14 16:38:46 -05001424 nfs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 iput(inode);
1427}
1428
Al Virob1942c52011-03-16 05:44:14 -04001429static void nfs_d_release(struct dentry *dentry)
1430{
1431 /* free cached devname value, if it survived that far */
1432 if (unlikely(dentry->d_fsdata)) {
1433 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1434 WARN_ON(1);
1435 else
1436 kfree(dentry->d_fsdata);
1437 }
1438}
1439
Al Virof786aa92009-02-20 05:51:22 +00001440const struct dentry_operations nfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .d_revalidate = nfs_lookup_revalidate,
Jeff Laytonecf3d1f2013-02-20 11:19:05 -05001442 .d_weak_revalidate = nfs_weak_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .d_delete = nfs_dentry_delete,
1444 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001445 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001446 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447};
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001448EXPORT_SYMBOL_GPL(nfs_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Bryan Schumaker597d9282012-07-16 16:39:10 -04001450struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 struct dentry *res;
1453 struct inode *inode = NULL;
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001454 struct nfs_fh *fhandle = NULL;
1455 struct nfs_fattr *fattr = NULL;
David Quigley1775fd32013-05-22 12:50:42 -04001456 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Al Viro6de14722013-09-16 10:53:17 -04001459 dfprintk(VFS, "NFS: lookup(%pd2)\n", dentry);
Chuck Lever91d5b472006-03-20 13:44:14 -05001460 nfs_inc_stats(dir, NFSIOS_VFSLOOKUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Al Viro130f9ab2016-03-07 22:40:43 -05001462 if (unlikely(dentry->d_name.len > NFS_SERVER(dir)->namelen))
1463 return ERR_PTR(-ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Trond Myklebustfd684072006-09-05 12:27:44 -04001465 /*
1466 * If we're doing an exclusive create, optimize away the lookup
1467 * but don't hash the dentry.
1468 */
Trond Myklebust9f6d44d2018-05-10 10:34:21 -04001469 if (nfs_is_exclusive_create(dir, flags) || flags & LOOKUP_RENAME_TARGET)
Al Viro130f9ab2016-03-07 22:40:43 -05001470 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001472 res = ERR_PTR(-ENOMEM);
1473 fhandle = nfs_alloc_fhandle();
1474 fattr = nfs_alloc_fattr();
1475 if (fhandle == NULL || fattr == NULL)
1476 goto out;
1477
David Quigley14c43f72013-05-22 12:50:43 -04001478 label = nfs4_label_alloc(NFS_SERVER(dir), GFP_NOWAIT);
1479 if (IS_ERR(label))
1480 goto out;
1481
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001482 trace_nfs_lookup_enter(dir, dentry, flags);
David Quigley1775fd32013-05-22 12:50:42 -04001483 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (error == -ENOENT)
1485 goto no_entry;
1486 if (error < 0) {
1487 res = ERR_PTR(error);
Al Virobf130912016-05-29 15:14:14 -04001488 goto out_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
David Quigley1775fd32013-05-22 12:50:42 -04001490 inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label);
Namhyung Kimbf0c84f2010-12-28 17:02:46 +00001491 res = ERR_CAST(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001492 if (IS_ERR(res))
Al Virobf130912016-05-29 15:14:14 -04001493 goto out_label;
David Howells54ceac42006-08-22 20:06:13 -04001494
Trond Myklebust63519fb2016-11-19 11:21:54 -05001495 /* Notify readdir to use READDIRPLUS */
1496 nfs_force_use_readdirplus(dir);
Trond Myklebustd69ee9b2012-05-01 17:37:59 -04001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498no_entry:
Al Viro41d28bc2014-10-12 22:24:21 -04001499 res = d_splice_alias(inode, dentry);
Trond Myklebust9eaef272006-10-21 10:24:20 -07001500 if (res != NULL) {
1501 if (IS_ERR(res))
Al Virobf130912016-05-29 15:14:14 -04001502 goto out_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 dentry = res;
Trond Myklebust9eaef272006-10-21 10:24:20 -07001504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Al Virobf130912016-05-29 15:14:14 -04001506out_label:
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001507 trace_nfs_lookup_exit(dir, dentry, flags, error);
David Quigley14c43f72013-05-22 12:50:43 -04001508 nfs4_label_free(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509out:
Trond Myklebuste1fb4d02010-04-16 16:22:47 -04001510 nfs_free_fattr(fattr);
1511 nfs_free_fhandle(fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return res;
1513}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001514EXPORT_SYMBOL_GPL(nfs_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001516#if IS_ENABLED(CONFIG_NFS_V4)
Al Viro0b728e12012-06-10 16:03:43 -04001517static int nfs4_lookup_revalidate(struct dentry *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Al Virof786aa92009-02-20 05:51:22 +00001519const struct dentry_operations nfs4_dentry_operations = {
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001520 .d_revalidate = nfs4_lookup_revalidate,
NeilBrownb6887412017-08-25 17:34:41 +10001521 .d_weak_revalidate = nfs_weak_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .d_delete = nfs_dentry_delete,
1523 .d_iput = nfs_dentry_iput,
David Howells36d43a42011-01-14 18:45:42 +00001524 .d_automount = nfs_d_automount,
Al Virob1942c52011-03-16 05:44:14 -04001525 .d_release = nfs_d_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526};
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001527EXPORT_SYMBOL_GPL(nfs4_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Al Viro8a5e9292011-06-25 19:15:54 -04001529static fmode_t flags_to_mode(int flags)
1530{
1531 fmode_t res = (__force fmode_t)flags & FMODE_EXEC;
1532 if ((flags & O_ACCMODE) != O_WRONLY)
1533 res |= FMODE_READ;
1534 if ((flags & O_ACCMODE) != O_RDONLY)
1535 res |= FMODE_WRITE;
1536 return res;
1537}
1538
NeilBrown532d4de2016-10-13 15:26:47 +11001539static struct nfs_open_context *create_nfs_open_context(struct dentry *dentry, int open_flags, struct file *filp)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001540{
NeilBrown532d4de2016-10-13 15:26:47 +11001541 return alloc_nfs_open_context(dentry, flags_to_mode(open_flags), filp);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001542}
1543
1544static int do_open(struct inode *inode, struct file *filp)
1545{
David Howellsf1fe29b2013-09-27 11:20:03 +01001546 nfs_fscache_open_file(inode, filp);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001547 return 0;
1548}
1549
Al Virod9585272012-06-22 12:39:14 +04001550static int nfs_finish_open(struct nfs_open_context *ctx,
1551 struct dentry *dentry,
Al Virob452a452018-06-08 13:06:28 -04001552 struct file *file, unsigned open_flags)
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001553{
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001554 int err;
1555
Al Virobe12af32018-06-08 11:44:56 -04001556 err = finish_open(file, dentry, do_open);
Al Viro30d90492012-06-22 12:40:19 +04001557 if (err)
Al Virod9585272012-06-22 12:39:14 +04001558 goto out;
NeilBrowneaa2b822017-07-03 15:27:26 +10001559 if (S_ISREG(file->f_path.dentry->d_inode->i_mode))
1560 nfs_file_set_open_context(file, ctx);
1561 else
1562 err = -ESTALE;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001563out:
Al Virod9585272012-06-22 12:39:14 +04001564 return err;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001565}
1566
Bryan Schumaker73a79702012-07-16 16:39:12 -04001567int nfs_atomic_open(struct inode *dir, struct dentry *dentry,
1568 struct file *file, unsigned open_flags,
Al Viro44907d72018-06-08 13:32:02 -04001569 umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Al Viroc94c0952016-07-05 09:49:21 -04001571 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001572 struct nfs_open_context *ctx;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001573 struct dentry *res;
1574 struct iattr attr = { .ia_valid = ATTR_OPEN };
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001575 struct inode *inode;
Trond Myklebust1472b832013-08-20 11:59:41 -04001576 unsigned int lookup_flags = 0;
Al Viroc94c0952016-07-05 09:49:21 -04001577 bool switched = false;
Al Viro73a09dd2018-06-08 13:22:02 -04001578 int created = 0;
Trond Myklebust898f6352010-10-23 11:24:25 -04001579 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001581 /* Expect a negative dentry */
David Howells2b0143b2015-03-17 22:25:59 +00001582 BUG_ON(d_inode(dentry));
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001583
Niels de Vos1e8968c2013-12-17 18:20:16 +01001584 dfprintk(VFS, "NFS: atomic_open(%s/%lu), %pd\n",
Al Viro6de14722013-09-16 10:53:17 -04001585 dir->i_sb->s_id, dir->i_ino, dentry);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05001586
Jeff Layton9597c132013-08-02 11:39:32 -04001587 err = nfs_check_flags(open_flags);
1588 if (err)
1589 return err;
1590
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001591 /* NFS only supports OPEN on regular files */
1592 if ((open_flags & O_DIRECTORY)) {
Al Viro00699ad2016-07-05 09:44:53 -04001593 if (!d_in_lookup(dentry)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001594 /*
1595 * Hashed negative dentry with O_DIRECTORY: dentry was
1596 * revalidated and is fine, no need to perform lookup
1597 * again
1598 */
Al Virod9585272012-06-22 12:39:14 +04001599 return -ENOENT;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001600 }
Trond Myklebust1472b832013-08-20 11:59:41 -04001601 lookup_flags = LOOKUP_OPEN|LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 goto no_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001605 if (dentry->d_name.len > NFS_SERVER(dir)->namelen)
Al Virod9585272012-06-22 12:39:14 +04001606 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001608 if (open_flags & O_CREAT) {
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05001609 struct nfs_server *server = NFS_SERVER(dir);
1610
1611 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
1612 mode &= ~current_umask();
1613
Trond Myklebust536e43d2012-01-17 22:04:26 -05001614 attr.ia_valid |= ATTR_MODE;
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05001615 attr.ia_mode = mode;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001616 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001617 if (open_flags & O_TRUNC) {
1618 attr.ia_valid |= ATTR_SIZE;
1619 attr.ia_size = 0;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001620 }
1621
Al Viroc94c0952016-07-05 09:49:21 -04001622 if (!(open_flags & O_CREAT) && !d_in_lookup(dentry)) {
1623 d_drop(dentry);
1624 switched = true;
1625 dentry = d_alloc_parallel(dentry->d_parent,
1626 &dentry->d_name, &wq);
1627 if (IS_ERR(dentry))
1628 return PTR_ERR(dentry);
1629 if (unlikely(!d_in_lookup(dentry)))
1630 return finish_no_open(file, dentry);
1631 }
1632
NeilBrown532d4de2016-10-13 15:26:47 +11001633 ctx = create_nfs_open_context(dentry, open_flags, file);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001634 err = PTR_ERR(ctx);
1635 if (IS_ERR(ctx))
Al Virod9585272012-06-22 12:39:14 +04001636 goto out;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001637
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001638 trace_nfs_atomic_open_enter(dir, ctx, open_flags);
Al Viro73a09dd2018-06-08 13:22:02 -04001639 inode = NFS_PROTO(dir)->open_context(dir, ctx, open_flags, &attr, &created);
1640 if (created)
1641 file->f_mode |= FMODE_CREATED;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04001642 if (IS_ERR(inode)) {
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001643 err = PTR_ERR(inode);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001644 trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
Trond Myklebust2d9db752013-08-30 09:17:33 -04001645 put_nfs_open_context(ctx);
Al Virod20cb712016-06-20 13:14:36 -04001646 d_drop(dentry);
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001647 switch (err) {
1648 case -ENOENT:
Peng Tao774d9512017-06-29 06:34:50 -07001649 d_splice_alias(NULL, dentry);
Trond Myklebust809fd142014-10-23 19:33:14 +03001650 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001651 break;
1652 case -EISDIR:
1653 case -ENOTDIR:
1654 goto no_open;
1655 case -ELOOP:
1656 if (!(open_flags & O_NOFOLLOW))
Trond Myklebust6f926b52005-10-18 14:20:18 -07001657 goto no_open;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001658 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 /* case -EINVAL: */
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001660 default:
1661 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Al Virod9585272012-06-22 12:39:14 +04001663 goto out;
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04001664 }
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001665
Al Virob452a452018-06-08 13:06:28 -04001666 err = nfs_finish_open(ctx, ctx->dentry, file, open_flags);
Trond Myklebust6e0d0be2013-08-20 11:26:17 -04001667 trace_nfs_atomic_open_exit(dir, ctx, open_flags, err);
Trond Myklebust2d9db752013-08-30 09:17:33 -04001668 put_nfs_open_context(ctx);
Al Virod9585272012-06-22 12:39:14 +04001669out:
Al Viroc94c0952016-07-05 09:49:21 -04001670 if (unlikely(switched)) {
1671 d_lookup_done(dentry);
1672 dput(dentry);
1673 }
Al Virod9585272012-06-22 12:39:14 +04001674 return err;
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676no_open:
Trond Myklebust1472b832013-08-20 11:59:41 -04001677 res = nfs_lookup(dir, dentry, lookup_flags);
Al Viroc94c0952016-07-05 09:49:21 -04001678 if (switched) {
1679 d_lookup_done(dentry);
1680 if (!res)
1681 res = dentry;
1682 else
1683 dput(dentry);
1684 }
Miklos Szeredi0dd2b472012-06-05 15:10:18 +02001685 if (IS_ERR(res))
Al Viroc94c0952016-07-05 09:49:21 -04001686 return PTR_ERR(res);
Al Viroe45198a2012-06-10 06:48:09 -04001687 return finish_no_open(file, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001689EXPORT_SYMBOL_GPL(nfs_atomic_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001691static int
1692nfs4_do_lookup_revalidate(struct inode *dir, struct dentry *dentry,
1693 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
Nick Piggin657e94b2011-01-14 02:48:39 +00001695 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Al Virofa3c56b2012-06-10 15:36:40 -04001697 if (!(flags & LOOKUP_OPEN) || (flags & LOOKUP_DIRECTORY))
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001698 goto full_reval;
Miklos Szeredieda72af2012-06-05 15:10:21 +02001699 if (d_mountpoint(dentry))
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001700 goto full_reval;
Trond Myklebust2b484292010-09-17 10:56:51 -04001701
David Howells2b0143b2015-03-17 22:25:59 +00001702 inode = d_inode(dentry);
Trond Myklebust2b484292010-09-17 10:56:51 -04001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 /* We can't create new files in nfs_open_revalidate(), so we
1705 * optimize away revalidation of negative dentries.
1706 */
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001707 if (inode == NULL)
1708 goto full_reval;
NeilBrown49317a72014-07-14 11:28:20 +10001709
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001710 if (NFS_PROTO(dir)->have_delegation(inode, FMODE_READ))
1711 return nfs_lookup_revalidate_delegated(dir, dentry, inode);
Trond Myklebust216d5d062007-10-01 20:10:12 -04001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 /* NFS only supports OPEN on regular files */
1714 if (!S_ISREG(inode->i_mode))
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001715 goto full_reval;
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 /* We cannot do exclusive creation on a positive dentry */
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001718 if (flags & (LOOKUP_EXCL | LOOKUP_REVAL))
1719 goto reval_dentry;
1720
1721 /* Check if the directory changed */
1722 if (!nfs_check_verifier(dir, dentry, flags & LOOKUP_RCU))
1723 goto reval_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Miklos Szeredi0ef97dc2012-05-21 17:30:20 +02001725 /* Let f_op->open() actually open (and revalidate) the file */
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001726 return 1;
1727reval_dentry:
1728 if (flags & LOOKUP_RCU)
1729 return -ECHILD;
1730 return nfs_lookup_revalidate_dentry(dir, dentry, inode);;
Trond Myklebust536e43d2012-01-17 22:04:26 -05001731
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001732full_reval:
1733 return nfs_do_lookup_revalidate(dir, dentry, flags);
1734}
Trond Myklebust535918f2010-09-17 10:56:51 -04001735
Trond Myklebustc7944eb2018-09-28 12:42:51 -04001736static int nfs4_lookup_revalidate(struct dentry *dentry, unsigned int flags)
1737{
1738 return __nfs_lookup_revalidate(dentry, flags,
1739 nfs4_do_lookup_revalidate);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04001740}
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742#endif /* CONFIG_NFSV4 */
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744/*
1745 * Code common to create, mkdir, and mknod.
1746 */
1747int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04001748 struct nfs_fattr *fattr,
1749 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Trond Myklebustfab728e2007-09-29 17:41:33 -04001751 struct dentry *parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001752 struct inode *dir = d_inode(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 struct inode *inode;
Al Virob0c6108e2018-05-16 10:55:01 -04001754 struct dentry *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 int error = -EACCES;
1756
Trond Myklebustfab728e2007-09-29 17:41:33 -04001757 d_drop(dentry);
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 /* We may have been initialized further down */
David Howells2b0143b2015-03-17 22:25:59 +00001760 if (d_really_is_positive(dentry))
Trond Myklebustfab728e2007-09-29 17:41:33 -04001761 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (fhandle->size == 0) {
David Quigley1775fd32013-05-22 12:50:42 -04001763 error = NFS_PROTO(dir)->lookup(dir, &dentry->d_name, fhandle, fattr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (error)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001765 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
Trond Myklebust5724ab32007-10-01 21:51:38 -04001767 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1769 struct nfs_server *server = NFS_SB(dentry->d_sb);
Trond Myklebusta841b542018-04-07 13:50:59 -04001770 error = server->nfs_client->rpc_ops->getattr(server, fhandle,
1771 fattr, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (error < 0)
Trond Myklebustfab728e2007-09-29 17:41:33 -04001773 goto out_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
David Quigley1775fd32013-05-22 12:50:42 -04001775 inode = nfs_fhget(dentry->d_sb, fhandle, fattr, label);
Al Virob0c6108e2018-05-16 10:55:01 -04001776 d = d_splice_alias(inode, dentry);
1777 if (IS_ERR(d)) {
1778 error = PTR_ERR(d);
Trond Myklebustfab728e2007-09-29 17:41:33 -04001779 goto out_error;
Al Virob0c6108e2018-05-16 10:55:01 -04001780 }
1781 dput(d);
Trond Myklebustfab728e2007-09-29 17:41:33 -04001782out:
1783 dput(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return 0;
Trond Myklebustfab728e2007-09-29 17:41:33 -04001785out_error:
1786 nfs_mark_for_revalidate(dir);
1787 dput(parent);
1788 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001790EXPORT_SYMBOL_GPL(nfs_instantiate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792/*
1793 * Following a failed create operation, we drop the dentry rather
1794 * than retain a negative dentry. This avoids a problem in the event
1795 * that the operation succeeded on the server, but an error in the
1796 * reply path made it appear to have failed.
1797 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001798int nfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04001799 umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
1801 struct iattr attr;
Al Viroebfc3b42012-06-10 18:05:36 -04001802 int open_flags = excl ? O_CREAT | O_EXCL : O_CREAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Niels de Vos1e8968c2013-12-17 18:20:16 +01001805 dfprintk(VFS, "NFS: create(%s/%lu), %pd\n",
Al Viro6de14722013-09-16 10:53:17 -04001806 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 attr.ia_mode = mode;
1809 attr.ia_valid = ATTR_MODE;
1810
Trond Myklebust8b0ad3d2013-08-21 10:53:09 -04001811 trace_nfs_create_enter(dir, dentry, open_flags);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02001812 error = NFS_PROTO(dir)->create(dir, dentry, &attr, open_flags);
Trond Myklebust8b0ad3d2013-08-21 10:53:09 -04001813 trace_nfs_create_exit(dir, dentry, open_flags, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (error != 0)
1815 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return 0;
1817out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 d_drop(dentry);
1819 return error;
1820}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001821EXPORT_SYMBOL_GPL(nfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823/*
1824 * See comments for nfs_proc_create regarding failed operations.
1825 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001826int
Al Viro1a67aaf2011-07-26 01:52:52 -04001827nfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 struct iattr attr;
1830 int status;
1831
Niels de Vos1e8968c2013-12-17 18:20:16 +01001832 dfprintk(VFS, "NFS: mknod(%s/%lu), %pd\n",
Al Viro6de14722013-09-16 10:53:17 -04001833 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 attr.ia_mode = mode;
1836 attr.ia_valid = ATTR_MODE;
1837
Trond Myklebust1ca42382013-08-21 12:36:04 -04001838 trace_nfs_mknod_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 status = NFS_PROTO(dir)->mknod(dir, dentry, &attr, rdev);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001840 trace_nfs_mknod_exit(dir, dentry, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (status != 0)
1842 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return 0;
1844out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 d_drop(dentry);
1846 return status;
1847}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001848EXPORT_SYMBOL_GPL(nfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850/*
1851 * See comments for nfs_proc_create regarding failed operations.
1852 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001853int nfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
1855 struct iattr attr;
1856 int error;
1857
Niels de Vos1e8968c2013-12-17 18:20:16 +01001858 dfprintk(VFS, "NFS: mkdir(%s/%lu), %pd\n",
Al Viro6de14722013-09-16 10:53:17 -04001859 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 attr.ia_valid = ATTR_MODE;
1862 attr.ia_mode = mode | S_IFDIR;
1863
Trond Myklebust1ca42382013-08-21 12:36:04 -04001864 trace_nfs_mkdir_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 error = NFS_PROTO(dir)->mkdir(dir, dentry, &attr);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001866 trace_nfs_mkdir_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (error != 0)
1868 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 return 0;
1870out_err:
1871 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return error;
1873}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001874EXPORT_SYMBOL_GPL(nfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001876static void nfs_dentry_handle_enoent(struct dentry *dentry)
1877{
Al Virodc3f4192015-05-18 10:10:34 -04001878 if (simple_positive(dentry))
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001879 d_delete(dentry);
1880}
1881
Bryan Schumaker597d9282012-07-16 16:39:10 -04001882int nfs_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 int error;
1885
Niels de Vos1e8968c2013-12-17 18:20:16 +01001886 dfprintk(VFS, "NFS: rmdir(%s/%lu), %pd\n",
Al Viro6de14722013-09-16 10:53:17 -04001887 dir->i_sb->s_id, dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Trond Myklebust1ca42382013-08-21 12:36:04 -04001889 trace_nfs_rmdir_enter(dir, dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001890 if (d_really_is_positive(dentry)) {
Al Viro884be172016-04-28 23:56:31 -04001891 down_write(&NFS_I(d_inode(dentry))->rmdir_sem);
Trond Myklebustba6c0592013-08-30 12:24:25 -04001892 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
1893 /* Ensure the VFS deletes this inode */
1894 switch (error) {
1895 case 0:
David Howells2b0143b2015-03-17 22:25:59 +00001896 clear_nlink(d_inode(dentry));
Trond Myklebustba6c0592013-08-30 12:24:25 -04001897 break;
1898 case -ENOENT:
1899 nfs_dentry_handle_enoent(dentry);
1900 }
Al Viro884be172016-04-28 23:56:31 -04001901 up_write(&NFS_I(d_inode(dentry))->rmdir_sem);
Trond Myklebustba6c0592013-08-30 12:24:25 -04001902 } else
1903 error = NFS_PROTO(dir)->rmdir(dir, &dentry->d_name);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001904 trace_nfs_rmdir_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 return error;
1907}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001908EXPORT_SYMBOL_GPL(nfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910/*
1911 * Remove a file after making sure there are no pending writes,
1912 * and after checking that the file has only one user.
1913 *
1914 * We invalidate the attribute cache and free the inode prior to the operation
1915 * to avoid possible races if the server reuses the inode.
1916 */
1917static int nfs_safe_remove(struct dentry *dentry)
1918{
David Howells2b0143b2015-03-17 22:25:59 +00001919 struct inode *dir = d_inode(dentry->d_parent);
1920 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 int error = -EBUSY;
1922
Al Viro6de14722013-09-16 10:53:17 -04001923 dfprintk(VFS, "NFS: safe_remove(%pd2)\n", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /* If the dentry was sillyrenamed, we simply call d_delete() */
1926 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
1927 error = 0;
1928 goto out;
1929 }
1930
Trond Myklebust1ca42382013-08-21 12:36:04 -04001931 trace_nfs_remove_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (inode != NULL) {
Trond Myklebust912678d2018-03-20 16:43:15 -04001933 error = NFS_PROTO(dir)->remove(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (error == 0)
Trond Myklebust1b83d702008-06-11 15:44:04 -04001935 nfs_drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 } else
Trond Myklebust912678d2018-03-20 16:43:15 -04001937 error = NFS_PROTO(dir)->remove(dir, dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001938 if (error == -ENOENT)
1939 nfs_dentry_handle_enoent(dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001940 trace_nfs_remove_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941out:
1942 return error;
1943}
1944
1945/* We do silly rename. In case sillyrename() returns -EBUSY, the inode
1946 * belongs to an active ".nfs..." file and we return -EBUSY.
1947 *
1948 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1949 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001950int nfs_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 int error;
1953 int need_rehash = 0;
1954
Niels de Vos1e8968c2013-12-17 18:20:16 +01001955 dfprintk(VFS, "NFS: unlink(%s/%lu, %pd)\n", dir->i_sb->s_id,
Al Viro6de14722013-09-16 10:53:17 -04001956 dir->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Trond Myklebust1ca42382013-08-21 12:36:04 -04001958 trace_nfs_unlink_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 spin_lock(&dentry->d_lock);
Al Viro84d08fa2013-07-05 18:59:33 +04001960 if (d_count(dentry) > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 spin_unlock(&dentry->d_lock);
Trond Myklebustccfeb502007-01-13 02:28:12 -05001962 /* Start asynchronous writeout of the inode */
David Howells2b0143b2015-03-17 22:25:59 +00001963 write_inode_now(d_inode(dentry), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 error = nfs_sillyrename(dir, dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001965 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967 if (!d_unhashed(dentry)) {
1968 __d_drop(dentry);
1969 need_rehash = 1;
1970 }
1971 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 error = nfs_safe_remove(dentry);
Trond Myklebustd45b9d82008-01-28 19:43:18 -05001973 if (!error || error == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1975 } else if (need_rehash)
1976 d_rehash(dentry);
Trond Myklebust1ca42382013-08-21 12:36:04 -04001977out:
1978 trace_nfs_unlink_exit(dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return error;
1980}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001981EXPORT_SYMBOL_GPL(nfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Chuck Lever873101b2006-08-22 20:06:23 -04001983/*
1984 * To create a symbolic link, most file systems instantiate a new inode,
1985 * add a page to it containing the path, then write it out to the disk
1986 * using prepare_write/commit_write.
1987 *
1988 * Unfortunately the NFS client can't create the in-core inode first
1989 * because it needs a file handle to create an in-core inode (see
1990 * fs/nfs/inode.c:nfs_fhget). We only have a file handle *after* the
1991 * symlink request has completed on the server.
1992 *
1993 * So instead we allocate a raw page, copy the symname into it, then do
1994 * the SYMLINK request with the page as the buffer. If it succeeds, we
1995 * now have a new file handle and can instantiate an in-core NFS inode
1996 * and move the raw page into its mapping.
1997 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04001998int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Chuck Lever873101b2006-08-22 20:06:23 -04002000 struct page *page;
2001 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct iattr attr;
Chuck Lever873101b2006-08-22 20:06:23 -04002003 unsigned int pathlen = strlen(symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 int error;
2005
Niels de Vos1e8968c2013-12-17 18:20:16 +01002006 dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s)\n", dir->i_sb->s_id,
Al Viro6de14722013-09-16 10:53:17 -04002007 dir->i_ino, dentry, symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Chuck Lever873101b2006-08-22 20:06:23 -04002009 if (pathlen > PAGE_SIZE)
2010 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Chuck Lever873101b2006-08-22 20:06:23 -04002012 attr.ia_mode = S_IFLNK | S_IRWXUGO;
2013 attr.ia_valid = ATTR_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Al Viroe8ecde22016-01-14 17:52:59 -05002015 page = alloc_page(GFP_USER);
Trond Myklebust76566992008-06-11 15:44:22 -04002016 if (!page)
Chuck Lever873101b2006-08-22 20:06:23 -04002017 return -ENOMEM;
Chuck Lever873101b2006-08-22 20:06:23 -04002018
Al Viroe8ecde22016-01-14 17:52:59 -05002019 kaddr = page_address(page);
Chuck Lever873101b2006-08-22 20:06:23 -04002020 memcpy(kaddr, symname, pathlen);
2021 if (pathlen < PAGE_SIZE)
2022 memset(kaddr + pathlen, 0, PAGE_SIZE - pathlen);
Chuck Lever873101b2006-08-22 20:06:23 -04002023
Trond Myklebust1ca42382013-08-21 12:36:04 -04002024 trace_nfs_symlink_enter(dir, dentry);
Chuck Lever94a6d752006-08-22 20:06:23 -04002025 error = NFS_PROTO(dir)->symlink(dir, dentry, page, pathlen, &attr);
Trond Myklebust1ca42382013-08-21 12:36:04 -04002026 trace_nfs_symlink_exit(dir, dentry, error);
Chuck Lever873101b2006-08-22 20:06:23 -04002027 if (error != 0) {
Niels de Vos1e8968c2013-12-17 18:20:16 +01002028 dfprintk(VFS, "NFS: symlink(%s/%lu, %pd, %s) error %d\n",
Chuck Lever873101b2006-08-22 20:06:23 -04002029 dir->i_sb->s_id, dir->i_ino,
Al Viro6de14722013-09-16 10:53:17 -04002030 dentry, symname, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 d_drop(dentry);
Chuck Lever873101b2006-08-22 20:06:23 -04002032 __free_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04002033 return error;
2034 }
2035
2036 /*
2037 * No big deal if we can't add this page to the page cache here.
2038 * READLINK will get the missing page from the server if needed.
2039 */
David Howells2b0143b2015-03-17 22:25:59 +00002040 if (!add_to_page_cache_lru(page, d_inode(dentry)->i_mapping, 0,
Chuck Lever873101b2006-08-22 20:06:23 -04002041 GFP_KERNEL)) {
Chuck Lever873101b2006-08-22 20:06:23 -04002042 SetPageUptodate(page);
2043 unlock_page(page);
Rafael Aquinia0b54add2014-02-10 14:25:48 -08002044 /*
2045 * add_to_page_cache_lru() grabs an extra page refcount.
2046 * Drop it here to avoid leaking this page later.
2047 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002048 put_page(page);
Chuck Lever873101b2006-08-22 20:06:23 -04002049 } else
2050 __free_page(page);
2051
Chuck Lever873101b2006-08-22 20:06:23 -04002052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04002054EXPORT_SYMBOL_GPL(nfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Bryan Schumaker597d9282012-07-16 16:39:10 -04002056int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
2058{
David Howells2b0143b2015-03-17 22:25:59 +00002059 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 int error;
2061
Al Viro6de14722013-09-16 10:53:17 -04002062 dfprintk(VFS, "NFS: link(%pd2 -> %pd2)\n",
2063 old_dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Trond Myklebust1fd10852013-08-21 13:54:44 -04002065 trace_nfs_link_enter(inode, dir, dentry);
Trond Myklebust9697d232007-10-02 21:58:05 -04002066 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
Trond Myklebustcf809552005-10-27 22:12:42 -04002068 if (error == 0) {
Al Viro7de9c6ee2010-10-23 11:11:40 -04002069 ihold(inode);
Trond Myklebust9697d232007-10-02 21:58:05 -04002070 d_add(dentry, inode);
Trond Myklebustcf809552005-10-27 22:12:42 -04002071 }
Trond Myklebust1fd10852013-08-21 13:54:44 -04002072 trace_nfs_link_exit(inode, dir, dentry, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return error;
2074}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04002075EXPORT_SYMBOL_GPL(nfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077/*
2078 * RENAME
2079 * FIXME: Some nfsds, like the Linux user space nfsd, may generate a
2080 * different file handle for the same inode after a rename (e.g. when
2081 * moving to a different directory). A fail-safe method to do so would
2082 * be to look up old_dir/old_name, create a link to new_dir/new_name and
2083 * rename the old file using the sillyrename stuff. This way, the original
2084 * file in old_dir will go away when the last process iput()s the inode.
2085 *
2086 * FIXED.
2087 *
2088 * It actually works quite well. One needs to have the possibility for
2089 * at least one ".nfs..." file in each directory the file ever gets
2090 * moved or linked to which happens automagically with the new
2091 * implementation that only depends on the dcache stuff instead of
2092 * using the inode layer
2093 *
2094 * Unfortunately, things are a little more complicated than indicated
2095 * above. For a cross-directory move, we want to make sure we can get
2096 * rid of the old inode after the operation. This means there must be
2097 * no pending writes (if it's a file), and the use count must be 1.
2098 * If these conditions are met, we can drop the dentries before doing
2099 * the rename.
2100 */
Bryan Schumaker597d9282012-07-16 16:39:10 -04002101int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02002102 struct inode *new_dir, struct dentry *new_dentry,
2103 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
David Howells2b0143b2015-03-17 22:25:59 +00002105 struct inode *old_inode = d_inode(old_dentry);
2106 struct inode *new_inode = d_inode(new_dentry);
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002107 struct dentry *dentry = NULL, *rehash = NULL;
Jeff Layton80a491f2014-03-17 07:06:56 -04002108 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 int error = -EBUSY;
2110
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02002111 if (flags)
2112 return -EINVAL;
2113
Al Viro6de14722013-09-16 10:53:17 -04002114 dfprintk(VFS, "NFS: rename(%pd2 -> %pd2, ct=%d)\n",
2115 old_dentry, new_dentry,
Al Viro84d08fa2013-07-05 18:59:33 +04002116 d_count(new_dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Trond Myklebust70ded202013-08-21 12:08:45 -04002118 trace_nfs_rename_enter(old_dir, old_dentry, new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 /*
Miklos Szeredi28f79a12009-12-03 15:58:56 -05002120 * For non-directories, check whether the target is busy and if so,
2121 * make a copy of the dentry and then do a silly-rename. If the
2122 * silly-rename succeeds, the copied dentry is hashed and becomes
2123 * the new target.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 */
Miklos Szeredi27226102009-12-03 15:58:56 -05002125 if (new_inode && !S_ISDIR(new_inode->i_mode)) {
2126 /*
2127 * To prevent any new references to the target during the
2128 * rename, we unhash the dentry in advance.
2129 */
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002130 if (!d_unhashed(new_dentry)) {
Miklos Szeredi27226102009-12-03 15:58:56 -05002131 d_drop(new_dentry);
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002132 rehash = new_dentry;
2133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Al Viro84d08fa2013-07-05 18:59:33 +04002135 if (d_count(new_dentry) > 2) {
Miklos Szeredi27226102009-12-03 15:58:56 -05002136 int err;
2137
2138 /* copy the target dentry's name */
2139 dentry = d_alloc(new_dentry->d_parent,
2140 &new_dentry->d_name);
2141 if (!dentry)
2142 goto out;
2143
2144 /* silly-rename the existing target ... */
2145 err = nfs_sillyrename(new_dir, new_dentry);
Miklos Szeredi24e93022009-12-03 15:58:56 -05002146 if (err)
Miklos Szeredi27226102009-12-03 15:58:56 -05002147 goto out;
Miklos Szeredi24e93022009-12-03 15:58:56 -05002148
2149 new_dentry = dentry;
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002150 rehash = NULL;
Miklos Szeredi24e93022009-12-03 15:58:56 -05002151 new_inode = NULL;
Miklos Szeredi27226102009-12-03 15:58:56 -05002152 }
Trond Myklebustb1e4adf2009-03-19 15:35:49 -04002153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002155 task = nfs_async_rename(old_dir, new_dir, old_dentry, new_dentry, NULL);
Jeff Layton80a491f2014-03-17 07:06:56 -04002156 if (IS_ERR(task)) {
2157 error = PTR_ERR(task);
2158 goto out;
2159 }
2160
2161 error = rpc_wait_for_completion_task(task);
Benjamin Coddington818a8db2017-06-16 11:13:00 -04002162 if (error != 0) {
2163 ((struct nfs_renamedata *)task->tk_calldata)->cancelled = 1;
2164 /* Paired with the atomic_dec_and_test() barrier in rpc_do_put_task() */
2165 smp_wmb();
2166 } else
Jeff Layton80a491f2014-03-17 07:06:56 -04002167 error = task->tk_status;
2168 rpc_put_task(task);
Trond Myklebust59a707b2018-04-08 18:11:18 -04002169 /* Ensure the inode attributes are revalidated */
2170 if (error == 0) {
2171 spin_lock(&old_inode->i_lock);
2172 NFS_I(old_inode)->attr_gencount = nfs_inc_attr_generation_counter();
2173 NFS_I(old_inode)->cache_validity |= NFS_INO_INVALID_CHANGE
2174 | NFS_INO_INVALID_CTIME
2175 | NFS_INO_REVAL_FORCED;
2176 spin_unlock(&old_inode->i_lock);
2177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178out:
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002179 if (rehash)
2180 d_rehash(rehash);
Trond Myklebust70ded202013-08-21 12:08:45 -04002181 trace_nfs_rename_exit(old_dir, old_dentry,
2182 new_dir, new_dentry, error);
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002183 if (!error) {
2184 if (new_inode != NULL)
2185 nfs_drop_nlink(new_inode);
2186 /*
2187 * The d_move() should be here instead of in an async RPC completion
2188 * handler because we need the proper locks to move the dentry. If
2189 * we're interrupted by a signal, the async RPC completion handler
2190 * should mark the directories for revalidation.
2191 */
2192 d_move(old_dentry, new_dentry);
Trond Myklebustd8032242017-11-06 15:28:04 -05002193 nfs_set_verifier(old_dentry,
Benjamin Coddingtond9f29502017-06-16 11:12:59 -04002194 nfs_save_change_attribute(new_dir));
2195 } else if (error == -ENOENT)
2196 nfs_dentry_handle_enoent(old_dentry);
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 /* new dentry created? */
2199 if (dentry)
2200 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 return error;
2202}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04002203EXPORT_SYMBOL_GPL(nfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002205static DEFINE_SPINLOCK(nfs_access_lru_lock);
2206static LIST_HEAD(nfs_access_lru_list);
2207static atomic_long_t nfs_access_nr_entries;
2208
Trond Myklebust3a505842014-07-21 13:53:48 -04002209static unsigned long nfs_access_max_cachesize = ULONG_MAX;
2210module_param(nfs_access_max_cachesize, ulong, 0644);
2211MODULE_PARM_DESC(nfs_access_max_cachesize, "NFS access maximum total cache length");
2212
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002213static void nfs_access_free_entry(struct nfs_access_entry *entry)
2214{
NeilBrownb68572e2018-12-03 11:30:30 +11002215 put_cred(entry->cred);
NeilBrownf682a392014-07-14 11:28:20 +10002216 kfree_rcu(entry, rcu_head);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002217 smp_mb__before_atomic();
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002218 atomic_long_dec(&nfs_access_nr_entries);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002219 smp_mb__after_atomic();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002220}
2221
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002222static void nfs_access_free_list(struct list_head *head)
2223{
2224 struct nfs_access_entry *cache;
2225
2226 while (!list_empty(head)) {
2227 cache = list_entry(head->next, struct nfs_access_entry, lru);
2228 list_del(&cache->lru);
2229 nfs_access_free_entry(cache);
2230 }
2231}
2232
Trond Myklebust3a505842014-07-21 13:53:48 -04002233static unsigned long
2234nfs_do_access_cache_scan(unsigned int nr_to_scan)
Trond Myklebust979df722006-07-25 11:28:19 -04002235{
2236 LIST_HEAD(head);
Trond Myklebustaa510da2010-09-29 15:11:56 -04002237 struct nfs_inode *nfsi, *next;
Trond Myklebust979df722006-07-25 11:28:19 -04002238 struct nfs_access_entry *cache;
Dave Chinner1ab6c492013-08-28 10:18:09 +10002239 long freed = 0;
Trond Myklebust979df722006-07-25 11:28:19 -04002240
Trond Myklebusta50f7952007-06-05 19:23:43 -04002241 spin_lock(&nfs_access_lru_lock);
Trond Myklebustaa510da2010-09-29 15:11:56 -04002242 list_for_each_entry_safe(nfsi, next, &nfs_access_lru_list, access_cache_inode_lru) {
Trond Myklebust979df722006-07-25 11:28:19 -04002243 struct inode *inode;
2244
2245 if (nr_to_scan-- == 0)
2246 break;
Trond Myklebust9c7e7e22010-05-13 12:51:06 -04002247 inode = &nfsi->vfs_inode;
Trond Myklebust979df722006-07-25 11:28:19 -04002248 spin_lock(&inode->i_lock);
2249 if (list_empty(&nfsi->access_cache_entry_lru))
2250 goto remove_lru_entry;
2251 cache = list_entry(nfsi->access_cache_entry_lru.next,
2252 struct nfs_access_entry, lru);
2253 list_move(&cache->lru, &head);
2254 rb_erase(&cache->rb_node, &nfsi->access_cache);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002255 freed++;
Trond Myklebust979df722006-07-25 11:28:19 -04002256 if (!list_empty(&nfsi->access_cache_entry_lru))
2257 list_move_tail(&nfsi->access_cache_inode_lru,
2258 &nfs_access_lru_list);
2259 else {
2260remove_lru_entry:
2261 list_del_init(&nfsi->access_cache_inode_lru);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002262 smp_mb__before_atomic();
Trond Myklebust979df722006-07-25 11:28:19 -04002263 clear_bit(NFS_INO_ACL_LRU_SET, &nfsi->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002264 smp_mb__after_atomic();
Trond Myklebust979df722006-07-25 11:28:19 -04002265 }
Trond Myklebust59844a92010-05-26 08:42:24 -04002266 spin_unlock(&inode->i_lock);
Trond Myklebust979df722006-07-25 11:28:19 -04002267 }
2268 spin_unlock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002269 nfs_access_free_list(&head);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002270 return freed;
2271}
2272
2273unsigned long
Trond Myklebust3a505842014-07-21 13:53:48 -04002274nfs_access_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
2275{
2276 int nr_to_scan = sc->nr_to_scan;
2277 gfp_t gfp_mask = sc->gfp_mask;
2278
2279 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
2280 return SHRINK_STOP;
2281 return nfs_do_access_cache_scan(nr_to_scan);
2282}
2283
2284
2285unsigned long
Dave Chinner1ab6c492013-08-28 10:18:09 +10002286nfs_access_cache_count(struct shrinker *shrink, struct shrink_control *sc)
2287{
Glauber Costa55f841c2013-08-28 10:17:53 +10002288 return vfs_pressure_ratio(atomic_long_read(&nfs_access_nr_entries));
Trond Myklebust979df722006-07-25 11:28:19 -04002289}
2290
Trond Myklebust3a505842014-07-21 13:53:48 -04002291static void
2292nfs_access_cache_enforce_limit(void)
2293{
2294 long nr_entries = atomic_long_read(&nfs_access_nr_entries);
2295 unsigned long diff;
2296 unsigned int nr_to_scan;
2297
2298 if (nr_entries < 0 || nr_entries <= nfs_access_max_cachesize)
2299 return;
2300 nr_to_scan = 100;
2301 diff = nr_entries - nfs_access_max_cachesize;
2302 if (diff < nr_to_scan)
2303 nr_to_scan = diff;
2304 nfs_do_access_cache_scan(nr_to_scan);
2305}
2306
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002307static void __nfs_access_zap_cache(struct nfs_inode *nfsi, struct list_head *head)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002308{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002309 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002310 struct rb_node *n;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002311 struct nfs_access_entry *entry;
2312
2313 /* Unhook entries from the cache */
2314 while ((n = rb_first(root_node)) != NULL) {
2315 entry = rb_entry(n, struct nfs_access_entry, rb_node);
2316 rb_erase(n, root_node);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002317 list_move(&entry->lru, head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002318 }
2319 nfsi->cache_validity &= ~NFS_INO_INVALID_ACCESS;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002320}
2321
2322void nfs_access_zap_cache(struct inode *inode)
2323{
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002324 LIST_HEAD(head);
2325
2326 if (test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags) == 0)
2327 return;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002328 /* Remove from global LRU init */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002329 spin_lock(&nfs_access_lru_lock);
2330 if (test_and_clear_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002331 list_del_init(&NFS_I(inode)->access_cache_inode_lru);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002332
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002333 spin_lock(&inode->i_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002334 __nfs_access_zap_cache(NFS_I(inode), &head);
2335 spin_unlock(&inode->i_lock);
2336 spin_unlock(&nfs_access_lru_lock);
2337 nfs_access_free_list(&head);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002338}
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04002339EXPORT_SYMBOL_GPL(nfs_access_zap_cache);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002340
NeilBrownb68572e2018-12-03 11:30:30 +11002341static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, const struct cred *cred)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002342{
2343 struct rb_node *n = NFS_I(inode)->access_cache.rb_node;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002344
2345 while (n != NULL) {
NeilBrownb68572e2018-12-03 11:30:30 +11002346 struct nfs_access_entry *entry =
2347 rb_entry(n, struct nfs_access_entry, rb_node);
2348 int cmp = cred_fscmp(cred, entry->cred);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002349
NeilBrownb68572e2018-12-03 11:30:30 +11002350 if (cmp < 0)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002351 n = n->rb_left;
NeilBrownb68572e2018-12-03 11:30:30 +11002352 else if (cmp > 0)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002353 n = n->rb_right;
2354 else
2355 return entry;
2356 }
2357 return NULL;
2358}
2359
NeilBrownb68572e2018-12-03 11:30:30 +11002360static int nfs_access_get_cached(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res, bool may_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Chuck Lever55296802005-08-18 11:24:09 -07002362 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002363 struct nfs_access_entry *cache;
Trond Myklebust57b69182016-06-03 17:07:19 -04002364 bool retry = true;
2365 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002367 spin_lock(&inode->i_lock);
Trond Myklebust57b69182016-06-03 17:07:19 -04002368 for(;;) {
2369 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2370 goto out_zap;
2371 cache = nfs_access_search_rbtree(inode, cred);
2372 err = -ENOENT;
2373 if (cache == NULL)
2374 goto out;
2375 /* Found an entry, is our attribute cache valid? */
Trond Myklebust21c3ba72016-12-16 18:40:03 -05002376 if (!nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS))
Trond Myklebust57b69182016-06-03 17:07:19 -04002377 break;
2378 err = -ECHILD;
2379 if (!may_block)
2380 goto out;
2381 if (!retry)
2382 goto out_zap;
2383 spin_unlock(&inode->i_lock);
2384 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
2385 if (err)
2386 return err;
2387 spin_lock(&inode->i_lock);
2388 retry = false;
2389 }
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002390 res->cred = cache->cred;
2391 res->mask = cache->mask;
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002392 list_move_tail(&cache->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002393 err = 0;
2394out:
2395 spin_unlock(&inode->i_lock);
2396 return err;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002397out_zap:
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002398 spin_unlock(&inode->i_lock);
2399 nfs_access_zap_cache(inode);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002400 return -ENOENT;
2401}
2402
NeilBrownb68572e2018-12-03 11:30:30 +11002403static int nfs_access_get_cached_rcu(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res)
NeilBrownf682a392014-07-14 11:28:20 +10002404{
2405 /* Only check the most recently returned cache entry,
2406 * but do it without locking.
2407 */
2408 struct nfs_inode *nfsi = NFS_I(inode);
2409 struct nfs_access_entry *cache;
2410 int err = -ECHILD;
2411 struct list_head *lh;
2412
2413 rcu_read_lock();
2414 if (nfsi->cache_validity & NFS_INO_INVALID_ACCESS)
2415 goto out;
2416 lh = rcu_dereference(nfsi->access_cache_entry_lru.prev);
2417 cache = list_entry(lh, struct nfs_access_entry, lru);
2418 if (lh == &nfsi->access_cache_entry_lru ||
2419 cred != cache->cred)
2420 cache = NULL;
2421 if (cache == NULL)
2422 goto out;
Trond Myklebust21c3ba72016-12-16 18:40:03 -05002423 if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_ACCESS))
NeilBrownf682a392014-07-14 11:28:20 +10002424 goto out;
NeilBrownf682a392014-07-14 11:28:20 +10002425 res->cred = cache->cred;
2426 res->mask = cache->mask;
Trond Myklebust21c3ba72016-12-16 18:40:03 -05002427 err = 0;
NeilBrownf682a392014-07-14 11:28:20 +10002428out:
2429 rcu_read_unlock();
2430 return err;
2431}
2432
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002433static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set)
2434{
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002435 struct nfs_inode *nfsi = NFS_I(inode);
2436 struct rb_root *root_node = &nfsi->access_cache;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002437 struct rb_node **p = &root_node->rb_node;
2438 struct rb_node *parent = NULL;
2439 struct nfs_access_entry *entry;
NeilBrownb68572e2018-12-03 11:30:30 +11002440 int cmp;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002441
2442 spin_lock(&inode->i_lock);
2443 while (*p != NULL) {
2444 parent = *p;
2445 entry = rb_entry(parent, struct nfs_access_entry, rb_node);
NeilBrownb68572e2018-12-03 11:30:30 +11002446 cmp = cred_fscmp(set->cred, entry->cred);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002447
NeilBrownb68572e2018-12-03 11:30:30 +11002448 if (cmp < 0)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002449 p = &parent->rb_left;
NeilBrownb68572e2018-12-03 11:30:30 +11002450 else if (cmp > 0)
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002451 p = &parent->rb_right;
2452 else
2453 goto found;
2454 }
2455 rb_link_node(&set->rb_node, parent, p);
2456 rb_insert_color(&set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002457 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002458 spin_unlock(&inode->i_lock);
2459 return;
2460found:
2461 rb_replace_node(parent, &set->rb_node, root_node);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002462 list_add_tail(&set->lru, &nfsi->access_cache_entry_lru);
2463 list_del(&entry->lru);
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002464 spin_unlock(&inode->i_lock);
2465 nfs_access_free_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002468void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002470 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL);
2471 if (cache == NULL)
2472 return;
2473 RB_CLEAR_NODE(&cache->rb_node);
NeilBrownb68572e2018-12-03 11:30:30 +11002474 cache->cred = get_cred(set->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 cache->mask = set->mask;
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002476
NeilBrownf682a392014-07-14 11:28:20 +10002477 /* The above field assignments must be visible
2478 * before this item appears on the lru. We cannot easily
2479 * use rcu_assign_pointer, so just force the memory barrier.
2480 */
2481 smp_wmb();
Trond Myklebust1c3c07e2006-07-25 11:28:18 -04002482 nfs_access_add_rbtree(inode, cache);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002483
2484 /* Update accounting */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002485 smp_mb__before_atomic();
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002486 atomic_long_inc(&nfs_access_nr_entries);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002487 smp_mb__after_atomic();
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002488
2489 /* Add inode to global LRU list */
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002490 if (!test_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags)) {
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002491 spin_lock(&nfs_access_lru_lock);
Trond Myklebust1a81bb82010-05-13 12:51:06 -04002492 if (!test_and_set_bit(NFS_INO_ACL_LRU_SET, &NFS_I(inode)->flags))
2493 list_add_tail(&NFS_I(inode)->access_cache_inode_lru,
2494 &nfs_access_lru_list);
Trond Myklebustcfcea3e2006-07-25 11:28:18 -04002495 spin_unlock(&nfs_access_lru_lock);
2496 }
Trond Myklebust3a505842014-07-21 13:53:48 -04002497 nfs_access_cache_enforce_limit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002499EXPORT_SYMBOL_GPL(nfs_access_add_cache);
2500
Anna Schumaker3c181822017-07-26 10:14:55 -04002501#define NFS_MAY_READ (NFS_ACCESS_READ)
2502#define NFS_MAY_WRITE (NFS_ACCESS_MODIFY | \
2503 NFS_ACCESS_EXTEND | \
2504 NFS_ACCESS_DELETE)
2505#define NFS_FILE_MAY_WRITE (NFS_ACCESS_MODIFY | \
2506 NFS_ACCESS_EXTEND)
Trond Myklebustecbb9032017-07-11 17:54:35 -04002507#define NFS_DIR_MAY_WRITE NFS_MAY_WRITE
Anna Schumaker3c181822017-07-26 10:14:55 -04002508#define NFS_MAY_LOOKUP (NFS_ACCESS_LOOKUP)
2509#define NFS_MAY_EXECUTE (NFS_ACCESS_EXECUTE)
Trond Myklebust15d4b732017-07-11 17:54:32 -04002510static int
Trond Myklebustecbb9032017-07-11 17:54:35 -04002511nfs_access_calc_mask(u32 access_result, umode_t umode)
Trond Myklebust15d4b732017-07-11 17:54:32 -04002512{
2513 int mask = 0;
2514
2515 if (access_result & NFS_MAY_READ)
2516 mask |= MAY_READ;
Trond Myklebustecbb9032017-07-11 17:54:35 -04002517 if (S_ISDIR(umode)) {
2518 if ((access_result & NFS_DIR_MAY_WRITE) == NFS_DIR_MAY_WRITE)
2519 mask |= MAY_WRITE;
2520 if ((access_result & NFS_MAY_LOOKUP) == NFS_MAY_LOOKUP)
2521 mask |= MAY_EXEC;
2522 } else if (S_ISREG(umode)) {
2523 if ((access_result & NFS_FILE_MAY_WRITE) == NFS_FILE_MAY_WRITE)
2524 mask |= MAY_WRITE;
2525 if ((access_result & NFS_MAY_EXECUTE) == NFS_MAY_EXECUTE)
2526 mask |= MAY_EXEC;
2527 } else if (access_result & NFS_MAY_WRITE)
2528 mask |= MAY_WRITE;
Trond Myklebust15d4b732017-07-11 17:54:32 -04002529 return mask;
2530}
2531
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002532void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result)
2533{
Trond Myklebustbd8b2442017-07-11 17:54:34 -04002534 entry->mask = access_result;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002535}
2536EXPORT_SYMBOL_GPL(nfs_access_set_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
NeilBrownb68572e2018-12-03 11:30:30 +11002538static int nfs_do_access(struct inode *inode, const struct cred *cred, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
2540 struct nfs_access_entry cache;
Trond Myklebust57b69182016-06-03 17:07:19 -04002541 bool may_block = (mask & MAY_NOT_BLOCK) == 0;
Trond Myklebustbd8b2442017-07-11 17:54:34 -04002542 int cache_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 int status;
2544
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002545 trace_nfs_access_enter(inode);
2546
NeilBrownf682a392014-07-14 11:28:20 +10002547 status = nfs_access_get_cached_rcu(inode, cred, &cache);
2548 if (status != 0)
Trond Myklebust57b69182016-06-03 17:07:19 -04002549 status = nfs_access_get_cached(inode, cred, &cache, may_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (status == 0)
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002551 goto out_cached;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
NeilBrownf3324a22014-07-14 11:28:20 +10002553 status = -ECHILD;
Trond Myklebust57b69182016-06-03 17:07:19 -04002554 if (!may_block)
NeilBrownf3324a22014-07-14 11:28:20 +10002555 goto out;
2556
Anna Schumaker1750d922017-07-26 12:00:21 -04002557 /*
2558 * Determine which access bits we want to ask for...
2559 */
2560 cache.mask = NFS_ACCESS_READ | NFS_ACCESS_MODIFY | NFS_ACCESS_EXTEND;
2561 if (S_ISDIR(inode->i_mode))
2562 cache.mask |= NFS_ACCESS_DELETE | NFS_ACCESS_LOOKUP;
2563 else
2564 cache.mask |= NFS_ACCESS_EXECUTE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 cache.cred = cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 status = NFS_PROTO(inode)->access(inode, &cache);
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002567 if (status != 0) {
2568 if (status == -ESTALE) {
2569 nfs_zap_caches(inode);
2570 if (!S_ISDIR(inode->i_mode))
2571 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
2572 }
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002573 goto out;
Suresh Jayaramana71ee332009-03-10 20:33:21 -04002574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 nfs_access_add_cache(inode, &cache);
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002576out_cached:
Trond Myklebustecbb9032017-07-11 17:54:35 -04002577 cache_mask = nfs_access_calc_mask(cache.mask, inode->i_mode);
Trond Myklebustbd8b2442017-07-11 17:54:34 -04002578 if ((mask & ~cache_mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) != 0)
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002579 status = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580out:
Trond Myklebustf4ce1292013-08-19 18:59:33 -04002581 trace_nfs_access_exit(inode, status);
2582 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
2584
Trond Myklebustaf22f942007-08-10 17:45:10 -04002585static int nfs_open_permission_mask(int openflags)
2586{
2587 int mask = 0;
2588
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002589 if (openflags & __FMODE_EXEC) {
2590 /* ONLY check exec rights */
2591 mask = MAY_EXEC;
2592 } else {
2593 if ((openflags & O_ACCMODE) != O_WRONLY)
2594 mask |= MAY_READ;
2595 if ((openflags & O_ACCMODE) != O_RDONLY)
2596 mask |= MAY_WRITE;
2597 }
2598
Trond Myklebustaf22f942007-08-10 17:45:10 -04002599 return mask;
2600}
2601
NeilBrownb68572e2018-12-03 11:30:30 +11002602int nfs_may_open(struct inode *inode, const struct cred *cred, int openflags)
Trond Myklebustaf22f942007-08-10 17:45:10 -04002603{
2604 return nfs_do_access(inode, cred, nfs_open_permission_mask(openflags));
2605}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002606EXPORT_SYMBOL_GPL(nfs_may_open);
Trond Myklebustaf22f942007-08-10 17:45:10 -04002607
Trond Myklebust5c5fc092015-12-28 19:30:05 -05002608static int nfs_execute_ok(struct inode *inode, int mask)
2609{
2610 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust21c3ba72016-12-16 18:40:03 -05002611 int ret = 0;
Trond Myklebust5c5fc092015-12-28 19:30:05 -05002612
Trond Myklebust38258272018-07-24 14:27:11 -04002613 if (S_ISDIR(inode->i_mode))
2614 return 0;
Trond Myklebustcf834022018-07-20 16:19:35 -04002615 if (nfs_check_cache_invalid(inode, NFS_INO_INVALID_OTHER)) {
Trond Myklebust21c3ba72016-12-16 18:40:03 -05002616 if (mask & MAY_NOT_BLOCK)
2617 return -ECHILD;
2618 ret = __nfs_revalidate_inode(server, inode);
2619 }
Trond Myklebust5c5fc092015-12-28 19:30:05 -05002620 if (ret == 0 && !execute_ok(inode))
2621 ret = -EACCES;
2622 return ret;
2623}
2624
Al Viro10556cb22011-06-20 19:28:19 -04002625int nfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
NeilBrownb68572e2018-12-03 11:30:30 +11002627 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 int res = 0;
2629
Chuck Lever91d5b472006-03-20 13:44:14 -05002630 nfs_inc_stats(inode, NFSIOS_VFSACCESS);
2631
Al Viroe6305c42008-07-15 21:03:57 -04002632 if ((mask & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 goto out;
2634 /* Is this sys_access() ? */
Eric Paris9cfcac82010-07-23 11:43:51 -04002635 if (mask & (MAY_ACCESS | MAY_CHDIR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 goto force_lookup;
2637
2638 switch (inode->i_mode & S_IFMT) {
2639 case S_IFLNK:
2640 goto out;
2641 case S_IFREG:
Trond Myklebust762674f2015-12-26 21:54:58 -05002642 if ((mask & MAY_OPEN) &&
2643 nfs_server_capable(inode, NFS_CAP_ATOMIC_OPEN))
2644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 break;
2646 case S_IFDIR:
2647 /*
2648 * Optimize away all write operations, since the server
2649 * will check permissions when we perform the op.
2650 */
2651 if ((mask & MAY_WRITE) && !(mask & MAY_READ))
2652 goto out;
2653 }
2654
2655force_lookup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 if (!NFS_PROTO(inode)->access)
2657 goto out_notsup;
2658
NeilBrownf3324a22014-07-14 11:28:20 +10002659 /* Always try fast lookups first */
2660 rcu_read_lock();
NeilBrownb68572e2018-12-03 11:30:30 +11002661 res = nfs_do_access(inode, cred, mask|MAY_NOT_BLOCK);
NeilBrownf3324a22014-07-14 11:28:20 +10002662 rcu_read_unlock();
2663 if (res == -ECHILD && !(mask & MAY_NOT_BLOCK)) {
2664 /* Fast lookup failed, try the slow way */
NeilBrownb68572e2018-12-03 11:30:30 +11002665 res = nfs_do_access(inode, cred, mask);
NeilBrownf3324a22014-07-14 11:28:20 +10002666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667out:
Trond Myklebust5c5fc092015-12-28 19:30:05 -05002668 if (!res && (mask & MAY_EXEC))
2669 res = nfs_execute_ok(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +02002670
Niels de Vos1e8968c2013-12-17 18:20:16 +01002671 dfprintk(VFS, "NFS: permission(%s/%lu), mask=0x%x, res=%d\n",
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002672 inode->i_sb->s_id, inode->i_ino, mask, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 return res;
2674out_notsup:
NeilBrownd51ac1a2014-07-14 11:28:20 +10002675 if (mask & MAY_NOT_BLOCK)
2676 return -ECHILD;
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 res = nfs_revalidate_inode(NFS_SERVER(inode), inode);
2679 if (res == 0)
Al Viro2830ba72011-06-20 19:16:29 -04002680 res = generic_permission(inode, mask);
Chuck Lever1e7cb3d2006-03-20 13:44:24 -05002681 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04002683EXPORT_SYMBOL_GPL(nfs_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685/*
2686 * Local variables:
2687 * version-control: t
2688 * kept-new-versions: 5
2689 * End:
2690 */