blob: dbfa18900e25a38a0998a2d429644a860c559ac2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/errno.h>
41#include <linux/string.h>
Trond Myklebust652f89f2011-12-09 19:05:58 -050042#include <linux/ratelimit.h>
43#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sunrpc/clnt.h>
46#include <linux/nfs.h>
47#include <linux/nfs4.h>
48#include <linux/nfs_fs.h>
49#include <linux/nfs_page.h>
Bryan Schumaker9b7160c2011-04-13 14:31:30 -040050#include <linux/nfs_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070052#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040053#include <linux/module.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000054#include <linux/xattr.h>
Andy Adamsonc7a360b2011-01-25 19:15:32 -050055#include <linux/utsname.h>
Jeff Laytond3103102011-12-01 22:44:39 +010056#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Trond Myklebust4ce79712005-06-22 17:16:21 +000058#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050060#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050061#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040062#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040063#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040064#include "netns.h"
Anna Schumaker40c64c22015-04-15 13:00:05 -040065#include "nfs4idmap.h"
Trond Myklebust73e39aa2012-11-26 12:49:34 -050066#include "nfs4session.h"
David Howellsde242c02012-12-20 21:52:38 +000067#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Trond Myklebustc6d01c62013-08-09 11:51:26 -040069#include "nfs4trace.h"
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define NFSDBG_FACILITY NFSDBG_PROC
72
Trond Myklebust2066fe82006-09-15 08:30:46 -040073#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define NFS4_POLL_RETRY_MAX (15*HZ)
75
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +020076/* file attributes which can be mapped to nfs attributes */
77#define NFS4_VALID_ATTRS (ATTR_MODE \
78 | ATTR_UID \
79 | ATTR_GID \
80 | ATTR_SIZE \
81 | ATTR_ATIME \
82 | ATTR_MTIME \
83 | ATTR_CTIME \
84 | ATTR_ATIME_SET \
85 | ATTR_MTIME_SET)
86
Trond Myklebustcdd4e682006-01-03 09:55:12 +010087struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010088static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080089static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Chuck Lever81934dd2012-03-01 17:01:57 -050091static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
David Quigley1775fd32013-05-22 12:50:42 -040092static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label);
93static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label);
Trond Myklebust0ab64e02010-04-16 16:22:51 -040094static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
95 struct nfs_fattr *fattr, struct iattr *sattr,
NeilBrown29b59f92016-10-13 15:26:47 +110096 struct nfs_open_context *ctx, struct nfs4_label *ilabel,
David Quigley1775fd32013-05-22 12:50:42 -040097 struct nfs4_label *olabel);
Bryan Schumakerf062eb62011-06-02 14:59:10 -040098#ifdef CONFIG_NFS_V4_1
Trond Myklebustab7cb0d2013-05-20 11:20:27 -040099static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
100 struct rpc_cred *);
Trond Myklebustf0b0bf82016-09-22 13:39:04 -0400101static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *,
102 struct rpc_cred *, bool);
Bryan Schumakerf062eb62011-06-02 14:59:10 -0400103#endif
David Quigleyaa9c2662013-05-22 12:50:44 -0400104
105#ifdef CONFIG_NFS_V4_SECURITY_LABEL
106static inline struct nfs4_label *
107nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
108 struct iattr *sattr, struct nfs4_label *label)
109{
110 int err;
111
112 if (label == NULL)
113 return NULL;
114
115 if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
116 return NULL;
117
David Quigleyaa9c2662013-05-22 12:50:44 -0400118 err = security_dentry_init_security(dentry, sattr->ia_mode,
119 &dentry->d_name, (void **)&label->label, &label->len);
120 if (err == 0)
121 return label;
122
123 return NULL;
124}
125static inline void
126nfs4_label_release_security(struct nfs4_label *label)
127{
128 if (label)
129 security_release_secctx(label->label, label->len);
130}
131static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
132{
133 if (label)
134 return server->attr_bitmask;
135
136 return server->attr_bitmask_nl;
137}
138#else
139static inline struct nfs4_label *
140nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
141 struct iattr *sattr, struct nfs4_label *l)
142{ return NULL; }
143static inline void
144nfs4_label_release_security(struct nfs4_label *label)
145{ return; }
146static inline u32 *
147nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
148{ return server->attr_bitmask; }
149#endif
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -0500152static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Trond Myklebust52567b02009-10-23 14:46:42 -0400154 if (err >= -1000)
155 return err;
156 switch (err) {
157 case -NFS4ERR_RESOURCE:
Weston Andros Adamson30005122013-02-28 20:30:10 -0500158 case -NFS4ERR_LAYOUTTRYLATER:
159 case -NFS4ERR_RECALLCONFLICT:
Trond Myklebust52567b02009-10-23 14:46:42 -0400160 return -EREMOTEIO;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000161 case -NFS4ERR_WRONGSEC:
Weston Andros Adamson88975382013-08-13 16:37:38 -0400162 case -NFS4ERR_WRONG_CRED:
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000163 return -EPERM;
Trond Myklebust3ddeb7c2011-02-22 15:44:31 -0800164 case -NFS4ERR_BADOWNER:
165 case -NFS4ERR_BADNAME:
166 return -EINVAL;
Trond Myklebustfb13bfa2012-05-28 11:36:28 -0400167 case -NFS4ERR_SHARE_DENIED:
168 return -EACCES;
Steve Dicksonf25efd82012-06-06 14:12:07 -0400169 case -NFS4ERR_MINOR_VERS_MISMATCH:
170 return -EPROTONOSUPPORT;
Trond Myklebust6e3cf242013-03-23 15:22:45 -0400171 case -NFS4ERR_FILE_OPEN:
172 return -EBUSY;
Trond Myklebust52567b02009-10-23 14:46:42 -0400173 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700175 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -0400176 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Trond Myklebust52567b02009-10-23 14:46:42 -0400178 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181/*
182 * This is our standard bitmap for GETATTR requests.
183 */
Trond Myklebust1549210f2012-06-05 09:16:47 -0400184const u32 nfs4_fattr_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 FATTR4_WORD0_TYPE
186 | FATTR4_WORD0_CHANGE
187 | FATTR4_WORD0_SIZE
188 | FATTR4_WORD0_FSID
189 | FATTR4_WORD0_FILEID,
190 FATTR4_WORD1_MODE
191 | FATTR4_WORD1_NUMLINKS
192 | FATTR4_WORD1_OWNER
193 | FATTR4_WORD1_OWNER_GROUP
194 | FATTR4_WORD1_RAWDEV
195 | FATTR4_WORD1_SPACE_USED
196 | FATTR4_WORD1_TIME_ACCESS
197 | FATTR4_WORD1_TIME_METADATA
Anna Schumakerea96d1e2015-04-03 14:35:59 -0400198 | FATTR4_WORD1_TIME_MODIFY
199 | FATTR4_WORD1_MOUNTED_ON_FILEID,
David Quigleyaa9c2662013-05-22 12:50:44 -0400200#ifdef CONFIG_NFS_V4_SECURITY_LABEL
201 FATTR4_WORD2_SECURITY_LABEL
202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Trond Myklebust1549210f2012-06-05 09:16:47 -0400205static const u32 nfs4_pnfs_open_bitmap[3] = {
206 FATTR4_WORD0_TYPE
207 | FATTR4_WORD0_CHANGE
208 | FATTR4_WORD0_SIZE
209 | FATTR4_WORD0_FSID
210 | FATTR4_WORD0_FILEID,
211 FATTR4_WORD1_MODE
212 | FATTR4_WORD1_NUMLINKS
213 | FATTR4_WORD1_OWNER
214 | FATTR4_WORD1_OWNER_GROUP
215 | FATTR4_WORD1_RAWDEV
216 | FATTR4_WORD1_SPACE_USED
217 | FATTR4_WORD1_TIME_ACCESS
218 | FATTR4_WORD1_TIME_METADATA
219 | FATTR4_WORD1_TIME_MODIFY,
220 FATTR4_WORD2_MDSTHRESHOLD
Trond Myklebust95864c92015-12-26 15:06:03 -0500221#ifdef CONFIG_NFS_V4_SECURITY_LABEL
222 | FATTR4_WORD2_SECURITY_LABEL
223#endif
Trond Myklebust1549210f2012-06-05 09:16:47 -0400224};
225
Andy Adamsone23008e2012-10-02 21:07:32 -0400226static const u32 nfs4_open_noattr_bitmap[3] = {
227 FATTR4_WORD0_TYPE
Andy Adamsone23008e2012-10-02 21:07:32 -0400228 | FATTR4_WORD0_FILEID,
229};
230
David Quigleya09df2c2013-05-22 12:50:41 -0400231const u32 nfs4_statfs_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 FATTR4_WORD0_FILES_AVAIL
233 | FATTR4_WORD0_FILES_FREE
234 | FATTR4_WORD0_FILES_TOTAL,
235 FATTR4_WORD1_SPACE_AVAIL
236 | FATTR4_WORD1_SPACE_FREE
237 | FATTR4_WORD1_SPACE_TOTAL
238};
239
David Quigleya09df2c2013-05-22 12:50:41 -0400240const u32 nfs4_pathconf_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 FATTR4_WORD0_MAXLINK
242 | FATTR4_WORD0_MAXNAME,
243 0
244};
245
Fred Isamandae100c2011-07-30 20:52:37 -0400246const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 | FATTR4_WORD0_MAXREAD
248 | FATTR4_WORD0_MAXWRITE
249 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700250 FATTR4_WORD1_TIME_DELTA
Fred Isamandae100c2011-07-30 20:52:37 -0400251 | FATTR4_WORD1_FS_LAYOUT_TYPES,
252 FATTR4_WORD2_LAYOUT_BLKSIZE
Peng Tao2a92ee92015-09-26 02:24:37 +0800253 | FATTR4_WORD2_CLONE_BLKSIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254};
255
David Quigleya09df2c2013-05-22 12:50:41 -0400256const u32 nfs4_fs_locations_bitmap[3] = {
Manoj Naik830b8e32006-06-09 09:34:25 -0400257 FATTR4_WORD0_TYPE
258 | FATTR4_WORD0_CHANGE
259 | FATTR4_WORD0_SIZE
260 | FATTR4_WORD0_FSID
261 | FATTR4_WORD0_FILEID
262 | FATTR4_WORD0_FS_LOCATIONS,
263 FATTR4_WORD1_MODE
264 | FATTR4_WORD1_NUMLINKS
265 | FATTR4_WORD1_OWNER
266 | FATTR4_WORD1_OWNER_GROUP
267 | FATTR4_WORD1_RAWDEV
268 | FATTR4_WORD1_SPACE_USED
269 | FATTR4_WORD1_TIME_ACCESS
270 | FATTR4_WORD1_TIME_METADATA
271 | FATTR4_WORD1_TIME_MODIFY
David Quigleya09df2c2013-05-22 12:50:41 -0400272 | FATTR4_WORD1_MOUNTED_ON_FILEID,
Manoj Naik830b8e32006-06-09 09:34:25 -0400273};
274
Al Virobc4785c2006-10-19 23:28:51 -0700275static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct nfs4_readdir_arg *readdir)
277{
Al Viro0dbb4c62006-10-19 23:28:49 -0700278 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000281 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
283 return;
284 }
285
286 readdir->cookie = 0;
287 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
288 if (cookie == 2)
289 return;
290
291 /*
292 * NFSv4 servers do not return entries for '.' and '..'
293 * Therefore, we fake these entries here. We let '.'
294 * have cookie 0 and '..' have cookie 1. Note that
295 * when talking to the server, we always send cookie 0
296 * instead of 1 or 2.
297 */
Cong Wang2b86ce22011-11-25 23:14:33 +0800298 start = p = kmap_atomic(*readdir->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 if (cookie == 0) {
301 *p++ = xdr_one; /* next */
302 *p++ = xdr_zero; /* cookie, first word */
303 *p++ = xdr_one; /* cookie, second word */
304 *p++ = xdr_one; /* entry len */
305 memcpy(p, ".\0\0\0", 4); /* entry */
306 p++;
307 *p++ = xdr_one; /* bitmap length */
308 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
309 *p++ = htonl(8); /* attribute buffer length */
David Howells2b0143b2015-03-17 22:25:59 +0000310 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
313 *p++ = xdr_one; /* next */
314 *p++ = xdr_zero; /* cookie, first word */
315 *p++ = xdr_two; /* cookie, second word */
316 *p++ = xdr_two; /* entry len */
317 memcpy(p, "..\0\0", 4); /* entry */
318 p++;
319 *p++ = xdr_one; /* bitmap length */
320 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
321 *p++ = htonl(8); /* attribute buffer length */
David Howells2b0143b2015-03-17 22:25:59 +0000322 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 readdir->pgbase = (char *)p - (char *)start;
325 readdir->count -= readdir->pgbase;
Cong Wang2b86ce22011-11-25 23:14:33 +0800326 kunmap_atomic(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Trond Myklebust26d36302016-09-22 13:39:05 -0400329static void nfs4_test_and_free_stateid(struct nfs_server *server,
330 nfs4_stateid *stateid,
331 struct rpc_cred *cred)
332{
333 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
334
335 ops->test_and_free_expired(server, stateid, cred);
336}
337
338static void __nfs4_free_revoked_stateid(struct nfs_server *server,
339 nfs4_stateid *stateid,
340 struct rpc_cred *cred)
341{
342 stateid->type = NFS4_REVOKED_STATEID_TYPE;
343 nfs4_test_and_free_stateid(server, stateid, cred);
344}
345
346static void nfs4_free_revoked_stateid(struct nfs_server *server,
347 const nfs4_stateid *stateid,
348 struct rpc_cred *cred)
349{
350 nfs4_stateid tmp;
351
352 nfs4_stateid_copy(&tmp, stateid);
353 __nfs4_free_revoked_stateid(server, &tmp, cred);
354}
355
NeilBrown8478eaa2014-09-18 16:09:27 +1000356static long nfs4_update_delay(long *timeout)
357{
358 long ret;
359 if (!timeout)
360 return NFS4_POLL_RETRY_MAX;
361 if (*timeout <= 0)
362 *timeout = NFS4_POLL_RETRY_MIN;
363 if (*timeout > NFS4_POLL_RETRY_MAX)
364 *timeout = NFS4_POLL_RETRY_MAX;
365 ret = *timeout;
366 *timeout <<= 1;
367 return ret;
368}
369
Trond Myklebust65de8722008-12-23 15:21:44 -0500370static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
371{
372 int res = 0;
373
374 might_sleep();
375
NeilBrown8478eaa2014-09-18 16:09:27 +1000376 freezable_schedule_timeout_killable_unsafe(
377 nfs4_update_delay(timeout));
Trond Myklebust65de8722008-12-23 15:21:44 -0500378 if (fatal_signal_pending(current))
379 res = -ERESTARTSYS;
Trond Myklebust65de8722008-12-23 15:21:44 -0500380 return res;
381}
382
383/* This is the error handling routine for processes that are allowed
384 * to sleep.
385 */
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400386static int nfs4_do_handle_exception(struct nfs_server *server,
387 int errorcode, struct nfs4_exception *exception)
Trond Myklebust65de8722008-12-23 15:21:44 -0500388{
389 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500390 struct nfs4_state *state = exception->state;
Trond Myklebust8487c472016-06-26 08:44:35 -0400391 const nfs4_stateid *stateid = exception->stateid;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500392 struct inode *inode = exception->inode;
Trond Myklebust65de8722008-12-23 15:21:44 -0500393 int ret = errorcode;
394
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400395 exception->delay = 0;
396 exception->recovering = 0;
Trond Myklebust65de8722008-12-23 15:21:44 -0500397 exception->retry = 0;
Trond Myklebust272289a2016-09-22 13:39:15 -0400398
399 if (stateid == NULL && state != NULL)
400 stateid = &state->stateid;
401
Trond Myklebust65de8722008-12-23 15:21:44 -0500402 switch(errorcode) {
403 case 0:
404 return 0;
Trond Myklebust5ba12442015-06-16 11:26:35 -0400405 case -NFS4ERR_DELEG_REVOKED:
406 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust272289a2016-09-22 13:39:15 -0400407 case -NFS4ERR_EXPIRED:
Trond Myklebust5ba12442015-06-16 11:26:35 -0400408 case -NFS4ERR_BAD_STATEID:
Trond Myklebust272289a2016-09-22 13:39:15 -0400409 if (inode != NULL && stateid != NULL) {
410 nfs_inode_find_state_and_recover(inode,
411 stateid);
412 goto wait_on_recovery;
413 }
414 case -NFS4ERR_OPENMODE:
Trond Myklebust8487c472016-06-26 08:44:35 -0400415 if (inode) {
416 int err;
417
418 err = nfs_async_inode_return_delegation(inode,
419 stateid);
420 if (err == 0)
421 goto wait_on_recovery;
422 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
423 exception->retry = 1;
424 break;
425 }
426 }
Trond Myklebust3114ea72012-03-07 16:39:06 -0500427 if (state == NULL)
428 break;
Trond Myklebust5d422302013-03-14 16:57:48 -0400429 ret = nfs4_schedule_stateid_recovery(server, state);
430 if (ret < 0)
431 break;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500432 goto wait_on_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500433 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500434 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500435 nfs4_schedule_lease_recovery(clp);
436 goto wait_on_recovery;
Chuck Lever519ae252013-10-17 14:13:19 -0400437 case -NFS4ERR_MOVED:
438 ret = nfs4_schedule_migration_recovery(server);
439 if (ret < 0)
440 break;
441 goto wait_on_recovery;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -0400442 case -NFS4ERR_LEASE_MOVED:
443 nfs4_schedule_lease_moved_recovery(clp);
444 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500445#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400446 case -NFS4ERR_BADSESSION:
447 case -NFS4ERR_BADSLOT:
448 case -NFS4ERR_BAD_HIGH_SLOT:
449 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
450 case -NFS4ERR_DEADSESSION:
451 case -NFS4ERR_SEQ_FALSE_RETRY:
452 case -NFS4ERR_SEQ_MISORDERED:
453 dprintk("%s ERROR: %d Reset session\n", __func__,
454 errorcode);
Trond Myklebust9f594792012-05-27 13:02:53 -0400455 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
Bryan Schumaker399f11c2012-10-30 16:06:35 -0400456 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500457#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500458 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500459 if (exception->timeout > HZ) {
460 /* We have retried a decent amount, time to
461 * fail
462 */
463 ret = -EBUSY;
464 break;
465 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500466 case -NFS4ERR_DELAY:
Trond Myklebust2598ed32015-09-20 16:10:18 -0400467 nfs_inc_server_stats(server, NFSIOS_DELAY);
468 case -NFS4ERR_GRACE:
Trond Myklebuste85d7ee2016-07-14 18:46:24 -0400469 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -0400470 case -NFS4ERR_RECALLCONFLICT:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400471 exception->delay = 1;
472 return 0;
473
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400474 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust65de8722008-12-23 15:21:44 -0500475 case -NFS4ERR_OLD_STATEID:
476 exception->retry = 1;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800477 break;
478 case -NFS4ERR_BADOWNER:
479 /* The following works around a Linux server bug! */
480 case -NFS4ERR_BADNAME:
481 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
482 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
483 exception->retry = 1;
484 printk(KERN_WARNING "NFS: v4 server %s "
485 "does not accept raw "
486 "uid/gids. "
487 "Reenabling the idmapper.\n",
488 server->nfs_client->cl_hostname);
489 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500490 }
491 /* We failed to handle the error */
492 return nfs4_map_errors(ret);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500493wait_on_recovery:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400494 exception->recovering = 1;
495 return 0;
496}
497
498/* This is the error handling routine for processes that are allowed
499 * to sleep.
500 */
501int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
502{
503 struct nfs_client *clp = server->nfs_client;
504 int ret;
505
506 ret = nfs4_do_handle_exception(server, errorcode, exception);
507 if (exception->delay) {
508 ret = nfs4_delay(server->client, &exception->timeout);
509 goto out_retry;
510 }
511 if (exception->recovering) {
512 ret = nfs4_wait_clnt_recover(clp);
513 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
514 return -EIO;
515 goto out_retry;
516 }
517 return ret;
518out_retry:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500519 if (ret == 0)
520 exception->retry = 1;
521 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500522}
523
Trond Myklebust037fc982015-09-20 15:51:00 -0400524static int
525nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
526 int errorcode, struct nfs4_exception *exception)
527{
528 struct nfs_client *clp = server->nfs_client;
529 int ret;
530
531 ret = nfs4_do_handle_exception(server, errorcode, exception);
532 if (exception->delay) {
533 rpc_delay(task, nfs4_update_delay(&exception->timeout));
534 goto out_retry;
535 }
536 if (exception->recovering) {
537 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
538 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
539 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
540 goto out_retry;
541 }
542 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
543 ret = -EIO;
544 return ret;
545out_retry:
546 if (ret == 0)
547 exception->retry = 1;
548 return ret;
549}
550
551static int
552nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
553 struct nfs4_state *state, long *timeout)
554{
555 struct nfs4_exception exception = {
556 .state = state,
557 };
558
559 if (task->tk_status >= 0)
560 return 0;
561 if (timeout)
562 exception.timeout = *timeout;
563 task->tk_status = nfs4_async_handle_exception(task, server,
564 task->tk_status,
565 &exception);
566 if (exception.delay && timeout)
567 *timeout = exception.timeout;
568 if (exception.retry)
569 return -EAGAIN;
570 return 0;
571}
572
Weston Andros Adamsona5250de2013-09-03 15:18:49 -0400573/*
574 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
575 * or 'false' otherwise.
576 */
577static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
578{
579 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
Anna Schumakereeea5362017-01-11 16:01:21 -0500580 return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -0400581}
Trond Myklebust65de8722008-12-23 15:21:44 -0500582
Trond Myklebust452e9352010-07-31 14:29:06 -0400583static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 spin_lock(&clp->cl_lock);
586 if (time_before(clp->cl_last_renewal,timestamp))
587 clp->cl_last_renewal = timestamp;
588 spin_unlock(&clp->cl_lock);
589}
590
Trond Myklebust452e9352010-07-31 14:29:06 -0400591static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
592{
Trond Myklebustbe824162015-07-05 14:50:46 -0400593 struct nfs_client *clp = server->nfs_client;
594
595 if (!nfs4_has_session(clp))
596 do_renew_lease(clp, timestamp);
Trond Myklebust452e9352010-07-31 14:29:06 -0400597}
598
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400599struct nfs4_call_sync_data {
600 const struct nfs_server *seq_server;
601 struct nfs4_sequence_args *seq_args;
602 struct nfs4_sequence_res *seq_res;
603};
604
Trond Myklebustbe3a5d22015-06-23 19:51:55 +0800605void nfs4_init_sequence(struct nfs4_sequence_args *args,
606 struct nfs4_sequence_res *res, int cache_reply)
Chuck Levera9c92d62013-08-09 12:48:18 -0400607{
608 args->sa_slot = NULL;
609 args->sa_cache_this = cache_reply;
610 args->sa_privileged = 0;
611
612 res->sr_slot = NULL;
613}
614
615static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args)
616{
617 args->sa_privileged = 1;
618}
619
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400620static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
Chuck Lever3bd23842013-08-09 12:49:19 -0400621{
622 struct nfs4_slot *slot = res->sr_slot;
623 struct nfs4_slot_table *tbl;
624
Chuck Lever3bd23842013-08-09 12:49:19 -0400625 tbl = slot->table;
626 spin_lock(&tbl->slot_tbl_lock);
627 if (!nfs41_wake_and_assign_slot(tbl, slot))
628 nfs4_free_slot(tbl, slot);
629 spin_unlock(&tbl->slot_tbl_lock);
630
631 res->sr_slot = NULL;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400632}
633
634static int nfs40_sequence_done(struct rpc_task *task,
635 struct nfs4_sequence_res *res)
636{
637 if (res->sr_slot != NULL)
638 nfs40_sequence_free_slot(res);
Chuck Lever3bd23842013-08-09 12:49:19 -0400639 return 1;
640}
641
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400642#if defined(CONFIG_NFS_V4_1)
643
Trond Myklebustd185a332010-06-16 09:52:25 -0400644static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400645{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500646 struct nfs4_session *session;
Andy Adamson13615872009-04-01 09:22:17 -0400647 struct nfs4_slot_table *tbl;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500648 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500649 bool send_new_highest_used_slotid = false;
Andy Adamson13615872009-04-01 09:22:17 -0400650
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500651 tbl = slot->table;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500652 session = tbl->session;
Andy Adamsonea028ac2009-12-04 15:55:38 -0500653
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400654 /* Bump the slot sequence number */
655 if (slot->seq_done)
656 slot->seq_nr++;
657 slot->seq_done = 0;
658
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500659 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500660 /* Be nice to the server: try to ensure that the last transmitted
661 * value for highest_user_slotid <= target_highest_slotid
662 */
663 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
664 send_new_highest_used_slotid = true;
665
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500666 if (nfs41_wake_and_assign_slot(tbl, slot)) {
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500667 send_new_highest_used_slotid = false;
668 goto out_unlock;
669 }
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500670 nfs4_free_slot(tbl, slot);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500671
672 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
673 send_new_highest_used_slotid = false;
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500674out_unlock:
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500675 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400676 res->sr_slot = NULL;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500677 if (send_new_highest_used_slotid)
Anna Schumaker3f10a6a2015-07-13 14:01:31 -0400678 nfs41_notify_server(session->clp);
Trond Myklebust045d2a62016-08-28 13:25:43 -0400679 if (waitqueue_active(&tbl->slot_waitq))
680 wake_up_all(&tbl->slot_waitq);
Andy Adamson13615872009-04-01 09:22:17 -0400681}
682
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400683static int nfs41_sequence_process(struct rpc_task *task,
684 struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400685{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500686 struct nfs4_session *session;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500687 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebust14516c32010-07-31 14:29:06 -0400688 struct nfs_client *clp;
Trond Myklebustac20d162012-12-15 15:36:07 -0500689 bool interrupted = false;
Trond Myklebust85563072012-12-11 10:31:12 -0500690 int ret = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400691
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500692 if (slot == NULL)
693 goto out_noaction;
Bryan Schumaker468f8612011-04-18 15:57:32 -0400694 /* don't increment the sequence number if the task wasn't sent */
695 if (!RPC_WAS_SENT(task))
Andy Adamsonb0df8062009-04-01 09:22:18 -0400696 goto out;
697
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500698 session = slot->table->session;
Trond Myklebust933602e2012-11-16 12:12:38 -0500699
Trond Myklebustac20d162012-12-15 15:36:07 -0500700 if (slot->interrupted) {
Olga Kornievskaia88bd4f82017-04-26 14:21:22 -0400701 if (res->sr_status != -NFS4ERR_DELAY)
702 slot->interrupted = 0;
Trond Myklebustac20d162012-12-15 15:36:07 -0500703 interrupted = true;
704 }
705
Trond Myklebust2f92ae32013-08-14 17:58:28 -0400706 trace_nfs4_sequence_done(session, res);
Andy Adamson691daf32009-12-04 15:55:39 -0500707 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400708 switch (res->sr_status) {
709 case 0:
Olga Kornievskaiaa8658802016-09-23 17:24:03 -0400710 /* If previous op on slot was interrupted and we reused
711 * the seq# and got a reply from the cache, then retry
712 */
713 if (task->tk_status == -EREMOTEIO && interrupted) {
714 ++slot->seq_nr;
715 goto retry_nowait;
716 }
Andy Adamsonb0df8062009-04-01 09:22:18 -0400717 /* Update the slot's sequence and clientid lease timer */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400718 slot->seq_done = 1;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500719 clp = session->clp;
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500720 do_renew_lease(clp, res->sr_timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500721 /* Check sequence flags */
Trond Myklebust0a014a42016-09-22 13:38:51 -0400722 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
723 !!slot->privileged);
Trond Myklebust464ee9f2012-11-20 12:49:27 -0500724 nfs41_update_target_slotid(slot->table, slot, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400725 break;
Trond Myklebustac20d162012-12-15 15:36:07 -0500726 case 1:
727 /*
728 * sr_status remains 1 if an RPC level error occurred.
729 * The server may or may not have processed the sequence
730 * operation..
731 * Mark the slot as having hosted an interrupted RPC call.
732 */
733 slot->interrupted = 1;
734 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400735 case -NFS4ERR_DELAY:
736 /* The server detected a resend of the RPC call and
737 * returned NFS4ERR_DELAY as per Section 2.10.6.2
738 * of RFC5661.
739 */
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500740 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400741 __func__,
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500742 slot->slot_nr,
Trond Myklebust933602e2012-11-16 12:12:38 -0500743 slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400744 goto out_retry;
Trond Myklebust85563072012-12-11 10:31:12 -0500745 case -NFS4ERR_BADSLOT:
746 /*
747 * The slot id we used was probably retired. Try again
748 * using a different slot id.
749 */
Trond Myklebuste8794442012-12-15 13:56:18 -0500750 goto retry_nowait;
751 case -NFS4ERR_SEQ_MISORDERED:
752 /*
Trond Myklebustac20d162012-12-15 15:36:07 -0500753 * Was the last operation on this sequence interrupted?
754 * If so, retry after bumping the sequence number.
755 */
756 if (interrupted) {
757 ++slot->seq_nr;
758 goto retry_nowait;
759 }
760 /*
Trond Myklebuste8794442012-12-15 13:56:18 -0500761 * Could this slot have been previously retired?
762 * If so, then the server may be expecting seq_nr = 1!
763 */
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500764 if (slot->seq_nr != 1) {
765 slot->seq_nr = 1;
766 goto retry_nowait;
767 }
768 break;
Trond Myklebuste8794442012-12-15 13:56:18 -0500769 case -NFS4ERR_SEQ_FALSE_RETRY:
770 ++slot->seq_nr;
771 goto retry_nowait;
Trond Myklebust14516c32010-07-31 14:29:06 -0400772 default:
773 /* Just update the slot sequence no. */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400774 slot->seq_done = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400775 }
776out:
777 /* The session may be reset by one of the error handlers. */
778 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500779out_noaction:
Trond Myklebust85563072012-12-11 10:31:12 -0500780 return ret;
Trond Myklebuste8794442012-12-15 13:56:18 -0500781retry_nowait:
782 if (rpc_restart_call_prepare(task)) {
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400783 nfs41_sequence_free_slot(res);
Trond Myklebuste8794442012-12-15 13:56:18 -0500784 task->tk_status = 0;
785 ret = 0;
786 }
787 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400788out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400789 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400790 goto out;
791 rpc_delay(task, NFS4_POLL_RETRY_MAX);
792 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400793}
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400794
795int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
796{
797 if (!nfs41_sequence_process(task, res))
798 return 0;
799 if (res->sr_slot != NULL)
800 nfs41_sequence_free_slot(res);
801 return 1;
802
803}
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500804EXPORT_SYMBOL_GPL(nfs41_sequence_done);
Andy Adamsonb0df8062009-04-01 09:22:18 -0400805
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400806static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
807{
808 if (res->sr_slot == NULL)
809 return 1;
810 if (res->sr_slot->table->session != NULL)
811 return nfs41_sequence_process(task, res);
812 return nfs40_sequence_done(task, res);
813}
814
815static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
816{
817 if (res->sr_slot != NULL) {
818 if (res->sr_slot->table->session != NULL)
819 nfs41_sequence_free_slot(res);
820 else
821 nfs40_sequence_free_slot(res);
822 }
823}
824
Peng Tao2c4b1312014-06-11 05:24:16 +0800825int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400826{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500827 if (res->sr_slot == NULL)
Trond Myklebust14516c32010-07-31 14:29:06 -0400828 return 1;
Chuck Lever3bd23842013-08-09 12:49:19 -0400829 if (!res->sr_slot->table->session)
830 return nfs40_sequence_done(task, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400831 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400832}
Peng Tao2c4b1312014-06-11 05:24:16 +0800833EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Trond Myklebustdf896452010-06-16 09:52:26 -0400834
Andy Adamsonce5039c2009-04-01 09:22:13 -0400835static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
836{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400837 struct nfs4_call_sync_data *data = calldata;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400838
Trond Myklebust035168a2010-06-16 09:52:26 -0400839 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
840
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500841 nfs4_setup_sequence(data->seq_server->nfs_client,
842 data->seq_args, data->seq_res, task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400843}
844
Andy Adamson69ab40c2009-04-01 09:22:19 -0400845static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
846{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400847 struct nfs4_call_sync_data *data = calldata;
Andy Adamson69ab40c2009-04-01 09:22:19 -0400848
Trond Myklebust14516c32010-07-31 14:29:06 -0400849 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400850}
851
Trond Myklebust17280172012-03-11 13:11:00 -0400852static const struct rpc_call_ops nfs41_call_sync_ops = {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400853 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400854 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400855};
856
Chuck Lever3bd23842013-08-09 12:49:19 -0400857#else /* !CONFIG_NFS_V4_1 */
858
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400859static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
860{
861 return nfs40_sequence_done(task, res);
862}
863
864static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
865{
866 if (res->sr_slot != NULL)
867 nfs40_sequence_free_slot(res);
868}
869
Peng Tao2c4b1312014-06-11 05:24:16 +0800870int nfs4_sequence_done(struct rpc_task *task,
871 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400872{
Chuck Lever3bd23842013-08-09 12:49:19 -0400873 return nfs40_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400874}
Peng Tao2c4b1312014-06-11 05:24:16 +0800875EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Chuck Lever3bd23842013-08-09 12:49:19 -0400876
877#endif /* !CONFIG_NFS_V4_1 */
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400878
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500879int nfs4_setup_sequence(const struct nfs_client *client,
880 struct nfs4_sequence_args *args,
881 struct nfs4_sequence_res *res,
882 struct rpc_task *task)
883{
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500884 struct nfs4_session *session = nfs4_get_session(client);
Anna Schumaker76ee0352017-01-10 16:49:31 -0500885 struct nfs4_slot_table *tbl = client->cl_slot_tbl;
Anna Schumaker3d358082017-01-11 10:54:04 -0500886 struct nfs4_slot *slot;
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500887
Anna Schumaker9dd91072017-01-10 12:01:46 -0500888 /* slot already allocated? */
889 if (res->sr_slot != NULL)
890 goto out_start;
891
Anna Schumaker76ee0352017-01-10 16:49:31 -0500892 if (session) {
893 tbl = &session->fc_slot_table;
894 task->tk_timeout = 0;
895 }
896
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500897 spin_lock(&tbl->slot_tbl_lock);
Anna Schumaker76ee0352017-01-10 16:49:31 -0500898 /* The state manager will wait until the slot table is empty */
899 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
900 goto out_sleep;
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500901
Anna Schumaker3d358082017-01-11 10:54:04 -0500902 slot = nfs4_alloc_slot(tbl);
903 if (IS_ERR(slot)) {
904 /* Try again in 1/4 second */
905 if (slot == ERR_PTR(-ENOMEM))
906 task->tk_timeout = HZ >> 2;
Anna Schumaker0dcee8b2017-01-10 16:29:54 -0500907 goto out_sleep;
Anna Schumaker3d358082017-01-11 10:54:04 -0500908 }
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500909 spin_unlock(&tbl->slot_tbl_lock);
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500910
Anna Schumaker3d358082017-01-11 10:54:04 -0500911 slot->privileged = args->sa_privileged ? 1 : 0;
912 args->sa_slot = slot;
913
914 res->sr_slot = slot;
915 if (session) {
916 res->sr_timestamp = jiffies;
917 res->sr_status_flags = 0;
918 res->sr_status = 1;
Anna Schumaker3d358082017-01-11 10:54:04 -0500919 }
920
Anna Schumakerad05cc02017-01-11 13:37:06 -0500921 trace_nfs4_setup_sequence(session, args);
Anna Schumaker9dd91072017-01-10 12:01:46 -0500922out_start:
923 rpc_call_start(task);
924 return 0;
Anna Schumaker0dcee8b2017-01-10 16:29:54 -0500925
926out_sleep:
927 if (args->sa_privileged)
928 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
929 NULL, RPC_PRIORITY_PRIVILEGED);
930 else
931 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
932 spin_unlock(&tbl->slot_tbl_lock);
933 return -EAGAIN;
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500934}
935EXPORT_SYMBOL_GPL(nfs4_setup_sequence);
936
Chuck Lever9915ea72013-08-09 12:48:27 -0400937static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
938{
939 struct nfs4_call_sync_data *data = calldata;
Anna Schumaker42e1cca2017-01-09 15:48:22 -0500940 nfs4_setup_sequence(data->seq_server->nfs_client,
Chuck Lever9915ea72013-08-09 12:48:27 -0400941 data->seq_args, data->seq_res, task);
942}
943
944static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
945{
946 struct nfs4_call_sync_data *data = calldata;
947 nfs4_sequence_done(task, data->seq_res);
948}
949
950static const struct rpc_call_ops nfs40_call_sync_ops = {
951 .rpc_call_prepare = nfs40_call_sync_prepare,
952 .rpc_call_done = nfs40_call_sync_done,
953};
954
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400955static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
Trond Myklebustad389da2007-06-05 12:30:00 -0400956 struct nfs_server *server,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500957 struct rpc_message *msg,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100958 struct nfs4_sequence_args *args,
959 struct nfs4_sequence_res *res)
Trond Myklebustad389da2007-06-05 12:30:00 -0400960{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100961 int ret;
962 struct rpc_task *task;
Chuck Lever9915ea72013-08-09 12:48:27 -0400963 struct nfs_client *clp = server->nfs_client;
964 struct nfs4_call_sync_data data = {
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100965 .seq_server = server,
966 .seq_args = args,
967 .seq_res = res,
968 };
969 struct rpc_task_setup task_setup = {
970 .rpc_client = clnt,
971 .rpc_message = msg,
Chuck Lever9915ea72013-08-09 12:48:27 -0400972 .callback_ops = clp->cl_mvops->call_sync_ops,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100973 .callback_data = &data
974 };
975
976 task = rpc_run_task(&task_setup);
977 if (IS_ERR(task))
978 ret = PTR_ERR(task);
979 else {
980 ret = task->tk_status;
Trond Myklebustad389da2007-06-05 12:30:00 -0400981 rpc_put_task(task);
982 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100983 return ret;
984}
985
Bryan Schumaker7c513052011-03-24 17:12:24 +0000986int nfs4_call_sync(struct rpc_clnt *clnt,
987 struct nfs_server *server,
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000988 struct rpc_message *msg,
989 struct nfs4_sequence_args *args,
990 struct nfs4_sequence_res *res,
991 int cache_reply)
992{
Chuck Levera9c92d62013-08-09 12:48:18 -0400993 nfs4_init_sequence(args, res, cache_reply);
Chuck Lever9915ea72013-08-09 12:48:27 -0400994 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000995}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Trond Myklebustd3129ef2017-01-11 22:07:28 -0500997static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo,
998 unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 struct nfs_inode *nfsi = NFS_I(dir);
1001
1002 spin_lock(&dir->i_lock);
Trond Myklebust359d7d12012-05-28 10:01:34 -04001003 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
Trond Myklebuste603a4c2016-12-16 16:55:55 -05001004 if (cinfo->atomic && cinfo->before == dir->i_version) {
1005 nfsi->cache_validity &= ~NFS_INO_REVAL_PAGECACHE;
1006 nfsi->attrtimeo_timestamp = jiffies;
1007 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 nfs_force_lookup_revalidate(dir);
Trond Myklebuste603a4c2016-12-16 16:55:55 -05001009 if (cinfo->before != dir->i_version)
1010 nfsi->cache_validity |= NFS_INO_INVALID_ACCESS |
1011 NFS_INO_INVALID_ACL;
1012 }
Trond Myklebusta9a4a872011-10-17 16:08:46 -07001013 dir->i_version = cinfo->after;
Trond Myklebustd3129ef2017-01-11 22:07:28 -05001014 nfsi->read_cache_jiffies = timestamp;
Trond Myklebust3235b402015-02-26 19:52:06 -05001015 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
David Howellsde242c02012-12-20 21:52:38 +00001016 nfs_fscache_invalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 spin_unlock(&dir->i_lock);
1018}
1019
1020struct nfs4_opendata {
1021 struct kref kref;
1022 struct nfs_openargs o_arg;
1023 struct nfs_openres o_res;
1024 struct nfs_open_confirmargs c_arg;
1025 struct nfs_open_confirmres c_res;
Trond Myklebust6926afd2012-01-07 13:22:46 -05001026 struct nfs4_string owner_name;
1027 struct nfs4_string group_name;
Kinglong Meea49c2692015-07-27 15:31:38 +08001028 struct nfs4_label *a_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 struct nfs_fattr f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001030 struct nfs4_label *f_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 struct dentry *dir;
Al Viro82a2c1b2011-06-22 18:30:55 -04001032 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct nfs4_state_owner *owner;
1034 struct nfs4_state *state;
1035 struct iattr attrs;
1036 unsigned long timestamp;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001037 unsigned int rpc_done : 1;
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04001038 unsigned int file_created : 1;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04001039 unsigned int is_recover : 1;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001040 int rpc_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 int cancelled;
1042};
Trond Myklebustdecf4912005-10-27 22:12:39 -04001043
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001044static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1045 int err, struct nfs4_exception *exception)
1046{
1047 if (err != -EINVAL)
1048 return false;
1049 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1050 return false;
1051 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1052 exception->retry = 1;
1053 return true;
1054}
1055
Trond Myklebust6ae37332015-01-30 14:21:14 -05001056static u32
1057nfs4_map_atomic_open_share(struct nfs_server *server,
1058 fmode_t fmode, int openflags)
1059{
1060 u32 res = 0;
1061
1062 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1063 case FMODE_READ:
1064 res = NFS4_SHARE_ACCESS_READ;
1065 break;
1066 case FMODE_WRITE:
1067 res = NFS4_SHARE_ACCESS_WRITE;
1068 break;
1069 case FMODE_READ|FMODE_WRITE:
1070 res = NFS4_SHARE_ACCESS_BOTH;
1071 }
1072 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1073 goto out;
1074 /* Want no delegation if we're using O_DIRECT */
1075 if (openflags & O_DIRECT)
1076 res |= NFS4_SHARE_WANT_NO_DELEG;
1077out:
1078 return res;
1079}
1080
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001081static enum open_claim_type4
1082nfs4_map_atomic_open_claim(struct nfs_server *server,
1083 enum open_claim_type4 claim)
1084{
1085 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1086 return claim;
1087 switch (claim) {
1088 default:
1089 return claim;
1090 case NFS4_OPEN_CLAIM_FH:
1091 return NFS4_OPEN_CLAIM_NULL;
1092 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1093 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1094 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1095 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1096 }
1097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099static void nfs4_init_opendata_res(struct nfs4_opendata *p)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001100{
1101 p->o_res.f_attr = &p->f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001102 p->o_res.f_label = p->f_label;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001103 p->o_res.seqid = p->o_arg.seqid;
1104 p->c_res.seqid = p->c_arg.seqid;
1105 p->o_res.server = p->o_arg.server;
Andy Adamson5f657532012-10-03 02:39:34 -04001106 p->o_res.access_request = p->o_arg.access;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001107 nfs_fattr_init(&p->f_attr);
Trond Myklebust6926afd2012-01-07 13:22:46 -05001108 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001109}
1110
Al Viro82a2c1b2011-06-22 18:30:55 -04001111static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001112 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001113 const struct iattr *attrs,
David Quigley1775fd32013-05-22 12:50:42 -04001114 struct nfs4_label *label,
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001115 enum open_claim_type4 claim,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001116 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001117{
Al Viro82a2c1b2011-06-22 18:30:55 -04001118 struct dentry *parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001119 struct inode *dir = d_inode(parent);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001120 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust63f5f792015-01-23 19:19:25 -05001121 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001122 struct nfs4_opendata *p;
1123
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001124 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001125 if (p == NULL)
1126 goto err;
David Quigley14c43f72013-05-22 12:50:43 -04001127
1128 p->f_label = nfs4_label_alloc(server, gfp_mask);
1129 if (IS_ERR(p->f_label))
1130 goto err_free_p;
1131
Kinglong Meea49c2692015-07-27 15:31:38 +08001132 p->a_label = nfs4_label_alloc(server, gfp_mask);
1133 if (IS_ERR(p->a_label))
1134 goto err_free_f;
1135
Trond Myklebust63f5f792015-01-23 19:19:25 -05001136 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1137 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05001138 if (IS_ERR(p->o_arg.seqid))
David Quigley14c43f72013-05-22 12:50:43 -04001139 goto err_free_label;
Al Viro82a2c1b2011-06-22 18:30:55 -04001140 nfs_sb_active(dentry->d_sb);
1141 p->dentry = dget(dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001142 p->dir = parent;
1143 p->owner = sp;
1144 atomic_inc(&sp->so_count);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001145 p->o_arg.open_flags = flags;
1146 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05001147 p->o_arg.umask = current_umask();
Trond Myklebust536585c2016-11-10 15:40:34 -05001148 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
Trond Myklebust6ae37332015-01-30 14:21:14 -05001149 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1150 fmode, flags);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001151 /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1152 * will return permission denied for all bits until close */
1153 if (!(flags & O_EXCL)) {
1154 /* ask server to check for all possible rights as results
1155 * are cached */
Trond Myklebust536585c2016-11-10 15:40:34 -05001156 switch (p->o_arg.claim) {
1157 default:
1158 break;
1159 case NFS4_OPEN_CLAIM_NULL:
1160 case NFS4_OPEN_CLAIM_FH:
1161 p->o_arg.access = NFS4_ACCESS_READ |
1162 NFS4_ACCESS_MODIFY |
1163 NFS4_ACCESS_EXTEND |
1164 NFS4_ACCESS_EXECUTE;
1165 }
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001166 }
David Howells7539bba2006-08-22 20:06:09 -04001167 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001168 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1169 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
Al Viro82a2c1b2011-06-22 18:30:55 -04001170 p->o_arg.name = &dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001171 p->o_arg.server = server;
David Quigleyaa9c2662013-05-22 12:50:44 -04001172 p->o_arg.bitmask = nfs4_bitmask(server, label);
Trond Myklebust1549210f2012-06-05 09:16:47 -04001173 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
Kinglong Meea49c2692015-07-27 15:31:38 +08001174 p->o_arg.label = nfs4_label_copy(p->a_label, label);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001175 switch (p->o_arg.claim) {
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001176 case NFS4_OPEN_CLAIM_NULL:
1177 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1178 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1179 p->o_arg.fh = NFS_FH(dir);
1180 break;
1181 case NFS4_OPEN_CLAIM_PREVIOUS:
1182 case NFS4_OPEN_CLAIM_FH:
1183 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1184 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
David Howells2b0143b2015-03-17 22:25:59 +00001185 p->o_arg.fh = NFS_FH(d_inode(dentry));
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001186 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001187 if (attrs != NULL && attrs->ia_valid != 0) {
Trond Myklebustc281fa9c2013-08-20 21:06:49 -04001188 __u32 verf[2];
Trond Myklebustd77d76f2010-06-16 09:52:27 -04001189
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001190 p->o_arg.u.attrs = &p->attrs;
1191 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Chuck Levercd937102012-03-02 17:14:31 -05001192
1193 verf[0] = jiffies;
1194 verf[1] = current->pid;
1195 memcpy(p->o_arg.u.verifier.data, verf,
1196 sizeof(p->o_arg.u.verifier.data));
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001197 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001198 p->c_arg.fh = &p->o_res.fh;
1199 p->c_arg.stateid = &p->o_res.stateid;
1200 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001201 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001202 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001203 return p;
David Quigley14c43f72013-05-22 12:50:43 -04001204
1205err_free_label:
Kinglong Meea49c2692015-07-27 15:31:38 +08001206 nfs4_label_free(p->a_label);
1207err_free_f:
David Quigley14c43f72013-05-22 12:50:43 -04001208 nfs4_label_free(p->f_label);
1209err_free_p:
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001210 kfree(p);
1211err:
1212 dput(parent);
1213 return NULL;
1214}
1215
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001216static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001217{
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001218 struct nfs4_opendata *p = container_of(kref,
1219 struct nfs4_opendata, kref);
Al Viro82a2c1b2011-06-22 18:30:55 -04001220 struct super_block *sb = p->dentry->d_sb;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001221
1222 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001223 nfs4_sequence_free_slot(&p->o_res.seq_res);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001224 if (p->state != NULL)
1225 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001226 nfs4_put_state_owner(p->owner);
David Quigley14c43f72013-05-22 12:50:43 -04001227
Kinglong Meea49c2692015-07-27 15:31:38 +08001228 nfs4_label_free(p->a_label);
David Quigley14c43f72013-05-22 12:50:43 -04001229 nfs4_label_free(p->f_label);
1230
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001231 dput(p->dir);
Al Viro82a2c1b2011-06-22 18:30:55 -04001232 dput(p->dentry);
1233 nfs_sb_deactive(sb);
Trond Myklebust6926afd2012-01-07 13:22:46 -05001234 nfs_fattr_free_names(&p->f_attr);
Trond Myklebuste911b812014-03-26 13:24:37 -07001235 kfree(p->f_attr.mdsthreshold);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001236 kfree(p);
1237}
1238
1239static void nfs4_opendata_put(struct nfs4_opendata *p)
1240{
1241 if (p != NULL)
1242 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001243}
1244
Trond Myklebust24311f82015-09-20 10:50:17 -04001245static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1246 fmode_t fmode)
1247{
1248 switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1249 case FMODE_READ|FMODE_WRITE:
1250 return state->n_rdwr != 0;
1251 case FMODE_WRITE:
1252 return state->n_wronly != 0;
1253 case FMODE_READ:
1254 return state->n_rdonly != 0;
1255 }
1256 WARN_ON_ONCE(1);
1257 return false;
1258}
1259
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001260static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -04001261{
1262 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001263
Trond Myklebust536e43d2012-01-17 22:04:26 -05001264 if (open_mode & (O_EXCL|O_TRUNC))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001265 goto out;
1266 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001267 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -05001268 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1269 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001270 break;
1271 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001272 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1273 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001274 break;
1275 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001276 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1277 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001278 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001279out:
Trond Myklebust6ee41262007-07-08 14:11:36 -04001280 return ret;
1281}
1282
Trond Myklebust2a606182015-08-19 22:30:00 -05001283static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1284 enum open_claim_type4 claim)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001285{
Trond Myklebust652f89f2011-12-09 19:05:58 -05001286 if (delegation == NULL)
1287 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001288 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001289 return 0;
Trond Myklebustd25be542013-02-05 11:43:28 -05001290 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
1291 return 0;
Trond Myklebust2a606182015-08-19 22:30:00 -05001292 switch (claim) {
1293 case NFS4_OPEN_CLAIM_NULL:
1294 case NFS4_OPEN_CLAIM_FH:
1295 break;
1296 case NFS4_OPEN_CLAIM_PREVIOUS:
1297 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1298 break;
1299 default:
1300 return 0;
1301 }
Trond Myklebustb7391f42008-12-23 15:21:52 -05001302 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001303 return 1;
1304}
1305
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001306static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +01001307{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001308 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +01001309 case FMODE_WRITE:
1310 state->n_wronly++;
1311 break;
1312 case FMODE_READ:
1313 state->n_rdonly++;
1314 break;
1315 case FMODE_READ|FMODE_WRITE:
1316 state->n_rdwr++;
1317 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001318 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +01001319}
1320
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04001321#ifdef CONFIG_NFS_V4_1
1322static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1323{
1324 if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1325 return true;
1326 if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1327 return true;
1328 if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1329 return true;
1330 return false;
1331}
1332#endif /* CONFIG_NFS_V4_1 */
1333
Trond Myklebust4f14c192014-02-12 19:15:06 -05001334static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
Trond Myklebust003707c2007-07-05 18:07:55 -04001335{
Trond Myklebust4f14c192014-02-12 19:15:06 -05001336 struct nfs_client *clp = state->owner->so_server->nfs_client;
1337 bool need_recover = false;
1338
1339 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1340 need_recover = true;
1341 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1342 need_recover = true;
1343 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1344 need_recover = true;
1345 if (need_recover)
1346 nfs4_state_mark_reclaim_nograce(clp, state);
1347}
1348
Trond Myklebuste999e802014-02-10 18:20:47 -05001349static bool nfs_need_update_open_stateid(struct nfs4_state *state,
Trond Myklebust1393d962016-09-22 13:39:13 -04001350 const nfs4_stateid *stateid, nfs4_stateid *freeme)
Trond Myklebuste999e802014-02-10 18:20:47 -05001351{
1352 if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0)
1353 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001354 if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001355 nfs4_stateid_copy(freeme, &state->open_stateid);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001356 nfs_test_and_clear_all_open_stateid(state);
Trond Myklebuste999e802014-02-10 18:20:47 -05001357 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001358 }
Trond Myklebuste999e802014-02-10 18:20:47 -05001359 if (nfs4_stateid_is_newer(stateid, &state->open_stateid))
1360 return true;
1361 return false;
1362}
1363
Trond Myklebustf95549c2015-01-23 18:06:09 -05001364static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1365{
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001366 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1367 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001368 if (state->n_wronly)
1369 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1370 if (state->n_rdonly)
1371 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1372 if (state->n_rdwr)
1373 set_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001374 set_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebustf95549c2015-01-23 18:06:09 -05001375}
1376
Trond Myklebust226056c2014-02-11 10:41:07 -05001377static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1378 nfs4_stateid *stateid, fmode_t fmode)
1379{
1380 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1381 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1382 case FMODE_WRITE:
1383 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1384 break;
1385 case FMODE_READ:
1386 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1387 break;
1388 case 0:
1389 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1390 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1391 clear_bit(NFS_OPEN_STATE, &state->flags);
1392 }
1393 if (stateid == NULL)
1394 return;
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001395 /* Handle OPEN+OPEN_DOWNGRADE races */
1396 if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1397 !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
Trond Myklebustf95549c2015-01-23 18:06:09 -05001398 nfs_resync_open_stateid_locked(state);
Trond Myklebust226056c2014-02-11 10:41:07 -05001399 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001400 }
Trond Myklebust003707c2007-07-05 18:07:55 -04001401 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001402 nfs4_stateid_copy(&state->stateid, stateid);
1403 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust226056c2014-02-11 10:41:07 -05001404}
1405
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07001406static void nfs_clear_open_stateid(struct nfs4_state *state,
1407 nfs4_stateid *arg_stateid,
1408 nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust226056c2014-02-11 10:41:07 -05001409{
1410 write_seqlock(&state->seqlock);
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001411 /* Ignore, if the CLOSE argment doesn't match the current stateid */
1412 if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1413 nfs_clear_open_stateid_locked(state, stateid, fmode);
Trond Myklebust226056c2014-02-11 10:41:07 -05001414 write_sequnlock(&state->seqlock);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001415 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1416 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
Trond Myklebust226056c2014-02-11 10:41:07 -05001417}
1418
Trond Myklebust1393d962016-09-22 13:39:13 -04001419static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1420 const nfs4_stateid *stateid, fmode_t fmode,
1421 nfs4_stateid *freeme)
Trond Myklebust003707c2007-07-05 18:07:55 -04001422{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001423 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001424 case FMODE_READ:
1425 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1426 break;
1427 case FMODE_WRITE:
1428 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1429 break;
1430 case FMODE_READ|FMODE_WRITE:
1431 set_bit(NFS_O_RDWR_STATE, &state->flags);
1432 }
Trond Myklebust1393d962016-09-22 13:39:13 -04001433 if (!nfs_need_update_open_stateid(state, stateid, freeme))
Trond Myklebuste999e802014-02-10 18:20:47 -05001434 return;
1435 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1436 nfs4_stateid_copy(&state->stateid, stateid);
1437 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001438}
1439
Trond Myklebust1393d962016-09-22 13:39:13 -04001440static void __update_open_stateid(struct nfs4_state *state,
1441 const nfs4_stateid *open_stateid,
1442 const nfs4_stateid *deleg_stateid,
1443 fmode_t fmode,
1444 nfs4_stateid *freeme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001446 /*
1447 * Protect the call to nfs4_state_set_mode_locked and
1448 * serialise the stateid update
1449 */
Andrew Elble361cad32015-12-02 09:20:57 -05001450 spin_lock(&state->owner->so_lock);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001451 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001452 if (deleg_stateid != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001453 nfs4_stateid_copy(&state->stateid, deleg_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001454 set_bit(NFS_DELEGATED_STATE, &state->flags);
1455 }
1456 if (open_stateid != NULL)
Trond Myklebust1393d962016-09-22 13:39:13 -04001457 nfs_set_open_stateid_locked(state, open_stateid, fmode, freeme);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001458 write_sequnlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001459 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -07001460 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Trond Myklebust1393d962016-09-22 13:39:13 -04001463static int update_open_stateid(struct nfs4_state *state,
1464 const nfs4_stateid *open_stateid,
1465 const nfs4_stateid *delegation,
1466 fmode_t fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001467{
Trond Myklebust1393d962016-09-22 13:39:13 -04001468 struct nfs_server *server = NFS_SERVER(state->inode);
1469 struct nfs_client *clp = server->nfs_client;
Trond Myklebust34310432008-12-23 15:21:38 -05001470 struct nfs_inode *nfsi = NFS_I(state->inode);
1471 struct nfs_delegation *deleg_cur;
Arnd Bergmann83aa3e02016-10-18 17:21:30 +02001472 nfs4_stateid freeme = { };
Trond Myklebust34310432008-12-23 15:21:38 -05001473 int ret = 0;
1474
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001475 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -05001476
1477 rcu_read_lock();
1478 deleg_cur = rcu_dereference(nfsi->delegation);
1479 if (deleg_cur == NULL)
1480 goto no_delegation;
1481
1482 spin_lock(&deleg_cur->lock);
Trond Myklebust17f26b12013-08-21 15:48:42 -04001483 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
Trond Myklebustd25be542013-02-05 11:43:28 -05001484 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001485 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001486 goto no_delegation_unlock;
1487
1488 if (delegation == NULL)
1489 delegation = &deleg_cur->stateid;
Trond Myklebustf597c532012-03-04 18:13:56 -05001490 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
Trond Myklebust34310432008-12-23 15:21:38 -05001491 goto no_delegation_unlock;
1492
Trond Myklebustb7391f42008-12-23 15:21:52 -05001493 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebust1393d962016-09-22 13:39:13 -04001494 __update_open_stateid(state, open_stateid, &deleg_cur->stateid,
1495 fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001496 ret = 1;
1497no_delegation_unlock:
1498 spin_unlock(&deleg_cur->lock);
1499no_delegation:
1500 rcu_read_unlock();
1501
1502 if (!ret && open_stateid != NULL) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001503 __update_open_stateid(state, open_stateid, NULL, fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001504 ret = 1;
1505 }
Trond Myklebust4f14c192014-02-12 19:15:06 -05001506 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
Trond Myklebust1393d962016-09-22 13:39:13 -04001507 nfs4_schedule_state_manager(clp);
1508 if (freeme.type != 0)
1509 nfs4_test_and_free_stateid(server, &freeme,
1510 state->owner->so_cred);
Trond Myklebust34310432008-12-23 15:21:38 -05001511
1512 return ret;
1513}
1514
Trond Myklebust39071e62015-01-24 15:07:56 -05001515static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1516 const nfs4_stateid *stateid)
1517{
1518 struct nfs4_state *state = lsp->ls_state;
1519 bool ret = false;
1520
1521 spin_lock(&state->state_lock);
1522 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1523 goto out_noupdate;
1524 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1525 goto out_noupdate;
1526 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1527 ret = true;
1528out_noupdate:
1529 spin_unlock(&state->state_lock);
1530 return ret;
1531}
Trond Myklebust34310432008-12-23 15:21:38 -05001532
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001533static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001534{
1535 struct nfs_delegation *delegation;
1536
1537 rcu_read_lock();
1538 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001539 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001540 rcu_read_unlock();
1541 return;
1542 }
1543 rcu_read_unlock();
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001544 nfs4_inode_return_delegation(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001545}
1546
Trond Myklebust6ee41262007-07-08 14:11:36 -04001547static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001548{
1549 struct nfs4_state *state = opendata->state;
1550 struct nfs_inode *nfsi = NFS_I(state->inode);
1551 struct nfs_delegation *delegation;
Trond Myklebustf448bad2013-05-29 15:36:40 -04001552 int open_mode = opendata->o_arg.open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001553 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebust2a606182015-08-19 22:30:00 -05001554 enum open_claim_type4 claim = opendata->o_arg.claim;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001555 nfs4_stateid stateid;
1556 int ret = -EAGAIN;
1557
Trond Myklebustaac00a82007-07-05 19:02:21 -04001558 for (;;) {
Anna Schumaker61beef72014-09-03 14:15:40 -04001559 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001560 if (can_open_cached(state, fmode, open_mode)) {
Anna Schumaker61beef72014-09-03 14:15:40 -04001561 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001562 spin_unlock(&state->owner->so_lock);
Anna Schumaker61beef72014-09-03 14:15:40 -04001563 goto out_return_state;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001564 }
Anna Schumaker61beef72014-09-03 14:15:40 -04001565 spin_unlock(&state->owner->so_lock);
Trond Myklebust34310432008-12-23 15:21:38 -05001566 rcu_read_lock();
1567 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05001568 if (!can_open_delegated(delegation, fmode, claim)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001569 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001570 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001571 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001572 /* Save the delegation */
Trond Myklebustf597c532012-03-04 18:13:56 -05001573 nfs4_stateid_copy(&stateid, &delegation->stateid);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001574 rcu_read_unlock();
Trond Myklebustfa332942013-04-09 12:56:52 -04001575 nfs_release_seqid(opendata->o_arg.seqid);
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04001576 if (!opendata->is_recover) {
1577 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1578 if (ret != 0)
1579 goto out;
1580 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001581 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001582
1583 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001584 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001585 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001586 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001587out:
1588 return ERR_PTR(ret);
1589out_return_state:
1590 atomic_inc(&state->count);
1591 return state;
1592}
1593
Andy Adamsone23008e2012-10-02 21:07:32 -04001594static void
1595nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1596{
1597 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1598 struct nfs_delegation *delegation;
1599 int delegation_flags = 0;
1600
1601 rcu_read_lock();
1602 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1603 if (delegation)
1604 delegation_flags = delegation->flags;
1605 rcu_read_unlock();
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001606 switch (data->o_arg.claim) {
1607 default:
1608 break;
1609 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1610 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04001611 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1612 "returning a delegation for "
1613 "OPEN(CLAIM_DELEGATE_CUR)\n",
1614 clp->cl_hostname);
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001615 return;
1616 }
1617 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Andy Adamsone23008e2012-10-02 21:07:32 -04001618 nfs_inode_set_delegation(state->inode,
1619 data->owner->so_cred,
1620 &data->o_res);
1621 else
1622 nfs_inode_reclaim_delegation(state->inode,
1623 data->owner->so_cred,
1624 &data->o_res);
1625}
1626
1627/*
1628 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1629 * and update the nfs4_state.
1630 */
1631static struct nfs4_state *
1632_nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1633{
1634 struct inode *inode = data->state->inode;
1635 struct nfs4_state *state = data->state;
1636 int ret;
1637
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001638 if (!data->rpc_done) {
Anna Schumaker37a84842017-01-11 16:08:35 -05001639 if (data->rpc_status)
1640 return ERR_PTR(data->rpc_status);
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001641 /* cached opens have already been processed */
1642 goto update;
Andy Adamsone23008e2012-10-02 21:07:32 -04001643 }
1644
Andy Adamsone23008e2012-10-02 21:07:32 -04001645 ret = nfs_refresh_inode(inode, &data->f_attr);
1646 if (ret)
Anna Schumaker37a84842017-01-11 16:08:35 -05001647 return ERR_PTR(ret);
Andy Adamsone23008e2012-10-02 21:07:32 -04001648
1649 if (data->o_res.delegation_type != 0)
1650 nfs4_opendata_check_deleg(data, state);
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001651update:
Andy Adamsone23008e2012-10-02 21:07:32 -04001652 update_open_stateid(state, &data->o_res.stateid, NULL,
1653 data->o_arg.fmode);
Trond Myklebustd49f0422013-10-28 14:57:12 -04001654 atomic_inc(&state->count);
Andy Adamsone23008e2012-10-02 21:07:32 -04001655
1656 return state;
Andy Adamsone23008e2012-10-02 21:07:32 -04001657}
1658
1659static struct nfs4_state *
1660_nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001661{
1662 struct inode *inode;
1663 struct nfs4_state *state = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001664 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001665
Trond Myklebustaac00a82007-07-05 19:02:21 -04001666 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001667 state = nfs4_try_open_cached(data);
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05001668 trace_nfs4_cached_open(data->state);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001669 goto out;
1670 }
1671
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001672 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001673 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001674 goto err;
David Quigley1775fd32013-05-22 12:50:42 -04001675 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001676 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001677 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001678 goto err;
1679 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001680 state = nfs4_get_open_state(inode, data->owner);
1681 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001682 goto err_put_inode;
Andy Adamsone23008e2012-10-02 21:07:32 -04001683 if (data->o_res.delegation_type != 0)
1684 nfs4_opendata_check_deleg(data, state);
Trond Myklebust34310432008-12-23 15:21:38 -05001685 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001686 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001687 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001688out:
Trond Myklebust7aa262b52013-02-28 16:19:59 -08001689 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001690 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001691err_put_inode:
1692 iput(inode);
1693err:
1694 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001695}
1696
Andy Adamsone23008e2012-10-02 21:07:32 -04001697static struct nfs4_state *
1698nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1699{
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001700 struct nfs4_state *ret;
1701
Andy Adamsone23008e2012-10-02 21:07:32 -04001702 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001703 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
1704 else
1705 ret = _nfs4_opendata_to_nfs4_state(data);
1706 nfs4_sequence_free_slot(&data->o_res.seq_res);
1707 return ret;
Andy Adamsone23008e2012-10-02 21:07:32 -04001708}
1709
Trond Myklebust864472e2006-01-03 09:55:15 +01001710static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1711{
1712 struct nfs_inode *nfsi = NFS_I(state->inode);
1713 struct nfs_open_context *ctx;
1714
1715 spin_lock(&state->inode->i_lock);
1716 list_for_each_entry(ctx, &nfsi->open_files, list) {
1717 if (ctx->state != state)
1718 continue;
1719 get_nfs_open_context(ctx);
1720 spin_unlock(&state->inode->i_lock);
1721 return ctx;
1722 }
1723 spin_unlock(&state->inode->i_lock);
1724 return ERR_PTR(-ENOENT);
1725}
1726
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001727static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
1728 struct nfs4_state *state, enum open_claim_type4 claim)
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001729{
1730 struct nfs4_opendata *opendata;
1731
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001732 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
David Quigley1775fd32013-05-22 12:50:42 -04001733 NULL, NULL, claim, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001734 if (opendata == NULL)
1735 return ERR_PTR(-ENOMEM);
1736 opendata->state = state;
1737 atomic_inc(&state->count);
1738 return opendata;
1739}
1740
Trond Myklebust24311f82015-09-20 10:50:17 -04001741static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
1742 fmode_t fmode)
Trond Myklebust864472e2006-01-03 09:55:15 +01001743{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001744 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001745 int ret;
1746
Trond Myklebust24311f82015-09-20 10:50:17 -04001747 if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
NeilBrown39f897f2015-06-29 14:28:54 +10001748 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001749 opendata->o_arg.open_flags = 0;
1750 opendata->o_arg.fmode = fmode;
Trond Myklebustbe36e182015-02-27 17:04:17 -05001751 opendata->o_arg.share_access = nfs4_map_atomic_open_share(
1752 NFS_SB(opendata->dentry->d_sb),
1753 fmode, 0);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001754 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1755 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1756 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001757 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001758 if (ret != 0)
1759 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001760 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001761 if (IS_ERR(newstate))
1762 return PTR_ERR(newstate);
Trond Myklebust24311f82015-09-20 10:50:17 -04001763 if (newstate != opendata->state)
1764 ret = -ESTALE;
Al Viro643168c2011-06-22 18:20:23 -04001765 nfs4_close_state(newstate, fmode);
Trond Myklebust24311f82015-09-20 10:50:17 -04001766 return ret;
Trond Myklebust864472e2006-01-03 09:55:15 +01001767}
1768
1769static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1770{
Trond Myklebust864472e2006-01-03 09:55:15 +01001771 int ret;
1772
Trond Myklebust4f14c192014-02-12 19:15:06 -05001773 /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */
1774 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1775 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1776 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001777 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001778 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04001779 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001780 smp_rmb();
Trond Myklebust24311f82015-09-20 10:50:17 -04001781 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1782 if (ret != 0)
1783 return ret;
1784 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1785 if (ret != 0)
1786 return ret;
1787 ret = nfs4_open_recover_helper(opendata, FMODE_READ);
1788 if (ret != 0)
1789 return ret;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001790 /*
1791 * We may have performed cached opens for all three recoveries.
1792 * Check if we need to update the current stateid.
1793 */
1794 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
Trond Myklebustf597c532012-03-04 18:13:56 -05001795 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001796 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001797 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001798 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001799 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001800 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001801 return 0;
1802}
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804/*
1805 * OPEN_RECLAIM:
1806 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001808static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001810 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001811 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001812 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 int status;
1814
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001815 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1816 NFS4_OPEN_CLAIM_PREVIOUS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001817 if (IS_ERR(opendata))
1818 return PTR_ERR(opendata);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001819 rcu_read_lock();
1820 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001821 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001822 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001823 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001824 opendata->o_arg.u.delegation_type = delegation_type;
1825 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001826 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return status;
1828}
1829
Trond Myklebust539cd032007-06-05 11:46:42 -04001830static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 struct nfs_server *server = NFS_SERVER(state->inode);
1833 struct nfs4_exception exception = { };
1834 int err;
1835 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001836 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04001837 trace_nfs4_open_reclaim(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001838 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
1839 continue;
Trond Myklebust168667c2010-10-19 19:47:49 -04001840 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001841 break;
1842 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 } while (exception.retry);
1844 return err;
1845}
1846
Trond Myklebust864472e2006-01-03 09:55:15 +01001847static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1848{
1849 struct nfs_open_context *ctx;
1850 int ret;
1851
1852 ctx = nfs4_state_find_open_context(state);
1853 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04001854 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04001855 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001856 put_nfs_open_context(ctx);
1857 return ret;
1858}
1859
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001860static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001862 switch (err) {
1863 default:
1864 printk(KERN_ERR "NFS: %s: unhandled error "
1865 "%d.\n", __func__, err);
1866 case 0:
1867 case -ENOENT:
Trond Myklebust8eee52a2015-06-04 13:51:13 -04001868 case -EAGAIN:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001869 case -ESTALE:
1870 break;
1871 case -NFS4ERR_BADSESSION:
1872 case -NFS4ERR_BADSLOT:
1873 case -NFS4ERR_BAD_HIGH_SLOT:
1874 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1875 case -NFS4ERR_DEADSESSION:
1876 set_bit(NFS_DELEGATED_STATE, &state->flags);
1877 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
1878 return -EAGAIN;
1879 case -NFS4ERR_STALE_CLIENTID:
1880 case -NFS4ERR_STALE_STATEID:
1881 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001882 /* Don't recall a delegation if it was lost */
1883 nfs4_schedule_lease_recovery(server->nfs_client);
1884 return -EAGAIN;
Chuck Lever352297b2013-10-17 14:13:24 -04001885 case -NFS4ERR_MOVED:
1886 nfs4_schedule_migration_recovery(server);
1887 return -EAGAIN;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -04001888 case -NFS4ERR_LEASE_MOVED:
1889 nfs4_schedule_lease_moved_recovery(server->nfs_client);
1890 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001891 case -NFS4ERR_DELEG_REVOKED:
1892 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust404ea3562016-09-22 13:39:08 -04001893 case -NFS4ERR_EXPIRED:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001894 case -NFS4ERR_BAD_STATEID:
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001895 case -NFS4ERR_OPENMODE:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001896 nfs_inode_find_state_and_recover(state->inode,
1897 stateid);
1898 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust869f9df2014-11-10 18:43:56 -05001899 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001900 case -NFS4ERR_DELAY:
1901 case -NFS4ERR_GRACE:
1902 set_bit(NFS_DELEGATED_STATE, &state->flags);
1903 ssleep(1);
1904 return -EAGAIN;
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001905 case -ENOMEM:
1906 case -NFS4ERR_DENIED:
1907 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
1908 return 0;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return err;
1911}
1912
Trond Myklebust24311f82015-09-20 10:50:17 -04001913int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
1914 struct nfs4_state *state, const nfs4_stateid *stateid,
1915 fmode_t type)
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001916{
1917 struct nfs_server *server = NFS_SERVER(state->inode);
1918 struct nfs4_opendata *opendata;
Trond Myklebust24311f82015-09-20 10:50:17 -04001919 int err = 0;
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001920
1921 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1922 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1923 if (IS_ERR(opendata))
1924 return PTR_ERR(opendata);
1925 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
Jeff Layton5e99b532015-10-02 13:14:37 -04001926 write_seqlock(&state->seqlock);
1927 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1928 write_sequnlock(&state->seqlock);
Trond Myklebust24311f82015-09-20 10:50:17 -04001929 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1930 switch (type & (FMODE_READ|FMODE_WRITE)) {
1931 case FMODE_READ|FMODE_WRITE:
1932 case FMODE_WRITE:
1933 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1934 if (err)
1935 break;
1936 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1937 if (err)
1938 break;
1939 case FMODE_READ:
1940 err = nfs4_open_recover_helper(opendata, FMODE_READ);
1941 }
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001942 nfs4_opendata_put(opendata);
1943 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
1944}
1945
Chuck Leverbe05c862013-08-09 12:49:47 -04001946static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
1947{
1948 struct nfs4_opendata *data = calldata;
1949
Anna Schumaker7981c8a2017-01-10 11:39:53 -05001950 nfs4_setup_sequence(data->o_arg.server->nfs_client,
1951 &data->c_arg.seq_args, &data->c_res.seq_res, task);
Chuck Leverbe05c862013-08-09 12:49:47 -04001952}
1953
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001954static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1955{
1956 struct nfs4_opendata *data = calldata;
1957
Trond Myklebust17ead6c2014-02-01 14:53:23 -05001958 nfs40_sequence_done(task, &data->c_res.seq_res);
Chuck Leverbe05c862013-08-09 12:49:47 -04001959
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001960 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001961 if (data->rpc_status == 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001962 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
Trond Myklebustbb226292008-01-02 15:19:18 -05001963 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001964 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001965 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001966 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001967}
1968
1969static void nfs4_open_confirm_release(void *calldata)
1970{
1971 struct nfs4_opendata *data = calldata;
1972 struct nfs4_state *state = NULL;
1973
1974 /* If this request hasn't been cancelled, do nothing */
1975 if (data->cancelled == 0)
1976 goto out_free;
1977 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001978 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001979 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001980 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001981 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04001982 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001983out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001984 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001985}
1986
1987static const struct rpc_call_ops nfs4_open_confirm_ops = {
Chuck Leverbe05c862013-08-09 12:49:47 -04001988 .rpc_call_prepare = nfs4_open_confirm_prepare,
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001989 .rpc_call_done = nfs4_open_confirm_done,
1990 .rpc_release = nfs4_open_confirm_release,
1991};
1992
1993/*
1994 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1995 */
1996static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1997{
David Howells2b0143b2015-03-17 22:25:59 +00001998 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001999 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002000 struct rpc_message msg = {
2001 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2002 .rpc_argp = &data->c_arg,
2003 .rpc_resp = &data->c_res,
2004 .rpc_cred = data->owner->so_cred,
2005 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002006 struct rpc_task_setup task_setup_data = {
2007 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002008 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002009 .callback_ops = &nfs4_open_confirm_ops,
2010 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002011 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002012 .flags = RPC_TASK_ASYNC,
2013 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 int status;
2015
Trond Myklebust17ead6c2014-02-01 14:53:23 -05002016 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002017 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04002018 data->rpc_done = 0;
2019 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002020 data->timestamp = jiffies;
Benjamin Coddingtone92c1e02015-10-01 09:17:33 -04002021 if (data->is_recover)
2022 nfs4_set_sequence_privileged(&data->c_arg.seq_args);
Trond Myklebustc970aa82007-07-14 15:39:59 -04002023 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05002024 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002025 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05002026 status = rpc_wait_for_completion_task(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002027 if (status != 0) {
2028 data->cancelled = 1;
2029 smp_wmb();
2030 } else
2031 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05002032 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return status;
2034}
2035
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002036static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002038 struct nfs4_opendata *data = calldata;
2039 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust549b19c2013-04-16 18:42:34 -04002040 struct nfs_client *clp = sp->so_server->nfs_client;
Trond Myklebust2a606182015-08-19 22:30:00 -05002041 enum open_claim_type4 claim = data->o_arg.claim;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002042
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002043 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002044 goto out_wait;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002045 /*
2046 * Check if we still need to send an OPEN call, or if we can use
2047 * a delegation instead.
2048 */
2049 if (data->state != NULL) {
2050 struct nfs_delegation *delegation;
2051
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002052 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04002053 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002054 rcu_read_lock();
2055 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05002056 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
Trond Myklebust652f89f2011-12-09 19:05:58 -05002057 goto unlock_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002058 rcu_read_unlock();
2059 }
Trond Myklebust95b72eb2012-04-20 19:24:51 -04002060 /* Update client id. */
Trond Myklebust549b19c2013-04-16 18:42:34 -04002061 data->o_arg.clientid = clp->cl_clientid;
Trond Myklebust2a606182015-08-19 22:30:00 -05002062 switch (claim) {
2063 default:
2064 break;
Trond Myklebust8188df12013-04-23 14:31:19 -04002065 case NFS4_OPEN_CLAIM_PREVIOUS:
2066 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2067 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04002068 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
Trond Myklebust8188df12013-04-23 14:31:19 -04002069 case NFS4_OPEN_CLAIM_FH:
2070 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002071 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
2072 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002073 data->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05002074 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
Andy Adamsond8985282009-04-01 09:22:21 -04002075 &data->o_arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04002076 &data->o_res.seq_res,
2077 task) != 0)
2078 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust549b19c2013-04-16 18:42:34 -04002079
2080 /* Set the create mode (note dependency on the session type) */
2081 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2082 if (data->o_arg.open_flags & O_EXCL) {
2083 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2084 if (nfs4_has_persistent_session(clp))
2085 data->o_arg.createmode = NFS4_CREATE_GUARDED;
2086 else if (clp->cl_mvops->minor_version > 0)
2087 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2088 }
Trond Myklebust6ee41262007-07-08 14:11:36 -04002089 return;
Trond Myklebust652f89f2011-12-09 19:05:58 -05002090unlock_no_action:
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05002091 trace_nfs4_cached_open(data->state);
Trond Myklebust652f89f2011-12-09 19:05:58 -05002092 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04002093out_no_action:
2094 task->tk_action = NULL;
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002095out_wait:
Trond Myklebustb75ad4c2012-11-29 17:27:47 -05002096 nfs4_sequence_done(task, &data->o_res.seq_res);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002097}
2098
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002099static void nfs4_open_done(struct rpc_task *task, void *calldata)
2100{
2101 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002103 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04002104
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04002105 if (!nfs4_sequence_process(task, &data->o_res.seq_res))
Trond Myklebust14516c32010-07-31 14:29:06 -04002106 return;
Andy Adamsond8985282009-04-01 09:22:21 -04002107
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002108 if (task->tk_status == 0) {
Trond Myklebust807d66d82012-10-02 17:09:00 -07002109 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2110 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07002111 case S_IFREG:
2112 break;
2113 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002114 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002115 break;
2116 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002117 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002118 break;
2119 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002120 data->rpc_status = -ENOTDIR;
Trond Myklebust807d66d82012-10-02 17:09:00 -07002121 }
Trond Myklebust6f926b52005-10-18 14:20:18 -07002122 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002123 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04002124 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2125 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07002126 }
Trond Myklebust3e309912007-07-07 13:19:59 -04002127 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002128}
Trond Myklebust6f926b52005-10-18 14:20:18 -07002129
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002130static void nfs4_open_release(void *calldata)
2131{
2132 struct nfs4_opendata *data = calldata;
2133 struct nfs4_state *state = NULL;
2134
2135 /* If this request hasn't been cancelled, do nothing */
2136 if (data->cancelled == 0)
2137 goto out_free;
2138 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04002139 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002140 goto out_free;
2141 /* In case we need an open_confirm, no cleanup! */
2142 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2143 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002144 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04002145 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04002146 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002147out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002148 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002149}
2150
2151static const struct rpc_call_ops nfs4_open_ops = {
2152 .rpc_call_prepare = nfs4_open_prepare,
2153 .rpc_call_done = nfs4_open_done,
2154 .rpc_release = nfs4_open_release,
2155};
2156
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002157static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002158{
David Howells2b0143b2015-03-17 22:25:59 +00002159 struct inode *dir = d_inode(data->dir);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002160 struct nfs_server *server = NFS_SERVER(dir);
2161 struct nfs_openargs *o_arg = &data->o_arg;
2162 struct nfs_openres *o_res = &data->o_res;
2163 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002164 struct rpc_message msg = {
2165 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2166 .rpc_argp = o_arg,
2167 .rpc_resp = o_res,
2168 .rpc_cred = data->owner->so_cred,
2169 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002170 struct rpc_task_setup task_setup_data = {
2171 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002172 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002173 .callback_ops = &nfs4_open_ops,
2174 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002175 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002176 .flags = RPC_TASK_ASYNC,
2177 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002178 int status;
2179
Chuck Levera9c92d62013-08-09 12:48:18 -04002180 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002181 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04002182 data->rpc_done = 0;
2183 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04002184 data->cancelled = 0;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002185 data->is_recover = 0;
2186 if (isrecover) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04002187 nfs4_set_sequence_privileged(&o_arg->seq_args);
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002188 data->is_recover = 1;
2189 }
Trond Myklebustc970aa82007-07-14 15:39:59 -04002190 task = rpc_run_task(&task_setup_data);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002191 if (IS_ERR(task))
2192 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05002193 status = rpc_wait_for_completion_task(task);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002194 if (status != 0) {
2195 data->cancelled = 1;
2196 smp_wmb();
2197 } else
2198 status = data->rpc_status;
2199 rpc_put_task(task);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002200
2201 return status;
2202}
2203
2204static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2205{
David Howells2b0143b2015-03-17 22:25:59 +00002206 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002207 struct nfs_openres *o_res = &data->o_res;
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002208 int status;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002209
2210 status = nfs4_run_open_task(data, 1);
2211 if (status != 0 || !data->rpc_done)
2212 return status;
2213
Trond Myklebust6926afd2012-01-07 13:22:46 -05002214 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2215
Anna Schumakerd7e98252017-01-11 16:13:29 -05002216 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM)
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002217 status = _nfs4_proc_open_confirm(data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002218
2219 return status;
2220}
2221
Trond Myklebustf3792d62014-07-10 08:54:32 -04002222/*
2223 * Additional permission checks in order to distinguish between an
2224 * open for read, and an open for execute. This works around the
2225 * fact that NFSv4 OPEN treats read and execute permissions as being
2226 * the same.
2227 * Note that in the non-execute case, we want to turn off permission
2228 * checking if we just created a new file (POSIX open() semantics).
2229 */
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002230static int nfs4_opendata_access(struct rpc_cred *cred,
2231 struct nfs4_opendata *opendata,
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002232 struct nfs4_state *state, fmode_t fmode,
2233 int openflags)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002234{
2235 struct nfs_access_entry cache;
2236 u32 mask;
2237
2238 /* access call failed or for some reason the server doesn't
2239 * support any access modes -- defer access call until later */
2240 if (opendata->o_res.access_supported == 0)
2241 return 0;
2242
2243 mask = 0;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002244 /*
2245 * Use openflags to check for exec, because fmode won't
2246 * always have FMODE_EXEC set when file open for exec.
2247 */
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002248 if (openflags & __FMODE_EXEC) {
2249 /* ONLY check for exec rights */
2250 mask = MAY_EXEC;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002251 } else if ((fmode & FMODE_READ) && !opendata->file_created)
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002252 mask = MAY_READ;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002253
2254 cache.cred = cred;
2255 cache.jiffies = jiffies;
2256 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2257 nfs_access_add_cache(state->inode, &cache);
2258
Weston Andros Adamsonbbd3a8e2012-10-02 14:49:51 -07002259 if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002260 return 0;
2261
Weston Andros Adamson998f40b2012-11-02 18:00:56 -04002262 return -EACCES;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002263}
2264
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002265/*
2266 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2267 */
2268static int _nfs4_proc_open(struct nfs4_opendata *data)
2269{
David Howells2b0143b2015-03-17 22:25:59 +00002270 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002271 struct nfs_server *server = NFS_SERVER(dir);
2272 struct nfs_openargs *o_arg = &data->o_arg;
2273 struct nfs_openres *o_res = &data->o_res;
2274 int status;
2275
2276 status = nfs4_run_open_task(data, 0);
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002277 if (!data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002278 return status;
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002279 if (status != 0) {
2280 if (status == -NFS4ERR_BADNAME &&
2281 !(o_arg->open_flags & O_CREAT))
2282 return -ENOENT;
2283 return status;
2284 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002285
Trond Myklebust6926afd2012-01-07 13:22:46 -05002286 nfs_fattr_map_and_free_names(server, &data->f_attr);
2287
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002288 if (o_arg->open_flags & O_CREAT) {
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002289 if (o_arg->open_flags & O_EXCL)
2290 data->file_created = 1;
2291 else if (o_res->cinfo.before != o_res->cinfo.after)
2292 data->file_created = 1;
Trond Myklebust2dfc6172017-01-11 08:47:00 -05002293 if (data->file_created || dir->i_version != o_res->cinfo.after)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05002294 update_changeattr(dir, &o_res->cinfo,
2295 o_res->f_attr->time_start);
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002296 }
Trond Myklebust0df5dd42010-04-11 16:48:44 -04002297 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2298 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002300 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002302 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
Trond Myklebust56e0d712017-04-15 19:20:01 -04002304 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2305 nfs4_sequence_free_slot(&o_res->seq_res);
Andy Adamson8935ef62014-05-23 06:22:59 -07002306 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
Trond Myklebust56e0d712017-04-15 19:20:01 -04002307 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309}
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311/*
2312 * OPEN_EXPIRED:
2313 * reclaim state on the server after a network partition.
2314 * Assumes caller holds the appropriate lock
2315 */
Trond Myklebust539cd032007-06-05 11:46:42 -04002316static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002318 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01002319 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002321 opendata = nfs4_open_recoverdata_alloc(ctx, state,
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002322 NFS4_OPEN_CLAIM_FH);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002323 if (IS_ERR(opendata))
2324 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002325 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04002326 if (ret == -ESTALE)
Al Viro3d4ff432011-06-22 18:40:12 -04002327 d_drop(ctx->dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002328 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002329 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
2331
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002332static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00002333{
Trond Myklebust539cd032007-06-05 11:46:42 -04002334 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00002335 struct nfs4_exception exception = { };
2336 int err;
2337
2338 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04002339 err = _nfs4_open_expired(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04002340 trace_nfs4_open_expired(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002341 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2342 continue;
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002343 switch (err) {
2344 default:
2345 goto out;
2346 case -NFS4ERR_GRACE:
2347 case -NFS4ERR_DELAY:
2348 nfs4_handle_exception(server, err, &exception);
2349 err = 0;
2350 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00002351 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002352out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00002353 return err;
2354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2357{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01002359 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Trond Myklebust864472e2006-01-03 09:55:15 +01002361 ctx = nfs4_state_find_open_context(state);
2362 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04002363 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04002364 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01002365 put_nfs_open_context(ctx);
2366 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
Trond Myklebust41020b62016-09-22 13:38:58 -04002369static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2370 const nfs4_stateid *stateid)
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002371{
Trond Myklebust41020b62016-09-22 13:38:58 -04002372 nfs_remove_bad_delegation(state->inode, stateid);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002373 write_seqlock(&state->seqlock);
2374 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2375 write_sequnlock(&state->seqlock);
2376 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2377}
2378
2379static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2380{
2381 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
Trond Myklebust41020b62016-09-22 13:38:58 -04002382 nfs_finish_clear_delegation_stateid(state, NULL);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002383}
2384
2385static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2386{
2387 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2388 nfs40_clear_delegation_stateid(state);
2389 return nfs4_open_expired(sp, state);
2390}
2391
Trond Myklebust45870d62016-09-22 13:38:59 -04002392static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2393 nfs4_stateid *stateid,
2394 struct rpc_cred *cred)
2395{
2396 return -NFS4ERR_BAD_STATEID;
2397}
2398
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002399#if defined(CONFIG_NFS_V4_1)
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002400static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2401 nfs4_stateid *stateid,
2402 struct rpc_cred *cred)
2403{
2404 int status;
2405
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002406 switch (stateid->type) {
2407 default:
2408 break;
2409 case NFS4_INVALID_STATEID_TYPE:
2410 case NFS4_SPECIAL_STATEID_TYPE:
2411 return -NFS4ERR_BAD_STATEID;
2412 case NFS4_REVOKED_STATEID_TYPE:
2413 goto out_free;
2414 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002415
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002416 status = nfs41_test_stateid(server, stateid, cred);
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002417 switch (status) {
2418 case -NFS4ERR_EXPIRED:
2419 case -NFS4ERR_ADMIN_REVOKED:
2420 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002421 break;
2422 default:
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002423 return status;
2424 }
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002425out_free:
2426 /* Ack the revoked state to the server */
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04002427 nfs41_free_stateid(server, stateid, cred, true);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002428 return -NFS4ERR_EXPIRED;
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002429}
2430
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002431static void nfs41_check_delegation_stateid(struct nfs4_state *state)
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002432{
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002433 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002434 nfs4_stateid stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002435 struct nfs_delegation *delegation;
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002436 struct rpc_cred *cred;
2437 int status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002438
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002439 /* Get the delegation credential for use by test/free_stateid */
2440 rcu_read_lock();
2441 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002442 if (delegation == NULL) {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002443 rcu_read_unlock();
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002444 return;
2445 }
2446
2447 nfs4_stateid_copy(&stateid, &delegation->stateid);
Olga Kornievskaia0e3d3e52017-03-30 13:49:03 -04002448 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) ||
2449 !test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED,
2450 &delegation->flags)) {
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002451 rcu_read_unlock();
Trond Myklebust41020b62016-09-22 13:38:58 -04002452 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002453 return;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002454 }
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002455
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002456 cred = get_rpccred(delegation->cred);
2457 rcu_read_unlock();
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002458 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002459 trace_nfs4_test_delegation_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002460 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
Trond Myklebust41020b62016-09-22 13:38:58 -04002461 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002462
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002463 put_rpccred(cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002464}
2465
2466/**
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002467 * nfs41_check_expired_locks - possibly free a lock stateid
2468 *
2469 * @state: NFSv4 state for an inode
2470 *
2471 * Returns NFS_OK if recovery for this stateid is now finished.
2472 * Otherwise a negative NFS4ERR value is returned.
2473 */
2474static int nfs41_check_expired_locks(struct nfs4_state *state)
2475{
2476 int status, ret = NFS_OK;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002477 struct nfs4_lock_state *lsp, *prev = NULL;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002478 struct nfs_server *server = NFS_SERVER(state->inode);
2479
2480 if (!test_bit(LK_STATE_IN_USE, &state->flags))
2481 goto out;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002482
2483 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002484 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2485 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2486 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
2487
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002488 atomic_inc(&lsp->ls_count);
2489 spin_unlock(&state->state_lock);
2490
2491 nfs4_put_lock_state(prev);
2492 prev = lsp;
2493
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002494 status = nfs41_test_and_free_expired_stateid(server,
2495 &lsp->ls_stateid,
2496 cred);
2497 trace_nfs4_test_lock_stateid(state, lsp, status);
2498 if (status == -NFS4ERR_EXPIRED ||
2499 status == -NFS4ERR_BAD_STATEID) {
2500 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002501 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002502 if (!recover_lost_locks)
2503 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2504 } else if (status != NFS_OK) {
2505 ret = status;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002506 nfs4_put_lock_state(prev);
2507 goto out;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002508 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002509 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002510 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002511 }
2512 spin_unlock(&state->state_lock);
2513 nfs4_put_lock_state(prev);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002514out:
2515 return ret;
2516}
2517
2518/**
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002519 * nfs41_check_open_stateid - possibly free an open stateid
2520 *
2521 * @state: NFSv4 state for an inode
2522 *
2523 * Returns NFS_OK if recovery for this stateid is now finished.
2524 * Otherwise a negative NFS4ERR value is returned.
2525 */
2526static int nfs41_check_open_stateid(struct nfs4_state *state)
2527{
2528 struct nfs_server *server = NFS_SERVER(state->inode);
Bryan Schumakerfcb6d9c2012-09-26 15:25:53 -04002529 nfs4_stateid *stateid = &state->open_stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002530 struct rpc_cred *cred = state->owner->so_cred;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002531 int status;
2532
Trond Myklebustb134fc42016-09-22 13:39:16 -04002533 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) {
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002534 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) {
2535 if (nfs4_have_delegation(state->inode, state->state))
2536 return NFS_OK;
2537 return -NFS4ERR_OPENMODE;
2538 }
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002539 return -NFS4ERR_BAD_STATEID;
Trond Myklebustb134fc42016-09-22 13:39:16 -04002540 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002541 status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
Trond Myklebust08cb47f2013-08-20 21:59:40 -04002542 trace_nfs4_test_open_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002543 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002544 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2545 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2546 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04002547 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002548 stateid->type = NFS4_INVALID_STATEID_TYPE;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002549 }
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002550 if (status != NFS_OK)
2551 return status;
2552 if (nfs_open_stateid_recover_openmode(state))
2553 return -NFS4ERR_OPENMODE;
2554 return NFS_OK;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002555}
2556
2557static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2558{
Chuck Levereb64cf92012-07-11 16:30:05 -04002559 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002560
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002561 nfs41_check_delegation_stateid(state);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002562 status = nfs41_check_expired_locks(state);
2563 if (status != NFS_OK)
2564 return status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002565 status = nfs41_check_open_stateid(state);
Chuck Levereb64cf92012-07-11 16:30:05 -04002566 if (status != NFS_OK)
2567 status = nfs4_open_expired(sp, state);
2568 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002569}
2570#endif
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002573 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2574 * fields corresponding to attributes that were used to store the verifier.
2575 * Make sure we clobber those fields in the later setattr call
2576 */
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002577static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
2578 struct iattr *sattr, struct nfs4_label **label)
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002579{
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002580 const u32 *attrset = opendata->o_res.attrset;
2581
2582 if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002583 !(sattr->ia_valid & ATTR_ATIME_SET))
2584 sattr->ia_valid |= ATTR_ATIME;
2585
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002586 if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002587 !(sattr->ia_valid & ATTR_MTIME_SET))
2588 sattr->ia_valid |= ATTR_MTIME;
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002589
2590 /* Except MODE, it seems harmless of setting twice. */
Benjamin Coddingtona4306072017-01-24 11:34:20 -05002591 if (opendata->o_arg.createmode != NFS4_CREATE_EXCLUSIVE &&
Benjamin Coddington501e7a42017-06-02 11:21:34 -04002592 (attrset[1] & FATTR4_WORD1_MODE ||
2593 attrset[2] & FATTR4_WORD2_MODE_UMASK))
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002594 sattr->ia_valid &= ~ATTR_MODE;
2595
2596 if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL)
2597 *label = NULL;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002598}
2599
Trond Myklebustc21443c2013-02-07 14:26:21 -05002600static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2601 fmode_t fmode,
2602 int flags,
Trond Myklebust3efb9722013-05-29 13:17:04 -04002603 struct nfs_open_context *ctx)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002604{
2605 struct nfs4_state_owner *sp = opendata->owner;
2606 struct nfs_server *server = sp->so_server;
Trond Myklebust275bb302013-05-29 13:11:28 -04002607 struct dentry *dentry;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002608 struct nfs4_state *state;
2609 unsigned int seq;
2610 int ret;
2611
2612 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2613
2614 ret = _nfs4_proc_open(opendata);
Trond Myklebustdca780012014-10-23 19:23:03 +03002615 if (ret != 0)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002616 goto out;
2617
2618 state = nfs4_opendata_to_nfs4_state(opendata);
2619 ret = PTR_ERR(state);
2620 if (IS_ERR(state))
2621 goto out;
Trond Myklebusta974dee2017-02-08 11:29:46 -05002622 ctx->state = state;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002623 if (server->caps & NFS_CAP_POSIX_LOCK)
2624 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Jeff Laytona8ce3772016-09-17 18:17:35 -04002625 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
2626 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
Trond Myklebustc21443c2013-02-07 14:26:21 -05002627
Trond Myklebust275bb302013-05-29 13:11:28 -04002628 dentry = opendata->dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002629 if (d_really_is_negative(dentry)) {
Al Viro668d0cd2016-03-08 12:44:17 -05002630 struct dentry *alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002631 d_drop(dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002632 alias = d_exact_alias(dentry, state->inode);
2633 if (!alias)
2634 alias = d_splice_alias(igrab(state->inode), dentry);
2635 /* d_splice_alias() can't fail here - it's a non-directory */
2636 if (alias) {
Trond Myklebust275bb302013-05-29 13:11:28 -04002637 dput(ctx->dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002638 ctx->dentry = dentry = alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002639 }
2640 nfs_set_verifier(dentry,
David Howells2b0143b2015-03-17 22:25:59 +00002641 nfs_save_change_attribute(d_inode(opendata->dir)));
Trond Myklebust275bb302013-05-29 13:11:28 -04002642 }
2643
Trond Myklebustc21443c2013-02-07 14:26:21 -05002644 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags);
2645 if (ret != 0)
2646 goto out;
2647
David Howells2b0143b2015-03-17 22:25:59 +00002648 if (d_inode(dentry) == state->inode) {
Trond Myklebustc45ffdd2013-05-29 13:34:46 -04002649 nfs_inode_attach_open_context(ctx);
2650 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
2651 nfs4_schedule_stateid_recovery(server, state);
2652 }
Trond Myklebustc21443c2013-02-07 14:26:21 -05002653out:
2654 return ret;
2655}
2656
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002657/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002658 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 */
Andy Adamson82be4172012-05-23 05:02:35 -04002660static int _nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002661 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002662 int flags,
2663 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002664 struct nfs4_label *label,
2665 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 struct nfs4_state_owner *sp;
2668 struct nfs4_state *state = NULL;
2669 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002670 struct nfs4_opendata *opendata;
Trond Myklebust4197a052013-05-29 12:37:49 -04002671 struct dentry *dentry = ctx->dentry;
2672 struct rpc_cred *cred = ctx->cred;
2673 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
2674 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002675 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
David Quigley1775fd32013-05-22 12:50:42 -04002676 struct nfs4_label *olabel = NULL;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002677 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 status = -ENOMEM;
Trond Myklebustd1e284d2012-01-17 22:04:24 -05002681 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
2682 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
2684 goto out_err;
2685 }
Anna Schumaker334f87d2017-01-11 16:17:17 -05002686 status = nfs4_client_recover_expired_lease(server->nfs_client);
Trond Myklebust58d97142006-01-03 09:55:24 +01002687 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002688 goto err_put_state_owner;
David Howells2b0143b2015-03-17 22:25:59 +00002689 if (d_really_is_positive(dentry))
2690 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01002691 status = -ENOMEM;
David Howells2b0143b2015-03-17 22:25:59 +00002692 if (d_really_is_positive(dentry))
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002693 claim = NFS4_OPEN_CLAIM_FH;
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002694 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr,
David Quigley1775fd32013-05-22 12:50:42 -04002695 label, claim, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002696 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05002697 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
David Quigley14c43f72013-05-22 12:50:43 -04002699 if (label) {
2700 olabel = nfs4_label_alloc(server, GFP_KERNEL);
2701 if (IS_ERR(olabel)) {
2702 status = PTR_ERR(olabel);
2703 goto err_opendata_put;
2704 }
2705 }
2706
Trond Myklebuste911b812014-03-26 13:24:37 -07002707 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
2708 if (!opendata->f_attr.mdsthreshold) {
2709 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
2710 if (!opendata->f_attr.mdsthreshold)
2711 goto err_free_label;
2712 }
Trond Myklebust1549210f2012-06-05 09:16:47 -04002713 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
Andy Adamson82be4172012-05-23 05:02:35 -04002714 }
David Howells2b0143b2015-03-17 22:25:59 +00002715 if (d_really_is_positive(dentry))
2716 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
Trond Myklebustaac00a82007-07-05 19:02:21 -04002717
Trond Myklebust3efb9722013-05-29 13:17:04 -04002718 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002719 if (status != 0)
David Quigley14c43f72013-05-22 12:50:43 -04002720 goto err_free_label;
Trond Myklebust3efb9722013-05-29 13:17:04 -04002721 state = ctx->state;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002722
NeilBrownefcbc042015-07-30 13:00:56 +10002723 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
Trond Myklebust549b19c2013-04-16 18:42:34 -04002724 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002725 nfs4_exclusive_attrset(opendata, sattr, &label);
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +02002726 /*
2727 * send create attributes which was not set by open
2728 * with an extra setattr.
2729 */
2730 if (sattr->ia_valid & NFS4_VALID_ATTRS) {
2731 nfs_fattr_init(opendata->o_res.f_attr);
2732 status = nfs4_do_setattr(state->inode, cred,
2733 opendata->o_res.f_attr, sattr,
NeilBrown29b59f92016-10-13 15:26:47 +11002734 ctx, label, olabel);
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +02002735 if (status == 0) {
2736 nfs_setattr_update_inode(state->inode, sattr,
2737 opendata->o_res.f_attr);
2738 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
2739 }
David Quigley1775fd32013-05-22 12:50:42 -04002740 }
Trond Myklebust0ab64e02010-04-16 16:22:51 -04002741 }
Kinglong Meec5c3fb52015-08-26 21:11:39 +08002742 if (opened && opendata->file_created)
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002743 *opened |= FILE_CREATED;
Andy Adamson82be4172012-05-23 05:02:35 -04002744
Trond Myklebuste911b812014-03-26 13:24:37 -07002745 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
Andy Adamson82be4172012-05-23 05:02:35 -04002746 *ctx_th = opendata->f_attr.mdsthreshold;
Trond Myklebuste911b812014-03-26 13:24:37 -07002747 opendata->f_attr.mdsthreshold = NULL;
2748 }
Andy Adamson82be4172012-05-23 05:02:35 -04002749
David Quigley14c43f72013-05-22 12:50:43 -04002750 nfs4_label_free(olabel);
2751
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002752 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return 0;
David Quigley14c43f72013-05-22 12:50:43 -04002755err_free_label:
2756 nfs4_label_free(olabel);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002757err_opendata_put:
2758 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002759err_put_state_owner:
2760 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return status;
2763}
2764
2765
Andy Adamson82be4172012-05-23 05:02:35 -04002766static struct nfs4_state *nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002767 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002768 int flags,
2769 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002770 struct nfs4_label *label,
2771 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002773 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 struct nfs4_exception exception = { };
2775 struct nfs4_state *res;
2776 int status;
2777
2778 do {
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002779 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened);
Trond Myklebust3efb9722013-05-29 13:17:04 -04002780 res = ctx->state;
Trond Myklebust42113a72013-08-12 16:19:27 -04002781 trace_nfs4_open_file(ctx, flags, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (status == 0)
2783 break;
2784 /* NOTE: BAD_SEQID means the server and client disagree about the
2785 * book-keeping w.r.t. state-changing operations
2786 * (OPEN/CLOSE/LOCK/LOCKU...)
2787 * It is actually a sign of a bug on the client or on the server.
2788 *
2789 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07002790 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 * have unhashed the old state_owner for us, and that we can
2792 * therefore safely retry using a new one. We should still warn
2793 * the user though...
2794 */
2795 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust9a3ba432012-03-12 18:01:48 -04002796 pr_warn_ratelimited("NFS: v4 server %s "
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04002797 " returned a bad sequence-id error!\n",
2798 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 exception.retry = 1;
2800 continue;
2801 }
Trond Myklebust550f5742005-10-18 14:20:21 -07002802 /*
2803 * BAD_STATEID on OPEN means that the server cancelled our
2804 * state before it received the OPEN_CONFIRM.
2805 * Recover by retrying the request as per the discussion
2806 * on Page 181 of RFC3530.
2807 */
2808 if (status == -NFS4ERR_BAD_STATEID) {
2809 exception.retry = 1;
2810 continue;
2811 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04002812 if (status == -EAGAIN) {
2813 /* We must have found a delegation */
2814 exception.retry = 1;
2815 continue;
2816 }
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002817 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
2818 continue;
2819 res = ERR_PTR(nfs4_handle_exception(server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 status, &exception));
2821 } while (exception.retry);
2822 return res;
2823}
2824
Trond Myklebust8487c472016-06-26 08:44:35 -04002825static int _nfs4_do_setattr(struct inode *inode,
2826 struct nfs_setattrargs *arg,
2827 struct nfs_setattrres *res,
2828 struct rpc_cred *cred,
NeilBrown29b59f92016-10-13 15:26:47 +11002829 struct nfs_open_context *ctx)
Trond Myklebust8487c472016-06-26 08:44:35 -04002830{
2831 struct nfs_server *server = NFS_SERVER(inode);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002832 struct rpc_message msg = {
Trond Myklebust8487c472016-06-26 08:44:35 -04002833 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2834 .rpc_argp = arg,
2835 .rpc_resp = res,
2836 .rpc_cred = cred,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002837 };
Trond Myklebust8487c472016-06-26 08:44:35 -04002838 struct rpc_cred *delegation_cred = NULL;
2839 unsigned long timestamp = jiffies;
2840 fmode_t fmode;
2841 bool truncate;
2842 int status;
2843
2844 nfs_fattr_init(res->fattr);
2845
2846 /* Servers should only apply open mode checks for file size changes */
2847 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
2848 fmode = truncate ? FMODE_WRITE : FMODE_READ;
2849
2850 if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) {
2851 /* Use that stateid */
NeilBrown29b59f92016-10-13 15:26:47 +11002852 } else if (truncate && ctx != NULL) {
NeilBrown17393472016-10-13 15:26:47 +11002853 struct nfs_lock_context *l_ctx;
NeilBrown29b59f92016-10-13 15:26:47 +11002854 if (!nfs4_valid_open_stateid(ctx->state))
Trond Myklebust8487c472016-06-26 08:44:35 -04002855 return -EBADF;
NeilBrown17393472016-10-13 15:26:47 +11002856 l_ctx = nfs_get_lock_context(ctx);
2857 if (IS_ERR(l_ctx))
2858 return PTR_ERR(l_ctx);
NeilBrown7a0566b2016-12-06 15:50:06 -05002859 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx,
2860 &arg->stateid, &delegation_cred);
2861 nfs_put_lock_context(l_ctx);
2862 if (status == -EIO)
Trond Myklebust8487c472016-06-26 08:44:35 -04002863 return -EBADF;
2864 } else
2865 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
2866 if (delegation_cred)
2867 msg.rpc_cred = delegation_cred;
2868
2869 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
2870
2871 put_rpccred(delegation_cred);
NeilBrown29b59f92016-10-13 15:26:47 +11002872 if (status == 0 && ctx != NULL)
Trond Myklebust8487c472016-06-26 08:44:35 -04002873 renew_lease(server, timestamp);
2874 trace_nfs4_setattr(inode, &arg->stateid, status);
2875 return status;
2876}
2877
2878static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2879 struct nfs_fattr *fattr, struct iattr *sattr,
NeilBrown29b59f92016-10-13 15:26:47 +11002880 struct nfs_open_context *ctx, struct nfs4_label *ilabel,
Trond Myklebust8487c472016-06-26 08:44:35 -04002881 struct nfs4_label *olabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002883 struct nfs_server *server = NFS_SERVER(inode);
NeilBrown29b59f92016-10-13 15:26:47 +11002884 struct nfs4_state *state = ctx ? ctx->state : NULL;
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002885 struct nfs_setattrargs arg = {
2886 .fh = NFS_FH(inode),
2887 .iap = sattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 .server = server,
2889 .bitmask = server->attr_bitmask,
David Quigley1775fd32013-05-22 12:50:42 -04002890 .label = ilabel,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002891 };
2892 struct nfs_setattrres res = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04002894 .label = olabel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 .server = server,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002896 };
Trond Myklebust8487c472016-06-26 08:44:35 -04002897 struct nfs4_exception exception = {
2898 .state = state,
2899 .inode = inode,
2900 .stateid = &arg.stateid,
2901 };
2902 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
David Quigleyaa9c2662013-05-22 12:50:44 -04002904 arg.bitmask = nfs4_bitmask(server, ilabel);
2905 if (ilabel)
2906 arg.bitmask = nfs4_bitmask(server, olabel);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 do {
NeilBrown29b59f92016-10-13 15:26:47 +11002909 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx);
Trond Myklebust451146b2012-04-18 16:29:11 -04002910 switch (err) {
2911 case -NFS4ERR_OPENMODE:
Trond Myklebust721ccfb2013-04-29 11:11:58 -04002912 if (!(sattr->ia_valid & ATTR_SIZE)) {
2913 pr_warn_once("NFSv4: server %s is incorrectly "
2914 "applying open mode checks to "
2915 "a SETATTR that is not "
2916 "changing file size.\n",
2917 server->nfs_client->cl_hostname);
2918 }
Trond Myklebust451146b2012-04-18 16:29:11 -04002919 if (state && !(state->state & FMODE_WRITE)) {
2920 err = -EBADF;
2921 if (sattr->ia_valid & ATTR_OPEN)
2922 err = -EACCES;
2923 goto out;
2924 }
2925 }
2926 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 } while (exception.retry);
Trond Myklebust451146b2012-04-18 16:29:11 -04002928out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return err;
2930}
2931
Peng Tao500d7012015-09-22 11:35:22 +08002932static bool
2933nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
2934{
2935 if (inode == NULL || !nfs_have_layout(inode))
2936 return false;
2937
2938 return pnfs_wait_on_layoutreturn(inode, task);
2939}
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941struct nfs4_closedata {
2942 struct inode *inode;
2943 struct nfs4_state *state;
2944 struct nfs_closeargs arg;
2945 struct nfs_closeres res;
Trond Myklebustcf805162016-11-15 14:56:07 -05002946 struct {
2947 struct nfs4_layoutreturn_args arg;
2948 struct nfs4_layoutreturn_res res;
Trond Myklebust4d796d72016-09-23 11:38:08 -04002949 struct nfs4_xdr_opaque_data ld_private;
Trond Myklebustcf805162016-11-15 14:56:07 -05002950 u32 roc_barrier;
2951 bool roc;
2952 } lr;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002953 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002954 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955};
2956
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002957static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07002958{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002959 struct nfs4_closedata *calldata = data;
2960 struct nfs4_state_owner *sp = calldata->state->owner;
Al Viro643168c2011-06-22 18:20:23 -04002961 struct super_block *sb = calldata->state->inode->i_sb;
Trond Myklebust95121352005-10-18 14:20:12 -07002962
Trond Myklebustcf805162016-11-15 14:56:07 -05002963 if (calldata->lr.roc)
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05002964 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res,
2965 calldata->res.lr_ret);
Trond Myklebust95121352005-10-18 14:20:12 -07002966 nfs4_put_open_state(calldata->state);
2967 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07002968 nfs4_put_state_owner(sp);
Trond Myklebust322b2b92013-01-11 16:39:51 -05002969 nfs_sb_deactive(sb);
Trond Myklebust95121352005-10-18 14:20:12 -07002970 kfree(calldata);
2971}
2972
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002973static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002975 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 struct nfs_server *server = NFS_SERVER(calldata->inode);
Trond Myklebust412f6c42014-08-25 22:09:08 -04002978 nfs4_stateid *res_stateid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Chuck Levera3ca5652012-03-01 17:00:40 -05002980 dprintk("%s: begin!\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04002981 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
2982 return;
Trond Myklebust42113a72013-08-12 16:19:27 -04002983 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
Trond Myklebustcf805162016-11-15 14:56:07 -05002984
2985 /* Handle Layoutreturn errors */
2986 if (calldata->arg.lr_args && task->tk_status != 0) {
2987 switch (calldata->res.lr_ret) {
2988 default:
2989 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
2990 break;
2991 case 0:
2992 calldata->arg.lr_args = NULL;
2993 calldata->res.lr_res = NULL;
2994 break;
2995 case -NFS4ERR_ADMIN_REVOKED:
2996 case -NFS4ERR_DELEG_REVOKED:
2997 case -NFS4ERR_EXPIRED:
2998 case -NFS4ERR_BAD_STATEID:
2999 case -NFS4ERR_OLD_STATEID:
3000 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
3001 case -NFS4ERR_WRONG_CRED:
3002 calldata->arg.lr_args = NULL;
3003 calldata->res.lr_res = NULL;
3004 calldata->res.lr_ret = 0;
3005 rpc_restart_call_prepare(task);
3006 return;
3007 }
3008 }
3009
Anna Schumakerd9b67e12017-01-11 15:04:25 -05003010 /* hmm. we are done with the inode, and in the process of freeing
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 * the state_owner. we keep this around to process errors
3012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 switch (task->tk_status) {
3014 case 0:
Trond Myklebust412f6c42014-08-25 22:09:08 -04003015 res_stateid = &calldata->res.stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003016 renew_lease(server, calldata->timestamp);
Trond Myklebust412f6c42014-08-25 22:09:08 -04003017 break;
Trond Myklebustf07d4a32016-12-19 10:34:14 -05003018 case -NFS4ERR_ACCESS:
3019 if (calldata->arg.bitmask != NULL) {
3020 calldata->arg.bitmask = NULL;
3021 calldata->res.fattr = NULL;
3022 task->tk_status = 0;
3023 rpc_restart_call_prepare(task);
3024 goto out_release;
3025
3026 }
3027 break;
Trond Myklebust69794ad2013-11-20 12:57:19 -05003028 case -NFS4ERR_ADMIN_REVOKED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 case -NFS4ERR_STALE_STATEID:
Trond Myklebust26d36302016-09-22 13:39:05 -04003030 case -NFS4ERR_EXPIRED:
3031 nfs4_free_revoked_stateid(server,
3032 &calldata->arg.stateid,
3033 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003034 case -NFS4ERR_OLD_STATEID:
3035 case -NFS4ERR_BAD_STATEID:
Trond Myklebust566fcec2015-01-23 15:32:46 -05003036 if (!nfs4_stateid_match(&calldata->arg.stateid,
Anna Schumaker369d6b72015-03-02 16:46:09 -05003037 &state->open_stateid)) {
Trond Myklebust566fcec2015-01-23 15:32:46 -05003038 rpc_restart_call_prepare(task);
3039 goto out_release;
3040 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003041 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003042 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10003044 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) {
Trond Myklebust72211db2009-12-15 14:47:36 -05003045 rpc_restart_call_prepare(task);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003046 goto out_release;
3047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 }
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07003049 nfs_clear_open_stateid(state, &calldata->arg.stateid,
3050 res_stateid, calldata->arg.fmode);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003051out_release:
Trond Myklebust72211db2009-12-15 14:47:36 -05003052 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustd8d84982016-12-19 12:14:44 -05003053 nfs_refresh_inode(calldata->inode, &calldata->fattr);
Chuck Levera3ca5652012-03-01 17:00:40 -05003054 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003057static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003059 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07003060 struct nfs4_state *state = calldata->state;
Trond Myklebust7fdab062012-09-20 20:15:57 -04003061 struct inode *inode = calldata->inode;
Trond Myklebustaee7af32014-08-25 22:33:12 -04003062 bool is_rdonly, is_wronly, is_rdwr;
Trond Myklebust88069f72009-12-08 08:33:16 -05003063 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07003064
Chuck Levera3ca5652012-03-01 17:00:40 -05003065 dprintk("%s: begin!\n", __func__);
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003066 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003067 goto out_wait;
Trond Myklebust003707c2007-07-05 18:07:55 -04003068
Trond Myklebust88069f72009-12-08 08:33:16 -05003069 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust4cecb762005-11-04 15:32:58 -05003070 spin_lock(&state->owner->so_lock);
Trond Myklebustaee7af32014-08-25 22:33:12 -04003071 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3072 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3073 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
Anna Schumaker369d6b72015-03-02 16:46:09 -05003074 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04003075 /* Calculate the change in open mode */
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003076 calldata->arg.fmode = 0;
Trond Myklebuste7616922006-01-03 09:55:13 +01003077 if (state->n_rdwr == 0) {
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003078 if (state->n_rdonly == 0)
3079 call_close |= is_rdonly;
3080 else if (is_rdonly)
3081 calldata->arg.fmode |= FMODE_READ;
3082 if (state->n_wronly == 0)
3083 call_close |= is_wronly;
3084 else if (is_wronly)
3085 calldata->arg.fmode |= FMODE_WRITE;
Trond Myklebuste547f262016-06-25 19:19:28 -04003086 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3087 call_close |= is_rdwr;
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003088 } else if (is_rdwr)
3089 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3090
Trond Myklebust5cc78612016-11-14 11:19:56 -05003091 if (!nfs4_valid_open_stateid(state) ||
3092 test_bit(NFS_OPEN_STATE, &state->flags) == 0)
Trond Myklebust5d422302013-03-14 16:57:48 -04003093 call_close = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05003094 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05003095
3096 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003097 /* Note: exit _without_ calling nfs4_close_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003098 goto out_no_action;
Trond Myklebust95121352005-10-18 14:20:12 -07003099 }
Trond Myklebust88069f72009-12-08 08:33:16 -05003100
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05003101 if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) {
Peng Tao500d7012015-09-22 11:35:22 +08003102 nfs_release_seqid(calldata->arg.seqid);
3103 goto out_wait;
3104 }
3105
Trond Myklebust9413a1a2016-12-19 11:36:41 -05003106 if (calldata->arg.fmode == 0)
Trond Myklebust88069f72009-12-08 08:33:16 -05003107 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Trond Myklebust3ecefc92016-10-27 18:25:04 -04003108
Trond Myklebust9413a1a2016-12-19 11:36:41 -05003109 if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) {
Trond Myklebust3ecefc92016-10-27 18:25:04 -04003110 /* Close-to-open cache consistency revalidation */
3111 if (!nfs4_have_delegation(inode, FMODE_READ))
3112 calldata->arg.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
3113 else
3114 calldata->arg.bitmask = NULL;
3115 }
Trond Myklebust3c13cb52015-08-18 23:45:13 -05003116
Trond Myklebust6ae37332015-01-30 14:21:14 -05003117 calldata->arg.share_access =
3118 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3119 calldata->arg.fmode, 0);
Trond Myklebust88069f72009-12-08 08:33:16 -05003120
Trond Myklebustd8d84982016-12-19 12:14:44 -05003121 if (calldata->res.fattr == NULL)
3122 calldata->arg.bitmask = NULL;
3123 else if (calldata->arg.bitmask == NULL)
3124 calldata->res.fattr = NULL;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003125 calldata->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05003126 if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client,
Trond Myklebust9d12b212012-01-17 22:04:25 -05003127 &calldata->arg.seq_args,
3128 &calldata->res.seq_res,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04003129 task) != 0)
3130 nfs_release_seqid(calldata->arg.seqid);
Chuck Levera3ca5652012-03-01 17:00:40 -05003131 dprintk("%s: done!\n", __func__);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003132 return;
3133out_no_action:
3134 task->tk_action = NULL;
3135out_wait:
3136 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003139static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003140 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003141 .rpc_call_done = nfs4_close_done,
3142 .rpc_release = nfs4_free_closedata,
3143};
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145/*
3146 * It is possible for data to be read/written from a mem-mapped file
3147 * after the sys_close call (which hits the vfs layer as a flush).
3148 * This means that we can't safely call nfsv4 close on a file until
3149 * the inode is cleared. This in turn means that we are not good
3150 * NFSv4 citizens - we do not indicate to the server to update the file's
3151 * share state even when we are done with one of the three share
3152 * stateid's in the inode.
3153 *
3154 * NOTE: Caller must be holding the sp->so_owner semaphore!
3155 */
Trond Myklebust1f7977c2012-09-20 20:31:51 -04003156int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003158 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust63f5f792015-01-23 19:19:25 -05003159 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04003161 struct nfs4_state_owner *sp = state->owner;
3162 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003163 struct rpc_message msg = {
3164 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3165 .rpc_cred = state->owner->so_cred,
3166 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003167 struct rpc_task_setup task_setup_data = {
3168 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003169 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003170 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003171 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003172 .flags = RPC_TASK_ASYNC,
3173 };
Trond Myklebust95121352005-10-18 14:20:12 -07003174 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04003176 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3177 &task_setup_data.rpc_client, &msg);
3178
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003179 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07003181 goto out;
Chuck Levera9c92d62013-08-09 12:48:18 -04003182 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003183 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003185 calldata->arg.fh = NFS_FH(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 /* Serialization for the sequence id */
Trond Myklebust63f5f792015-01-23 19:19:25 -05003187 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3188 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05003189 if (IS_ERR(calldata->arg.seqid))
Trond Myklebust95121352005-10-18 14:20:12 -07003190 goto out_free_calldata;
Trond Myklebustd8d84982016-12-19 12:14:44 -05003191 nfs_fattr_init(&calldata->fattr);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003192 calldata->arg.fmode = 0;
Trond Myklebust4d796d72016-09-23 11:38:08 -04003193 calldata->lr.arg.ld_private = &calldata->lr.ld_private;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003194 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003195 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003196 calldata->res.server = server;
Trond Myklebustcf805162016-11-15 14:56:07 -05003197 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05003198 calldata->lr.roc = pnfs_roc(state->inode,
3199 &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred);
3200 if (calldata->lr.roc) {
3201 calldata->arg.lr_args = &calldata->lr.arg;
3202 calldata->res.lr_res = &calldata->lr.res;
3203 }
Al Viro643168c2011-06-22 18:20:23 -04003204 nfs_sb_active(calldata->inode->i_sb);
Trond Myklebust95121352005-10-18 14:20:12 -07003205
Trond Myklebust1174dd12010-12-21 10:52:24 -05003206 msg.rpc_argp = &calldata->arg;
3207 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003208 task_setup_data.callback_data = calldata;
3209 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003210 if (IS_ERR(task))
3211 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003212 status = 0;
3213 if (wait)
3214 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003215 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003216 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07003217out_free_calldata:
3218 kfree(calldata);
3219out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04003220 nfs4_put_open_state(state);
3221 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07003222 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223}
3224
Trond Myklebust2b484292010-09-17 10:56:51 -04003225static struct inode *
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003226nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3227 int open_flags, struct iattr *attr, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 struct nfs4_state *state;
David Quigleyaa9c2662013-05-22 12:50:44 -04003230 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
3231
3232 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Trond Myklebust565277f2007-10-15 18:17:53 -04003234 /* Protect against concurrent sillydeletes */
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003235 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
David Quigleyaa9c2662013-05-22 12:50:44 -04003236
3237 nfs4_label_release_security(label);
3238
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04003239 if (IS_ERR(state))
3240 return ERR_CAST(state);
Trond Myklebust275bb302013-05-29 13:11:28 -04003241 return state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242}
3243
Trond Myklebust1185a552009-12-03 15:54:02 -05003244static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003245{
3246 if (ctx->state == NULL)
3247 return;
3248 if (is_sync)
Al Viro643168c2011-06-22 18:20:23 -04003249 nfs4_close_sync(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003250 else
Al Viro643168c2011-06-22 18:20:23 -04003251 nfs4_close_state(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003252}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Trond Myklebustb944dba2013-11-04 15:20:20 -05003254#define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3255#define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05003256#define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_MODE_UMASK - 1UL)
Trond Myklebustb944dba2013-11-04 15:20:20 -05003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3259{
Kinglong Mee8c612822015-08-26 21:12:58 +08003260 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
Benny Halevy43652ad2009-04-01 09:21:54 -04003261 struct nfs4_server_caps_arg args = {
3262 .fhandle = fhandle,
Kinglong Mee8c612822015-08-26 21:12:58 +08003263 .bitmask = bitmask,
Benny Halevy43652ad2009-04-01 09:21:54 -04003264 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 struct nfs4_server_caps_res res = {};
3266 struct rpc_message msg = {
3267 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04003268 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 .rpc_resp = &res,
3270 };
3271 int status;
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003272 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Kinglong Mee8c612822015-08-26 21:12:58 +08003274 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3275 FATTR4_WORD0_FH_EXPIRE_TYPE |
3276 FATTR4_WORD0_LINK_SUPPORT |
3277 FATTR4_WORD0_SYMLINK_SUPPORT |
3278 FATTR4_WORD0_ACLSUPPORT;
3279 if (minorversion)
3280 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3281
Bryan Schumaker7c513052011-03-24 17:12:24 +00003282 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (status == 0) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003284 /* Sanity check the server answers */
Kinglong Mee8c612822015-08-26 21:12:58 +08003285 switch (minorversion) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003286 case 0:
3287 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3288 res.attr_bitmask[2] = 0;
3289 break;
3290 case 1:
3291 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3292 break;
3293 case 2:
3294 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab4602009-08-09 15:06:19 -04003297 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
3298 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
3299 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
3300 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
Trond Myklebustb944dba2013-11-04 15:20:20 -05003301 NFS_CAP_CTIME|NFS_CAP_MTIME|
3302 NFS_CAP_SECURITY_LABEL);
Malahal Naineni7dd7d952014-01-23 08:54:55 -06003303 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3304 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 server->caps |= NFS_CAP_ACLS;
3306 if (res.has_links != 0)
3307 server->caps |= NFS_CAP_HARDLINKS;
3308 if (res.has_symlinks != 0)
3309 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab4602009-08-09 15:06:19 -04003310 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
3311 server->caps |= NFS_CAP_FILEID;
3312 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
3313 server->caps |= NFS_CAP_MODE;
3314 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
3315 server->caps |= NFS_CAP_NLINK;
3316 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
3317 server->caps |= NFS_CAP_OWNER;
3318 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
3319 server->caps |= NFS_CAP_OWNER_GROUP;
3320 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
3321 server->caps |= NFS_CAP_ATIME;
3322 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
3323 server->caps |= NFS_CAP_CTIME;
3324 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
3325 server->caps |= NFS_CAP_MTIME;
David Quigleyaa9c2662013-05-22 12:50:44 -04003326#ifdef CONFIG_NFS_V4_SECURITY_LABEL
3327 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3328 server->caps |= NFS_CAP_SECURITY_LABEL;
3329#endif
3330 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3331 sizeof(server->attr_bitmask));
Trond Myklebustb944dba2013-11-04 15:20:20 -05003332 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
Trond Myklebust62ab4602009-08-09 15:06:19 -04003333
Trond Myklebusta65318b2009-03-11 14:10:28 -04003334 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3335 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3336 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebustb944dba2013-11-04 15:20:20 -05003337 server->cache_consistency_bitmask[2] = 0;
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003338
3339 /* Avoid a regression due to buggy server */
3340 for (i = 0; i < ARRAY_SIZE(res.exclcreat_bitmask); i++)
3341 res.exclcreat_bitmask[i] &= res.attr_bitmask[i];
Kinglong Mee8c612822015-08-26 21:12:58 +08003342 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3343 sizeof(server->exclcreat_bitmask));
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 server->acl_bitmask = res.acl_bitmask;
Chuck Lever264e6352012-03-01 17:02:05 -05003346 server->fh_expire_type = res.fh_expire_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 return status;
3350}
3351
Trond Myklebust55a97592006-06-09 09:34:19 -04003352int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
3354 struct nfs4_exception exception = { };
3355 int err;
3356 do {
3357 err = nfs4_handle_exception(server,
3358 _nfs4_server_capabilities(server, fhandle),
3359 &exception);
3360 } while (exception.retry);
3361 return err;
3362}
3363
3364static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3365 struct nfs_fsinfo *info)
3366{
David Quigleyaa9c2662013-05-22 12:50:44 -04003367 u32 bitmask[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 struct nfs4_lookup_root_arg args = {
David Quigleyaa9c2662013-05-22 12:50:44 -04003369 .bitmask = bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 };
3371 struct nfs4_lookup_res res = {
3372 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04003373 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 .fh = fhandle,
3375 };
3376 struct rpc_message msg = {
3377 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
3378 .rpc_argp = &args,
3379 .rpc_resp = &res,
3380 };
Benny Halevy008f55d2009-04-01 09:22:50 -04003381
David Quigleyaa9c2662013-05-22 12:50:44 -04003382 bitmask[0] = nfs4_fattr_bitmap[0];
3383 bitmask[1] = nfs4_fattr_bitmap[1];
3384 /*
3385 * Process the label in the upcoming getfattr
3386 */
3387 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
3388
Trond Myklebust0e574af2005-10-27 22:12:38 -04003389 nfs_fattr_init(info->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003390 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
3393static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3394 struct nfs_fsinfo *info)
3395{
3396 struct nfs4_exception exception = { };
3397 int err;
3398 do {
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003399 err = _nfs4_lookup_root(server, fhandle, info);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003400 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003401 switch (err) {
3402 case 0:
3403 case -NFS4ERR_WRONGSEC:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003404 goto out;
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003405 default:
3406 err = nfs4_handle_exception(server, err, &exception);
3407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003409out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 return err;
3411}
3412
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003413static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3414 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3415{
Trond Myklebustc2190662013-08-26 19:23:04 -04003416 struct rpc_auth_create_args auth_args = {
3417 .pseudoflavor = flavor,
3418 };
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003419 struct rpc_auth *auth;
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003420
Trond Myklebustc2190662013-08-26 19:23:04 -04003421 auth = rpcauth_create(&auth_args, server->client);
Anna Schumaker9df13362017-01-11 16:30:08 -05003422 if (IS_ERR(auth))
3423 return -EACCES;
3424 return nfs4_lookup_root(server, fhandle, info);
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003425}
3426
Chuck Lever9a744ba2013-03-16 15:56:02 -04003427/*
3428 * Retry pseudoroot lookup with various security flavors. We do this when:
3429 *
3430 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3431 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3432 *
3433 * Returns zero on success, or a negative NFS4ERR value, or a
3434 * negative errno value.
3435 */
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003436static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04003437 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438{
Chuck Lever9a744ba2013-03-16 15:56:02 -04003439 /* Per 3530bis 15.33.5 */
3440 static const rpc_authflavor_t flav_array[] = {
3441 RPC_AUTH_GSS_KRB5P,
3442 RPC_AUTH_GSS_KRB5I,
3443 RPC_AUTH_GSS_KRB5,
Chuck Leverc4eafe12013-03-16 15:56:11 -04003444 RPC_AUTH_UNIX, /* courtesy */
Chuck Lever9a744ba2013-03-16 15:56:02 -04003445 RPC_AUTH_NULL,
3446 };
3447 int status = -EPERM;
3448 size_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04003450 if (server->auth_info.flavor_len > 0) {
3451 /* try each flavor specified by user */
3452 for (i = 0; i < server->auth_info.flavor_len; i++) {
3453 status = nfs4_lookup_root_sec(server, fhandle, info,
3454 server->auth_info.flavors[i]);
3455 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3456 continue;
3457 break;
3458 }
3459 } else {
3460 /* no flavors specified by user, try default list */
3461 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3462 status = nfs4_lookup_root_sec(server, fhandle, info,
3463 flav_array[i]);
3464 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3465 continue;
3466 break;
3467 }
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003468 }
Chuck Lever9a744ba2013-03-16 15:56:02 -04003469
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003470 /*
3471 * -EACCESS could mean that the user doesn't have correct permissions
3472 * to access the mount. It could also mean that we tried to mount
3473 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
3474 * existing mount programs don't handle -EACCES very well so it should
3475 * be mapped to -EPERM instead.
3476 */
3477 if (status == -EACCES)
3478 status = -EPERM;
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003479 return status;
3480}
3481
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003482/**
3483 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3484 * @server: initialized nfs_server handle
3485 * @fhandle: we fill in the pseudo-fs root file handle
3486 * @info: we fill in an FSINFO struct
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003487 * @auth_probe: probe the auth flavours
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003488 *
3489 * Returns zero on success, or a negative errno.
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003490 */
Bryan Schumaker3028eb22012-05-10 15:07:30 -04003491int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003492 struct nfs_fsinfo *info,
3493 bool auth_probe)
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003494{
Andre Przywarac7757072015-04-23 17:17:40 +01003495 int status = 0;
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003496
Andre Przywarac7757072015-04-23 17:17:40 +01003497 if (!auth_probe)
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003498 status = nfs4_lookup_root(server, fhandle, info);
Andre Przywarac7757072015-04-23 17:17:40 +01003499
3500 if (auth_probe || status == NFS4ERR_WRONGSEC)
Trond Myklebust698c9372016-07-25 13:31:14 -04003501 status = server->nfs_client->cl_mvops->find_root_sec(server,
3502 fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 if (status == 0)
3505 status = nfs4_server_capabilities(server, fhandle);
3506 if (status == 0)
3507 status = nfs4_do_fsinfo(server, fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003508
Trond Myklebustc12e87f2006-03-13 21:20:47 -08003509 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510}
3511
Bryan Schumakerbae36242012-05-10 15:07:31 -04003512static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3513 struct nfs_fsinfo *info)
3514{
3515 int error;
3516 struct nfs_fattr *fattr = info->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04003517 struct nfs4_label *label = NULL;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003518
3519 error = nfs4_server_capabilities(server, mntfh);
3520 if (error < 0) {
3521 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3522 return error;
3523 }
3524
David Quigley14c43f72013-05-22 12:50:43 -04003525 label = nfs4_label_alloc(server, GFP_KERNEL);
3526 if (IS_ERR(label))
3527 return PTR_ERR(label);
3528
David Quigley1775fd32013-05-22 12:50:42 -04003529 error = nfs4_proc_getattr(server, mntfh, fattr, label);
Bryan Schumakerbae36242012-05-10 15:07:31 -04003530 if (error < 0) {
3531 dprintk("nfs4_get_root: getattr error = %d\n", -error);
David Quigley14c43f72013-05-22 12:50:43 -04003532 goto err_free_label;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003533 }
3534
3535 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
3536 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
3537 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
3538
David Quigley14c43f72013-05-22 12:50:43 -04003539err_free_label:
3540 nfs4_label_free(label);
3541
Bryan Schumakerbae36242012-05-10 15:07:31 -04003542 return error;
3543}
3544
Manoj Naik6b97fd32006-06-09 09:34:29 -04003545/*
3546 * Get locations and (maybe) other attributes of a referral.
3547 * Note that we'll actually follow the referral later when
3548 * we detect fsid mismatch in inode revalidation
3549 */
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003550static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
3551 const struct qstr *name, struct nfs_fattr *fattr,
3552 struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04003553{
3554 int status = -ENOMEM;
3555 struct page *page = NULL;
3556 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003557
3558 page = alloc_page(GFP_KERNEL);
3559 if (page == NULL)
3560 goto out;
3561 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
3562 if (locations == NULL)
3563 goto out;
3564
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003565 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003566 if (status != 0)
3567 goto out;
Chuck Lever519ae252013-10-17 14:13:19 -04003568
3569 /*
3570 * If the fsid didn't change, this is a migration event, not a
3571 * referral. Cause us to drop into the exception handler, which
3572 * will kick off migration recovery.
3573 */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003574 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Andy Adamson533eb462011-06-13 18:25:56 -04003575 dprintk("%s: server did not return a different fsid for"
3576 " a referral at %s\n", __func__, name->name);
Chuck Lever519ae252013-10-17 14:13:19 -04003577 status = -NFS4ERR_MOVED;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003578 goto out;
3579 }
Andy Adamson533eb462011-06-13 18:25:56 -04003580 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
3581 nfs_fixup_referral_attributes(&locations->fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003582
Andy Adamson533eb462011-06-13 18:25:56 -04003583 /* replace the lookup nfs_fattr with the locations nfs_fattr */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003584 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
Manoj Naik6b97fd32006-06-09 09:34:29 -04003585 memset(fhandle, 0, sizeof(struct nfs_fh));
3586out:
3587 if (page)
3588 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04003589 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003590 return status;
3591}
3592
David Quigley1775fd32013-05-22 12:50:42 -04003593static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3594 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
3596 struct nfs4_getattr_arg args = {
3597 .fh = fhandle,
3598 .bitmask = server->attr_bitmask,
3599 };
3600 struct nfs4_getattr_res res = {
3601 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04003602 .label = label,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 .server = server,
3604 };
3605 struct rpc_message msg = {
3606 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
3607 .rpc_argp = &args,
3608 .rpc_resp = &res,
3609 };
David Quigleyaa9c2662013-05-22 12:50:44 -04003610
3611 args.bitmask = nfs4_bitmask(server, label);
3612
Trond Myklebust0e574af2005-10-27 22:12:38 -04003613 nfs_fattr_init(fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003614 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
David Quigley1775fd32013-05-22 12:50:42 -04003617static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3618 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619{
3620 struct nfs4_exception exception = { };
3621 int err;
3622 do {
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003623 err = _nfs4_proc_getattr(server, fhandle, fattr, label);
3624 trace_nfs4_getattr(server, fhandle, fattr, err);
3625 err = nfs4_handle_exception(server, err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 &exception);
3627 } while (exception.retry);
3628 return err;
3629}
3630
3631/*
3632 * The file is not closed if it is opened due to the a request to change
3633 * the size of the file. The open call will not be needed once the
3634 * VFS layer lookup-intents are implemented.
3635 *
3636 * Close is called when the inode is destroyed.
3637 * If we haven't opened the file for O_WRONLY, we
3638 * need to in the size_change case to obtain a stateid.
3639 *
3640 * Got race?
3641 * Because OPEN is always done by name in nfsv4, it is
3642 * possible that we opened a different file by the same
3643 * name. We can recognize this race condition, but we
3644 * can't do anything about it besides returning an error.
3645 *
3646 * This will be fixed with VFS changes (lookup-intent).
3647 */
3648static int
3649nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
3650 struct iattr *sattr)
3651{
David Howells2b0143b2015-03-17 22:25:59 +00003652 struct inode *inode = d_inode(dentry);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003653 struct rpc_cred *cred = NULL;
NeilBrown29b59f92016-10-13 15:26:47 +11003654 struct nfs_open_context *ctx = NULL;
David Quigley14c43f72013-05-22 12:50:43 -04003655 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 int status;
3657
Peng Tao88ac8152014-09-12 11:04:10 +08003658 if (pnfs_ld_layoutret_on_setattr(inode) &&
3659 sattr->ia_valid & ATTR_SIZE &&
3660 sattr->ia_size < i_size_read(inode))
Trond Myklebust24028672013-03-20 13:23:33 -04003661 pnfs_commit_and_return_layout(inode);
Benny Halevy8a1636c2010-07-14 15:43:57 -04003662
Trond Myklebust0e574af2005-10-27 22:12:38 -04003663 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
Andy Adamson26699402012-05-30 16:12:24 -04003665 /* Deal with open(O_TRUNC) */
3666 if (sattr->ia_valid & ATTR_OPEN)
Nadav Shemercc7936f2013-07-21 17:21:43 +03003667 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
Andy Adamson26699402012-05-30 16:12:24 -04003668
3669 /* Optimization: if the end result is no change, don't RPC */
Nadav Shemercc7936f2013-07-21 17:21:43 +03003670 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
Andy Adamson26699402012-05-30 16:12:24 -04003671 return 0;
3672
Trond Myklebustd5308382005-11-04 15:33:38 -05003673 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003674 if (sattr->ia_valid & ATTR_FILE) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00003675
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003676 ctx = nfs_file_open_context(sattr->ia_file);
NeilBrown29b59f92016-10-13 15:26:47 +11003677 if (ctx)
Neil Brown504e5182008-10-16 14:15:16 +11003678 cred = ctx->cred;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003679 }
3680
David Quigley14c43f72013-05-22 12:50:43 -04003681 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
3682 if (IS_ERR(label))
3683 return PTR_ERR(label);
3684
NeilBrown29b59f92016-10-13 15:26:47 +11003685 status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL, label);
David Quigleyaa9c2662013-05-22 12:50:44 -04003686 if (status == 0) {
Trond Myklebustf0446362015-02-26 16:09:04 -05003687 nfs_setattr_update_inode(inode, sattr, fattr);
David Quigleyaa9c2662013-05-22 12:50:44 -04003688 nfs_setsecurity(inode, fattr, label);
3689 }
David Quigley14c43f72013-05-22 12:50:43 -04003690 nfs4_label_free(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 return status;
3692}
3693
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003694static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
3695 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003696 struct nfs_fattr *fattr, struct nfs4_label *label)
David Howells2b3de442006-08-22 20:06:09 -04003697{
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003698 struct nfs_server *server = NFS_SERVER(dir);
David Howells2b3de442006-08-22 20:06:09 -04003699 int status;
3700 struct nfs4_lookup_arg args = {
3701 .bitmask = server->attr_bitmask,
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003702 .dir_fh = NFS_FH(dir),
David Howells2b3de442006-08-22 20:06:09 -04003703 .name = name,
3704 };
3705 struct nfs4_lookup_res res = {
3706 .server = server,
3707 .fattr = fattr,
David Quigleyaa9c2662013-05-22 12:50:44 -04003708 .label = label,
David Howells2b3de442006-08-22 20:06:09 -04003709 .fh = fhandle,
3710 };
3711 struct rpc_message msg = {
3712 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
3713 .rpc_argp = &args,
3714 .rpc_resp = &res,
3715 };
3716
David Quigleyaa9c2662013-05-22 12:50:44 -04003717 args.bitmask = nfs4_bitmask(server, label);
3718
David Howells2b3de442006-08-22 20:06:09 -04003719 nfs_fattr_init(fattr);
3720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003722 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 dprintk("NFS reply lookup: %d\n", status);
3724 return status;
3725}
3726
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003727static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003728{
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003729 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003730 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003731 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3732 fattr->nlink = 2;
3733}
3734
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003735static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04003736 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003737 struct nfs_fattr *fattr, struct nfs4_label *label)
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003738{
3739 struct nfs4_exception exception = { };
3740 struct rpc_clnt *client = *clnt;
3741 int err;
3742 do {
David Quigley1775fd32013-05-22 12:50:42 -04003743 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
Trond Myklebust078ea3d2013-08-12 16:45:55 -04003744 trace_nfs4_lookup(dir, name, err);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003745 switch (err) {
3746 case -NFS4ERR_BADNAME:
3747 err = -ENOENT;
3748 goto out;
3749 case -NFS4ERR_MOVED:
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003750 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
Dominique Martinetc86c90c2015-06-04 17:04:17 +02003751 if (err == -NFS4ERR_MOVED)
3752 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003753 goto out;
3754 case -NFS4ERR_WRONGSEC:
3755 err = -EPERM;
3756 if (client != *clnt)
3757 goto out;
Andy Adamson66b06862014-06-12 15:02:32 -04003758 client = nfs4_negotiate_security(client, dir, name);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003759 if (IS_ERR(client))
3760 return PTR_ERR(client);
3761
3762 exception.retry = 1;
3763 break;
3764 default:
3765 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3766 }
3767 } while (exception.retry);
3768
3769out:
3770 if (err == 0)
3771 *clnt = client;
3772 else if (client != *clnt)
3773 rpc_shutdown_client(client);
3774
3775 return err;
3776}
3777
Al Virobeffb8f2016-07-20 16:34:42 -04003778static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
David Quigley1775fd32013-05-22 12:50:42 -04003779 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3780 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003782 int status;
3783 struct rpc_clnt *client = NFS_CLIENT(dir);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003784
David Quigley1775fd32013-05-22 12:50:42 -04003785 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003786 if (client != NFS_CLIENT(dir)) {
3787 rpc_shutdown_client(client);
3788 nfs_fixup_secinfo_attributes(fattr);
3789 }
3790 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791}
3792
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003793struct rpc_clnt *
Al Virobeffb8f2016-07-20 16:34:42 -04003794nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name,
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003795 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
3796{
Trond Myklebustb72888c2013-08-07 20:38:07 -04003797 struct rpc_clnt *client = NFS_CLIENT(dir);
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003798 int status;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003799
David Quigley1775fd32013-05-22 12:50:42 -04003800 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003801 if (status < 0)
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003802 return ERR_PTR(status);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003803 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003804}
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3807{
Trond Myklebust76b32992007-08-10 17:45:11 -04003808 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 struct nfs4_accessargs args = {
3810 .fh = NFS_FH(inode),
Trond Myklebusta4980e72012-01-30 15:43:56 -05003811 .bitmask = server->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 };
Trond Myklebust76b32992007-08-10 17:45:11 -04003813 struct nfs4_accessres res = {
3814 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04003815 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 struct rpc_message msg = {
3817 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
3818 .rpc_argp = &args,
3819 .rpc_resp = &res,
3820 .rpc_cred = entry->cred,
3821 };
3822 int mode = entry->mask;
David Quigleyaa9c2662013-05-22 12:50:44 -04003823 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 /*
3826 * Determine which access bits we want to ask for...
3827 */
3828 if (mode & MAY_READ)
3829 args.access |= NFS4_ACCESS_READ;
3830 if (S_ISDIR(inode->i_mode)) {
3831 if (mode & MAY_WRITE)
3832 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
3833 if (mode & MAY_EXEC)
3834 args.access |= NFS4_ACCESS_LOOKUP;
3835 } else {
3836 if (mode & MAY_WRITE)
3837 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
3838 if (mode & MAY_EXEC)
3839 args.access |= NFS4_ACCESS_EXECUTE;
3840 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003841
3842 res.fattr = nfs_alloc_fattr();
3843 if (res.fattr == NULL)
3844 return -ENOMEM;
3845
Bryan Schumaker7c513052011-03-24 17:12:24 +00003846 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 if (!status) {
Weston Andros Adamson6168f622012-09-10 14:00:46 -04003848 nfs_access_set_mask(entry, res.access);
Trond Myklebustc407d412010-04-16 16:22:48 -04003849 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003851 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 return status;
3853}
3854
3855static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3856{
3857 struct nfs4_exception exception = { };
3858 int err;
3859 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003860 err = _nfs4_proc_access(inode, entry);
3861 trace_nfs4_access(inode, err);
3862 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 &exception);
3864 } while (exception.retry);
3865 return err;
3866}
3867
3868/*
3869 * TODO: For the time being, we don't try to get any attributes
3870 * along with any of the zero-copy operations READ, READDIR,
3871 * READLINK, WRITE.
3872 *
3873 * In the case of the first three, we want to put the GETATTR
3874 * after the read-type operation -- this is because it is hard
3875 * to predict the length of a GETATTR response in v4, and thus
3876 * align the READ data correctly. This means that the GETATTR
3877 * may end up partially falling into the page cache, and we should
3878 * shift it into the 'tail' of the xdr_buf before processing.
3879 * To do this efficiently, we need to know the total length
3880 * of data received, which doesn't seem to be available outside
3881 * of the RPC layer.
3882 *
3883 * In the case of WRITE, we also want to put the GETATTR after
3884 * the operation -- in this case because we want to make sure
Trond Myklebust140150d2012-06-05 15:20:25 -04003885 * we get the post-operation mtime and size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 *
3887 * Both of these changes to the XDR layer would in fact be quite
3888 * minor, but I decided to leave them for a subsequent patch.
3889 */
3890static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
3891 unsigned int pgbase, unsigned int pglen)
3892{
3893 struct nfs4_readlink args = {
3894 .fh = NFS_FH(inode),
3895 .pgbase = pgbase,
3896 .pglen = pglen,
3897 .pages = &page,
3898 };
Benny Halevyf50c7002009-04-01 09:21:55 -04003899 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 struct rpc_message msg = {
3901 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
3902 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04003903 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 };
3905
Bryan Schumaker7c513052011-03-24 17:12:24 +00003906 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907}
3908
3909static int nfs4_proc_readlink(struct inode *inode, struct page *page,
3910 unsigned int pgbase, unsigned int pglen)
3911{
3912 struct nfs4_exception exception = { };
3913 int err;
3914 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003915 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
3916 trace_nfs4_readlink(inode, err);
3917 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 &exception);
3919 } while (exception.retry);
3920 return err;
3921}
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923/*
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003924 * This is just for mknod. open(O_CREAT) will always do ->open_context().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926static int
3927nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003928 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05003930 struct nfs_server *server = NFS_SERVER(dir);
David Quigleyaa9c2662013-05-22 12:50:44 -04003931 struct nfs4_label l, *ilabel = NULL;
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003932 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 int status = 0;
3935
NeilBrown532d4de2016-10-13 15:26:47 +11003936 ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003937 if (IS_ERR(ctx))
3938 return PTR_ERR(ctx);
3939
David Quigleyaa9c2662013-05-22 12:50:44 -04003940 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
3941
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05003942 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
3943 sattr->ia_mode &= ~current_umask();
Kinglong Meec5c3fb52015-08-26 21:11:39 +08003944 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 if (IS_ERR(state)) {
3946 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04003947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949out:
David Quigleyaa9c2662013-05-22 12:50:44 -04003950 nfs4_label_release_security(ilabel);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003951 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 return status;
3953}
3954
Al Virobeffb8f2016-07-20 16:34:42 -04003955static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
Trond Myklebust16e42952005-10-27 22:12:44 -04003957 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04003958 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 .fh = NFS_FH(dir),
Linus Torvalds26fe5752012-05-10 13:14:12 -07003960 .name = *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04003962 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04003963 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04003964 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04003966 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
3967 .rpc_argp = &args,
3968 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 };
Trond Myklebustd3129ef2017-01-11 22:07:28 -05003970 unsigned long timestamp = jiffies;
Trond Myklebust778d2812012-04-27 13:48:19 -04003971 int status;
Trond Myklebustd3468902010-04-16 16:22:50 -04003972
Bryan Schumaker7c513052011-03-24 17:12:24 +00003973 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
Trond Myklebust778d2812012-04-27 13:48:19 -04003974 if (status == 0)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05003975 update_changeattr(dir, &res.cinfo, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 return status;
3977}
3978
Al Virobeffb8f2016-07-20 16:34:42 -04003979static int nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980{
3981 struct nfs4_exception exception = { };
3982 int err;
3983 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04003984 err = _nfs4_proc_remove(dir, name);
3985 trace_nfs4_remove(dir, name, err);
3986 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 &exception);
3988 } while (exception.retry);
3989 return err;
3990}
3991
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04003992static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04003994 struct nfs_server *server = NFS_SERVER(dir);
3995 struct nfs_removeargs *args = msg->rpc_argp;
3996 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04003998 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Chuck Levera9c92d62013-08-09 12:48:18 -04004000 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04004001
4002 nfs_fattr_init(res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003}
4004
Bryan Schumaker34e137c2012-03-19 14:54:41 -04004005static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4006{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004007 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004008 &data->args.seq_args,
4009 &data->res.seq_res,
4010 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011}
4012
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004013static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004015 struct nfs_unlinkdata *data = task->tk_calldata;
4016 struct nfs_removeres *res = &data->res;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004017
Trond Myklebust14516c32010-07-31 14:29:06 -04004018 if (!nfs4_sequence_done(task, &res->seq_res))
4019 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004020 if (nfs4_async_handle_error(task, res->server, NULL,
4021 &data->timeout) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004022 return 0;
Trond Myklebustc40d52f2017-01-11 12:36:11 -05004023 if (task->tk_status == 0)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004024 update_changeattr(dir, &res->cinfo, res->dir_attr->time_start);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004025 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026}
4027
Jeff Laytond3d41522010-09-17 17:31:57 -04004028static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
4029{
4030 struct nfs_server *server = NFS_SERVER(dir);
4031 struct nfs_renameargs *arg = msg->rpc_argp;
4032 struct nfs_renameres *res = msg->rpc_resp;
4033
4034 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
Jeff Laytond3d41522010-09-17 17:31:57 -04004035 res->server = server;
Chuck Levera9c92d62013-08-09 12:48:18 -04004036 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1);
Jeff Laytond3d41522010-09-17 17:31:57 -04004037}
4038
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04004039static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4040{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004041 nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004042 &data->args.seq_args,
4043 &data->res.seq_res,
4044 task);
Jeff Laytond3d41522010-09-17 17:31:57 -04004045}
4046
4047static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4048 struct inode *new_dir)
4049{
Trond Myklebustfbc6f7c2013-08-12 17:08:26 -04004050 struct nfs_renamedata *data = task->tk_calldata;
4051 struct nfs_renameres *res = &data->res;
Jeff Laytond3d41522010-09-17 17:31:57 -04004052
4053 if (!nfs4_sequence_done(task, &res->seq_res))
4054 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004055 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
Jeff Laytond3d41522010-09-17 17:31:57 -04004056 return 0;
4057
Trond Myklebustc733c492017-01-11 12:32:26 -05004058 if (task->tk_status == 0) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004059 update_changeattr(old_dir, &res->old_cinfo, res->old_fattr->time_start);
Trond Myklebustc733c492017-01-11 12:32:26 -05004060 if (new_dir != old_dir)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004061 update_changeattr(new_dir, &res->new_cinfo, res->new_fattr->time_start);
Trond Myklebustc733c492017-01-11 12:32:26 -05004062 }
Jeff Laytond3d41522010-09-17 17:31:57 -04004063 return 1;
4064}
4065
Al Virobeffb8f2016-07-20 16:34:42 -04004066static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004068 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 struct nfs4_link_arg arg = {
4070 .fh = NFS_FH(inode),
4071 .dir_fh = NFS_FH(dir),
4072 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004073 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004075 struct nfs4_link_res res = {
4076 .server = server,
David Quigley1775fd32013-05-22 12:50:42 -04004077 .label = NULL,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004078 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 struct rpc_message msg = {
4080 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4081 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004082 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 };
Trond Myklebust136f2622010-04-16 16:22:49 -04004084 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Trond Myklebust136f2622010-04-16 16:22:49 -04004086 res.fattr = nfs_alloc_fattr();
Trond Myklebust778d2812012-04-27 13:48:19 -04004087 if (res.fattr == NULL)
Trond Myklebust136f2622010-04-16 16:22:49 -04004088 goto out;
4089
David Quigley14c43f72013-05-22 12:50:43 -04004090 res.label = nfs4_label_alloc(server, GFP_KERNEL);
4091 if (IS_ERR(res.label)) {
4092 status = PTR_ERR(res.label);
4093 goto out;
4094 }
David Quigleyaa9c2662013-05-22 12:50:44 -04004095 arg.bitmask = nfs4_bitmask(server, res.label);
David Quigley14c43f72013-05-22 12:50:43 -04004096
Bryan Schumaker7c513052011-03-24 17:12:24 +00004097 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004098 if (!status) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004099 update_changeattr(dir, &res.cinfo, res.fattr->time_start);
David Quigleyaa9c2662013-05-22 12:50:44 -04004100 status = nfs_post_op_update_inode(inode, res.fattr);
4101 if (!status)
4102 nfs_setsecurity(inode, res.fattr, res.label);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004103 }
David Quigley14c43f72013-05-22 12:50:43 -04004104
4105
4106 nfs4_label_free(res.label);
4107
Trond Myklebust136f2622010-04-16 16:22:49 -04004108out:
Trond Myklebust136f2622010-04-16 16:22:49 -04004109 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 return status;
4111}
4112
Al Virobeffb8f2016-07-20 16:34:42 -04004113static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114{
4115 struct nfs4_exception exception = { };
4116 int err;
4117 do {
4118 err = nfs4_handle_exception(NFS_SERVER(inode),
4119 _nfs4_proc_link(inode, dir, name),
4120 &exception);
4121 } while (exception.retry);
4122 return err;
4123}
4124
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004125struct nfs4_createdata {
4126 struct rpc_message msg;
4127 struct nfs4_create_arg arg;
4128 struct nfs4_create_res res;
4129 struct nfs_fh fh;
4130 struct nfs_fattr fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004131 struct nfs4_label *label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004132};
4133
4134static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04004135 const struct qstr *name, struct iattr *sattr, u32 ftype)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004136{
4137 struct nfs4_createdata *data;
4138
4139 data = kzalloc(sizeof(*data), GFP_KERNEL);
4140 if (data != NULL) {
4141 struct nfs_server *server = NFS_SERVER(dir);
4142
David Quigley14c43f72013-05-22 12:50:43 -04004143 data->label = nfs4_label_alloc(server, GFP_KERNEL);
4144 if (IS_ERR(data->label))
4145 goto out_free;
4146
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004147 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
4148 data->msg.rpc_argp = &data->arg;
4149 data->msg.rpc_resp = &data->res;
4150 data->arg.dir_fh = NFS_FH(dir);
4151 data->arg.server = server;
4152 data->arg.name = name;
4153 data->arg.attrs = sattr;
4154 data->arg.ftype = ftype;
David Quigleyaa9c2662013-05-22 12:50:44 -04004155 data->arg.bitmask = nfs4_bitmask(server, data->label);
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004156 data->arg.umask = current_umask();
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004157 data->res.server = server;
4158 data->res.fh = &data->fh;
4159 data->res.fattr = &data->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004160 data->res.label = data->label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004161 nfs_fattr_init(data->res.fattr);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004162 }
4163 return data;
David Quigley14c43f72013-05-22 12:50:43 -04004164out_free:
4165 kfree(data);
4166 return NULL;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004167}
4168
4169static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
4170{
Bryan Schumaker7c513052011-03-24 17:12:24 +00004171 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
Bryan Schumakere73b83f2011-03-24 17:12:23 +00004172 &data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004173 if (status == 0) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004174 update_changeattr(dir, &data->res.dir_cinfo,
4175 data->res.fattr->time_start);
David Quigley1775fd32013-05-22 12:50:42 -04004176 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004177 }
4178 return status;
4179}
4180
4181static void nfs4_free_createdata(struct nfs4_createdata *data)
4182{
David Quigley14c43f72013-05-22 12:50:43 -04004183 nfs4_label_free(data->label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004184 kfree(data);
4185}
4186
Chuck Lever4f390c12006-08-22 20:06:22 -04004187static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004188 struct page *page, unsigned int len, struct iattr *sattr,
4189 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004191 struct nfs4_createdata *data;
4192 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Chuck Lever94a6d752006-08-22 20:06:23 -04004194 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004195 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04004196
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004197 status = -ENOMEM;
4198 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
4199 if (data == NULL)
4200 goto out;
4201
4202 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
4203 data->arg.u.symlink.pages = &page;
4204 data->arg.u.symlink.len = len;
David Quigley1775fd32013-05-22 12:50:42 -04004205 data->arg.label = label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004207 status = nfs4_do_create(dir, dentry, data);
4208
4209 nfs4_free_createdata(data);
4210out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 return status;
4212}
4213
Chuck Lever4f390c12006-08-22 20:06:22 -04004214static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04004215 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216{
4217 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004218 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 int err;
David Quigleyaa9c2662013-05-22 12:50:44 -04004220
4221 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4222
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004224 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
4225 trace_nfs4_symlink(dir, &dentry->d_name, err);
4226 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 &exception);
4228 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004229
4230 nfs4_label_release_security(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 return err;
4232}
4233
4234static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004235 struct iattr *sattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004237 struct nfs4_createdata *data;
4238 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004240 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
4241 if (data == NULL)
4242 goto out;
4243
David Quigley1775fd32013-05-22 12:50:42 -04004244 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004245 status = nfs4_do_create(dir, dentry, data);
4246
4247 nfs4_free_createdata(data);
4248out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 return status;
4250}
4251
4252static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4253 struct iattr *sattr)
4254{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004255 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004257 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004259
David Quigleyaa9c2662013-05-22 12:50:44 -04004260 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4261
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004262 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4263 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004265 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
4266 trace_nfs4_mkdir(dir, &dentry->d_name, err);
4267 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 &exception);
4269 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004270 nfs4_label_release_security(label);
4271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 return err;
4273}
4274
4275static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004276 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277{
David Howells2b0143b2015-03-17 22:25:59 +00004278 struct inode *dir = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 struct nfs4_readdir_arg args = {
4280 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004281 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 .pgbase = 0,
4283 .count = count,
David Howells2b0143b2015-03-17 22:25:59 +00004284 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04004285 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 };
4287 struct nfs4_readdir_res res;
4288 struct rpc_message msg = {
4289 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
4290 .rpc_argp = &args,
4291 .rpc_resp = &res,
4292 .rpc_cred = cred,
4293 };
4294 int status;
4295
Al Viro6de14722013-09-16 10:53:17 -04004296 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
4297 dentry,
Trond Myklebusteadf4592005-06-22 17:16:39 +00004298 (unsigned long long)cookie);
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004299 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 res.pgbase = args.pgbase;
Bryan Schumaker7c513052011-03-24 17:12:24 +00004301 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
Trond Myklebustac396122010-11-15 20:26:22 -05004302 if (status >= 0) {
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004303 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05004304 status += args.pgbase;
4305 }
Trond Myklebustc4812992007-09-28 17:11:45 -04004306
4307 nfs_invalidate_atime(dir);
4308
Harvey Harrison3110ff82008-05-02 13:42:44 -07004309 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 return status;
4311}
4312
4313static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004314 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315{
4316 struct nfs4_exception exception = { };
4317 int err;
4318 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04004319 err = _nfs4_proc_readdir(dentry, cred, cookie,
4320 pages, count, plus);
David Howells2b0143b2015-03-17 22:25:59 +00004321 trace_nfs4_readdir(d_inode(dentry), err);
4322 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 &exception);
4324 } while (exception.retry);
4325 return err;
4326}
4327
4328static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
David Quigleyaa9c2662013-05-22 12:50:44 -04004329 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004331 struct nfs4_createdata *data;
4332 int mode = sattr->ia_mode;
4333 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004335 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
4336 if (data == NULL)
4337 goto out;
4338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004340 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004342 data->arg.ftype = NF4BLK;
4343 data->arg.u.device.specdata1 = MAJOR(rdev);
4344 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 }
4346 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004347 data->arg.ftype = NF4CHR;
4348 data->arg.u.device.specdata1 = MAJOR(rdev);
4349 data->arg.u.device.specdata2 = MINOR(rdev);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004350 } else if (!S_ISSOCK(mode)) {
4351 status = -EINVAL;
4352 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 }
David Quigley1775fd32013-05-22 12:50:42 -04004354
David Quigleyaa9c2662013-05-22 12:50:44 -04004355 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004356 status = nfs4_do_create(dir, dentry, data);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004357out_free:
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004358 nfs4_free_createdata(data);
4359out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 return status;
4361}
4362
4363static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4364 struct iattr *sattr, dev_t rdev)
4365{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004366 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004368 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004370
David Quigleyaa9c2662013-05-22 12:50:44 -04004371 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4372
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004373 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4374 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004376 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
4377 trace_nfs4_mknod(dir, &dentry->d_name, err);
4378 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 &exception);
4380 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004381
4382 nfs4_label_release_security(label);
4383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 return err;
4385}
4386
4387static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
4388 struct nfs_fsstat *fsstat)
4389{
4390 struct nfs4_statfs_arg args = {
4391 .fh = fhandle,
4392 .bitmask = server->attr_bitmask,
4393 };
Benny Halevy24ad1482009-04-01 09:21:56 -04004394 struct nfs4_statfs_res res = {
4395 .fsstat = fsstat,
4396 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 struct rpc_message msg = {
4398 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4399 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04004400 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 };
4402
Trond Myklebust0e574af2005-10-27 22:12:38 -04004403 nfs_fattr_init(fsstat->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004404 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405}
4406
4407static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
4408{
4409 struct nfs4_exception exception = { };
4410 int err;
4411 do {
4412 err = nfs4_handle_exception(server,
4413 _nfs4_proc_statfs(server, fhandle, fsstat),
4414 &exception);
4415 } while (exception.retry);
4416 return err;
4417}
4418
4419static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
4420 struct nfs_fsinfo *fsinfo)
4421{
4422 struct nfs4_fsinfo_arg args = {
4423 .fh = fhandle,
4424 .bitmask = server->attr_bitmask,
4425 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04004426 struct nfs4_fsinfo_res res = {
4427 .fsinfo = fsinfo,
4428 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 struct rpc_message msg = {
4430 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
4431 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04004432 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 };
4434
Bryan Schumaker7c513052011-03-24 17:12:24 +00004435 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436}
4437
4438static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4439{
4440 struct nfs4_exception exception = { };
Chuck Lever83ca7f52013-03-16 15:55:53 -04004441 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 int err;
4443
4444 do {
Chuck Lever83ca7f52013-03-16 15:55:53 -04004445 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04004446 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004447 if (err == 0) {
Trond Myklebustfb10fb62016-08-05 19:13:08 -04004448 nfs4_set_lease_period(server->nfs_client,
4449 fsinfo->lease_time * HZ,
4450 now);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004451 break;
4452 }
4453 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 } while (exception.retry);
4455 return err;
4456}
4457
4458static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4459{
Bryan Schumakere38eb652012-06-20 15:53:40 -04004460 int error;
4461
Trond Myklebust0e574af2005-10-27 22:12:38 -04004462 nfs_fattr_init(fsinfo->fattr);
Bryan Schumakere38eb652012-06-20 15:53:40 -04004463 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004464 if (error == 0) {
4465 /* block layout checks this! */
4466 server->pnfs_blksize = fsinfo->blksize;
Jeff Laytonca440c32016-09-15 14:40:49 -04004467 set_pnfs_layoutdriver(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004468 }
Bryan Schumakere38eb652012-06-20 15:53:40 -04004469
4470 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471}
4472
4473static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4474 struct nfs_pathconf *pathconf)
4475{
4476 struct nfs4_pathconf_arg args = {
4477 .fh = fhandle,
4478 .bitmask = server->attr_bitmask,
4479 };
Benny Halevyd45b2982009-04-01 09:21:58 -04004480 struct nfs4_pathconf_res res = {
4481 .pathconf = pathconf,
4482 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 struct rpc_message msg = {
4484 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
4485 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04004486 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 };
4488
4489 /* None of the pathconf attributes are mandatory to implement */
4490 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
4491 memset(pathconf, 0, sizeof(*pathconf));
4492 return 0;
4493 }
4494
Trond Myklebust0e574af2005-10-27 22:12:38 -04004495 nfs_fattr_init(pathconf->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004496 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497}
4498
4499static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4500 struct nfs_pathconf *pathconf)
4501{
4502 struct nfs4_exception exception = { };
4503 int err;
4504
4505 do {
4506 err = nfs4_handle_exception(server,
4507 _nfs4_proc_pathconf(server, fhandle, pathconf),
4508 &exception);
4509 } while (exception.retry);
4510 return err;
4511}
4512
Trond Myklebust5521abf2013-03-16 20:54:34 -04004513int nfs4_set_rw_stateid(nfs4_stateid *stateid,
Trond Myklebust9b206142013-03-17 15:52:00 -04004514 const struct nfs_open_context *ctx,
4515 const struct nfs_lock_context *l_ctx,
4516 fmode_t fmode)
4517{
NeilBrown17393472016-10-13 15:26:47 +11004518 return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL);
Trond Myklebust9b206142013-03-17 15:52:00 -04004519}
4520EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
4521
Trond Myklebust5521abf2013-03-16 20:54:34 -04004522static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
4523 const struct nfs_open_context *ctx,
4524 const struct nfs_lock_context *l_ctx,
4525 fmode_t fmode)
4526{
4527 nfs4_stateid current_stateid;
4528
Trond Myklebuste1253be2014-03-05 08:44:23 -05004529 /* If the current stateid represents a lost lock, then exit */
4530 if (nfs4_set_rw_stateid(&current_stateid, ctx, l_ctx, fmode) == -EIO)
4531 return true;
Trond Myklebust5521abf2013-03-16 20:54:34 -04004532 return nfs4_stateid_match(stateid, &current_stateid);
4533}
4534
4535static bool nfs4_error_stateid_expired(int err)
4536{
4537 switch (err) {
4538 case -NFS4ERR_DELEG_REVOKED:
4539 case -NFS4ERR_ADMIN_REVOKED:
4540 case -NFS4ERR_BAD_STATEID:
4541 case -NFS4ERR_STALE_STATEID:
4542 case -NFS4ERR_OLD_STATEID:
4543 case -NFS4ERR_OPENMODE:
4544 case -NFS4ERR_EXPIRED:
4545 return true;
4546 }
4547 return false;
4548}
4549
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004550static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004552 struct nfs_server *server = NFS_SERVER(hdr->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004554 trace_nfs4_read(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004555 if (task->tk_status < 0) {
4556 struct nfs4_exception exception = {
4557 .inode = hdr->inode,
4558 .state = hdr->args.context->state,
4559 .stateid = &hdr->args.stateid,
4560 };
4561 task->tk_status = nfs4_async_handle_exception(task,
4562 server, task->tk_status, &exception);
4563 if (exception.retry) {
4564 rpc_restart_call_prepare(task);
4565 return -EAGAIN;
4566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 }
Trond Myklebust8850df92007-09-28 17:20:07 -04004568
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 if (task->tk_status > 0)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004570 renew_lease(server, hdr->timestamp);
Trond Myklebustec06c092006-03-20 13:44:27 -05004571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572}
4573
Trond Myklebust5521abf2013-03-16 20:54:34 -04004574static bool nfs4_read_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004575 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004576{
4577
4578 if (!nfs4_error_stateid_expired(task->tk_status) ||
4579 nfs4_stateid_is_current(&args->stateid,
4580 args->context,
4581 args->lock_context,
4582 FMODE_READ))
4583 return false;
4584 rpc_restart_call_prepare(task);
4585 return true;
4586}
4587
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004588static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004589{
4590
4591 dprintk("--> %s\n", __func__);
4592
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004593 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004594 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004595 if (nfs4_read_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004596 return -EAGAIN;
Trond Myklebustbfc505d2016-09-15 18:26:05 -04004597 if (task->tk_status > 0)
4598 nfs_invalidate_atime(hdr->inode);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004599 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4600 nfs4_read_done_cb(task, hdr);
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004601}
4602
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004603static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
4604 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004606 hdr->timestamp = jiffies;
Trond Myklebustca857cc2016-06-28 13:54:09 -04004607 if (!hdr->pgio_done_cb)
4608 hdr->pgio_done_cb = nfs4_read_done_cb;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004609 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004610 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611}
4612
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004613static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
4614 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -04004615{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004616 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004617 &hdr->args.seq_args,
4618 &hdr->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -04004619 task))
NeilBrownef1820f2013-09-04 17:04:49 +10004620 return 0;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004621 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
4622 hdr->args.lock_context,
Benjamin Coddingtonfbe77c32017-04-19 10:11:35 -04004623 hdr->rw_mode) == -EIO)
NeilBrownef1820f2013-09-04 17:04:49 +10004624 return -EIO;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004625 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
NeilBrownef1820f2013-09-04 17:04:49 +10004626 return -EIO;
4627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628}
4629
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004630static int nfs4_write_done_cb(struct rpc_task *task,
4631 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004633 struct inode *inode = hdr->inode;
NeilBrown8478eaa2014-09-18 16:09:27 +10004634
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004635 trace_nfs4_write(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004636 if (task->tk_status < 0) {
4637 struct nfs4_exception exception = {
4638 .inode = hdr->inode,
4639 .state = hdr->args.context->state,
4640 .stateid = &hdr->args.stateid,
4641 };
4642 task->tk_status = nfs4_async_handle_exception(task,
4643 NFS_SERVER(inode), task->tk_status,
4644 &exception);
4645 if (exception.retry) {
4646 rpc_restart_call_prepare(task);
4647 return -EAGAIN;
4648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004650 if (task->tk_status >= 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004651 renew_lease(NFS_SERVER(inode), hdr->timestamp);
Trond Myklebusta08a8cd2015-02-26 17:36:09 -05004652 nfs_writeback_update_inode(hdr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004653 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655}
4656
Trond Myklebust5521abf2013-03-16 20:54:34 -04004657static bool nfs4_write_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004658 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004659{
4660
4661 if (!nfs4_error_stateid_expired(task->tk_status) ||
4662 nfs4_stateid_is_current(&args->stateid,
4663 args->context,
4664 args->lock_context,
4665 FMODE_WRITE))
4666 return false;
4667 rpc_restart_call_prepare(task);
4668 return true;
4669}
4670
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004671static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Fred Isamanb029bc92011-03-03 15:13:42 +00004672{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004673 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Fred Isamanb029bc92011-03-03 15:13:42 +00004674 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004675 if (nfs4_write_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004676 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004677 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4678 nfs4_write_done_cb(task, hdr);
Fred Isamanb029bc92011-03-03 15:13:42 +00004679}
4680
Trond Myklebust5a37f852012-04-28 14:55:16 -04004681static
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004682bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
Fred Isamana69aef12011-03-03 15:13:47 +00004683{
Trond Myklebust5a37f852012-04-28 14:55:16 -04004684 /* Don't request attributes for pNFS or O_DIRECT writes */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004685 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
Trond Myklebust5a37f852012-04-28 14:55:16 -04004686 return false;
4687 /* Otherwise, request attributes if and only if we don't hold
4688 * a delegation
4689 */
Bryan Schumaker011e2a72012-06-20 15:53:43 -04004690 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
Fred Isamana69aef12011-03-03 15:13:47 +00004691}
Fred Isamana69aef12011-03-03 15:13:47 +00004692
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004693static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
4694 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004696 struct nfs_server *server = NFS_SERVER(hdr->inode);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004697
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004698 if (!nfs4_write_need_cache_consistency_data(hdr)) {
4699 hdr->args.bitmask = NULL;
4700 hdr->res.fattr = NULL;
Fred Isaman7ffd1062011-03-03 15:13:46 +00004701 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004702 hdr->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust5a37f852012-04-28 14:55:16 -04004703
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004704 if (!hdr->pgio_done_cb)
4705 hdr->pgio_done_cb = nfs4_write_done_cb;
4706 hdr->res.server = server;
4707 hdr->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004709 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004710 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711}
4712
Fred Isaman0b7c0152012-04-20 14:47:39 -04004713static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
4714{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004715 nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004716 &data->args.seq_args,
4717 &data->res.seq_res,
4718 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719}
4720
Fred Isaman0b7c0152012-04-20 14:47:39 -04004721static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 struct inode *inode = data->inode;
Trond Myklebust14516c32010-07-31 14:29:06 -04004724
Trond Myklebustcc668ab2013-08-14 15:31:28 -04004725 trace_nfs4_commit(data, task->tk_status);
NeilBrown8478eaa2014-09-18 16:09:27 +10004726 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4727 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07004728 rpc_restart_call_prepare(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05004729 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732}
4733
Fred Isaman0b7c0152012-04-20 14:47:39 -04004734static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
Fred Isaman5f452432011-03-23 13:27:46 +00004735{
4736 if (!nfs4_sequence_done(task, &data->res.seq_res))
4737 return -EAGAIN;
Fred Isaman0b7c0152012-04-20 14:47:39 -04004738 return data->commit_done_cb(task, data);
Fred Isaman5f452432011-03-23 13:27:46 +00004739}
4740
Fred Isaman0b7c0152012-04-20 14:47:39 -04004741static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742{
Trond Myklebust788e7a82006-03-20 13:44:27 -05004743 struct nfs_server *server = NFS_SERVER(data->inode);
Fred Isaman988b6dc2011-03-23 13:27:52 +00004744
Fred Isaman0b7c0152012-04-20 14:47:39 -04004745 if (data->commit_done_cb == NULL)
4746 data->commit_done_cb = nfs4_commit_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004747 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004748 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Chuck Levera9c92d62013-08-09 12:48:18 -04004749 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750}
4751
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004752struct nfs4_renewdata {
4753 struct nfs_client *client;
4754 unsigned long timestamp;
4755};
4756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757/*
4758 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
4759 * standalone procedure for queueing an asynchronous RENEW.
4760 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004761static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004762{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004763 struct nfs4_renewdata *data = calldata;
4764 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004765
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004766 if (atomic_read(&clp->cl_count) > 1)
4767 nfs4_schedule_state_renewal(clp);
4768 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004769 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004770}
4771
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004772static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004774 struct nfs4_renewdata *data = calldata;
4775 struct nfs_client *clp = data->client;
4776 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777
Trond Myklebustc6d01c62013-08-09 11:51:26 -04004778 trace_nfs4_renew_async(clp, task->tk_status);
Chuck Leverf8aba1e2013-10-17 14:13:53 -04004779 switch (task->tk_status) {
4780 case 0:
4781 break;
4782 case -NFS4ERR_LEASE_MOVED:
4783 nfs4_schedule_lease_moved_recovery(clp);
4784 break;
4785 default:
Trond Myklebust95baa252009-05-26 14:51:00 -04004786 /* Unless we're shutting down, schedule state recovery! */
Trond Myklebust042b60b2011-08-24 15:07:37 -04004787 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
4788 return;
4789 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004790 nfs4_schedule_lease_recovery(clp);
Trond Myklebust042b60b2011-08-24 15:07:37 -04004791 return;
4792 }
4793 nfs4_schedule_path_down_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 }
Trond Myklebust452e9352010-07-31 14:29:06 -04004795 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796}
4797
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004798static const struct rpc_call_ops nfs4_renew_ops = {
4799 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004800 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004801};
4802
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004803static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804{
4805 struct rpc_message msg = {
4806 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4807 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004808 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004810 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004812 if (renew_flags == 0)
4813 return 0;
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004814 if (!atomic_inc_not_zero(&clp->cl_count))
4815 return -EIO;
Trond Myklebustb569ad32011-08-24 15:07:35 -04004816 data = kmalloc(sizeof(*data), GFP_NOFS);
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04004817 if (data == NULL) {
4818 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004819 return -ENOMEM;
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04004820 }
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004821 data->client = clp;
4822 data->timestamp = jiffies;
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004823 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004824 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825}
4826
Trond Myklebust8534d4e2011-08-24 15:07:37 -04004827static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828{
4829 struct rpc_message msg = {
4830 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4831 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004832 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 };
4834 unsigned long now = jiffies;
4835 int status;
4836
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004837 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 if (status < 0)
4839 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04004840 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 return 0;
4842}
4843
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004844static inline int nfs4_server_supports_acls(struct nfs_server *server)
4845{
Malahal Naineni7dd7d952014-01-23 08:54:55 -06004846 return server->caps & NFS_CAP_ACLS;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004847}
4848
Trond Myklebust21f498c2012-08-24 10:59:25 -04004849/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
4850 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004851 * the stack.
4852 */
Trond Myklebust21f498c2012-08-24 10:59:25 -04004853#define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004854
Neil Hormane9e3d722011-03-04 19:26:03 -05004855static int buf_to_pages_noslab(const void *buf, size_t buflen,
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01004856 struct page **pages)
Neil Hormane9e3d722011-03-04 19:26:03 -05004857{
4858 struct page *newpage, **spages;
4859 int rc = 0;
4860 size_t len;
4861 spages = pages;
4862
4863 do {
Trond Myklebust21f498c2012-08-24 10:59:25 -04004864 len = min_t(size_t, PAGE_SIZE, buflen);
Neil Hormane9e3d722011-03-04 19:26:03 -05004865 newpage = alloc_page(GFP_KERNEL);
4866
4867 if (newpage == NULL)
4868 goto unwind;
4869 memcpy(page_address(newpage), buf, len);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05004870 buf += len;
4871 buflen -= len;
Neil Hormane9e3d722011-03-04 19:26:03 -05004872 *pages++ = newpage;
4873 rc++;
4874 } while (buflen != 0);
4875
4876 return rc;
4877
4878unwind:
4879 for(; rc > 0; rc--)
4880 __free_page(spages[rc-1]);
4881 return -ENOMEM;
4882}
4883
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004884struct nfs4_cached_acl {
4885 int cached;
4886 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00004887 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004888};
4889
4890static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004891{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004892 struct nfs_inode *nfsi = NFS_I(inode);
4893
4894 spin_lock(&inode->i_lock);
4895 kfree(nfsi->nfs4_acl);
4896 nfsi->nfs4_acl = acl;
4897 spin_unlock(&inode->i_lock);
4898}
4899
4900static void nfs4_zap_acl_attr(struct inode *inode)
4901{
4902 nfs4_set_cached_acl(inode, NULL);
4903}
4904
4905static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
4906{
4907 struct nfs_inode *nfsi = NFS_I(inode);
4908 struct nfs4_cached_acl *acl;
4909 int ret = -ENOENT;
4910
4911 spin_lock(&inode->i_lock);
4912 acl = nfsi->nfs4_acl;
4913 if (acl == NULL)
4914 goto out;
4915 if (buf == NULL) /* user is just asking for length */
4916 goto out_len;
4917 if (acl->cached == 0)
4918 goto out;
4919 ret = -ERANGE; /* see getxattr(2) man page */
4920 if (acl->len > buflen)
4921 goto out;
4922 memcpy(buf, acl->data, acl->len);
4923out_len:
4924 ret = acl->len;
4925out:
4926 spin_unlock(&inode->i_lock);
4927 return ret;
4928}
4929
Sachin Prabhu5794d212012-04-17 14:36:40 +01004930static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004931{
4932 struct nfs4_cached_acl *acl;
Trond Myklebustb291f1b2012-08-14 18:30:41 -04004933 size_t buflen = sizeof(*acl) + acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004934
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07004935 if (buflen <= PAGE_SIZE) {
Trond Myklebustb291f1b2012-08-14 18:30:41 -04004936 acl = kmalloc(buflen, GFP_KERNEL);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004937 if (acl == NULL)
4938 goto out;
4939 acl->cached = 1;
Sachin Prabhu5794d212012-04-17 14:36:40 +01004940 _copy_from_pages(acl->data, pages, pgbase, acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004941 } else {
4942 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
4943 if (acl == NULL)
4944 goto out;
4945 acl->cached = 0;
4946 }
4947 acl->len = acl_len;
4948out:
4949 nfs4_set_cached_acl(inode, acl);
4950}
4951
Andy Adamsonbf118a32011-12-07 11:55:27 -05004952/*
4953 * The getxattr API returns the required buffer length when called with a
4954 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
4955 * the required buf. On a NULL buf, we send a page of data to the server
4956 * guessing that the ACL request can be serviced by a page. If so, we cache
4957 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
4958 * the cache. If not so, we throw away the page, and cache the required
4959 * length. The next getxattr call will then produce another round trip to
4960 * the server, this time with the input buf of the required size.
4961 */
Trond Myklebust16b42892006-08-24 12:27:15 -04004962static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004963{
Weston Andros Adamsoned92d8c2017-02-23 14:54:21 -05004964 struct page *pages[NFS4ACL_MAXPAGES + 1] = {NULL, };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004965 struct nfs_getaclargs args = {
4966 .fh = NFS_FH(inode),
4967 .acl_pages = pages,
4968 .acl_len = buflen,
4969 };
Benny Halevy663c79b2009-04-01 09:21:59 -04004970 struct nfs_getaclres res = {
4971 .acl_len = buflen,
4972 };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004973 struct rpc_message msg = {
4974 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
4975 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04004976 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004977 };
Weston Andros Adamsoned92d8c2017-02-23 14:54:21 -05004978 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
Trond Myklebust21f498c2012-08-24 10:59:25 -04004979 int ret = -ENOMEM, i;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004980
Trond Myklebust21f498c2012-08-24 10:59:25 -04004981 if (npages > ARRAY_SIZE(pages))
4982 return -ERANGE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01004983
Andy Adamsonbf118a32011-12-07 11:55:27 -05004984 for (i = 0; i < npages; i++) {
4985 pages[i] = alloc_page(GFP_KERNEL);
4986 if (!pages[i])
4987 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004988 }
Sachin Prabhu5a006892012-04-17 14:35:39 +01004989
4990 /* for decoding across pages */
4991 res.acl_scratch = alloc_page(GFP_KERNEL);
4992 if (!res.acl_scratch)
4993 goto out_free;
4994
Andy Adamsonbf118a32011-12-07 11:55:27 -05004995 args.acl_len = npages * PAGE_SIZE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01004996
Peng Taode040be2012-01-10 22:42:47 +08004997 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
Andy Adamsonbf118a32011-12-07 11:55:27 -05004998 __func__, buf, buflen, npages, args.acl_len);
4999 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
5000 &msg, &args.seq_args, &res.seq_res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005001 if (ret)
5002 goto out_free;
Andy Adamsonbf118a32011-12-07 11:55:27 -05005003
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005004 /* Handle the case where the passed-in buffer is too short */
5005 if (res.acl_flags & NFS4_ACL_TRUNC) {
5006 /* Did the user only issue a request for the acl length? */
5007 if (buf == NULL)
5008 goto out_ok;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005009 ret = -ERANGE;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005010 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005011 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005012 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005013 if (buf) {
5014 if (res.acl_len > buflen) {
5015 ret = -ERANGE;
5016 goto out_free;
5017 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005018 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005019 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005020out_ok:
5021 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005022out_free:
Andy Adamsonbf118a32011-12-07 11:55:27 -05005023 for (i = 0; i < npages; i++)
5024 if (pages[i])
5025 __free_page(pages[i]);
Trond Myklebust331818f2012-02-03 18:30:53 -05005026 if (res.acl_scratch)
5027 __free_page(res.acl_scratch);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005028 return ret;
5029}
5030
Trond Myklebust16b42892006-08-24 12:27:15 -04005031static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5032{
5033 struct nfs4_exception exception = { };
5034 ssize_t ret;
5035 do {
5036 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
Trond Myklebustc1578b72013-08-12 16:58:42 -04005037 trace_nfs4_get_acl(inode, ret);
Trond Myklebust16b42892006-08-24 12:27:15 -04005038 if (ret >= 0)
5039 break;
5040 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
5041 } while (exception.retry);
5042 return ret;
5043}
5044
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005045static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
5046{
5047 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005048 int ret;
5049
5050 if (!nfs4_server_supports_acls(server))
5051 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005052 ret = nfs_revalidate_inode(server, inode);
5053 if (ret < 0)
5054 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005055 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
5056 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005057 ret = nfs4_read_cached_acl(inode, buf, buflen);
5058 if (ret != -ENOENT)
Andy Adamsonbf118a32011-12-07 11:55:27 -05005059 /* -ENOENT is returned if there is no ACL or if there is an ACL
5060 * but no cached acl data, just the acl length */
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005061 return ret;
5062 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005063}
5064
Trond Myklebust16b42892006-08-24 12:27:15 -04005065static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005066{
5067 struct nfs_server *server = NFS_SERVER(inode);
5068 struct page *pages[NFS4ACL_MAXPAGES];
5069 struct nfs_setaclargs arg = {
5070 .fh = NFS_FH(inode),
5071 .acl_pages = pages,
5072 .acl_len = buflen,
5073 };
Benny Halevy73c403a2009-04-01 09:22:01 -04005074 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005075 struct rpc_message msg = {
5076 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
5077 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04005078 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005079 };
Trond Myklebust21f498c2012-08-24 10:59:25 -04005080 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
Neil Hormane9e3d722011-03-04 19:26:03 -05005081 int ret, i;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005082
5083 if (!nfs4_server_supports_acls(server))
5084 return -EOPNOTSUPP;
Trond Myklebust21f498c2012-08-24 10:59:25 -04005085 if (npages > ARRAY_SIZE(pages))
5086 return -ERANGE;
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01005087 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages);
Neil Hormane9e3d722011-03-04 19:26:03 -05005088 if (i < 0)
5089 return i;
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04005090 nfs4_inode_return_delegation(inode);
Bryan Schumaker7c513052011-03-24 17:12:24 +00005091 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Neil Hormane9e3d722011-03-04 19:26:03 -05005092
5093 /*
5094 * Free each page after tx, so the only ref left is
5095 * held by the network stack
5096 */
5097 for (; i > 0; i--)
5098 put_page(pages[i-1]);
5099
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005100 /*
5101 * Acl update can result in inode attribute update.
5102 * so mark the attribute cache invalid.
5103 */
5104 spin_lock(&inode->i_lock);
5105 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
5106 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04005107 nfs_access_zap_cache(inode);
5108 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005109 return ret;
5110}
5111
Trond Myklebust16b42892006-08-24 12:27:15 -04005112static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5113{
5114 struct nfs4_exception exception = { };
5115 int err;
5116 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005117 err = __nfs4_proc_set_acl(inode, buf, buflen);
5118 trace_nfs4_set_acl(inode, err);
5119 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Trond Myklebust16b42892006-08-24 12:27:15 -04005120 &exception);
5121 } while (exception.retry);
5122 return err;
5123}
5124
David Quigleyaa9c2662013-05-22 12:50:44 -04005125#ifdef CONFIG_NFS_V4_SECURITY_LABEL
5126static int _nfs4_get_security_label(struct inode *inode, void *buf,
5127 size_t buflen)
5128{
5129 struct nfs_server *server = NFS_SERVER(inode);
5130 struct nfs_fattr fattr;
5131 struct nfs4_label label = {0, 0, buflen, buf};
5132
5133 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005134 struct nfs4_getattr_arg arg = {
David Quigleyaa9c2662013-05-22 12:50:44 -04005135 .fh = NFS_FH(inode),
5136 .bitmask = bitmask,
5137 };
5138 struct nfs4_getattr_res res = {
5139 .fattr = &fattr,
5140 .label = &label,
5141 .server = server,
5142 };
5143 struct rpc_message msg = {
5144 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005145 .rpc_argp = &arg,
David Quigleyaa9c2662013-05-22 12:50:44 -04005146 .rpc_resp = &res,
5147 };
5148 int ret;
5149
5150 nfs_fattr_init(&fattr);
5151
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005152 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
David Quigleyaa9c2662013-05-22 12:50:44 -04005153 if (ret)
5154 return ret;
5155 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
5156 return -ENOENT;
5157 if (buflen < label.len)
5158 return -ERANGE;
5159 return 0;
5160}
5161
5162static int nfs4_get_security_label(struct inode *inode, void *buf,
5163 size_t buflen)
5164{
5165 struct nfs4_exception exception = { };
5166 int err;
5167
5168 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5169 return -EOPNOTSUPP;
5170
5171 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005172 err = _nfs4_get_security_label(inode, buf, buflen);
5173 trace_nfs4_get_security_label(inode, err);
5174 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005175 &exception);
5176 } while (exception.retry);
5177 return err;
5178}
5179
5180static int _nfs4_do_set_security_label(struct inode *inode,
5181 struct nfs4_label *ilabel,
5182 struct nfs_fattr *fattr,
5183 struct nfs4_label *olabel)
5184{
5185
5186 struct iattr sattr = {0};
5187 struct nfs_server *server = NFS_SERVER(inode);
5188 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Jeff Layton12207f62013-11-01 10:49:32 -04005189 struct nfs_setattrargs arg = {
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005190 .fh = NFS_FH(inode),
5191 .iap = &sattr,
David Quigleyaa9c2662013-05-22 12:50:44 -04005192 .server = server,
5193 .bitmask = bitmask,
5194 .label = ilabel,
5195 };
5196 struct nfs_setattrres res = {
5197 .fattr = fattr,
5198 .label = olabel,
5199 .server = server,
5200 };
5201 struct rpc_message msg = {
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005202 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
5203 .rpc_argp = &arg,
5204 .rpc_resp = &res,
David Quigleyaa9c2662013-05-22 12:50:44 -04005205 };
5206 int status;
5207
Jeff Layton12207f62013-11-01 10:49:32 -04005208 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
David Quigleyaa9c2662013-05-22 12:50:44 -04005209
Jeff Layton12207f62013-11-01 10:49:32 -04005210 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04005211 if (status)
5212 dprintk("%s failed: %d\n", __func__, status);
5213
5214 return status;
5215}
5216
5217static int nfs4_do_set_security_label(struct inode *inode,
5218 struct nfs4_label *ilabel,
5219 struct nfs_fattr *fattr,
5220 struct nfs4_label *olabel)
5221{
5222 struct nfs4_exception exception = { };
5223 int err;
5224
5225 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005226 err = _nfs4_do_set_security_label(inode, ilabel,
5227 fattr, olabel);
5228 trace_nfs4_set_security_label(inode, err);
5229 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005230 &exception);
5231 } while (exception.retry);
5232 return err;
5233}
5234
5235static int
Al Viro59301222016-05-27 10:19:30 -04005236nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
David Quigleyaa9c2662013-05-22 12:50:44 -04005237{
5238 struct nfs4_label ilabel, *olabel = NULL;
5239 struct nfs_fattr fattr;
5240 struct rpc_cred *cred;
David Quigleyaa9c2662013-05-22 12:50:44 -04005241 int status;
5242
5243 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5244 return -EOPNOTSUPP;
5245
5246 nfs_fattr_init(&fattr);
5247
5248 ilabel.pi = 0;
5249 ilabel.lfs = 0;
5250 ilabel.label = (char *)buf;
5251 ilabel.len = buflen;
5252
5253 cred = rpc_lookup_cred();
5254 if (IS_ERR(cred))
5255 return PTR_ERR(cred);
5256
5257 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
5258 if (IS_ERR(olabel)) {
5259 status = -PTR_ERR(olabel);
5260 goto out;
5261 }
5262
5263 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
5264 if (status == 0)
5265 nfs_setsecurity(inode, &fattr, olabel);
5266
5267 nfs4_label_free(olabel);
5268out:
5269 put_rpccred(cred);
5270 return status;
5271}
5272#endif /* CONFIG_NFS_V4_SECURITY_LABEL */
5273
5274
Chuck Leverf0920752012-05-21 22:45:41 -04005275static void nfs4_init_boot_verifier(const struct nfs_client *clp,
5276 nfs4_verifier *bootverf)
Chuck Levercd937102012-03-02 17:14:31 -05005277{
5278 __be32 verf[2];
5279
Chuck Lever2c820d92012-05-21 22:45:33 -04005280 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
5281 /* An impossible timestamp guarantees this value
5282 * will never match a generated boot time. */
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005283 verf[0] = cpu_to_be32(U32_MAX);
5284 verf[1] = cpu_to_be32(U32_MAX);
Chuck Lever2c820d92012-05-21 22:45:33 -04005285 } else {
Chuck Leverf0920752012-05-21 22:45:41 -04005286 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005287 u64 ns = ktime_to_ns(nn->boot_time);
5288
5289 verf[0] = cpu_to_be32(ns >> 32);
5290 verf[1] = cpu_to_be32(ns);
Chuck Lever2c820d92012-05-21 22:45:33 -04005291 }
Chuck Levercd937102012-03-02 17:14:31 -05005292 memcpy(bootverf->data, verf, sizeof(bootverf->data));
5293}
5294
Jeff Laytona3192682015-06-09 19:43:59 -04005295static int
5296nfs4_init_nonuniform_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005297{
Jeff Laytona3192682015-06-09 19:43:59 -04005298 size_t len;
5299 char *str;
Chuck Levere984a552012-09-14 17:24:21 -04005300
Trond Myklebustceb3a162015-01-03 15:16:04 -05005301 if (clp->cl_owner_id != NULL)
Jeff Laytona3192682015-06-09 19:43:59 -04005302 return 0;
Kinglong Mee4a3e5772015-08-31 10:53:43 +08005303
Jeff Laytona3192682015-06-09 19:43:59 -04005304 rcu_read_lock();
Kinglong Mee4a703162015-08-31 10:53:33 +08005305 len = 14 + strlen(clp->cl_ipaddr) + 1 +
Jeff Laytona3192682015-06-09 19:43:59 -04005306 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
5307 1 +
5308 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) +
5309 1;
5310 rcu_read_unlock();
5311
5312 if (len > NFS4_OPAQUE_LIMIT + 1)
5313 return -EINVAL;
5314
5315 /*
5316 * Since this string is allocated at mount time, and held until the
5317 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5318 * about a memory-reclaim deadlock.
5319 */
5320 str = kmalloc(len, GFP_KERNEL);
5321 if (!str)
5322 return -ENOMEM;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005323
Chuck Levere984a552012-09-14 17:24:21 -04005324 rcu_read_lock();
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005325 scnprintf(str, len, "Linux NFSv4.0 %s/%s %s",
Jeff Laytona3192682015-06-09 19:43:59 -04005326 clp->cl_ipaddr,
5327 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR),
5328 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO));
Chuck Levere984a552012-09-14 17:24:21 -04005329 rcu_read_unlock();
Jeff Laytona3192682015-06-09 19:43:59 -04005330
Jeff Laytona3192682015-06-09 19:43:59 -04005331 clp->cl_owner_id = str;
5332 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005333}
5334
Jeff Layton873e3852015-06-09 19:44:00 -04005335static int
5336nfs4_init_uniquifier_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005337{
Jeff Layton873e3852015-06-09 19:44:00 -04005338 size_t len;
5339 char *str;
5340
5341 len = 10 + 10 + 1 + 10 + 1 +
5342 strlen(nfs4_client_id_uniquifier) + 1 +
5343 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5344
5345 if (len > NFS4_OPAQUE_LIMIT + 1)
5346 return -EINVAL;
5347
5348 /*
5349 * Since this string is allocated at mount time, and held until the
5350 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5351 * about a memory-reclaim deadlock.
5352 */
5353 str = kmalloc(len, GFP_KERNEL);
5354 if (!str)
5355 return -ENOMEM;
5356
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005357 scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
Jeff Layton873e3852015-06-09 19:44:00 -04005358 clp->rpc_ops->version, clp->cl_minorversion,
5359 nfs4_client_id_uniquifier,
5360 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005361 clp->cl_owner_id = str;
5362 return 0;
5363}
5364
5365static int
5366nfs4_init_uniform_client_string(struct nfs_client *clp)
5367{
Jeff Layton873e3852015-06-09 19:44:00 -04005368 size_t len;
5369 char *str;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005370
5371 if (clp->cl_owner_id != NULL)
Jeff Layton873e3852015-06-09 19:44:00 -04005372 return 0;
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04005373
5374 if (nfs4_client_id_uniquifier[0] != '\0')
Jeff Layton873e3852015-06-09 19:44:00 -04005375 return nfs4_init_uniquifier_client_string(clp);
5376
5377 len = 10 + 10 + 1 + 10 + 1 +
5378 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5379
5380 if (len > NFS4_OPAQUE_LIMIT + 1)
5381 return -EINVAL;
5382
5383 /*
5384 * Since this string is allocated at mount time, and held until the
5385 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5386 * about a memory-reclaim deadlock.
5387 */
5388 str = kmalloc(len, GFP_KERNEL);
5389 if (!str)
5390 return -ENOMEM;
5391
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005392 scnprintf(str, len, "Linux NFSv%u.%u %s",
Jeff Layton873e3852015-06-09 19:44:00 -04005393 clp->rpc_ops->version, clp->cl_minorversion,
5394 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005395 clp->cl_owner_id = str;
5396 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005397}
5398
Chuck Lever706cb8d2014-03-12 12:51:47 -04005399/*
5400 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
5401 * services. Advertise one based on the address family of the
5402 * clientaddr.
5403 */
5404static unsigned int
5405nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
5406{
5407 if (strchr(clp->cl_ipaddr, ':') != NULL)
5408 return scnprintf(buf, len, "tcp6");
5409 else
5410 return scnprintf(buf, len, "tcp");
5411}
5412
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005413static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
5414{
5415 struct nfs4_setclientid *sc = calldata;
5416
5417 if (task->tk_status == 0)
5418 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
5419}
5420
5421static const struct rpc_call_ops nfs4_setclientid_ops = {
5422 .rpc_call_done = nfs4_setclientid_done,
5423};
5424
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005425/**
5426 * nfs4_proc_setclientid - Negotiate client ID
5427 * @clp: state data structure
5428 * @program: RPC program for NFSv4 callback service
5429 * @port: IP port number for NFS4 callback service
5430 * @cred: RPC credential to use for this call
5431 * @res: where to place the result
5432 *
5433 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5434 */
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005435int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
5436 unsigned short port, struct rpc_cred *cred,
5437 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438{
5439 nfs4_verifier sc_verifier;
5440 struct nfs4_setclientid setclientid = {
5441 .sc_verifier = &sc_verifier,
5442 .sc_prog = program,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005443 .sc_clnt = clp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 };
5445 struct rpc_message msg = {
5446 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
5447 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005448 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005449 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 };
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005451 struct rpc_task *task;
5452 struct rpc_task_setup task_setup_data = {
5453 .rpc_client = clp->cl_rpcclient,
5454 .rpc_message = &msg,
5455 .callback_ops = &nfs4_setclientid_ops,
5456 .callback_data = &setclientid,
5457 .flags = RPC_TASK_TIMEOUT,
5458 };
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005459 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Chuck Leverde734832012-07-11 16:30:50 -04005461 /* nfs_client_id4 */
Chuck Leverf0920752012-05-21 22:45:41 -04005462 nfs4_init_boot_verifier(clp, &sc_verifier);
Jeff Layton873e3852015-06-09 19:44:00 -04005463
5464 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
5465 status = nfs4_init_uniform_client_string(clp);
5466 else
Jeff Laytona3192682015-06-09 19:43:59 -04005467 status = nfs4_init_nonuniform_client_string(clp);
Jeff Layton873e3852015-06-09 19:44:00 -04005468
5469 if (status)
5470 goto out;
Jeff Layton3a6bb732015-06-09 19:43:57 -04005471
Chuck Leverde734832012-07-11 16:30:50 -04005472 /* cb_client4 */
Chuck Lever706cb8d2014-03-12 12:51:47 -04005473 setclientid.sc_netid_len =
5474 nfs4_init_callback_netid(clp,
5475 setclientid.sc_netid,
5476 sizeof(setclientid.sc_netid));
Chuck Leverde734832012-07-11 16:30:50 -04005477 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05005478 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 clp->cl_ipaddr, port >> 8, port & 255);
5480
Jeff Layton3a6bb732015-06-09 19:43:57 -04005481 dprintk("NFS call setclientid auth=%s, '%s'\n",
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005482 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005483 clp->cl_owner_id);
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005484 task = rpc_run_task(&task_setup_data);
5485 if (IS_ERR(task)) {
5486 status = PTR_ERR(task);
5487 goto out;
5488 }
5489 status = task->tk_status;
5490 if (setclientid.sc_cred) {
5491 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
5492 put_rpccred(setclientid.sc_cred);
5493 }
5494 rpc_put_task(task);
5495out:
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005496 trace_nfs4_setclientid(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005497 dprintk("NFS reply setclientid: %d\n", status);
5498 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499}
5500
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005501/**
5502 * nfs4_proc_setclientid_confirm - Confirm client ID
5503 * @clp: state data structure
5504 * @res: result of a previous SETCLIENTID
5505 * @cred: RPC credential to use for this call
5506 *
5507 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5508 */
Trond Myklebustfd954ae2011-04-24 14:28:18 -04005509int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005510 struct nfs4_setclientid_res *arg,
5511 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 struct rpc_message msg = {
5514 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005515 .rpc_argp = arg,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005516 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 int status;
5519
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005520 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
5521 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5522 clp->cl_clientid);
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005523 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005524 trace_nfs4_setclientid_confirm(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005525 dprintk("NFS reply setclientid_confirm: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526 return status;
5527}
5528
Trond Myklebustfe650402006-01-03 09:55:18 +01005529struct nfs4_delegreturndata {
5530 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005531 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01005532 struct nfs_fh fh;
5533 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005534 unsigned long timestamp;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005535 struct {
5536 struct nfs4_layoutreturn_args arg;
5537 struct nfs4_layoutreturn_res res;
Trond Myklebust4d796d72016-09-23 11:38:08 -04005538 struct nfs4_xdr_opaque_data ld_private;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005539 u32 roc_barrier;
5540 bool roc;
5541 } lr;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005542 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01005543 int rpc_status;
Peng Tao039b7562014-07-03 13:05:02 +08005544 struct inode *inode;
Trond Myklebustfe650402006-01-03 09:55:18 +01005545};
5546
Trond Myklebustfe650402006-01-03 09:55:18 +01005547static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
5548{
5549 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04005550
Trond Myklebust14516c32010-07-31 14:29:06 -04005551 if (!nfs4_sequence_done(task, &data->res.seq_res))
5552 return;
Andy Adamson938e1012009-04-01 09:22:28 -04005553
Trond Myklebustca8acf82013-08-13 10:36:56 -04005554 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
Trond Myklebust586f1c32016-11-15 15:03:33 -05005555
5556 /* Handle Layoutreturn errors */
5557 if (data->args.lr_args && task->tk_status != 0) {
5558 switch(data->res.lr_ret) {
5559 default:
5560 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
5561 break;
5562 case 0:
5563 data->args.lr_args = NULL;
5564 data->res.lr_res = NULL;
5565 break;
5566 case -NFS4ERR_ADMIN_REVOKED:
5567 case -NFS4ERR_DELEG_REVOKED:
5568 case -NFS4ERR_EXPIRED:
5569 case -NFS4ERR_BAD_STATEID:
5570 case -NFS4ERR_OLD_STATEID:
5571 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
5572 case -NFS4ERR_WRONG_CRED:
5573 data->args.lr_args = NULL;
5574 data->res.lr_res = NULL;
5575 data->res.lr_ret = 0;
5576 rpc_restart_call_prepare(task);
5577 return;
5578 }
5579 }
5580
Ricardo Labiaga79708862009-12-07 09:23:21 -05005581 switch (task->tk_status) {
Ricardo Labiaga79708862009-12-07 09:23:21 -05005582 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01005583 renew_lease(data->res.server, data->timestamp);
Trond Myklebust23ea44c2016-11-10 16:06:28 -05005584 break;
Trond Myklebustc97cf602013-11-19 16:34:14 -05005585 case -NFS4ERR_ADMIN_REVOKED:
5586 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust26d36302016-09-22 13:39:05 -04005587 case -NFS4ERR_EXPIRED:
5588 nfs4_free_revoked_stateid(data->res.server,
5589 data->args.stateid,
5590 task->tk_msg.rpc_cred);
Trond Myklebustc97cf602013-11-19 16:34:14 -05005591 case -NFS4ERR_BAD_STATEID:
5592 case -NFS4ERR_OLD_STATEID:
5593 case -NFS4ERR_STALE_STATEID:
Trond Myklebustc97cf602013-11-19 16:34:14 -05005594 task->tk_status = 0;
5595 break;
Trond Myklebust8ac2b4222016-12-19 10:23:10 -05005596 case -NFS4ERR_ACCESS:
5597 if (data->args.bitmask) {
5598 data->args.bitmask = NULL;
5599 data->res.fattr = NULL;
5600 task->tk_status = 0;
5601 rpc_restart_call_prepare(task);
5602 return;
5603 }
Ricardo Labiaga79708862009-12-07 09:23:21 -05005604 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005605 if (nfs4_async_handle_error(task, data->res.server,
5606 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005607 rpc_restart_call_prepare(task);
Ricardo Labiaga79708862009-12-07 09:23:21 -05005608 return;
5609 }
5610 }
5611 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01005612}
5613
5614static void nfs4_delegreturn_release(void *calldata)
5615{
Peng Tao039b7562014-07-03 13:05:02 +08005616 struct nfs4_delegreturndata *data = calldata;
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005617 struct inode *inode = data->inode;
Peng Tao039b7562014-07-03 13:05:02 +08005618
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005619 if (inode) {
Trond Myklebust586f1c32016-11-15 15:03:33 -05005620 if (data->lr.roc)
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005621 pnfs_roc_release(&data->lr.arg, &data->lr.res,
5622 data->res.lr_ret);
Trond Myklebust0bc2c9b2016-12-16 19:48:09 -05005623 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005624 nfs_iput_and_deactive(inode);
5625 }
Trond Myklebustfe650402006-01-03 09:55:18 +01005626 kfree(calldata);
5627}
5628
Andy Adamson938e1012009-04-01 09:22:28 -04005629static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
5630{
5631 struct nfs4_delegreturndata *d_data;
5632
5633 d_data = (struct nfs4_delegreturndata *)data;
5634
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005635 if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task))
Peng Tao500d7012015-09-22 11:35:22 +08005636 return;
5637
Anna Schumaker42e1cca2017-01-09 15:48:22 -05005638 nfs4_setup_sequence(d_data->res.server->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04005639 &d_data->args.seq_args,
5640 &d_data->res.seq_res,
5641 task);
Andy Adamson938e1012009-04-01 09:22:28 -04005642}
Andy Adamson938e1012009-04-01 09:22:28 -04005643
Jesper Juhlc8d149f2006-03-20 13:44:07 -05005644static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04005645 .rpc_call_prepare = nfs4_delegreturn_prepare,
Trond Myklebustfe650402006-01-03 09:55:18 +01005646 .rpc_call_done = nfs4_delegreturn_done,
5647 .rpc_release = nfs4_delegreturn_release,
5648};
5649
Trond Myklebuste6f81072008-01-24 18:14:34 -05005650static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01005651{
5652 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005653 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01005654 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005655 struct rpc_message msg = {
5656 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
5657 .rpc_cred = cred,
5658 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005659 struct rpc_task_setup task_setup_data = {
5660 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04005661 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005662 .callback_ops = &nfs4_delegreturn_ops,
5663 .flags = RPC_TASK_ASYNC,
5664 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05005665 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01005666
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005667 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01005668 if (data == NULL)
5669 return -ENOMEM;
Chuck Levera9c92d62013-08-09 12:48:18 -04005670 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andrew Elble99ade3c2015-12-02 09:39:51 -05005671
5672 nfs4_state_protect(server->nfs_client,
5673 NFS_SP4_MACH_CRED_CLEANUP,
5674 &task_setup_data.rpc_client, &msg);
5675
Trond Myklebustfe650402006-01-03 09:55:18 +01005676 data->args.fhandle = &data->fh;
5677 data->args.stateid = &data->stateid;
Trond Myklebust9e907fe2012-04-27 13:48:17 -04005678 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01005679 nfs_copy_fh(&data->fh, NFS_FH(inode));
Trond Myklebustf597c532012-03-04 18:13:56 -05005680 nfs4_stateid_copy(&data->stateid, stateid);
Trond Myklebustfa178f22006-01-03 09:55:38 +01005681 data->res.fattr = &data->fattr;
5682 data->res.server = server;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005683 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
Trond Myklebust4d796d72016-09-23 11:38:08 -04005684 data->lr.arg.ld_private = &data->lr.ld_private;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005685 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01005686 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01005687 data->rpc_status = 0;
Trond Myklebust53e6fc82016-11-19 08:48:47 -05005688 data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res, cred);
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005689 data->inode = nfs_igrab_and_active(inode);
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005690 if (data->inode) {
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005691 if (data->lr.roc) {
5692 data->args.lr_args = &data->lr.arg;
5693 data->res.lr_res = &data->lr.res;
5694 }
Trond Myklebust53e6fc82016-11-19 08:48:47 -05005695 } else if (data->lr.roc) {
5696 pnfs_roc_release(&data->lr.arg, &data->lr.res, 0);
5697 data->lr.roc = false;
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005698 }
Trond Myklebustfe650402006-01-03 09:55:18 +01005699
Trond Myklebustc970aa82007-07-14 15:39:59 -04005700 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05005701 msg.rpc_argp = &data->args;
5702 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04005703 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05005704 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01005705 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005706 if (!issync)
5707 goto out;
Anna Schumaker820bf852017-01-11 15:01:43 -05005708 status = rpc_wait_for_completion_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005709 if (status != 0)
5710 goto out;
5711 status = data->rpc_status;
Trond Myklebuste6f81072008-01-24 18:14:34 -05005712out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05005713 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01005714 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715}
5716
Trond Myklebuste6f81072008-01-24 18:14:34 -05005717int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718{
5719 struct nfs_server *server = NFS_SERVER(inode);
5720 struct nfs4_exception exception = { };
5721 int err;
5722 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05005723 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05005724 trace_nfs4_delegreturn(inode, stateid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725 switch (err) {
5726 case -NFS4ERR_STALE_STATEID:
5727 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 case 0:
5729 return 0;
5730 }
5731 err = nfs4_handle_exception(server, err, &exception);
5732 } while (exception.retry);
5733 return err;
5734}
5735
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5737{
5738 struct inode *inode = state->inode;
5739 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04005740 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005741 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005743 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005745 struct nfs_lockt_res res = {
5746 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 };
5748 struct rpc_message msg = {
5749 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005750 .rpc_argp = &arg,
5751 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752 .rpc_cred = state->owner->so_cred,
5753 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 struct nfs4_lock_state *lsp;
5755 int status;
5756
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005757 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005758 status = nfs4_set_lock_state(state, request);
5759 if (status != 0)
5760 goto out;
5761 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05005762 arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05005763 arg.lock_owner.s_dev = server->s_dev;
Bryan Schumaker7c513052011-03-24 17:12:24 +00005764 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005765 switch (status) {
5766 case 0:
5767 request->fl_type = F_UNLCK;
5768 break;
5769 case -NFS4ERR_DENIED:
5770 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05005772 request->fl_ops->fl_release_private(request);
Trond Myklebusta6f951d2013-10-01 14:24:58 -04005773 request->fl_ops = NULL;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005774out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 return status;
5776}
5777
5778static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5779{
5780 struct nfs4_exception exception = { };
5781 int err;
5782
5783 do {
Trond Myklebustd1b748a2013-08-12 16:35:20 -04005784 err = _nfs4_proc_getlk(state, cmd, request);
5785 trace_nfs4_get_lock(request, state, cmd, err);
5786 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 &exception);
5788 } while (exception.retry);
5789 return err;
5790}
5791
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005792struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005793 struct nfs_locku_args arg;
5794 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005795 struct nfs4_lock_state *lsp;
5796 struct nfs_open_context *ctx;
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005797 struct nfs_lock_context *l_ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005798 struct file_lock fl;
Trond Myklebust516285eb2015-09-20 16:15:24 -04005799 struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005800 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005801};
5802
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005803static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
5804 struct nfs_open_context *ctx,
5805 struct nfs4_lock_state *lsp,
5806 struct nfs_seqid *seqid)
5807{
5808 struct nfs4_unlockdata *p;
5809 struct inode *inode = lsp->ls_state->inode;
5810
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005811 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005812 if (p == NULL)
5813 return NULL;
5814 p->arg.fh = NFS_FH(inode);
5815 p->arg.fl = &p->fl;
5816 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04005817 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005818 p->lsp = lsp;
5819 atomic_inc(&lsp->ls_count);
5820 /* Ensure we don't close file until we're done freeing locks! */
5821 p->ctx = get_nfs_open_context(ctx);
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005822 p->l_ctx = nfs_get_lock_context(ctx);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005823 memcpy(&p->fl, fl, sizeof(p->fl));
5824 p->server = NFS_SERVER(inode);
5825 return p;
5826}
5827
Trond Myklebust06f814a2006-01-03 09:55:07 +01005828static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005829{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005830 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005831 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005832 nfs4_put_lock_state(calldata->lsp);
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005833 nfs_put_lock_context(calldata->l_ctx);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005834 put_nfs_open_context(calldata->ctx);
5835 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005836}
5837
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005838static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005839{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005840 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005841
Trond Myklebust14516c32010-07-31 14:29:06 -04005842 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
5843 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005844 switch (task->tk_status) {
5845 case 0:
Trond Myklebust26e976a2006-01-03 09:55:21 +01005846 renew_lease(calldata->server, calldata->timestamp);
Jeff Layton75575dd2016-09-17 18:17:32 -04005847 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
Trond Myklebustc69899a2015-01-24 16:03:52 -05005848 if (nfs4_update_lock_stateid(calldata->lsp,
5849 &calldata->res.stateid))
5850 break;
Trond Myklebust26d36302016-09-22 13:39:05 -04005851 case -NFS4ERR_ADMIN_REVOKED:
5852 case -NFS4ERR_EXPIRED:
5853 nfs4_free_revoked_stateid(calldata->server,
5854 &calldata->arg.stateid,
5855 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05005856 case -NFS4ERR_BAD_STATEID:
5857 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005858 case -NFS4ERR_STALE_STATEID:
Trond Myklebust425c1d42015-01-24 14:57:53 -05005859 if (!nfs4_stateid_match(&calldata->arg.stateid,
5860 &calldata->lsp->ls_stateid))
5861 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005862 break;
5863 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005864 if (nfs4_async_handle_error(task, calldata->server,
5865 NULL, NULL) == -EAGAIN)
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005866 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005867 }
Trond Myklebust2b1bc302012-10-29 18:53:23 -04005868 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005869}
5870
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005871static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005872{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005873 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005875 if (test_bit(NFS_CONTEXT_UNLOCK, &calldata->l_ctx->open_context->flags) &&
5876 nfs_async_iocounter_wait(task, calldata->l_ctx))
5877 return;
5878
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005879 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005880 goto out_wait;
Trond Myklebust425c1d42015-01-24 14:57:53 -05005881 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid);
Trond Myklebust795a88c2012-09-10 13:26:49 -04005882 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005883 /* Note: exit _without_ running nfs4_locku_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005884 goto out_no_action;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005885 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01005886 calldata->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05005887 if (nfs4_setup_sequence(calldata->server->nfs_client,
Andy Adamsona8936932009-04-01 09:22:23 -04005888 &calldata->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04005889 &calldata->res.seq_res,
5890 task) != 0)
5891 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005892 return;
5893out_no_action:
5894 task->tk_action = NULL;
5895out_wait:
5896 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897}
5898
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005899static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005900 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005901 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01005902 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005903};
5904
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005905static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
5906 struct nfs_open_context *ctx,
5907 struct nfs4_lock_state *lsp,
5908 struct nfs_seqid *seqid)
5909{
5910 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005911 struct rpc_message msg = {
5912 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
5913 .rpc_cred = ctx->cred,
5914 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005915 struct rpc_task_setup task_setup_data = {
5916 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04005917 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005918 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05005919 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005920 .flags = RPC_TASK_ASYNC,
5921 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005922
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04005923 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
5924 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
5925
Frank Filz137d6ac2007-07-09 15:32:29 -07005926 /* Ensure this is an unlock - when canceling a lock, the
5927 * canceled lock is passed in, and it won't be an unlock.
5928 */
5929 fl->fl_type = F_UNLCK;
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005930 if (fl->fl_flags & FL_CLOSE)
5931 set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags);
Frank Filz137d6ac2007-07-09 15:32:29 -07005932
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005933 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
5934 if (data == NULL) {
5935 nfs_free_seqid(seqid);
5936 return ERR_PTR(-ENOMEM);
5937 }
5938
Chuck Levera9c92d62013-08-09 12:48:18 -04005939 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05005940 msg.rpc_argp = &data->arg;
5941 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04005942 task_setup_data.callback_data = data;
5943 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005944}
5945
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
5947{
Trond Myklebust65b62a22013-02-07 10:54:07 -05005948 struct inode *inode = state->inode;
5949 struct nfs4_state_owner *sp = state->owner;
5950 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005951 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005952 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01005953 struct rpc_task *task;
Trond Myklebustb4019c02015-01-24 14:19:19 -05005954 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005955 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04005956 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Trond Myklebust9b073572006-06-29 16:38:34 -04005958 status = nfs4_set_lock_state(state, request);
5959 /* Unlock _before_ we do the RPC call */
5960 request->fl_flags |= FL_EXISTS;
Trond Myklebust65b62a22013-02-07 10:54:07 -05005961 /* Exclude nfs_delegation_claim_locks() */
5962 mutex_lock(&sp->so_delegreturn_mutex);
5963 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
Trond Myklebust19e03c52008-12-23 15:21:44 -05005964 down_read(&nfsi->rwsem);
Jeff Layton75575dd2016-09-17 18:17:32 -04005965 if (locks_lock_inode_wait(inode, request) == -ENOENT) {
Trond Myklebust19e03c52008-12-23 15:21:44 -05005966 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05005967 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04005968 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05005969 }
5970 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05005971 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04005972 if (status != 0)
5973 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05005974 /* Is this a delegated lock? */
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005975 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebustc5a2a152013-04-30 12:43:42 -04005976 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
5977 goto out;
Trond Myklebustb4019c02015-01-24 14:19:19 -05005978 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
5979 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04005980 status = -ENOMEM;
Trond Myklebustbadc76d2015-01-23 18:48:00 -05005981 if (IS_ERR(seqid))
Trond Myklebust9b073572006-06-29 16:38:34 -04005982 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04005983 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005984 status = PTR_ERR(task);
5985 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04005986 goto out;
Anna Schumaker820bf852017-01-11 15:01:43 -05005987 status = rpc_wait_for_completion_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05005988 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04005989out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04005990 request->fl_flags = fl_flags;
Trond Myklebustd1b748a2013-08-12 16:35:20 -04005991 trace_nfs4_unlock(request, state, F_SETLK, status);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005992 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993}
5994
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005995struct nfs4_lockdata {
5996 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005997 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005998 struct nfs4_lock_state *lsp;
5999 struct nfs_open_context *ctx;
6000 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01006001 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006002 int rpc_status;
6003 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04006004 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006005};
6006
6007static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006008 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
6009 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006010{
6011 struct nfs4_lockdata *p;
6012 struct inode *inode = lsp->ls_state->inode;
6013 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustb4019c02015-01-24 14:19:19 -05006014 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006015
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006016 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006017 if (p == NULL)
6018 return NULL;
6019
6020 p->arg.fh = NFS_FH(inode);
6021 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006022 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006023 if (IS_ERR(p->arg.open_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006024 goto out_free;
Trond Myklebustb4019c02015-01-24 14:19:19 -05006025 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
6026 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006027 if (IS_ERR(p->arg.lock_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006028 goto out_free_seqid;
David Howells7539bba2006-08-22 20:06:09 -04006029 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05006030 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05006031 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006032 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006033 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04006034 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006035 atomic_inc(&lsp->ls_count);
6036 p->ctx = get_nfs_open_context(ctx);
6037 memcpy(&p->fl, fl, sizeof(p->fl));
6038 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006039out_free_seqid:
6040 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006041out_free:
6042 kfree(p);
6043 return NULL;
6044}
6045
6046static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
6047{
6048 struct nfs4_lockdata *data = calldata;
6049 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
Harvey Harrison3110ff82008-05-02 13:42:44 -07006051 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006052 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006053 goto out_wait;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006054 /* Do we need to do an open_to_lock_owner? */
Trond Myklebust6b447532015-01-24 18:38:15 -05006055 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006056 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006057 goto out_release_lock_seqid;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006058 }
Trond Myklebust425c1d42015-01-24 14:57:53 -05006059 nfs4_stateid_copy(&data->arg.open_stateid,
6060 &state->open_stateid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006061 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006062 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006063 } else {
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006064 data->arg.new_lock_owner = 0;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006065 nfs4_stateid_copy(&data->arg.lock_stateid,
6066 &data->lsp->ls_stateid);
6067 }
Trond Myklebust5d422302013-03-14 16:57:48 -04006068 if (!nfs4_valid_open_stateid(state)) {
6069 data->rpc_status = -EBADF;
6070 task->tk_action = NULL;
6071 goto out_release_open_seqid;
6072 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01006073 data->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05006074 if (nfs4_setup_sequence(data->server->nfs_client,
Trond Myklebust035168a2010-06-16 09:52:26 -04006075 &data->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006076 &data->res.seq_res,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04006077 task) == 0)
Andy Adamson66179ef2009-04-01 09:22:22 -04006078 return;
Trond Myklebust5d422302013-03-14 16:57:48 -04006079out_release_open_seqid:
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006080 nfs_release_seqid(data->arg.open_seqid);
6081out_release_lock_seqid:
6082 nfs_release_seqid(data->arg.lock_seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006083out_wait:
6084 nfs4_sequence_done(task, &data->res.seq_res);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006085 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08006086}
6087
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006088static void nfs4_lock_done(struct rpc_task *task, void *calldata)
6089{
6090 struct nfs4_lockdata *data = calldata;
Trond Myklebust39071e62015-01-24 15:07:56 -05006091 struct nfs4_lock_state *lsp = data->lsp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006092
Harvey Harrison3110ff82008-05-02 13:42:44 -07006093 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006094
Trond Myklebust14516c32010-07-31 14:29:06 -04006095 if (!nfs4_sequence_done(task, &data->res.seq_res))
6096 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04006097
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006098 data->rpc_status = task->tk_status;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006099 switch (task->tk_status) {
6100 case 0:
David Howells2b0143b2015-03-17 22:25:59 +00006101 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
Trond Myklebust39071e62015-01-24 15:07:56 -05006102 data->timestamp);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006103 if (data->arg.new_lock) {
6104 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
Jeff Layton75575dd2016-09-17 18:17:32 -04006105 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) {
Trond Myklebustc69899a2015-01-24 16:03:52 -05006106 rpc_restart_call_prepare(task);
6107 break;
6108 }
6109 }
Trond Myklebust39071e62015-01-24 15:07:56 -05006110 if (data->arg.new_lock_owner != 0) {
6111 nfs_confirm_seqid(&lsp->ls_seqid, 0);
6112 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
6113 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
6114 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
6115 rpc_restart_call_prepare(task);
Trond Myklebust425c1d42015-01-24 14:57:53 -05006116 break;
6117 case -NFS4ERR_BAD_STATEID:
6118 case -NFS4ERR_OLD_STATEID:
6119 case -NFS4ERR_STALE_STATEID:
6120 case -NFS4ERR_EXPIRED:
6121 if (data->arg.new_lock_owner != 0) {
6122 if (!nfs4_stateid_match(&data->arg.open_stateid,
6123 &lsp->ls_state->open_stateid))
6124 rpc_restart_call_prepare(task);
6125 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
6126 &lsp->ls_stateid))
6127 rpc_restart_call_prepare(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006128 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07006129 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006130}
6131
6132static void nfs4_lock_release(void *calldata)
6133{
6134 struct nfs4_lockdata *data = calldata;
6135
Harvey Harrison3110ff82008-05-02 13:42:44 -07006136 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006137 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006138 if (data->cancelled != 0) {
6139 struct rpc_task *task;
6140 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
6141 data->arg.lock_seqid);
6142 if (!IS_ERR(task))
Trond Myklebustbf294b42011-02-21 11:05:41 -08006143 rpc_put_task_async(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006144 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006145 } else
6146 nfs_free_seqid(data->arg.lock_seqid);
6147 nfs4_put_lock_state(data->lsp);
6148 put_nfs_open_context(data->ctx);
6149 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006150 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006151}
6152
6153static const struct rpc_call_ops nfs4_lock_ops = {
6154 .rpc_call_prepare = nfs4_lock_prepare,
6155 .rpc_call_done = nfs4_lock_done,
6156 .rpc_release = nfs4_lock_release,
6157};
6158
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006159static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
6160{
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006161 switch (error) {
6162 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustd7f3e4b2016-09-22 13:39:09 -04006163 case -NFS4ERR_EXPIRED:
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006164 case -NFS4ERR_BAD_STATEID:
Trond Myklebustecac7992011-03-09 16:00:56 -05006165 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006166 if (new_lock_owner != 0 ||
Trond Myklebust795a88c2012-09-10 13:26:49 -04006167 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
Trond Myklebustecac7992011-03-09 16:00:56 -05006168 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006169 break;
6170 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006171 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebustecac7992011-03-09 16:00:56 -05006172 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006173 };
6174}
6175
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006176static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006177{
6178 struct nfs4_lockdata *data;
6179 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04006180 struct rpc_message msg = {
6181 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
6182 .rpc_cred = state->owner->so_cred,
6183 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04006184 struct rpc_task_setup task_setup_data = {
6185 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04006186 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006187 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05006188 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006189 .flags = RPC_TASK_ASYNC,
6190 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006191 int ret;
6192
Harvey Harrison3110ff82008-05-02 13:42:44 -07006193 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006194 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006195 fl->fl_u.nfs4_fl.owner,
6196 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006197 if (data == NULL)
6198 return -ENOMEM;
6199 if (IS_SETLKW(cmd))
6200 data->arg.block = 1;
Chuck Levera9c92d62013-08-09 12:48:18 -04006201 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05006202 msg.rpc_argp = &data->arg;
6203 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006204 task_setup_data.callback_data = data;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006205 if (recovery_type > NFS_LOCK_NEW) {
6206 if (recovery_type == NFS_LOCK_RECLAIM)
6207 data->arg.reclaim = NFS_LOCK_RECLAIM;
6208 nfs4_set_sequence_privileged(&data->arg.seq_args);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006209 } else
6210 data->arg.new_lock = 1;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006211 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05006212 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006213 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05006214 ret = rpc_wait_for_completion_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006215 if (ret == 0) {
6216 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006217 if (ret)
6218 nfs4_handle_setlk_error(data->server, data->lsp,
6219 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006220 } else
6221 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05006222 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006223 dprintk("%s: done, ret = %d!\n", __func__, ret);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05006224 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006225 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226}
6227
6228static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
6229{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006230 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006231 struct nfs4_exception exception = {
6232 .inode = state->inode,
6233 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006234 int err;
6235
6236 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006237 /* Cache the lock if possible... */
6238 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6239 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006240 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04006241 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00006242 break;
6243 nfs4_handle_exception(server, err, &exception);
6244 } while (exception.retry);
6245 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246}
6247
6248static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
6249{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006250 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006251 struct nfs4_exception exception = {
6252 .inode = state->inode,
6253 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006254 int err;
6255
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05006256 err = nfs4_set_lock_state(state, request);
6257 if (err != 0)
6258 return err;
Trond Myklebustf6de7a32013-09-04 10:08:54 -04006259 if (!recover_lost_locks) {
NeilBrownef1820f2013-09-04 17:04:49 +10006260 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
6261 return 0;
6262 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006263 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006264 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6265 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006266 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006267 switch (err) {
6268 default:
6269 goto out;
6270 case -NFS4ERR_GRACE:
6271 case -NFS4ERR_DELAY:
6272 nfs4_handle_exception(server, err, &exception);
6273 err = 0;
6274 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006275 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006276out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00006277 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278}
6279
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006280#if defined(CONFIG_NFS_V4_1)
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006281static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
6282{
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006283 struct nfs4_lock_state *lsp;
6284 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006285
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006286 status = nfs4_set_lock_state(state, request);
6287 if (status != 0)
6288 return status;
6289 lsp = request->fl_u.nfs4_fl.owner;
6290 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
6291 test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
6292 return 0;
Anna Schumaker81b68de2017-01-11 16:41:34 -05006293 return nfs4_lock_expired(state, request);
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006294}
6295#endif
6296
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6298{
Trond Myklebust19e03c52008-12-23 15:21:44 -05006299 struct nfs_inode *nfsi = NFS_I(state->inode);
Chuck Lever11476e92016-04-11 16:20:22 -04006300 struct nfs4_state_owner *sp = state->owner;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006301 unsigned char fl_flags = request->fl_flags;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006302 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303
Trond Myklebust01c3b862006-06-29 16:38:39 -04006304 request->fl_flags |= FL_ACCESS;
Jeff Layton75575dd2016-09-17 18:17:32 -04006305 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006306 if (status < 0)
6307 goto out;
Chuck Lever11476e92016-04-11 16:20:22 -04006308 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebust19e03c52008-12-23 15:21:44 -05006309 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006310 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04006311 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04006312 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05006313 request->fl_flags = fl_flags & ~FL_SLEEP;
Jeff Layton75575dd2016-09-17 18:17:32 -04006314 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006315 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006316 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006317 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006318 }
Trond Myklebust9a99af42013-02-04 20:17:49 -05006319 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006320 mutex_unlock(&sp->so_delegreturn_mutex);
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006321 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006322out:
6323 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324 return status;
6325}
6326
6327static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6328{
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006329 struct nfs4_exception exception = {
6330 .state = state,
Trond Myklebust05ffe242012-04-18 12:20:10 -04006331 .inode = state->inode,
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006332 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333 int err;
6334
6335 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07006336 err = _nfs4_proc_setlk(state, cmd, request);
6337 if (err == -NFS4ERR_DENIED)
6338 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07006340 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341 } while (exception.retry);
6342 return err;
6343}
6344
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006345#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
6346#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
6347
6348static int
Jeff Laytona1d617d82016-09-17 18:17:39 -04006349nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
6350 struct file_lock *request)
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006351{
6352 int status = -ERESTARTSYS;
6353 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
6354
6355 while(!signalled()) {
6356 status = nfs4_proc_setlk(state, cmd, request);
6357 if ((status != -EAGAIN) || IS_SETLK(cmd))
6358 break;
6359 freezable_schedule_timeout_interruptible(timeout);
6360 timeout *= 2;
6361 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
6362 status = -ERESTARTSYS;
6363 }
6364 return status;
6365}
6366
Jeff Laytona1d617d82016-09-17 18:17:39 -04006367#ifdef CONFIG_NFS_V4_1
6368struct nfs4_lock_waiter {
6369 struct task_struct *task;
6370 struct inode *inode;
6371 struct nfs_lowner *owner;
6372 bool notified;
6373};
6374
6375static int
6376nfs4_wake_lock_waiter(wait_queue_t *wait, unsigned int mode, int flags, void *key)
6377{
6378 int ret;
6379 struct cb_notify_lock_args *cbnl = key;
6380 struct nfs4_lock_waiter *waiter = wait->private;
6381 struct nfs_lowner *lowner = &cbnl->cbnl_owner,
6382 *wowner = waiter->owner;
6383
6384 /* Only wake if the callback was for the same owner */
6385 if (lowner->clientid != wowner->clientid ||
6386 lowner->id != wowner->id ||
6387 lowner->s_dev != wowner->s_dev)
6388 return 0;
6389
6390 /* Make sure it's for the right inode */
6391 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
6392 return 0;
6393
6394 waiter->notified = true;
6395
6396 /* override "private" so we can use default_wake_function */
6397 wait->private = waiter->task;
6398 ret = autoremove_wake_function(wait, mode, flags, key);
6399 wait->private = waiter;
6400 return ret;
6401}
6402
6403static int
6404nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6405{
6406 int status = -ERESTARTSYS;
6407 unsigned long flags;
6408 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
6409 struct nfs_server *server = NFS_SERVER(state->inode);
6410 struct nfs_client *clp = server->nfs_client;
6411 wait_queue_head_t *q = &clp->cl_lock_waitq;
6412 struct nfs_lowner owner = { .clientid = clp->cl_clientid,
6413 .id = lsp->ls_seqid.owner_id,
6414 .s_dev = server->s_dev };
6415 struct nfs4_lock_waiter waiter = { .task = current,
6416 .inode = state->inode,
6417 .owner = &owner,
6418 .notified = false };
6419 wait_queue_t wait;
6420
6421 /* Don't bother with waitqueue if we don't expect a callback */
6422 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
6423 return nfs4_retry_setlk_simple(state, cmd, request);
6424
6425 init_wait(&wait);
6426 wait.private = &waiter;
6427 wait.func = nfs4_wake_lock_waiter;
6428 add_wait_queue(q, &wait);
6429
6430 while(!signalled()) {
6431 status = nfs4_proc_setlk(state, cmd, request);
6432 if ((status != -EAGAIN) || IS_SETLK(cmd))
6433 break;
6434
6435 status = -ERESTARTSYS;
6436 spin_lock_irqsave(&q->lock, flags);
6437 if (waiter.notified) {
6438 spin_unlock_irqrestore(&q->lock, flags);
6439 continue;
6440 }
6441 set_current_state(TASK_INTERRUPTIBLE);
6442 spin_unlock_irqrestore(&q->lock, flags);
6443
6444 freezable_schedule_timeout_interruptible(NFS4_LOCK_MAXTIMEOUT);
6445 }
6446
6447 finish_wait(q, &wait);
6448 return status;
6449}
6450#else /* !CONFIG_NFS_V4_1 */
6451static inline int
6452nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6453{
6454 return nfs4_retry_setlk_simple(state, cmd, request);
6455}
6456#endif
6457
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458static int
6459nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
6460{
6461 struct nfs_open_context *ctx;
6462 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463 int status;
6464
6465 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006466 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467 state = ctx->state;
6468
Trond Myklebustd9531262009-07-21 19:22:38 -04006469 if (IS_GETLK(cmd)) {
6470 if (state != NULL)
6471 return nfs4_proc_getlk(state, F_GETLK, request);
6472 return 0;
6473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474
6475 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
6476 return -EINVAL;
6477
Trond Myklebustd9531262009-07-21 19:22:38 -04006478 if (request->fl_type == F_UNLCK) {
6479 if (state != NULL)
6480 return nfs4_proc_unlck(state, cmd, request);
6481 return 0;
6482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483
Trond Myklebustd9531262009-07-21 19:22:38 -04006484 if (state == NULL)
6485 return -ENOLCK;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006486
6487 if ((request->fl_flags & FL_POSIX) &&
6488 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
6489 return -ENOLCK;
6490
Jeff Layton1ea67db2016-09-17 18:17:37 -04006491 status = nfs4_set_lock_state(state, request);
6492 if (status != 0)
6493 return status;
6494
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006495 return nfs4_retry_setlk(state, cmd, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496}
6497
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006498int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
Trond Myklebust888e6942005-11-04 15:38:11 -05006499{
6500 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust888e6942005-11-04 15:38:11 -05006501 int err;
6502
6503 err = nfs4_set_lock_state(state, fl);
6504 if (err != 0)
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006505 return err;
Trond Myklebust4a706fa2013-04-01 14:47:22 -04006506 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006507 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
Trond Myklebust888e6942005-11-04 15:38:11 -05006508}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006509
Trond Myklebustcf470c32012-03-07 13:49:12 -05006510struct nfs_release_lockowner_data {
6511 struct nfs4_lock_state *lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006512 struct nfs_server *server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006513 struct nfs_release_lockowner_args args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006514 struct nfs_release_lockowner_res res;
Chuck Lever60ea6812013-10-17 14:13:47 -04006515 unsigned long timestamp;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006516};
6517
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006518static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
6519{
6520 struct nfs_release_lockowner_data *data = calldata;
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006521 struct nfs_server *server = data->server;
Anna Schumaker7981c8a2017-01-10 11:39:53 -05006522 nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
6523 &data->res.seq_res, task);
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006524 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
Chuck Lever60ea6812013-10-17 14:13:47 -04006525 data->timestamp = jiffies;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006526}
6527
6528static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
6529{
6530 struct nfs_release_lockowner_data *data = calldata;
Chuck Lever60ea6812013-10-17 14:13:47 -04006531 struct nfs_server *server = data->server;
6532
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006533 nfs40_sequence_done(task, &data->res.seq_res);
Chuck Lever60ea6812013-10-17 14:13:47 -04006534
6535 switch (task->tk_status) {
6536 case 0:
6537 renew_lease(server, data->timestamp);
6538 break;
6539 case -NFS4ERR_STALE_CLIENTID:
6540 case -NFS4ERR_EXPIRED:
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006541 nfs4_schedule_lease_recovery(server->nfs_client);
6542 break;
Chuck Lever60ea6812013-10-17 14:13:47 -04006543 case -NFS4ERR_LEASE_MOVED:
6544 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10006545 if (nfs4_async_handle_error(task, server,
6546 NULL, NULL) == -EAGAIN)
Chuck Lever60ea6812013-10-17 14:13:47 -04006547 rpc_restart_call_prepare(task);
6548 }
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006549}
6550
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006551static void nfs4_release_lockowner_release(void *calldata)
6552{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006553 struct nfs_release_lockowner_data *data = calldata;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006554 nfs4_free_lock_state(data->server, data->lsp);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006555 kfree(calldata);
6556}
6557
Trond Myklebust17280172012-03-11 13:11:00 -04006558static const struct rpc_call_ops nfs4_release_lockowner_ops = {
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006559 .rpc_call_prepare = nfs4_release_lockowner_prepare,
6560 .rpc_call_done = nfs4_release_lockowner_done,
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006561 .rpc_release = nfs4_release_lockowner_release,
6562};
6563
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006564static void
6565nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006566{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006567 struct nfs_release_lockowner_data *data;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006568 struct rpc_message msg = {
6569 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
6570 };
6571
6572 if (server->nfs_client->cl_mvops->minor_version != 0)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006573 return;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006574
Trond Myklebustcf470c32012-03-07 13:49:12 -05006575 data = kmalloc(sizeof(*data), GFP_NOFS);
6576 if (!data)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006577 return;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006578 data->lsp = lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006579 data->server = server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006580 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6581 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
6582 data->args.lock_owner.s_dev = server->s_dev;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006583
Trond Myklebustcf470c32012-03-07 13:49:12 -05006584 msg.rpc_argp = &data->args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006585 msg.rpc_resp = &data->res;
6586 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
Trond Myklebustcf470c32012-03-07 13:49:12 -05006587 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006588}
6589
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00006590#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
6591
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006592static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006593 struct dentry *unused, struct inode *inode,
6594 const char *key, const void *buf,
6595 size_t buflen, int flags)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006596{
Al Viro59301222016-05-27 10:19:30 -04006597 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006598}
6599
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006600static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006601 struct dentry *unused, struct inode *inode,
6602 const char *key, void *buf, size_t buflen)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006603{
Al Virob2968212016-04-10 20:48:24 -04006604 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006605}
6606
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006607static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006608{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006609 return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)));
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006610}
6611
David Quigleyc9bccef2013-05-22 12:50:45 -04006612#ifdef CONFIG_NFS_V4_SECURITY_LABEL
David Quigleyc9bccef2013-05-22 12:50:45 -04006613
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006614static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006615 struct dentry *unused, struct inode *inode,
6616 const char *key, const void *buf,
6617 size_t buflen, int flags)
David Quigleyc9bccef2013-05-22 12:50:45 -04006618{
6619 if (security_ismaclabel(key))
Al Viro59301222016-05-27 10:19:30 -04006620 return nfs4_set_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006621
6622 return -EOPNOTSUPP;
6623}
6624
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006625static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006626 struct dentry *unused, struct inode *inode,
6627 const char *key, void *buf, size_t buflen)
David Quigleyc9bccef2013-05-22 12:50:45 -04006628{
6629 if (security_ismaclabel(key))
Al Virob2968212016-04-10 20:48:24 -04006630 return nfs4_get_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006631 return -EOPNOTSUPP;
6632}
6633
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006634static ssize_t
6635nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
David Quigleyc9bccef2013-05-22 12:50:45 -04006636{
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006637 int len = 0;
David Quigleyc9bccef2013-05-22 12:50:45 -04006638
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006639 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
6640 len = security_inode_listsecurity(inode, list, list_len);
6641 if (list_len && len > list_len)
6642 return -ERANGE;
David Quigleyc9bccef2013-05-22 12:50:45 -04006643 }
6644 return len;
6645}
6646
6647static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
6648 .prefix = XATTR_SECURITY_PREFIX,
David Quigleyc9bccef2013-05-22 12:50:45 -04006649 .get = nfs4_xattr_get_nfs4_label,
6650 .set = nfs4_xattr_set_nfs4_label,
6651};
David Quigleyc9bccef2013-05-22 12:50:45 -04006652
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006653#else
6654
6655static ssize_t
6656nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
6657{
6658 return 0;
6659}
6660
6661#endif
David Quigleyc9bccef2013-05-22 12:50:45 -04006662
Andy Adamson533eb462011-06-13 18:25:56 -04006663/*
6664 * nfs_fhget will use either the mounted_on_fileid or the fileid
6665 */
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006666static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
6667{
Andy Adamson533eb462011-06-13 18:25:56 -04006668 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
6669 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
6670 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
Chuck Lever81934dd2012-03-01 17:01:57 -05006671 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006672 return;
6673
6674 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Chuck Lever81934dd2012-03-01 17:01:57 -05006675 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006676 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
6677 fattr->nlink = 2;
6678}
6679
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006680static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6681 const struct qstr *name,
6682 struct nfs4_fs_locations *fs_locations,
6683 struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006684{
6685 struct nfs_server *server = NFS_SERVER(dir);
David Quigleya09df2c2013-05-22 12:50:41 -04006686 u32 bitmask[3] = {
Manoj Naik361e6242006-06-09 09:34:24 -04006687 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006688 };
6689 struct nfs4_fs_locations_arg args = {
6690 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05006691 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006692 .page = page,
6693 .bitmask = bitmask,
6694 };
Benny Halevy22958462009-04-01 09:22:02 -04006695 struct nfs4_fs_locations_res res = {
6696 .fs_locations = fs_locations,
6697 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04006698 struct rpc_message msg = {
6699 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6700 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04006701 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006702 };
6703 int status;
6704
Harvey Harrison3110ff82008-05-02 13:42:44 -07006705 dprintk("%s: start\n", __func__);
Andy Adamson533eb462011-06-13 18:25:56 -04006706
6707 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
6708 * is not supported */
6709 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
6710 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
6711 else
6712 bitmask[0] |= FATTR4_WORD0_FILEID;
6713
Trond Myklebustc228fd32007-01-13 02:28:11 -05006714 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006715 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04006716 fs_locations->nlocations = 0;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006717 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006718 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006719 return status;
6720}
6721
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006722int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6723 const struct qstr *name,
6724 struct nfs4_fs_locations *fs_locations,
6725 struct page *page)
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006726{
6727 struct nfs4_exception exception = { };
6728 int err;
6729 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04006730 err = _nfs4_proc_fs_locations(client, dir, name,
6731 fs_locations, page);
6732 trace_nfs4_get_fs_locations(dir, name, err);
6733 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006734 &exception);
6735 } while (exception.retry);
6736 return err;
6737}
6738
Chuck Leverb03d7352013-10-17 14:12:50 -04006739/*
6740 * This operation also signals the server that this client is
6741 * performing migration recovery. The server can stop returning
6742 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
6743 * appended to this compound to identify the client ID which is
6744 * performing recovery.
6745 */
6746static int _nfs40_proc_get_locations(struct inode *inode,
6747 struct nfs4_fs_locations *locations,
6748 struct page *page, struct rpc_cred *cred)
6749{
6750 struct nfs_server *server = NFS_SERVER(inode);
6751 struct rpc_clnt *clnt = server->client;
6752 u32 bitmask[2] = {
6753 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6754 };
6755 struct nfs4_fs_locations_arg args = {
6756 .clientid = server->nfs_client->cl_clientid,
6757 .fh = NFS_FH(inode),
6758 .page = page,
6759 .bitmask = bitmask,
6760 .migration = 1, /* skip LOOKUP */
6761 .renew = 1, /* append RENEW */
6762 };
6763 struct nfs4_fs_locations_res res = {
6764 .fs_locations = locations,
6765 .migration = 1,
6766 .renew = 1,
6767 };
6768 struct rpc_message msg = {
6769 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6770 .rpc_argp = &args,
6771 .rpc_resp = &res,
6772 .rpc_cred = cred,
6773 };
6774 unsigned long now = jiffies;
6775 int status;
6776
6777 nfs_fattr_init(&locations->fattr);
6778 locations->server = server;
6779 locations->nlocations = 0;
6780
6781 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6782 nfs4_set_sequence_privileged(&args.seq_args);
6783 status = nfs4_call_sync_sequence(clnt, server, &msg,
6784 &args.seq_args, &res.seq_res);
6785 if (status)
6786 return status;
6787
6788 renew_lease(server, now);
6789 return 0;
6790}
6791
6792#ifdef CONFIG_NFS_V4_1
6793
6794/*
6795 * This operation also signals the server that this client is
6796 * performing migration recovery. The server can stop asserting
6797 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
6798 * performing this operation is identified in the SEQUENCE
6799 * operation in this compound.
6800 *
6801 * When the client supports GETATTR(fs_locations_info), it can
6802 * be plumbed in here.
6803 */
6804static int _nfs41_proc_get_locations(struct inode *inode,
6805 struct nfs4_fs_locations *locations,
6806 struct page *page, struct rpc_cred *cred)
6807{
6808 struct nfs_server *server = NFS_SERVER(inode);
6809 struct rpc_clnt *clnt = server->client;
6810 u32 bitmask[2] = {
6811 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6812 };
6813 struct nfs4_fs_locations_arg args = {
6814 .fh = NFS_FH(inode),
6815 .page = page,
6816 .bitmask = bitmask,
6817 .migration = 1, /* skip LOOKUP */
6818 };
6819 struct nfs4_fs_locations_res res = {
6820 .fs_locations = locations,
6821 .migration = 1,
6822 };
6823 struct rpc_message msg = {
6824 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6825 .rpc_argp = &args,
6826 .rpc_resp = &res,
6827 .rpc_cred = cred,
6828 };
6829 int status;
6830
6831 nfs_fattr_init(&locations->fattr);
6832 locations->server = server;
6833 locations->nlocations = 0;
6834
6835 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6836 nfs4_set_sequence_privileged(&args.seq_args);
6837 status = nfs4_call_sync_sequence(clnt, server, &msg,
6838 &args.seq_args, &res.seq_res);
6839 if (status == NFS4_OK &&
6840 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6841 status = -NFS4ERR_LEASE_MOVED;
6842 return status;
6843}
6844
6845#endif /* CONFIG_NFS_V4_1 */
6846
6847/**
6848 * nfs4_proc_get_locations - discover locations for a migrated FSID
6849 * @inode: inode on FSID that is migrating
6850 * @locations: result of query
6851 * @page: buffer
6852 * @cred: credential to use for this operation
6853 *
6854 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
6855 * operation failed, or a negative errno if a local error occurred.
6856 *
6857 * On success, "locations" is filled in, but if the server has
6858 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
6859 * asserted.
6860 *
6861 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
6862 * from this client that require migration recovery.
6863 */
6864int nfs4_proc_get_locations(struct inode *inode,
6865 struct nfs4_fs_locations *locations,
6866 struct page *page, struct rpc_cred *cred)
6867{
6868 struct nfs_server *server = NFS_SERVER(inode);
6869 struct nfs_client *clp = server->nfs_client;
6870 const struct nfs4_mig_recovery_ops *ops =
6871 clp->cl_mvops->mig_recovery_ops;
6872 struct nfs4_exception exception = { };
6873 int status;
6874
6875 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6876 (unsigned long long)server->fsid.major,
6877 (unsigned long long)server->fsid.minor,
6878 clp->cl_hostname);
6879 nfs_display_fhandle(NFS_FH(inode), __func__);
6880
6881 do {
6882 status = ops->get_locations(inode, locations, page, cred);
6883 if (status != -NFS4ERR_DELAY)
6884 break;
6885 nfs4_handle_exception(server, status, &exception);
6886 } while (exception.retry);
6887 return status;
6888}
6889
Chuck Lever44c99932013-10-17 14:13:30 -04006890/*
6891 * This operation also signals the server that this client is
6892 * performing "lease moved" recovery. The server can stop
6893 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
6894 * is appended to this compound to identify the client ID which is
6895 * performing recovery.
6896 */
6897static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6898{
6899 struct nfs_server *server = NFS_SERVER(inode);
6900 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
6901 struct rpc_clnt *clnt = server->client;
6902 struct nfs4_fsid_present_arg args = {
6903 .fh = NFS_FH(inode),
6904 .clientid = clp->cl_clientid,
6905 .renew = 1, /* append RENEW */
6906 };
6907 struct nfs4_fsid_present_res res = {
6908 .renew = 1,
6909 };
6910 struct rpc_message msg = {
6911 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6912 .rpc_argp = &args,
6913 .rpc_resp = &res,
6914 .rpc_cred = cred,
6915 };
6916 unsigned long now = jiffies;
6917 int status;
6918
6919 res.fh = nfs_alloc_fhandle();
6920 if (res.fh == NULL)
6921 return -ENOMEM;
6922
6923 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6924 nfs4_set_sequence_privileged(&args.seq_args);
6925 status = nfs4_call_sync_sequence(clnt, server, &msg,
6926 &args.seq_args, &res.seq_res);
6927 nfs_free_fhandle(res.fh);
6928 if (status)
6929 return status;
6930
6931 do_renew_lease(clp, now);
6932 return 0;
6933}
6934
6935#ifdef CONFIG_NFS_V4_1
6936
6937/*
6938 * This operation also signals the server that this client is
6939 * performing "lease moved" recovery. The server can stop asserting
6940 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
6941 * this operation is identified in the SEQUENCE operation in this
6942 * compound.
6943 */
6944static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6945{
6946 struct nfs_server *server = NFS_SERVER(inode);
6947 struct rpc_clnt *clnt = server->client;
6948 struct nfs4_fsid_present_arg args = {
6949 .fh = NFS_FH(inode),
6950 };
6951 struct nfs4_fsid_present_res res = {
6952 };
6953 struct rpc_message msg = {
6954 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6955 .rpc_argp = &args,
6956 .rpc_resp = &res,
6957 .rpc_cred = cred,
6958 };
6959 int status;
6960
6961 res.fh = nfs_alloc_fhandle();
6962 if (res.fh == NULL)
6963 return -ENOMEM;
6964
6965 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6966 nfs4_set_sequence_privileged(&args.seq_args);
6967 status = nfs4_call_sync_sequence(clnt, server, &msg,
6968 &args.seq_args, &res.seq_res);
6969 nfs_free_fhandle(res.fh);
6970 if (status == NFS4_OK &&
6971 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6972 status = -NFS4ERR_LEASE_MOVED;
6973 return status;
6974}
6975
6976#endif /* CONFIG_NFS_V4_1 */
6977
6978/**
6979 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
6980 * @inode: inode on FSID to check
6981 * @cred: credential to use for this operation
6982 *
6983 * Server indicates whether the FSID is present, moved, or not
6984 * recognized. This operation is necessary to clear a LEASE_MOVED
6985 * condition for this client ID.
6986 *
6987 * Returns NFS4_OK if the FSID is present on this server,
6988 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
6989 * NFS4ERR code if some error occurred on the server, or a
6990 * negative errno if a local failure occurred.
6991 */
6992int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6993{
6994 struct nfs_server *server = NFS_SERVER(inode);
6995 struct nfs_client *clp = server->nfs_client;
6996 const struct nfs4_mig_recovery_ops *ops =
6997 clp->cl_mvops->mig_recovery_ops;
6998 struct nfs4_exception exception = { };
6999 int status;
7000
7001 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
7002 (unsigned long long)server->fsid.major,
7003 (unsigned long long)server->fsid.minor,
7004 clp->cl_hostname);
7005 nfs_display_fhandle(NFS_FH(inode), __func__);
7006
7007 do {
7008 status = ops->fsid_present(inode, cred);
7009 if (status != -NFS4ERR_DELAY)
7010 break;
7011 nfs4_handle_exception(server, status, &exception);
7012 } while (exception.retry);
7013 return status;
7014}
7015
Andy Adamson5ec16a82013-08-08 10:57:55 -04007016/**
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007017 * If 'use_integrity' is true and the state managment nfs_client
7018 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
7019 * and the machine credential as per RFC3530bis and RFC5661 Security
7020 * Considerations sections. Otherwise, just use the user cred with the
7021 * filesystem's rpc_client.
Andy Adamson5ec16a82013-08-08 10:57:55 -04007022 */
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007023static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007024{
7025 int status;
7026 struct nfs4_secinfo_arg args = {
7027 .dir_fh = NFS_FH(dir),
7028 .name = name,
7029 };
7030 struct nfs4_secinfo_res res = {
7031 .flavors = flavors,
7032 };
7033 struct rpc_message msg = {
7034 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
7035 .rpc_argp = &args,
7036 .rpc_resp = &res,
7037 };
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007038 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007039 struct rpc_cred *cred = NULL;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007040
7041 if (use_integrity) {
7042 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007043 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client);
7044 msg.rpc_cred = cred;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007045 }
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007046
7047 dprintk("NFS call secinfo %s\n", name->name);
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007048
7049 nfs4_state_protect(NFS_SERVER(dir)->nfs_client,
7050 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
7051
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007052 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args,
7053 &res.seq_res, 0);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007054 dprintk("NFS reply secinfo: %d\n", status);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007055
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007056 if (cred)
7057 put_rpccred(cred);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007058
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007059 return status;
7060}
7061
Bryan Schumaker72de53e2012-04-27 13:27:40 -04007062int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
7063 struct nfs4_secinfo_flavors *flavors)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007064{
7065 struct nfs4_exception exception = { };
7066 int err;
7067 do {
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007068 err = -NFS4ERR_WRONGSEC;
7069
7070 /* try to use integrity protection with machine cred */
7071 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
7072 err = _nfs4_proc_secinfo(dir, name, flavors, true);
7073
7074 /*
7075 * if unable to use integrity protection, or SECINFO with
7076 * integrity protection returns NFS4ERR_WRONGSEC (which is
7077 * disallowed by spec, but exists in deployed servers) use
7078 * the current filesystem's rpc_client and the user cred.
7079 */
7080 if (err == -NFS4ERR_WRONGSEC)
7081 err = _nfs4_proc_secinfo(dir, name, flavors, false);
7082
Trond Myklebust078ea3d2013-08-12 16:45:55 -04007083 trace_nfs4_secinfo(dir, name, err);
7084 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007085 &exception);
7086 } while (exception.retry);
7087 return err;
7088}
7089
Andy Adamson557134a2009-04-01 09:21:53 -04007090#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04007091/*
Andy Adamson357f54d2010-12-14 10:11:57 -05007092 * Check the exchange flags returned by the server for invalid flags, having
7093 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
7094 * DS flags set.
7095 */
7096static int nfs4_check_cl_exchange_flags(u32 flags)
7097{
7098 if (flags & ~EXCHGID4_FLAG_MASK_R)
7099 goto out_inval;
7100 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
7101 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
7102 goto out_inval;
7103 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
7104 goto out_inval;
7105 return NFS_OK;
7106out_inval:
7107 return -NFS4ERR_INVAL;
7108}
7109
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007110static bool
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007111nfs41_same_server_scope(struct nfs41_server_scope *a,
7112 struct nfs41_server_scope *b)
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007113{
Anna Schumaker49ad0142017-01-11 16:51:59 -05007114 if (a->server_scope_sz != b->server_scope_sz)
7115 return false;
7116 return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007117}
7118
Andy Adamson02a95de2016-02-05 16:08:37 -05007119static void
7120nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
7121{
7122}
7123
7124static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
7125 .rpc_call_done = &nfs4_bind_one_conn_to_session_done,
7126};
7127
Andy Adamson357f54d2010-12-14 10:11:57 -05007128/*
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007129 * nfs4_proc_bind_one_conn_to_session()
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007130 *
7131 * The 4.1 client currently uses the same TCP connection for the
7132 * fore and backchannel.
7133 */
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007134static
7135int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
7136 struct rpc_xprt *xprt,
7137 struct nfs_client *clp,
7138 struct rpc_cred *cred)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007139{
7140 int status;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007141 struct nfs41_bind_conn_to_session_args args = {
7142 .client = clp,
7143 .dir = NFS4_CDFC4_FORE_OR_BOTH,
7144 };
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007145 struct nfs41_bind_conn_to_session_res res;
7146 struct rpc_message msg = {
7147 .rpc_proc =
7148 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
Trond Myklebust71a097c2015-02-18 09:27:18 -08007149 .rpc_argp = &args,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007150 .rpc_resp = &res,
Trond Myklebust2cf047c2012-05-25 17:57:41 -04007151 .rpc_cred = cred,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007152 };
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007153 struct rpc_task_setup task_setup_data = {
7154 .rpc_client = clnt,
7155 .rpc_xprt = xprt,
Andy Adamson02a95de2016-02-05 16:08:37 -05007156 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007157 .rpc_message = &msg,
7158 .flags = RPC_TASK_TIMEOUT,
7159 };
7160 struct rpc_task *task;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007161
Trond Myklebust71a097c2015-02-18 09:27:18 -08007162 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
7163 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
7164 args.dir = NFS4_CDFC4_FORE;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007165
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007166 /* Do not set the backchannel flag unless this is clnt->cl_xprt */
7167 if (xprt != rcu_access_pointer(clnt->cl_xprt))
7168 args.dir = NFS4_CDFC4_FORE;
7169
7170 task = rpc_run_task(&task_setup_data);
7171 if (!IS_ERR(task)) {
7172 status = task->tk_status;
7173 rpc_put_task(task);
7174 } else
7175 status = PTR_ERR(task);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007176 trace_nfs4_bind_conn_to_session(clp, status);
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007177 if (status == 0) {
Trond Myklebust71a097c2015-02-18 09:27:18 -08007178 if (memcmp(res.sessionid.data,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007179 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
7180 dprintk("NFS: %s: Session ID mismatch\n", __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007181 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007182 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007183 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007184 dprintk("NFS: %s: Unexpected direction from server\n",
7185 __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007186 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007187 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007188 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007189 dprintk("NFS: %s: Server returned RDMA mode = true\n",
7190 __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007191 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007192 }
7193 }
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007194
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007195 return status;
7196}
7197
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007198struct rpc_bind_conn_calldata {
7199 struct nfs_client *clp;
7200 struct rpc_cred *cred;
7201};
7202
7203static int
7204nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
7205 struct rpc_xprt *xprt,
7206 void *calldata)
7207{
7208 struct rpc_bind_conn_calldata *p = calldata;
7209
7210 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
7211}
7212
7213int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
7214{
7215 struct rpc_bind_conn_calldata data = {
7216 .clp = clp,
7217 .cred = cred,
7218 };
7219 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
7220 nfs4_proc_bind_conn_to_session_callback, &data);
7221}
7222
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007223/*
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007224 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
7225 * and operations we'd like to see to enable certain features in the allow map
Benny Halevy99fe60d2009-04-01 09:22:29 -04007226 */
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007227static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
7228 .how = SP4_MACH_CRED,
7229 .enforce.u.words = {
7230 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7231 1 << (OP_EXCHANGE_ID - 32) |
7232 1 << (OP_CREATE_SESSION - 32) |
7233 1 << (OP_DESTROY_SESSION - 32) |
7234 1 << (OP_DESTROY_CLIENTID - 32)
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007235 },
7236 .allow.u.words = {
7237 [0] = 1 << (OP_CLOSE) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007238 1 << (OP_OPEN_DOWNGRADE) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007239 1 << (OP_LOCKU) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007240 1 << (OP_DELEGRETURN) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007241 1 << (OP_COMMIT),
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007242 [1] = 1 << (OP_SECINFO - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007243 1 << (OP_SECINFO_NO_NAME - 32) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007244 1 << (OP_LAYOUTRETURN - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007245 1 << (OP_TEST_STATEID - 32) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007246 1 << (OP_FREE_STATEID - 32) |
7247 1 << (OP_WRITE - 32)
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007248 }
7249};
7250
7251/*
7252 * Select the state protection mode for client `clp' given the server results
7253 * from exchange_id in `sp'.
7254 *
7255 * Returns 0 on success, negative errno otherwise.
7256 */
7257static int nfs4_sp4_select_mode(struct nfs_client *clp,
7258 struct nfs41_state_protection *sp)
7259{
7260 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
7261 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7262 1 << (OP_EXCHANGE_ID - 32) |
7263 1 << (OP_CREATE_SESSION - 32) |
7264 1 << (OP_DESTROY_SESSION - 32) |
7265 1 << (OP_DESTROY_CLIENTID - 32)
7266 };
7267 unsigned int i;
7268
7269 if (sp->how == SP4_MACH_CRED) {
7270 /* Print state protect result */
7271 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
7272 for (i = 0; i <= LAST_NFS4_OP; i++) {
7273 if (test_bit(i, sp->enforce.u.longs))
7274 dfprintk(MOUNT, " enforce op %d\n", i);
7275 if (test_bit(i, sp->allow.u.longs))
7276 dfprintk(MOUNT, " allow op %d\n", i);
7277 }
7278
7279 /* make sure nothing is on enforce list that isn't supported */
7280 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
7281 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
7282 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7283 return -EINVAL;
7284 }
7285 }
7286
7287 /*
7288 * Minimal mode - state operations are allowed to use machine
7289 * credential. Note this already happens by default, so the
7290 * client doesn't have to do anything more than the negotiation.
7291 *
7292 * NOTE: we don't care if EXCHANGE_ID is in the list -
7293 * we're already using the machine cred for exchange_id
7294 * and will never use a different cred.
7295 */
7296 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
7297 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
7298 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
7299 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
7300 dfprintk(MOUNT, "sp4_mach_cred:\n");
7301 dfprintk(MOUNT, " minimal mode enabled\n");
7302 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags);
7303 } else {
7304 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7305 return -EINVAL;
7306 }
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007307
7308 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
Andrew Elble99ade3c2015-12-02 09:39:51 -05007309 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
7310 test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007311 test_bit(OP_LOCKU, sp->allow.u.longs)) {
7312 dfprintk(MOUNT, " cleanup mode enabled\n");
7313 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags);
7314 }
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007315
Andrew Elble99ade3c2015-12-02 09:39:51 -05007316 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
7317 dfprintk(MOUNT, " pnfs cleanup mode enabled\n");
7318 set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP,
7319 &clp->cl_sp4_flags);
7320 }
7321
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007322 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
7323 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
7324 dfprintk(MOUNT, " secinfo mode enabled\n");
7325 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
7326 }
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007327
7328 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
7329 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
7330 dfprintk(MOUNT, " stateid mode enabled\n");
7331 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
7332 }
Weston Andros Adamson8c21c622013-08-13 16:37:37 -04007333
7334 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
7335 dfprintk(MOUNT, " write mode enabled\n");
7336 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags);
7337 }
7338
7339 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
7340 dfprintk(MOUNT, " commit mode enabled\n");
7341 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags);
7342 }
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007343 }
7344
7345 return 0;
7346}
7347
Andy Adamson8d89bd72016-09-09 09:22:18 -04007348struct nfs41_exchange_id_data {
7349 struct nfs41_exchange_id_res res;
7350 struct nfs41_exchange_id_args args;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007351 struct rpc_xprt *xprt;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007352 int rpc_status;
7353};
7354
7355static void nfs4_exchange_id_done(struct rpc_task *task, void *data)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007356{
Andy Adamson8d89bd72016-09-09 09:22:18 -04007357 struct nfs41_exchange_id_data *cdata =
7358 (struct nfs41_exchange_id_data *)data;
7359 struct nfs_client *clp = cdata->args.client;
7360 int status = task->tk_status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007361
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007362 trace_nfs4_exchange_id(clp, status);
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007363
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007364 if (status == 0)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007365 status = nfs4_check_cl_exchange_flags(cdata->res.flags);
Andy Adamsonad0849a2016-09-09 09:22:28 -04007366
7367 if (cdata->xprt && status == 0) {
7368 status = nfs4_detect_session_trunking(clp, &cdata->res,
7369 cdata->xprt);
7370 goto out;
7371 }
7372
Andy Adamson8d89bd72016-09-09 09:22:18 -04007373 if (status == 0)
7374 status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007375
Chuck Lever177313f2012-05-21 22:44:58 -04007376 if (status == 0) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007377 clp->cl_clientid = cdata->res.clientid;
7378 clp->cl_exchange_flags = cdata->res.flags;
Trond Myklebuste11259f2015-03-03 20:35:31 -05007379 /* Client ID is not confirmed */
Andy Adamson8d89bd72016-09-09 09:22:18 -04007380 if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R)) {
Trond Myklebuste11259f2015-03-03 20:35:31 -05007381 clear_bit(NFS4_SESSION_ESTABLISHED,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007382 &clp->cl_session->session_state);
7383 clp->cl_seqid = cdata->res.seqid;
Trond Myklebuste11259f2015-03-03 20:35:31 -05007384 }
Trond Myklebust32b01312012-05-26 13:41:04 -04007385
Chuck Leveracdeb692012-05-21 22:46:16 -04007386 kfree(clp->cl_serverowner);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007387 clp->cl_serverowner = cdata->res.server_owner;
7388 cdata->res.server_owner = NULL;
Chuck Leveracdeb692012-05-21 22:46:16 -04007389
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007390 /* use the most recent implementation id */
Chuck Lever59155542012-05-21 22:44:41 -04007391 kfree(clp->cl_implid);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007392 clp->cl_implid = cdata->res.impl_id;
7393 cdata->res.impl_id = NULL;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007394
Chuck Lever177313f2012-05-21 22:44:58 -04007395 if (clp->cl_serverscope != NULL &&
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007396 !nfs41_same_server_scope(clp->cl_serverscope,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007397 cdata->res.server_scope)) {
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007398 dprintk("%s: server_scope mismatch detected\n",
7399 __func__);
7400 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007401 kfree(clp->cl_serverscope);
7402 clp->cl_serverscope = NULL;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007403 }
7404
Chuck Lever177313f2012-05-21 22:44:58 -04007405 if (clp->cl_serverscope == NULL) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007406 clp->cl_serverscope = cdata->res.server_scope;
7407 cdata->res.server_scope = NULL;
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007408 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007409 /* Save the EXCHANGE_ID verifier session trunk tests */
7410 memcpy(clp->cl_confirm.data, cdata->args.verifier->data,
7411 sizeof(clp->cl_confirm.data));
Andy Adamson8d89bd72016-09-09 09:22:18 -04007412 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007413out:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007414 cdata->rpc_status = status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007415 return;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007416}
7417
7418static void nfs4_exchange_id_release(void *data)
7419{
7420 struct nfs41_exchange_id_data *cdata =
7421 (struct nfs41_exchange_id_data *)data;
7422
Andy Adamsonad0849a2016-09-09 09:22:28 -04007423 if (cdata->xprt) {
7424 xprt_put(cdata->xprt);
7425 rpc_clnt_xprt_switch_put(cdata->args.client->cl_rpcclient);
7426 }
Olga Kornievskaia63513232017-03-13 10:36:19 -04007427 nfs_put_client(cdata->args.client);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007428 kfree(cdata->res.impl_id);
7429 kfree(cdata->res.server_scope);
7430 kfree(cdata->res.server_owner);
7431 kfree(cdata);
7432}
7433
7434static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
7435 .rpc_call_done = nfs4_exchange_id_done,
7436 .rpc_release = nfs4_exchange_id_release,
7437};
7438
Benny Halevy99fe60d2009-04-01 09:22:29 -04007439/*
7440 * _nfs4_proc_exchange_id()
7441 *
7442 * Wrapper for EXCHANGE_ID operation.
7443 */
7444static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred,
Andy Adamsonad0849a2016-09-09 09:22:28 -04007445 u32 sp4_how, struct rpc_xprt *xprt)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007446{
7447 nfs4_verifier verifier;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007448 struct rpc_message msg = {
7449 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
Benny Halevy99fe60d2009-04-01 09:22:29 -04007450 .rpc_cred = cred,
7451 };
Andy Adamson8d89bd72016-09-09 09:22:18 -04007452 struct rpc_task_setup task_setup_data = {
7453 .rpc_client = clp->cl_rpcclient,
7454 .callback_ops = &nfs4_exchange_id_call_ops,
7455 .rpc_message = &msg,
7456 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
7457 };
7458 struct nfs41_exchange_id_data *calldata;
7459 struct rpc_task *task;
Anna Schumakere917f0d2017-04-07 14:15:22 -04007460 int status;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007461
7462 if (!atomic_inc_not_zero(&clp->cl_count))
Anna Schumakere917f0d2017-04-07 14:15:22 -04007463 return -EIO;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007464
Andy Adamson8d89bd72016-09-09 09:22:18 -04007465 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04007466 if (!calldata) {
7467 nfs_put_client(clp);
Anna Schumakere917f0d2017-04-07 14:15:22 -04007468 return -ENOMEM;
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04007469 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04007470
Andy Adamsonad0849a2016-09-09 09:22:28 -04007471 if (!xprt)
7472 nfs4_init_boot_verifier(clp, &verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007473
7474 status = nfs4_init_uniform_client_string(clp);
7475 if (status)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007476 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007477
Andy Adamson8d89bd72016-09-09 09:22:18 -04007478 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
7479 GFP_NOFS);
7480 status = -ENOMEM;
7481 if (unlikely(calldata->res.server_owner == NULL))
7482 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007483
Andy Adamson8d89bd72016-09-09 09:22:18 -04007484 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007485 GFP_NOFS);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007486 if (unlikely(calldata->res.server_scope == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007487 goto out_server_owner;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007488
Andy Adamson8d89bd72016-09-09 09:22:18 -04007489 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
7490 if (unlikely(calldata->res.impl_id == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007491 goto out_server_scope;
7492
7493 switch (sp4_how) {
7494 case SP4_NONE:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007495 calldata->args.state_protect.how = SP4_NONE;
Andy Adamson557134a2009-04-01 09:21:53 -04007496 break;
7497
7498 case SP4_MACH_CRED:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007499 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007500 break;
7501
7502 default:
7503 /* unsupported! */
7504 WARN_ON_ONCE(1);
7505 status = -EINVAL;
7506 goto out_impl_id;
7507 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007508 if (xprt) {
7509 calldata->xprt = xprt;
7510 task_setup_data.rpc_xprt = xprt;
7511 task_setup_data.flags =
7512 RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC;
7513 calldata->args.verifier = &clp->cl_confirm;
7514 } else {
7515 calldata->args.verifier = &verifier;
7516 }
Andy Adamson8d89bd72016-09-09 09:22:18 -04007517 calldata->args.client = clp;
7518#ifdef CONFIG_NFS_V4_1_MIGRATION
7519 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7520 EXCHGID4_FLAG_BIND_PRINC_STATEID |
7521 EXCHGID4_FLAG_SUPP_MOVED_MIGR,
7522#else
7523 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7524 EXCHGID4_FLAG_BIND_PRINC_STATEID,
7525#endif
7526 msg.rpc_argp = &calldata->args;
7527 msg.rpc_resp = &calldata->res;
7528 task_setup_data.callback_data = calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007529
Andy Adamson8d89bd72016-09-09 09:22:18 -04007530 task = rpc_run_task(&task_setup_data);
Olga Kornievskaia63513232017-03-13 10:36:19 -04007531 if (IS_ERR(task))
7532 return PTR_ERR(task);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007533
Andy Adamsonad0849a2016-09-09 09:22:28 -04007534 if (!xprt) {
7535 status = rpc_wait_for_completion_task(task);
7536 if (!status)
7537 status = calldata->rpc_status;
7538 } else /* session trunking test */
Andy Adamson8d89bd72016-09-09 09:22:18 -04007539 status = calldata->rpc_status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007540
Andy Adamson8d89bd72016-09-09 09:22:18 -04007541 rpc_put_task(task);
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007542out:
Benny Halevy99fe60d2009-04-01 09:22:29 -04007543 return status;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007544
7545out_impl_id:
7546 kfree(calldata->res.impl_id);
7547out_server_scope:
7548 kfree(calldata->res.server_scope);
7549out_server_owner:
7550 kfree(calldata->res.server_owner);
7551out_calldata:
7552 kfree(calldata);
Olga Kornievskaia63513232017-03-13 10:36:19 -04007553 nfs_put_client(clp);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007554 goto out;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007555}
7556
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007557/*
7558 * nfs4_proc_exchange_id()
7559 *
7560 * Returns zero, a negative errno, or a negative NFS4ERR status code.
7561 *
7562 * Since the clientid has expired, all compounds using sessions
7563 * associated with the stale clientid will be returning
7564 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
7565 * be in some phase of session reset.
7566 *
7567 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
7568 */
7569int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
7570{
7571 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
7572 int status;
7573
7574 /* try SP4_MACH_CRED if krb5i/p */
7575 if (authflavor == RPC_AUTH_GSS_KRB5I ||
7576 authflavor == RPC_AUTH_GSS_KRB5P) {
Andy Adamsonad0849a2016-09-09 09:22:28 -04007577 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007578 if (!status)
7579 return 0;
7580 }
7581
7582 /* try SP4_NONE */
Andy Adamsonad0849a2016-09-09 09:22:28 -04007583 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007584}
7585
Andy Adamson04fa2c62016-09-09 09:22:29 -04007586/**
7587 * nfs4_test_session_trunk
7588 *
7589 * This is an add_xprt_test() test function called from
7590 * rpc_clnt_setup_test_and_add_xprt.
7591 *
7592 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
7593 * and is dereferrenced in nfs4_exchange_id_release
7594 *
7595 * Upon success, add the new transport to the rpc_clnt
7596 *
7597 * @clnt: struct rpc_clnt to get new transport
7598 * @xprt: the rpc_xprt to test
7599 * @data: call data for _nfs4_proc_exchange_id.
7600 */
7601int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
7602 void *data)
7603{
7604 struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data;
7605 u32 sp4_how;
7606
7607 dprintk("--> %s try %s\n", __func__,
7608 xprt->address_strings[RPC_DISPLAY_ADDR]);
7609
7610 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
7611
7612 /* Test connection for session trunking. Async exchange_id call */
7613 return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
7614}
7615EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
7616
Trond Myklebust66245532012-05-25 17:18:09 -04007617static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
7618 struct rpc_cred *cred)
7619{
7620 struct rpc_message msg = {
7621 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
7622 .rpc_argp = clp,
7623 .rpc_cred = cred,
7624 };
7625 int status;
7626
7627 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007628 trace_nfs4_destroy_clientid(clp, status);
Trond Myklebust66245532012-05-25 17:18:09 -04007629 if (status)
Trond Myklebust02c67522012-06-07 13:45:53 -04007630 dprintk("NFS: Got error %d from the server %s on "
Trond Myklebust66245532012-05-25 17:18:09 -04007631 "DESTROY_CLIENTID.", status, clp->cl_hostname);
7632 return status;
7633}
7634
7635static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
7636 struct rpc_cred *cred)
7637{
7638 unsigned int loop;
7639 int ret;
7640
7641 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
7642 ret = _nfs4_proc_destroy_clientid(clp, cred);
7643 switch (ret) {
7644 case -NFS4ERR_DELAY:
7645 case -NFS4ERR_CLIENTID_BUSY:
7646 ssleep(1);
7647 break;
7648 default:
7649 return ret;
7650 }
7651 }
7652 return 0;
7653}
7654
7655int nfs4_destroy_clientid(struct nfs_client *clp)
7656{
7657 struct rpc_cred *cred;
7658 int ret = 0;
7659
7660 if (clp->cl_mvops->minor_version < 1)
7661 goto out;
7662 if (clp->cl_exchange_flags == 0)
7663 goto out;
Chuck Lever05f4c352012-09-14 17:24:32 -04007664 if (clp->cl_preserve_clid)
7665 goto out;
Chuck Lever73d8bde2013-07-24 12:28:37 -04007666 cred = nfs4_get_clid_cred(clp);
Trond Myklebust66245532012-05-25 17:18:09 -04007667 ret = nfs4_proc_destroy_clientid(clp, cred);
7668 if (cred)
7669 put_rpccred(cred);
7670 switch (ret) {
7671 case 0:
7672 case -NFS4ERR_STALE_CLIENTID:
7673 clp->cl_exchange_flags = 0;
7674 }
7675out:
7676 return ret;
7677}
7678
Andy Adamson2050f0c2009-04-01 09:22:30 -04007679struct nfs4_get_lease_time_data {
7680 struct nfs4_get_lease_time_args *args;
7681 struct nfs4_get_lease_time_res *res;
7682 struct nfs_client *clp;
7683};
7684
7685static void nfs4_get_lease_time_prepare(struct rpc_task *task,
7686 void *calldata)
7687{
Andy Adamson2050f0c2009-04-01 09:22:30 -04007688 struct nfs4_get_lease_time_data *data =
7689 (struct nfs4_get_lease_time_data *)calldata;
7690
7691 dprintk("--> %s\n", __func__);
7692 /* just setup sequence, do not trigger session recovery
7693 since we're invoked within one */
Anna Schumaker7981c8a2017-01-10 11:39:53 -05007694 nfs4_setup_sequence(data->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04007695 &data->args->la_seq_args,
7696 &data->res->lr_seq_res,
7697 task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007698 dprintk("<-- %s\n", __func__);
7699}
7700
7701/*
7702 * Called from nfs4_state_manager thread for session setup, so don't recover
7703 * from sequence operation or clientid errors.
7704 */
7705static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
7706{
7707 struct nfs4_get_lease_time_data *data =
7708 (struct nfs4_get_lease_time_data *)calldata;
7709
7710 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04007711 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
7712 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04007713 switch (task->tk_status) {
7714 case -NFS4ERR_DELAY:
7715 case -NFS4ERR_GRACE:
7716 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
7717 rpc_delay(task, NFS4_POLL_RETRY_MIN);
7718 task->tk_status = 0;
Andy Adamsona8a4ae32011-05-03 13:43:03 -04007719 /* fall through */
7720 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustd00c5d42011-10-19 12:17:29 -07007721 rpc_restart_call_prepare(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007722 return;
7723 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04007724 dprintk("<-- %s\n", __func__);
7725}
7726
Trond Myklebust17280172012-03-11 13:11:00 -04007727static const struct rpc_call_ops nfs4_get_lease_time_ops = {
Andy Adamson2050f0c2009-04-01 09:22:30 -04007728 .rpc_call_prepare = nfs4_get_lease_time_prepare,
7729 .rpc_call_done = nfs4_get_lease_time_done,
7730};
7731
7732int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
7733{
7734 struct rpc_task *task;
7735 struct nfs4_get_lease_time_args args;
7736 struct nfs4_get_lease_time_res res = {
7737 .lr_fsinfo = fsinfo,
7738 };
7739 struct nfs4_get_lease_time_data data = {
7740 .args = &args,
7741 .res = &res,
7742 .clp = clp,
7743 };
7744 struct rpc_message msg = {
7745 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
7746 .rpc_argp = &args,
7747 .rpc_resp = &res,
7748 };
7749 struct rpc_task_setup task_setup = {
7750 .rpc_client = clp->cl_rpcclient,
7751 .rpc_message = &msg,
7752 .callback_ops = &nfs4_get_lease_time_ops,
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007753 .callback_data = &data,
7754 .flags = RPC_TASK_TIMEOUT,
Andy Adamson2050f0c2009-04-01 09:22:30 -04007755 };
7756 int status;
7757
Chuck Levera9c92d62013-08-09 12:48:18 -04007758 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04007759 nfs4_set_sequence_privileged(&args.la_seq_args);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007760 task = rpc_run_task(&task_setup);
7761
7762 if (IS_ERR(task))
Anna Schumakerf6148712017-04-07 14:15:23 -04007763 return PTR_ERR(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007764
Anna Schumakerf6148712017-04-07 14:15:23 -04007765 status = task->tk_status;
7766 rpc_put_task(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007767 return status;
7768}
7769
Andy Adamsonfc931582009-04-01 09:22:31 -04007770/*
7771 * Initialize the values to be used by the client in CREATE_SESSION
7772 * If nfs4_init_session set the fore channel request and response sizes,
7773 * use them.
7774 *
7775 * Set the back channel max_resp_sz_cached to zero to force the client to
7776 * always set csa_cachethis to FALSE because the current implementation
7777 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
7778 */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007779static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
7780 struct rpc_clnt *clnt)
Andy Adamsonfc931582009-04-01 09:22:31 -04007781{
Andy Adamson18aad3d2013-06-26 12:21:49 -04007782 unsigned int max_rqst_sz, max_resp_sz;
Chuck Lever6b26cc82016-05-02 14:40:40 -04007783 unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
Andy Adamsonfc931582009-04-01 09:22:31 -04007784
Andy Adamson18aad3d2013-06-26 12:21:49 -04007785 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
7786 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
7787
Andy Adamsonfc931582009-04-01 09:22:31 -04007788 /* Fore channel attributes */
Andy Adamson18aad3d2013-06-26 12:21:49 -04007789 args->fc_attrs.max_rqst_sz = max_rqst_sz;
7790 args->fc_attrs.max_resp_sz = max_resp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04007791 args->fc_attrs.max_ops = NFS4_MAX_OPS;
Trond Myklebustef159e92012-02-06 19:50:40 -05007792 args->fc_attrs.max_reqs = max_session_slots;
Andy Adamsonfc931582009-04-01 09:22:31 -04007793
7794 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05007795 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04007796 __func__,
7797 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05007798 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04007799
7800 /* Back channel attributes */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007801 args->bc_attrs.max_rqst_sz = max_bc_payload;
7802 args->bc_attrs.max_resp_sz = max_bc_payload;
Andy Adamsonfc931582009-04-01 09:22:31 -04007803 args->bc_attrs.max_resp_sz_cached = 0;
7804 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007805 args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1);
Andy Adamsonfc931582009-04-01 09:22:31 -04007806
7807 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
7808 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
7809 __func__,
7810 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
7811 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
7812 args->bc_attrs.max_reqs);
7813}
7814
Trond Myklebust79969dd2015-02-18 11:30:18 -08007815static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
7816 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007817{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007818 struct nfs4_channel_attrs *sent = &args->fc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007819 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007820
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007821 if (rcvd->max_resp_sz > sent->max_resp_sz)
7822 return -EINVAL;
7823 /*
7824 * Our requested max_ops is the minimum we need; we're not
7825 * prepared to break up compounds into smaller pieces than that.
7826 * So, no point even trying to continue if the server won't
7827 * cooperate:
7828 */
7829 if (rcvd->max_ops < sent->max_ops)
7830 return -EINVAL;
7831 if (rcvd->max_reqs == 0)
7832 return -EINVAL;
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04007833 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
7834 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007835 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04007836}
7837
Trond Myklebust79969dd2015-02-18 11:30:18 -08007838static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
7839 struct nfs41_create_session_res *res)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007840{
7841 struct nfs4_channel_attrs *sent = &args->bc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007842 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04007843
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007844 if (!(res->flags & SESSION4_BACK_CHAN))
7845 goto out;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007846 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
7847 return -EINVAL;
7848 if (rcvd->max_resp_sz < sent->max_resp_sz)
7849 return -EINVAL;
7850 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
7851 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007852 if (rcvd->max_ops > sent->max_ops)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007853 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007854 if (rcvd->max_reqs > sent->max_reqs)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007855 return -EINVAL;
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007856out:
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007857 return 0;
7858}
Andy Adamson8d353012009-04-01 09:22:32 -04007859
Andy Adamson8d353012009-04-01 09:22:32 -04007860static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007861 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007862{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007863 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04007864
Trond Myklebust79969dd2015-02-18 11:30:18 -08007865 ret = nfs4_verify_fore_channel_attrs(args, res);
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007866 if (ret)
7867 return ret;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007868 return nfs4_verify_back_channel_attrs(args, res);
7869}
7870
7871static void nfs4_update_session(struct nfs4_session *session,
7872 struct nfs41_create_session_res *res)
7873{
7874 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
Trond Myklebuste11259f2015-03-03 20:35:31 -05007875 /* Mark client id and session as being confirmed */
7876 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
7877 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
Trond Myklebust79969dd2015-02-18 11:30:18 -08007878 session->flags = res->flags;
7879 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007880 if (res->flags & SESSION4_BACK_CHAN)
7881 memcpy(&session->bc_attrs, &res->bc_attrs,
7882 sizeof(session->bc_attrs));
Andy Adamson8d353012009-04-01 09:22:32 -04007883}
7884
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007885static int _nfs4_proc_create_session(struct nfs_client *clp,
7886 struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007887{
7888 struct nfs4_session *session = clp->cl_session;
7889 struct nfs41_create_session_args args = {
7890 .client = clp,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007891 .clientid = clp->cl_clientid,
7892 .seqid = clp->cl_seqid,
Andy Adamsonfc931582009-04-01 09:22:31 -04007893 .cb_program = NFS4_CALLBACK,
7894 };
Trond Myklebust79969dd2015-02-18 11:30:18 -08007895 struct nfs41_create_session_res res;
7896
Andy Adamsonfc931582009-04-01 09:22:31 -04007897 struct rpc_message msg = {
7898 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
7899 .rpc_argp = &args,
7900 .rpc_resp = &res,
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007901 .rpc_cred = cred,
Andy Adamsonfc931582009-04-01 09:22:31 -04007902 };
7903 int status;
7904
Chuck Lever6b26cc82016-05-02 14:40:40 -04007905 nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
Andy Adamson0f914212009-04-01 09:23:16 -04007906 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04007907
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007908 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007909 trace_nfs4_create_session(clp, status);
Andy Adamsonfc931582009-04-01 09:22:31 -04007910
Trond Myklebustb519d402016-09-11 14:50:01 -04007911 switch (status) {
7912 case -NFS4ERR_STALE_CLIENTID:
7913 case -NFS4ERR_DELAY:
7914 case -ETIMEDOUT:
7915 case -EACCES:
7916 case -EAGAIN:
7917 goto out;
7918 };
7919
7920 clp->cl_seqid++;
Trond Myklebust43095d32012-11-20 11:13:12 -05007921 if (!status) {
Andy Adamson8d353012009-04-01 09:22:32 -04007922 /* Verify the session's negotiated channel_attrs values */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007923 status = nfs4_verify_channel_attrs(&args, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007924 /* Increment the clientid slot sequence id */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007925 if (status)
7926 goto out;
7927 nfs4_update_session(session, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007928 }
Trond Myklebust79969dd2015-02-18 11:30:18 -08007929out:
Andy Adamsonfc931582009-04-01 09:22:31 -04007930 return status;
7931}
7932
7933/*
7934 * Issues a CREATE_SESSION operation to the server.
7935 * It is the responsibility of the caller to verify the session is
7936 * expired before calling this routine.
7937 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007938int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007939{
7940 int status;
7941 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04007942 struct nfs4_session *session = clp->cl_session;
7943
7944 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
7945
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007946 status = _nfs4_proc_create_session(clp, cred);
Andy Adamsonfc931582009-04-01 09:22:31 -04007947 if (status)
7948 goto out;
7949
Andy Adamsonaacd5532011-11-09 13:58:21 -05007950 /* Init or reset the session slot tables */
7951 status = nfs4_setup_session_slot_tables(session);
7952 dprintk("slot table setup returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04007953 if (status)
7954 goto out;
7955
7956 ptr = (unsigned *)&session->sess_id.data[0];
7957 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
7958 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04007959out:
7960 dprintk("<-- %s\n", __func__);
7961 return status;
7962}
7963
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007964/*
7965 * Issue the over-the-wire RPC DESTROY_SESSION.
7966 * The caller must serialize access to this routine.
7967 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007968int nfs4_proc_destroy_session(struct nfs4_session *session,
7969 struct rpc_cred *cred)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007970{
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007971 struct rpc_message msg = {
7972 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
7973 .rpc_argp = session,
7974 .rpc_cred = cred,
7975 };
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007976 int status = 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007977
7978 dprintk("--> nfs4_proc_destroy_session\n");
7979
7980 /* session is still being setup */
Trond Myklebuste11259f2015-03-03 20:35:31 -05007981 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
7982 return 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007983
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007984 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007985 trace_nfs4_destroy_session(session->clp, status);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007986
7987 if (status)
Trond Myklebust08106ac2012-06-05 10:08:24 -04007988 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007989 "Session has been destroyed regardless...\n", status);
7990
7991 dprintk("<-- nfs4_proc_destroy_session\n");
7992 return status;
7993}
7994
Trond Myklebust7b38c362012-05-23 13:23:31 -04007995/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04007996 * Renew the cl_session lease.
7997 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04007998struct nfs4_sequence_data {
7999 struct nfs_client *clp;
8000 struct nfs4_sequence_args args;
8001 struct nfs4_sequence_res res;
8002};
8003
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008004static void nfs41_sequence_release(void *data)
8005{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008006 struct nfs4_sequence_data *calldata = data;
8007 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008008
Alexandros Batsakis71358402010-02-05 03:45:05 -08008009 if (atomic_read(&clp->cl_count) > 1)
8010 nfs4_schedule_state_renewal(clp);
8011 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008012 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008013}
8014
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008015static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8016{
8017 switch(task->tk_status) {
8018 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008019 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8020 return -EAGAIN;
8021 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008022 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008023 }
8024 return 0;
8025}
8026
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008027static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008028{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008029 struct nfs4_sequence_data *calldata = data;
8030 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008031
Trond Myklebust14516c32010-07-31 14:29:06 -04008032 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
8033 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008034
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008035 trace_nfs4_sequence(clp, task->tk_status);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008036 if (task->tk_status < 0) {
8037 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008038 if (atomic_read(&clp->cl_count) == 1)
8039 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008040
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008041 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
8042 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008043 return;
8044 }
8045 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008046 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008047out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008048 dprintk("<-- %s\n", __func__);
8049}
8050
8051static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
8052{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008053 struct nfs4_sequence_data *calldata = data;
8054 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008055 struct nfs4_sequence_args *args;
8056 struct nfs4_sequence_res *res;
8057
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008058 args = task->tk_msg.rpc_argp;
8059 res = task->tk_msg.rpc_resp;
8060
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008061 nfs4_setup_sequence(clp, args, res, task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008062}
8063
8064static const struct rpc_call_ops nfs41_sequence_ops = {
8065 .rpc_call_done = nfs41_sequence_call_done,
8066 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008067 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008068};
8069
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008070static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
8071 struct rpc_cred *cred,
8072 bool is_privileged)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008073{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008074 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008075 struct rpc_message msg = {
8076 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
8077 .rpc_cred = cred,
8078 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008079 struct rpc_task_setup task_setup_data = {
8080 .rpc_client = clp->cl_rpcclient,
8081 .rpc_message = &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008082 .callback_ops = &nfs41_sequence_ops,
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04008083 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008084 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008085
Alexandros Batsakis71358402010-02-05 03:45:05 -08008086 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008087 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04008088 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008089 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08008090 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008091 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008092 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008093 nfs4_init_sequence(&calldata->args, &calldata->res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008094 if (is_privileged)
8095 nfs4_set_sequence_privileged(&calldata->args);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008096 msg.rpc_argp = &calldata->args;
8097 msg.rpc_resp = &calldata->res;
8098 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008099 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008100
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008101 return rpc_run_task(&task_setup_data);
8102}
8103
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008104static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008105{
8106 struct rpc_task *task;
8107 int ret = 0;
8108
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008109 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
Andy Adamsond1f456b2014-09-29 12:31:57 -04008110 return -EAGAIN;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008111 task = _nfs41_proc_sequence(clp, cred, false);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008112 if (IS_ERR(task))
8113 ret = PTR_ERR(task);
8114 else
Trond Myklebustbf294b42011-02-21 11:05:41 -08008115 rpc_put_task_async(task);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008116 dprintk("<-- %s status=%d\n", __func__, ret);
8117 return ret;
8118}
8119
8120static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
8121{
8122 struct rpc_task *task;
8123 int ret;
8124
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008125 task = _nfs41_proc_sequence(clp, cred, true);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008126 if (IS_ERR(task)) {
8127 ret = PTR_ERR(task);
8128 goto out;
8129 }
8130 ret = rpc_wait_for_completion_task(task);
Trond Myklebustbe824162015-07-05 14:50:46 -04008131 if (!ret)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008132 ret = task->tk_status;
8133 rpc_put_task(task);
8134out:
8135 dprintk("<-- %s status=%d\n", __func__, ret);
8136 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008137}
8138
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008139struct nfs4_reclaim_complete_data {
8140 struct nfs_client *clp;
8141 struct nfs41_reclaim_complete_args arg;
8142 struct nfs41_reclaim_complete_res res;
8143};
8144
8145static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
8146{
8147 struct nfs4_reclaim_complete_data *calldata = data;
8148
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008149 nfs4_setup_sequence(calldata->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008150 &calldata->arg.seq_args,
8151 &calldata->res.seq_res,
8152 task);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008153}
8154
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008155static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8156{
8157 switch(task->tk_status) {
8158 case 0:
8159 case -NFS4ERR_COMPLETE_ALREADY:
8160 case -NFS4ERR_WRONG_CRED: /* What to do here? */
8161 break;
8162 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008163 rpc_delay(task, NFS4_POLL_RETRY_MAX);
Andy Adamsona8a4ae32011-05-03 13:43:03 -04008164 /* fall through */
8165 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008166 return -EAGAIN;
Trond Myklebust0048fdd2017-05-04 13:44:04 -04008167 case -NFS4ERR_BADSESSION:
8168 case -NFS4ERR_DEADSESSION:
8169 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8170 nfs4_schedule_session_recovery(clp->cl_session,
8171 task->tk_status);
8172 break;
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008173 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008174 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008175 }
8176 return 0;
8177}
8178
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008179static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
8180{
8181 struct nfs4_reclaim_complete_data *calldata = data;
8182 struct nfs_client *clp = calldata->clp;
8183 struct nfs4_sequence_res *res = &calldata->res.seq_res;
8184
8185 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04008186 if (!nfs41_sequence_done(task, res))
8187 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008188
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008189 trace_nfs4_reclaim_complete(clp, task->tk_status);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008190 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
8191 rpc_restart_call_prepare(task);
8192 return;
8193 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008194 dprintk("<-- %s\n", __func__);
8195}
8196
8197static void nfs4_free_reclaim_complete_data(void *data)
8198{
8199 struct nfs4_reclaim_complete_data *calldata = data;
8200
8201 kfree(calldata);
8202}
8203
8204static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
8205 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
8206 .rpc_call_done = nfs4_reclaim_complete_done,
8207 .rpc_release = nfs4_free_reclaim_complete_data,
8208};
8209
8210/*
8211 * Issue a global reclaim complete.
8212 */
Trond Myklebust965e9c22013-05-20 11:05:17 -04008213static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
8214 struct rpc_cred *cred)
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008215{
8216 struct nfs4_reclaim_complete_data *calldata;
8217 struct rpc_task *task;
8218 struct rpc_message msg = {
8219 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
Trond Myklebust965e9c22013-05-20 11:05:17 -04008220 .rpc_cred = cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008221 };
8222 struct rpc_task_setup task_setup_data = {
8223 .rpc_client = clp->cl_rpcclient,
8224 .rpc_message = &msg,
8225 .callback_ops = &nfs4_reclaim_complete_call_ops,
8226 .flags = RPC_TASK_ASYNC,
8227 };
8228 int status = -ENOMEM;
8229
8230 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04008231 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008232 if (calldata == NULL)
8233 goto out;
8234 calldata->clp = clp;
8235 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008236
Chuck Levera9c92d62013-08-09 12:48:18 -04008237 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008238 nfs4_set_sequence_privileged(&calldata->arg.seq_args);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008239 msg.rpc_argp = &calldata->arg;
8240 msg.rpc_resp = &calldata->res;
8241 task_setup_data.callback_data = calldata;
8242 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008243 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008244 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008245 goto out;
8246 }
Anna Schumaker820bf852017-01-11 15:01:43 -05008247 status = rpc_wait_for_completion_task(task);
Andy Adamsonc34c32e2011-03-09 13:13:46 -05008248 if (status == 0)
8249 status = task->tk_status;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008250 rpc_put_task(task);
8251out:
8252 dprintk("<-- %s status=%d\n", __func__, status);
8253 return status;
8254}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008255
8256static void
8257nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
8258{
8259 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00008260 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008261
8262 dprintk("--> %s\n", __func__);
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008263 nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args,
Jeff Layton183d9e72016-05-17 12:28:47 -04008264 &lgp->res.seq_res, task);
8265 dprintk("<-- %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008266}
8267
8268static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
8269{
8270 struct nfs4_layoutget *lgp = calldata;
Jeff Layton183d9e72016-05-17 12:28:47 -04008271
8272 dprintk("--> %s\n", __func__);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008273 nfs41_sequence_process(task, &lgp->res.seq_res);
Jeff Layton183d9e72016-05-17 12:28:47 -04008274 dprintk("<-- %s\n", __func__);
8275}
8276
8277static int
8278nfs4_layoutget_handle_exception(struct rpc_task *task,
8279 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
8280{
Trond Myklebustee314c22012-10-01 17:25:48 -07008281 struct inode *inode = lgp->args.inode;
8282 struct nfs_server *server = NFS_SERVER(inode);
8283 struct pnfs_layout_hdr *lo;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008284 int nfs4err = task->tk_status;
8285 int err, status = 0;
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008286 LIST_HEAD(head);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008287
Boaz Harroshed7e5422014-01-22 20:34:54 +02008288 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008289
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008290 switch (nfs4err) {
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008291 case 0:
Trond Myklebustee314c22012-10-01 17:25:48 -07008292 goto out;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008293
8294 /*
8295 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
8296 * on the file. set tk_status to -ENODATA to tell upper layer to
8297 * retry go inband.
8298 */
8299 case -NFS4ERR_LAYOUTUNAVAILABLE:
Jeff Layton183d9e72016-05-17 12:28:47 -04008300 status = -ENODATA;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008301 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008302 /*
Trond Myklebust21b874c2015-08-31 01:19:22 -07008303 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
8304 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
8305 */
8306 case -NFS4ERR_BADLAYOUT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008307 status = -EOVERFLOW;
8308 goto out;
Trond Myklebust21b874c2015-08-31 01:19:22 -07008309 /*
Boaz Harroshed7e5422014-01-22 20:34:54 +02008310 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
Trond Myklebust21b874c2015-08-31 01:19:22 -07008311 * (or clients) writing to the same RAID stripe except when
8312 * the minlength argument is 0 (see RFC5661 section 18.43.3).
Jeff Layton183d9e72016-05-17 12:28:47 -04008313 *
8314 * Treat it like we would RECALLCONFLICT -- we retry for a little
8315 * while, and then eventually give up.
Boaz Harroshed7e5422014-01-22 20:34:54 +02008316 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008317 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -04008318 if (lgp->args.minlength == 0) {
8319 status = -EOVERFLOW;
8320 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008321 }
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008322 status = -EBUSY;
8323 break;
Jeff Layton183d9e72016-05-17 12:28:47 -04008324 case -NFS4ERR_RECALLCONFLICT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008325 status = -ERECALLCONFLICT;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008326 break;
Trond Myklebust26f47442016-09-22 13:39:10 -04008327 case -NFS4ERR_DELEG_REVOKED:
8328 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustee314c22012-10-01 17:25:48 -07008329 case -NFS4ERR_EXPIRED:
8330 case -NFS4ERR_BAD_STATEID:
Jeff Layton183d9e72016-05-17 12:28:47 -04008331 exception->timeout = 0;
Trond Myklebustee314c22012-10-01 17:25:48 -07008332 spin_lock(&inode->i_lock);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008333 lo = NFS_I(inode)->layout;
8334 /* If the open stateid was bad, then recover it. */
8335 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
8336 nfs4_stateid_match_other(&lgp->args.stateid,
Trond Myklebust2259f962015-09-20 13:30:30 -04008337 &lgp->args.ctx->state->stateid)) {
Trond Myklebustee314c22012-10-01 17:25:48 -07008338 spin_unlock(&inode->i_lock);
Jeff Layton183d9e72016-05-17 12:28:47 -04008339 exception->state = lgp->args.ctx->state;
Trond Myklebust26f47442016-09-22 13:39:10 -04008340 exception->stateid = &lgp->args.stateid;
Trond Myklebust2259f962015-09-20 13:30:30 -04008341 break;
8342 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008343
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008344 /*
8345 * Mark the bad layout state as invalid, then retry
8346 */
Trond Myklebust668f4552016-07-24 17:08:59 -04008347 pnfs_mark_layout_stateid_invalid(lo, &head);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008348 spin_unlock(&inode->i_lock);
Trond Myklebust1f18b822017-04-29 10:10:17 -04008349 nfs_commit_inode(inode, 0);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008350 pnfs_free_lseg_list(&head);
8351 status = -EAGAIN;
8352 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008353 }
Jeff Layton183d9e72016-05-17 12:28:47 -04008354
Trond Myklebust8ac09252017-01-23 22:44:12 -05008355 nfs4_sequence_free_slot(&lgp->res.seq_res);
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008356 err = nfs4_handle_exception(server, nfs4err, exception);
8357 if (!status) {
8358 if (exception->retry)
8359 status = -EAGAIN;
8360 else
8361 status = err;
8362 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008363out:
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008364 dprintk("<-- %s\n", __func__);
Jeff Layton183d9e72016-05-17 12:28:47 -04008365 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008366}
8367
Idan Kedar85541162012-08-02 11:47:10 +03008368static size_t max_response_pages(struct nfs_server *server)
8369{
8370 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
8371 return nfs_page_array_len(0, max_resp_sz);
8372}
8373
8374static void nfs4_free_pages(struct page **pages, size_t size)
8375{
8376 int i;
8377
8378 if (!pages)
8379 return;
8380
8381 for (i = 0; i < size; i++) {
8382 if (!pages[i])
8383 break;
8384 __free_page(pages[i]);
8385 }
8386 kfree(pages);
8387}
8388
8389static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags)
8390{
8391 struct page **pages;
8392 int i;
8393
8394 pages = kcalloc(size, sizeof(struct page *), gfp_flags);
8395 if (!pages) {
8396 dprintk("%s: can't alloc array of %zu pages\n", __func__, size);
8397 return NULL;
8398 }
8399
8400 for (i = 0; i < size; i++) {
8401 pages[i] = alloc_page(gfp_flags);
8402 if (!pages[i]) {
8403 dprintk("%s: failed to allocate page\n", __func__);
8404 nfs4_free_pages(pages, size);
8405 return NULL;
8406 }
8407 }
8408
8409 return pages;
8410}
8411
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008412static void nfs4_layoutget_release(void *calldata)
8413{
8414 struct nfs4_layoutget *lgp = calldata;
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008415 struct inode *inode = lgp->args.inode;
8416 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008417 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008418
8419 dprintk("--> %s\n", __func__);
Trond Myklebustbd171932017-06-27 17:33:38 -04008420 nfs4_sequence_free_slot(&lgp->res.seq_res);
Idan Kedar85541162012-08-02 11:47:10 +03008421 nfs4_free_pages(lgp->args.layout.pages, max_pages);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008422 pnfs_put_layout_hdr(NFS_I(inode)->layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008423 put_nfs_open_context(lgp->args.ctx);
8424 kfree(calldata);
8425 dprintk("<-- %s\n", __func__);
8426}
8427
8428static const struct rpc_call_ops nfs4_layoutget_call_ops = {
8429 .rpc_call_prepare = nfs4_layoutget_prepare,
8430 .rpc_call_done = nfs4_layoutget_done,
8431 .rpc_release = nfs4_layoutget_release,
8432};
8433
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008434struct pnfs_layout_segment *
Jeff Layton183d9e72016-05-17 12:28:47 -04008435nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008436{
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008437 struct inode *inode = lgp->args.inode;
8438 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008439 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008440 struct rpc_task *task;
8441 struct rpc_message msg = {
8442 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
8443 .rpc_argp = &lgp->args,
8444 .rpc_resp = &lgp->res,
Trond Myklebust6ab59342013-05-20 10:49:34 -04008445 .rpc_cred = lgp->cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008446 };
8447 struct rpc_task_setup task_setup_data = {
8448 .rpc_client = server->client,
8449 .rpc_message = &msg,
8450 .callback_ops = &nfs4_layoutget_call_ops,
8451 .callback_data = lgp,
8452 .flags = RPC_TASK_ASYNC,
8453 };
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008454 struct pnfs_layout_segment *lseg = NULL;
Trond Myklebustbc236762016-06-17 16:48:18 -04008455 struct nfs4_exception exception = {
8456 .inode = inode,
8457 .timeout = *timeout,
8458 };
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008459 int status = 0;
8460
8461 dprintk("--> %s\n", __func__);
8462
Peng Tao4bd5a9802014-11-17 11:05:17 +08008463 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
8464 pnfs_get_layout_hdr(NFS_I(inode)->layout);
8465
Idan Kedar85541162012-08-02 11:47:10 +03008466 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags);
8467 if (!lgp->args.layout.pages) {
8468 nfs4_layoutget_release(lgp);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008469 return ERR_PTR(-ENOMEM);
Idan Kedar85541162012-08-02 11:47:10 +03008470 }
8471 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
8472
Weston Andros Adamson35124a02011-03-24 16:48:21 -04008473 lgp->res.layoutp = &lgp->args.layout;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008474 lgp->res.seq_res.sr_slot = NULL;
Chuck Levera9c92d62013-08-09 12:48:18 -04008475 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008476
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008477 task = rpc_run_task(&task_setup_data);
8478 if (IS_ERR(task))
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008479 return ERR_CAST(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05008480 status = rpc_wait_for_completion_task(task);
Jeff Layton183d9e72016-05-17 12:28:47 -04008481 if (status == 0) {
8482 status = nfs4_layoutget_handle_exception(task, lgp, &exception);
8483 *timeout = exception.timeout;
8484 }
8485
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008486 trace_nfs4_layoutget(lgp->args.ctx,
8487 &lgp->args.range,
8488 &lgp->res.range,
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008489 &lgp->res.stateid,
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008490 status);
Jeff Layton183d9e72016-05-17 12:28:47 -04008491
Weston Andros Adamson085b7a42013-02-15 16:03:46 -05008492 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */
8493 if (status == 0 && lgp->res.layoutp->len)
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008494 lseg = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008495 rpc_put_task(task);
8496 dprintk("<-- %s status=%d\n", __func__, status);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008497 if (status)
8498 return ERR_PTR(status);
8499 return lseg;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008500}
8501
Benny Halevycbe82602011-05-22 19:52:37 +03008502static void
8503nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
8504{
8505 struct nfs4_layoutreturn *lrp = calldata;
8506
8507 dprintk("--> %s\n", __func__);
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008508 nfs4_setup_sequence(lrp->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008509 &lrp->args.seq_args,
8510 &lrp->res.seq_res,
8511 task);
Benny Halevycbe82602011-05-22 19:52:37 +03008512}
8513
8514static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
8515{
8516 struct nfs4_layoutreturn *lrp = calldata;
8517 struct nfs_server *server;
8518
8519 dprintk("--> %s\n", __func__);
8520
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008521 if (!nfs41_sequence_process(task, &lrp->res.seq_res))
Benny Halevycbe82602011-05-22 19:52:37 +03008522 return;
8523
8524 server = NFS_SERVER(lrp->args.inode);
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008525 switch (task->tk_status) {
8526 default:
8527 task->tk_status = 0;
8528 case 0:
8529 break;
8530 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10008531 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008532 break;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008533 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebustd00c5d42011-10-19 12:17:29 -07008534 rpc_restart_call_prepare(task);
Benny Halevycbe82602011-05-22 19:52:37 +03008535 return;
8536 }
Benny Halevycbe82602011-05-22 19:52:37 +03008537 dprintk("<-- %s\n", __func__);
8538}
8539
8540static void nfs4_layoutreturn_release(void *calldata)
8541{
8542 struct nfs4_layoutreturn *lrp = calldata;
Trond Myklebust849b2862012-09-24 14:18:39 -04008543 struct pnfs_layout_hdr *lo = lrp->args.layout;
Benny Halevycbe82602011-05-22 19:52:37 +03008544
8545 dprintk("--> %s\n", __func__);
Trond Myklebust2a974422016-11-20 13:13:54 -05008546 pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range,
Trond Myklebust68f74472016-10-12 19:50:54 -04008547 lrp->res.lrs_present ? &lrp->res.stateid : NULL);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008548 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebust4d796d72016-09-23 11:38:08 -04008549 if (lrp->ld_private.ops && lrp->ld_private.ops->free)
8550 lrp->ld_private.ops->free(&lrp->ld_private);
Trond Myklebust2f065dd2016-12-07 12:29:26 -05008551 pnfs_put_layout_hdr(lrp->args.layout);
8552 nfs_iput_and_deactive(lrp->inode);
Benny Halevycbe82602011-05-22 19:52:37 +03008553 kfree(calldata);
8554 dprintk("<-- %s\n", __func__);
8555}
8556
8557static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
8558 .rpc_call_prepare = nfs4_layoutreturn_prepare,
8559 .rpc_call_done = nfs4_layoutreturn_done,
8560 .rpc_release = nfs4_layoutreturn_release,
8561};
8562
Peng Tao6c166052014-11-17 09:30:40 +08008563int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
Benny Halevycbe82602011-05-22 19:52:37 +03008564{
8565 struct rpc_task *task;
8566 struct rpc_message msg = {
8567 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
8568 .rpc_argp = &lrp->args,
8569 .rpc_resp = &lrp->res,
Trond Myklebust95560002013-05-20 10:43:47 -04008570 .rpc_cred = lrp->cred,
Benny Halevycbe82602011-05-22 19:52:37 +03008571 };
8572 struct rpc_task_setup task_setup_data = {
Andy Adamson1771c572013-07-22 12:42:05 -04008573 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
Benny Halevycbe82602011-05-22 19:52:37 +03008574 .rpc_message = &msg,
8575 .callback_ops = &nfs4_layoutreturn_call_ops,
8576 .callback_data = lrp,
8577 };
Peng Tao6c166052014-11-17 09:30:40 +08008578 int status = 0;
Benny Halevycbe82602011-05-22 19:52:37 +03008579
Andrew Elble99ade3c2015-12-02 09:39:51 -05008580 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
8581 NFS_SP4_MACH_CRED_PNFS_CLEANUP,
8582 &task_setup_data.rpc_client, &msg);
8583
Benny Halevycbe82602011-05-22 19:52:37 +03008584 dprintk("--> %s\n", __func__);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008585 if (!sync) {
8586 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
8587 if (!lrp->inode) {
8588 nfs4_layoutreturn_release(lrp);
8589 return -EAGAIN;
8590 }
8591 task_setup_data.flags |= RPC_TASK_ASYNC;
8592 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008593 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
Benny Halevycbe82602011-05-22 19:52:37 +03008594 task = rpc_run_task(&task_setup_data);
8595 if (IS_ERR(task))
8596 return PTR_ERR(task);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008597 if (sync)
8598 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008599 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
Benny Halevycbe82602011-05-22 19:52:37 +03008600 dprintk("<-- %s status=%d\n", __func__, status);
8601 rpc_put_task(task);
8602 return status;
8603}
8604
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008605static int
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008606_nfs4_proc_getdeviceinfo(struct nfs_server *server,
8607 struct pnfs_device *pdev,
8608 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008609{
8610 struct nfs4_getdeviceinfo_args args = {
8611 .pdev = pdev,
Trond Myklebust4e590802015-03-09 14:01:25 -04008612 .notify_types = NOTIFY_DEVICEID4_CHANGE |
8613 NOTIFY_DEVICEID4_DELETE,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008614 };
8615 struct nfs4_getdeviceinfo_res res = {
8616 .pdev = pdev,
8617 };
8618 struct rpc_message msg = {
8619 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
8620 .rpc_argp = &args,
8621 .rpc_resp = &res,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008622 .rpc_cred = cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008623 };
8624 int status;
8625
8626 dprintk("--> %s\n", __func__);
Bryan Schumaker7c513052011-03-24 17:12:24 +00008627 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Trond Myklebust4e590802015-03-09 14:01:25 -04008628 if (res.notification & ~args.notify_types)
8629 dprintk("%s: unsupported notification\n", __func__);
Trond Myklebustdf526992015-03-09 14:48:32 -04008630 if (res.notification != args.notify_types)
8631 pdev->nocache = 1;
Trond Myklebust4e590802015-03-09 14:01:25 -04008632
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008633 dprintk("<-- %s status=%d\n", __func__, status);
8634
8635 return status;
8636}
8637
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008638int nfs4_proc_getdeviceinfo(struct nfs_server *server,
8639 struct pnfs_device *pdev,
8640 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008641{
8642 struct nfs4_exception exception = { };
8643 int err;
8644
8645 do {
8646 err = nfs4_handle_exception(server,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008647 _nfs4_proc_getdeviceinfo(server, pdev, cred),
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008648 &exception);
8649 } while (exception.retry);
8650 return err;
8651}
8652EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
8653
Andy Adamson863a3c62011-03-23 13:27:54 +00008654static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
8655{
8656 struct nfs4_layoutcommit_data *data = calldata;
8657 struct nfs_server *server = NFS_SERVER(data->args.inode);
8658
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008659 nfs4_setup_sequence(server->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008660 &data->args.seq_args,
8661 &data->res.seq_res,
8662 task);
Andy Adamson863a3c62011-03-23 13:27:54 +00008663}
8664
8665static void
8666nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
8667{
8668 struct nfs4_layoutcommit_data *data = calldata;
8669 struct nfs_server *server = NFS_SERVER(data->args.inode);
8670
Trond Myklebust6ba7db32012-10-22 20:07:20 -04008671 if (!nfs41_sequence_done(task, &data->res.seq_res))
Andy Adamson863a3c62011-03-23 13:27:54 +00008672 return;
8673
8674 switch (task->tk_status) { /* Just ignore these failures */
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008675 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
8676 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
8677 case -NFS4ERR_BADLAYOUT: /* no layout */
8678 case -NFS4ERR_GRACE: /* loca_recalim always false */
Andy Adamson863a3c62011-03-23 13:27:54 +00008679 task->tk_status = 0;
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008680 case 0:
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008681 break;
8682 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10008683 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008684 rpc_restart_call_prepare(task);
8685 return;
8686 }
8687 }
Andy Adamson863a3c62011-03-23 13:27:54 +00008688}
8689
8690static void nfs4_layoutcommit_release(void *calldata)
8691{
8692 struct nfs4_layoutcommit_data *data = calldata;
8693
Andy Adamsondb29c082011-07-30 20:52:38 -04008694 pnfs_cleanup_layoutcommit(data);
Trond Myklebustd8c951c2014-01-13 12:08:11 -05008695 nfs_post_op_update_inode_force_wcc(data->args.inode,
8696 data->res.fattr);
Andy Adamson863a3c62011-03-23 13:27:54 +00008697 put_rpccred(data->cred);
Trond Myklebust472e2592015-02-05 16:50:30 -05008698 nfs_iput_and_deactive(data->inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00008699 kfree(data);
8700}
8701
8702static const struct rpc_call_ops nfs4_layoutcommit_ops = {
8703 .rpc_call_prepare = nfs4_layoutcommit_prepare,
8704 .rpc_call_done = nfs4_layoutcommit_done,
8705 .rpc_release = nfs4_layoutcommit_release,
8706};
8707
8708int
Andy Adamsonef311532011-03-12 02:58:10 -05008709nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00008710{
8711 struct rpc_message msg = {
8712 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
8713 .rpc_argp = &data->args,
8714 .rpc_resp = &data->res,
8715 .rpc_cred = data->cred,
8716 };
8717 struct rpc_task_setup task_setup_data = {
8718 .task = &data->task,
8719 .rpc_client = NFS_CLIENT(data->args.inode),
8720 .rpc_message = &msg,
8721 .callback_ops = &nfs4_layoutcommit_ops,
8722 .callback_data = data,
Andy Adamson863a3c62011-03-23 13:27:54 +00008723 };
8724 struct rpc_task *task;
8725 int status = 0;
8726
Kinglong Meeb4839eb2015-07-01 12:00:13 +08008727 dprintk("NFS: initiating layoutcommit call. sync %d "
8728 "lbw: %llu inode %lu\n", sync,
Andy Adamson863a3c62011-03-23 13:27:54 +00008729 data->args.lastbytewritten,
8730 data->args.inode->i_ino);
8731
Trond Myklebust472e2592015-02-05 16:50:30 -05008732 if (!sync) {
8733 data->inode = nfs_igrab_and_active(data->args.inode);
8734 if (data->inode == NULL) {
8735 nfs4_layoutcommit_release(data);
8736 return -EAGAIN;
8737 }
8738 task_setup_data.flags = RPC_TASK_ASYNC;
8739 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008740 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andy Adamson863a3c62011-03-23 13:27:54 +00008741 task = rpc_run_task(&task_setup_data);
8742 if (IS_ERR(task))
8743 return PTR_ERR(task);
Trond Myklebust472e2592015-02-05 16:50:30 -05008744 if (sync)
8745 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008746 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
Andy Adamson863a3c62011-03-23 13:27:54 +00008747 dprintk("%s: status %d\n", __func__, status);
8748 rpc_put_task(task);
8749 return status;
8750}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008751
Andy Adamson97431202013-08-08 10:57:56 -04008752/**
8753 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
8754 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
8755 */
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008756static int
8757_nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008758 struct nfs_fsinfo *info,
8759 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008760{
8761 struct nfs41_secinfo_no_name_args args = {
8762 .style = SECINFO_STYLE_CURRENT_FH,
8763 };
8764 struct nfs4_secinfo_res res = {
8765 .flavors = flavors,
8766 };
8767 struct rpc_message msg = {
8768 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
8769 .rpc_argp = &args,
8770 .rpc_resp = &res,
8771 };
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008772 struct rpc_clnt *clnt = server->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008773 struct rpc_cred *cred = NULL;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008774 int status;
8775
8776 if (use_integrity) {
8777 clnt = server->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008778 cred = nfs4_get_clid_cred(server->nfs_client);
8779 msg.rpc_cred = cred;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008780 }
8781
8782 dprintk("--> %s\n", __func__);
8783 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
8784 &res.seq_res, 0);
8785 dprintk("<-- %s status=%d\n", __func__, status);
8786
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008787 if (cred)
8788 put_rpccred(cred);
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008789
8790 return status;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008791}
8792
8793static int
8794nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8795 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
8796{
8797 struct nfs4_exception exception = { };
8798 int err;
8799 do {
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008800 /* first try using integrity protection */
8801 err = -NFS4ERR_WRONGSEC;
8802
8803 /* try to use integrity protection with machine cred */
8804 if (_nfs4_is_integrity_protected(server->nfs_client))
8805 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8806 flavors, true);
8807
8808 /*
8809 * if unable to use integrity protection, or SECINFO with
8810 * integrity protection returns NFS4ERR_WRONGSEC (which is
8811 * disallowed by spec, but exists in deployed servers) use
8812 * the current filesystem's rpc_client and the user cred.
8813 */
8814 if (err == -NFS4ERR_WRONGSEC)
8815 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8816 flavors, false);
8817
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008818 switch (err) {
8819 case 0:
8820 case -NFS4ERR_WRONGSEC:
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008821 case -ENOTSUPP:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008822 goto out;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008823 default:
8824 err = nfs4_handle_exception(server, err, &exception);
8825 }
8826 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008827out:
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008828 return err;
8829}
8830
8831static int
8832nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
8833 struct nfs_fsinfo *info)
8834{
8835 int err;
8836 struct page *page;
Anna Schumaker367156d2013-09-25 17:02:48 -04008837 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008838 struct nfs4_secinfo_flavors *flavors;
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008839 struct nfs4_secinfo4 *secinfo;
8840 int i;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008841
8842 page = alloc_page(GFP_KERNEL);
8843 if (!page) {
8844 err = -ENOMEM;
8845 goto out;
8846 }
8847
8848 flavors = page_address(page);
8849 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
8850
8851 /*
8852 * Fall back on "guess and check" method if
8853 * the server doesn't support SECINFO_NO_NAME
8854 */
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008855 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008856 err = nfs4_find_root_sec(server, fhandle, info);
8857 goto out_freepage;
8858 }
8859 if (err)
8860 goto out_freepage;
8861
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008862 for (i = 0; i < flavors->num_flavors; i++) {
8863 secinfo = &flavors->flavors[i];
8864
8865 switch (secinfo->flavor) {
8866 case RPC_AUTH_NULL:
8867 case RPC_AUTH_UNIX:
8868 case RPC_AUTH_GSS:
8869 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
8870 &secinfo->flavor_info);
8871 break;
8872 default:
8873 flavor = RPC_AUTH_MAXFLAVOR;
8874 break;
8875 }
8876
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04008877 if (!nfs_auth_info_match(&server->auth_info, flavor))
8878 flavor = RPC_AUTH_MAXFLAVOR;
8879
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008880 if (flavor != RPC_AUTH_MAXFLAVOR) {
8881 err = nfs4_lookup_root_sec(server, fhandle,
8882 info, flavor);
8883 if (!err)
8884 break;
8885 }
8886 }
8887
8888 if (flavor == RPC_AUTH_MAXFLAVOR)
8889 err = -EPERM;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008890
8891out_freepage:
8892 put_page(page);
8893 if (err == -EACCES)
8894 return -EPERM;
8895out:
8896 return err;
8897}
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008898
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008899static int _nfs41_test_stateid(struct nfs_server *server,
8900 nfs4_stateid *stateid,
8901 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04008902{
8903 int status;
8904 struct nfs41_test_stateid_args args = {
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008905 .stateid = stateid,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008906 };
8907 struct nfs41_test_stateid_res res;
8908 struct rpc_message msg = {
8909 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
8910 .rpc_argp = &args,
8911 .rpc_resp = &res,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008912 .rpc_cred = cred,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008913 };
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008914 struct rpc_clnt *rpc_client = server->client;
8915
8916 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8917 &rpc_client, &msg);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008918
Chuck Lever38527b12012-07-11 16:30:23 -04008919 dprintk("NFS call test_stateid %p\n", stateid);
Chuck Levera9c92d62013-08-09 12:48:18 -04008920 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008921 nfs4_set_sequence_privileged(&args.seq_args);
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008922 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008923 &args.seq_args, &res.seq_res);
Chuck Lever38527b12012-07-11 16:30:23 -04008924 if (status != NFS_OK) {
8925 dprintk("NFS reply test_stateid: failed, %d\n", status);
Chuck Lever377e5072012-07-11 16:29:45 -04008926 return status;
Chuck Lever38527b12012-07-11 16:30:23 -04008927 }
8928 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
Chuck Lever377e5072012-07-11 16:29:45 -04008929 return -res.status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04008930}
8931
Trond Myklebust43912bb2016-09-22 13:38:56 -04008932static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
8933 int err, struct nfs4_exception *exception)
8934{
8935 exception->retry = 0;
8936 switch(err) {
8937 case -NFS4ERR_DELAY:
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04008938 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust43912bb2016-09-22 13:38:56 -04008939 nfs4_handle_exception(server, err, exception);
8940 break;
8941 case -NFS4ERR_BADSESSION:
8942 case -NFS4ERR_BADSLOT:
8943 case -NFS4ERR_BAD_HIGH_SLOT:
8944 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8945 case -NFS4ERR_DEADSESSION:
8946 nfs4_do_handle_exception(server, err, exception);
8947 }
8948}
8949
Chuck Lever38527b12012-07-11 16:30:23 -04008950/**
8951 * nfs41_test_stateid - perform a TEST_STATEID operation
8952 *
8953 * @server: server / transport on which to perform the operation
8954 * @stateid: state ID to test
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008955 * @cred: credential
Chuck Lever38527b12012-07-11 16:30:23 -04008956 *
8957 * Returns NFS_OK if the server recognizes that "stateid" is valid.
8958 * Otherwise a negative NFS4ERR value is returned if the operation
8959 * failed or the state ID is not currently valid.
8960 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008961static int nfs41_test_stateid(struct nfs_server *server,
8962 nfs4_stateid *stateid,
8963 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04008964{
8965 struct nfs4_exception exception = { };
8966 int err;
8967 do {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008968 err = _nfs41_test_stateid(server, stateid, cred);
Trond Myklebust43912bb2016-09-22 13:38:56 -04008969 nfs4_handle_delay_or_session_error(server, err, &exception);
Bryan Schumaker7d974792011-06-02 14:59:08 -04008970 } while (exception.retry);
8971 return err;
8972}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04008973
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008974struct nfs_free_stateid_data {
8975 struct nfs_server *server;
8976 struct nfs41_free_stateid_args args;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04008977 struct nfs41_free_stateid_res res;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008978};
8979
8980static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
8981{
8982 struct nfs_free_stateid_data *data = calldata;
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008983 nfs4_setup_sequence(data->server->nfs_client,
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008984 &data->args.seq_args,
8985 &data->res.seq_res,
8986 task);
8987}
8988
8989static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
8990{
8991 struct nfs_free_stateid_data *data = calldata;
8992
8993 nfs41_sequence_done(task, &data->res.seq_res);
8994
8995 switch (task->tk_status) {
8996 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10008997 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008998 rpc_restart_call_prepare(task);
8999 }
9000}
9001
9002static void nfs41_free_stateid_release(void *calldata)
9003{
9004 kfree(calldata);
9005}
9006
Trond Myklebust17f26b12013-08-21 15:48:42 -04009007static const struct rpc_call_ops nfs41_free_stateid_ops = {
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009008 .rpc_call_prepare = nfs41_free_stateid_prepare,
9009 .rpc_call_done = nfs41_free_stateid_done,
9010 .rpc_release = nfs41_free_stateid_release,
9011};
9012
9013static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009014 const nfs4_stateid *stateid,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009015 struct rpc_cred *cred,
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009016 bool privileged)
9017{
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009018 struct rpc_message msg = {
9019 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009020 .rpc_cred = cred,
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009021 };
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009022 struct rpc_task_setup task_setup = {
9023 .rpc_client = server->client,
9024 .rpc_message = &msg,
9025 .callback_ops = &nfs41_free_stateid_ops,
9026 .flags = RPC_TASK_ASYNC,
9027 };
9028 struct nfs_free_stateid_data *data;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009029
Weston Andros Adamson3787d502013-08-13 16:37:36 -04009030 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9031 &task_setup.rpc_client, &msg);
9032
Chuck Lever38527b12012-07-11 16:30:23 -04009033 dprintk("NFS call free_stateid %p\n", stateid);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009034 data = kmalloc(sizeof(*data), GFP_NOFS);
9035 if (!data)
9036 return ERR_PTR(-ENOMEM);
9037 data->server = server;
9038 nfs4_stateid_copy(&data->args.stateid, stateid);
9039
9040 task_setup.callback_data = data;
9041
9042 msg.rpc_argp = &data->args;
9043 msg.rpc_resp = &data->res;
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04009044 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009045 if (privileged)
9046 nfs4_set_sequence_privileged(&data->args.seq_args);
9047
9048 return rpc_run_task(&task_setup);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009049}
9050
Chuck Lever38527b12012-07-11 16:30:23 -04009051/**
9052 * nfs41_free_stateid - perform a FREE_STATEID operation
9053 *
9054 * @server: server / transport on which to perform the operation
9055 * @stateid: state ID to release
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009056 * @cred: credential
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009057 * @is_recovery: set to true if this call needs to be privileged
Chuck Lever38527b12012-07-11 16:30:23 -04009058 *
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009059 * Note: this function is always asynchronous.
Chuck Lever38527b12012-07-11 16:30:23 -04009060 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009061static int nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009062 const nfs4_stateid *stateid,
9063 struct rpc_cred *cred,
9064 bool is_recovery)
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009065{
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009066 struct rpc_task *task;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009067
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009068 task = _nfs41_free_stateid(server, stateid, cred, is_recovery);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009069 if (IS_ERR(task))
9070 return PTR_ERR(task);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009071 rpc_put_task(task);
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009072 return 0;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009073}
Trond Myklebust36281ca2012-03-04 18:13:56 -05009074
Jeff Laytonf1cdae82014-05-01 06:28:47 -04009075static void
9076nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009077{
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009078 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009079
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009080 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009081 nfs4_free_lock_state(server, lsp);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009082}
9083
Trond Myklebust36281ca2012-03-04 18:13:56 -05009084static bool nfs41_match_stateid(const nfs4_stateid *s1,
9085 const nfs4_stateid *s2)
9086{
Trond Myklebust93b717f2016-05-16 17:42:43 -04009087 if (s1->type != s2->type)
9088 return false;
9089
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009090 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009091 return false;
9092
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009093 if (s1->seqid == s2->seqid)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009094 return true;
Trond Myklebust36281ca2012-03-04 18:13:56 -05009095
Anna Schumaker045c5512017-01-11 16:59:48 -05009096 return s1->seqid == 0 || s2->seqid == 0;
Trond Myklebust36281ca2012-03-04 18:13:56 -05009097}
9098
Andy Adamson557134a2009-04-01 09:21:53 -04009099#endif /* CONFIG_NFS_V4_1 */
9100
Trond Myklebust36281ca2012-03-04 18:13:56 -05009101static bool nfs4_match_stateid(const nfs4_stateid *s1,
9102 const nfs4_stateid *s2)
9103{
Trond Myklebustf597c532012-03-04 18:13:56 -05009104 return nfs4_stateid_match(s1, s2);
Trond Myklebust36281ca2012-03-04 18:13:56 -05009105}
9106
9107
Trond Myklebust17280172012-03-11 13:11:00 -04009108static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009109 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009110 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111 .recover_open = nfs4_open_reclaim,
9112 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04009113 .establish_clid = nfs4_init_clientid,
Chuck Lever05f4c352012-09-14 17:24:32 -04009114 .detect_trunking = nfs40_discover_server_trunking,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009115};
9116
Andy Adamson591d71c2009-04-01 09:22:47 -04009117#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009118static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009119 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9120 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9121 .recover_open = nfs4_open_reclaim,
9122 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05009123 .establish_clid = nfs41_init_clientid,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05009124 .reclaim_complete = nfs41_proc_reclaim_complete,
Chuck Lever05f4c352012-09-14 17:24:32 -04009125 .detect_trunking = nfs41_discover_server_trunking,
Andy Adamson591d71c2009-04-01 09:22:47 -04009126};
9127#endif /* CONFIG_NFS_V4_1 */
9128
Trond Myklebust17280172012-03-11 13:11:00 -04009129static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009130 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009131 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03009132 .recover_open = nfs40_open_expired,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009133 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04009134 .establish_clid = nfs4_init_clientid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009135};
9136
Andy Adamson591d71c2009-04-01 09:22:47 -04009137#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009138static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009139 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9140 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Bryan Schumakerf062eb62011-06-02 14:59:10 -04009141 .recover_open = nfs41_open_expired,
9142 .recover_lock = nfs41_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05009143 .establish_clid = nfs41_init_clientid,
Andy Adamson591d71c2009-04-01 09:22:47 -04009144};
9145#endif /* CONFIG_NFS_V4_1 */
9146
Trond Myklebust17280172012-03-11 13:11:00 -04009147static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009148 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04009149 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009150 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04009151};
9152
9153#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009154static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009155 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04009156 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009157 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04009158};
9159#endif
9160
Chuck Leverec011fe2013-10-17 14:12:39 -04009161static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009162 .get_locations = _nfs40_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009163 .fsid_present = _nfs40_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009164};
9165
9166#if defined(CONFIG_NFS_V4_1)
9167static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009168 .get_locations = _nfs41_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009169 .fsid_present = _nfs41_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009170};
9171#endif /* CONFIG_NFS_V4_1 */
9172
Trond Myklebust97dc1352010-06-16 09:52:26 -04009173static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
9174 .minor_version = 0,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009175 .init_caps = NFS_CAP_READDIRPLUS
9176 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009177 | NFS_CAP_POSIX_LOCK,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009178 .init_client = nfs40_init_client,
9179 .shutdown_client = nfs40_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009180 .match_stateid = nfs4_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009181 .find_root_sec = nfs4_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009182 .free_lock_state = nfs4_release_lockowner,
Trond Myklebust45870d62016-09-22 13:38:59 -04009183 .test_and_free_expired = nfs40_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009184 .alloc_seqid = nfs_alloc_seqid,
Chuck Lever9915ea72013-08-09 12:48:27 -04009185 .call_sync_ops = &nfs40_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009186 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
9187 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
9188 .state_renewal_ops = &nfs40_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009189 .mig_recovery_ops = &nfs40_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009190};
9191
9192#if defined(CONFIG_NFS_V4_1)
Trond Myklebust63f5f792015-01-23 19:19:25 -05009193static struct nfs_seqid *
9194nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
9195{
9196 return NULL;
9197}
9198
Trond Myklebust97dc1352010-06-16 09:52:26 -04009199static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
9200 .minor_version = 1,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009201 .init_caps = NFS_CAP_READDIRPLUS
9202 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust3b664862013-03-17 15:31:15 -04009203 | NFS_CAP_POSIX_LOCK
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04009204 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009205 | NFS_CAP_ATOMIC_OPEN_V1,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009206 .init_client = nfs41_init_client,
9207 .shutdown_client = nfs41_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009208 .match_stateid = nfs41_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009209 .find_root_sec = nfs41_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009210 .free_lock_state = nfs41_free_lock_state,
Trond Myklebust45870d62016-09-22 13:38:59 -04009211 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009212 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009213 .session_trunk = nfs4_test_session_trunk,
Chuck Lever9915ea72013-08-09 12:48:27 -04009214 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009215 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9216 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9217 .state_renewal_ops = &nfs41_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009218 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009219};
9220#endif
9221
Steve Dickson42c2c422013-05-22 12:50:38 -04009222#if defined(CONFIG_NFS_V4_2)
9223static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
9224 .minor_version = 2,
Bryan Schumaker70173102013-06-19 13:41:43 -04009225 .init_caps = NFS_CAP_READDIRPLUS
9226 | NFS_CAP_ATOMIC_OPEN
Bryan Schumaker70173102013-06-19 13:41:43 -04009227 | NFS_CAP_POSIX_LOCK
9228 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009229 | NFS_CAP_ATOMIC_OPEN_V1
Anna Schumakerf4ac1672014-11-25 13:18:15 -05009230 | NFS_CAP_ALLOCATE
Anna Schumaker2e724482013-05-21 16:53:03 -04009231 | NFS_CAP_COPY
Anna Schumaker624bd5b2014-11-25 13:18:16 -05009232 | NFS_CAP_DEALLOCATE
Trond Myklebust6c5a0d82015-06-27 11:45:46 -04009233 | NFS_CAP_SEEK
Peng Taoe5341f32015-09-26 02:24:35 +08009234 | NFS_CAP_LAYOUTSTATS
9235 | NFS_CAP_CLONE,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009236 .init_client = nfs41_init_client,
9237 .shutdown_client = nfs41_shutdown_client,
Steve Dickson42c2c422013-05-22 12:50:38 -04009238 .match_stateid = nfs41_match_stateid,
9239 .find_root_sec = nfs41_find_root_sec,
Bryan Schumaker70173102013-06-19 13:41:43 -04009240 .free_lock_state = nfs41_free_lock_state,
Chuck Lever9915ea72013-08-09 12:48:27 -04009241 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebust45870d62016-09-22 13:38:59 -04009242 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009243 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009244 .session_trunk = nfs4_test_session_trunk,
Steve Dickson42c2c422013-05-22 12:50:38 -04009245 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9246 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9247 .state_renewal_ops = &nfs41_state_renewal_ops,
Kinglong Mee18e3b732015-08-15 21:52:10 +08009248 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Steve Dickson42c2c422013-05-22 12:50:38 -04009249};
9250#endif
9251
Trond Myklebust97dc1352010-06-16 09:52:26 -04009252const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
9253 [0] = &nfs_v4_0_minor_ops,
9254#if defined(CONFIG_NFS_V4_1)
9255 [1] = &nfs_v4_1_minor_ops,
9256#endif
Steve Dickson42c2c422013-05-22 12:50:38 -04009257#if defined(CONFIG_NFS_V4_2)
9258 [2] = &nfs_v4_2_minor_ops,
9259#endif
Trond Myklebust97dc1352010-06-16 09:52:26 -04009260};
9261
Trond Myklebust13997822016-07-24 17:10:52 -04009262static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009263{
9264 ssize_t error, error2;
9265
9266 error = generic_listxattr(dentry, list, size);
9267 if (error < 0)
9268 return error;
9269 if (list) {
9270 list += error;
9271 size -= error;
9272 }
9273
9274 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size);
9275 if (error2 < 0)
9276 return error2;
9277 return error + error2;
9278}
9279
Trond Myklebust17f26b12013-08-21 15:48:42 -04009280static const struct inode_operations nfs4_dir_inode_operations = {
Bryan Schumaker73a79702012-07-16 16:39:12 -04009281 .create = nfs_create,
9282 .lookup = nfs_lookup,
9283 .atomic_open = nfs_atomic_open,
9284 .link = nfs_link,
9285 .unlink = nfs_unlink,
9286 .symlink = nfs_symlink,
9287 .mkdir = nfs_mkdir,
9288 .rmdir = nfs_rmdir,
9289 .mknod = nfs_mknod,
9290 .rename = nfs_rename,
9291 .permission = nfs_permission,
9292 .getattr = nfs_getattr,
9293 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009294 .listxattr = nfs4_listxattr,
Bryan Schumaker73a79702012-07-16 16:39:12 -04009295};
9296
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08009297static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009298 .permission = nfs_permission,
9299 .getattr = nfs_getattr,
9300 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009301 .listxattr = nfs4_listxattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009302};
9303
David Howells509de812006-08-22 20:06:11 -04009304const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009305 .version = 4, /* protocol version */
9306 .dentry_ops = &nfs4_dentry_operations,
9307 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009308 .file_inode_ops = &nfs4_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -04009309 .file_ops = &nfs4_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009310 .getroot = nfs4_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -04009311 .submount = nfs4_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -04009312 .try_mount = nfs4_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009313 .getattr = nfs4_proc_getattr,
9314 .setattr = nfs4_proc_setattr,
9315 .lookup = nfs4_proc_lookup,
9316 .access = nfs4_proc_access,
9317 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009318 .create = nfs4_proc_create,
9319 .remove = nfs4_proc_remove,
9320 .unlink_setup = nfs4_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -04009321 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322 .unlink_done = nfs4_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -04009323 .rename_setup = nfs4_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04009324 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -04009325 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326 .link = nfs4_proc_link,
9327 .symlink = nfs4_proc_symlink,
9328 .mkdir = nfs4_proc_mkdir,
9329 .rmdir = nfs4_proc_remove,
9330 .readdir = nfs4_proc_readdir,
9331 .mknod = nfs4_proc_mknod,
9332 .statfs = nfs4_proc_statfs,
9333 .fsinfo = nfs4_proc_fsinfo,
9334 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04009335 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009336 .decode_dirent = nfs4_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -04009337 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05009339 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009340 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009341 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009342 .commit_setup = nfs4_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -04009343 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009344 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00009346 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04009347 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04009348 .open_context = nfs4_atomic_open,
Bryan Schumaker011e2a72012-06-20 15:53:43 -04009349 .have_delegation = nfs4_have_delegation,
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04009350 .return_delegation = nfs4_inode_return_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -04009351 .alloc_client = nfs4_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +00009352 .init_client = nfs4_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -04009353 .free_client = nfs4_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -04009354 .create_server = nfs4_create_server,
9355 .clone_server = nfs_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009356};
9357
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009358static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +01009359 .name = XATTR_NAME_NFSV4_ACL,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009360 .list = nfs4_xattr_list_nfs4_acl,
9361 .get = nfs4_xattr_get_nfs4_acl,
9362 .set = nfs4_xattr_set_nfs4_acl,
9363};
9364
9365const struct xattr_handler *nfs4_xattr_handlers[] = {
9366 &nfs4_xattr_nfs4_acl_handler,
David Quigleyc9bccef2013-05-22 12:50:45 -04009367#ifdef CONFIG_NFS_V4_SECURITY_LABEL
9368 &nfs4_xattr_nfs4_label_handler,
9369#endif
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009370 NULL
9371};
9372
Linus Torvalds1da177e2005-04-16 15:20:36 -07009373/*
9374 * Local variables:
9375 * c-basic-offset: 8
9376 * End:
9377 */