blob: 5f11caefd36dec9c83eb291c3efbb5a06abd2cec [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{
Anna Schumaker18fe6a22017-06-16 12:06:59 -0400278 unsigned int attrs = FATTR4_WORD0_FILEID | FATTR4_WORD0_TYPE;
Al Viro0dbb4c62006-10-19 23:28:49 -0700279 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000282 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
284 return;
285 }
286
287 readdir->cookie = 0;
288 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
289 if (cookie == 2)
290 return;
291
292 /*
293 * NFSv4 servers do not return entries for '.' and '..'
294 * Therefore, we fake these entries here. We let '.'
295 * have cookie 0 and '..' have cookie 1. Note that
296 * when talking to the server, we always send cookie 0
297 * instead of 1 or 2.
298 */
Cong Wang2b86ce22011-11-25 23:14:33 +0800299 start = p = kmap_atomic(*readdir->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (cookie == 0) {
302 *p++ = xdr_one; /* next */
303 *p++ = xdr_zero; /* cookie, first word */
304 *p++ = xdr_one; /* cookie, second word */
305 *p++ = xdr_one; /* entry len */
306 memcpy(p, ".\0\0\0", 4); /* entry */
307 p++;
308 *p++ = xdr_one; /* bitmap length */
Anna Schumaker18fe6a22017-06-16 12:06:59 -0400309 *p++ = htonl(attrs); /* bitmap */
310 *p++ = htonl(12); /* attribute buffer length */
311 *p++ = htonl(NF4DIR);
David Howells2b0143b2015-03-17 22:25:59 +0000312 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
315 *p++ = xdr_one; /* next */
316 *p++ = xdr_zero; /* cookie, first word */
317 *p++ = xdr_two; /* cookie, second word */
318 *p++ = xdr_two; /* entry len */
319 memcpy(p, "..\0\0", 4); /* entry */
320 p++;
321 *p++ = xdr_one; /* bitmap length */
Anna Schumaker18fe6a22017-06-16 12:06:59 -0400322 *p++ = htonl(attrs); /* bitmap */
323 *p++ = htonl(12); /* attribute buffer length */
324 *p++ = htonl(NF4DIR);
David Howells2b0143b2015-03-17 22:25:59 +0000325 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 readdir->pgbase = (char *)p - (char *)start;
328 readdir->count -= readdir->pgbase;
Cong Wang2b86ce22011-11-25 23:14:33 +0800329 kunmap_atomic(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Trond Myklebust26d36302016-09-22 13:39:05 -0400332static void nfs4_test_and_free_stateid(struct nfs_server *server,
333 nfs4_stateid *stateid,
334 struct rpc_cred *cred)
335{
336 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
337
338 ops->test_and_free_expired(server, stateid, cred);
339}
340
341static void __nfs4_free_revoked_stateid(struct nfs_server *server,
342 nfs4_stateid *stateid,
343 struct rpc_cred *cred)
344{
345 stateid->type = NFS4_REVOKED_STATEID_TYPE;
346 nfs4_test_and_free_stateid(server, stateid, cred);
347}
348
349static void nfs4_free_revoked_stateid(struct nfs_server *server,
350 const nfs4_stateid *stateid,
351 struct rpc_cred *cred)
352{
353 nfs4_stateid tmp;
354
355 nfs4_stateid_copy(&tmp, stateid);
356 __nfs4_free_revoked_stateid(server, &tmp, cred);
357}
358
NeilBrown8478eaa2014-09-18 16:09:27 +1000359static long nfs4_update_delay(long *timeout)
360{
361 long ret;
362 if (!timeout)
363 return NFS4_POLL_RETRY_MAX;
364 if (*timeout <= 0)
365 *timeout = NFS4_POLL_RETRY_MIN;
366 if (*timeout > NFS4_POLL_RETRY_MAX)
367 *timeout = NFS4_POLL_RETRY_MAX;
368 ret = *timeout;
369 *timeout <<= 1;
370 return ret;
371}
372
Trond Myklebust65de8722008-12-23 15:21:44 -0500373static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
374{
375 int res = 0;
376
377 might_sleep();
378
NeilBrown8478eaa2014-09-18 16:09:27 +1000379 freezable_schedule_timeout_killable_unsafe(
380 nfs4_update_delay(timeout));
Trond Myklebust65de8722008-12-23 15:21:44 -0500381 if (fatal_signal_pending(current))
382 res = -ERESTARTSYS;
Trond Myklebust65de8722008-12-23 15:21:44 -0500383 return res;
384}
385
386/* This is the error handling routine for processes that are allowed
387 * to sleep.
388 */
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400389static int nfs4_do_handle_exception(struct nfs_server *server,
390 int errorcode, struct nfs4_exception *exception)
Trond Myklebust65de8722008-12-23 15:21:44 -0500391{
392 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500393 struct nfs4_state *state = exception->state;
Trond Myklebust8487c472016-06-26 08:44:35 -0400394 const nfs4_stateid *stateid = exception->stateid;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500395 struct inode *inode = exception->inode;
Trond Myklebust65de8722008-12-23 15:21:44 -0500396 int ret = errorcode;
397
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400398 exception->delay = 0;
399 exception->recovering = 0;
Trond Myklebust65de8722008-12-23 15:21:44 -0500400 exception->retry = 0;
Trond Myklebust272289a2016-09-22 13:39:15 -0400401
402 if (stateid == NULL && state != NULL)
403 stateid = &state->stateid;
404
Trond Myklebust65de8722008-12-23 15:21:44 -0500405 switch(errorcode) {
406 case 0:
407 return 0;
Trond Myklebust5ba12442015-06-16 11:26:35 -0400408 case -NFS4ERR_DELEG_REVOKED:
409 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust272289a2016-09-22 13:39:15 -0400410 case -NFS4ERR_EXPIRED:
Trond Myklebust5ba12442015-06-16 11:26:35 -0400411 case -NFS4ERR_BAD_STATEID:
Trond Myklebust272289a2016-09-22 13:39:15 -0400412 if (inode != NULL && stateid != NULL) {
413 nfs_inode_find_state_and_recover(inode,
414 stateid);
415 goto wait_on_recovery;
416 }
417 case -NFS4ERR_OPENMODE:
Trond Myklebust8487c472016-06-26 08:44:35 -0400418 if (inode) {
419 int err;
420
421 err = nfs_async_inode_return_delegation(inode,
422 stateid);
423 if (err == 0)
424 goto wait_on_recovery;
425 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
426 exception->retry = 1;
427 break;
428 }
429 }
Trond Myklebust3114ea72012-03-07 16:39:06 -0500430 if (state == NULL)
431 break;
Trond Myklebust5d422302013-03-14 16:57:48 -0400432 ret = nfs4_schedule_stateid_recovery(server, state);
433 if (ret < 0)
434 break;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500435 goto wait_on_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500436 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500437 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500438 nfs4_schedule_lease_recovery(clp);
439 goto wait_on_recovery;
Chuck Lever519ae252013-10-17 14:13:19 -0400440 case -NFS4ERR_MOVED:
441 ret = nfs4_schedule_migration_recovery(server);
442 if (ret < 0)
443 break;
444 goto wait_on_recovery;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -0400445 case -NFS4ERR_LEASE_MOVED:
446 nfs4_schedule_lease_moved_recovery(clp);
447 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500448#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400449 case -NFS4ERR_BADSESSION:
450 case -NFS4ERR_BADSLOT:
451 case -NFS4ERR_BAD_HIGH_SLOT:
452 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
453 case -NFS4ERR_DEADSESSION:
454 case -NFS4ERR_SEQ_FALSE_RETRY:
455 case -NFS4ERR_SEQ_MISORDERED:
456 dprintk("%s ERROR: %d Reset session\n", __func__,
457 errorcode);
Trond Myklebust9f594792012-05-27 13:02:53 -0400458 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
Bryan Schumaker399f11c2012-10-30 16:06:35 -0400459 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500460#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500461 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500462 if (exception->timeout > HZ) {
463 /* We have retried a decent amount, time to
464 * fail
465 */
466 ret = -EBUSY;
467 break;
468 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500469 case -NFS4ERR_DELAY:
Trond Myklebust2598ed32015-09-20 16:10:18 -0400470 nfs_inc_server_stats(server, NFSIOS_DELAY);
471 case -NFS4ERR_GRACE:
Trond Myklebuste85d7ee2016-07-14 18:46:24 -0400472 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -0400473 case -NFS4ERR_RECALLCONFLICT:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400474 exception->delay = 1;
475 return 0;
476
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400477 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust65de8722008-12-23 15:21:44 -0500478 case -NFS4ERR_OLD_STATEID:
479 exception->retry = 1;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800480 break;
481 case -NFS4ERR_BADOWNER:
482 /* The following works around a Linux server bug! */
483 case -NFS4ERR_BADNAME:
484 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
485 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
486 exception->retry = 1;
487 printk(KERN_WARNING "NFS: v4 server %s "
488 "does not accept raw "
489 "uid/gids. "
490 "Reenabling the idmapper.\n",
491 server->nfs_client->cl_hostname);
492 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500493 }
494 /* We failed to handle the error */
495 return nfs4_map_errors(ret);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500496wait_on_recovery:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400497 exception->recovering = 1;
498 return 0;
499}
500
501/* This is the error handling routine for processes that are allowed
502 * to sleep.
503 */
504int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
505{
506 struct nfs_client *clp = server->nfs_client;
507 int ret;
508
509 ret = nfs4_do_handle_exception(server, errorcode, exception);
510 if (exception->delay) {
511 ret = nfs4_delay(server->client, &exception->timeout);
512 goto out_retry;
513 }
514 if (exception->recovering) {
515 ret = nfs4_wait_clnt_recover(clp);
516 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
517 return -EIO;
518 goto out_retry;
519 }
520 return ret;
521out_retry:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500522 if (ret == 0)
523 exception->retry = 1;
524 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500525}
526
Trond Myklebust037fc982015-09-20 15:51:00 -0400527static int
528nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
529 int errorcode, struct nfs4_exception *exception)
530{
531 struct nfs_client *clp = server->nfs_client;
532 int ret;
533
534 ret = nfs4_do_handle_exception(server, errorcode, exception);
535 if (exception->delay) {
536 rpc_delay(task, nfs4_update_delay(&exception->timeout));
537 goto out_retry;
538 }
539 if (exception->recovering) {
540 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
541 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
542 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
543 goto out_retry;
544 }
545 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
546 ret = -EIO;
547 return ret;
548out_retry:
549 if (ret == 0)
550 exception->retry = 1;
551 return ret;
552}
553
554static int
555nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
556 struct nfs4_state *state, long *timeout)
557{
558 struct nfs4_exception exception = {
559 .state = state,
560 };
561
562 if (task->tk_status >= 0)
563 return 0;
564 if (timeout)
565 exception.timeout = *timeout;
566 task->tk_status = nfs4_async_handle_exception(task, server,
567 task->tk_status,
568 &exception);
569 if (exception.delay && timeout)
570 *timeout = exception.timeout;
571 if (exception.retry)
572 return -EAGAIN;
573 return 0;
574}
575
Weston Andros Adamsona5250de2013-09-03 15:18:49 -0400576/*
577 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
578 * or 'false' otherwise.
579 */
580static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
581{
582 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
Anna Schumakereeea5362017-01-11 16:01:21 -0500583 return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -0400584}
Trond Myklebust65de8722008-12-23 15:21:44 -0500585
Trond Myklebust452e9352010-07-31 14:29:06 -0400586static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 spin_lock(&clp->cl_lock);
589 if (time_before(clp->cl_last_renewal,timestamp))
590 clp->cl_last_renewal = timestamp;
591 spin_unlock(&clp->cl_lock);
592}
593
Trond Myklebust452e9352010-07-31 14:29:06 -0400594static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
595{
Trond Myklebustbe824162015-07-05 14:50:46 -0400596 struct nfs_client *clp = server->nfs_client;
597
598 if (!nfs4_has_session(clp))
599 do_renew_lease(clp, timestamp);
Trond Myklebust452e9352010-07-31 14:29:06 -0400600}
601
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400602struct nfs4_call_sync_data {
603 const struct nfs_server *seq_server;
604 struct nfs4_sequence_args *seq_args;
605 struct nfs4_sequence_res *seq_res;
606};
607
Trond Myklebustbe3a5d22015-06-23 19:51:55 +0800608void nfs4_init_sequence(struct nfs4_sequence_args *args,
609 struct nfs4_sequence_res *res, int cache_reply)
Chuck Levera9c92d62013-08-09 12:48:18 -0400610{
611 args->sa_slot = NULL;
612 args->sa_cache_this = cache_reply;
613 args->sa_privileged = 0;
614
615 res->sr_slot = NULL;
616}
617
618static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args)
619{
620 args->sa_privileged = 1;
621}
622
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400623static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
Chuck Lever3bd23842013-08-09 12:49:19 -0400624{
625 struct nfs4_slot *slot = res->sr_slot;
626 struct nfs4_slot_table *tbl;
627
Chuck Lever3bd23842013-08-09 12:49:19 -0400628 tbl = slot->table;
629 spin_lock(&tbl->slot_tbl_lock);
630 if (!nfs41_wake_and_assign_slot(tbl, slot))
631 nfs4_free_slot(tbl, slot);
632 spin_unlock(&tbl->slot_tbl_lock);
633
634 res->sr_slot = NULL;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400635}
636
637static int nfs40_sequence_done(struct rpc_task *task,
638 struct nfs4_sequence_res *res)
639{
640 if (res->sr_slot != NULL)
641 nfs40_sequence_free_slot(res);
Chuck Lever3bd23842013-08-09 12:49:19 -0400642 return 1;
643}
644
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400645#if defined(CONFIG_NFS_V4_1)
646
Trond Myklebustd185a332010-06-16 09:52:25 -0400647static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400648{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500649 struct nfs4_session *session;
Andy Adamson13615872009-04-01 09:22:17 -0400650 struct nfs4_slot_table *tbl;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500651 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500652 bool send_new_highest_used_slotid = false;
Andy Adamson13615872009-04-01 09:22:17 -0400653
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500654 tbl = slot->table;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500655 session = tbl->session;
Andy Adamsonea028ac2009-12-04 15:55:38 -0500656
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400657 /* Bump the slot sequence number */
658 if (slot->seq_done)
659 slot->seq_nr++;
660 slot->seq_done = 0;
661
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500662 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500663 /* Be nice to the server: try to ensure that the last transmitted
664 * value for highest_user_slotid <= target_highest_slotid
665 */
666 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
667 send_new_highest_used_slotid = true;
668
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500669 if (nfs41_wake_and_assign_slot(tbl, slot)) {
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500670 send_new_highest_used_slotid = false;
671 goto out_unlock;
672 }
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500673 nfs4_free_slot(tbl, slot);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500674
675 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
676 send_new_highest_used_slotid = false;
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500677out_unlock:
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500678 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400679 res->sr_slot = NULL;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500680 if (send_new_highest_used_slotid)
Anna Schumaker3f10a6a2015-07-13 14:01:31 -0400681 nfs41_notify_server(session->clp);
Trond Myklebust045d2a62016-08-28 13:25:43 -0400682 if (waitqueue_active(&tbl->slot_waitq))
683 wake_up_all(&tbl->slot_waitq);
Andy Adamson13615872009-04-01 09:22:17 -0400684}
685
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400686static int nfs41_sequence_process(struct rpc_task *task,
687 struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400688{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500689 struct nfs4_session *session;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500690 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebust14516c32010-07-31 14:29:06 -0400691 struct nfs_client *clp;
Trond Myklebustac20d162012-12-15 15:36:07 -0500692 bool interrupted = false;
Trond Myklebust85563072012-12-11 10:31:12 -0500693 int ret = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400694
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500695 if (slot == NULL)
696 goto out_noaction;
Bryan Schumaker468f8612011-04-18 15:57:32 -0400697 /* don't increment the sequence number if the task wasn't sent */
698 if (!RPC_WAS_SENT(task))
Andy Adamsonb0df8062009-04-01 09:22:18 -0400699 goto out;
700
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500701 session = slot->table->session;
Trond Myklebust933602e2012-11-16 12:12:38 -0500702
Trond Myklebustac20d162012-12-15 15:36:07 -0500703 if (slot->interrupted) {
Olga Kornievskaia88bd4f82017-04-26 14:21:22 -0400704 if (res->sr_status != -NFS4ERR_DELAY)
705 slot->interrupted = 0;
Trond Myklebustac20d162012-12-15 15:36:07 -0500706 interrupted = true;
707 }
708
Trond Myklebust2f92ae32013-08-14 17:58:28 -0400709 trace_nfs4_sequence_done(session, res);
Andy Adamson691daf32009-12-04 15:55:39 -0500710 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400711 switch (res->sr_status) {
712 case 0:
Olga Kornievskaiaa8658802016-09-23 17:24:03 -0400713 /* If previous op on slot was interrupted and we reused
714 * the seq# and got a reply from the cache, then retry
715 */
716 if (task->tk_status == -EREMOTEIO && interrupted) {
717 ++slot->seq_nr;
718 goto retry_nowait;
719 }
Andy Adamsonb0df8062009-04-01 09:22:18 -0400720 /* Update the slot's sequence and clientid lease timer */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400721 slot->seq_done = 1;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500722 clp = session->clp;
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500723 do_renew_lease(clp, res->sr_timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500724 /* Check sequence flags */
Trond Myklebust0a014a42016-09-22 13:38:51 -0400725 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
726 !!slot->privileged);
Trond Myklebust464ee9f2012-11-20 12:49:27 -0500727 nfs41_update_target_slotid(slot->table, slot, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400728 break;
Trond Myklebustac20d162012-12-15 15:36:07 -0500729 case 1:
730 /*
731 * sr_status remains 1 if an RPC level error occurred.
732 * The server may or may not have processed the sequence
733 * operation..
734 * Mark the slot as having hosted an interrupted RPC call.
735 */
736 slot->interrupted = 1;
737 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400738 case -NFS4ERR_DELAY:
739 /* The server detected a resend of the RPC call and
740 * returned NFS4ERR_DELAY as per Section 2.10.6.2
741 * of RFC5661.
742 */
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500743 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400744 __func__,
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500745 slot->slot_nr,
Trond Myklebust933602e2012-11-16 12:12:38 -0500746 slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400747 goto out_retry;
Trond Myklebust85563072012-12-11 10:31:12 -0500748 case -NFS4ERR_BADSLOT:
749 /*
750 * The slot id we used was probably retired. Try again
751 * using a different slot id.
752 */
Trond Myklebuste8794442012-12-15 13:56:18 -0500753 goto retry_nowait;
754 case -NFS4ERR_SEQ_MISORDERED:
755 /*
Trond Myklebustac20d162012-12-15 15:36:07 -0500756 * Was the last operation on this sequence interrupted?
757 * If so, retry after bumping the sequence number.
758 */
759 if (interrupted) {
760 ++slot->seq_nr;
761 goto retry_nowait;
762 }
763 /*
Trond Myklebuste8794442012-12-15 13:56:18 -0500764 * Could this slot have been previously retired?
765 * If so, then the server may be expecting seq_nr = 1!
766 */
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500767 if (slot->seq_nr != 1) {
768 slot->seq_nr = 1;
769 goto retry_nowait;
770 }
771 break;
Trond Myklebuste8794442012-12-15 13:56:18 -0500772 case -NFS4ERR_SEQ_FALSE_RETRY:
773 ++slot->seq_nr;
774 goto retry_nowait;
Trond Myklebust14516c32010-07-31 14:29:06 -0400775 default:
776 /* Just update the slot sequence no. */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400777 slot->seq_done = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400778 }
779out:
780 /* The session may be reset by one of the error handlers. */
781 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500782out_noaction:
Trond Myklebust85563072012-12-11 10:31:12 -0500783 return ret;
Trond Myklebuste8794442012-12-15 13:56:18 -0500784retry_nowait:
785 if (rpc_restart_call_prepare(task)) {
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400786 nfs41_sequence_free_slot(res);
Trond Myklebuste8794442012-12-15 13:56:18 -0500787 task->tk_status = 0;
788 ret = 0;
789 }
790 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400791out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400792 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400793 goto out;
794 rpc_delay(task, NFS4_POLL_RETRY_MAX);
795 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400796}
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400797
798int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
799{
800 if (!nfs41_sequence_process(task, res))
801 return 0;
802 if (res->sr_slot != NULL)
803 nfs41_sequence_free_slot(res);
804 return 1;
805
806}
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500807EXPORT_SYMBOL_GPL(nfs41_sequence_done);
Andy Adamsonb0df8062009-04-01 09:22:18 -0400808
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400809static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
810{
811 if (res->sr_slot == NULL)
812 return 1;
813 if (res->sr_slot->table->session != NULL)
814 return nfs41_sequence_process(task, res);
815 return nfs40_sequence_done(task, res);
816}
817
818static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
819{
820 if (res->sr_slot != NULL) {
821 if (res->sr_slot->table->session != NULL)
822 nfs41_sequence_free_slot(res);
823 else
824 nfs40_sequence_free_slot(res);
825 }
826}
827
Peng Tao2c4b1312014-06-11 05:24:16 +0800828int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400829{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500830 if (res->sr_slot == NULL)
Trond Myklebust14516c32010-07-31 14:29:06 -0400831 return 1;
Chuck Lever3bd23842013-08-09 12:49:19 -0400832 if (!res->sr_slot->table->session)
833 return nfs40_sequence_done(task, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400834 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400835}
Peng Tao2c4b1312014-06-11 05:24:16 +0800836EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Trond Myklebustdf896452010-06-16 09:52:26 -0400837
Andy Adamsonce5039c2009-04-01 09:22:13 -0400838static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
839{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400840 struct nfs4_call_sync_data *data = calldata;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400841
Trond Myklebust035168ab2010-06-16 09:52:26 -0400842 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
843
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500844 nfs4_setup_sequence(data->seq_server->nfs_client,
845 data->seq_args, data->seq_res, task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400846}
847
Andy Adamson69ab40c2009-04-01 09:22:19 -0400848static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
849{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400850 struct nfs4_call_sync_data *data = calldata;
Andy Adamson69ab40c2009-04-01 09:22:19 -0400851
Trond Myklebust14516c32010-07-31 14:29:06 -0400852 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400853}
854
Trond Myklebust17280172012-03-11 13:11:00 -0400855static const struct rpc_call_ops nfs41_call_sync_ops = {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400856 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400857 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400858};
859
Chuck Lever3bd23842013-08-09 12:49:19 -0400860#else /* !CONFIG_NFS_V4_1 */
861
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400862static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
863{
864 return nfs40_sequence_done(task, res);
865}
866
867static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
868{
869 if (res->sr_slot != NULL)
870 nfs40_sequence_free_slot(res);
871}
872
Peng Tao2c4b1312014-06-11 05:24:16 +0800873int nfs4_sequence_done(struct rpc_task *task,
874 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400875{
Chuck Lever3bd23842013-08-09 12:49:19 -0400876 return nfs40_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400877}
Peng Tao2c4b1312014-06-11 05:24:16 +0800878EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Chuck Lever3bd23842013-08-09 12:49:19 -0400879
880#endif /* !CONFIG_NFS_V4_1 */
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400881
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500882int nfs4_setup_sequence(const struct nfs_client *client,
883 struct nfs4_sequence_args *args,
884 struct nfs4_sequence_res *res,
885 struct rpc_task *task)
886{
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500887 struct nfs4_session *session = nfs4_get_session(client);
Anna Schumaker76ee0352017-01-10 16:49:31 -0500888 struct nfs4_slot_table *tbl = client->cl_slot_tbl;
Anna Schumaker3d358082017-01-11 10:54:04 -0500889 struct nfs4_slot *slot;
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500890
Anna Schumaker9dd9107f2017-01-10 12:01:46 -0500891 /* slot already allocated? */
892 if (res->sr_slot != NULL)
893 goto out_start;
894
Anna Schumaker76ee0352017-01-10 16:49:31 -0500895 if (session) {
896 tbl = &session->fc_slot_table;
897 task->tk_timeout = 0;
898 }
899
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500900 spin_lock(&tbl->slot_tbl_lock);
Anna Schumaker76ee0352017-01-10 16:49:31 -0500901 /* The state manager will wait until the slot table is empty */
902 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
903 goto out_sleep;
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500904
Anna Schumaker3d358082017-01-11 10:54:04 -0500905 slot = nfs4_alloc_slot(tbl);
906 if (IS_ERR(slot)) {
907 /* Try again in 1/4 second */
908 if (slot == ERR_PTR(-ENOMEM))
909 task->tk_timeout = HZ >> 2;
Anna Schumaker0dcee8b2017-01-10 16:29:54 -0500910 goto out_sleep;
Anna Schumaker3d358082017-01-11 10:54:04 -0500911 }
Anna Schumaker6994cdd2017-01-10 16:13:27 -0500912 spin_unlock(&tbl->slot_tbl_lock);
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500913
Anna Schumaker3d358082017-01-11 10:54:04 -0500914 slot->privileged = args->sa_privileged ? 1 : 0;
915 args->sa_slot = slot;
916
917 res->sr_slot = slot;
918 if (session) {
919 res->sr_timestamp = jiffies;
920 res->sr_status_flags = 0;
921 res->sr_status = 1;
Anna Schumaker3d358082017-01-11 10:54:04 -0500922 }
923
Anna Schumakerad05cc02017-01-11 13:37:06 -0500924 trace_nfs4_setup_sequence(session, args);
Anna Schumaker9dd9107f2017-01-10 12:01:46 -0500925out_start:
926 rpc_call_start(task);
927 return 0;
Anna Schumaker0dcee8b2017-01-10 16:29:54 -0500928
929out_sleep:
930 if (args->sa_privileged)
931 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
932 NULL, RPC_PRIORITY_PRIVILEGED);
933 else
934 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
935 spin_unlock(&tbl->slot_tbl_lock);
936 return -EAGAIN;
Anna Schumaker7981c8a2017-01-10 11:39:53 -0500937}
938EXPORT_SYMBOL_GPL(nfs4_setup_sequence);
939
Chuck Lever9915ea72013-08-09 12:48:27 -0400940static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
941{
942 struct nfs4_call_sync_data *data = calldata;
Anna Schumaker42e1cca2017-01-09 15:48:22 -0500943 nfs4_setup_sequence(data->seq_server->nfs_client,
Chuck Lever9915ea72013-08-09 12:48:27 -0400944 data->seq_args, data->seq_res, task);
945}
946
947static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
948{
949 struct nfs4_call_sync_data *data = calldata;
950 nfs4_sequence_done(task, data->seq_res);
951}
952
953static const struct rpc_call_ops nfs40_call_sync_ops = {
954 .rpc_call_prepare = nfs40_call_sync_prepare,
955 .rpc_call_done = nfs40_call_sync_done,
956};
957
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400958static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
Trond Myklebustad389da2007-06-05 12:30:00 -0400959 struct nfs_server *server,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500960 struct rpc_message *msg,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100961 struct nfs4_sequence_args *args,
962 struct nfs4_sequence_res *res)
Trond Myklebustad389da2007-06-05 12:30:00 -0400963{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100964 int ret;
965 struct rpc_task *task;
Chuck Lever9915ea72013-08-09 12:48:27 -0400966 struct nfs_client *clp = server->nfs_client;
967 struct nfs4_call_sync_data data = {
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100968 .seq_server = server,
969 .seq_args = args,
970 .seq_res = res,
971 };
972 struct rpc_task_setup task_setup = {
973 .rpc_client = clnt,
974 .rpc_message = msg,
Chuck Lever9915ea72013-08-09 12:48:27 -0400975 .callback_ops = clp->cl_mvops->call_sync_ops,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100976 .callback_data = &data
977 };
978
979 task = rpc_run_task(&task_setup);
980 if (IS_ERR(task))
981 ret = PTR_ERR(task);
982 else {
983 ret = task->tk_status;
Trond Myklebustad389da2007-06-05 12:30:00 -0400984 rpc_put_task(task);
985 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100986 return ret;
987}
988
Bryan Schumaker7c513052011-03-24 17:12:24 +0000989int nfs4_call_sync(struct rpc_clnt *clnt,
990 struct nfs_server *server,
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000991 struct rpc_message *msg,
992 struct nfs4_sequence_args *args,
993 struct nfs4_sequence_res *res,
994 int cache_reply)
995{
Chuck Levera9c92d62013-08-09 12:48:18 -0400996 nfs4_init_sequence(args, res, cache_reply);
Chuck Lever9915ea72013-08-09 12:48:27 -0400997 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000998}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Trond Myklebustd3129ef2017-01-11 22:07:28 -05001000static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo,
1001 unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 struct nfs_inode *nfsi = NFS_I(dir);
1004
1005 spin_lock(&dir->i_lock);
Trond Myklebust359d7d12012-05-28 10:01:34 -04001006 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
Trond Myklebuste603a4c2016-12-16 16:55:55 -05001007 if (cinfo->atomic && cinfo->before == dir->i_version) {
1008 nfsi->cache_validity &= ~NFS_INO_REVAL_PAGECACHE;
1009 nfsi->attrtimeo_timestamp = jiffies;
1010 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 nfs_force_lookup_revalidate(dir);
Trond Myklebuste603a4c2016-12-16 16:55:55 -05001012 if (cinfo->before != dir->i_version)
1013 nfsi->cache_validity |= NFS_INO_INVALID_ACCESS |
1014 NFS_INO_INVALID_ACL;
1015 }
Trond Myklebusta9a4a872011-10-17 16:08:46 -07001016 dir->i_version = cinfo->after;
Trond Myklebustd3129ef2017-01-11 22:07:28 -05001017 nfsi->read_cache_jiffies = timestamp;
Trond Myklebust3235b402015-02-26 19:52:06 -05001018 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
David Howellsde242c02012-12-20 21:52:38 +00001019 nfs_fscache_invalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 spin_unlock(&dir->i_lock);
1021}
1022
1023struct nfs4_opendata {
1024 struct kref kref;
1025 struct nfs_openargs o_arg;
1026 struct nfs_openres o_res;
1027 struct nfs_open_confirmargs c_arg;
1028 struct nfs_open_confirmres c_res;
Trond Myklebust6926afd12012-01-07 13:22:46 -05001029 struct nfs4_string owner_name;
1030 struct nfs4_string group_name;
Kinglong Meea49c2692015-07-27 15:31:38 +08001031 struct nfs4_label *a_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 struct nfs_fattr f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001033 struct nfs4_label *f_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct dentry *dir;
Al Viro82a2c1b2011-06-22 18:30:55 -04001035 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct nfs4_state_owner *owner;
1037 struct nfs4_state *state;
1038 struct iattr attrs;
1039 unsigned long timestamp;
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04001040 bool rpc_done;
1041 bool file_created;
1042 bool is_recover;
1043 bool cancelled;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001044 int rpc_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045};
Trond Myklebustdecf4912005-10-27 22:12:39 -04001046
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001047static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1048 int err, struct nfs4_exception *exception)
1049{
1050 if (err != -EINVAL)
1051 return false;
1052 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1053 return false;
1054 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1055 exception->retry = 1;
1056 return true;
1057}
1058
Trond Myklebust6ae37332015-01-30 14:21:14 -05001059static u32
1060nfs4_map_atomic_open_share(struct nfs_server *server,
1061 fmode_t fmode, int openflags)
1062{
1063 u32 res = 0;
1064
1065 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1066 case FMODE_READ:
1067 res = NFS4_SHARE_ACCESS_READ;
1068 break;
1069 case FMODE_WRITE:
1070 res = NFS4_SHARE_ACCESS_WRITE;
1071 break;
1072 case FMODE_READ|FMODE_WRITE:
1073 res = NFS4_SHARE_ACCESS_BOTH;
1074 }
1075 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1076 goto out;
1077 /* Want no delegation if we're using O_DIRECT */
1078 if (openflags & O_DIRECT)
1079 res |= NFS4_SHARE_WANT_NO_DELEG;
1080out:
1081 return res;
1082}
1083
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001084static enum open_claim_type4
1085nfs4_map_atomic_open_claim(struct nfs_server *server,
1086 enum open_claim_type4 claim)
1087{
1088 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1089 return claim;
1090 switch (claim) {
1091 default:
1092 return claim;
1093 case NFS4_OPEN_CLAIM_FH:
1094 return NFS4_OPEN_CLAIM_NULL;
1095 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1096 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1097 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1098 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1099 }
1100}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102static void nfs4_init_opendata_res(struct nfs4_opendata *p)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001103{
1104 p->o_res.f_attr = &p->f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001105 p->o_res.f_label = p->f_label;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001106 p->o_res.seqid = p->o_arg.seqid;
1107 p->c_res.seqid = p->c_arg.seqid;
1108 p->o_res.server = p->o_arg.server;
Andy Adamson5f657532012-10-03 02:39:34 -04001109 p->o_res.access_request = p->o_arg.access;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001110 nfs_fattr_init(&p->f_attr);
Trond Myklebust6926afd12012-01-07 13:22:46 -05001111 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001112}
1113
Al Viro82a2c1b2011-06-22 18:30:55 -04001114static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001115 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001116 const struct iattr *attrs,
David Quigley1775fd32013-05-22 12:50:42 -04001117 struct nfs4_label *label,
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001118 enum open_claim_type4 claim,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001119 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001120{
Al Viro82a2c1b2011-06-22 18:30:55 -04001121 struct dentry *parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001122 struct inode *dir = d_inode(parent);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001123 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust63f5f792015-01-23 19:19:25 -05001124 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001125 struct nfs4_opendata *p;
1126
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001127 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001128 if (p == NULL)
1129 goto err;
David Quigley14c43f72013-05-22 12:50:43 -04001130
1131 p->f_label = nfs4_label_alloc(server, gfp_mask);
1132 if (IS_ERR(p->f_label))
1133 goto err_free_p;
1134
Kinglong Meea49c2692015-07-27 15:31:38 +08001135 p->a_label = nfs4_label_alloc(server, gfp_mask);
1136 if (IS_ERR(p->a_label))
1137 goto err_free_f;
1138
Trond Myklebust63f5f792015-01-23 19:19:25 -05001139 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1140 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05001141 if (IS_ERR(p->o_arg.seqid))
David Quigley14c43f72013-05-22 12:50:43 -04001142 goto err_free_label;
Al Viro82a2c1b2011-06-22 18:30:55 -04001143 nfs_sb_active(dentry->d_sb);
1144 p->dentry = dget(dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001145 p->dir = parent;
1146 p->owner = sp;
1147 atomic_inc(&sp->so_count);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001148 p->o_arg.open_flags = flags;
1149 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05001150 p->o_arg.umask = current_umask();
Trond Myklebust536585c2016-11-10 15:40:34 -05001151 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
Trond Myklebust6ae37332015-01-30 14:21:14 -05001152 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1153 fmode, flags);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001154 /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1155 * will return permission denied for all bits until close */
1156 if (!(flags & O_EXCL)) {
1157 /* ask server to check for all possible rights as results
1158 * are cached */
Trond Myklebust536585c2016-11-10 15:40:34 -05001159 switch (p->o_arg.claim) {
1160 default:
1161 break;
1162 case NFS4_OPEN_CLAIM_NULL:
1163 case NFS4_OPEN_CLAIM_FH:
1164 p->o_arg.access = NFS4_ACCESS_READ |
1165 NFS4_ACCESS_MODIFY |
1166 NFS4_ACCESS_EXTEND |
1167 NFS4_ACCESS_EXECUTE;
1168 }
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001169 }
David Howells7539bba2006-08-22 20:06:09 -04001170 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001171 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1172 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
Al Viro82a2c1b2011-06-22 18:30:55 -04001173 p->o_arg.name = &dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001174 p->o_arg.server = server;
David Quigleyaa9c2662013-05-22 12:50:44 -04001175 p->o_arg.bitmask = nfs4_bitmask(server, label);
Trond Myklebust1549210f2012-06-05 09:16:47 -04001176 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
Kinglong Meea49c2692015-07-27 15:31:38 +08001177 p->o_arg.label = nfs4_label_copy(p->a_label, label);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001178 switch (p->o_arg.claim) {
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001179 case NFS4_OPEN_CLAIM_NULL:
1180 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1181 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1182 p->o_arg.fh = NFS_FH(dir);
1183 break;
1184 case NFS4_OPEN_CLAIM_PREVIOUS:
1185 case NFS4_OPEN_CLAIM_FH:
1186 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1187 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
David Howells2b0143b2015-03-17 22:25:59 +00001188 p->o_arg.fh = NFS_FH(d_inode(dentry));
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001189 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001190 if (attrs != NULL && attrs->ia_valid != 0) {
Trond Myklebustc281fa9c2013-08-20 21:06:49 -04001191 __u32 verf[2];
Trond Myklebustd77d76f2010-06-16 09:52:27 -04001192
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001193 p->o_arg.u.attrs = &p->attrs;
1194 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Chuck Levercd937102012-03-02 17:14:31 -05001195
1196 verf[0] = jiffies;
1197 verf[1] = current->pid;
1198 memcpy(p->o_arg.u.verifier.data, verf,
1199 sizeof(p->o_arg.u.verifier.data));
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001200 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001201 p->c_arg.fh = &p->o_res.fh;
1202 p->c_arg.stateid = &p->o_res.stateid;
1203 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001204 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001205 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001206 return p;
David Quigley14c43f72013-05-22 12:50:43 -04001207
1208err_free_label:
Kinglong Meea49c2692015-07-27 15:31:38 +08001209 nfs4_label_free(p->a_label);
1210err_free_f:
David Quigley14c43f72013-05-22 12:50:43 -04001211 nfs4_label_free(p->f_label);
1212err_free_p:
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001213 kfree(p);
1214err:
1215 dput(parent);
1216 return NULL;
1217}
1218
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001219static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001220{
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001221 struct nfs4_opendata *p = container_of(kref,
1222 struct nfs4_opendata, kref);
Al Viro82a2c1b2011-06-22 18:30:55 -04001223 struct super_block *sb = p->dentry->d_sb;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001224
1225 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001226 nfs4_sequence_free_slot(&p->o_res.seq_res);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001227 if (p->state != NULL)
1228 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001229 nfs4_put_state_owner(p->owner);
David Quigley14c43f72013-05-22 12:50:43 -04001230
Kinglong Meea49c2692015-07-27 15:31:38 +08001231 nfs4_label_free(p->a_label);
David Quigley14c43f72013-05-22 12:50:43 -04001232 nfs4_label_free(p->f_label);
1233
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001234 dput(p->dir);
Al Viro82a2c1b2011-06-22 18:30:55 -04001235 dput(p->dentry);
1236 nfs_sb_deactive(sb);
Trond Myklebust6926afd12012-01-07 13:22:46 -05001237 nfs_fattr_free_names(&p->f_attr);
Trond Myklebuste911b812014-03-26 13:24:37 -07001238 kfree(p->f_attr.mdsthreshold);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001239 kfree(p);
1240}
1241
1242static void nfs4_opendata_put(struct nfs4_opendata *p)
1243{
1244 if (p != NULL)
1245 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001246}
1247
Trond Myklebust24311f82015-09-20 10:50:17 -04001248static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1249 fmode_t fmode)
1250{
1251 switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1252 case FMODE_READ|FMODE_WRITE:
1253 return state->n_rdwr != 0;
1254 case FMODE_WRITE:
1255 return state->n_wronly != 0;
1256 case FMODE_READ:
1257 return state->n_rdonly != 0;
1258 }
1259 WARN_ON_ONCE(1);
1260 return false;
1261}
1262
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001263static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -04001264{
1265 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001266
Trond Myklebust536e43d2012-01-17 22:04:26 -05001267 if (open_mode & (O_EXCL|O_TRUNC))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001268 goto out;
1269 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001270 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -05001271 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1272 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001273 break;
1274 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001275 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1276 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001277 break;
1278 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001279 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1280 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001281 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001282out:
Trond Myklebust6ee41262007-07-08 14:11:36 -04001283 return ret;
1284}
1285
Trond Myklebust2a606182015-08-19 22:30:00 -05001286static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1287 enum open_claim_type4 claim)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001288{
Trond Myklebust652f89f2011-12-09 19:05:58 -05001289 if (delegation == NULL)
1290 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001291 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001292 return 0;
Trond Myklebustd25be542013-02-05 11:43:28 -05001293 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
1294 return 0;
Trond Myklebust2a606182015-08-19 22:30:00 -05001295 switch (claim) {
1296 case NFS4_OPEN_CLAIM_NULL:
1297 case NFS4_OPEN_CLAIM_FH:
1298 break;
1299 case NFS4_OPEN_CLAIM_PREVIOUS:
1300 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1301 break;
1302 default:
1303 return 0;
1304 }
Trond Myklebustb7391f42008-12-23 15:21:52 -05001305 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001306 return 1;
1307}
1308
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001309static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +01001310{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001311 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +01001312 case FMODE_WRITE:
1313 state->n_wronly++;
1314 break;
1315 case FMODE_READ:
1316 state->n_rdonly++;
1317 break;
1318 case FMODE_READ|FMODE_WRITE:
1319 state->n_rdwr++;
1320 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001321 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +01001322}
1323
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04001324#ifdef CONFIG_NFS_V4_1
1325static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1326{
1327 if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1328 return true;
1329 if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1330 return true;
1331 if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1332 return true;
1333 return false;
1334}
1335#endif /* CONFIG_NFS_V4_1 */
1336
Trond Myklebust4f14c192014-02-12 19:15:06 -05001337static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
Trond Myklebust003707c2007-07-05 18:07:55 -04001338{
Trond Myklebust4f14c192014-02-12 19:15:06 -05001339 struct nfs_client *clp = state->owner->so_server->nfs_client;
1340 bool need_recover = false;
1341
1342 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1343 need_recover = true;
1344 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1345 need_recover = true;
1346 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1347 need_recover = true;
1348 if (need_recover)
1349 nfs4_state_mark_reclaim_nograce(clp, state);
1350}
1351
Trond Myklebuste999e802014-02-10 18:20:47 -05001352static bool nfs_need_update_open_stateid(struct nfs4_state *state,
Trond Myklebust1393d962016-09-22 13:39:13 -04001353 const nfs4_stateid *stateid, nfs4_stateid *freeme)
Trond Myklebuste999e802014-02-10 18:20:47 -05001354{
1355 if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0)
1356 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001357 if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001358 nfs4_stateid_copy(freeme, &state->open_stateid);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001359 nfs_test_and_clear_all_open_stateid(state);
Trond Myklebuste999e802014-02-10 18:20:47 -05001360 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001361 }
Trond Myklebuste999e802014-02-10 18:20:47 -05001362 if (nfs4_stateid_is_newer(stateid, &state->open_stateid))
1363 return true;
1364 return false;
1365}
1366
Trond Myklebustf95549c2015-01-23 18:06:09 -05001367static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1368{
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001369 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1370 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001371 if (state->n_wronly)
1372 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1373 if (state->n_rdonly)
1374 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1375 if (state->n_rdwr)
1376 set_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001377 set_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebustf95549c2015-01-23 18:06:09 -05001378}
1379
Trond Myklebust226056c2014-02-11 10:41:07 -05001380static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1381 nfs4_stateid *stateid, fmode_t fmode)
1382{
1383 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1384 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1385 case FMODE_WRITE:
1386 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1387 break;
1388 case FMODE_READ:
1389 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1390 break;
1391 case 0:
1392 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1393 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1394 clear_bit(NFS_OPEN_STATE, &state->flags);
1395 }
1396 if (stateid == NULL)
1397 return;
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001398 /* Handle OPEN+OPEN_DOWNGRADE races */
1399 if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1400 !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
Trond Myklebustf95549c2015-01-23 18:06:09 -05001401 nfs_resync_open_stateid_locked(state);
Trond Myklebust226056c2014-02-11 10:41:07 -05001402 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001403 }
Trond Myklebust003707c2007-07-05 18:07:55 -04001404 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001405 nfs4_stateid_copy(&state->stateid, stateid);
1406 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust226056c2014-02-11 10:41:07 -05001407}
1408
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07001409static void nfs_clear_open_stateid(struct nfs4_state *state,
1410 nfs4_stateid *arg_stateid,
1411 nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust226056c2014-02-11 10:41:07 -05001412{
1413 write_seqlock(&state->seqlock);
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001414 /* Ignore, if the CLOSE argment doesn't match the current stateid */
1415 if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1416 nfs_clear_open_stateid_locked(state, stateid, fmode);
Trond Myklebust226056c2014-02-11 10:41:07 -05001417 write_sequnlock(&state->seqlock);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001418 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1419 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
Trond Myklebust226056c2014-02-11 10:41:07 -05001420}
1421
Trond Myklebust1393d962016-09-22 13:39:13 -04001422static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1423 const nfs4_stateid *stateid, fmode_t fmode,
1424 nfs4_stateid *freeme)
Trond Myklebust003707c2007-07-05 18:07:55 -04001425{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001426 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001427 case FMODE_READ:
1428 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1429 break;
1430 case FMODE_WRITE:
1431 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1432 break;
1433 case FMODE_READ|FMODE_WRITE:
1434 set_bit(NFS_O_RDWR_STATE, &state->flags);
1435 }
Trond Myklebust1393d962016-09-22 13:39:13 -04001436 if (!nfs_need_update_open_stateid(state, stateid, freeme))
Trond Myklebuste999e802014-02-10 18:20:47 -05001437 return;
1438 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1439 nfs4_stateid_copy(&state->stateid, stateid);
1440 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001441}
1442
Trond Myklebust1393d962016-09-22 13:39:13 -04001443static void __update_open_stateid(struct nfs4_state *state,
1444 const nfs4_stateid *open_stateid,
1445 const nfs4_stateid *deleg_stateid,
1446 fmode_t fmode,
1447 nfs4_stateid *freeme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001449 /*
1450 * Protect the call to nfs4_state_set_mode_locked and
1451 * serialise the stateid update
1452 */
Andrew Elble361cad32015-12-02 09:20:57 -05001453 spin_lock(&state->owner->so_lock);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001454 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001455 if (deleg_stateid != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001456 nfs4_stateid_copy(&state->stateid, deleg_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001457 set_bit(NFS_DELEGATED_STATE, &state->flags);
1458 }
1459 if (open_stateid != NULL)
Trond Myklebust1393d962016-09-22 13:39:13 -04001460 nfs_set_open_stateid_locked(state, open_stateid, fmode, freeme);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001461 write_sequnlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001462 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -07001463 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Trond Myklebust1393d962016-09-22 13:39:13 -04001466static int update_open_stateid(struct nfs4_state *state,
1467 const nfs4_stateid *open_stateid,
1468 const nfs4_stateid *delegation,
1469 fmode_t fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001470{
Trond Myklebust1393d962016-09-22 13:39:13 -04001471 struct nfs_server *server = NFS_SERVER(state->inode);
1472 struct nfs_client *clp = server->nfs_client;
Trond Myklebust34310432008-12-23 15:21:38 -05001473 struct nfs_inode *nfsi = NFS_I(state->inode);
1474 struct nfs_delegation *deleg_cur;
Arnd Bergmann83aa3e02016-10-18 17:21:30 +02001475 nfs4_stateid freeme = { };
Trond Myklebust34310432008-12-23 15:21:38 -05001476 int ret = 0;
1477
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001478 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -05001479
1480 rcu_read_lock();
1481 deleg_cur = rcu_dereference(nfsi->delegation);
1482 if (deleg_cur == NULL)
1483 goto no_delegation;
1484
1485 spin_lock(&deleg_cur->lock);
Trond Myklebust17f26b12013-08-21 15:48:42 -04001486 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
Trond Myklebustd25be542013-02-05 11:43:28 -05001487 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001488 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001489 goto no_delegation_unlock;
1490
1491 if (delegation == NULL)
1492 delegation = &deleg_cur->stateid;
Trond Myklebustf597c532012-03-04 18:13:56 -05001493 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
Trond Myklebust34310432008-12-23 15:21:38 -05001494 goto no_delegation_unlock;
1495
Trond Myklebustb7391f42008-12-23 15:21:52 -05001496 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebust1393d962016-09-22 13:39:13 -04001497 __update_open_stateid(state, open_stateid, &deleg_cur->stateid,
1498 fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001499 ret = 1;
1500no_delegation_unlock:
1501 spin_unlock(&deleg_cur->lock);
1502no_delegation:
1503 rcu_read_unlock();
1504
1505 if (!ret && open_stateid != NULL) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001506 __update_open_stateid(state, open_stateid, NULL, fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001507 ret = 1;
1508 }
Trond Myklebust4f14c192014-02-12 19:15:06 -05001509 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
Trond Myklebust1393d962016-09-22 13:39:13 -04001510 nfs4_schedule_state_manager(clp);
1511 if (freeme.type != 0)
1512 nfs4_test_and_free_stateid(server, &freeme,
1513 state->owner->so_cred);
Trond Myklebust34310432008-12-23 15:21:38 -05001514
1515 return ret;
1516}
1517
Trond Myklebust39071e62015-01-24 15:07:56 -05001518static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1519 const nfs4_stateid *stateid)
1520{
1521 struct nfs4_state *state = lsp->ls_state;
1522 bool ret = false;
1523
1524 spin_lock(&state->state_lock);
1525 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1526 goto out_noupdate;
1527 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1528 goto out_noupdate;
1529 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1530 ret = true;
1531out_noupdate:
1532 spin_unlock(&state->state_lock);
1533 return ret;
1534}
Trond Myklebust34310432008-12-23 15:21:38 -05001535
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001536static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001537{
1538 struct nfs_delegation *delegation;
1539
1540 rcu_read_lock();
1541 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001542 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001543 rcu_read_unlock();
1544 return;
1545 }
1546 rcu_read_unlock();
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001547 nfs4_inode_return_delegation(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001548}
1549
Trond Myklebust6ee41262007-07-08 14:11:36 -04001550static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001551{
1552 struct nfs4_state *state = opendata->state;
1553 struct nfs_inode *nfsi = NFS_I(state->inode);
1554 struct nfs_delegation *delegation;
Trond Myklebustf448bad2013-05-29 15:36:40 -04001555 int open_mode = opendata->o_arg.open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001556 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebust2a606182015-08-19 22:30:00 -05001557 enum open_claim_type4 claim = opendata->o_arg.claim;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001558 nfs4_stateid stateid;
1559 int ret = -EAGAIN;
1560
Trond Myklebustaac00a82007-07-05 19:02:21 -04001561 for (;;) {
Anna Schumaker61beef72014-09-03 14:15:40 -04001562 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001563 if (can_open_cached(state, fmode, open_mode)) {
Anna Schumaker61beef72014-09-03 14:15:40 -04001564 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001565 spin_unlock(&state->owner->so_lock);
Anna Schumaker61beef72014-09-03 14:15:40 -04001566 goto out_return_state;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001567 }
Anna Schumaker61beef72014-09-03 14:15:40 -04001568 spin_unlock(&state->owner->so_lock);
Trond Myklebust34310432008-12-23 15:21:38 -05001569 rcu_read_lock();
1570 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05001571 if (!can_open_delegated(delegation, fmode, claim)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001572 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001573 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001574 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001575 /* Save the delegation */
Trond Myklebustf597c532012-03-04 18:13:56 -05001576 nfs4_stateid_copy(&stateid, &delegation->stateid);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001577 rcu_read_unlock();
Trond Myklebustfa332942013-04-09 12:56:52 -04001578 nfs_release_seqid(opendata->o_arg.seqid);
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04001579 if (!opendata->is_recover) {
1580 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1581 if (ret != 0)
1582 goto out;
1583 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001584 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001585
1586 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001587 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001588 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001589 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001590out:
1591 return ERR_PTR(ret);
1592out_return_state:
1593 atomic_inc(&state->count);
1594 return state;
1595}
1596
Andy Adamsone23008e2012-10-02 21:07:32 -04001597static void
1598nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1599{
1600 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1601 struct nfs_delegation *delegation;
1602 int delegation_flags = 0;
1603
1604 rcu_read_lock();
1605 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1606 if (delegation)
1607 delegation_flags = delegation->flags;
1608 rcu_read_unlock();
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001609 switch (data->o_arg.claim) {
1610 default:
1611 break;
1612 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1613 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04001614 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1615 "returning a delegation for "
1616 "OPEN(CLAIM_DELEGATE_CUR)\n",
1617 clp->cl_hostname);
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001618 return;
1619 }
1620 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Andy Adamsone23008e2012-10-02 21:07:32 -04001621 nfs_inode_set_delegation(state->inode,
1622 data->owner->so_cred,
1623 &data->o_res);
1624 else
1625 nfs_inode_reclaim_delegation(state->inode,
1626 data->owner->so_cred,
1627 &data->o_res);
1628}
1629
1630/*
1631 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1632 * and update the nfs4_state.
1633 */
1634static struct nfs4_state *
1635_nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1636{
1637 struct inode *inode = data->state->inode;
1638 struct nfs4_state *state = data->state;
1639 int ret;
1640
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001641 if (!data->rpc_done) {
Anna Schumaker37a84842017-01-11 16:08:35 -05001642 if (data->rpc_status)
1643 return ERR_PTR(data->rpc_status);
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001644 /* cached opens have already been processed */
1645 goto update;
Andy Adamsone23008e2012-10-02 21:07:32 -04001646 }
1647
Andy Adamsone23008e2012-10-02 21:07:32 -04001648 ret = nfs_refresh_inode(inode, &data->f_attr);
1649 if (ret)
Anna Schumaker37a84842017-01-11 16:08:35 -05001650 return ERR_PTR(ret);
Andy Adamsone23008e2012-10-02 21:07:32 -04001651
1652 if (data->o_res.delegation_type != 0)
1653 nfs4_opendata_check_deleg(data, state);
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001654update:
Andy Adamsone23008e2012-10-02 21:07:32 -04001655 update_open_stateid(state, &data->o_res.stateid, NULL,
1656 data->o_arg.fmode);
Trond Myklebustd49f0422013-10-28 14:57:12 -04001657 atomic_inc(&state->count);
Andy Adamsone23008e2012-10-02 21:07:32 -04001658
1659 return state;
Andy Adamsone23008e2012-10-02 21:07:32 -04001660}
1661
Trond Myklebust4e2fcac2017-08-08 09:06:18 -04001662static struct inode *
1663nfs4_opendata_get_inode(struct nfs4_opendata *data)
1664{
1665 struct inode *inode;
1666
1667 switch (data->o_arg.claim) {
1668 case NFS4_OPEN_CLAIM_NULL:
1669 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1670 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1671 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
1672 return ERR_PTR(-EAGAIN);
1673 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh,
1674 &data->f_attr, data->f_label);
1675 break;
1676 default:
1677 inode = d_inode(data->dentry);
1678 ihold(inode);
1679 nfs_refresh_inode(inode, &data->f_attr);
1680 }
1681 return inode;
1682}
1683
Andy Adamsone23008e2012-10-02 21:07:32 -04001684static struct nfs4_state *
1685_nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001686{
1687 struct inode *inode;
1688 struct nfs4_state *state = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001689 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001690
Trond Myklebustaac00a82007-07-05 19:02:21 -04001691 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001692 state = nfs4_try_open_cached(data);
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05001693 trace_nfs4_cached_open(data->state);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001694 goto out;
1695 }
1696
Trond Myklebust4e2fcac2017-08-08 09:06:18 -04001697 inode = nfs4_opendata_get_inode(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001698 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001699 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001700 goto err;
1701 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001702 state = nfs4_get_open_state(inode, data->owner);
1703 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001704 goto err_put_inode;
Andy Adamsone23008e2012-10-02 21:07:32 -04001705 if (data->o_res.delegation_type != 0)
1706 nfs4_opendata_check_deleg(data, state);
Trond Myklebust34310432008-12-23 15:21:38 -05001707 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001708 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001709 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001710out:
Trond Myklebust7aa262b52013-02-28 16:19:59 -08001711 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001712 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001713err_put_inode:
1714 iput(inode);
1715err:
1716 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001717}
1718
Andy Adamsone23008e2012-10-02 21:07:32 -04001719static struct nfs4_state *
1720nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1721{
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001722 struct nfs4_state *ret;
1723
Andy Adamsone23008e2012-10-02 21:07:32 -04001724 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001725 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
1726 else
1727 ret = _nfs4_opendata_to_nfs4_state(data);
1728 nfs4_sequence_free_slot(&data->o_res.seq_res);
1729 return ret;
Andy Adamsone23008e2012-10-02 21:07:32 -04001730}
1731
Trond Myklebust864472e2006-01-03 09:55:15 +01001732static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1733{
1734 struct nfs_inode *nfsi = NFS_I(state->inode);
1735 struct nfs_open_context *ctx;
1736
1737 spin_lock(&state->inode->i_lock);
1738 list_for_each_entry(ctx, &nfsi->open_files, list) {
1739 if (ctx->state != state)
1740 continue;
1741 get_nfs_open_context(ctx);
1742 spin_unlock(&state->inode->i_lock);
1743 return ctx;
1744 }
1745 spin_unlock(&state->inode->i_lock);
1746 return ERR_PTR(-ENOENT);
1747}
1748
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001749static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
1750 struct nfs4_state *state, enum open_claim_type4 claim)
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001751{
1752 struct nfs4_opendata *opendata;
1753
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001754 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
David Quigley1775fd32013-05-22 12:50:42 -04001755 NULL, NULL, claim, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001756 if (opendata == NULL)
1757 return ERR_PTR(-ENOMEM);
1758 opendata->state = state;
1759 atomic_inc(&state->count);
1760 return opendata;
1761}
1762
Trond Myklebust24311f82015-09-20 10:50:17 -04001763static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
1764 fmode_t fmode)
Trond Myklebust864472e2006-01-03 09:55:15 +01001765{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001766 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001767 int ret;
1768
Trond Myklebust24311f82015-09-20 10:50:17 -04001769 if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
NeilBrown39f897f2015-06-29 14:28:54 +10001770 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001771 opendata->o_arg.open_flags = 0;
1772 opendata->o_arg.fmode = fmode;
Trond Myklebustbe36e182015-02-27 17:04:17 -05001773 opendata->o_arg.share_access = nfs4_map_atomic_open_share(
1774 NFS_SB(opendata->dentry->d_sb),
1775 fmode, 0);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001776 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1777 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1778 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001779 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001780 if (ret != 0)
1781 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001782 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001783 if (IS_ERR(newstate))
1784 return PTR_ERR(newstate);
Trond Myklebust24311f82015-09-20 10:50:17 -04001785 if (newstate != opendata->state)
1786 ret = -ESTALE;
Al Viro643168c2011-06-22 18:20:23 -04001787 nfs4_close_state(newstate, fmode);
Trond Myklebust24311f82015-09-20 10:50:17 -04001788 return ret;
Trond Myklebust864472e2006-01-03 09:55:15 +01001789}
1790
1791static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1792{
Trond Myklebust864472e2006-01-03 09:55:15 +01001793 int ret;
1794
Trond Myklebust4f14c192014-02-12 19:15:06 -05001795 /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */
1796 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1797 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1798 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001799 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001800 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04001801 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001802 smp_rmb();
Trond Myklebust24311f82015-09-20 10:50:17 -04001803 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1804 if (ret != 0)
1805 return ret;
1806 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1807 if (ret != 0)
1808 return ret;
1809 ret = nfs4_open_recover_helper(opendata, FMODE_READ);
1810 if (ret != 0)
1811 return ret;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001812 /*
1813 * We may have performed cached opens for all three recoveries.
1814 * Check if we need to update the current stateid.
1815 */
1816 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
Trond Myklebustf597c532012-03-04 18:13:56 -05001817 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001818 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001819 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001820 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001821 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001822 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001823 return 0;
1824}
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826/*
1827 * OPEN_RECLAIM:
1828 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
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{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001832 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001833 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001834 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 int status;
1836
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001837 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1838 NFS4_OPEN_CLAIM_PREVIOUS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001839 if (IS_ERR(opendata))
1840 return PTR_ERR(opendata);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001841 rcu_read_lock();
1842 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001843 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001844 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001845 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001846 opendata->o_arg.u.delegation_type = delegation_type;
1847 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001848 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return status;
1850}
1851
Trond Myklebust539cd032007-06-05 11:46:42 -04001852static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 struct nfs_server *server = NFS_SERVER(state->inode);
1855 struct nfs4_exception exception = { };
1856 int err;
1857 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001858 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04001859 trace_nfs4_open_reclaim(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001860 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
1861 continue;
Trond Myklebust168667c2010-10-19 19:47:49 -04001862 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001863 break;
1864 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 } while (exception.retry);
1866 return err;
1867}
1868
Trond Myklebust864472e2006-01-03 09:55:15 +01001869static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1870{
1871 struct nfs_open_context *ctx;
1872 int ret;
1873
1874 ctx = nfs4_state_find_open_context(state);
1875 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04001876 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04001877 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001878 put_nfs_open_context(ctx);
1879 return ret;
1880}
1881
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001882static 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 -07001883{
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001884 switch (err) {
1885 default:
1886 printk(KERN_ERR "NFS: %s: unhandled error "
1887 "%d.\n", __func__, err);
1888 case 0:
1889 case -ENOENT:
Trond Myklebust8eee52a2015-06-04 13:51:13 -04001890 case -EAGAIN:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001891 case -ESTALE:
1892 break;
1893 case -NFS4ERR_BADSESSION:
1894 case -NFS4ERR_BADSLOT:
1895 case -NFS4ERR_BAD_HIGH_SLOT:
1896 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1897 case -NFS4ERR_DEADSESSION:
1898 set_bit(NFS_DELEGATED_STATE, &state->flags);
1899 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
1900 return -EAGAIN;
1901 case -NFS4ERR_STALE_CLIENTID:
1902 case -NFS4ERR_STALE_STATEID:
1903 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001904 /* Don't recall a delegation if it was lost */
1905 nfs4_schedule_lease_recovery(server->nfs_client);
1906 return -EAGAIN;
Chuck Lever352297b2013-10-17 14:13:24 -04001907 case -NFS4ERR_MOVED:
1908 nfs4_schedule_migration_recovery(server);
1909 return -EAGAIN;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -04001910 case -NFS4ERR_LEASE_MOVED:
1911 nfs4_schedule_lease_moved_recovery(server->nfs_client);
1912 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001913 case -NFS4ERR_DELEG_REVOKED:
1914 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust404ea3562016-09-22 13:39:08 -04001915 case -NFS4ERR_EXPIRED:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001916 case -NFS4ERR_BAD_STATEID:
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001917 case -NFS4ERR_OPENMODE:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001918 nfs_inode_find_state_and_recover(state->inode,
1919 stateid);
1920 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust869f9df2014-11-10 18:43:56 -05001921 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001922 case -NFS4ERR_DELAY:
1923 case -NFS4ERR_GRACE:
1924 set_bit(NFS_DELEGATED_STATE, &state->flags);
1925 ssleep(1);
1926 return -EAGAIN;
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001927 case -ENOMEM:
1928 case -NFS4ERR_DENIED:
1929 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
1930 return 0;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return err;
1933}
1934
Trond Myklebust24311f82015-09-20 10:50:17 -04001935int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
1936 struct nfs4_state *state, const nfs4_stateid *stateid,
1937 fmode_t type)
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001938{
1939 struct nfs_server *server = NFS_SERVER(state->inode);
1940 struct nfs4_opendata *opendata;
Trond Myklebust24311f82015-09-20 10:50:17 -04001941 int err = 0;
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001942
1943 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1944 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1945 if (IS_ERR(opendata))
1946 return PTR_ERR(opendata);
1947 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
Jeff Layton5e99b532015-10-02 13:14:37 -04001948 write_seqlock(&state->seqlock);
1949 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1950 write_sequnlock(&state->seqlock);
Trond Myklebust24311f82015-09-20 10:50:17 -04001951 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1952 switch (type & (FMODE_READ|FMODE_WRITE)) {
1953 case FMODE_READ|FMODE_WRITE:
1954 case FMODE_WRITE:
1955 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1956 if (err)
1957 break;
1958 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1959 if (err)
1960 break;
1961 case FMODE_READ:
1962 err = nfs4_open_recover_helper(opendata, FMODE_READ);
1963 }
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04001964 nfs4_opendata_put(opendata);
1965 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
1966}
1967
Chuck Leverbe05c862013-08-09 12:49:47 -04001968static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
1969{
1970 struct nfs4_opendata *data = calldata;
1971
Anna Schumaker7981c8a2017-01-10 11:39:53 -05001972 nfs4_setup_sequence(data->o_arg.server->nfs_client,
1973 &data->c_arg.seq_args, &data->c_res.seq_res, task);
Chuck Leverbe05c862013-08-09 12:49:47 -04001974}
1975
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001976static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1977{
1978 struct nfs4_opendata *data = calldata;
1979
Trond Myklebust17ead6c2014-02-01 14:53:23 -05001980 nfs40_sequence_done(task, &data->c_res.seq_res);
Chuck Leverbe05c862013-08-09 12:49:47 -04001981
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001982 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001983 if (data->rpc_status == 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001984 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
Trond Myklebustbb226292008-01-02 15:19:18 -05001985 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001986 renew_lease(data->o_res.server, data->timestamp);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04001987 data->rpc_done = true;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001988 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001989}
1990
1991static void nfs4_open_confirm_release(void *calldata)
1992{
1993 struct nfs4_opendata *data = calldata;
1994 struct nfs4_state *state = NULL;
1995
1996 /* If this request hasn't been cancelled, do nothing */
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04001997 if (!data->cancelled)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001998 goto out_free;
1999 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04002000 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002001 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002002 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04002003 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04002004 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002005out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002006 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002007}
2008
2009static const struct rpc_call_ops nfs4_open_confirm_ops = {
Chuck Leverbe05c862013-08-09 12:49:47 -04002010 .rpc_call_prepare = nfs4_open_confirm_prepare,
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002011 .rpc_call_done = nfs4_open_confirm_done,
2012 .rpc_release = nfs4_open_confirm_release,
2013};
2014
2015/*
2016 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
2017 */
2018static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
2019{
David Howells2b0143b2015-03-17 22:25:59 +00002020 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002021 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002022 struct rpc_message msg = {
2023 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2024 .rpc_argp = &data->c_arg,
2025 .rpc_resp = &data->c_res,
2026 .rpc_cred = data->owner->so_cred,
2027 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002028 struct rpc_task_setup task_setup_data = {
2029 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002030 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002031 .callback_ops = &nfs4_open_confirm_ops,
2032 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002033 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002034 .flags = RPC_TASK_ASYNC,
2035 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 int status;
2037
Trond Myklebust17ead6c2014-02-01 14:53:23 -05002038 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002039 kref_get(&data->kref);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002040 data->rpc_done = false;
Trond Myklebust3e309912007-07-07 13:19:59 -04002041 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002042 data->timestamp = jiffies;
Benjamin Coddingtone92c1e02015-10-01 09:17:33 -04002043 if (data->is_recover)
2044 nfs4_set_sequence_privileged(&data->c_arg.seq_args);
Trond Myklebustc970aa82007-07-14 15:39:59 -04002045 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05002046 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002047 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05002048 status = rpc_wait_for_completion_task(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002049 if (status != 0) {
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002050 data->cancelled = true;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002051 smp_wmb();
2052 } else
2053 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05002054 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return status;
2056}
2057
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002058static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002060 struct nfs4_opendata *data = calldata;
2061 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust549b19c2013-04-16 18:42:34 -04002062 struct nfs_client *clp = sp->so_server->nfs_client;
Trond Myklebust2a606182015-08-19 22:30:00 -05002063 enum open_claim_type4 claim = data->o_arg.claim;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002064
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002065 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002066 goto out_wait;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002067 /*
2068 * Check if we still need to send an OPEN call, or if we can use
2069 * a delegation instead.
2070 */
2071 if (data->state != NULL) {
2072 struct nfs_delegation *delegation;
2073
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002074 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04002075 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002076 rcu_read_lock();
2077 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05002078 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
Trond Myklebust652f89f2011-12-09 19:05:58 -05002079 goto unlock_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002080 rcu_read_unlock();
2081 }
Trond Myklebust95b72eb2012-04-20 19:24:51 -04002082 /* Update client id. */
Trond Myklebust549b19c2013-04-16 18:42:34 -04002083 data->o_arg.clientid = clp->cl_clientid;
Trond Myklebust2a606182015-08-19 22:30:00 -05002084 switch (claim) {
2085 default:
2086 break;
Trond Myklebust8188df12013-04-23 14:31:19 -04002087 case NFS4_OPEN_CLAIM_PREVIOUS:
2088 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2089 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04002090 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
Trond Myklebust8188df12013-04-23 14:31:19 -04002091 case NFS4_OPEN_CLAIM_FH:
2092 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002093 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002094 data->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05002095 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
Andy Adamsond8985282009-04-01 09:22:21 -04002096 &data->o_arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04002097 &data->o_res.seq_res,
2098 task) != 0)
2099 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust549b19c2013-04-16 18:42:34 -04002100
2101 /* Set the create mode (note dependency on the session type) */
2102 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2103 if (data->o_arg.open_flags & O_EXCL) {
2104 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2105 if (nfs4_has_persistent_session(clp))
2106 data->o_arg.createmode = NFS4_CREATE_GUARDED;
2107 else if (clp->cl_mvops->minor_version > 0)
2108 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2109 }
Trond Myklebust6ee41262007-07-08 14:11:36 -04002110 return;
Trond Myklebust652f89f2011-12-09 19:05:58 -05002111unlock_no_action:
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05002112 trace_nfs4_cached_open(data->state);
Trond Myklebust652f89f2011-12-09 19:05:58 -05002113 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04002114out_no_action:
2115 task->tk_action = NULL;
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002116out_wait:
Trond Myklebustb75ad4c2012-11-29 17:27:47 -05002117 nfs4_sequence_done(task, &data->o_res.seq_res);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002118}
2119
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002120static void nfs4_open_done(struct rpc_task *task, void *calldata)
2121{
2122 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002124 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04002125
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04002126 if (!nfs4_sequence_process(task, &data->o_res.seq_res))
Trond Myklebust14516c32010-07-31 14:29:06 -04002127 return;
Andy Adamsond8985282009-04-01 09:22:21 -04002128
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002129 if (task->tk_status == 0) {
Trond Myklebust807d66d82012-10-02 17:09:00 -07002130 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2131 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07002132 case S_IFREG:
2133 break;
2134 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002135 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002136 break;
2137 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002138 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002139 break;
2140 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002141 data->rpc_status = -ENOTDIR;
Trond Myklebust807d66d82012-10-02 17:09:00 -07002142 }
Trond Myklebust6f926b52005-10-18 14:20:18 -07002143 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002144 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04002145 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2146 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07002147 }
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002148 data->rpc_done = true;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002149}
Trond Myklebust6f926b52005-10-18 14:20:18 -07002150
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002151static void nfs4_open_release(void *calldata)
2152{
2153 struct nfs4_opendata *data = calldata;
2154 struct nfs4_state *state = NULL;
2155
2156 /* If this request hasn't been cancelled, do nothing */
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002157 if (!data->cancelled)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002158 goto out_free;
2159 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04002160 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002161 goto out_free;
2162 /* In case we need an open_confirm, no cleanup! */
2163 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2164 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002165 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04002166 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04002167 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002168out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002169 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002170}
2171
2172static const struct rpc_call_ops nfs4_open_ops = {
2173 .rpc_call_prepare = nfs4_open_prepare,
2174 .rpc_call_done = nfs4_open_done,
2175 .rpc_release = nfs4_open_release,
2176};
2177
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002178static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002179{
David Howells2b0143b2015-03-17 22:25:59 +00002180 struct inode *dir = d_inode(data->dir);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002181 struct nfs_server *server = NFS_SERVER(dir);
2182 struct nfs_openargs *o_arg = &data->o_arg;
2183 struct nfs_openres *o_res = &data->o_res;
2184 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002185 struct rpc_message msg = {
2186 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2187 .rpc_argp = o_arg,
2188 .rpc_resp = o_res,
2189 .rpc_cred = data->owner->so_cred,
2190 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002191 struct rpc_task_setup task_setup_data = {
2192 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002193 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002194 .callback_ops = &nfs4_open_ops,
2195 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002196 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002197 .flags = RPC_TASK_ASYNC,
2198 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002199 int status;
2200
Chuck Levera9c92d62013-08-09 12:48:18 -04002201 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002202 kref_get(&data->kref);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002203 data->rpc_done = false;
Trond Myklebust3e309912007-07-07 13:19:59 -04002204 data->rpc_status = 0;
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002205 data->cancelled = false;
2206 data->is_recover = false;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002207 if (isrecover) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04002208 nfs4_set_sequence_privileged(&o_arg->seq_args);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002209 data->is_recover = true;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002210 }
Trond Myklebustc970aa82007-07-14 15:39:59 -04002211 task = rpc_run_task(&task_setup_data);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002212 if (IS_ERR(task))
2213 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05002214 status = rpc_wait_for_completion_task(task);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002215 if (status != 0) {
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002216 data->cancelled = true;
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002217 smp_wmb();
2218 } else
2219 status = data->rpc_status;
2220 rpc_put_task(task);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002221
2222 return status;
2223}
2224
2225static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2226{
David Howells2b0143b2015-03-17 22:25:59 +00002227 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002228 struct nfs_openres *o_res = &data->o_res;
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002229 int status;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002230
2231 status = nfs4_run_open_task(data, 1);
2232 if (status != 0 || !data->rpc_done)
2233 return status;
2234
Trond Myklebust6926afd12012-01-07 13:22:46 -05002235 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2236
Anna Schumakerd7e98252017-01-11 16:13:29 -05002237 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM)
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002238 status = _nfs4_proc_open_confirm(data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002239
2240 return status;
2241}
2242
Trond Myklebustf3792d62014-07-10 08:54:32 -04002243/*
2244 * Additional permission checks in order to distinguish between an
2245 * open for read, and an open for execute. This works around the
2246 * fact that NFSv4 OPEN treats read and execute permissions as being
2247 * the same.
2248 * Note that in the non-execute case, we want to turn off permission
2249 * checking if we just created a new file (POSIX open() semantics).
2250 */
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002251static int nfs4_opendata_access(struct rpc_cred *cred,
2252 struct nfs4_opendata *opendata,
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002253 struct nfs4_state *state, fmode_t fmode,
2254 int openflags)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002255{
2256 struct nfs_access_entry cache;
Anna Schumaker1e6f2092017-07-25 16:10:47 -04002257 u32 mask, flags;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002258
2259 /* access call failed or for some reason the server doesn't
2260 * support any access modes -- defer access call until later */
2261 if (opendata->o_res.access_supported == 0)
2262 return 0;
2263
2264 mask = 0;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002265 /*
2266 * Use openflags to check for exec, because fmode won't
2267 * always have FMODE_EXEC set when file open for exec.
2268 */
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002269 if (openflags & __FMODE_EXEC) {
2270 /* ONLY check for exec rights */
Anna Schumaker1e6f2092017-07-25 16:10:47 -04002271 if (S_ISDIR(state->inode->i_mode))
2272 mask = NFS4_ACCESS_LOOKUP;
2273 else
2274 mask = NFS4_ACCESS_EXECUTE;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002275 } else if ((fmode & FMODE_READ) && !opendata->file_created)
Anna Schumaker1e6f2092017-07-25 16:10:47 -04002276 mask = NFS4_ACCESS_READ;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002277
2278 cache.cred = cred;
2279 cache.jiffies = jiffies;
2280 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2281 nfs_access_add_cache(state->inode, &cache);
2282
Anna Schumaker1e6f2092017-07-25 16:10:47 -04002283 flags = NFS4_ACCESS_READ | NFS4_ACCESS_EXECUTE | NFS4_ACCESS_LOOKUP;
2284 if ((mask & ~cache.mask & flags) == 0)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002285 return 0;
2286
Weston Andros Adamson998f40b2012-11-02 18:00:56 -04002287 return -EACCES;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002288}
2289
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002290/*
2291 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2292 */
2293static int _nfs4_proc_open(struct nfs4_opendata *data)
2294{
David Howells2b0143b2015-03-17 22:25:59 +00002295 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002296 struct nfs_server *server = NFS_SERVER(dir);
2297 struct nfs_openargs *o_arg = &data->o_arg;
2298 struct nfs_openres *o_res = &data->o_res;
2299 int status;
2300
2301 status = nfs4_run_open_task(data, 0);
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002302 if (!data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002303 return status;
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002304 if (status != 0) {
2305 if (status == -NFS4ERR_BADNAME &&
2306 !(o_arg->open_flags & O_CREAT))
2307 return -ENOENT;
2308 return status;
2309 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002310
Trond Myklebust6926afd12012-01-07 13:22:46 -05002311 nfs_fattr_map_and_free_names(server, &data->f_attr);
2312
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002313 if (o_arg->open_flags & O_CREAT) {
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002314 if (o_arg->open_flags & O_EXCL)
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002315 data->file_created = true;
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002316 else if (o_res->cinfo.before != o_res->cinfo.after)
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04002317 data->file_created = true;
Trond Myklebust2dfc6172017-01-11 08:47:00 -05002318 if (data->file_created || dir->i_version != o_res->cinfo.after)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05002319 update_changeattr(dir, &o_res->cinfo,
2320 o_res->f_attr->time_start);
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002321 }
Trond Myklebust0df5dd42010-04-11 16:48:44 -04002322 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2323 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002325 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002327 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
Trond Myklebust56e0d712017-04-15 19:20:01 -04002329 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2330 nfs4_sequence_free_slot(&o_res->seq_res);
Andy Adamson8935ef62014-05-23 06:22:59 -07002331 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
Trond Myklebust56e0d712017-04-15 19:20:01 -04002332 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336/*
2337 * OPEN_EXPIRED:
2338 * reclaim state on the server after a network partition.
2339 * Assumes caller holds the appropriate lock
2340 */
Trond Myklebust539cd032007-06-05 11:46:42 -04002341static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002343 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01002344 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002346 opendata = nfs4_open_recoverdata_alloc(ctx, state,
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002347 NFS4_OPEN_CLAIM_FH);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002348 if (IS_ERR(opendata))
2349 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002350 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04002351 if (ret == -ESTALE)
Al Viro3d4ff432011-06-22 18:40:12 -04002352 d_drop(ctx->dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002353 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
2356
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002357static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00002358{
Trond Myklebust539cd032007-06-05 11:46:42 -04002359 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00002360 struct nfs4_exception exception = { };
2361 int err;
2362
2363 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04002364 err = _nfs4_open_expired(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04002365 trace_nfs4_open_expired(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002366 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2367 continue;
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002368 switch (err) {
2369 default:
2370 goto out;
2371 case -NFS4ERR_GRACE:
2372 case -NFS4ERR_DELAY:
2373 nfs4_handle_exception(server, err, &exception);
2374 err = 0;
2375 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00002376 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002377out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00002378 return err;
2379}
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2382{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01002384 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Trond Myklebust864472e2006-01-03 09:55:15 +01002386 ctx = nfs4_state_find_open_context(state);
2387 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04002388 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04002389 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01002390 put_nfs_open_context(ctx);
2391 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
Trond Myklebust41020b62016-09-22 13:38:58 -04002394static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2395 const nfs4_stateid *stateid)
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002396{
Trond Myklebust41020b62016-09-22 13:38:58 -04002397 nfs_remove_bad_delegation(state->inode, stateid);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002398 write_seqlock(&state->seqlock);
2399 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2400 write_sequnlock(&state->seqlock);
2401 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2402}
2403
2404static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2405{
2406 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
Trond Myklebust41020b62016-09-22 13:38:58 -04002407 nfs_finish_clear_delegation_stateid(state, NULL);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002408}
2409
2410static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2411{
2412 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2413 nfs40_clear_delegation_stateid(state);
2414 return nfs4_open_expired(sp, state);
2415}
2416
Trond Myklebust45870d62016-09-22 13:38:59 -04002417static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2418 nfs4_stateid *stateid,
2419 struct rpc_cred *cred)
2420{
2421 return -NFS4ERR_BAD_STATEID;
2422}
2423
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002424#if defined(CONFIG_NFS_V4_1)
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002425static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2426 nfs4_stateid *stateid,
2427 struct rpc_cred *cred)
2428{
2429 int status;
2430
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002431 switch (stateid->type) {
2432 default:
2433 break;
2434 case NFS4_INVALID_STATEID_TYPE:
2435 case NFS4_SPECIAL_STATEID_TYPE:
2436 return -NFS4ERR_BAD_STATEID;
2437 case NFS4_REVOKED_STATEID_TYPE:
2438 goto out_free;
2439 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002440
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002441 status = nfs41_test_stateid(server, stateid, cred);
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002442 switch (status) {
2443 case -NFS4ERR_EXPIRED:
2444 case -NFS4ERR_ADMIN_REVOKED:
2445 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002446 break;
2447 default:
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002448 return status;
2449 }
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002450out_free:
2451 /* Ack the revoked state to the server */
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04002452 nfs41_free_stateid(server, stateid, cred, true);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002453 return -NFS4ERR_EXPIRED;
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002454}
2455
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002456static void nfs41_check_delegation_stateid(struct nfs4_state *state)
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002457{
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002458 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002459 nfs4_stateid stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002460 struct nfs_delegation *delegation;
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002461 struct rpc_cred *cred;
2462 int status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002463
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002464 /* Get the delegation credential for use by test/free_stateid */
2465 rcu_read_lock();
2466 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002467 if (delegation == NULL) {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002468 rcu_read_unlock();
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002469 return;
2470 }
2471
2472 nfs4_stateid_copy(&stateid, &delegation->stateid);
Olga Kornievskaia0e3d3e52017-03-30 13:49:03 -04002473 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) ||
2474 !test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED,
2475 &delegation->flags)) {
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002476 rcu_read_unlock();
Trond Myklebust41020b62016-09-22 13:38:58 -04002477 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002478 return;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002479 }
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002480
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002481 cred = get_rpccred(delegation->cred);
2482 rcu_read_unlock();
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002483 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002484 trace_nfs4_test_delegation_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002485 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
Trond Myklebust41020b62016-09-22 13:38:58 -04002486 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002487
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002488 put_rpccred(cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002489}
2490
2491/**
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002492 * nfs41_check_expired_locks - possibly free a lock stateid
2493 *
2494 * @state: NFSv4 state for an inode
2495 *
2496 * Returns NFS_OK if recovery for this stateid is now finished.
2497 * Otherwise a negative NFS4ERR value is returned.
2498 */
2499static int nfs41_check_expired_locks(struct nfs4_state *state)
2500{
2501 int status, ret = NFS_OK;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002502 struct nfs4_lock_state *lsp, *prev = NULL;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002503 struct nfs_server *server = NFS_SERVER(state->inode);
2504
2505 if (!test_bit(LK_STATE_IN_USE, &state->flags))
2506 goto out;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002507
2508 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002509 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2510 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2511 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
2512
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002513 atomic_inc(&lsp->ls_count);
2514 spin_unlock(&state->state_lock);
2515
2516 nfs4_put_lock_state(prev);
2517 prev = lsp;
2518
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002519 status = nfs41_test_and_free_expired_stateid(server,
2520 &lsp->ls_stateid,
2521 cred);
2522 trace_nfs4_test_lock_stateid(state, lsp, status);
2523 if (status == -NFS4ERR_EXPIRED ||
2524 status == -NFS4ERR_BAD_STATEID) {
2525 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002526 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002527 if (!recover_lost_locks)
2528 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2529 } else if (status != NFS_OK) {
2530 ret = status;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002531 nfs4_put_lock_state(prev);
2532 goto out;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002533 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002534 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002535 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002536 }
2537 spin_unlock(&state->state_lock);
2538 nfs4_put_lock_state(prev);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002539out:
2540 return ret;
2541}
2542
2543/**
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002544 * nfs41_check_open_stateid - possibly free an open stateid
2545 *
2546 * @state: NFSv4 state for an inode
2547 *
2548 * Returns NFS_OK if recovery for this stateid is now finished.
2549 * Otherwise a negative NFS4ERR value is returned.
2550 */
2551static int nfs41_check_open_stateid(struct nfs4_state *state)
2552{
2553 struct nfs_server *server = NFS_SERVER(state->inode);
Bryan Schumakerfcb6d9c2012-09-26 15:25:53 -04002554 nfs4_stateid *stateid = &state->open_stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002555 struct rpc_cred *cred = state->owner->so_cred;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002556 int status;
2557
Trond Myklebustb134fc42016-09-22 13:39:16 -04002558 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) {
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002559 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) {
2560 if (nfs4_have_delegation(state->inode, state->state))
2561 return NFS_OK;
2562 return -NFS4ERR_OPENMODE;
2563 }
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002564 return -NFS4ERR_BAD_STATEID;
Trond Myklebustb134fc42016-09-22 13:39:16 -04002565 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002566 status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
Trond Myklebust08cb47f2013-08-20 21:59:40 -04002567 trace_nfs4_test_open_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002568 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002569 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2570 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2571 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04002572 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002573 stateid->type = NFS4_INVALID_STATEID_TYPE;
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002574 return status;
Trond Myklebustc0ca0e52017-08-08 21:39:28 -04002575 }
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002576 if (nfs_open_stateid_recover_openmode(state))
2577 return -NFS4ERR_OPENMODE;
2578 return NFS_OK;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002579}
2580
2581static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2582{
Chuck Levereb64cf92012-07-11 16:30:05 -04002583 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002584
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002585 nfs41_check_delegation_stateid(state);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002586 status = nfs41_check_expired_locks(state);
2587 if (status != NFS_OK)
2588 return status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002589 status = nfs41_check_open_stateid(state);
Chuck Levereb64cf92012-07-11 16:30:05 -04002590 if (status != NFS_OK)
2591 status = nfs4_open_expired(sp, state);
2592 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002593}
2594#endif
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002597 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2598 * fields corresponding to attributes that were used to store the verifier.
2599 * Make sure we clobber those fields in the later setattr call
2600 */
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002601static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
2602 struct iattr *sattr, struct nfs4_label **label)
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002603{
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002604 const u32 *attrset = opendata->o_res.attrset;
2605
2606 if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002607 !(sattr->ia_valid & ATTR_ATIME_SET))
2608 sattr->ia_valid |= ATTR_ATIME;
2609
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002610 if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002611 !(sattr->ia_valid & ATTR_MTIME_SET))
2612 sattr->ia_valid |= ATTR_MTIME;
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002613
2614 /* Except MODE, it seems harmless of setting twice. */
Benjamin Coddingtona4306072017-01-24 11:34:20 -05002615 if (opendata->o_arg.createmode != NFS4_CREATE_EXCLUSIVE &&
Benjamin Coddington501e7a42017-06-02 11:21:34 -04002616 (attrset[1] & FATTR4_WORD1_MODE ||
2617 attrset[2] & FATTR4_WORD2_MODE_UMASK))
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002618 sattr->ia_valid &= ~ATTR_MODE;
2619
2620 if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL)
2621 *label = NULL;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002622}
2623
Trond Myklebustc21443c2013-02-07 14:26:21 -05002624static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2625 fmode_t fmode,
2626 int flags,
Trond Myklebust3efb9722013-05-29 13:17:04 -04002627 struct nfs_open_context *ctx)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002628{
2629 struct nfs4_state_owner *sp = opendata->owner;
2630 struct nfs_server *server = sp->so_server;
Trond Myklebust275bb302013-05-29 13:11:28 -04002631 struct dentry *dentry;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002632 struct nfs4_state *state;
2633 unsigned int seq;
2634 int ret;
2635
2636 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2637
2638 ret = _nfs4_proc_open(opendata);
Trond Myklebustdca780012014-10-23 19:23:03 +03002639 if (ret != 0)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002640 goto out;
2641
2642 state = nfs4_opendata_to_nfs4_state(opendata);
2643 ret = PTR_ERR(state);
2644 if (IS_ERR(state))
2645 goto out;
Trond Myklebusta974dee2017-02-08 11:29:46 -05002646 ctx->state = state;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002647 if (server->caps & NFS_CAP_POSIX_LOCK)
2648 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Jeff Laytona8ce3772016-09-17 18:17:35 -04002649 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
2650 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
Trond Myklebustc21443c2013-02-07 14:26:21 -05002651
Trond Myklebust275bb302013-05-29 13:11:28 -04002652 dentry = opendata->dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002653 if (d_really_is_negative(dentry)) {
Al Viro668d0cd2016-03-08 12:44:17 -05002654 struct dentry *alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002655 d_drop(dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002656 alias = d_exact_alias(dentry, state->inode);
2657 if (!alias)
2658 alias = d_splice_alias(igrab(state->inode), dentry);
2659 /* d_splice_alias() can't fail here - it's a non-directory */
2660 if (alias) {
Trond Myklebust275bb302013-05-29 13:11:28 -04002661 dput(ctx->dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002662 ctx->dentry = dentry = alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002663 }
2664 nfs_set_verifier(dentry,
David Howells2b0143b2015-03-17 22:25:59 +00002665 nfs_save_change_attribute(d_inode(opendata->dir)));
Trond Myklebust275bb302013-05-29 13:11:28 -04002666 }
2667
Trond Myklebustc21443c2013-02-07 14:26:21 -05002668 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags);
2669 if (ret != 0)
2670 goto out;
2671
David Howells2b0143b2015-03-17 22:25:59 +00002672 if (d_inode(dentry) == state->inode) {
Trond Myklebustc45ffdd2013-05-29 13:34:46 -04002673 nfs_inode_attach_open_context(ctx);
2674 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
2675 nfs4_schedule_stateid_recovery(server, state);
2676 }
Trond Myklebustc21443c2013-02-07 14:26:21 -05002677out:
2678 return ret;
2679}
2680
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002681/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002682 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 */
Andy Adamson82be4172012-05-23 05:02:35 -04002684static int _nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002685 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002686 int flags,
2687 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002688 struct nfs4_label *label,
2689 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 struct nfs4_state_owner *sp;
2692 struct nfs4_state *state = NULL;
2693 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002694 struct nfs4_opendata *opendata;
Trond Myklebust4197a052013-05-29 12:37:49 -04002695 struct dentry *dentry = ctx->dentry;
2696 struct rpc_cred *cred = ctx->cred;
2697 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
2698 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002699 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
David Quigley1775fd32013-05-22 12:50:42 -04002700 struct nfs4_label *olabel = NULL;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002701 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 status = -ENOMEM;
Trond Myklebustd1e284d2012-01-17 22:04:24 -05002705 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
2706 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
2708 goto out_err;
2709 }
Anna Schumaker334f87d2017-01-11 16:17:17 -05002710 status = nfs4_client_recover_expired_lease(server->nfs_client);
Trond Myklebust58d97142006-01-03 09:55:24 +01002711 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002712 goto err_put_state_owner;
David Howells2b0143b2015-03-17 22:25:59 +00002713 if (d_really_is_positive(dentry))
2714 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01002715 status = -ENOMEM;
David Howells2b0143b2015-03-17 22:25:59 +00002716 if (d_really_is_positive(dentry))
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002717 claim = NFS4_OPEN_CLAIM_FH;
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002718 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr,
David Quigley1775fd32013-05-22 12:50:42 -04002719 label, claim, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002720 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05002721 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
David Quigley14c43f72013-05-22 12:50:43 -04002723 if (label) {
2724 olabel = nfs4_label_alloc(server, GFP_KERNEL);
2725 if (IS_ERR(olabel)) {
2726 status = PTR_ERR(olabel);
2727 goto err_opendata_put;
2728 }
2729 }
2730
Trond Myklebuste911b812014-03-26 13:24:37 -07002731 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
2732 if (!opendata->f_attr.mdsthreshold) {
2733 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
2734 if (!opendata->f_attr.mdsthreshold)
2735 goto err_free_label;
2736 }
Trond Myklebust1549210f2012-06-05 09:16:47 -04002737 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
Andy Adamson82be4172012-05-23 05:02:35 -04002738 }
David Howells2b0143b2015-03-17 22:25:59 +00002739 if (d_really_is_positive(dentry))
2740 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
Trond Myklebustaac00a82007-07-05 19:02:21 -04002741
Trond Myklebust3efb9722013-05-29 13:17:04 -04002742 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002743 if (status != 0)
David Quigley14c43f72013-05-22 12:50:43 -04002744 goto err_free_label;
Trond Myklebust3efb9722013-05-29 13:17:04 -04002745 state = ctx->state;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002746
NeilBrownefcbc042015-07-30 13:00:56 +10002747 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
Trond Myklebust549b19c2013-04-16 18:42:34 -04002748 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002749 nfs4_exclusive_attrset(opendata, sattr, &label);
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +02002750 /*
2751 * send create attributes which was not set by open
2752 * with an extra setattr.
2753 */
2754 if (sattr->ia_valid & NFS4_VALID_ATTRS) {
2755 nfs_fattr_init(opendata->o_res.f_attr);
2756 status = nfs4_do_setattr(state->inode, cred,
2757 opendata->o_res.f_attr, sattr,
NeilBrown29b59f92016-10-13 15:26:47 +11002758 ctx, label, olabel);
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +02002759 if (status == 0) {
2760 nfs_setattr_update_inode(state->inode, sattr,
2761 opendata->o_res.f_attr);
2762 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
2763 }
David Quigley1775fd32013-05-22 12:50:42 -04002764 }
Trond Myklebust0ab64e02010-04-16 16:22:51 -04002765 }
Kinglong Meec5c3fb52015-08-26 21:11:39 +08002766 if (opened && opendata->file_created)
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002767 *opened |= FILE_CREATED;
Andy Adamson82be4172012-05-23 05:02:35 -04002768
Trond Myklebuste911b812014-03-26 13:24:37 -07002769 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
Andy Adamson82be4172012-05-23 05:02:35 -04002770 *ctx_th = opendata->f_attr.mdsthreshold;
Trond Myklebuste911b812014-03-26 13:24:37 -07002771 opendata->f_attr.mdsthreshold = NULL;
2772 }
Andy Adamson82be4172012-05-23 05:02:35 -04002773
David Quigley14c43f72013-05-22 12:50:43 -04002774 nfs4_label_free(olabel);
2775
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002776 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return 0;
David Quigley14c43f72013-05-22 12:50:43 -04002779err_free_label:
2780 nfs4_label_free(olabel);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002781err_opendata_put:
2782 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002783err_put_state_owner:
2784 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return status;
2787}
2788
2789
Andy Adamson82be4172012-05-23 05:02:35 -04002790static struct nfs4_state *nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002791 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002792 int flags,
2793 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002794 struct nfs4_label *label,
2795 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002797 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 struct nfs4_exception exception = { };
2799 struct nfs4_state *res;
2800 int status;
2801
2802 do {
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002803 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened);
Trond Myklebust3efb9722013-05-29 13:17:04 -04002804 res = ctx->state;
Trond Myklebust42113a72013-08-12 16:19:27 -04002805 trace_nfs4_open_file(ctx, flags, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 if (status == 0)
2807 break;
2808 /* NOTE: BAD_SEQID means the server and client disagree about the
2809 * book-keeping w.r.t. state-changing operations
2810 * (OPEN/CLOSE/LOCK/LOCKU...)
2811 * It is actually a sign of a bug on the client or on the server.
2812 *
2813 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07002814 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 * have unhashed the old state_owner for us, and that we can
2816 * therefore safely retry using a new one. We should still warn
2817 * the user though...
2818 */
2819 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust9a3ba432012-03-12 18:01:48 -04002820 pr_warn_ratelimited("NFS: v4 server %s "
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04002821 " returned a bad sequence-id error!\n",
2822 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 exception.retry = 1;
2824 continue;
2825 }
Trond Myklebust550f5742005-10-18 14:20:21 -07002826 /*
2827 * BAD_STATEID on OPEN means that the server cancelled our
2828 * state before it received the OPEN_CONFIRM.
2829 * Recover by retrying the request as per the discussion
2830 * on Page 181 of RFC3530.
2831 */
2832 if (status == -NFS4ERR_BAD_STATEID) {
2833 exception.retry = 1;
2834 continue;
2835 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04002836 if (status == -EAGAIN) {
2837 /* We must have found a delegation */
2838 exception.retry = 1;
2839 continue;
2840 }
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002841 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
2842 continue;
2843 res = ERR_PTR(nfs4_handle_exception(server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 status, &exception));
2845 } while (exception.retry);
2846 return res;
2847}
2848
Trond Myklebust8487c472016-06-26 08:44:35 -04002849static int _nfs4_do_setattr(struct inode *inode,
2850 struct nfs_setattrargs *arg,
2851 struct nfs_setattrres *res,
2852 struct rpc_cred *cred,
NeilBrown29b59f92016-10-13 15:26:47 +11002853 struct nfs_open_context *ctx)
Trond Myklebust8487c472016-06-26 08:44:35 -04002854{
2855 struct nfs_server *server = NFS_SERVER(inode);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002856 struct rpc_message msg = {
Trond Myklebust8487c472016-06-26 08:44:35 -04002857 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2858 .rpc_argp = arg,
2859 .rpc_resp = res,
2860 .rpc_cred = cred,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002861 };
Trond Myklebust8487c472016-06-26 08:44:35 -04002862 struct rpc_cred *delegation_cred = NULL;
2863 unsigned long timestamp = jiffies;
2864 fmode_t fmode;
2865 bool truncate;
2866 int status;
2867
2868 nfs_fattr_init(res->fattr);
2869
2870 /* Servers should only apply open mode checks for file size changes */
2871 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
2872 fmode = truncate ? FMODE_WRITE : FMODE_READ;
2873
2874 if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) {
2875 /* Use that stateid */
NeilBrown29b59f92016-10-13 15:26:47 +11002876 } else if (truncate && ctx != NULL) {
NeilBrown17393472016-10-13 15:26:47 +11002877 struct nfs_lock_context *l_ctx;
NeilBrown29b59f92016-10-13 15:26:47 +11002878 if (!nfs4_valid_open_stateid(ctx->state))
Trond Myklebust8487c472016-06-26 08:44:35 -04002879 return -EBADF;
NeilBrown17393472016-10-13 15:26:47 +11002880 l_ctx = nfs_get_lock_context(ctx);
2881 if (IS_ERR(l_ctx))
2882 return PTR_ERR(l_ctx);
NeilBrown7a0566b2016-12-06 15:50:06 -05002883 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx,
2884 &arg->stateid, &delegation_cred);
2885 nfs_put_lock_context(l_ctx);
2886 if (status == -EIO)
Trond Myklebust8487c472016-06-26 08:44:35 -04002887 return -EBADF;
2888 } else
2889 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
2890 if (delegation_cred)
2891 msg.rpc_cred = delegation_cred;
2892
2893 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
2894
2895 put_rpccred(delegation_cred);
NeilBrown29b59f92016-10-13 15:26:47 +11002896 if (status == 0 && ctx != NULL)
Trond Myklebust8487c472016-06-26 08:44:35 -04002897 renew_lease(server, timestamp);
2898 trace_nfs4_setattr(inode, &arg->stateid, status);
2899 return status;
2900}
2901
2902static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2903 struct nfs_fattr *fattr, struct iattr *sattr,
NeilBrown29b59f92016-10-13 15:26:47 +11002904 struct nfs_open_context *ctx, struct nfs4_label *ilabel,
Trond Myklebust8487c472016-06-26 08:44:35 -04002905 struct nfs4_label *olabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002907 struct nfs_server *server = NFS_SERVER(inode);
NeilBrown29b59f92016-10-13 15:26:47 +11002908 struct nfs4_state *state = ctx ? ctx->state : NULL;
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002909 struct nfs_setattrargs arg = {
2910 .fh = NFS_FH(inode),
2911 .iap = sattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 .server = server,
2913 .bitmask = server->attr_bitmask,
David Quigley1775fd32013-05-22 12:50:42 -04002914 .label = ilabel,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002915 };
2916 struct nfs_setattrres res = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04002918 .label = olabel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 .server = server,
Anna Schumakerd9b67e12017-01-11 15:04:25 -05002920 };
Trond Myklebust8487c472016-06-26 08:44:35 -04002921 struct nfs4_exception exception = {
2922 .state = state,
2923 .inode = inode,
2924 .stateid = &arg.stateid,
2925 };
2926 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
David Quigleyaa9c2662013-05-22 12:50:44 -04002928 arg.bitmask = nfs4_bitmask(server, ilabel);
2929 if (ilabel)
2930 arg.bitmask = nfs4_bitmask(server, olabel);
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 do {
NeilBrown29b59f92016-10-13 15:26:47 +11002933 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx);
Trond Myklebust451146b2012-04-18 16:29:11 -04002934 switch (err) {
2935 case -NFS4ERR_OPENMODE:
Trond Myklebust721ccfb2013-04-29 11:11:58 -04002936 if (!(sattr->ia_valid & ATTR_SIZE)) {
2937 pr_warn_once("NFSv4: server %s is incorrectly "
2938 "applying open mode checks to "
2939 "a SETATTR that is not "
2940 "changing file size.\n",
2941 server->nfs_client->cl_hostname);
2942 }
Trond Myklebust451146b2012-04-18 16:29:11 -04002943 if (state && !(state->state & FMODE_WRITE)) {
2944 err = -EBADF;
2945 if (sattr->ia_valid & ATTR_OPEN)
2946 err = -EACCES;
2947 goto out;
2948 }
2949 }
2950 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 } while (exception.retry);
Trond Myklebust451146b2012-04-18 16:29:11 -04002952out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 return err;
2954}
2955
Peng Tao500d7012015-09-22 11:35:22 +08002956static bool
2957nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
2958{
2959 if (inode == NULL || !nfs_have_layout(inode))
2960 return false;
2961
2962 return pnfs_wait_on_layoutreturn(inode, task);
2963}
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965struct nfs4_closedata {
2966 struct inode *inode;
2967 struct nfs4_state *state;
2968 struct nfs_closeargs arg;
2969 struct nfs_closeres res;
Trond Myklebustcf805162016-11-15 14:56:07 -05002970 struct {
2971 struct nfs4_layoutreturn_args arg;
2972 struct nfs4_layoutreturn_res res;
Trond Myklebust4d796d72016-09-23 11:38:08 -04002973 struct nfs4_xdr_opaque_data ld_private;
Trond Myklebustcf805162016-11-15 14:56:07 -05002974 u32 roc_barrier;
2975 bool roc;
2976 } lr;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002977 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002978 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979};
2980
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002981static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07002982{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002983 struct nfs4_closedata *calldata = data;
2984 struct nfs4_state_owner *sp = calldata->state->owner;
Al Viro643168c2011-06-22 18:20:23 -04002985 struct super_block *sb = calldata->state->inode->i_sb;
Trond Myklebust95121352005-10-18 14:20:12 -07002986
Trond Myklebustcf805162016-11-15 14:56:07 -05002987 if (calldata->lr.roc)
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05002988 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res,
2989 calldata->res.lr_ret);
Trond Myklebust95121352005-10-18 14:20:12 -07002990 nfs4_put_open_state(calldata->state);
2991 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07002992 nfs4_put_state_owner(sp);
Trond Myklebust322b2b92013-01-11 16:39:51 -05002993 nfs_sb_deactive(sb);
Trond Myklebust95121352005-10-18 14:20:12 -07002994 kfree(calldata);
2995}
2996
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002997static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002999 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 struct nfs_server *server = NFS_SERVER(calldata->inode);
Trond Myklebust412f6c42014-08-25 22:09:08 -04003002 nfs4_stateid *res_stateid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Chuck Levera3ca5652012-03-01 17:00:40 -05003004 dprintk("%s: begin!\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04003005 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3006 return;
Trond Myklebust42113a72013-08-12 16:19:27 -04003007 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
Trond Myklebustcf805162016-11-15 14:56:07 -05003008
3009 /* Handle Layoutreturn errors */
3010 if (calldata->arg.lr_args && task->tk_status != 0) {
3011 switch (calldata->res.lr_ret) {
3012 default:
3013 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
3014 break;
3015 case 0:
3016 calldata->arg.lr_args = NULL;
3017 calldata->res.lr_res = NULL;
3018 break;
3019 case -NFS4ERR_ADMIN_REVOKED:
3020 case -NFS4ERR_DELEG_REVOKED:
3021 case -NFS4ERR_EXPIRED:
3022 case -NFS4ERR_BAD_STATEID:
3023 case -NFS4ERR_OLD_STATEID:
3024 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
3025 case -NFS4ERR_WRONG_CRED:
3026 calldata->arg.lr_args = NULL;
3027 calldata->res.lr_res = NULL;
3028 calldata->res.lr_ret = 0;
3029 rpc_restart_call_prepare(task);
3030 return;
3031 }
3032 }
3033
Anna Schumakerd9b67e12017-01-11 15:04:25 -05003034 /* hmm. we are done with the inode, and in the process of freeing
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 * the state_owner. we keep this around to process errors
3036 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 switch (task->tk_status) {
3038 case 0:
Trond Myklebust412f6c42014-08-25 22:09:08 -04003039 res_stateid = &calldata->res.stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003040 renew_lease(server, calldata->timestamp);
Trond Myklebust412f6c42014-08-25 22:09:08 -04003041 break;
Trond Myklebustf07d4a32016-12-19 10:34:14 -05003042 case -NFS4ERR_ACCESS:
3043 if (calldata->arg.bitmask != NULL) {
3044 calldata->arg.bitmask = NULL;
3045 calldata->res.fattr = NULL;
3046 task->tk_status = 0;
3047 rpc_restart_call_prepare(task);
3048 goto out_release;
3049
3050 }
3051 break;
Trond Myklebust69794ad2013-11-20 12:57:19 -05003052 case -NFS4ERR_ADMIN_REVOKED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 case -NFS4ERR_STALE_STATEID:
Trond Myklebust26d36302016-09-22 13:39:05 -04003054 case -NFS4ERR_EXPIRED:
3055 nfs4_free_revoked_stateid(server,
3056 &calldata->arg.stateid,
3057 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003058 case -NFS4ERR_OLD_STATEID:
3059 case -NFS4ERR_BAD_STATEID:
Trond Myklebust566fcec2015-01-23 15:32:46 -05003060 if (!nfs4_stateid_match(&calldata->arg.stateid,
Anna Schumaker369d6b72015-03-02 16:46:09 -05003061 &state->open_stateid)) {
Trond Myklebust566fcec2015-01-23 15:32:46 -05003062 rpc_restart_call_prepare(task);
3063 goto out_release;
3064 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003065 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10003068 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) {
Trond Myklebust72211db2009-12-15 14:47:36 -05003069 rpc_restart_call_prepare(task);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003070 goto out_release;
3071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07003073 nfs_clear_open_stateid(state, &calldata->arg.stateid,
3074 res_stateid, calldata->arg.fmode);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003075out_release:
Trond Myklebust72211db2009-12-15 14:47:36 -05003076 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustd8d84982016-12-19 12:14:44 -05003077 nfs_refresh_inode(calldata->inode, &calldata->fattr);
Chuck Levera3ca5652012-03-01 17:00:40 -05003078 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003081static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003083 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07003084 struct nfs4_state *state = calldata->state;
Trond Myklebust7fdab062012-09-20 20:15:57 -04003085 struct inode *inode = calldata->inode;
Trond Myklebustaee7af32014-08-25 22:33:12 -04003086 bool is_rdonly, is_wronly, is_rdwr;
Trond Myklebust88069f72009-12-08 08:33:16 -05003087 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07003088
Chuck Levera3ca5652012-03-01 17:00:40 -05003089 dprintk("%s: begin!\n", __func__);
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003090 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003091 goto out_wait;
Trond Myklebust003707c2007-07-05 18:07:55 -04003092
Trond Myklebust88069f72009-12-08 08:33:16 -05003093 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust4cecb762005-11-04 15:32:58 -05003094 spin_lock(&state->owner->so_lock);
Trond Myklebustaee7af32014-08-25 22:33:12 -04003095 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3096 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3097 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
Anna Schumaker369d6b72015-03-02 16:46:09 -05003098 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04003099 /* Calculate the change in open mode */
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003100 calldata->arg.fmode = 0;
Trond Myklebuste7616922006-01-03 09:55:13 +01003101 if (state->n_rdwr == 0) {
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003102 if (state->n_rdonly == 0)
3103 call_close |= is_rdonly;
3104 else if (is_rdonly)
3105 calldata->arg.fmode |= FMODE_READ;
3106 if (state->n_wronly == 0)
3107 call_close |= is_wronly;
3108 else if (is_wronly)
3109 calldata->arg.fmode |= FMODE_WRITE;
Trond Myklebuste547f262016-06-25 19:19:28 -04003110 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3111 call_close |= is_rdwr;
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003112 } else if (is_rdwr)
3113 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3114
Trond Myklebust5cc78612016-11-14 11:19:56 -05003115 if (!nfs4_valid_open_stateid(state) ||
3116 test_bit(NFS_OPEN_STATE, &state->flags) == 0)
Trond Myklebust5d422302013-03-14 16:57:48 -04003117 call_close = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05003118 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05003119
3120 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003121 /* Note: exit _without_ calling nfs4_close_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003122 goto out_no_action;
Trond Myklebust95121352005-10-18 14:20:12 -07003123 }
Trond Myklebust88069f72009-12-08 08:33:16 -05003124
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05003125 if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) {
Peng Tao500d7012015-09-22 11:35:22 +08003126 nfs_release_seqid(calldata->arg.seqid);
3127 goto out_wait;
3128 }
3129
Trond Myklebust9413a1a2016-12-19 11:36:41 -05003130 if (calldata->arg.fmode == 0)
Trond Myklebust88069f72009-12-08 08:33:16 -05003131 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Trond Myklebust3ecefc92016-10-27 18:25:04 -04003132
Trond Myklebust9413a1a2016-12-19 11:36:41 -05003133 if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) {
Trond Myklebust3ecefc92016-10-27 18:25:04 -04003134 /* Close-to-open cache consistency revalidation */
3135 if (!nfs4_have_delegation(inode, FMODE_READ))
3136 calldata->arg.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
3137 else
3138 calldata->arg.bitmask = NULL;
3139 }
Trond Myklebust3c13cb52015-08-18 23:45:13 -05003140
Trond Myklebust6ae37332015-01-30 14:21:14 -05003141 calldata->arg.share_access =
3142 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3143 calldata->arg.fmode, 0);
Trond Myklebust88069f72009-12-08 08:33:16 -05003144
Trond Myklebustd8d84982016-12-19 12:14:44 -05003145 if (calldata->res.fattr == NULL)
3146 calldata->arg.bitmask = NULL;
3147 else if (calldata->arg.bitmask == NULL)
3148 calldata->res.fattr = NULL;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003149 calldata->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05003150 if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client,
Trond Myklebust9d12b212012-01-17 22:04:25 -05003151 &calldata->arg.seq_args,
3152 &calldata->res.seq_res,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04003153 task) != 0)
3154 nfs_release_seqid(calldata->arg.seqid);
Chuck Levera3ca5652012-03-01 17:00:40 -05003155 dprintk("%s: done!\n", __func__);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003156 return;
3157out_no_action:
3158 task->tk_action = NULL;
3159out_wait:
3160 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161}
3162
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003163static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003164 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003165 .rpc_call_done = nfs4_close_done,
3166 .rpc_release = nfs4_free_closedata,
3167};
3168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169/*
3170 * It is possible for data to be read/written from a mem-mapped file
3171 * after the sys_close call (which hits the vfs layer as a flush).
3172 * This means that we can't safely call nfsv4 close on a file until
3173 * the inode is cleared. This in turn means that we are not good
3174 * NFSv4 citizens - we do not indicate to the server to update the file's
3175 * share state even when we are done with one of the three share
3176 * stateid's in the inode.
3177 *
3178 * NOTE: Caller must be holding the sp->so_owner semaphore!
3179 */
Trond Myklebust1f7977c2012-09-20 20:31:51 -04003180int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003182 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust63f5f792015-01-23 19:19:25 -05003183 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04003185 struct nfs4_state_owner *sp = state->owner;
3186 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003187 struct rpc_message msg = {
3188 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3189 .rpc_cred = state->owner->so_cred,
3190 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003191 struct rpc_task_setup task_setup_data = {
3192 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003193 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003194 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003195 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003196 .flags = RPC_TASK_ASYNC,
3197 };
Trond Myklebust95121352005-10-18 14:20:12 -07003198 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04003200 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3201 &task_setup_data.rpc_client, &msg);
3202
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003203 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07003205 goto out;
Chuck Levera9c92d62013-08-09 12:48:18 -04003206 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003207 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003209 calldata->arg.fh = NFS_FH(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 /* Serialization for the sequence id */
Trond Myklebust63f5f792015-01-23 19:19:25 -05003211 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3212 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05003213 if (IS_ERR(calldata->arg.seqid))
Trond Myklebust95121352005-10-18 14:20:12 -07003214 goto out_free_calldata;
Trond Myklebustd8d84982016-12-19 12:14:44 -05003215 nfs_fattr_init(&calldata->fattr);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003216 calldata->arg.fmode = 0;
Trond Myklebust4d796d72016-09-23 11:38:08 -04003217 calldata->lr.arg.ld_private = &calldata->lr.ld_private;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003218 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003219 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003220 calldata->res.server = server;
Trond Myklebustcf805162016-11-15 14:56:07 -05003221 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05003222 calldata->lr.roc = pnfs_roc(state->inode,
3223 &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred);
3224 if (calldata->lr.roc) {
3225 calldata->arg.lr_args = &calldata->lr.arg;
3226 calldata->res.lr_res = &calldata->lr.res;
3227 }
Al Viro643168c2011-06-22 18:20:23 -04003228 nfs_sb_active(calldata->inode->i_sb);
Trond Myklebust95121352005-10-18 14:20:12 -07003229
Trond Myklebust1174dd12010-12-21 10:52:24 -05003230 msg.rpc_argp = &calldata->arg;
3231 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003232 task_setup_data.callback_data = calldata;
3233 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003234 if (IS_ERR(task))
3235 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003236 status = 0;
3237 if (wait)
3238 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003239 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003240 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07003241out_free_calldata:
3242 kfree(calldata);
3243out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04003244 nfs4_put_open_state(state);
3245 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07003246 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
Trond Myklebust2b484292010-09-17 10:56:51 -04003249static struct inode *
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003250nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3251 int open_flags, struct iattr *attr, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 struct nfs4_state *state;
David Quigleyaa9c2662013-05-22 12:50:44 -04003254 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
3255
3256 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Trond Myklebust565277f2007-10-15 18:17:53 -04003258 /* Protect against concurrent sillydeletes */
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003259 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
David Quigleyaa9c2662013-05-22 12:50:44 -04003260
3261 nfs4_label_release_security(label);
3262
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04003263 if (IS_ERR(state))
3264 return ERR_CAST(state);
Trond Myklebust275bb302013-05-29 13:11:28 -04003265 return state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266}
3267
Trond Myklebust1185a552009-12-03 15:54:02 -05003268static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003269{
3270 if (ctx->state == NULL)
3271 return;
3272 if (is_sync)
Al Viro643168c2011-06-22 18:20:23 -04003273 nfs4_close_sync(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003274 else
Al Viro643168c2011-06-22 18:20:23 -04003275 nfs4_close_state(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003276}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Trond Myklebustb944dba2013-11-04 15:20:20 -05003278#define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3279#define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05003280#define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_MODE_UMASK - 1UL)
Trond Myklebustb944dba2013-11-04 15:20:20 -05003281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3283{
Kinglong Mee8c612822015-08-26 21:12:58 +08003284 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
Benny Halevy43652ad2009-04-01 09:21:54 -04003285 struct nfs4_server_caps_arg args = {
3286 .fhandle = fhandle,
Kinglong Mee8c612822015-08-26 21:12:58 +08003287 .bitmask = bitmask,
Benny Halevy43652ad2009-04-01 09:21:54 -04003288 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 struct nfs4_server_caps_res res = {};
3290 struct rpc_message msg = {
3291 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04003292 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 .rpc_resp = &res,
3294 };
3295 int status;
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003296 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Kinglong Mee8c612822015-08-26 21:12:58 +08003298 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3299 FATTR4_WORD0_FH_EXPIRE_TYPE |
3300 FATTR4_WORD0_LINK_SUPPORT |
3301 FATTR4_WORD0_SYMLINK_SUPPORT |
3302 FATTR4_WORD0_ACLSUPPORT;
3303 if (minorversion)
3304 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3305
Bryan Schumaker7c513052011-03-24 17:12:24 +00003306 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 if (status == 0) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003308 /* Sanity check the server answers */
Kinglong Mee8c612822015-08-26 21:12:58 +08003309 switch (minorversion) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003310 case 0:
3311 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3312 res.attr_bitmask[2] = 0;
3313 break;
3314 case 1:
3315 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3316 break;
3317 case 2:
3318 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab4602009-08-09 15:06:19 -04003321 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
3322 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
3323 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
3324 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
Trond Myklebustb944dba2013-11-04 15:20:20 -05003325 NFS_CAP_CTIME|NFS_CAP_MTIME|
3326 NFS_CAP_SECURITY_LABEL);
Malahal Naineni7dd7d952014-01-23 08:54:55 -06003327 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3328 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 server->caps |= NFS_CAP_ACLS;
3330 if (res.has_links != 0)
3331 server->caps |= NFS_CAP_HARDLINKS;
3332 if (res.has_symlinks != 0)
3333 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab4602009-08-09 15:06:19 -04003334 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
3335 server->caps |= NFS_CAP_FILEID;
3336 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
3337 server->caps |= NFS_CAP_MODE;
3338 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
3339 server->caps |= NFS_CAP_NLINK;
3340 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
3341 server->caps |= NFS_CAP_OWNER;
3342 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
3343 server->caps |= NFS_CAP_OWNER_GROUP;
3344 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
3345 server->caps |= NFS_CAP_ATIME;
3346 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
3347 server->caps |= NFS_CAP_CTIME;
3348 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
3349 server->caps |= NFS_CAP_MTIME;
David Quigleyaa9c2662013-05-22 12:50:44 -04003350#ifdef CONFIG_NFS_V4_SECURITY_LABEL
3351 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3352 server->caps |= NFS_CAP_SECURITY_LABEL;
3353#endif
3354 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3355 sizeof(server->attr_bitmask));
Trond Myklebustb944dba2013-11-04 15:20:20 -05003356 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
Trond Myklebust62ab4602009-08-09 15:06:19 -04003357
Trond Myklebusta65318b2009-03-11 14:10:28 -04003358 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3359 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3360 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebustb944dba2013-11-04 15:20:20 -05003361 server->cache_consistency_bitmask[2] = 0;
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003362
3363 /* Avoid a regression due to buggy server */
3364 for (i = 0; i < ARRAY_SIZE(res.exclcreat_bitmask); i++)
3365 res.exclcreat_bitmask[i] &= res.attr_bitmask[i];
Kinglong Mee8c612822015-08-26 21:12:58 +08003366 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3367 sizeof(server->exclcreat_bitmask));
Trond Myklebustf4b23de2017-05-09 15:47:15 -04003368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 server->acl_bitmask = res.acl_bitmask;
Chuck Lever264e6352012-03-01 17:02:05 -05003370 server->fh_expire_type = res.fh_expire_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 return status;
3374}
3375
Trond Myklebust55a97592006-06-09 09:34:19 -04003376int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377{
3378 struct nfs4_exception exception = { };
3379 int err;
3380 do {
3381 err = nfs4_handle_exception(server,
3382 _nfs4_server_capabilities(server, fhandle),
3383 &exception);
3384 } while (exception.retry);
3385 return err;
3386}
3387
3388static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3389 struct nfs_fsinfo *info)
3390{
David Quigleyaa9c2662013-05-22 12:50:44 -04003391 u32 bitmask[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 struct nfs4_lookup_root_arg args = {
David Quigleyaa9c2662013-05-22 12:50:44 -04003393 .bitmask = bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 };
3395 struct nfs4_lookup_res res = {
3396 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04003397 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 .fh = fhandle,
3399 };
3400 struct rpc_message msg = {
3401 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
3402 .rpc_argp = &args,
3403 .rpc_resp = &res,
3404 };
Benny Halevy008f55d2009-04-01 09:22:50 -04003405
David Quigleyaa9c2662013-05-22 12:50:44 -04003406 bitmask[0] = nfs4_fattr_bitmap[0];
3407 bitmask[1] = nfs4_fattr_bitmap[1];
3408 /*
3409 * Process the label in the upcoming getfattr
3410 */
3411 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
3412
Trond Myklebust0e574af2005-10-27 22:12:38 -04003413 nfs_fattr_init(info->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003414 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416
3417static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3418 struct nfs_fsinfo *info)
3419{
3420 struct nfs4_exception exception = { };
3421 int err;
3422 do {
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003423 err = _nfs4_lookup_root(server, fhandle, info);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003424 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003425 switch (err) {
3426 case 0:
3427 case -NFS4ERR_WRONGSEC:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003428 goto out;
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003429 default:
3430 err = nfs4_handle_exception(server, err, &exception);
3431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003433out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return err;
3435}
3436
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003437static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3438 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3439{
Trond Myklebustc2190662013-08-26 19:23:04 -04003440 struct rpc_auth_create_args auth_args = {
3441 .pseudoflavor = flavor,
3442 };
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003443 struct rpc_auth *auth;
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003444
Trond Myklebustc2190662013-08-26 19:23:04 -04003445 auth = rpcauth_create(&auth_args, server->client);
Anna Schumaker9df13362017-01-11 16:30:08 -05003446 if (IS_ERR(auth))
3447 return -EACCES;
3448 return nfs4_lookup_root(server, fhandle, info);
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003449}
3450
Chuck Lever9a744ba2013-03-16 15:56:02 -04003451/*
3452 * Retry pseudoroot lookup with various security flavors. We do this when:
3453 *
3454 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3455 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3456 *
3457 * Returns zero on success, or a negative NFS4ERR value, or a
3458 * negative errno value.
3459 */
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003460static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04003461 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462{
Chuck Lever9a744ba2013-03-16 15:56:02 -04003463 /* Per 3530bis 15.33.5 */
3464 static const rpc_authflavor_t flav_array[] = {
3465 RPC_AUTH_GSS_KRB5P,
3466 RPC_AUTH_GSS_KRB5I,
3467 RPC_AUTH_GSS_KRB5,
Chuck Leverc4eafe12013-03-16 15:56:11 -04003468 RPC_AUTH_UNIX, /* courtesy */
Chuck Lever9a744ba2013-03-16 15:56:02 -04003469 RPC_AUTH_NULL,
3470 };
3471 int status = -EPERM;
3472 size_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04003474 if (server->auth_info.flavor_len > 0) {
3475 /* try each flavor specified by user */
3476 for (i = 0; i < server->auth_info.flavor_len; i++) {
3477 status = nfs4_lookup_root_sec(server, fhandle, info,
3478 server->auth_info.flavors[i]);
3479 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3480 continue;
3481 break;
3482 }
3483 } else {
3484 /* no flavors specified by user, try default list */
3485 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3486 status = nfs4_lookup_root_sec(server, fhandle, info,
3487 flav_array[i]);
3488 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3489 continue;
3490 break;
3491 }
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003492 }
Chuck Lever9a744ba2013-03-16 15:56:02 -04003493
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003494 /*
3495 * -EACCESS could mean that the user doesn't have correct permissions
3496 * to access the mount. It could also mean that we tried to mount
3497 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
3498 * existing mount programs don't handle -EACCES very well so it should
3499 * be mapped to -EPERM instead.
3500 */
3501 if (status == -EACCES)
3502 status = -EPERM;
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003503 return status;
3504}
3505
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003506/**
3507 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3508 * @server: initialized nfs_server handle
3509 * @fhandle: we fill in the pseudo-fs root file handle
3510 * @info: we fill in an FSINFO struct
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003511 * @auth_probe: probe the auth flavours
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003512 *
3513 * Returns zero on success, or a negative errno.
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003514 */
Bryan Schumaker3028eb22012-05-10 15:07:30 -04003515int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003516 struct nfs_fsinfo *info,
3517 bool auth_probe)
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003518{
Andre Przywarac7757072015-04-23 17:17:40 +01003519 int status = 0;
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003520
Andre Przywarac7757072015-04-23 17:17:40 +01003521 if (!auth_probe)
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003522 status = nfs4_lookup_root(server, fhandle, info);
Andre Przywarac7757072015-04-23 17:17:40 +01003523
3524 if (auth_probe || status == NFS4ERR_WRONGSEC)
Trond Myklebust698c9372016-07-25 13:31:14 -04003525 status = server->nfs_client->cl_mvops->find_root_sec(server,
3526 fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 if (status == 0)
3529 status = nfs4_server_capabilities(server, fhandle);
3530 if (status == 0)
3531 status = nfs4_do_fsinfo(server, fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003532
Trond Myklebustc12e87f2006-03-13 21:20:47 -08003533 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534}
3535
Bryan Schumakerbae36242012-05-10 15:07:31 -04003536static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3537 struct nfs_fsinfo *info)
3538{
3539 int error;
3540 struct nfs_fattr *fattr = info->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04003541 struct nfs4_label *label = NULL;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003542
3543 error = nfs4_server_capabilities(server, mntfh);
3544 if (error < 0) {
3545 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3546 return error;
3547 }
3548
David Quigley14c43f72013-05-22 12:50:43 -04003549 label = nfs4_label_alloc(server, GFP_KERNEL);
3550 if (IS_ERR(label))
3551 return PTR_ERR(label);
3552
David Quigley1775fd32013-05-22 12:50:42 -04003553 error = nfs4_proc_getattr(server, mntfh, fattr, label);
Bryan Schumakerbae36242012-05-10 15:07:31 -04003554 if (error < 0) {
3555 dprintk("nfs4_get_root: getattr error = %d\n", -error);
David Quigley14c43f72013-05-22 12:50:43 -04003556 goto err_free_label;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003557 }
3558
3559 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
3560 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
3561 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
3562
David Quigley14c43f72013-05-22 12:50:43 -04003563err_free_label:
3564 nfs4_label_free(label);
3565
Bryan Schumakerbae36242012-05-10 15:07:31 -04003566 return error;
3567}
3568
Manoj Naik6b97fd32006-06-09 09:34:29 -04003569/*
3570 * Get locations and (maybe) other attributes of a referral.
3571 * Note that we'll actually follow the referral later when
3572 * we detect fsid mismatch in inode revalidation
3573 */
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003574static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
3575 const struct qstr *name, struct nfs_fattr *fattr,
3576 struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04003577{
3578 int status = -ENOMEM;
3579 struct page *page = NULL;
3580 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003581
3582 page = alloc_page(GFP_KERNEL);
3583 if (page == NULL)
3584 goto out;
3585 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
3586 if (locations == NULL)
3587 goto out;
3588
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003589 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003590 if (status != 0)
3591 goto out;
Chuck Lever519ae252013-10-17 14:13:19 -04003592
3593 /*
3594 * If the fsid didn't change, this is a migration event, not a
3595 * referral. Cause us to drop into the exception handler, which
3596 * will kick off migration recovery.
3597 */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003598 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Andy Adamson533eb462011-06-13 18:25:56 -04003599 dprintk("%s: server did not return a different fsid for"
3600 " a referral at %s\n", __func__, name->name);
Chuck Lever519ae252013-10-17 14:13:19 -04003601 status = -NFS4ERR_MOVED;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003602 goto out;
3603 }
Andy Adamson533eb462011-06-13 18:25:56 -04003604 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
3605 nfs_fixup_referral_attributes(&locations->fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003606
Andy Adamson533eb462011-06-13 18:25:56 -04003607 /* replace the lookup nfs_fattr with the locations nfs_fattr */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003608 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
Manoj Naik6b97fd32006-06-09 09:34:29 -04003609 memset(fhandle, 0, sizeof(struct nfs_fh));
3610out:
3611 if (page)
3612 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04003613 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003614 return status;
3615}
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_getattr_arg args = {
3621 .fh = fhandle,
3622 .bitmask = server->attr_bitmask,
3623 };
3624 struct nfs4_getattr_res res = {
3625 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04003626 .label = label,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 .server = server,
3628 };
3629 struct rpc_message msg = {
3630 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
3631 .rpc_argp = &args,
3632 .rpc_resp = &res,
3633 };
David Quigleyaa9c2662013-05-22 12:50:44 -04003634
3635 args.bitmask = nfs4_bitmask(server, label);
3636
Trond Myklebust0e574af2005-10-27 22:12:38 -04003637 nfs_fattr_init(fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003638 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639}
3640
David Quigley1775fd32013-05-22 12:50:42 -04003641static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3642 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
3644 struct nfs4_exception exception = { };
3645 int err;
3646 do {
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003647 err = _nfs4_proc_getattr(server, fhandle, fattr, label);
3648 trace_nfs4_getattr(server, fhandle, fattr, err);
3649 err = nfs4_handle_exception(server, err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 &exception);
3651 } while (exception.retry);
3652 return err;
3653}
3654
3655/*
3656 * The file is not closed if it is opened due to the a request to change
3657 * the size of the file. The open call will not be needed once the
3658 * VFS layer lookup-intents are implemented.
3659 *
3660 * Close is called when the inode is destroyed.
3661 * If we haven't opened the file for O_WRONLY, we
3662 * need to in the size_change case to obtain a stateid.
3663 *
3664 * Got race?
3665 * Because OPEN is always done by name in nfsv4, it is
3666 * possible that we opened a different file by the same
3667 * name. We can recognize this race condition, but we
3668 * can't do anything about it besides returning an error.
3669 *
3670 * This will be fixed with VFS changes (lookup-intent).
3671 */
3672static int
3673nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
3674 struct iattr *sattr)
3675{
David Howells2b0143b2015-03-17 22:25:59 +00003676 struct inode *inode = d_inode(dentry);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003677 struct rpc_cred *cred = NULL;
NeilBrown29b59f92016-10-13 15:26:47 +11003678 struct nfs_open_context *ctx = NULL;
David Quigley14c43f72013-05-22 12:50:43 -04003679 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 int status;
3681
Peng Tao88ac8152014-09-12 11:04:10 +08003682 if (pnfs_ld_layoutret_on_setattr(inode) &&
3683 sattr->ia_valid & ATTR_SIZE &&
3684 sattr->ia_size < i_size_read(inode))
Trond Myklebust24028672013-03-20 13:23:33 -04003685 pnfs_commit_and_return_layout(inode);
Benny Halevy8a1636c2010-07-14 15:43:57 -04003686
Trond Myklebust0e574af2005-10-27 22:12:38 -04003687 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Andy Adamson26699402012-05-30 16:12:24 -04003689 /* Deal with open(O_TRUNC) */
3690 if (sattr->ia_valid & ATTR_OPEN)
Nadav Shemercc7936f2013-07-21 17:21:43 +03003691 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
Andy Adamson26699402012-05-30 16:12:24 -04003692
3693 /* Optimization: if the end result is no change, don't RPC */
Nadav Shemercc7936f2013-07-21 17:21:43 +03003694 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
Andy Adamson26699402012-05-30 16:12:24 -04003695 return 0;
3696
Trond Myklebustd5308382005-11-04 15:33:38 -05003697 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003698 if (sattr->ia_valid & ATTR_FILE) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00003699
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003700 ctx = nfs_file_open_context(sattr->ia_file);
NeilBrown29b59f92016-10-13 15:26:47 +11003701 if (ctx)
Neil Brown504e5182008-10-16 14:15:16 +11003702 cred = ctx->cred;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003703 }
3704
David Quigley14c43f72013-05-22 12:50:43 -04003705 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
3706 if (IS_ERR(label))
3707 return PTR_ERR(label);
3708
NeilBrown29b59f92016-10-13 15:26:47 +11003709 status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL, label);
David Quigleyaa9c2662013-05-22 12:50:44 -04003710 if (status == 0) {
Trond Myklebustf0446362015-02-26 16:09:04 -05003711 nfs_setattr_update_inode(inode, sattr, fattr);
David Quigleyaa9c2662013-05-22 12:50:44 -04003712 nfs_setsecurity(inode, fattr, label);
3713 }
David Quigley14c43f72013-05-22 12:50:43 -04003714 nfs4_label_free(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 return status;
3716}
3717
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003718static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
3719 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003720 struct nfs_fattr *fattr, struct nfs4_label *label)
David Howells2b3de442006-08-22 20:06:09 -04003721{
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003722 struct nfs_server *server = NFS_SERVER(dir);
David Howells2b3de442006-08-22 20:06:09 -04003723 int status;
3724 struct nfs4_lookup_arg args = {
3725 .bitmask = server->attr_bitmask,
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003726 .dir_fh = NFS_FH(dir),
David Howells2b3de442006-08-22 20:06:09 -04003727 .name = name,
3728 };
3729 struct nfs4_lookup_res res = {
3730 .server = server,
3731 .fattr = fattr,
David Quigleyaa9c2662013-05-22 12:50:44 -04003732 .label = label,
David Howells2b3de442006-08-22 20:06:09 -04003733 .fh = fhandle,
3734 };
3735 struct rpc_message msg = {
3736 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
3737 .rpc_argp = &args,
3738 .rpc_resp = &res,
3739 };
3740
David Quigleyaa9c2662013-05-22 12:50:44 -04003741 args.bitmask = nfs4_bitmask(server, label);
3742
David Howells2b3de442006-08-22 20:06:09 -04003743 nfs_fattr_init(fattr);
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003746 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 dprintk("NFS reply lookup: %d\n", status);
3748 return status;
3749}
3750
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003751static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003752{
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003753 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003754 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003755 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3756 fattr->nlink = 2;
3757}
3758
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003759static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04003760 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003761 struct nfs_fattr *fattr, struct nfs4_label *label)
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003762{
3763 struct nfs4_exception exception = { };
3764 struct rpc_clnt *client = *clnt;
3765 int err;
3766 do {
David Quigley1775fd32013-05-22 12:50:42 -04003767 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
Trond Myklebust078ea3d2013-08-12 16:45:55 -04003768 trace_nfs4_lookup(dir, name, err);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003769 switch (err) {
3770 case -NFS4ERR_BADNAME:
3771 err = -ENOENT;
3772 goto out;
3773 case -NFS4ERR_MOVED:
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003774 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
Dominique Martinetc86c90c2015-06-04 17:04:17 +02003775 if (err == -NFS4ERR_MOVED)
3776 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003777 goto out;
3778 case -NFS4ERR_WRONGSEC:
3779 err = -EPERM;
3780 if (client != *clnt)
3781 goto out;
Andy Adamson66b06862014-06-12 15:02:32 -04003782 client = nfs4_negotiate_security(client, dir, name);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003783 if (IS_ERR(client))
3784 return PTR_ERR(client);
3785
3786 exception.retry = 1;
3787 break;
3788 default:
3789 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3790 }
3791 } while (exception.retry);
3792
3793out:
3794 if (err == 0)
3795 *clnt = client;
3796 else if (client != *clnt)
3797 rpc_shutdown_client(client);
3798
3799 return err;
3800}
3801
Al Virobeffb8f2016-07-20 16:34:42 -04003802static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
David Quigley1775fd32013-05-22 12:50:42 -04003803 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3804 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805{
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003806 int status;
3807 struct rpc_clnt *client = NFS_CLIENT(dir);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003808
David Quigley1775fd32013-05-22 12:50:42 -04003809 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003810 if (client != NFS_CLIENT(dir)) {
3811 rpc_shutdown_client(client);
3812 nfs_fixup_secinfo_attributes(fattr);
3813 }
3814 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815}
3816
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003817struct rpc_clnt *
Al Virobeffb8f2016-07-20 16:34:42 -04003818nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name,
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003819 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
3820{
Trond Myklebustb72888c2013-08-07 20:38:07 -04003821 struct rpc_clnt *client = NFS_CLIENT(dir);
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003822 int status;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003823
David Quigley1775fd32013-05-22 12:50:42 -04003824 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003825 if (status < 0)
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003826 return ERR_PTR(status);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003827 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003828}
3829
Jeff Layton5b5faaf2017-06-29 06:34:52 -07003830static int _nfs4_proc_lookupp(struct inode *inode,
3831 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3832 struct nfs4_label *label)
3833{
3834 struct rpc_clnt *clnt = NFS_CLIENT(inode);
3835 struct nfs_server *server = NFS_SERVER(inode);
3836 int status;
3837 struct nfs4_lookupp_arg args = {
3838 .bitmask = server->attr_bitmask,
3839 .fh = NFS_FH(inode),
3840 };
3841 struct nfs4_lookupp_res res = {
3842 .server = server,
3843 .fattr = fattr,
3844 .label = label,
3845 .fh = fhandle,
3846 };
3847 struct rpc_message msg = {
3848 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUPP],
3849 .rpc_argp = &args,
3850 .rpc_resp = &res,
3851 };
3852
3853 args.bitmask = nfs4_bitmask(server, label);
3854
3855 nfs_fattr_init(fattr);
3856
3857 dprintk("NFS call lookupp ino=0x%lx\n", inode->i_ino);
3858 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
3859 &res.seq_res, 0);
3860 dprintk("NFS reply lookupp: %d\n", status);
3861 return status;
3862}
3863
3864static int nfs4_proc_lookupp(struct inode *inode, struct nfs_fh *fhandle,
3865 struct nfs_fattr *fattr, struct nfs4_label *label)
3866{
3867 struct nfs4_exception exception = { };
3868 int err;
3869 do {
3870 err = _nfs4_proc_lookupp(inode, fhandle, fattr, label);
3871 trace_nfs4_lookupp(inode, err);
3872 err = nfs4_handle_exception(NFS_SERVER(inode), err,
3873 &exception);
3874 } while (exception.retry);
3875 return err;
3876}
3877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3879{
Trond Myklebust76b32992007-08-10 17:45:11 -04003880 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 struct nfs4_accessargs args = {
3882 .fh = NFS_FH(inode),
Trond Myklebusta4980e72012-01-30 15:43:56 -05003883 .bitmask = server->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 };
Trond Myklebust76b32992007-08-10 17:45:11 -04003885 struct nfs4_accessres res = {
3886 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04003887 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 struct rpc_message msg = {
3889 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
3890 .rpc_argp = &args,
3891 .rpc_resp = &res,
3892 .rpc_cred = entry->cred,
3893 };
3894 int mode = entry->mask;
David Quigleyaa9c2662013-05-22 12:50:44 -04003895 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
3897 /*
3898 * Determine which access bits we want to ask for...
3899 */
3900 if (mode & MAY_READ)
3901 args.access |= NFS4_ACCESS_READ;
3902 if (S_ISDIR(inode->i_mode)) {
3903 if (mode & MAY_WRITE)
3904 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
3905 if (mode & MAY_EXEC)
3906 args.access |= NFS4_ACCESS_LOOKUP;
3907 } else {
3908 if (mode & MAY_WRITE)
3909 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
3910 if (mode & MAY_EXEC)
3911 args.access |= NFS4_ACCESS_EXECUTE;
3912 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003913
3914 res.fattr = nfs_alloc_fattr();
3915 if (res.fattr == NULL)
3916 return -ENOMEM;
3917
Bryan Schumaker7c513052011-03-24 17:12:24 +00003918 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 if (!status) {
Weston Andros Adamson6168f622012-09-10 14:00:46 -04003920 nfs_access_set_mask(entry, res.access);
Trond Myklebustc407d412010-04-16 16:22:48 -04003921 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003923 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 return status;
3925}
3926
3927static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3928{
3929 struct nfs4_exception exception = { };
3930 int err;
3931 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003932 err = _nfs4_proc_access(inode, entry);
3933 trace_nfs4_access(inode, err);
3934 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 &exception);
3936 } while (exception.retry);
3937 return err;
3938}
3939
3940/*
3941 * TODO: For the time being, we don't try to get any attributes
3942 * along with any of the zero-copy operations READ, READDIR,
3943 * READLINK, WRITE.
3944 *
3945 * In the case of the first three, we want to put the GETATTR
3946 * after the read-type operation -- this is because it is hard
3947 * to predict the length of a GETATTR response in v4, and thus
3948 * align the READ data correctly. This means that the GETATTR
3949 * may end up partially falling into the page cache, and we should
3950 * shift it into the 'tail' of the xdr_buf before processing.
3951 * To do this efficiently, we need to know the total length
3952 * of data received, which doesn't seem to be available outside
3953 * of the RPC layer.
3954 *
3955 * In the case of WRITE, we also want to put the GETATTR after
3956 * the operation -- in this case because we want to make sure
Trond Myklebust140150d2012-06-05 15:20:25 -04003957 * we get the post-operation mtime and size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 *
3959 * Both of these changes to the XDR layer would in fact be quite
3960 * minor, but I decided to leave them for a subsequent patch.
3961 */
3962static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
3963 unsigned int pgbase, unsigned int pglen)
3964{
3965 struct nfs4_readlink args = {
3966 .fh = NFS_FH(inode),
3967 .pgbase = pgbase,
3968 .pglen = pglen,
3969 .pages = &page,
3970 };
Benny Halevyf50c7002009-04-01 09:21:55 -04003971 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 struct rpc_message msg = {
3973 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
3974 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04003975 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 };
3977
Bryan Schumaker7c513052011-03-24 17:12:24 +00003978 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 -07003979}
3980
3981static int nfs4_proc_readlink(struct inode *inode, struct page *page,
3982 unsigned int pgbase, unsigned int pglen)
3983{
3984 struct nfs4_exception exception = { };
3985 int err;
3986 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003987 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
3988 trace_nfs4_readlink(inode, err);
3989 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 &exception);
3991 } while (exception.retry);
3992 return err;
3993}
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995/*
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003996 * This is just for mknod. open(O_CREAT) will always do ->open_context().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998static int
3999nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +02004000 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004002 struct nfs_server *server = NFS_SERVER(dir);
David Quigleyaa9c2662013-05-22 12:50:44 -04004003 struct nfs4_label l, *ilabel = NULL;
Miklos Szeredi8867fe52012-06-05 15:10:19 +02004004 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 int status = 0;
4007
NeilBrown532d4de2016-10-13 15:26:47 +11004008 ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02004009 if (IS_ERR(ctx))
4010 return PTR_ERR(ctx);
4011
David Quigleyaa9c2662013-05-22 12:50:44 -04004012 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
4013
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004014 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4015 sattr->ia_mode &= ~current_umask();
Kinglong Meec5c3fb52015-08-26 21:11:39 +08004016 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 if (IS_ERR(state)) {
4018 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04004019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021out:
David Quigleyaa9c2662013-05-22 12:50:44 -04004022 nfs4_label_release_security(ilabel);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02004023 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 return status;
4025}
4026
Al Virobeffb8f2016-07-20 16:34:42 -04004027static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028{
Trond Myklebust16e42952005-10-27 22:12:44 -04004029 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004030 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 .fh = NFS_FH(dir),
Linus Torvalds26fe5752012-05-10 13:14:12 -07004032 .name = *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004034 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04004035 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04004036 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004038 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
4039 .rpc_argp = &args,
4040 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 };
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004042 unsigned long timestamp = jiffies;
Trond Myklebust778d2812012-04-27 13:48:19 -04004043 int status;
Trond Myklebustd3468902010-04-16 16:22:50 -04004044
Bryan Schumaker7c513052011-03-24 17:12:24 +00004045 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
Trond Myklebust778d2812012-04-27 13:48:19 -04004046 if (status == 0)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004047 update_changeattr(dir, &res.cinfo, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 return status;
4049}
4050
Al Virobeffb8f2016-07-20 16:34:42 -04004051static int nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052{
4053 struct nfs4_exception exception = { };
4054 int err;
4055 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004056 err = _nfs4_proc_remove(dir, name);
4057 trace_nfs4_remove(dir, name, err);
4058 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 &exception);
4060 } while (exception.retry);
4061 return err;
4062}
4063
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004064static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004066 struct nfs_server *server = NFS_SERVER(dir);
4067 struct nfs_removeargs *args = msg->rpc_argp;
4068 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004070 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Chuck Levera9c92d62013-08-09 12:48:18 -04004072 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04004073
4074 nfs_fattr_init(res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075}
4076
Bryan Schumaker34e137c2012-03-19 14:54:41 -04004077static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4078{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004079 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004080 &data->args.seq_args,
4081 &data->res.seq_res,
4082 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083}
4084
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004085static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086{
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004087 struct nfs_unlinkdata *data = task->tk_calldata;
4088 struct nfs_removeres *res = &data->res;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004089
Trond Myklebust14516c32010-07-31 14:29:06 -04004090 if (!nfs4_sequence_done(task, &res->seq_res))
4091 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004092 if (nfs4_async_handle_error(task, res->server, NULL,
4093 &data->timeout) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004094 return 0;
Trond Myklebustc40d52f2017-01-11 12:36:11 -05004095 if (task->tk_status == 0)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004096 update_changeattr(dir, &res->cinfo, res->dir_attr->time_start);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004097 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098}
4099
Jeff Laytond3d41522010-09-17 17:31:57 -04004100static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
4101{
4102 struct nfs_server *server = NFS_SERVER(dir);
4103 struct nfs_renameargs *arg = msg->rpc_argp;
4104 struct nfs_renameres *res = msg->rpc_resp;
4105
4106 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
Jeff Laytond3d41522010-09-17 17:31:57 -04004107 res->server = server;
Chuck Levera9c92d62013-08-09 12:48:18 -04004108 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1);
Jeff Laytond3d41522010-09-17 17:31:57 -04004109}
4110
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04004111static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4112{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004113 nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004114 &data->args.seq_args,
4115 &data->res.seq_res,
4116 task);
Jeff Laytond3d41522010-09-17 17:31:57 -04004117}
4118
4119static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4120 struct inode *new_dir)
4121{
Trond Myklebustfbc6f7c2013-08-12 17:08:26 -04004122 struct nfs_renamedata *data = task->tk_calldata;
4123 struct nfs_renameres *res = &data->res;
Jeff Laytond3d41522010-09-17 17:31:57 -04004124
4125 if (!nfs4_sequence_done(task, &res->seq_res))
4126 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004127 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
Jeff Laytond3d41522010-09-17 17:31:57 -04004128 return 0;
4129
Trond Myklebustc733c492017-01-11 12:32:26 -05004130 if (task->tk_status == 0) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004131 update_changeattr(old_dir, &res->old_cinfo, res->old_fattr->time_start);
Trond Myklebustc733c492017-01-11 12:32:26 -05004132 if (new_dir != old_dir)
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004133 update_changeattr(new_dir, &res->new_cinfo, res->new_fattr->time_start);
Trond Myklebustc733c492017-01-11 12:32:26 -05004134 }
Jeff Laytond3d41522010-09-17 17:31:57 -04004135 return 1;
4136}
4137
Al Virobeffb8f2016-07-20 16:34:42 -04004138static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004140 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 struct nfs4_link_arg arg = {
4142 .fh = NFS_FH(inode),
4143 .dir_fh = NFS_FH(dir),
4144 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004145 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004147 struct nfs4_link_res res = {
4148 .server = server,
David Quigley1775fd32013-05-22 12:50:42 -04004149 .label = NULL,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004150 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 struct rpc_message msg = {
4152 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4153 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004154 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 };
Trond Myklebust136f2622010-04-16 16:22:49 -04004156 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157
Trond Myklebust136f2622010-04-16 16:22:49 -04004158 res.fattr = nfs_alloc_fattr();
Trond Myklebust778d2812012-04-27 13:48:19 -04004159 if (res.fattr == NULL)
Trond Myklebust136f2622010-04-16 16:22:49 -04004160 goto out;
4161
David Quigley14c43f72013-05-22 12:50:43 -04004162 res.label = nfs4_label_alloc(server, GFP_KERNEL);
4163 if (IS_ERR(res.label)) {
4164 status = PTR_ERR(res.label);
4165 goto out;
4166 }
David Quigleyaa9c2662013-05-22 12:50:44 -04004167 arg.bitmask = nfs4_bitmask(server, res.label);
David Quigley14c43f72013-05-22 12:50:43 -04004168
Bryan Schumaker7c513052011-03-24 17:12:24 +00004169 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004170 if (!status) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004171 update_changeattr(dir, &res.cinfo, res.fattr->time_start);
David Quigleyaa9c2662013-05-22 12:50:44 -04004172 status = nfs_post_op_update_inode(inode, res.fattr);
4173 if (!status)
4174 nfs_setsecurity(inode, res.fattr, res.label);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004175 }
David Quigley14c43f72013-05-22 12:50:43 -04004176
4177
4178 nfs4_label_free(res.label);
4179
Trond Myklebust136f2622010-04-16 16:22:49 -04004180out:
Trond Myklebust136f2622010-04-16 16:22:49 -04004181 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 return status;
4183}
4184
Al Virobeffb8f2016-07-20 16:34:42 -04004185static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186{
4187 struct nfs4_exception exception = { };
4188 int err;
4189 do {
4190 err = nfs4_handle_exception(NFS_SERVER(inode),
4191 _nfs4_proc_link(inode, dir, name),
4192 &exception);
4193 } while (exception.retry);
4194 return err;
4195}
4196
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004197struct nfs4_createdata {
4198 struct rpc_message msg;
4199 struct nfs4_create_arg arg;
4200 struct nfs4_create_res res;
4201 struct nfs_fh fh;
4202 struct nfs_fattr fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004203 struct nfs4_label *label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004204};
4205
4206static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04004207 const struct qstr *name, struct iattr *sattr, u32 ftype)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004208{
4209 struct nfs4_createdata *data;
4210
4211 data = kzalloc(sizeof(*data), GFP_KERNEL);
4212 if (data != NULL) {
4213 struct nfs_server *server = NFS_SERVER(dir);
4214
David Quigley14c43f72013-05-22 12:50:43 -04004215 data->label = nfs4_label_alloc(server, GFP_KERNEL);
4216 if (IS_ERR(data->label))
4217 goto out_free;
4218
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004219 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
4220 data->msg.rpc_argp = &data->arg;
4221 data->msg.rpc_resp = &data->res;
4222 data->arg.dir_fh = NFS_FH(dir);
4223 data->arg.server = server;
4224 data->arg.name = name;
4225 data->arg.attrs = sattr;
4226 data->arg.ftype = ftype;
David Quigleyaa9c2662013-05-22 12:50:44 -04004227 data->arg.bitmask = nfs4_bitmask(server, data->label);
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004228 data->arg.umask = current_umask();
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004229 data->res.server = server;
4230 data->res.fh = &data->fh;
4231 data->res.fattr = &data->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004232 data->res.label = data->label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004233 nfs_fattr_init(data->res.fattr);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004234 }
4235 return data;
David Quigley14c43f72013-05-22 12:50:43 -04004236out_free:
4237 kfree(data);
4238 return NULL;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004239}
4240
4241static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
4242{
Bryan Schumaker7c513052011-03-24 17:12:24 +00004243 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
Bryan Schumakere73b83f2011-03-24 17:12:23 +00004244 &data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004245 if (status == 0) {
Trond Myklebustd3129ef2017-01-11 22:07:28 -05004246 update_changeattr(dir, &data->res.dir_cinfo,
4247 data->res.fattr->time_start);
David Quigley1775fd32013-05-22 12:50:42 -04004248 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004249 }
4250 return status;
4251}
4252
4253static void nfs4_free_createdata(struct nfs4_createdata *data)
4254{
David Quigley14c43f72013-05-22 12:50:43 -04004255 nfs4_label_free(data->label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004256 kfree(data);
4257}
4258
Chuck Lever4f390c12006-08-22 20:06:22 -04004259static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004260 struct page *page, unsigned int len, struct iattr *sattr,
4261 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004263 struct nfs4_createdata *data;
4264 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Chuck Lever94a6d752006-08-22 20:06:23 -04004266 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004267 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04004268
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004269 status = -ENOMEM;
4270 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
4271 if (data == NULL)
4272 goto out;
4273
4274 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
4275 data->arg.u.symlink.pages = &page;
4276 data->arg.u.symlink.len = len;
David Quigley1775fd32013-05-22 12:50:42 -04004277 data->arg.label = label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004279 status = nfs4_do_create(dir, dentry, data);
4280
4281 nfs4_free_createdata(data);
4282out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return status;
4284}
4285
Chuck Lever4f390c12006-08-22 20:06:22 -04004286static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04004287 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288{
4289 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004290 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 int err;
David Quigleyaa9c2662013-05-22 12:50:44 -04004292
4293 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4294
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004296 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
4297 trace_nfs4_symlink(dir, &dentry->d_name, err);
4298 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 &exception);
4300 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004301
4302 nfs4_label_release_security(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 return err;
4304}
4305
4306static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004307 struct iattr *sattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004309 struct nfs4_createdata *data;
4310 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004312 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
4313 if (data == NULL)
4314 goto out;
4315
David Quigley1775fd32013-05-22 12:50:42 -04004316 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004317 status = nfs4_do_create(dir, dentry, data);
4318
4319 nfs4_free_createdata(data);
4320out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 return status;
4322}
4323
4324static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4325 struct iattr *sattr)
4326{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004327 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004329 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004331
David Quigleyaa9c2662013-05-22 12:50:44 -04004332 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4333
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004334 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4335 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004337 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
4338 trace_nfs4_mkdir(dir, &dentry->d_name, err);
4339 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 &exception);
4341 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004342 nfs4_label_release_security(label);
4343
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 return err;
4345}
4346
4347static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04004348 u64 cookie, struct page **pages, unsigned int count, bool plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349{
David Howells2b0143b2015-03-17 22:25:59 +00004350 struct inode *dir = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 struct nfs4_readdir_arg args = {
4352 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004353 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 .pgbase = 0,
4355 .count = count,
David Howells2b0143b2015-03-17 22:25:59 +00004356 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04004357 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 };
4359 struct nfs4_readdir_res res;
4360 struct rpc_message msg = {
4361 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
4362 .rpc_argp = &args,
4363 .rpc_resp = &res,
4364 .rpc_cred = cred,
4365 };
4366 int status;
4367
Al Viro6de14722013-09-16 10:53:17 -04004368 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
4369 dentry,
Trond Myklebusteadf4592005-06-22 17:16:39 +00004370 (unsigned long long)cookie);
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004371 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 res.pgbase = args.pgbase;
Bryan Schumaker7c513052011-03-24 17:12:24 +00004373 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 -05004374 if (status >= 0) {
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004375 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05004376 status += args.pgbase;
4377 }
Trond Myklebustc4812992007-09-28 17:11:45 -04004378
4379 nfs_invalidate_atime(dir);
4380
Harvey Harrison3110ff82008-05-02 13:42:44 -07004381 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 return status;
4383}
4384
4385static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04004386 u64 cookie, struct page **pages, unsigned int count, bool plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387{
4388 struct nfs4_exception exception = { };
4389 int err;
4390 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04004391 err = _nfs4_proc_readdir(dentry, cred, cookie,
4392 pages, count, plus);
David Howells2b0143b2015-03-17 22:25:59 +00004393 trace_nfs4_readdir(d_inode(dentry), err);
4394 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 &exception);
4396 } while (exception.retry);
4397 return err;
4398}
4399
4400static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
David Quigleyaa9c2662013-05-22 12:50:44 -04004401 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004403 struct nfs4_createdata *data;
4404 int mode = sattr->ia_mode;
4405 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004407 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
4408 if (data == NULL)
4409 goto out;
4410
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004412 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004414 data->arg.ftype = NF4BLK;
4415 data->arg.u.device.specdata1 = MAJOR(rdev);
4416 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 }
4418 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004419 data->arg.ftype = NF4CHR;
4420 data->arg.u.device.specdata1 = MAJOR(rdev);
4421 data->arg.u.device.specdata2 = MINOR(rdev);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004422 } else if (!S_ISSOCK(mode)) {
4423 status = -EINVAL;
4424 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 }
David Quigley1775fd32013-05-22 12:50:42 -04004426
David Quigleyaa9c2662013-05-22 12:50:44 -04004427 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004428 status = nfs4_do_create(dir, dentry, data);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004429out_free:
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004430 nfs4_free_createdata(data);
4431out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 return status;
4433}
4434
4435static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4436 struct iattr *sattr, dev_t rdev)
4437{
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004438 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004440 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004442
David Quigleyaa9c2662013-05-22 12:50:44 -04004443 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4444
Andreas Gruenbacherdff25dd2016-12-02 22:53:30 -05004445 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4446 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004448 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
4449 trace_nfs4_mknod(dir, &dentry->d_name, err);
4450 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 &exception);
4452 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004453
4454 nfs4_label_release_security(label);
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 return err;
4457}
4458
4459static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
4460 struct nfs_fsstat *fsstat)
4461{
4462 struct nfs4_statfs_arg args = {
4463 .fh = fhandle,
4464 .bitmask = server->attr_bitmask,
4465 };
Benny Halevy24ad1482009-04-01 09:21:56 -04004466 struct nfs4_statfs_res res = {
4467 .fsstat = fsstat,
4468 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 struct rpc_message msg = {
4470 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4471 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04004472 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 };
4474
Trond Myklebust0e574af2005-10-27 22:12:38 -04004475 nfs_fattr_init(fsstat->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004476 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477}
4478
4479static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
4480{
4481 struct nfs4_exception exception = { };
4482 int err;
4483 do {
4484 err = nfs4_handle_exception(server,
4485 _nfs4_proc_statfs(server, fhandle, fsstat),
4486 &exception);
4487 } while (exception.retry);
4488 return err;
4489}
4490
4491static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
4492 struct nfs_fsinfo *fsinfo)
4493{
4494 struct nfs4_fsinfo_arg args = {
4495 .fh = fhandle,
4496 .bitmask = server->attr_bitmask,
4497 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04004498 struct nfs4_fsinfo_res res = {
4499 .fsinfo = fsinfo,
4500 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 struct rpc_message msg = {
4502 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
4503 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04004504 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 };
4506
Bryan Schumaker7c513052011-03-24 17:12:24 +00004507 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508}
4509
4510static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4511{
4512 struct nfs4_exception exception = { };
Chuck Lever83ca7f52013-03-16 15:55:53 -04004513 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 int err;
4515
4516 do {
Chuck Lever83ca7f52013-03-16 15:55:53 -04004517 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04004518 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004519 if (err == 0) {
Trond Myklebustfb10fb62016-08-05 19:13:08 -04004520 nfs4_set_lease_period(server->nfs_client,
4521 fsinfo->lease_time * HZ,
4522 now);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004523 break;
4524 }
4525 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 } while (exception.retry);
4527 return err;
4528}
4529
4530static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4531{
Bryan Schumakere38eb652012-06-20 15:53:40 -04004532 int error;
4533
Trond Myklebust0e574af2005-10-27 22:12:38 -04004534 nfs_fattr_init(fsinfo->fattr);
Bryan Schumakere38eb652012-06-20 15:53:40 -04004535 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004536 if (error == 0) {
4537 /* block layout checks this! */
4538 server->pnfs_blksize = fsinfo->blksize;
Jeff Laytonca440c32016-09-15 14:40:49 -04004539 set_pnfs_layoutdriver(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004540 }
Bryan Schumakere38eb652012-06-20 15:53:40 -04004541
4542 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543}
4544
4545static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4546 struct nfs_pathconf *pathconf)
4547{
4548 struct nfs4_pathconf_arg args = {
4549 .fh = fhandle,
4550 .bitmask = server->attr_bitmask,
4551 };
Benny Halevyd45b2982009-04-01 09:21:58 -04004552 struct nfs4_pathconf_res res = {
4553 .pathconf = pathconf,
4554 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 struct rpc_message msg = {
4556 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
4557 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04004558 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 };
4560
4561 /* None of the pathconf attributes are mandatory to implement */
4562 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
4563 memset(pathconf, 0, sizeof(*pathconf));
4564 return 0;
4565 }
4566
Trond Myklebust0e574af2005-10-27 22:12:38 -04004567 nfs_fattr_init(pathconf->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004568 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
4571static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4572 struct nfs_pathconf *pathconf)
4573{
4574 struct nfs4_exception exception = { };
4575 int err;
4576
4577 do {
4578 err = nfs4_handle_exception(server,
4579 _nfs4_proc_pathconf(server, fhandle, pathconf),
4580 &exception);
4581 } while (exception.retry);
4582 return err;
4583}
4584
Trond Myklebust5521abf2013-03-16 20:54:34 -04004585int nfs4_set_rw_stateid(nfs4_stateid *stateid,
Trond Myklebust9b206142013-03-17 15:52:00 -04004586 const struct nfs_open_context *ctx,
4587 const struct nfs_lock_context *l_ctx,
4588 fmode_t fmode)
4589{
NeilBrown17393472016-10-13 15:26:47 +11004590 return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL);
Trond Myklebust9b206142013-03-17 15:52:00 -04004591}
4592EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
4593
Trond Myklebust5521abf2013-03-16 20:54:34 -04004594static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
4595 const struct nfs_open_context *ctx,
4596 const struct nfs_lock_context *l_ctx,
4597 fmode_t fmode)
4598{
4599 nfs4_stateid current_stateid;
4600
Trond Myklebuste1253be2014-03-05 08:44:23 -05004601 /* If the current stateid represents a lost lock, then exit */
4602 if (nfs4_set_rw_stateid(&current_stateid, ctx, l_ctx, fmode) == -EIO)
4603 return true;
Trond Myklebust5521abf2013-03-16 20:54:34 -04004604 return nfs4_stateid_match(stateid, &current_stateid);
4605}
4606
4607static bool nfs4_error_stateid_expired(int err)
4608{
4609 switch (err) {
4610 case -NFS4ERR_DELEG_REVOKED:
4611 case -NFS4ERR_ADMIN_REVOKED:
4612 case -NFS4ERR_BAD_STATEID:
4613 case -NFS4ERR_STALE_STATEID:
4614 case -NFS4ERR_OLD_STATEID:
4615 case -NFS4ERR_OPENMODE:
4616 case -NFS4ERR_EXPIRED:
4617 return true;
4618 }
4619 return false;
4620}
4621
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004622static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004624 struct nfs_server *server = NFS_SERVER(hdr->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004626 trace_nfs4_read(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004627 if (task->tk_status < 0) {
4628 struct nfs4_exception exception = {
4629 .inode = hdr->inode,
4630 .state = hdr->args.context->state,
4631 .stateid = &hdr->args.stateid,
4632 };
4633 task->tk_status = nfs4_async_handle_exception(task,
4634 server, task->tk_status, &exception);
4635 if (exception.retry) {
4636 rpc_restart_call_prepare(task);
4637 return -EAGAIN;
4638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 }
Trond Myklebust8850df92007-09-28 17:20:07 -04004640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 if (task->tk_status > 0)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004642 renew_lease(server, hdr->timestamp);
Trond Myklebustec06c092006-03-20 13:44:27 -05004643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644}
4645
Trond Myklebust5521abf2013-03-16 20:54:34 -04004646static bool nfs4_read_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004647 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004648{
4649
4650 if (!nfs4_error_stateid_expired(task->tk_status) ||
4651 nfs4_stateid_is_current(&args->stateid,
4652 args->context,
4653 args->lock_context,
4654 FMODE_READ))
4655 return false;
4656 rpc_restart_call_prepare(task);
4657 return true;
4658}
4659
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004660static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004661{
4662
4663 dprintk("--> %s\n", __func__);
4664
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004665 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004666 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004667 if (nfs4_read_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004668 return -EAGAIN;
Trond Myklebustbfc505d2016-09-15 18:26:05 -04004669 if (task->tk_status > 0)
4670 nfs_invalidate_atime(hdr->inode);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004671 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4672 nfs4_read_done_cb(task, hdr);
Andy Adamsoncbdabc72011-03-01 01:34:20 +00004673}
4674
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004675static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
4676 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004678 hdr->timestamp = jiffies;
Trond Myklebustca857cc2016-06-28 13:54:09 -04004679 if (!hdr->pgio_done_cb)
4680 hdr->pgio_done_cb = nfs4_read_done_cb;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004681 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004682 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683}
4684
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004685static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
4686 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -04004687{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004688 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004689 &hdr->args.seq_args,
4690 &hdr->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -04004691 task))
NeilBrownef1820f2013-09-04 17:04:49 +10004692 return 0;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004693 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
4694 hdr->args.lock_context,
Benjamin Coddingtonfbe77c32017-04-19 10:11:35 -04004695 hdr->rw_mode) == -EIO)
NeilBrownef1820f2013-09-04 17:04:49 +10004696 return -EIO;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004697 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
NeilBrownef1820f2013-09-04 17:04:49 +10004698 return -EIO;
4699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700}
4701
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004702static int nfs4_write_done_cb(struct rpc_task *task,
4703 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004705 struct inode *inode = hdr->inode;
NeilBrown8478eaa2014-09-18 16:09:27 +10004706
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004707 trace_nfs4_write(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004708 if (task->tk_status < 0) {
4709 struct nfs4_exception exception = {
4710 .inode = hdr->inode,
4711 .state = hdr->args.context->state,
4712 .stateid = &hdr->args.stateid,
4713 };
4714 task->tk_status = nfs4_async_handle_exception(task,
4715 NFS_SERVER(inode), task->tk_status,
4716 &exception);
4717 if (exception.retry) {
4718 rpc_restart_call_prepare(task);
4719 return -EAGAIN;
4720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004722 if (task->tk_status >= 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004723 renew_lease(NFS_SERVER(inode), hdr->timestamp);
Trond Myklebusta08a8cd2015-02-26 17:36:09 -05004724 nfs_writeback_update_inode(hdr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004725 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004726 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727}
4728
Trond Myklebust5521abf2013-03-16 20:54:34 -04004729static bool nfs4_write_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004730 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004731{
4732
4733 if (!nfs4_error_stateid_expired(task->tk_status) ||
4734 nfs4_stateid_is_current(&args->stateid,
4735 args->context,
4736 args->lock_context,
4737 FMODE_WRITE))
4738 return false;
4739 rpc_restart_call_prepare(task);
4740 return true;
4741}
4742
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004743static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Fred Isamanb029bc92011-03-03 15:13:42 +00004744{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004745 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Fred Isamanb029bc92011-03-03 15:13:42 +00004746 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004747 if (nfs4_write_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004748 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004749 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4750 nfs4_write_done_cb(task, hdr);
Fred Isamanb029bc92011-03-03 15:13:42 +00004751}
4752
Trond Myklebust5a37f852012-04-28 14:55:16 -04004753static
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004754bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
Fred Isamana69aef12011-03-03 15:13:47 +00004755{
Trond Myklebust5a37f852012-04-28 14:55:16 -04004756 /* Don't request attributes for pNFS or O_DIRECT writes */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004757 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
Trond Myklebust5a37f852012-04-28 14:55:16 -04004758 return false;
4759 /* Otherwise, request attributes if and only if we don't hold
4760 * a delegation
4761 */
Bryan Schumaker011e2a72012-06-20 15:53:43 -04004762 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
Fred Isamana69aef12011-03-03 15:13:47 +00004763}
Fred Isamana69aef12011-03-03 15:13:47 +00004764
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004765static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
4766 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004768 struct nfs_server *server = NFS_SERVER(hdr->inode);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004769
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004770 if (!nfs4_write_need_cache_consistency_data(hdr)) {
4771 hdr->args.bitmask = NULL;
4772 hdr->res.fattr = NULL;
Fred Isaman7ffd1062011-03-03 15:13:46 +00004773 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004774 hdr->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust5a37f852012-04-28 14:55:16 -04004775
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004776 if (!hdr->pgio_done_cb)
4777 hdr->pgio_done_cb = nfs4_write_done_cb;
4778 hdr->res.server = server;
4779 hdr->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004781 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004782 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783}
4784
Fred Isaman0b7c0152012-04-20 14:47:39 -04004785static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
4786{
Anna Schumaker42e1cca2017-01-09 15:48:22 -05004787 nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004788 &data->args.seq_args,
4789 &data->res.seq_res,
4790 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791}
4792
Fred Isaman0b7c0152012-04-20 14:47:39 -04004793static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 struct inode *inode = data->inode;
Trond Myklebust14516c32010-07-31 14:29:06 -04004796
Trond Myklebustcc668ab2013-08-14 15:31:28 -04004797 trace_nfs4_commit(data, task->tk_status);
NeilBrown8478eaa2014-09-18 16:09:27 +10004798 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4799 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07004800 rpc_restart_call_prepare(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05004801 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804}
4805
Fred Isaman0b7c0152012-04-20 14:47:39 -04004806static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
Fred Isaman5f452432011-03-23 13:27:46 +00004807{
4808 if (!nfs4_sequence_done(task, &data->res.seq_res))
4809 return -EAGAIN;
Fred Isaman0b7c0152012-04-20 14:47:39 -04004810 return data->commit_done_cb(task, data);
Fred Isaman5f452432011-03-23 13:27:46 +00004811}
4812
Fred Isaman0b7c0152012-04-20 14:47:39 -04004813static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814{
Trond Myklebust788e7a82006-03-20 13:44:27 -05004815 struct nfs_server *server = NFS_SERVER(data->inode);
Fred Isaman988b6dc2011-03-23 13:27:52 +00004816
Fred Isaman0b7c0152012-04-20 14:47:39 -04004817 if (data->commit_done_cb == NULL)
4818 data->commit_done_cb = nfs4_commit_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004819 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004820 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Chuck Levera9c92d62013-08-09 12:48:18 -04004821 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822}
4823
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004824struct nfs4_renewdata {
4825 struct nfs_client *client;
4826 unsigned long timestamp;
4827};
4828
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829/*
4830 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
4831 * standalone procedure for queueing an asynchronous RENEW.
4832 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004833static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004834{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004835 struct nfs4_renewdata *data = calldata;
4836 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004837
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004838 if (atomic_read(&clp->cl_count) > 1)
4839 nfs4_schedule_state_renewal(clp);
4840 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004841 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004842}
4843
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004844static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004846 struct nfs4_renewdata *data = calldata;
4847 struct nfs_client *clp = data->client;
4848 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
Trond Myklebustc6d01c62013-08-09 11:51:26 -04004850 trace_nfs4_renew_async(clp, task->tk_status);
Chuck Leverf8aba1e2013-10-17 14:13:53 -04004851 switch (task->tk_status) {
4852 case 0:
4853 break;
4854 case -NFS4ERR_LEASE_MOVED:
4855 nfs4_schedule_lease_moved_recovery(clp);
4856 break;
4857 default:
Trond Myklebust95baa252009-05-26 14:51:00 -04004858 /* Unless we're shutting down, schedule state recovery! */
Trond Myklebust042b60b2011-08-24 15:07:37 -04004859 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
4860 return;
4861 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004862 nfs4_schedule_lease_recovery(clp);
Trond Myklebust042b60b2011-08-24 15:07:37 -04004863 return;
4864 }
4865 nfs4_schedule_path_down_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 }
Trond Myklebust452e9352010-07-31 14:29:06 -04004867 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868}
4869
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004870static const struct rpc_call_ops nfs4_renew_ops = {
4871 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004872 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004873};
4874
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004875static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876{
4877 struct rpc_message msg = {
4878 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4879 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004880 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004882 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004884 if (renew_flags == 0)
4885 return 0;
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004886 if (!atomic_inc_not_zero(&clp->cl_count))
4887 return -EIO;
Trond Myklebustb569ad32011-08-24 15:07:35 -04004888 data = kmalloc(sizeof(*data), GFP_NOFS);
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04004889 if (data == NULL) {
4890 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004891 return -ENOMEM;
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04004892 }
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004893 data->client = clp;
4894 data->timestamp = jiffies;
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004895 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004896 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897}
4898
Trond Myklebust8534d4e2011-08-24 15:07:37 -04004899static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900{
4901 struct rpc_message msg = {
4902 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4903 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004904 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 };
4906 unsigned long now = jiffies;
4907 int status;
4908
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004909 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 if (status < 0)
4911 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04004912 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 return 0;
4914}
4915
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004916static inline int nfs4_server_supports_acls(struct nfs_server *server)
4917{
Malahal Naineni7dd7d952014-01-23 08:54:55 -06004918 return server->caps & NFS_CAP_ACLS;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004919}
4920
Trond Myklebust21f498c2012-08-24 10:59:25 -04004921/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
4922 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004923 * the stack.
4924 */
Trond Myklebust21f498c2012-08-24 10:59:25 -04004925#define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004926
Neil Hormane9e3d722011-03-04 19:26:03 -05004927static int buf_to_pages_noslab(const void *buf, size_t buflen,
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01004928 struct page **pages)
Neil Hormane9e3d722011-03-04 19:26:03 -05004929{
4930 struct page *newpage, **spages;
4931 int rc = 0;
4932 size_t len;
4933 spages = pages;
4934
4935 do {
Trond Myklebust21f498c2012-08-24 10:59:25 -04004936 len = min_t(size_t, PAGE_SIZE, buflen);
Neil Hormane9e3d722011-03-04 19:26:03 -05004937 newpage = alloc_page(GFP_KERNEL);
4938
4939 if (newpage == NULL)
4940 goto unwind;
4941 memcpy(page_address(newpage), buf, len);
Anna Schumakerd9b67e12017-01-11 15:04:25 -05004942 buf += len;
4943 buflen -= len;
Neil Hormane9e3d722011-03-04 19:26:03 -05004944 *pages++ = newpage;
4945 rc++;
4946 } while (buflen != 0);
4947
4948 return rc;
4949
4950unwind:
4951 for(; rc > 0; rc--)
4952 __free_page(spages[rc-1]);
4953 return -ENOMEM;
4954}
4955
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004956struct nfs4_cached_acl {
4957 int cached;
4958 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00004959 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004960};
4961
4962static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004963{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004964 struct nfs_inode *nfsi = NFS_I(inode);
4965
4966 spin_lock(&inode->i_lock);
4967 kfree(nfsi->nfs4_acl);
4968 nfsi->nfs4_acl = acl;
4969 spin_unlock(&inode->i_lock);
4970}
4971
4972static void nfs4_zap_acl_attr(struct inode *inode)
4973{
4974 nfs4_set_cached_acl(inode, NULL);
4975}
4976
4977static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
4978{
4979 struct nfs_inode *nfsi = NFS_I(inode);
4980 struct nfs4_cached_acl *acl;
4981 int ret = -ENOENT;
4982
4983 spin_lock(&inode->i_lock);
4984 acl = nfsi->nfs4_acl;
4985 if (acl == NULL)
4986 goto out;
4987 if (buf == NULL) /* user is just asking for length */
4988 goto out_len;
4989 if (acl->cached == 0)
4990 goto out;
4991 ret = -ERANGE; /* see getxattr(2) man page */
4992 if (acl->len > buflen)
4993 goto out;
4994 memcpy(buf, acl->data, acl->len);
4995out_len:
4996 ret = acl->len;
4997out:
4998 spin_unlock(&inode->i_lock);
4999 return ret;
5000}
5001
Sachin Prabhu5794d212012-04-17 14:36:40 +01005002static 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 +00005003{
5004 struct nfs4_cached_acl *acl;
Trond Myklebustb291f1b2012-08-14 18:30:41 -04005005 size_t buflen = sizeof(*acl) + acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005006
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005007 if (buflen <= PAGE_SIZE) {
Trond Myklebustb291f1b2012-08-14 18:30:41 -04005008 acl = kmalloc(buflen, GFP_KERNEL);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005009 if (acl == NULL)
5010 goto out;
5011 acl->cached = 1;
Sachin Prabhu5794d212012-04-17 14:36:40 +01005012 _copy_from_pages(acl->data, pages, pgbase, acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005013 } else {
5014 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
5015 if (acl == NULL)
5016 goto out;
5017 acl->cached = 0;
5018 }
5019 acl->len = acl_len;
5020out:
5021 nfs4_set_cached_acl(inode, acl);
5022}
5023
Andy Adamsonbf118a32011-12-07 11:55:27 -05005024/*
5025 * The getxattr API returns the required buffer length when called with a
5026 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
5027 * the required buf. On a NULL buf, we send a page of data to the server
5028 * guessing that the ACL request can be serviced by a page. If so, we cache
5029 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
5030 * the cache. If not so, we throw away the page, and cache the required
5031 * length. The next getxattr call will then produce another round trip to
5032 * the server, this time with the input buf of the required size.
5033 */
Trond Myklebust16b42892006-08-24 12:27:15 -04005034static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005035{
Weston Andros Adamsoned92d8c2017-02-23 14:54:21 -05005036 struct page *pages[NFS4ACL_MAXPAGES + 1] = {NULL, };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005037 struct nfs_getaclargs args = {
5038 .fh = NFS_FH(inode),
5039 .acl_pages = pages,
5040 .acl_len = buflen,
5041 };
Benny Halevy663c79b2009-04-01 09:21:59 -04005042 struct nfs_getaclres res = {
5043 .acl_len = buflen,
5044 };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005045 struct rpc_message msg = {
5046 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
5047 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04005048 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005049 };
Weston Andros Adamsoned92d8c2017-02-23 14:54:21 -05005050 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
Trond Myklebust21f498c2012-08-24 10:59:25 -04005051 int ret = -ENOMEM, i;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005052
Trond Myklebust21f498c2012-08-24 10:59:25 -04005053 if (npages > ARRAY_SIZE(pages))
5054 return -ERANGE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005055
Andy Adamsonbf118a32011-12-07 11:55:27 -05005056 for (i = 0; i < npages; i++) {
5057 pages[i] = alloc_page(GFP_KERNEL);
5058 if (!pages[i])
5059 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005060 }
Sachin Prabhu5a006892012-04-17 14:35:39 +01005061
5062 /* for decoding across pages */
5063 res.acl_scratch = alloc_page(GFP_KERNEL);
5064 if (!res.acl_scratch)
5065 goto out_free;
5066
Andy Adamsonbf118a32011-12-07 11:55:27 -05005067 args.acl_len = npages * PAGE_SIZE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005068
Peng Taode040be2012-01-10 22:42:47 +08005069 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
Andy Adamsonbf118a32011-12-07 11:55:27 -05005070 __func__, buf, buflen, npages, args.acl_len);
5071 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
5072 &msg, &args.seq_args, &res.seq_res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005073 if (ret)
5074 goto out_free;
Andy Adamsonbf118a32011-12-07 11:55:27 -05005075
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005076 /* Handle the case where the passed-in buffer is too short */
5077 if (res.acl_flags & NFS4_ACL_TRUNC) {
5078 /* Did the user only issue a request for the acl length? */
5079 if (buf == NULL)
5080 goto out_ok;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005081 ret = -ERANGE;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005082 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005083 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005084 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005085 if (buf) {
5086 if (res.acl_len > buflen) {
5087 ret = -ERANGE;
5088 goto out_free;
5089 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005090 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005091 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005092out_ok:
5093 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005094out_free:
Andy Adamsonbf118a32011-12-07 11:55:27 -05005095 for (i = 0; i < npages; i++)
5096 if (pages[i])
5097 __free_page(pages[i]);
Trond Myklebust331818f2012-02-03 18:30:53 -05005098 if (res.acl_scratch)
5099 __free_page(res.acl_scratch);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005100 return ret;
5101}
5102
Trond Myklebust16b42892006-08-24 12:27:15 -04005103static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5104{
5105 struct nfs4_exception exception = { };
5106 ssize_t ret;
5107 do {
5108 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
Trond Myklebustc1578b72013-08-12 16:58:42 -04005109 trace_nfs4_get_acl(inode, ret);
Trond Myklebust16b42892006-08-24 12:27:15 -04005110 if (ret >= 0)
5111 break;
5112 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
5113 } while (exception.retry);
5114 return ret;
5115}
5116
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005117static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
5118{
5119 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005120 int ret;
5121
5122 if (!nfs4_server_supports_acls(server))
5123 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005124 ret = nfs_revalidate_inode(server, inode);
5125 if (ret < 0)
5126 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005127 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
5128 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005129 ret = nfs4_read_cached_acl(inode, buf, buflen);
5130 if (ret != -ENOENT)
Andy Adamsonbf118a32011-12-07 11:55:27 -05005131 /* -ENOENT is returned if there is no ACL or if there is an ACL
5132 * but no cached acl data, just the acl length */
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005133 return ret;
5134 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005135}
5136
Trond Myklebust16b42892006-08-24 12:27:15 -04005137static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005138{
5139 struct nfs_server *server = NFS_SERVER(inode);
5140 struct page *pages[NFS4ACL_MAXPAGES];
5141 struct nfs_setaclargs arg = {
5142 .fh = NFS_FH(inode),
5143 .acl_pages = pages,
5144 .acl_len = buflen,
5145 };
Benny Halevy73c403a2009-04-01 09:22:01 -04005146 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005147 struct rpc_message msg = {
5148 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
5149 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04005150 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005151 };
Trond Myklebust21f498c2012-08-24 10:59:25 -04005152 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
Neil Hormane9e3d722011-03-04 19:26:03 -05005153 int ret, i;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005154
5155 if (!nfs4_server_supports_acls(server))
5156 return -EOPNOTSUPP;
Trond Myklebust21f498c2012-08-24 10:59:25 -04005157 if (npages > ARRAY_SIZE(pages))
5158 return -ERANGE;
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01005159 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages);
Neil Hormane9e3d722011-03-04 19:26:03 -05005160 if (i < 0)
5161 return i;
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04005162 nfs4_inode_return_delegation(inode);
Bryan Schumaker7c513052011-03-24 17:12:24 +00005163 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Neil Hormane9e3d722011-03-04 19:26:03 -05005164
5165 /*
5166 * Free each page after tx, so the only ref left is
5167 * held by the network stack
5168 */
5169 for (; i > 0; i--)
5170 put_page(pages[i-1]);
5171
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005172 /*
5173 * Acl update can result in inode attribute update.
5174 * so mark the attribute cache invalid.
5175 */
5176 spin_lock(&inode->i_lock);
5177 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
5178 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04005179 nfs_access_zap_cache(inode);
5180 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005181 return ret;
5182}
5183
Trond Myklebust16b42892006-08-24 12:27:15 -04005184static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5185{
5186 struct nfs4_exception exception = { };
5187 int err;
5188 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005189 err = __nfs4_proc_set_acl(inode, buf, buflen);
5190 trace_nfs4_set_acl(inode, err);
5191 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Trond Myklebust16b42892006-08-24 12:27:15 -04005192 &exception);
5193 } while (exception.retry);
5194 return err;
5195}
5196
David Quigleyaa9c2662013-05-22 12:50:44 -04005197#ifdef CONFIG_NFS_V4_SECURITY_LABEL
5198static int _nfs4_get_security_label(struct inode *inode, void *buf,
5199 size_t buflen)
5200{
5201 struct nfs_server *server = NFS_SERVER(inode);
5202 struct nfs_fattr fattr;
5203 struct nfs4_label label = {0, 0, buflen, buf};
5204
5205 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005206 struct nfs4_getattr_arg arg = {
David Quigleyaa9c2662013-05-22 12:50:44 -04005207 .fh = NFS_FH(inode),
5208 .bitmask = bitmask,
5209 };
5210 struct nfs4_getattr_res res = {
5211 .fattr = &fattr,
5212 .label = &label,
5213 .server = server,
5214 };
5215 struct rpc_message msg = {
5216 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005217 .rpc_argp = &arg,
David Quigleyaa9c2662013-05-22 12:50:44 -04005218 .rpc_resp = &res,
5219 };
5220 int ret;
5221
5222 nfs_fattr_init(&fattr);
5223
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005224 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
David Quigleyaa9c2662013-05-22 12:50:44 -04005225 if (ret)
5226 return ret;
5227 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
5228 return -ENOENT;
5229 if (buflen < label.len)
5230 return -ERANGE;
5231 return 0;
5232}
5233
5234static int nfs4_get_security_label(struct inode *inode, void *buf,
5235 size_t buflen)
5236{
5237 struct nfs4_exception exception = { };
5238 int err;
5239
5240 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5241 return -EOPNOTSUPP;
5242
5243 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005244 err = _nfs4_get_security_label(inode, buf, buflen);
5245 trace_nfs4_get_security_label(inode, err);
5246 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005247 &exception);
5248 } while (exception.retry);
5249 return err;
5250}
5251
5252static int _nfs4_do_set_security_label(struct inode *inode,
5253 struct nfs4_label *ilabel,
5254 struct nfs_fattr *fattr,
5255 struct nfs4_label *olabel)
5256{
5257
5258 struct iattr sattr = {0};
5259 struct nfs_server *server = NFS_SERVER(inode);
5260 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Jeff Layton12207f62013-11-01 10:49:32 -04005261 struct nfs_setattrargs arg = {
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005262 .fh = NFS_FH(inode),
5263 .iap = &sattr,
David Quigleyaa9c2662013-05-22 12:50:44 -04005264 .server = server,
5265 .bitmask = bitmask,
5266 .label = ilabel,
5267 };
5268 struct nfs_setattrres res = {
5269 .fattr = fattr,
5270 .label = olabel,
5271 .server = server,
5272 };
5273 struct rpc_message msg = {
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005274 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
5275 .rpc_argp = &arg,
5276 .rpc_resp = &res,
David Quigleyaa9c2662013-05-22 12:50:44 -04005277 };
5278 int status;
5279
Jeff Layton12207f62013-11-01 10:49:32 -04005280 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
David Quigleyaa9c2662013-05-22 12:50:44 -04005281
Jeff Layton12207f62013-11-01 10:49:32 -04005282 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04005283 if (status)
5284 dprintk("%s failed: %d\n", __func__, status);
5285
5286 return status;
5287}
5288
5289static int nfs4_do_set_security_label(struct inode *inode,
5290 struct nfs4_label *ilabel,
5291 struct nfs_fattr *fattr,
5292 struct nfs4_label *olabel)
5293{
5294 struct nfs4_exception exception = { };
5295 int err;
5296
5297 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005298 err = _nfs4_do_set_security_label(inode, ilabel,
5299 fattr, olabel);
5300 trace_nfs4_set_security_label(inode, err);
5301 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005302 &exception);
5303 } while (exception.retry);
5304 return err;
5305}
5306
5307static int
Al Viro59301222016-05-27 10:19:30 -04005308nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
David Quigleyaa9c2662013-05-22 12:50:44 -04005309{
5310 struct nfs4_label ilabel, *olabel = NULL;
5311 struct nfs_fattr fattr;
5312 struct rpc_cred *cred;
David Quigleyaa9c2662013-05-22 12:50:44 -04005313 int status;
5314
5315 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5316 return -EOPNOTSUPP;
5317
5318 nfs_fattr_init(&fattr);
5319
5320 ilabel.pi = 0;
5321 ilabel.lfs = 0;
5322 ilabel.label = (char *)buf;
5323 ilabel.len = buflen;
5324
5325 cred = rpc_lookup_cred();
5326 if (IS_ERR(cred))
5327 return PTR_ERR(cred);
5328
5329 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
5330 if (IS_ERR(olabel)) {
5331 status = -PTR_ERR(olabel);
5332 goto out;
5333 }
5334
5335 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
5336 if (status == 0)
5337 nfs_setsecurity(inode, &fattr, olabel);
5338
5339 nfs4_label_free(olabel);
5340out:
5341 put_rpccred(cred);
5342 return status;
5343}
5344#endif /* CONFIG_NFS_V4_SECURITY_LABEL */
5345
5346
Chuck Leverf0920752012-05-21 22:45:41 -04005347static void nfs4_init_boot_verifier(const struct nfs_client *clp,
5348 nfs4_verifier *bootverf)
Chuck Levercd937102012-03-02 17:14:31 -05005349{
5350 __be32 verf[2];
5351
Chuck Lever2c820d92012-05-21 22:45:33 -04005352 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
5353 /* An impossible timestamp guarantees this value
5354 * will never match a generated boot time. */
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005355 verf[0] = cpu_to_be32(U32_MAX);
5356 verf[1] = cpu_to_be32(U32_MAX);
Chuck Lever2c820d92012-05-21 22:45:33 -04005357 } else {
Chuck Leverf0920752012-05-21 22:45:41 -04005358 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005359 u64 ns = ktime_to_ns(nn->boot_time);
5360
5361 verf[0] = cpu_to_be32(ns >> 32);
5362 verf[1] = cpu_to_be32(ns);
Chuck Lever2c820d92012-05-21 22:45:33 -04005363 }
Chuck Levercd937102012-03-02 17:14:31 -05005364 memcpy(bootverf->data, verf, sizeof(bootverf->data));
5365}
5366
Jeff Laytona3192682015-06-09 19:43:59 -04005367static int
5368nfs4_init_nonuniform_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005369{
Jeff Laytona3192682015-06-09 19:43:59 -04005370 size_t len;
5371 char *str;
Chuck Levere984a552012-09-14 17:24:21 -04005372
Trond Myklebustceb3a162015-01-03 15:16:04 -05005373 if (clp->cl_owner_id != NULL)
Jeff Laytona3192682015-06-09 19:43:59 -04005374 return 0;
Kinglong Mee4a3e5772015-08-31 10:53:43 +08005375
Jeff Laytona3192682015-06-09 19:43:59 -04005376 rcu_read_lock();
Kinglong Mee4a703162015-08-31 10:53:33 +08005377 len = 14 + strlen(clp->cl_ipaddr) + 1 +
Jeff Laytona3192682015-06-09 19:43:59 -04005378 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
5379 1 +
5380 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) +
5381 1;
5382 rcu_read_unlock();
5383
5384 if (len > NFS4_OPAQUE_LIMIT + 1)
5385 return -EINVAL;
5386
5387 /*
5388 * Since this string is allocated at mount time, and held until the
5389 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5390 * about a memory-reclaim deadlock.
5391 */
5392 str = kmalloc(len, GFP_KERNEL);
5393 if (!str)
5394 return -ENOMEM;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005395
Chuck Levere984a552012-09-14 17:24:21 -04005396 rcu_read_lock();
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005397 scnprintf(str, len, "Linux NFSv4.0 %s/%s %s",
Jeff Laytona3192682015-06-09 19:43:59 -04005398 clp->cl_ipaddr,
5399 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR),
5400 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO));
Chuck Levere984a552012-09-14 17:24:21 -04005401 rcu_read_unlock();
Jeff Laytona3192682015-06-09 19:43:59 -04005402
Jeff Laytona3192682015-06-09 19:43:59 -04005403 clp->cl_owner_id = str;
5404 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005405}
5406
Jeff Layton873e3852015-06-09 19:44:00 -04005407static int
5408nfs4_init_uniquifier_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005409{
Jeff Layton873e3852015-06-09 19:44:00 -04005410 size_t len;
5411 char *str;
5412
5413 len = 10 + 10 + 1 + 10 + 1 +
5414 strlen(nfs4_client_id_uniquifier) + 1 +
5415 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5416
5417 if (len > NFS4_OPAQUE_LIMIT + 1)
5418 return -EINVAL;
5419
5420 /*
5421 * Since this string is allocated at mount time, and held until the
5422 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5423 * about a memory-reclaim deadlock.
5424 */
5425 str = kmalloc(len, GFP_KERNEL);
5426 if (!str)
5427 return -ENOMEM;
5428
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005429 scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
Jeff Layton873e3852015-06-09 19:44:00 -04005430 clp->rpc_ops->version, clp->cl_minorversion,
5431 nfs4_client_id_uniquifier,
5432 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005433 clp->cl_owner_id = str;
5434 return 0;
5435}
5436
5437static int
5438nfs4_init_uniform_client_string(struct nfs_client *clp)
5439{
Jeff Layton873e3852015-06-09 19:44:00 -04005440 size_t len;
5441 char *str;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005442
5443 if (clp->cl_owner_id != NULL)
Jeff Layton873e3852015-06-09 19:44:00 -04005444 return 0;
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04005445
5446 if (nfs4_client_id_uniquifier[0] != '\0')
Jeff Layton873e3852015-06-09 19:44:00 -04005447 return nfs4_init_uniquifier_client_string(clp);
5448
5449 len = 10 + 10 + 1 + 10 + 1 +
5450 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5451
5452 if (len > NFS4_OPAQUE_LIMIT + 1)
5453 return -EINVAL;
5454
5455 /*
5456 * Since this string is allocated at mount time, and held until the
5457 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5458 * about a memory-reclaim deadlock.
5459 */
5460 str = kmalloc(len, GFP_KERNEL);
5461 if (!str)
5462 return -ENOMEM;
5463
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005464 scnprintf(str, len, "Linux NFSv%u.%u %s",
Jeff Layton873e3852015-06-09 19:44:00 -04005465 clp->rpc_ops->version, clp->cl_minorversion,
5466 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005467 clp->cl_owner_id = str;
5468 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005469}
5470
Chuck Lever706cb8d2014-03-12 12:51:47 -04005471/*
5472 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
5473 * services. Advertise one based on the address family of the
5474 * clientaddr.
5475 */
5476static unsigned int
5477nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
5478{
5479 if (strchr(clp->cl_ipaddr, ':') != NULL)
5480 return scnprintf(buf, len, "tcp6");
5481 else
5482 return scnprintf(buf, len, "tcp");
5483}
5484
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005485static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
5486{
5487 struct nfs4_setclientid *sc = calldata;
5488
5489 if (task->tk_status == 0)
5490 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
5491}
5492
5493static const struct rpc_call_ops nfs4_setclientid_ops = {
5494 .rpc_call_done = nfs4_setclientid_done,
5495};
5496
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005497/**
5498 * nfs4_proc_setclientid - Negotiate client ID
5499 * @clp: state data structure
5500 * @program: RPC program for NFSv4 callback service
5501 * @port: IP port number for NFS4 callback service
5502 * @cred: RPC credential to use for this call
5503 * @res: where to place the result
5504 *
5505 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5506 */
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005507int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
5508 unsigned short port, struct rpc_cred *cred,
5509 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510{
5511 nfs4_verifier sc_verifier;
5512 struct nfs4_setclientid setclientid = {
5513 .sc_verifier = &sc_verifier,
5514 .sc_prog = program,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005515 .sc_clnt = clp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 };
5517 struct rpc_message msg = {
5518 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
5519 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005520 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005521 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 };
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005523 struct rpc_task *task;
5524 struct rpc_task_setup task_setup_data = {
5525 .rpc_client = clp->cl_rpcclient,
5526 .rpc_message = &msg,
5527 .callback_ops = &nfs4_setclientid_ops,
5528 .callback_data = &setclientid,
5529 .flags = RPC_TASK_TIMEOUT,
5530 };
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005531 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532
Chuck Leverde734832012-07-11 16:30:50 -04005533 /* nfs_client_id4 */
Chuck Leverf0920752012-05-21 22:45:41 -04005534 nfs4_init_boot_verifier(clp, &sc_verifier);
Jeff Layton873e3852015-06-09 19:44:00 -04005535
5536 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
5537 status = nfs4_init_uniform_client_string(clp);
5538 else
Jeff Laytona3192682015-06-09 19:43:59 -04005539 status = nfs4_init_nonuniform_client_string(clp);
Jeff Layton873e3852015-06-09 19:44:00 -04005540
5541 if (status)
5542 goto out;
Jeff Layton3a6bb732015-06-09 19:43:57 -04005543
Chuck Leverde734832012-07-11 16:30:50 -04005544 /* cb_client4 */
Chuck Lever706cb8d2014-03-12 12:51:47 -04005545 setclientid.sc_netid_len =
5546 nfs4_init_callback_netid(clp,
5547 setclientid.sc_netid,
5548 sizeof(setclientid.sc_netid));
Chuck Leverde734832012-07-11 16:30:50 -04005549 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05005550 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 clp->cl_ipaddr, port >> 8, port & 255);
5552
Jeff Layton3a6bb732015-06-09 19:43:57 -04005553 dprintk("NFS call setclientid auth=%s, '%s'\n",
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005554 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005555 clp->cl_owner_id);
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005556 task = rpc_run_task(&task_setup_data);
5557 if (IS_ERR(task)) {
5558 status = PTR_ERR(task);
5559 goto out;
5560 }
5561 status = task->tk_status;
5562 if (setclientid.sc_cred) {
5563 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
5564 put_rpccred(setclientid.sc_cred);
5565 }
5566 rpc_put_task(task);
5567out:
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005568 trace_nfs4_setclientid(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005569 dprintk("NFS reply setclientid: %d\n", status);
5570 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571}
5572
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005573/**
5574 * nfs4_proc_setclientid_confirm - Confirm client ID
5575 * @clp: state data structure
5576 * @res: result of a previous SETCLIENTID
5577 * @cred: RPC credential to use for this call
5578 *
5579 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5580 */
Trond Myklebustfd954ae2011-04-24 14:28:18 -04005581int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005582 struct nfs4_setclientid_res *arg,
5583 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 struct rpc_message msg = {
5586 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005587 .rpc_argp = arg,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005588 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 int status;
5591
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005592 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
5593 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5594 clp->cl_clientid);
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005595 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005596 trace_nfs4_setclientid_confirm(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005597 dprintk("NFS reply setclientid_confirm: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 return status;
5599}
5600
Trond Myklebustfe650402006-01-03 09:55:18 +01005601struct nfs4_delegreturndata {
5602 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005603 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01005604 struct nfs_fh fh;
5605 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005606 unsigned long timestamp;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005607 struct {
5608 struct nfs4_layoutreturn_args arg;
5609 struct nfs4_layoutreturn_res res;
Trond Myklebust4d796d72016-09-23 11:38:08 -04005610 struct nfs4_xdr_opaque_data ld_private;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005611 u32 roc_barrier;
5612 bool roc;
5613 } lr;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005614 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01005615 int rpc_status;
Peng Tao039b7562014-07-03 13:05:02 +08005616 struct inode *inode;
Trond Myklebustfe650402006-01-03 09:55:18 +01005617};
5618
Trond Myklebustfe650402006-01-03 09:55:18 +01005619static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
5620{
5621 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04005622
Trond Myklebust14516c32010-07-31 14:29:06 -04005623 if (!nfs4_sequence_done(task, &data->res.seq_res))
5624 return;
Andy Adamson938e1012009-04-01 09:22:28 -04005625
Trond Myklebustca8acf82013-08-13 10:36:56 -04005626 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
Trond Myklebust586f1c32016-11-15 15:03:33 -05005627
5628 /* Handle Layoutreturn errors */
5629 if (data->args.lr_args && task->tk_status != 0) {
5630 switch(data->res.lr_ret) {
5631 default:
5632 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
5633 break;
5634 case 0:
5635 data->args.lr_args = NULL;
5636 data->res.lr_res = NULL;
5637 break;
5638 case -NFS4ERR_ADMIN_REVOKED:
5639 case -NFS4ERR_DELEG_REVOKED:
5640 case -NFS4ERR_EXPIRED:
5641 case -NFS4ERR_BAD_STATEID:
5642 case -NFS4ERR_OLD_STATEID:
5643 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
5644 case -NFS4ERR_WRONG_CRED:
5645 data->args.lr_args = NULL;
5646 data->res.lr_res = NULL;
5647 data->res.lr_ret = 0;
5648 rpc_restart_call_prepare(task);
5649 return;
5650 }
5651 }
5652
Ricardo Labiaga79708862009-12-07 09:23:21 -05005653 switch (task->tk_status) {
Ricardo Labiaga79708862009-12-07 09:23:21 -05005654 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01005655 renew_lease(data->res.server, data->timestamp);
Trond Myklebust23ea44c2016-11-10 16:06:28 -05005656 break;
Trond Myklebustc97cf602013-11-19 16:34:14 -05005657 case -NFS4ERR_ADMIN_REVOKED:
5658 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust26d36302016-09-22 13:39:05 -04005659 case -NFS4ERR_EXPIRED:
5660 nfs4_free_revoked_stateid(data->res.server,
5661 data->args.stateid,
5662 task->tk_msg.rpc_cred);
Trond Myklebustc97cf602013-11-19 16:34:14 -05005663 case -NFS4ERR_BAD_STATEID:
5664 case -NFS4ERR_OLD_STATEID:
5665 case -NFS4ERR_STALE_STATEID:
Trond Myklebustc97cf602013-11-19 16:34:14 -05005666 task->tk_status = 0;
5667 break;
Trond Myklebust8ac2b4222016-12-19 10:23:10 -05005668 case -NFS4ERR_ACCESS:
5669 if (data->args.bitmask) {
5670 data->args.bitmask = NULL;
5671 data->res.fattr = NULL;
5672 task->tk_status = 0;
5673 rpc_restart_call_prepare(task);
5674 return;
5675 }
Ricardo Labiaga79708862009-12-07 09:23:21 -05005676 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005677 if (nfs4_async_handle_error(task, data->res.server,
5678 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005679 rpc_restart_call_prepare(task);
Ricardo Labiaga79708862009-12-07 09:23:21 -05005680 return;
5681 }
5682 }
5683 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01005684}
5685
5686static void nfs4_delegreturn_release(void *calldata)
5687{
Peng Tao039b7562014-07-03 13:05:02 +08005688 struct nfs4_delegreturndata *data = calldata;
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005689 struct inode *inode = data->inode;
Peng Tao039b7562014-07-03 13:05:02 +08005690
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005691 if (inode) {
Trond Myklebust586f1c32016-11-15 15:03:33 -05005692 if (data->lr.roc)
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005693 pnfs_roc_release(&data->lr.arg, &data->lr.res,
5694 data->res.lr_ret);
Trond Myklebust0bc2c9b2016-12-16 19:48:09 -05005695 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005696 nfs_iput_and_deactive(inode);
5697 }
Trond Myklebustfe650402006-01-03 09:55:18 +01005698 kfree(calldata);
5699}
5700
Andy Adamson938e1012009-04-01 09:22:28 -04005701static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
5702{
5703 struct nfs4_delegreturndata *d_data;
5704
5705 d_data = (struct nfs4_delegreturndata *)data;
5706
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005707 if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task))
Peng Tao500d7012015-09-22 11:35:22 +08005708 return;
5709
Anna Schumaker42e1cca2017-01-09 15:48:22 -05005710 nfs4_setup_sequence(d_data->res.server->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04005711 &d_data->args.seq_args,
5712 &d_data->res.seq_res,
5713 task);
Andy Adamson938e1012009-04-01 09:22:28 -04005714}
Andy Adamson938e1012009-04-01 09:22:28 -04005715
Jesper Juhlc8d149f2006-03-20 13:44:07 -05005716static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04005717 .rpc_call_prepare = nfs4_delegreturn_prepare,
Trond Myklebustfe650402006-01-03 09:55:18 +01005718 .rpc_call_done = nfs4_delegreturn_done,
5719 .rpc_release = nfs4_delegreturn_release,
5720};
5721
Trond Myklebuste6f81072008-01-24 18:14:34 -05005722static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01005723{
5724 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005725 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01005726 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005727 struct rpc_message msg = {
5728 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
5729 .rpc_cred = cred,
5730 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005731 struct rpc_task_setup task_setup_data = {
5732 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04005733 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005734 .callback_ops = &nfs4_delegreturn_ops,
5735 .flags = RPC_TASK_ASYNC,
5736 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05005737 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01005738
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005739 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01005740 if (data == NULL)
5741 return -ENOMEM;
Chuck Levera9c92d62013-08-09 12:48:18 -04005742 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andrew Elble99ade3c2015-12-02 09:39:51 -05005743
5744 nfs4_state_protect(server->nfs_client,
5745 NFS_SP4_MACH_CRED_CLEANUP,
5746 &task_setup_data.rpc_client, &msg);
5747
Trond Myklebustfe650402006-01-03 09:55:18 +01005748 data->args.fhandle = &data->fh;
5749 data->args.stateid = &data->stateid;
Trond Myklebust9e907fe2012-04-27 13:48:17 -04005750 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01005751 nfs_copy_fh(&data->fh, NFS_FH(inode));
Trond Myklebustf597c532012-03-04 18:13:56 -05005752 nfs4_stateid_copy(&data->stateid, stateid);
Trond Myklebustfa178f22006-01-03 09:55:38 +01005753 data->res.fattr = &data->fattr;
5754 data->res.server = server;
Trond Myklebust586f1c32016-11-15 15:03:33 -05005755 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
Trond Myklebust4d796d72016-09-23 11:38:08 -04005756 data->lr.arg.ld_private = &data->lr.ld_private;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005757 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01005758 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01005759 data->rpc_status = 0;
Trond Myklebust53e6fc82016-11-19 08:48:47 -05005760 data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res, cred);
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005761 data->inode = nfs_igrab_and_active(inode);
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005762 if (data->inode) {
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005763 if (data->lr.roc) {
5764 data->args.lr_args = &data->lr.arg;
5765 data->res.lr_res = &data->lr.res;
5766 }
Trond Myklebust53e6fc82016-11-19 08:48:47 -05005767 } else if (data->lr.roc) {
5768 pnfs_roc_release(&data->lr.arg, &data->lr.res, 0);
5769 data->lr.roc = false;
Trond Myklebust1c5bd76d2016-11-16 01:11:25 -05005770 }
Trond Myklebustfe650402006-01-03 09:55:18 +01005771
Trond Myklebustc970aa82007-07-14 15:39:59 -04005772 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05005773 msg.rpc_argp = &data->args;
5774 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04005775 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05005776 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01005777 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005778 if (!issync)
5779 goto out;
Anna Schumaker820bf852017-01-11 15:01:43 -05005780 status = rpc_wait_for_completion_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005781 if (status != 0)
5782 goto out;
5783 status = data->rpc_status;
Trond Myklebuste6f81072008-01-24 18:14:34 -05005784out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05005785 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01005786 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787}
5788
Trond Myklebuste6f81072008-01-24 18:14:34 -05005789int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790{
5791 struct nfs_server *server = NFS_SERVER(inode);
5792 struct nfs4_exception exception = { };
5793 int err;
5794 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05005795 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05005796 trace_nfs4_delegreturn(inode, stateid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797 switch (err) {
5798 case -NFS4ERR_STALE_STATEID:
5799 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 case 0:
5801 return 0;
5802 }
5803 err = nfs4_handle_exception(server, err, &exception);
5804 } while (exception.retry);
5805 return err;
5806}
5807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5809{
5810 struct inode *inode = state->inode;
5811 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04005812 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005813 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005815 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005817 struct nfs_lockt_res res = {
5818 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 };
5820 struct rpc_message msg = {
5821 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
Anna Schumakerd9b67e12017-01-11 15:04:25 -05005822 .rpc_argp = &arg,
5823 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 .rpc_cred = state->owner->so_cred,
5825 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 struct nfs4_lock_state *lsp;
5827 int status;
5828
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005829 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005830 status = nfs4_set_lock_state(state, request);
5831 if (status != 0)
5832 goto out;
5833 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05005834 arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05005835 arg.lock_owner.s_dev = server->s_dev;
Bryan Schumaker7c513052011-03-24 17:12:24 +00005836 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005837 switch (status) {
5838 case 0:
5839 request->fl_type = F_UNLCK;
5840 break;
5841 case -NFS4ERR_DENIED:
5842 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05005844 request->fl_ops->fl_release_private(request);
Trond Myklebusta6f951d2013-10-01 14:24:58 -04005845 request->fl_ops = NULL;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005846out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 return status;
5848}
5849
5850static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5851{
5852 struct nfs4_exception exception = { };
5853 int err;
5854
5855 do {
Trond Myklebustd1b748a2013-08-12 16:35:20 -04005856 err = _nfs4_proc_getlk(state, cmd, request);
5857 trace_nfs4_get_lock(request, state, cmd, err);
5858 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859 &exception);
5860 } while (exception.retry);
5861 return err;
5862}
5863
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005864struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005865 struct nfs_locku_args arg;
5866 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005867 struct nfs4_lock_state *lsp;
5868 struct nfs_open_context *ctx;
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005869 struct nfs_lock_context *l_ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005870 struct file_lock fl;
Trond Myklebust516285eb2015-09-20 16:15:24 -04005871 struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005872 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005873};
5874
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005875static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
5876 struct nfs_open_context *ctx,
5877 struct nfs4_lock_state *lsp,
5878 struct nfs_seqid *seqid)
5879{
5880 struct nfs4_unlockdata *p;
5881 struct inode *inode = lsp->ls_state->inode;
5882
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005883 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005884 if (p == NULL)
5885 return NULL;
5886 p->arg.fh = NFS_FH(inode);
5887 p->arg.fl = &p->fl;
5888 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04005889 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005890 p->lsp = lsp;
5891 atomic_inc(&lsp->ls_count);
5892 /* Ensure we don't close file until we're done freeing locks! */
5893 p->ctx = get_nfs_open_context(ctx);
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005894 p->l_ctx = nfs_get_lock_context(ctx);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005895 memcpy(&p->fl, fl, sizeof(p->fl));
5896 p->server = NFS_SERVER(inode);
5897 return p;
5898}
5899
Trond Myklebust06f814a2006-01-03 09:55:07 +01005900static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005901{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005902 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005903 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005904 nfs4_put_lock_state(calldata->lsp);
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005905 nfs_put_lock_context(calldata->l_ctx);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005906 put_nfs_open_context(calldata->ctx);
5907 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005908}
5909
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005910static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005911{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005912 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005913
Trond Myklebust14516c32010-07-31 14:29:06 -04005914 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
5915 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005916 switch (task->tk_status) {
5917 case 0:
Trond Myklebust26e976a2006-01-03 09:55:21 +01005918 renew_lease(calldata->server, calldata->timestamp);
Jeff Layton75575dd2016-09-17 18:17:32 -04005919 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
Trond Myklebustc69899a2015-01-24 16:03:52 -05005920 if (nfs4_update_lock_stateid(calldata->lsp,
5921 &calldata->res.stateid))
5922 break;
Trond Myklebust26d36302016-09-22 13:39:05 -04005923 case -NFS4ERR_ADMIN_REVOKED:
5924 case -NFS4ERR_EXPIRED:
5925 nfs4_free_revoked_stateid(calldata->server,
5926 &calldata->arg.stateid,
5927 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05005928 case -NFS4ERR_BAD_STATEID:
5929 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005930 case -NFS4ERR_STALE_STATEID:
Trond Myklebust425c1d42015-01-24 14:57:53 -05005931 if (!nfs4_stateid_match(&calldata->arg.stateid,
5932 &calldata->lsp->ls_stateid))
5933 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005934 break;
5935 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005936 if (nfs4_async_handle_error(task, calldata->server,
5937 NULL, NULL) == -EAGAIN)
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005938 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005939 }
Trond Myklebust2b1bc302012-10-29 18:53:23 -04005940 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005941}
5942
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005943static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005944{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005945 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04005947 if (test_bit(NFS_CONTEXT_UNLOCK, &calldata->l_ctx->open_context->flags) &&
5948 nfs_async_iocounter_wait(task, calldata->l_ctx))
5949 return;
5950
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005951 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005952 goto out_wait;
Trond Myklebust425c1d42015-01-24 14:57:53 -05005953 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid);
Trond Myklebust795a88c2012-09-10 13:26:49 -04005954 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005955 /* Note: exit _without_ running nfs4_locku_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005956 goto out_no_action;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005957 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01005958 calldata->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05005959 if (nfs4_setup_sequence(calldata->server->nfs_client,
Andy Adamsona8936932009-04-01 09:22:23 -04005960 &calldata->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04005961 &calldata->res.seq_res,
5962 task) != 0)
5963 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005964 return;
5965out_no_action:
5966 task->tk_action = NULL;
5967out_wait:
5968 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969}
5970
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005971static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005972 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005973 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01005974 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005975};
5976
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005977static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
5978 struct nfs_open_context *ctx,
5979 struct nfs4_lock_state *lsp,
5980 struct nfs_seqid *seqid)
5981{
5982 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005983 struct rpc_message msg = {
5984 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
5985 .rpc_cred = ctx->cred,
5986 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005987 struct rpc_task_setup task_setup_data = {
5988 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04005989 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005990 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05005991 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005992 .flags = RPC_TASK_ASYNC,
5993 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005994
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04005995 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
5996 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
5997
Frank Filz137d6ac2007-07-09 15:32:29 -07005998 /* Ensure this is an unlock - when canceling a lock, the
5999 * canceled lock is passed in, and it won't be an unlock.
6000 */
6001 fl->fl_type = F_UNLCK;
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -04006002 if (fl->fl_flags & FL_CLOSE)
6003 set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags);
Frank Filz137d6ac2007-07-09 15:32:29 -07006004
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006005 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
6006 if (data == NULL) {
6007 nfs_free_seqid(seqid);
6008 return ERR_PTR(-ENOMEM);
6009 }
6010
Chuck Levera9c92d62013-08-09 12:48:18 -04006011 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05006012 msg.rpc_argp = &data->arg;
6013 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006014 task_setup_data.callback_data = data;
6015 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006016}
6017
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
6019{
Trond Myklebust65b62a22013-02-07 10:54:07 -05006020 struct inode *inode = state->inode;
6021 struct nfs4_state_owner *sp = state->owner;
6022 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01006023 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07006024 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01006025 struct rpc_task *task;
Trond Myklebustb4019c02015-01-24 14:19:19 -05006026 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebust06f814a2006-01-03 09:55:07 +01006027 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04006028 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
Trond Myklebust9b073572006-06-29 16:38:34 -04006030 status = nfs4_set_lock_state(state, request);
6031 /* Unlock _before_ we do the RPC call */
6032 request->fl_flags |= FL_EXISTS;
Trond Myklebust65b62a22013-02-07 10:54:07 -05006033 /* Exclude nfs_delegation_claim_locks() */
6034 mutex_lock(&sp->so_delegreturn_mutex);
6035 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
Trond Myklebust19e03c52008-12-23 15:21:44 -05006036 down_read(&nfsi->rwsem);
Jeff Layton75575dd2016-09-17 18:17:32 -04006037 if (locks_lock_inode_wait(inode, request) == -ENOENT) {
Trond Myklebust19e03c52008-12-23 15:21:44 -05006038 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05006039 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04006040 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05006041 }
6042 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05006043 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04006044 if (status != 0)
6045 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05006046 /* Is this a delegated lock? */
Trond Myklebustfaf5f492005-10-18 14:20:15 -07006047 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebustc5a2a152013-04-30 12:43:42 -04006048 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
6049 goto out;
Trond Myklebustb4019c02015-01-24 14:19:19 -05006050 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
6051 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04006052 status = -ENOMEM;
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006053 if (IS_ERR(seqid))
Trond Myklebust9b073572006-06-29 16:38:34 -04006054 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006055 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006056 status = PTR_ERR(task);
6057 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04006058 goto out;
Anna Schumaker820bf852017-01-11 15:01:43 -05006059 status = rpc_wait_for_completion_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05006060 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04006061out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04006062 request->fl_flags = fl_flags;
Trond Myklebustd1b748a2013-08-12 16:35:20 -04006063 trace_nfs4_unlock(request, state, F_SETLK, status);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07006064 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065}
6066
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006067struct nfs4_lockdata {
6068 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01006069 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006070 struct nfs4_lock_state *lsp;
6071 struct nfs_open_context *ctx;
6072 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01006073 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006074 int rpc_status;
6075 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04006076 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006077};
6078
6079static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006080 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
6081 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006082{
6083 struct nfs4_lockdata *p;
6084 struct inode *inode = lsp->ls_state->inode;
6085 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustb4019c02015-01-24 14:19:19 -05006086 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006087
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006088 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006089 if (p == NULL)
6090 return NULL;
6091
6092 p->arg.fh = NFS_FH(inode);
6093 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006094 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006095 if (IS_ERR(p->arg.open_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006096 goto out_free;
Trond Myklebustb4019c02015-01-24 14:19:19 -05006097 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
6098 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006099 if (IS_ERR(p->arg.lock_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006100 goto out_free_seqid;
David Howells7539bba2006-08-22 20:06:09 -04006101 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05006102 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05006103 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006104 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006105 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04006106 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006107 atomic_inc(&lsp->ls_count);
6108 p->ctx = get_nfs_open_context(ctx);
6109 memcpy(&p->fl, fl, sizeof(p->fl));
6110 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006111out_free_seqid:
6112 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006113out_free:
6114 kfree(p);
6115 return NULL;
6116}
6117
6118static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
6119{
6120 struct nfs4_lockdata *data = calldata;
6121 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
Harvey Harrison3110ff82008-05-02 13:42:44 -07006123 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006124 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006125 goto out_wait;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006126 /* Do we need to do an open_to_lock_owner? */
Trond Myklebust6b447532015-01-24 18:38:15 -05006127 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006128 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006129 goto out_release_lock_seqid;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006130 }
Trond Myklebust425c1d42015-01-24 14:57:53 -05006131 nfs4_stateid_copy(&data->arg.open_stateid,
6132 &state->open_stateid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006133 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006134 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006135 } else {
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006136 data->arg.new_lock_owner = 0;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006137 nfs4_stateid_copy(&data->arg.lock_stateid,
6138 &data->lsp->ls_stateid);
6139 }
Trond Myklebust5d422302013-03-14 16:57:48 -04006140 if (!nfs4_valid_open_stateid(state)) {
6141 data->rpc_status = -EBADF;
6142 task->tk_action = NULL;
6143 goto out_release_open_seqid;
6144 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01006145 data->timestamp = jiffies;
Anna Schumaker42e1cca2017-01-09 15:48:22 -05006146 if (nfs4_setup_sequence(data->server->nfs_client,
Trond Myklebust035168ab2010-06-16 09:52:26 -04006147 &data->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006148 &data->res.seq_res,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04006149 task) == 0)
Andy Adamson66179ef2009-04-01 09:22:22 -04006150 return;
Trond Myklebust5d422302013-03-14 16:57:48 -04006151out_release_open_seqid:
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006152 nfs_release_seqid(data->arg.open_seqid);
6153out_release_lock_seqid:
6154 nfs_release_seqid(data->arg.lock_seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006155out_wait:
6156 nfs4_sequence_done(task, &data->res.seq_res);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006157 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08006158}
6159
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006160static void nfs4_lock_done(struct rpc_task *task, void *calldata)
6161{
6162 struct nfs4_lockdata *data = calldata;
Trond Myklebust39071e62015-01-24 15:07:56 -05006163 struct nfs4_lock_state *lsp = data->lsp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006164
Harvey Harrison3110ff82008-05-02 13:42:44 -07006165 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006166
Trond Myklebust14516c32010-07-31 14:29:06 -04006167 if (!nfs4_sequence_done(task, &data->res.seq_res))
6168 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04006169
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006170 data->rpc_status = task->tk_status;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006171 switch (task->tk_status) {
6172 case 0:
David Howells2b0143b2015-03-17 22:25:59 +00006173 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
Trond Myklebust39071e62015-01-24 15:07:56 -05006174 data->timestamp);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006175 if (data->arg.new_lock) {
6176 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
Jeff Layton75575dd2016-09-17 18:17:32 -04006177 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) {
Trond Myklebustc69899a2015-01-24 16:03:52 -05006178 rpc_restart_call_prepare(task);
6179 break;
6180 }
6181 }
Trond Myklebust39071e62015-01-24 15:07:56 -05006182 if (data->arg.new_lock_owner != 0) {
6183 nfs_confirm_seqid(&lsp->ls_seqid, 0);
6184 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
6185 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
6186 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
6187 rpc_restart_call_prepare(task);
Trond Myklebust425c1d42015-01-24 14:57:53 -05006188 break;
6189 case -NFS4ERR_BAD_STATEID:
6190 case -NFS4ERR_OLD_STATEID:
6191 case -NFS4ERR_STALE_STATEID:
6192 case -NFS4ERR_EXPIRED:
6193 if (data->arg.new_lock_owner != 0) {
6194 if (!nfs4_stateid_match(&data->arg.open_stateid,
6195 &lsp->ls_state->open_stateid))
6196 rpc_restart_call_prepare(task);
6197 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
6198 &lsp->ls_stateid))
6199 rpc_restart_call_prepare(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006200 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07006201 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006202}
6203
6204static void nfs4_lock_release(void *calldata)
6205{
6206 struct nfs4_lockdata *data = calldata;
6207
Harvey Harrison3110ff82008-05-02 13:42:44 -07006208 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006209 nfs_free_seqid(data->arg.open_seqid);
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04006210 if (data->cancelled) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006211 struct rpc_task *task;
6212 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
6213 data->arg.lock_seqid);
6214 if (!IS_ERR(task))
Trond Myklebustbf294b42011-02-21 11:05:41 -08006215 rpc_put_task_async(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006216 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006217 } else
6218 nfs_free_seqid(data->arg.lock_seqid);
6219 nfs4_put_lock_state(data->lsp);
6220 put_nfs_open_context(data->ctx);
6221 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006222 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006223}
6224
6225static const struct rpc_call_ops nfs4_lock_ops = {
6226 .rpc_call_prepare = nfs4_lock_prepare,
6227 .rpc_call_done = nfs4_lock_done,
6228 .rpc_release = nfs4_lock_release,
6229};
6230
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006231static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
6232{
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006233 switch (error) {
6234 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustd7f3e4b2016-09-22 13:39:09 -04006235 case -NFS4ERR_EXPIRED:
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006236 case -NFS4ERR_BAD_STATEID:
Trond Myklebustecac7992011-03-09 16:00:56 -05006237 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006238 if (new_lock_owner != 0 ||
Trond Myklebust795a88c2012-09-10 13:26:49 -04006239 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
Trond Myklebustecac7992011-03-09 16:00:56 -05006240 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006241 break;
6242 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006243 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebustecac7992011-03-09 16:00:56 -05006244 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006245 };
6246}
6247
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006248static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006249{
6250 struct nfs4_lockdata *data;
6251 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04006252 struct rpc_message msg = {
6253 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
6254 .rpc_cred = state->owner->so_cred,
6255 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04006256 struct rpc_task_setup task_setup_data = {
6257 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04006258 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006259 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05006260 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006261 .flags = RPC_TASK_ASYNC,
6262 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006263 int ret;
6264
Harvey Harrison3110ff82008-05-02 13:42:44 -07006265 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006266 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006267 fl->fl_u.nfs4_fl.owner,
6268 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006269 if (data == NULL)
6270 return -ENOMEM;
6271 if (IS_SETLKW(cmd))
6272 data->arg.block = 1;
Chuck Levera9c92d62013-08-09 12:48:18 -04006273 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05006274 msg.rpc_argp = &data->arg;
6275 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006276 task_setup_data.callback_data = data;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006277 if (recovery_type > NFS_LOCK_NEW) {
6278 if (recovery_type == NFS_LOCK_RECLAIM)
6279 data->arg.reclaim = NFS_LOCK_RECLAIM;
6280 nfs4_set_sequence_privileged(&data->arg.seq_args);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006281 } else
6282 data->arg.new_lock = 1;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006283 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05006284 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006285 return PTR_ERR(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05006286 ret = rpc_wait_for_completion_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006287 if (ret == 0) {
6288 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006289 if (ret)
6290 nfs4_handle_setlk_error(data->server, data->lsp,
6291 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006292 } else
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -04006293 data->cancelled = true;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05006294 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006295 dprintk("%s: done, ret = %d!\n", __func__, ret);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05006296 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006297 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298}
6299
6300static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
6301{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006302 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006303 struct nfs4_exception exception = {
6304 .inode = state->inode,
6305 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006306 int err;
6307
6308 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006309 /* Cache the lock if possible... */
6310 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6311 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006312 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04006313 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00006314 break;
6315 nfs4_handle_exception(server, err, &exception);
6316 } while (exception.retry);
6317 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318}
6319
6320static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
6321{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006322 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006323 struct nfs4_exception exception = {
6324 .inode = state->inode,
6325 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006326 int err;
6327
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05006328 err = nfs4_set_lock_state(state, request);
6329 if (err != 0)
6330 return err;
Trond Myklebustf6de7a32013-09-04 10:08:54 -04006331 if (!recover_lost_locks) {
NeilBrownef1820f2013-09-04 17:04:49 +10006332 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
6333 return 0;
6334 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006335 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006336 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6337 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006338 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006339 switch (err) {
6340 default:
6341 goto out;
6342 case -NFS4ERR_GRACE:
6343 case -NFS4ERR_DELAY:
6344 nfs4_handle_exception(server, err, &exception);
6345 err = 0;
6346 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006347 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006348out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00006349 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350}
6351
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006352#if defined(CONFIG_NFS_V4_1)
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006353static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
6354{
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006355 struct nfs4_lock_state *lsp;
6356 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006357
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006358 status = nfs4_set_lock_state(state, request);
6359 if (status != 0)
6360 return status;
6361 lsp = request->fl_u.nfs4_fl.owner;
6362 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
6363 test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
6364 return 0;
Anna Schumaker81b68de2017-01-11 16:41:34 -05006365 return nfs4_lock_expired(state, request);
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006366}
6367#endif
6368
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6370{
Trond Myklebust19e03c52008-12-23 15:21:44 -05006371 struct nfs_inode *nfsi = NFS_I(state->inode);
Chuck Lever11476e92016-04-11 16:20:22 -04006372 struct nfs4_state_owner *sp = state->owner;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006373 unsigned char fl_flags = request->fl_flags;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006374 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Trond Myklebust01c3b862006-06-29 16:38:39 -04006376 request->fl_flags |= FL_ACCESS;
Jeff Layton75575dd2016-09-17 18:17:32 -04006377 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006378 if (status < 0)
6379 goto out;
Chuck Lever11476e92016-04-11 16:20:22 -04006380 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebust19e03c52008-12-23 15:21:44 -05006381 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006382 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04006383 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04006384 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05006385 request->fl_flags = fl_flags & ~FL_SLEEP;
Jeff Layton75575dd2016-09-17 18:17:32 -04006386 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006387 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006388 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006389 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006390 }
Trond Myklebust9a99af42013-02-04 20:17:49 -05006391 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006392 mutex_unlock(&sp->so_delegreturn_mutex);
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006393 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006394out:
6395 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 return status;
6397}
6398
6399static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6400{
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006401 struct nfs4_exception exception = {
6402 .state = state,
Trond Myklebust05ffe242012-04-18 12:20:10 -04006403 .inode = state->inode,
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006404 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 int err;
6406
6407 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07006408 err = _nfs4_proc_setlk(state, cmd, request);
6409 if (err == -NFS4ERR_DENIED)
6410 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07006412 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413 } while (exception.retry);
6414 return err;
6415}
6416
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006417#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
6418#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
6419
6420static int
Jeff Laytona1d617d82016-09-17 18:17:39 -04006421nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
6422 struct file_lock *request)
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006423{
6424 int status = -ERESTARTSYS;
6425 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
6426
6427 while(!signalled()) {
6428 status = nfs4_proc_setlk(state, cmd, request);
6429 if ((status != -EAGAIN) || IS_SETLK(cmd))
6430 break;
6431 freezable_schedule_timeout_interruptible(timeout);
6432 timeout *= 2;
6433 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
6434 status = -ERESTARTSYS;
6435 }
6436 return status;
6437}
6438
Jeff Laytona1d617d82016-09-17 18:17:39 -04006439#ifdef CONFIG_NFS_V4_1
6440struct nfs4_lock_waiter {
6441 struct task_struct *task;
6442 struct inode *inode;
6443 struct nfs_lowner *owner;
6444 bool notified;
6445};
6446
6447static int
Ingo Molnarac6424b2017-06-20 12:06:13 +02006448nfs4_wake_lock_waiter(wait_queue_entry_t *wait, unsigned int mode, int flags, void *key)
Jeff Laytona1d617d82016-09-17 18:17:39 -04006449{
6450 int ret;
6451 struct cb_notify_lock_args *cbnl = key;
6452 struct nfs4_lock_waiter *waiter = wait->private;
6453 struct nfs_lowner *lowner = &cbnl->cbnl_owner,
6454 *wowner = waiter->owner;
6455
6456 /* Only wake if the callback was for the same owner */
6457 if (lowner->clientid != wowner->clientid ||
6458 lowner->id != wowner->id ||
6459 lowner->s_dev != wowner->s_dev)
6460 return 0;
6461
6462 /* Make sure it's for the right inode */
6463 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
6464 return 0;
6465
6466 waiter->notified = true;
6467
6468 /* override "private" so we can use default_wake_function */
6469 wait->private = waiter->task;
6470 ret = autoremove_wake_function(wait, mode, flags, key);
6471 wait->private = waiter;
6472 return ret;
6473}
6474
6475static int
6476nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6477{
6478 int status = -ERESTARTSYS;
6479 unsigned long flags;
6480 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
6481 struct nfs_server *server = NFS_SERVER(state->inode);
6482 struct nfs_client *clp = server->nfs_client;
6483 wait_queue_head_t *q = &clp->cl_lock_waitq;
6484 struct nfs_lowner owner = { .clientid = clp->cl_clientid,
6485 .id = lsp->ls_seqid.owner_id,
6486 .s_dev = server->s_dev };
6487 struct nfs4_lock_waiter waiter = { .task = current,
6488 .inode = state->inode,
6489 .owner = &owner,
6490 .notified = false };
Ingo Molnarac6424b2017-06-20 12:06:13 +02006491 wait_queue_entry_t wait;
Jeff Laytona1d617d82016-09-17 18:17:39 -04006492
6493 /* Don't bother with waitqueue if we don't expect a callback */
6494 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
6495 return nfs4_retry_setlk_simple(state, cmd, request);
6496
6497 init_wait(&wait);
6498 wait.private = &waiter;
6499 wait.func = nfs4_wake_lock_waiter;
6500 add_wait_queue(q, &wait);
6501
6502 while(!signalled()) {
6503 status = nfs4_proc_setlk(state, cmd, request);
6504 if ((status != -EAGAIN) || IS_SETLK(cmd))
6505 break;
6506
6507 status = -ERESTARTSYS;
6508 spin_lock_irqsave(&q->lock, flags);
6509 if (waiter.notified) {
6510 spin_unlock_irqrestore(&q->lock, flags);
6511 continue;
6512 }
6513 set_current_state(TASK_INTERRUPTIBLE);
6514 spin_unlock_irqrestore(&q->lock, flags);
6515
Benjamin Coddingtonb7dbcc02017-07-28 12:33:54 -04006516 freezable_schedule_timeout(NFS4_LOCK_MAXTIMEOUT);
Jeff Laytona1d617d82016-09-17 18:17:39 -04006517 }
6518
6519 finish_wait(q, &wait);
6520 return status;
6521}
6522#else /* !CONFIG_NFS_V4_1 */
6523static inline int
6524nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6525{
6526 return nfs4_retry_setlk_simple(state, cmd, request);
6527}
6528#endif
6529
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530static int
6531nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
6532{
6533 struct nfs_open_context *ctx;
6534 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 int status;
6536
6537 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006538 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 state = ctx->state;
6540
Trond Myklebustd9531262009-07-21 19:22:38 -04006541 if (IS_GETLK(cmd)) {
6542 if (state != NULL)
6543 return nfs4_proc_getlk(state, F_GETLK, request);
6544 return 0;
6545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
6547 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
6548 return -EINVAL;
6549
Trond Myklebustd9531262009-07-21 19:22:38 -04006550 if (request->fl_type == F_UNLCK) {
6551 if (state != NULL)
6552 return nfs4_proc_unlck(state, cmd, request);
6553 return 0;
6554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555
Trond Myklebustd9531262009-07-21 19:22:38 -04006556 if (state == NULL)
6557 return -ENOLCK;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006558
6559 if ((request->fl_flags & FL_POSIX) &&
6560 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
6561 return -ENOLCK;
6562
Jeff Layton1ea67db2016-09-17 18:17:37 -04006563 status = nfs4_set_lock_state(state, request);
6564 if (status != 0)
6565 return status;
6566
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006567 return nfs4_retry_setlk(state, cmd, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568}
6569
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006570int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
Trond Myklebust888e6942005-11-04 15:38:11 -05006571{
6572 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust888e6942005-11-04 15:38:11 -05006573 int err;
6574
6575 err = nfs4_set_lock_state(state, fl);
6576 if (err != 0)
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006577 return err;
Trond Myklebust4a706fa2013-04-01 14:47:22 -04006578 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustdb4f2e62013-04-01 15:56:46 -04006579 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
Trond Myklebust888e6942005-11-04 15:38:11 -05006580}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006581
Trond Myklebustcf470c32012-03-07 13:49:12 -05006582struct nfs_release_lockowner_data {
6583 struct nfs4_lock_state *lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006584 struct nfs_server *server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006585 struct nfs_release_lockowner_args args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006586 struct nfs_release_lockowner_res res;
Chuck Lever60ea6812013-10-17 14:13:47 -04006587 unsigned long timestamp;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006588};
6589
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006590static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
6591{
6592 struct nfs_release_lockowner_data *data = calldata;
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006593 struct nfs_server *server = data->server;
Anna Schumaker7981c8a2017-01-10 11:39:53 -05006594 nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
6595 &data->res.seq_res, task);
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006596 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
Chuck Lever60ea6812013-10-17 14:13:47 -04006597 data->timestamp = jiffies;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006598}
6599
6600static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
6601{
6602 struct nfs_release_lockowner_data *data = calldata;
Chuck Lever60ea6812013-10-17 14:13:47 -04006603 struct nfs_server *server = data->server;
6604
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006605 nfs40_sequence_done(task, &data->res.seq_res);
Chuck Lever60ea6812013-10-17 14:13:47 -04006606
6607 switch (task->tk_status) {
6608 case 0:
6609 renew_lease(server, data->timestamp);
6610 break;
6611 case -NFS4ERR_STALE_CLIENTID:
6612 case -NFS4ERR_EXPIRED:
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006613 nfs4_schedule_lease_recovery(server->nfs_client);
6614 break;
Chuck Lever60ea6812013-10-17 14:13:47 -04006615 case -NFS4ERR_LEASE_MOVED:
6616 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10006617 if (nfs4_async_handle_error(task, server,
6618 NULL, NULL) == -EAGAIN)
Chuck Lever60ea6812013-10-17 14:13:47 -04006619 rpc_restart_call_prepare(task);
6620 }
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006621}
6622
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006623static void nfs4_release_lockowner_release(void *calldata)
6624{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006625 struct nfs_release_lockowner_data *data = calldata;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006626 nfs4_free_lock_state(data->server, data->lsp);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006627 kfree(calldata);
6628}
6629
Trond Myklebust17280172012-03-11 13:11:00 -04006630static const struct rpc_call_ops nfs4_release_lockowner_ops = {
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006631 .rpc_call_prepare = nfs4_release_lockowner_prepare,
6632 .rpc_call_done = nfs4_release_lockowner_done,
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006633 .rpc_release = nfs4_release_lockowner_release,
6634};
6635
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006636static void
6637nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006638{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006639 struct nfs_release_lockowner_data *data;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006640 struct rpc_message msg = {
6641 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
6642 };
6643
6644 if (server->nfs_client->cl_mvops->minor_version != 0)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006645 return;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006646
Trond Myklebustcf470c32012-03-07 13:49:12 -05006647 data = kmalloc(sizeof(*data), GFP_NOFS);
6648 if (!data)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006649 return;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006650 data->lsp = lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006651 data->server = server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006652 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6653 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
6654 data->args.lock_owner.s_dev = server->s_dev;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006655
Trond Myklebustcf470c32012-03-07 13:49:12 -05006656 msg.rpc_argp = &data->args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006657 msg.rpc_resp = &data->res;
6658 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
Trond Myklebustcf470c32012-03-07 13:49:12 -05006659 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006660}
6661
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00006662#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
6663
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006664static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006665 struct dentry *unused, struct inode *inode,
6666 const char *key, const void *buf,
6667 size_t buflen, int flags)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006668{
Al Viro59301222016-05-27 10:19:30 -04006669 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006670}
6671
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006672static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006673 struct dentry *unused, struct inode *inode,
6674 const char *key, void *buf, size_t buflen)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006675{
Al Virob2968212016-04-10 20:48:24 -04006676 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006677}
6678
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006679static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006680{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006681 return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)));
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006682}
6683
David Quigleyc9bccef2013-05-22 12:50:45 -04006684#ifdef CONFIG_NFS_V4_SECURITY_LABEL
David Quigleyc9bccef2013-05-22 12:50:45 -04006685
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006686static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006687 struct dentry *unused, struct inode *inode,
6688 const char *key, const void *buf,
6689 size_t buflen, int flags)
David Quigleyc9bccef2013-05-22 12:50:45 -04006690{
6691 if (security_ismaclabel(key))
Al Viro59301222016-05-27 10:19:30 -04006692 return nfs4_set_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006693
6694 return -EOPNOTSUPP;
6695}
6696
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006697static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006698 struct dentry *unused, struct inode *inode,
6699 const char *key, void *buf, size_t buflen)
David Quigleyc9bccef2013-05-22 12:50:45 -04006700{
6701 if (security_ismaclabel(key))
Al Virob2968212016-04-10 20:48:24 -04006702 return nfs4_get_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006703 return -EOPNOTSUPP;
6704}
6705
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006706static ssize_t
6707nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
David Quigleyc9bccef2013-05-22 12:50:45 -04006708{
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006709 int len = 0;
David Quigleyc9bccef2013-05-22 12:50:45 -04006710
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006711 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
6712 len = security_inode_listsecurity(inode, list, list_len);
6713 if (list_len && len > list_len)
6714 return -ERANGE;
David Quigleyc9bccef2013-05-22 12:50:45 -04006715 }
6716 return len;
6717}
6718
6719static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
6720 .prefix = XATTR_SECURITY_PREFIX,
David Quigleyc9bccef2013-05-22 12:50:45 -04006721 .get = nfs4_xattr_get_nfs4_label,
6722 .set = nfs4_xattr_set_nfs4_label,
6723};
David Quigleyc9bccef2013-05-22 12:50:45 -04006724
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006725#else
6726
6727static ssize_t
6728nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
6729{
6730 return 0;
6731}
6732
6733#endif
David Quigleyc9bccef2013-05-22 12:50:45 -04006734
Andy Adamson533eb462011-06-13 18:25:56 -04006735/*
6736 * nfs_fhget will use either the mounted_on_fileid or the fileid
6737 */
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006738static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
6739{
Andy Adamson533eb462011-06-13 18:25:56 -04006740 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
6741 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
6742 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
Chuck Lever81934dd2012-03-01 17:01:57 -05006743 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006744 return;
6745
6746 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Chuck Lever81934dd2012-03-01 17:01:57 -05006747 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006748 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
6749 fattr->nlink = 2;
6750}
6751
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006752static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6753 const struct qstr *name,
6754 struct nfs4_fs_locations *fs_locations,
6755 struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006756{
6757 struct nfs_server *server = NFS_SERVER(dir);
David Quigleya09df2c2013-05-22 12:50:41 -04006758 u32 bitmask[3] = {
Manoj Naik361e6242006-06-09 09:34:24 -04006759 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006760 };
6761 struct nfs4_fs_locations_arg args = {
6762 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05006763 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006764 .page = page,
6765 .bitmask = bitmask,
6766 };
Benny Halevy22958462009-04-01 09:22:02 -04006767 struct nfs4_fs_locations_res res = {
6768 .fs_locations = fs_locations,
6769 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04006770 struct rpc_message msg = {
6771 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6772 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04006773 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006774 };
6775 int status;
6776
Harvey Harrison3110ff82008-05-02 13:42:44 -07006777 dprintk("%s: start\n", __func__);
Andy Adamson533eb462011-06-13 18:25:56 -04006778
6779 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
6780 * is not supported */
6781 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
6782 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
6783 else
6784 bitmask[0] |= FATTR4_WORD0_FILEID;
6785
Trond Myklebustc228fd32007-01-13 02:28:11 -05006786 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006787 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04006788 fs_locations->nlocations = 0;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006789 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006790 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006791 return status;
6792}
6793
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006794int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6795 const struct qstr *name,
6796 struct nfs4_fs_locations *fs_locations,
6797 struct page *page)
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006798{
6799 struct nfs4_exception exception = { };
6800 int err;
6801 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04006802 err = _nfs4_proc_fs_locations(client, dir, name,
6803 fs_locations, page);
6804 trace_nfs4_get_fs_locations(dir, name, err);
6805 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006806 &exception);
6807 } while (exception.retry);
6808 return err;
6809}
6810
Chuck Leverb03d7352013-10-17 14:12:50 -04006811/*
6812 * This operation also signals the server that this client is
6813 * performing migration recovery. The server can stop returning
6814 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
6815 * appended to this compound to identify the client ID which is
6816 * performing recovery.
6817 */
6818static int _nfs40_proc_get_locations(struct inode *inode,
6819 struct nfs4_fs_locations *locations,
6820 struct page *page, struct rpc_cred *cred)
6821{
6822 struct nfs_server *server = NFS_SERVER(inode);
6823 struct rpc_clnt *clnt = server->client;
6824 u32 bitmask[2] = {
6825 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6826 };
6827 struct nfs4_fs_locations_arg args = {
6828 .clientid = server->nfs_client->cl_clientid,
6829 .fh = NFS_FH(inode),
6830 .page = page,
6831 .bitmask = bitmask,
6832 .migration = 1, /* skip LOOKUP */
6833 .renew = 1, /* append RENEW */
6834 };
6835 struct nfs4_fs_locations_res res = {
6836 .fs_locations = locations,
6837 .migration = 1,
6838 .renew = 1,
6839 };
6840 struct rpc_message msg = {
6841 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6842 .rpc_argp = &args,
6843 .rpc_resp = &res,
6844 .rpc_cred = cred,
6845 };
6846 unsigned long now = jiffies;
6847 int status;
6848
6849 nfs_fattr_init(&locations->fattr);
6850 locations->server = server;
6851 locations->nlocations = 0;
6852
6853 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6854 nfs4_set_sequence_privileged(&args.seq_args);
6855 status = nfs4_call_sync_sequence(clnt, server, &msg,
6856 &args.seq_args, &res.seq_res);
6857 if (status)
6858 return status;
6859
6860 renew_lease(server, now);
6861 return 0;
6862}
6863
6864#ifdef CONFIG_NFS_V4_1
6865
6866/*
6867 * This operation also signals the server that this client is
6868 * performing migration recovery. The server can stop asserting
6869 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
6870 * performing this operation is identified in the SEQUENCE
6871 * operation in this compound.
6872 *
6873 * When the client supports GETATTR(fs_locations_info), it can
6874 * be plumbed in here.
6875 */
6876static int _nfs41_proc_get_locations(struct inode *inode,
6877 struct nfs4_fs_locations *locations,
6878 struct page *page, struct rpc_cred *cred)
6879{
6880 struct nfs_server *server = NFS_SERVER(inode);
6881 struct rpc_clnt *clnt = server->client;
6882 u32 bitmask[2] = {
6883 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6884 };
6885 struct nfs4_fs_locations_arg args = {
6886 .fh = NFS_FH(inode),
6887 .page = page,
6888 .bitmask = bitmask,
6889 .migration = 1, /* skip LOOKUP */
6890 };
6891 struct nfs4_fs_locations_res res = {
6892 .fs_locations = locations,
6893 .migration = 1,
6894 };
6895 struct rpc_message msg = {
6896 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6897 .rpc_argp = &args,
6898 .rpc_resp = &res,
6899 .rpc_cred = cred,
6900 };
6901 int status;
6902
6903 nfs_fattr_init(&locations->fattr);
6904 locations->server = server;
6905 locations->nlocations = 0;
6906
6907 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6908 nfs4_set_sequence_privileged(&args.seq_args);
6909 status = nfs4_call_sync_sequence(clnt, server, &msg,
6910 &args.seq_args, &res.seq_res);
6911 if (status == NFS4_OK &&
6912 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6913 status = -NFS4ERR_LEASE_MOVED;
6914 return status;
6915}
6916
6917#endif /* CONFIG_NFS_V4_1 */
6918
6919/**
6920 * nfs4_proc_get_locations - discover locations for a migrated FSID
6921 * @inode: inode on FSID that is migrating
6922 * @locations: result of query
6923 * @page: buffer
6924 * @cred: credential to use for this operation
6925 *
6926 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
6927 * operation failed, or a negative errno if a local error occurred.
6928 *
6929 * On success, "locations" is filled in, but if the server has
6930 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
6931 * asserted.
6932 *
6933 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
6934 * from this client that require migration recovery.
6935 */
6936int nfs4_proc_get_locations(struct inode *inode,
6937 struct nfs4_fs_locations *locations,
6938 struct page *page, struct rpc_cred *cred)
6939{
6940 struct nfs_server *server = NFS_SERVER(inode);
6941 struct nfs_client *clp = server->nfs_client;
6942 const struct nfs4_mig_recovery_ops *ops =
6943 clp->cl_mvops->mig_recovery_ops;
6944 struct nfs4_exception exception = { };
6945 int status;
6946
6947 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6948 (unsigned long long)server->fsid.major,
6949 (unsigned long long)server->fsid.minor,
6950 clp->cl_hostname);
6951 nfs_display_fhandle(NFS_FH(inode), __func__);
6952
6953 do {
6954 status = ops->get_locations(inode, locations, page, cred);
6955 if (status != -NFS4ERR_DELAY)
6956 break;
6957 nfs4_handle_exception(server, status, &exception);
6958 } while (exception.retry);
6959 return status;
6960}
6961
Chuck Lever44c99932013-10-17 14:13:30 -04006962/*
6963 * This operation also signals the server that this client is
6964 * performing "lease moved" recovery. The server can stop
6965 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
6966 * is appended to this compound to identify the client ID which is
6967 * performing recovery.
6968 */
6969static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6970{
6971 struct nfs_server *server = NFS_SERVER(inode);
6972 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
6973 struct rpc_clnt *clnt = server->client;
6974 struct nfs4_fsid_present_arg args = {
6975 .fh = NFS_FH(inode),
6976 .clientid = clp->cl_clientid,
6977 .renew = 1, /* append RENEW */
6978 };
6979 struct nfs4_fsid_present_res res = {
6980 .renew = 1,
6981 };
6982 struct rpc_message msg = {
6983 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6984 .rpc_argp = &args,
6985 .rpc_resp = &res,
6986 .rpc_cred = cred,
6987 };
6988 unsigned long now = jiffies;
6989 int status;
6990
6991 res.fh = nfs_alloc_fhandle();
6992 if (res.fh == NULL)
6993 return -ENOMEM;
6994
6995 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6996 nfs4_set_sequence_privileged(&args.seq_args);
6997 status = nfs4_call_sync_sequence(clnt, server, &msg,
6998 &args.seq_args, &res.seq_res);
6999 nfs_free_fhandle(res.fh);
7000 if (status)
7001 return status;
7002
7003 do_renew_lease(clp, now);
7004 return 0;
7005}
7006
7007#ifdef CONFIG_NFS_V4_1
7008
7009/*
7010 * This operation also signals the server that this client is
7011 * performing "lease moved" recovery. The server can stop asserting
7012 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
7013 * this operation is identified in the SEQUENCE operation in this
7014 * compound.
7015 */
7016static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
7017{
7018 struct nfs_server *server = NFS_SERVER(inode);
7019 struct rpc_clnt *clnt = server->client;
7020 struct nfs4_fsid_present_arg args = {
7021 .fh = NFS_FH(inode),
7022 };
7023 struct nfs4_fsid_present_res res = {
7024 };
7025 struct rpc_message msg = {
7026 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
7027 .rpc_argp = &args,
7028 .rpc_resp = &res,
7029 .rpc_cred = cred,
7030 };
7031 int status;
7032
7033 res.fh = nfs_alloc_fhandle();
7034 if (res.fh == NULL)
7035 return -ENOMEM;
7036
7037 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
7038 nfs4_set_sequence_privileged(&args.seq_args);
7039 status = nfs4_call_sync_sequence(clnt, server, &msg,
7040 &args.seq_args, &res.seq_res);
7041 nfs_free_fhandle(res.fh);
7042 if (status == NFS4_OK &&
7043 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
7044 status = -NFS4ERR_LEASE_MOVED;
7045 return status;
7046}
7047
7048#endif /* CONFIG_NFS_V4_1 */
7049
7050/**
7051 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
7052 * @inode: inode on FSID to check
7053 * @cred: credential to use for this operation
7054 *
7055 * Server indicates whether the FSID is present, moved, or not
7056 * recognized. This operation is necessary to clear a LEASE_MOVED
7057 * condition for this client ID.
7058 *
7059 * Returns NFS4_OK if the FSID is present on this server,
7060 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
7061 * NFS4ERR code if some error occurred on the server, or a
7062 * negative errno if a local failure occurred.
7063 */
7064int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
7065{
7066 struct nfs_server *server = NFS_SERVER(inode);
7067 struct nfs_client *clp = server->nfs_client;
7068 const struct nfs4_mig_recovery_ops *ops =
7069 clp->cl_mvops->mig_recovery_ops;
7070 struct nfs4_exception exception = { };
7071 int status;
7072
7073 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
7074 (unsigned long long)server->fsid.major,
7075 (unsigned long long)server->fsid.minor,
7076 clp->cl_hostname);
7077 nfs_display_fhandle(NFS_FH(inode), __func__);
7078
7079 do {
7080 status = ops->fsid_present(inode, cred);
7081 if (status != -NFS4ERR_DELAY)
7082 break;
7083 nfs4_handle_exception(server, status, &exception);
7084 } while (exception.retry);
7085 return status;
7086}
7087
Andy Adamson5ec16a82013-08-08 10:57:55 -04007088/**
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007089 * If 'use_integrity' is true and the state managment nfs_client
7090 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
7091 * and the machine credential as per RFC3530bis and RFC5661 Security
7092 * Considerations sections. Otherwise, just use the user cred with the
7093 * filesystem's rpc_client.
Andy Adamson5ec16a82013-08-08 10:57:55 -04007094 */
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007095static 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 +00007096{
7097 int status;
7098 struct nfs4_secinfo_arg args = {
7099 .dir_fh = NFS_FH(dir),
7100 .name = name,
7101 };
7102 struct nfs4_secinfo_res res = {
7103 .flavors = flavors,
7104 };
7105 struct rpc_message msg = {
7106 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
7107 .rpc_argp = &args,
7108 .rpc_resp = &res,
7109 };
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007110 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007111 struct rpc_cred *cred = NULL;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007112
7113 if (use_integrity) {
7114 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007115 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client);
7116 msg.rpc_cred = cred;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007117 }
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007118
7119 dprintk("NFS call secinfo %s\n", name->name);
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007120
7121 nfs4_state_protect(NFS_SERVER(dir)->nfs_client,
7122 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
7123
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007124 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args,
7125 &res.seq_res, 0);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007126 dprintk("NFS reply secinfo: %d\n", status);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007127
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007128 if (cred)
7129 put_rpccred(cred);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007130
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007131 return status;
7132}
7133
Bryan Schumaker72de53e2012-04-27 13:27:40 -04007134int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
7135 struct nfs4_secinfo_flavors *flavors)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007136{
7137 struct nfs4_exception exception = { };
7138 int err;
7139 do {
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007140 err = -NFS4ERR_WRONGSEC;
7141
7142 /* try to use integrity protection with machine cred */
7143 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
7144 err = _nfs4_proc_secinfo(dir, name, flavors, true);
7145
7146 /*
7147 * if unable to use integrity protection, or SECINFO with
7148 * integrity protection returns NFS4ERR_WRONGSEC (which is
7149 * disallowed by spec, but exists in deployed servers) use
7150 * the current filesystem's rpc_client and the user cred.
7151 */
7152 if (err == -NFS4ERR_WRONGSEC)
7153 err = _nfs4_proc_secinfo(dir, name, flavors, false);
7154
Trond Myklebust078ea3d2013-08-12 16:45:55 -04007155 trace_nfs4_secinfo(dir, name, err);
7156 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007157 &exception);
7158 } while (exception.retry);
7159 return err;
7160}
7161
Andy Adamson557134a2009-04-01 09:21:53 -04007162#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04007163/*
Andy Adamson357f54d2010-12-14 10:11:57 -05007164 * Check the exchange flags returned by the server for invalid flags, having
7165 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
7166 * DS flags set.
7167 */
7168static int nfs4_check_cl_exchange_flags(u32 flags)
7169{
7170 if (flags & ~EXCHGID4_FLAG_MASK_R)
7171 goto out_inval;
7172 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
7173 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
7174 goto out_inval;
7175 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
7176 goto out_inval;
7177 return NFS_OK;
7178out_inval:
7179 return -NFS4ERR_INVAL;
7180}
7181
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007182static bool
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007183nfs41_same_server_scope(struct nfs41_server_scope *a,
7184 struct nfs41_server_scope *b)
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007185{
Anna Schumaker49ad0142017-01-11 16:51:59 -05007186 if (a->server_scope_sz != b->server_scope_sz)
7187 return false;
7188 return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007189}
7190
Andy Adamson02a95de2016-02-05 16:08:37 -05007191static void
7192nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
7193{
7194}
7195
7196static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
7197 .rpc_call_done = &nfs4_bind_one_conn_to_session_done,
7198};
7199
Andy Adamson357f54d2010-12-14 10:11:57 -05007200/*
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007201 * nfs4_proc_bind_one_conn_to_session()
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007202 *
7203 * The 4.1 client currently uses the same TCP connection for the
7204 * fore and backchannel.
7205 */
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007206static
7207int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
7208 struct rpc_xprt *xprt,
7209 struct nfs_client *clp,
7210 struct rpc_cred *cred)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007211{
7212 int status;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007213 struct nfs41_bind_conn_to_session_args args = {
7214 .client = clp,
7215 .dir = NFS4_CDFC4_FORE_OR_BOTH,
7216 };
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007217 struct nfs41_bind_conn_to_session_res res;
7218 struct rpc_message msg = {
7219 .rpc_proc =
7220 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
Trond Myklebust71a097c2015-02-18 09:27:18 -08007221 .rpc_argp = &args,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007222 .rpc_resp = &res,
Trond Myklebust2cf047c2012-05-25 17:57:41 -04007223 .rpc_cred = cred,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007224 };
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007225 struct rpc_task_setup task_setup_data = {
7226 .rpc_client = clnt,
7227 .rpc_xprt = xprt,
Andy Adamson02a95de2016-02-05 16:08:37 -05007228 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007229 .rpc_message = &msg,
7230 .flags = RPC_TASK_TIMEOUT,
7231 };
7232 struct rpc_task *task;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007233
Trond Myklebust71a097c2015-02-18 09:27:18 -08007234 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
7235 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
7236 args.dir = NFS4_CDFC4_FORE;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007237
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007238 /* Do not set the backchannel flag unless this is clnt->cl_xprt */
7239 if (xprt != rcu_access_pointer(clnt->cl_xprt))
7240 args.dir = NFS4_CDFC4_FORE;
7241
7242 task = rpc_run_task(&task_setup_data);
7243 if (!IS_ERR(task)) {
7244 status = task->tk_status;
7245 rpc_put_task(task);
7246 } else
7247 status = PTR_ERR(task);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007248 trace_nfs4_bind_conn_to_session(clp, status);
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007249 if (status == 0) {
Trond Myklebust71a097c2015-02-18 09:27:18 -08007250 if (memcmp(res.sessionid.data,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007251 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
7252 dprintk("NFS: %s: Session ID mismatch\n", __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007253 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007254 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007255 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007256 dprintk("NFS: %s: Unexpected direction from server\n",
7257 __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007258 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007259 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007260 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007261 dprintk("NFS: %s: Server returned RDMA mode = true\n",
7262 __func__);
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007263 return -EIO;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007264 }
7265 }
Anna Schumakerc7ae7632017-04-07 14:15:21 -04007266
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007267 return status;
7268}
7269
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007270struct rpc_bind_conn_calldata {
7271 struct nfs_client *clp;
7272 struct rpc_cred *cred;
7273};
7274
7275static int
7276nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
7277 struct rpc_xprt *xprt,
7278 void *calldata)
7279{
7280 struct rpc_bind_conn_calldata *p = calldata;
7281
7282 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
7283}
7284
7285int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
7286{
7287 struct rpc_bind_conn_calldata data = {
7288 .clp = clp,
7289 .cred = cred,
7290 };
7291 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
7292 nfs4_proc_bind_conn_to_session_callback, &data);
7293}
7294
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007295/*
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007296 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
7297 * and operations we'd like to see to enable certain features in the allow map
Benny Halevy99fe60d2009-04-01 09:22:29 -04007298 */
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007299static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
7300 .how = SP4_MACH_CRED,
7301 .enforce.u.words = {
7302 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7303 1 << (OP_EXCHANGE_ID - 32) |
7304 1 << (OP_CREATE_SESSION - 32) |
7305 1 << (OP_DESTROY_SESSION - 32) |
7306 1 << (OP_DESTROY_CLIENTID - 32)
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007307 },
7308 .allow.u.words = {
7309 [0] = 1 << (OP_CLOSE) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007310 1 << (OP_OPEN_DOWNGRADE) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007311 1 << (OP_LOCKU) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007312 1 << (OP_DELEGRETURN) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007313 1 << (OP_COMMIT),
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007314 [1] = 1 << (OP_SECINFO - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007315 1 << (OP_SECINFO_NO_NAME - 32) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007316 1 << (OP_LAYOUTRETURN - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007317 1 << (OP_TEST_STATEID - 32) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007318 1 << (OP_FREE_STATEID - 32) |
7319 1 << (OP_WRITE - 32)
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007320 }
7321};
7322
7323/*
7324 * Select the state protection mode for client `clp' given the server results
7325 * from exchange_id in `sp'.
7326 *
7327 * Returns 0 on success, negative errno otherwise.
7328 */
7329static int nfs4_sp4_select_mode(struct nfs_client *clp,
7330 struct nfs41_state_protection *sp)
7331{
7332 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
7333 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7334 1 << (OP_EXCHANGE_ID - 32) |
7335 1 << (OP_CREATE_SESSION - 32) |
7336 1 << (OP_DESTROY_SESSION - 32) |
7337 1 << (OP_DESTROY_CLIENTID - 32)
7338 };
7339 unsigned int i;
7340
7341 if (sp->how == SP4_MACH_CRED) {
7342 /* Print state protect result */
7343 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
7344 for (i = 0; i <= LAST_NFS4_OP; i++) {
7345 if (test_bit(i, sp->enforce.u.longs))
7346 dfprintk(MOUNT, " enforce op %d\n", i);
7347 if (test_bit(i, sp->allow.u.longs))
7348 dfprintk(MOUNT, " allow op %d\n", i);
7349 }
7350
7351 /* make sure nothing is on enforce list that isn't supported */
7352 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
7353 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
7354 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7355 return -EINVAL;
7356 }
7357 }
7358
7359 /*
7360 * Minimal mode - state operations are allowed to use machine
7361 * credential. Note this already happens by default, so the
7362 * client doesn't have to do anything more than the negotiation.
7363 *
7364 * NOTE: we don't care if EXCHANGE_ID is in the list -
7365 * we're already using the machine cred for exchange_id
7366 * and will never use a different cred.
7367 */
7368 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
7369 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
7370 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
7371 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
7372 dfprintk(MOUNT, "sp4_mach_cred:\n");
7373 dfprintk(MOUNT, " minimal mode enabled\n");
7374 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags);
7375 } else {
7376 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7377 return -EINVAL;
7378 }
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007379
7380 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
Andrew Elble99ade3c2015-12-02 09:39:51 -05007381 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
7382 test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007383 test_bit(OP_LOCKU, sp->allow.u.longs)) {
7384 dfprintk(MOUNT, " cleanup mode enabled\n");
7385 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags);
7386 }
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007387
Andrew Elble99ade3c2015-12-02 09:39:51 -05007388 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
7389 dfprintk(MOUNT, " pnfs cleanup mode enabled\n");
7390 set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP,
7391 &clp->cl_sp4_flags);
7392 }
7393
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007394 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
7395 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
7396 dfprintk(MOUNT, " secinfo mode enabled\n");
7397 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
7398 }
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007399
7400 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
7401 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
7402 dfprintk(MOUNT, " stateid mode enabled\n");
7403 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
7404 }
Weston Andros Adamson8c21c622013-08-13 16:37:37 -04007405
7406 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
7407 dfprintk(MOUNT, " write mode enabled\n");
7408 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags);
7409 }
7410
7411 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
7412 dfprintk(MOUNT, " commit mode enabled\n");
7413 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags);
7414 }
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007415 }
7416
7417 return 0;
7418}
7419
Andy Adamson8d89bd72016-09-09 09:22:18 -04007420struct nfs41_exchange_id_data {
7421 struct nfs41_exchange_id_res res;
7422 struct nfs41_exchange_id_args args;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007423 struct rpc_xprt *xprt;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007424 int rpc_status;
7425};
7426
7427static void nfs4_exchange_id_done(struct rpc_task *task, void *data)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007428{
Andy Adamson8d89bd72016-09-09 09:22:18 -04007429 struct nfs41_exchange_id_data *cdata =
7430 (struct nfs41_exchange_id_data *)data;
7431 struct nfs_client *clp = cdata->args.client;
7432 int status = task->tk_status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007433
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007434 trace_nfs4_exchange_id(clp, status);
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007435
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007436 if (status == 0)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007437 status = nfs4_check_cl_exchange_flags(cdata->res.flags);
Andy Adamsonad0849a2016-09-09 09:22:28 -04007438
7439 if (cdata->xprt && status == 0) {
7440 status = nfs4_detect_session_trunking(clp, &cdata->res,
7441 cdata->xprt);
7442 goto out;
7443 }
7444
Andy Adamson8d89bd72016-09-09 09:22:18 -04007445 if (status == 0)
7446 status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007447
Chuck Lever177313f2012-05-21 22:44:58 -04007448 if (status == 0) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007449 clp->cl_clientid = cdata->res.clientid;
7450 clp->cl_exchange_flags = cdata->res.flags;
Chuck Lever838edb92017-06-08 11:52:52 -04007451 clp->cl_seqid = cdata->res.seqid;
Trond Myklebuste11259f2015-03-03 20:35:31 -05007452 /* Client ID is not confirmed */
Chuck Lever838edb92017-06-08 11:52:52 -04007453 if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R))
Trond Myklebuste11259f2015-03-03 20:35:31 -05007454 clear_bit(NFS4_SESSION_ESTABLISHED,
Chuck Lever838edb92017-06-08 11:52:52 -04007455 &clp->cl_session->session_state);
Trond Myklebust32b01312012-05-26 13:41:04 -04007456
Chuck Leveracdeb692012-05-21 22:46:16 -04007457 kfree(clp->cl_serverowner);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007458 clp->cl_serverowner = cdata->res.server_owner;
7459 cdata->res.server_owner = NULL;
Chuck Leveracdeb692012-05-21 22:46:16 -04007460
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007461 /* use the most recent implementation id */
Chuck Lever59155542012-05-21 22:44:41 -04007462 kfree(clp->cl_implid);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007463 clp->cl_implid = cdata->res.impl_id;
7464 cdata->res.impl_id = NULL;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007465
Chuck Lever177313f2012-05-21 22:44:58 -04007466 if (clp->cl_serverscope != NULL &&
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007467 !nfs41_same_server_scope(clp->cl_serverscope,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007468 cdata->res.server_scope)) {
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007469 dprintk("%s: server_scope mismatch detected\n",
7470 __func__);
7471 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007472 kfree(clp->cl_serverscope);
7473 clp->cl_serverscope = NULL;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007474 }
7475
Chuck Lever177313f2012-05-21 22:44:58 -04007476 if (clp->cl_serverscope == NULL) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007477 clp->cl_serverscope = cdata->res.server_scope;
7478 cdata->res.server_scope = NULL;
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007479 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007480 /* Save the EXCHANGE_ID verifier session trunk tests */
Trond Myklebustfd405592017-08-01 16:02:47 -04007481 memcpy(clp->cl_confirm.data, cdata->args.verifier.data,
Andy Adamsonad0849a2016-09-09 09:22:28 -04007482 sizeof(clp->cl_confirm.data));
Andy Adamson8d89bd72016-09-09 09:22:18 -04007483 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007484out:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007485 cdata->rpc_status = status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007486 return;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007487}
7488
7489static void nfs4_exchange_id_release(void *data)
7490{
7491 struct nfs41_exchange_id_data *cdata =
7492 (struct nfs41_exchange_id_data *)data;
7493
Olga Kornievskaia63513232017-03-13 10:36:19 -04007494 nfs_put_client(cdata->args.client);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007495 kfree(cdata->res.impl_id);
7496 kfree(cdata->res.server_scope);
7497 kfree(cdata->res.server_owner);
7498 kfree(cdata);
7499}
7500
7501static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
7502 .rpc_call_done = nfs4_exchange_id_done,
7503 .rpc_release = nfs4_exchange_id_release,
7504};
7505
Benny Halevy99fe60d2009-04-01 09:22:29 -04007506/*
7507 * _nfs4_proc_exchange_id()
7508 *
7509 * Wrapper for EXCHANGE_ID operation.
7510 */
7511static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred,
Andy Adamsonad0849a2016-09-09 09:22:28 -04007512 u32 sp4_how, struct rpc_xprt *xprt)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007513{
Benny Halevy99fe60d2009-04-01 09:22:29 -04007514 struct rpc_message msg = {
7515 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
Benny Halevy99fe60d2009-04-01 09:22:29 -04007516 .rpc_cred = cred,
7517 };
Andy Adamson8d89bd72016-09-09 09:22:18 -04007518 struct rpc_task_setup task_setup_data = {
7519 .rpc_client = clp->cl_rpcclient,
7520 .callback_ops = &nfs4_exchange_id_call_ops,
7521 .rpc_message = &msg,
Trond Myklebustd9cb7332017-08-01 16:02:48 -04007522 .flags = RPC_TASK_TIMEOUT,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007523 };
7524 struct nfs41_exchange_id_data *calldata;
7525 struct rpc_task *task;
Anna Schumakere917f0d2017-04-07 14:15:22 -04007526 int status;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007527
7528 if (!atomic_inc_not_zero(&clp->cl_count))
Anna Schumakere917f0d2017-04-07 14:15:22 -04007529 return -EIO;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007530
Andy Adamson8d89bd72016-09-09 09:22:18 -04007531 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04007532 if (!calldata) {
7533 nfs_put_client(clp);
Anna Schumakere917f0d2017-04-07 14:15:22 -04007534 return -ENOMEM;
Dave Wysochanski5c737cb2017-04-27 10:45:15 -04007535 }
Benny Halevy99fe60d2009-04-01 09:22:29 -04007536
Trond Myklebustfd405592017-08-01 16:02:47 -04007537 nfs4_init_boot_verifier(clp, &calldata->args.verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007538
7539 status = nfs4_init_uniform_client_string(clp);
7540 if (status)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007541 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007542
Andy Adamson8d89bd72016-09-09 09:22:18 -04007543 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
7544 GFP_NOFS);
7545 status = -ENOMEM;
7546 if (unlikely(calldata->res.server_owner == NULL))
7547 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007548
Andy Adamson8d89bd72016-09-09 09:22:18 -04007549 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007550 GFP_NOFS);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007551 if (unlikely(calldata->res.server_scope == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007552 goto out_server_owner;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007553
Andy Adamson8d89bd72016-09-09 09:22:18 -04007554 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
7555 if (unlikely(calldata->res.impl_id == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007556 goto out_server_scope;
7557
7558 switch (sp4_how) {
7559 case SP4_NONE:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007560 calldata->args.state_protect.how = SP4_NONE;
Andy Adamson557134a2009-04-01 09:21:53 -04007561 break;
7562
7563 case SP4_MACH_CRED:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007564 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007565 break;
7566
7567 default:
7568 /* unsupported! */
7569 WARN_ON_ONCE(1);
7570 status = -EINVAL;
7571 goto out_impl_id;
7572 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007573 if (xprt) {
7574 calldata->xprt = xprt;
7575 task_setup_data.rpc_xprt = xprt;
Trond Myklebustd9cb7332017-08-01 16:02:48 -04007576 task_setup_data.flags |= RPC_TASK_SOFTCONN;
Trond Myklebustfd405592017-08-01 16:02:47 -04007577 memcpy(calldata->args.verifier.data, clp->cl_confirm.data,
7578 sizeof(calldata->args.verifier.data));
Andy Adamsonad0849a2016-09-09 09:22:28 -04007579 }
Andy Adamson8d89bd72016-09-09 09:22:18 -04007580 calldata->args.client = clp;
7581#ifdef CONFIG_NFS_V4_1_MIGRATION
7582 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7583 EXCHGID4_FLAG_BIND_PRINC_STATEID |
7584 EXCHGID4_FLAG_SUPP_MOVED_MIGR,
7585#else
7586 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7587 EXCHGID4_FLAG_BIND_PRINC_STATEID,
7588#endif
7589 msg.rpc_argp = &calldata->args;
7590 msg.rpc_resp = &calldata->res;
7591 task_setup_data.callback_data = calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007592
Andy Adamson8d89bd72016-09-09 09:22:18 -04007593 task = rpc_run_task(&task_setup_data);
Olga Kornievskaia63513232017-03-13 10:36:19 -04007594 if (IS_ERR(task))
7595 return PTR_ERR(task);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007596
Trond Myklebustd9cb7332017-08-01 16:02:48 -04007597 status = calldata->rpc_status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007598
Andy Adamson8d89bd72016-09-09 09:22:18 -04007599 rpc_put_task(task);
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007600out:
Benny Halevy99fe60d2009-04-01 09:22:29 -04007601 return status;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007602
7603out_impl_id:
7604 kfree(calldata->res.impl_id);
7605out_server_scope:
7606 kfree(calldata->res.server_scope);
7607out_server_owner:
7608 kfree(calldata->res.server_owner);
7609out_calldata:
7610 kfree(calldata);
Olga Kornievskaia63513232017-03-13 10:36:19 -04007611 nfs_put_client(clp);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007612 goto out;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007613}
7614
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007615/*
7616 * nfs4_proc_exchange_id()
7617 *
7618 * Returns zero, a negative errno, or a negative NFS4ERR status code.
7619 *
7620 * Since the clientid has expired, all compounds using sessions
7621 * associated with the stale clientid will be returning
7622 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
7623 * be in some phase of session reset.
7624 *
7625 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
7626 */
7627int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
7628{
7629 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
7630 int status;
7631
7632 /* try SP4_MACH_CRED if krb5i/p */
7633 if (authflavor == RPC_AUTH_GSS_KRB5I ||
7634 authflavor == RPC_AUTH_GSS_KRB5P) {
Andy Adamsonad0849a2016-09-09 09:22:28 -04007635 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007636 if (!status)
7637 return 0;
7638 }
7639
7640 /* try SP4_NONE */
Andy Adamsonad0849a2016-09-09 09:22:28 -04007641 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007642}
7643
Andy Adamson04fa2c62016-09-09 09:22:29 -04007644/**
7645 * nfs4_test_session_trunk
7646 *
7647 * This is an add_xprt_test() test function called from
7648 * rpc_clnt_setup_test_and_add_xprt.
7649 *
7650 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
7651 * and is dereferrenced in nfs4_exchange_id_release
7652 *
7653 * Upon success, add the new transport to the rpc_clnt
7654 *
7655 * @clnt: struct rpc_clnt to get new transport
7656 * @xprt: the rpc_xprt to test
7657 * @data: call data for _nfs4_proc_exchange_id.
7658 */
7659int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
7660 void *data)
7661{
7662 struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data;
7663 u32 sp4_how;
7664
7665 dprintk("--> %s try %s\n", __func__,
7666 xprt->address_strings[RPC_DISPLAY_ADDR]);
7667
7668 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
7669
7670 /* Test connection for session trunking. Async exchange_id call */
7671 return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
7672}
7673EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
7674
Trond Myklebust66245532012-05-25 17:18:09 -04007675static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
7676 struct rpc_cred *cred)
7677{
7678 struct rpc_message msg = {
7679 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
7680 .rpc_argp = clp,
7681 .rpc_cred = cred,
7682 };
7683 int status;
7684
7685 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007686 trace_nfs4_destroy_clientid(clp, status);
Trond Myklebust66245532012-05-25 17:18:09 -04007687 if (status)
Trond Myklebust02c67522012-06-07 13:45:53 -04007688 dprintk("NFS: Got error %d from the server %s on "
Trond Myklebust66245532012-05-25 17:18:09 -04007689 "DESTROY_CLIENTID.", status, clp->cl_hostname);
7690 return status;
7691}
7692
7693static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
7694 struct rpc_cred *cred)
7695{
7696 unsigned int loop;
7697 int ret;
7698
7699 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
7700 ret = _nfs4_proc_destroy_clientid(clp, cred);
7701 switch (ret) {
7702 case -NFS4ERR_DELAY:
7703 case -NFS4ERR_CLIENTID_BUSY:
7704 ssleep(1);
7705 break;
7706 default:
7707 return ret;
7708 }
7709 }
7710 return 0;
7711}
7712
7713int nfs4_destroy_clientid(struct nfs_client *clp)
7714{
7715 struct rpc_cred *cred;
7716 int ret = 0;
7717
7718 if (clp->cl_mvops->minor_version < 1)
7719 goto out;
7720 if (clp->cl_exchange_flags == 0)
7721 goto out;
Chuck Lever05f4c352012-09-14 17:24:32 -04007722 if (clp->cl_preserve_clid)
7723 goto out;
Chuck Lever73d8bde2013-07-24 12:28:37 -04007724 cred = nfs4_get_clid_cred(clp);
Trond Myklebust66245532012-05-25 17:18:09 -04007725 ret = nfs4_proc_destroy_clientid(clp, cred);
7726 if (cred)
7727 put_rpccred(cred);
7728 switch (ret) {
7729 case 0:
7730 case -NFS4ERR_STALE_CLIENTID:
7731 clp->cl_exchange_flags = 0;
7732 }
7733out:
7734 return ret;
7735}
7736
Andy Adamson2050f0c2009-04-01 09:22:30 -04007737struct nfs4_get_lease_time_data {
7738 struct nfs4_get_lease_time_args *args;
7739 struct nfs4_get_lease_time_res *res;
7740 struct nfs_client *clp;
7741};
7742
7743static void nfs4_get_lease_time_prepare(struct rpc_task *task,
7744 void *calldata)
7745{
Andy Adamson2050f0c2009-04-01 09:22:30 -04007746 struct nfs4_get_lease_time_data *data =
7747 (struct nfs4_get_lease_time_data *)calldata;
7748
7749 dprintk("--> %s\n", __func__);
7750 /* just setup sequence, do not trigger session recovery
7751 since we're invoked within one */
Anna Schumaker7981c8a2017-01-10 11:39:53 -05007752 nfs4_setup_sequence(data->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04007753 &data->args->la_seq_args,
7754 &data->res->lr_seq_res,
7755 task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007756 dprintk("<-- %s\n", __func__);
7757}
7758
7759/*
7760 * Called from nfs4_state_manager thread for session setup, so don't recover
7761 * from sequence operation or clientid errors.
7762 */
7763static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
7764{
7765 struct nfs4_get_lease_time_data *data =
7766 (struct nfs4_get_lease_time_data *)calldata;
7767
7768 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04007769 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
7770 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04007771 switch (task->tk_status) {
7772 case -NFS4ERR_DELAY:
7773 case -NFS4ERR_GRACE:
7774 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
7775 rpc_delay(task, NFS4_POLL_RETRY_MIN);
7776 task->tk_status = 0;
Andy Adamsona8a4ae32011-05-03 13:43:03 -04007777 /* fall through */
7778 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustd00c5d42011-10-19 12:17:29 -07007779 rpc_restart_call_prepare(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007780 return;
7781 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04007782 dprintk("<-- %s\n", __func__);
7783}
7784
Trond Myklebust17280172012-03-11 13:11:00 -04007785static const struct rpc_call_ops nfs4_get_lease_time_ops = {
Andy Adamson2050f0c2009-04-01 09:22:30 -04007786 .rpc_call_prepare = nfs4_get_lease_time_prepare,
7787 .rpc_call_done = nfs4_get_lease_time_done,
7788};
7789
7790int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
7791{
7792 struct rpc_task *task;
7793 struct nfs4_get_lease_time_args args;
7794 struct nfs4_get_lease_time_res res = {
7795 .lr_fsinfo = fsinfo,
7796 };
7797 struct nfs4_get_lease_time_data data = {
7798 .args = &args,
7799 .res = &res,
7800 .clp = clp,
7801 };
7802 struct rpc_message msg = {
7803 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
7804 .rpc_argp = &args,
7805 .rpc_resp = &res,
7806 };
7807 struct rpc_task_setup task_setup = {
7808 .rpc_client = clp->cl_rpcclient,
7809 .rpc_message = &msg,
7810 .callback_ops = &nfs4_get_lease_time_ops,
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007811 .callback_data = &data,
7812 .flags = RPC_TASK_TIMEOUT,
Andy Adamson2050f0c2009-04-01 09:22:30 -04007813 };
7814 int status;
7815
Chuck Levera9c92d62013-08-09 12:48:18 -04007816 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04007817 nfs4_set_sequence_privileged(&args.la_seq_args);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007818 task = rpc_run_task(&task_setup);
7819
7820 if (IS_ERR(task))
Anna Schumakerf6148712017-04-07 14:15:23 -04007821 return PTR_ERR(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007822
Anna Schumakerf6148712017-04-07 14:15:23 -04007823 status = task->tk_status;
7824 rpc_put_task(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007825 return status;
7826}
7827
Andy Adamsonfc931582009-04-01 09:22:31 -04007828/*
7829 * Initialize the values to be used by the client in CREATE_SESSION
7830 * If nfs4_init_session set the fore channel request and response sizes,
7831 * use them.
7832 *
7833 * Set the back channel max_resp_sz_cached to zero to force the client to
7834 * always set csa_cachethis to FALSE because the current implementation
7835 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
7836 */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007837static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
7838 struct rpc_clnt *clnt)
Andy Adamsonfc931582009-04-01 09:22:31 -04007839{
Andy Adamson18aad3d2013-06-26 12:21:49 -04007840 unsigned int max_rqst_sz, max_resp_sz;
Chuck Lever6b26cc82016-05-02 14:40:40 -04007841 unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
Andy Adamsonfc931582009-04-01 09:22:31 -04007842
Andy Adamson18aad3d2013-06-26 12:21:49 -04007843 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
7844 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
7845
Andy Adamsonfc931582009-04-01 09:22:31 -04007846 /* Fore channel attributes */
Andy Adamson18aad3d2013-06-26 12:21:49 -04007847 args->fc_attrs.max_rqst_sz = max_rqst_sz;
7848 args->fc_attrs.max_resp_sz = max_resp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04007849 args->fc_attrs.max_ops = NFS4_MAX_OPS;
Trond Myklebustef159e92012-02-06 19:50:40 -05007850 args->fc_attrs.max_reqs = max_session_slots;
Andy Adamsonfc931582009-04-01 09:22:31 -04007851
7852 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05007853 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04007854 __func__,
7855 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05007856 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04007857
7858 /* Back channel attributes */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007859 args->bc_attrs.max_rqst_sz = max_bc_payload;
7860 args->bc_attrs.max_resp_sz = max_bc_payload;
Andy Adamsonfc931582009-04-01 09:22:31 -04007861 args->bc_attrs.max_resp_sz_cached = 0;
7862 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007863 args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1);
Andy Adamsonfc931582009-04-01 09:22:31 -04007864
7865 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
7866 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
7867 __func__,
7868 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
7869 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
7870 args->bc_attrs.max_reqs);
7871}
7872
Trond Myklebust79969dd2015-02-18 11:30:18 -08007873static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
7874 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007875{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007876 struct nfs4_channel_attrs *sent = &args->fc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007877 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007878
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007879 if (rcvd->max_resp_sz > sent->max_resp_sz)
7880 return -EINVAL;
7881 /*
7882 * Our requested max_ops is the minimum we need; we're not
7883 * prepared to break up compounds into smaller pieces than that.
7884 * So, no point even trying to continue if the server won't
7885 * cooperate:
7886 */
7887 if (rcvd->max_ops < sent->max_ops)
7888 return -EINVAL;
7889 if (rcvd->max_reqs == 0)
7890 return -EINVAL;
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04007891 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
7892 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007893 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04007894}
7895
Trond Myklebust79969dd2015-02-18 11:30:18 -08007896static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
7897 struct nfs41_create_session_res *res)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007898{
7899 struct nfs4_channel_attrs *sent = &args->bc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007900 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04007901
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007902 if (!(res->flags & SESSION4_BACK_CHAN))
7903 goto out;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007904 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
7905 return -EINVAL;
7906 if (rcvd->max_resp_sz < sent->max_resp_sz)
7907 return -EINVAL;
7908 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
7909 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007910 if (rcvd->max_ops > sent->max_ops)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007911 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007912 if (rcvd->max_reqs > sent->max_reqs)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007913 return -EINVAL;
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007914out:
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007915 return 0;
7916}
Andy Adamson8d353012009-04-01 09:22:32 -04007917
Andy Adamson8d353012009-04-01 09:22:32 -04007918static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007919 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007920{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007921 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04007922
Trond Myklebust79969dd2015-02-18 11:30:18 -08007923 ret = nfs4_verify_fore_channel_attrs(args, res);
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007924 if (ret)
7925 return ret;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007926 return nfs4_verify_back_channel_attrs(args, res);
7927}
7928
7929static void nfs4_update_session(struct nfs4_session *session,
7930 struct nfs41_create_session_res *res)
7931{
7932 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
Trond Myklebuste11259f2015-03-03 20:35:31 -05007933 /* Mark client id and session as being confirmed */
7934 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
7935 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
Trond Myklebust79969dd2015-02-18 11:30:18 -08007936 session->flags = res->flags;
7937 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007938 if (res->flags & SESSION4_BACK_CHAN)
7939 memcpy(&session->bc_attrs, &res->bc_attrs,
7940 sizeof(session->bc_attrs));
Andy Adamson8d353012009-04-01 09:22:32 -04007941}
7942
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007943static int _nfs4_proc_create_session(struct nfs_client *clp,
7944 struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007945{
7946 struct nfs4_session *session = clp->cl_session;
7947 struct nfs41_create_session_args args = {
7948 .client = clp,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007949 .clientid = clp->cl_clientid,
7950 .seqid = clp->cl_seqid,
Andy Adamsonfc931582009-04-01 09:22:31 -04007951 .cb_program = NFS4_CALLBACK,
7952 };
Trond Myklebust79969dd2015-02-18 11:30:18 -08007953 struct nfs41_create_session_res res;
7954
Andy Adamsonfc931582009-04-01 09:22:31 -04007955 struct rpc_message msg = {
7956 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
7957 .rpc_argp = &args,
7958 .rpc_resp = &res,
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007959 .rpc_cred = cred,
Andy Adamsonfc931582009-04-01 09:22:31 -04007960 };
7961 int status;
7962
Chuck Lever6b26cc82016-05-02 14:40:40 -04007963 nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
Andy Adamson0f914212009-04-01 09:23:16 -04007964 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04007965
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007966 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007967 trace_nfs4_create_session(clp, status);
Andy Adamsonfc931582009-04-01 09:22:31 -04007968
Trond Myklebustb519d402016-09-11 14:50:01 -04007969 switch (status) {
7970 case -NFS4ERR_STALE_CLIENTID:
7971 case -NFS4ERR_DELAY:
7972 case -ETIMEDOUT:
7973 case -EACCES:
7974 case -EAGAIN:
7975 goto out;
7976 };
7977
7978 clp->cl_seqid++;
Trond Myklebust43095d32012-11-20 11:13:12 -05007979 if (!status) {
Andy Adamson8d353012009-04-01 09:22:32 -04007980 /* Verify the session's negotiated channel_attrs values */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007981 status = nfs4_verify_channel_attrs(&args, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007982 /* Increment the clientid slot sequence id */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007983 if (status)
7984 goto out;
7985 nfs4_update_session(session, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007986 }
Trond Myklebust79969dd2015-02-18 11:30:18 -08007987out:
Andy Adamsonfc931582009-04-01 09:22:31 -04007988 return status;
7989}
7990
7991/*
7992 * Issues a CREATE_SESSION operation to the server.
7993 * It is the responsibility of the caller to verify the session is
7994 * expired before calling this routine.
7995 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007996int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007997{
7998 int status;
7999 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04008000 struct nfs4_session *session = clp->cl_session;
8001
8002 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
8003
Trond Myklebust848f5bd2012-05-25 17:51:23 -04008004 status = _nfs4_proc_create_session(clp, cred);
Andy Adamsonfc931582009-04-01 09:22:31 -04008005 if (status)
8006 goto out;
8007
Andy Adamsonaacd5532011-11-09 13:58:21 -05008008 /* Init or reset the session slot tables */
8009 status = nfs4_setup_session_slot_tables(session);
8010 dprintk("slot table setup returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04008011 if (status)
8012 goto out;
8013
8014 ptr = (unsigned *)&session->sess_id.data[0];
8015 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
8016 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04008017out:
8018 dprintk("<-- %s\n", __func__);
8019 return status;
8020}
8021
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008022/*
8023 * Issue the over-the-wire RPC DESTROY_SESSION.
8024 * The caller must serialize access to this routine.
8025 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04008026int nfs4_proc_destroy_session(struct nfs4_session *session,
8027 struct rpc_cred *cred)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008028{
Trond Myklebust848f5bd2012-05-25 17:51:23 -04008029 struct rpc_message msg = {
8030 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
8031 .rpc_argp = session,
8032 .rpc_cred = cred,
8033 };
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008034 int status = 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008035
8036 dprintk("--> nfs4_proc_destroy_session\n");
8037
8038 /* session is still being setup */
Trond Myklebuste11259f2015-03-03 20:35:31 -05008039 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
8040 return 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008041
Trond Myklebust1bd714f2011-04-24 14:29:33 -04008042 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008043 trace_nfs4_destroy_session(session->clp, status);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008044
8045 if (status)
Trond Myklebust08106ac2012-06-05 10:08:24 -04008046 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008047 "Session has been destroyed regardless...\n", status);
8048
8049 dprintk("<-- nfs4_proc_destroy_session\n");
8050 return status;
8051}
8052
Trond Myklebust7b38c362012-05-23 13:23:31 -04008053/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008054 * Renew the cl_session lease.
8055 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008056struct nfs4_sequence_data {
8057 struct nfs_client *clp;
8058 struct nfs4_sequence_args args;
8059 struct nfs4_sequence_res res;
8060};
8061
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008062static void nfs41_sequence_release(void *data)
8063{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008064 struct nfs4_sequence_data *calldata = data;
8065 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008066
Alexandros Batsakis71358402010-02-05 03:45:05 -08008067 if (atomic_read(&clp->cl_count) > 1)
8068 nfs4_schedule_state_renewal(clp);
8069 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008070 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008071}
8072
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008073static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8074{
8075 switch(task->tk_status) {
8076 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008077 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8078 return -EAGAIN;
8079 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008080 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008081 }
8082 return 0;
8083}
8084
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008085static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008086{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008087 struct nfs4_sequence_data *calldata = data;
8088 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008089
Trond Myklebust14516c32010-07-31 14:29:06 -04008090 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
8091 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008092
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008093 trace_nfs4_sequence(clp, task->tk_status);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008094 if (task->tk_status < 0) {
8095 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008096 if (atomic_read(&clp->cl_count) == 1)
8097 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008098
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008099 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
8100 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008101 return;
8102 }
8103 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008104 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008105out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008106 dprintk("<-- %s\n", __func__);
8107}
8108
8109static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
8110{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008111 struct nfs4_sequence_data *calldata = data;
8112 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008113 struct nfs4_sequence_args *args;
8114 struct nfs4_sequence_res *res;
8115
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008116 args = task->tk_msg.rpc_argp;
8117 res = task->tk_msg.rpc_resp;
8118
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008119 nfs4_setup_sequence(clp, args, res, task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008120}
8121
8122static const struct rpc_call_ops nfs41_sequence_ops = {
8123 .rpc_call_done = nfs41_sequence_call_done,
8124 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008125 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008126};
8127
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008128static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
8129 struct rpc_cred *cred,
8130 bool is_privileged)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008131{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008132 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008133 struct rpc_message msg = {
8134 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
8135 .rpc_cred = cred,
8136 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008137 struct rpc_task_setup task_setup_data = {
8138 .rpc_client = clp->cl_rpcclient,
8139 .rpc_message = &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008140 .callback_ops = &nfs41_sequence_ops,
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04008141 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008142 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008143
Alexandros Batsakis71358402010-02-05 03:45:05 -08008144 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008145 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04008146 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008147 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08008148 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008149 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008150 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008151 nfs4_init_sequence(&calldata->args, &calldata->res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008152 if (is_privileged)
8153 nfs4_set_sequence_privileged(&calldata->args);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008154 msg.rpc_argp = &calldata->args;
8155 msg.rpc_resp = &calldata->res;
8156 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008157 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008158
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008159 return rpc_run_task(&task_setup_data);
8160}
8161
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008162static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008163{
8164 struct rpc_task *task;
8165 int ret = 0;
8166
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008167 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
Andy Adamsond1f456b2014-09-29 12:31:57 -04008168 return -EAGAIN;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008169 task = _nfs41_proc_sequence(clp, cred, false);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008170 if (IS_ERR(task))
8171 ret = PTR_ERR(task);
8172 else
Trond Myklebustbf294b42011-02-21 11:05:41 -08008173 rpc_put_task_async(task);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008174 dprintk("<-- %s status=%d\n", __func__, ret);
8175 return ret;
8176}
8177
8178static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
8179{
8180 struct rpc_task *task;
8181 int ret;
8182
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008183 task = _nfs41_proc_sequence(clp, cred, true);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008184 if (IS_ERR(task)) {
8185 ret = PTR_ERR(task);
8186 goto out;
8187 }
8188 ret = rpc_wait_for_completion_task(task);
Trond Myklebustbe824162015-07-05 14:50:46 -04008189 if (!ret)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008190 ret = task->tk_status;
8191 rpc_put_task(task);
8192out:
8193 dprintk("<-- %s status=%d\n", __func__, ret);
8194 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008195}
8196
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008197struct nfs4_reclaim_complete_data {
8198 struct nfs_client *clp;
8199 struct nfs41_reclaim_complete_args arg;
8200 struct nfs41_reclaim_complete_res res;
8201};
8202
8203static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
8204{
8205 struct nfs4_reclaim_complete_data *calldata = data;
8206
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008207 nfs4_setup_sequence(calldata->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008208 &calldata->arg.seq_args,
8209 &calldata->res.seq_res,
8210 task);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008211}
8212
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008213static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8214{
8215 switch(task->tk_status) {
8216 case 0:
8217 case -NFS4ERR_COMPLETE_ALREADY:
8218 case -NFS4ERR_WRONG_CRED: /* What to do here? */
8219 break;
8220 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008221 rpc_delay(task, NFS4_POLL_RETRY_MAX);
Andy Adamsona8a4ae32011-05-03 13:43:03 -04008222 /* fall through */
8223 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008224 return -EAGAIN;
Trond Myklebust0048fdd2017-05-04 13:44:04 -04008225 case -NFS4ERR_BADSESSION:
8226 case -NFS4ERR_DEADSESSION:
8227 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8228 nfs4_schedule_session_recovery(clp->cl_session,
8229 task->tk_status);
8230 break;
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008231 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008232 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008233 }
8234 return 0;
8235}
8236
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008237static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
8238{
8239 struct nfs4_reclaim_complete_data *calldata = data;
8240 struct nfs_client *clp = calldata->clp;
8241 struct nfs4_sequence_res *res = &calldata->res.seq_res;
8242
8243 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04008244 if (!nfs41_sequence_done(task, res))
8245 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008246
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008247 trace_nfs4_reclaim_complete(clp, task->tk_status);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008248 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
8249 rpc_restart_call_prepare(task);
8250 return;
8251 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008252 dprintk("<-- %s\n", __func__);
8253}
8254
8255static void nfs4_free_reclaim_complete_data(void *data)
8256{
8257 struct nfs4_reclaim_complete_data *calldata = data;
8258
8259 kfree(calldata);
8260}
8261
8262static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
8263 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
8264 .rpc_call_done = nfs4_reclaim_complete_done,
8265 .rpc_release = nfs4_free_reclaim_complete_data,
8266};
8267
8268/*
8269 * Issue a global reclaim complete.
8270 */
Trond Myklebust965e9c22013-05-20 11:05:17 -04008271static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
8272 struct rpc_cred *cred)
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008273{
8274 struct nfs4_reclaim_complete_data *calldata;
8275 struct rpc_task *task;
8276 struct rpc_message msg = {
8277 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
Trond Myklebust965e9c22013-05-20 11:05:17 -04008278 .rpc_cred = cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008279 };
8280 struct rpc_task_setup task_setup_data = {
8281 .rpc_client = clp->cl_rpcclient,
8282 .rpc_message = &msg,
8283 .callback_ops = &nfs4_reclaim_complete_call_ops,
8284 .flags = RPC_TASK_ASYNC,
8285 };
8286 int status = -ENOMEM;
8287
8288 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04008289 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008290 if (calldata == NULL)
8291 goto out;
8292 calldata->clp = clp;
8293 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008294
Chuck Levera9c92d62013-08-09 12:48:18 -04008295 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008296 nfs4_set_sequence_privileged(&calldata->arg.seq_args);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008297 msg.rpc_argp = &calldata->arg;
8298 msg.rpc_resp = &calldata->res;
8299 task_setup_data.callback_data = calldata;
8300 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008301 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008302 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008303 goto out;
8304 }
Anna Schumaker820bf852017-01-11 15:01:43 -05008305 status = rpc_wait_for_completion_task(task);
Andy Adamsonc34c32e2011-03-09 13:13:46 -05008306 if (status == 0)
8307 status = task->tk_status;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008308 rpc_put_task(task);
8309out:
8310 dprintk("<-- %s status=%d\n", __func__, status);
8311 return status;
8312}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008313
8314static void
8315nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
8316{
8317 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00008318 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008319
8320 dprintk("--> %s\n", __func__);
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008321 nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args,
Jeff Layton183d9e72016-05-17 12:28:47 -04008322 &lgp->res.seq_res, task);
8323 dprintk("<-- %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008324}
8325
8326static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
8327{
8328 struct nfs4_layoutget *lgp = calldata;
Jeff Layton183d9e72016-05-17 12:28:47 -04008329
8330 dprintk("--> %s\n", __func__);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008331 nfs41_sequence_process(task, &lgp->res.seq_res);
Jeff Layton183d9e72016-05-17 12:28:47 -04008332 dprintk("<-- %s\n", __func__);
8333}
8334
8335static int
8336nfs4_layoutget_handle_exception(struct rpc_task *task,
8337 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
8338{
Trond Myklebustee314c22012-10-01 17:25:48 -07008339 struct inode *inode = lgp->args.inode;
8340 struct nfs_server *server = NFS_SERVER(inode);
8341 struct pnfs_layout_hdr *lo;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008342 int nfs4err = task->tk_status;
8343 int err, status = 0;
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008344 LIST_HEAD(head);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008345
Boaz Harroshed7e5422014-01-22 20:34:54 +02008346 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008347
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008348 switch (nfs4err) {
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008349 case 0:
Trond Myklebustee314c22012-10-01 17:25:48 -07008350 goto out;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008351
8352 /*
8353 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
8354 * on the file. set tk_status to -ENODATA to tell upper layer to
8355 * retry go inband.
8356 */
8357 case -NFS4ERR_LAYOUTUNAVAILABLE:
Jeff Layton183d9e72016-05-17 12:28:47 -04008358 status = -ENODATA;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008359 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008360 /*
Trond Myklebust21b874c2015-08-31 01:19:22 -07008361 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
8362 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
8363 */
8364 case -NFS4ERR_BADLAYOUT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008365 status = -EOVERFLOW;
8366 goto out;
Trond Myklebust21b874c2015-08-31 01:19:22 -07008367 /*
Boaz Harroshed7e5422014-01-22 20:34:54 +02008368 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
Trond Myklebust21b874c2015-08-31 01:19:22 -07008369 * (or clients) writing to the same RAID stripe except when
8370 * the minlength argument is 0 (see RFC5661 section 18.43.3).
Jeff Layton183d9e72016-05-17 12:28:47 -04008371 *
8372 * Treat it like we would RECALLCONFLICT -- we retry for a little
8373 * while, and then eventually give up.
Boaz Harroshed7e5422014-01-22 20:34:54 +02008374 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008375 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -04008376 if (lgp->args.minlength == 0) {
8377 status = -EOVERFLOW;
8378 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008379 }
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008380 status = -EBUSY;
8381 break;
Jeff Layton183d9e72016-05-17 12:28:47 -04008382 case -NFS4ERR_RECALLCONFLICT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008383 status = -ERECALLCONFLICT;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008384 break;
Trond Myklebust26f47442016-09-22 13:39:10 -04008385 case -NFS4ERR_DELEG_REVOKED:
8386 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustee314c22012-10-01 17:25:48 -07008387 case -NFS4ERR_EXPIRED:
8388 case -NFS4ERR_BAD_STATEID:
Jeff Layton183d9e72016-05-17 12:28:47 -04008389 exception->timeout = 0;
Trond Myklebustee314c22012-10-01 17:25:48 -07008390 spin_lock(&inode->i_lock);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008391 lo = NFS_I(inode)->layout;
8392 /* If the open stateid was bad, then recover it. */
8393 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
8394 nfs4_stateid_match_other(&lgp->args.stateid,
Trond Myklebust2259f962015-09-20 13:30:30 -04008395 &lgp->args.ctx->state->stateid)) {
Trond Myklebustee314c22012-10-01 17:25:48 -07008396 spin_unlock(&inode->i_lock);
Jeff Layton183d9e72016-05-17 12:28:47 -04008397 exception->state = lgp->args.ctx->state;
Trond Myklebust26f47442016-09-22 13:39:10 -04008398 exception->stateid = &lgp->args.stateid;
Trond Myklebust2259f962015-09-20 13:30:30 -04008399 break;
8400 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008401
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008402 /*
8403 * Mark the bad layout state as invalid, then retry
8404 */
Trond Myklebust668f4552016-07-24 17:08:59 -04008405 pnfs_mark_layout_stateid_invalid(lo, &head);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008406 spin_unlock(&inode->i_lock);
Trond Myklebust1f18b822017-04-29 10:10:17 -04008407 nfs_commit_inode(inode, 0);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008408 pnfs_free_lseg_list(&head);
8409 status = -EAGAIN;
8410 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008411 }
Jeff Layton183d9e72016-05-17 12:28:47 -04008412
Trond Myklebust8ac09252017-01-23 22:44:12 -05008413 nfs4_sequence_free_slot(&lgp->res.seq_res);
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008414 err = nfs4_handle_exception(server, nfs4err, exception);
8415 if (!status) {
8416 if (exception->retry)
8417 status = -EAGAIN;
8418 else
8419 status = err;
8420 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008421out:
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008422 dprintk("<-- %s\n", __func__);
Jeff Layton183d9e72016-05-17 12:28:47 -04008423 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008424}
8425
Idan Kedar85541162012-08-02 11:47:10 +03008426static size_t max_response_pages(struct nfs_server *server)
8427{
8428 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
8429 return nfs_page_array_len(0, max_resp_sz);
8430}
8431
8432static void nfs4_free_pages(struct page **pages, size_t size)
8433{
8434 int i;
8435
8436 if (!pages)
8437 return;
8438
8439 for (i = 0; i < size; i++) {
8440 if (!pages[i])
8441 break;
8442 __free_page(pages[i]);
8443 }
8444 kfree(pages);
8445}
8446
8447static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags)
8448{
8449 struct page **pages;
8450 int i;
8451
8452 pages = kcalloc(size, sizeof(struct page *), gfp_flags);
8453 if (!pages) {
8454 dprintk("%s: can't alloc array of %zu pages\n", __func__, size);
8455 return NULL;
8456 }
8457
8458 for (i = 0; i < size; i++) {
8459 pages[i] = alloc_page(gfp_flags);
8460 if (!pages[i]) {
8461 dprintk("%s: failed to allocate page\n", __func__);
8462 nfs4_free_pages(pages, size);
8463 return NULL;
8464 }
8465 }
8466
8467 return pages;
8468}
8469
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008470static void nfs4_layoutget_release(void *calldata)
8471{
8472 struct nfs4_layoutget *lgp = calldata;
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008473 struct inode *inode = lgp->args.inode;
8474 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008475 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008476
8477 dprintk("--> %s\n", __func__);
Trond Myklebustbd171932017-06-27 17:33:38 -04008478 nfs4_sequence_free_slot(&lgp->res.seq_res);
Idan Kedar85541162012-08-02 11:47:10 +03008479 nfs4_free_pages(lgp->args.layout.pages, max_pages);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008480 pnfs_put_layout_hdr(NFS_I(inode)->layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008481 put_nfs_open_context(lgp->args.ctx);
8482 kfree(calldata);
8483 dprintk("<-- %s\n", __func__);
8484}
8485
8486static const struct rpc_call_ops nfs4_layoutget_call_ops = {
8487 .rpc_call_prepare = nfs4_layoutget_prepare,
8488 .rpc_call_done = nfs4_layoutget_done,
8489 .rpc_release = nfs4_layoutget_release,
8490};
8491
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008492struct pnfs_layout_segment *
Jeff Layton183d9e72016-05-17 12:28:47 -04008493nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008494{
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008495 struct inode *inode = lgp->args.inode;
8496 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008497 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008498 struct rpc_task *task;
8499 struct rpc_message msg = {
8500 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
8501 .rpc_argp = &lgp->args,
8502 .rpc_resp = &lgp->res,
Trond Myklebust6ab59342013-05-20 10:49:34 -04008503 .rpc_cred = lgp->cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008504 };
8505 struct rpc_task_setup task_setup_data = {
8506 .rpc_client = server->client,
8507 .rpc_message = &msg,
8508 .callback_ops = &nfs4_layoutget_call_ops,
8509 .callback_data = lgp,
8510 .flags = RPC_TASK_ASYNC,
8511 };
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008512 struct pnfs_layout_segment *lseg = NULL;
Trond Myklebustbc236762016-06-17 16:48:18 -04008513 struct nfs4_exception exception = {
8514 .inode = inode,
8515 .timeout = *timeout,
8516 };
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008517 int status = 0;
8518
8519 dprintk("--> %s\n", __func__);
8520
Peng Tao4bd5a982014-11-17 11:05:17 +08008521 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
8522 pnfs_get_layout_hdr(NFS_I(inode)->layout);
8523
Idan Kedar85541162012-08-02 11:47:10 +03008524 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags);
8525 if (!lgp->args.layout.pages) {
8526 nfs4_layoutget_release(lgp);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008527 return ERR_PTR(-ENOMEM);
Idan Kedar85541162012-08-02 11:47:10 +03008528 }
8529 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
8530
Weston Andros Adamson35124a02011-03-24 16:48:21 -04008531 lgp->res.layoutp = &lgp->args.layout;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008532 lgp->res.seq_res.sr_slot = NULL;
Chuck Levera9c92d62013-08-09 12:48:18 -04008533 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008534
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008535 task = rpc_run_task(&task_setup_data);
8536 if (IS_ERR(task))
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008537 return ERR_CAST(task);
Anna Schumaker820bf852017-01-11 15:01:43 -05008538 status = rpc_wait_for_completion_task(task);
Jeff Layton183d9e72016-05-17 12:28:47 -04008539 if (status == 0) {
8540 status = nfs4_layoutget_handle_exception(task, lgp, &exception);
8541 *timeout = exception.timeout;
8542 }
8543
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008544 trace_nfs4_layoutget(lgp->args.ctx,
8545 &lgp->args.range,
8546 &lgp->res.range,
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008547 &lgp->res.stateid,
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008548 status);
Jeff Layton183d9e72016-05-17 12:28:47 -04008549
Weston Andros Adamson085b7a42013-02-15 16:03:46 -05008550 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */
8551 if (status == 0 && lgp->res.layoutp->len)
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008552 lseg = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008553 rpc_put_task(task);
8554 dprintk("<-- %s status=%d\n", __func__, status);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008555 if (status)
8556 return ERR_PTR(status);
8557 return lseg;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008558}
8559
Benny Halevycbe82602011-05-22 19:52:37 +03008560static void
8561nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
8562{
8563 struct nfs4_layoutreturn *lrp = calldata;
8564
8565 dprintk("--> %s\n", __func__);
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008566 nfs4_setup_sequence(lrp->clp,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008567 &lrp->args.seq_args,
8568 &lrp->res.seq_res,
8569 task);
Benny Halevycbe82602011-05-22 19:52:37 +03008570}
8571
8572static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
8573{
8574 struct nfs4_layoutreturn *lrp = calldata;
8575 struct nfs_server *server;
8576
8577 dprintk("--> %s\n", __func__);
8578
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008579 if (!nfs41_sequence_process(task, &lrp->res.seq_res))
Benny Halevycbe82602011-05-22 19:52:37 +03008580 return;
8581
8582 server = NFS_SERVER(lrp->args.inode);
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008583 switch (task->tk_status) {
8584 default:
8585 task->tk_status = 0;
8586 case 0:
8587 break;
8588 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10008589 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008590 break;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008591 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebustd00c5d42011-10-19 12:17:29 -07008592 rpc_restart_call_prepare(task);
Benny Halevycbe82602011-05-22 19:52:37 +03008593 return;
8594 }
Benny Halevycbe82602011-05-22 19:52:37 +03008595 dprintk("<-- %s\n", __func__);
8596}
8597
8598static void nfs4_layoutreturn_release(void *calldata)
8599{
8600 struct nfs4_layoutreturn *lrp = calldata;
Trond Myklebust849b2862012-09-24 14:18:39 -04008601 struct pnfs_layout_hdr *lo = lrp->args.layout;
Benny Halevycbe82602011-05-22 19:52:37 +03008602
8603 dprintk("--> %s\n", __func__);
Trond Myklebust2a974422016-11-20 13:13:54 -05008604 pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range,
Trond Myklebust68f74472016-10-12 19:50:54 -04008605 lrp->res.lrs_present ? &lrp->res.stateid : NULL);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008606 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebust4d796d72016-09-23 11:38:08 -04008607 if (lrp->ld_private.ops && lrp->ld_private.ops->free)
8608 lrp->ld_private.ops->free(&lrp->ld_private);
Trond Myklebust2f065dd2016-12-07 12:29:26 -05008609 pnfs_put_layout_hdr(lrp->args.layout);
8610 nfs_iput_and_deactive(lrp->inode);
Benny Halevycbe82602011-05-22 19:52:37 +03008611 kfree(calldata);
8612 dprintk("<-- %s\n", __func__);
8613}
8614
8615static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
8616 .rpc_call_prepare = nfs4_layoutreturn_prepare,
8617 .rpc_call_done = nfs4_layoutreturn_done,
8618 .rpc_release = nfs4_layoutreturn_release,
8619};
8620
Peng Tao6c166052014-11-17 09:30:40 +08008621int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
Benny Halevycbe82602011-05-22 19:52:37 +03008622{
8623 struct rpc_task *task;
8624 struct rpc_message msg = {
8625 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
8626 .rpc_argp = &lrp->args,
8627 .rpc_resp = &lrp->res,
Trond Myklebust95560002013-05-20 10:43:47 -04008628 .rpc_cred = lrp->cred,
Benny Halevycbe82602011-05-22 19:52:37 +03008629 };
8630 struct rpc_task_setup task_setup_data = {
Andy Adamson1771c572013-07-22 12:42:05 -04008631 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
Benny Halevycbe82602011-05-22 19:52:37 +03008632 .rpc_message = &msg,
8633 .callback_ops = &nfs4_layoutreturn_call_ops,
8634 .callback_data = lrp,
8635 };
Peng Tao6c166052014-11-17 09:30:40 +08008636 int status = 0;
Benny Halevycbe82602011-05-22 19:52:37 +03008637
Andrew Elble99ade3c2015-12-02 09:39:51 -05008638 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
8639 NFS_SP4_MACH_CRED_PNFS_CLEANUP,
8640 &task_setup_data.rpc_client, &msg);
8641
Benny Halevycbe82602011-05-22 19:52:37 +03008642 dprintk("--> %s\n", __func__);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008643 if (!sync) {
8644 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
8645 if (!lrp->inode) {
8646 nfs4_layoutreturn_release(lrp);
8647 return -EAGAIN;
8648 }
8649 task_setup_data.flags |= RPC_TASK_ASYNC;
8650 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008651 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
Benny Halevycbe82602011-05-22 19:52:37 +03008652 task = rpc_run_task(&task_setup_data);
8653 if (IS_ERR(task))
8654 return PTR_ERR(task);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008655 if (sync)
8656 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008657 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
Benny Halevycbe82602011-05-22 19:52:37 +03008658 dprintk("<-- %s status=%d\n", __func__, status);
8659 rpc_put_task(task);
8660 return status;
8661}
8662
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008663static int
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008664_nfs4_proc_getdeviceinfo(struct nfs_server *server,
8665 struct pnfs_device *pdev,
8666 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008667{
8668 struct nfs4_getdeviceinfo_args args = {
8669 .pdev = pdev,
Trond Myklebust4e590802015-03-09 14:01:25 -04008670 .notify_types = NOTIFY_DEVICEID4_CHANGE |
8671 NOTIFY_DEVICEID4_DELETE,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008672 };
8673 struct nfs4_getdeviceinfo_res res = {
8674 .pdev = pdev,
8675 };
8676 struct rpc_message msg = {
8677 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
8678 .rpc_argp = &args,
8679 .rpc_resp = &res,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008680 .rpc_cred = cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008681 };
8682 int status;
8683
8684 dprintk("--> %s\n", __func__);
Bryan Schumaker7c513052011-03-24 17:12:24 +00008685 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Trond Myklebust4e590802015-03-09 14:01:25 -04008686 if (res.notification & ~args.notify_types)
8687 dprintk("%s: unsupported notification\n", __func__);
Trond Myklebustdf526992015-03-09 14:48:32 -04008688 if (res.notification != args.notify_types)
8689 pdev->nocache = 1;
Trond Myklebust4e590802015-03-09 14:01:25 -04008690
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008691 dprintk("<-- %s status=%d\n", __func__, status);
8692
8693 return status;
8694}
8695
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008696int nfs4_proc_getdeviceinfo(struct nfs_server *server,
8697 struct pnfs_device *pdev,
8698 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008699{
8700 struct nfs4_exception exception = { };
8701 int err;
8702
8703 do {
8704 err = nfs4_handle_exception(server,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008705 _nfs4_proc_getdeviceinfo(server, pdev, cred),
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008706 &exception);
8707 } while (exception.retry);
8708 return err;
8709}
8710EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
8711
Andy Adamson863a3c62011-03-23 13:27:54 +00008712static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
8713{
8714 struct nfs4_layoutcommit_data *data = calldata;
8715 struct nfs_server *server = NFS_SERVER(data->args.inode);
8716
Anna Schumaker7981c8a2017-01-10 11:39:53 -05008717 nfs4_setup_sequence(server->nfs_client,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008718 &data->args.seq_args,
8719 &data->res.seq_res,
8720 task);
Andy Adamson863a3c62011-03-23 13:27:54 +00008721}
8722
8723static void
8724nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
8725{
8726 struct nfs4_layoutcommit_data *data = calldata;
8727 struct nfs_server *server = NFS_SERVER(data->args.inode);
8728
Trond Myklebust6ba7db32012-10-22 20:07:20 -04008729 if (!nfs41_sequence_done(task, &data->res.seq_res))
Andy Adamson863a3c62011-03-23 13:27:54 +00008730 return;
8731
8732 switch (task->tk_status) { /* Just ignore these failures */
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008733 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
8734 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
8735 case -NFS4ERR_BADLAYOUT: /* no layout */
8736 case -NFS4ERR_GRACE: /* loca_recalim always false */
Andy Adamson863a3c62011-03-23 13:27:54 +00008737 task->tk_status = 0;
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008738 case 0:
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008739 break;
8740 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10008741 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008742 rpc_restart_call_prepare(task);
8743 return;
8744 }
8745 }
Andy Adamson863a3c62011-03-23 13:27:54 +00008746}
8747
8748static void nfs4_layoutcommit_release(void *calldata)
8749{
8750 struct nfs4_layoutcommit_data *data = calldata;
8751
Andy Adamsondb29c082011-07-30 20:52:38 -04008752 pnfs_cleanup_layoutcommit(data);
Trond Myklebustd8c951c2014-01-13 12:08:11 -05008753 nfs_post_op_update_inode_force_wcc(data->args.inode,
8754 data->res.fattr);
Andy Adamson863a3c62011-03-23 13:27:54 +00008755 put_rpccred(data->cred);
Trond Myklebust472e2592015-02-05 16:50:30 -05008756 nfs_iput_and_deactive(data->inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00008757 kfree(data);
8758}
8759
8760static const struct rpc_call_ops nfs4_layoutcommit_ops = {
8761 .rpc_call_prepare = nfs4_layoutcommit_prepare,
8762 .rpc_call_done = nfs4_layoutcommit_done,
8763 .rpc_release = nfs4_layoutcommit_release,
8764};
8765
8766int
Andy Adamsonef311532011-03-12 02:58:10 -05008767nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00008768{
8769 struct rpc_message msg = {
8770 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
8771 .rpc_argp = &data->args,
8772 .rpc_resp = &data->res,
8773 .rpc_cred = data->cred,
8774 };
8775 struct rpc_task_setup task_setup_data = {
8776 .task = &data->task,
8777 .rpc_client = NFS_CLIENT(data->args.inode),
8778 .rpc_message = &msg,
8779 .callback_ops = &nfs4_layoutcommit_ops,
8780 .callback_data = data,
Andy Adamson863a3c62011-03-23 13:27:54 +00008781 };
8782 struct rpc_task *task;
8783 int status = 0;
8784
Kinglong Meeb4839eb2015-07-01 12:00:13 +08008785 dprintk("NFS: initiating layoutcommit call. sync %d "
8786 "lbw: %llu inode %lu\n", sync,
Andy Adamson863a3c62011-03-23 13:27:54 +00008787 data->args.lastbytewritten,
8788 data->args.inode->i_ino);
8789
Trond Myklebust472e2592015-02-05 16:50:30 -05008790 if (!sync) {
8791 data->inode = nfs_igrab_and_active(data->args.inode);
8792 if (data->inode == NULL) {
8793 nfs4_layoutcommit_release(data);
8794 return -EAGAIN;
8795 }
8796 task_setup_data.flags = RPC_TASK_ASYNC;
8797 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008798 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andy Adamson863a3c62011-03-23 13:27:54 +00008799 task = rpc_run_task(&task_setup_data);
8800 if (IS_ERR(task))
8801 return PTR_ERR(task);
Trond Myklebust472e2592015-02-05 16:50:30 -05008802 if (sync)
8803 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008804 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
Andy Adamson863a3c62011-03-23 13:27:54 +00008805 dprintk("%s: status %d\n", __func__, status);
8806 rpc_put_task(task);
8807 return status;
8808}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008809
Andy Adamson97431202013-08-08 10:57:56 -04008810/**
8811 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
8812 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
8813 */
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008814static int
8815_nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008816 struct nfs_fsinfo *info,
8817 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008818{
8819 struct nfs41_secinfo_no_name_args args = {
8820 .style = SECINFO_STYLE_CURRENT_FH,
8821 };
8822 struct nfs4_secinfo_res res = {
8823 .flavors = flavors,
8824 };
8825 struct rpc_message msg = {
8826 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
8827 .rpc_argp = &args,
8828 .rpc_resp = &res,
8829 };
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008830 struct rpc_clnt *clnt = server->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008831 struct rpc_cred *cred = NULL;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008832 int status;
8833
8834 if (use_integrity) {
8835 clnt = server->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008836 cred = nfs4_get_clid_cred(server->nfs_client);
8837 msg.rpc_cred = cred;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008838 }
8839
8840 dprintk("--> %s\n", __func__);
8841 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
8842 &res.seq_res, 0);
8843 dprintk("<-- %s status=%d\n", __func__, status);
8844
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008845 if (cred)
8846 put_rpccred(cred);
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008847
8848 return status;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008849}
8850
8851static int
8852nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8853 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
8854{
8855 struct nfs4_exception exception = { };
8856 int err;
8857 do {
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008858 /* first try using integrity protection */
8859 err = -NFS4ERR_WRONGSEC;
8860
8861 /* try to use integrity protection with machine cred */
8862 if (_nfs4_is_integrity_protected(server->nfs_client))
8863 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8864 flavors, true);
8865
8866 /*
8867 * if unable to use integrity protection, or SECINFO with
8868 * integrity protection returns NFS4ERR_WRONGSEC (which is
8869 * disallowed by spec, but exists in deployed servers) use
8870 * the current filesystem's rpc_client and the user cred.
8871 */
8872 if (err == -NFS4ERR_WRONGSEC)
8873 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8874 flavors, false);
8875
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008876 switch (err) {
8877 case 0:
8878 case -NFS4ERR_WRONGSEC:
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008879 case -ENOTSUPP:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008880 goto out;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008881 default:
8882 err = nfs4_handle_exception(server, err, &exception);
8883 }
8884 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008885out:
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008886 return err;
8887}
8888
8889static int
8890nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
8891 struct nfs_fsinfo *info)
8892{
8893 int err;
8894 struct page *page;
Anna Schumaker367156d2013-09-25 17:02:48 -04008895 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008896 struct nfs4_secinfo_flavors *flavors;
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008897 struct nfs4_secinfo4 *secinfo;
8898 int i;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008899
8900 page = alloc_page(GFP_KERNEL);
8901 if (!page) {
8902 err = -ENOMEM;
8903 goto out;
8904 }
8905
8906 flavors = page_address(page);
8907 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
8908
8909 /*
8910 * Fall back on "guess and check" method if
8911 * the server doesn't support SECINFO_NO_NAME
8912 */
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008913 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008914 err = nfs4_find_root_sec(server, fhandle, info);
8915 goto out_freepage;
8916 }
8917 if (err)
8918 goto out_freepage;
8919
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008920 for (i = 0; i < flavors->num_flavors; i++) {
8921 secinfo = &flavors->flavors[i];
8922
8923 switch (secinfo->flavor) {
8924 case RPC_AUTH_NULL:
8925 case RPC_AUTH_UNIX:
8926 case RPC_AUTH_GSS:
8927 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
8928 &secinfo->flavor_info);
8929 break;
8930 default:
8931 flavor = RPC_AUTH_MAXFLAVOR;
8932 break;
8933 }
8934
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04008935 if (!nfs_auth_info_match(&server->auth_info, flavor))
8936 flavor = RPC_AUTH_MAXFLAVOR;
8937
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008938 if (flavor != RPC_AUTH_MAXFLAVOR) {
8939 err = nfs4_lookup_root_sec(server, fhandle,
8940 info, flavor);
8941 if (!err)
8942 break;
8943 }
8944 }
8945
8946 if (flavor == RPC_AUTH_MAXFLAVOR)
8947 err = -EPERM;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008948
8949out_freepage:
8950 put_page(page);
8951 if (err == -EACCES)
8952 return -EPERM;
8953out:
8954 return err;
8955}
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008956
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008957static int _nfs41_test_stateid(struct nfs_server *server,
8958 nfs4_stateid *stateid,
8959 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04008960{
8961 int status;
8962 struct nfs41_test_stateid_args args = {
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008963 .stateid = stateid,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008964 };
8965 struct nfs41_test_stateid_res res;
8966 struct rpc_message msg = {
8967 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
8968 .rpc_argp = &args,
8969 .rpc_resp = &res,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008970 .rpc_cred = cred,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008971 };
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008972 struct rpc_clnt *rpc_client = server->client;
8973
8974 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8975 &rpc_client, &msg);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008976
Chuck Lever38527b12012-07-11 16:30:23 -04008977 dprintk("NFS call test_stateid %p\n", stateid);
Chuck Levera9c92d62013-08-09 12:48:18 -04008978 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008979 nfs4_set_sequence_privileged(&args.seq_args);
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008980 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008981 &args.seq_args, &res.seq_res);
Chuck Lever38527b12012-07-11 16:30:23 -04008982 if (status != NFS_OK) {
8983 dprintk("NFS reply test_stateid: failed, %d\n", status);
Chuck Lever377e5072012-07-11 16:29:45 -04008984 return status;
Chuck Lever38527b12012-07-11 16:30:23 -04008985 }
8986 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
Chuck Lever377e5072012-07-11 16:29:45 -04008987 return -res.status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04008988}
8989
Trond Myklebust43912bb2016-09-22 13:38:56 -04008990static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
8991 int err, struct nfs4_exception *exception)
8992{
8993 exception->retry = 0;
8994 switch(err) {
8995 case -NFS4ERR_DELAY:
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04008996 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust43912bb2016-09-22 13:38:56 -04008997 nfs4_handle_exception(server, err, exception);
8998 break;
8999 case -NFS4ERR_BADSESSION:
9000 case -NFS4ERR_BADSLOT:
9001 case -NFS4ERR_BAD_HIGH_SLOT:
9002 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
9003 case -NFS4ERR_DEADSESSION:
9004 nfs4_do_handle_exception(server, err, exception);
9005 }
9006}
9007
Chuck Lever38527b12012-07-11 16:30:23 -04009008/**
9009 * nfs41_test_stateid - perform a TEST_STATEID operation
9010 *
9011 * @server: server / transport on which to perform the operation
9012 * @stateid: state ID to test
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009013 * @cred: credential
Chuck Lever38527b12012-07-11 16:30:23 -04009014 *
9015 * Returns NFS_OK if the server recognizes that "stateid" is valid.
9016 * Otherwise a negative NFS4ERR value is returned if the operation
9017 * failed or the state ID is not currently valid.
9018 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009019static int nfs41_test_stateid(struct nfs_server *server,
9020 nfs4_stateid *stateid,
9021 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04009022{
9023 struct nfs4_exception exception = { };
9024 int err;
9025 do {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009026 err = _nfs41_test_stateid(server, stateid, cred);
Trond Myklebust43912bb2016-09-22 13:38:56 -04009027 nfs4_handle_delay_or_session_error(server, err, &exception);
Bryan Schumaker7d974792011-06-02 14:59:08 -04009028 } while (exception.retry);
9029 return err;
9030}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009031
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009032struct nfs_free_stateid_data {
9033 struct nfs_server *server;
9034 struct nfs41_free_stateid_args args;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009035 struct nfs41_free_stateid_res res;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009036};
9037
9038static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
9039{
9040 struct nfs_free_stateid_data *data = calldata;
Anna Schumaker7981c8a2017-01-10 11:39:53 -05009041 nfs4_setup_sequence(data->server->nfs_client,
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009042 &data->args.seq_args,
9043 &data->res.seq_res,
9044 task);
9045}
9046
9047static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
9048{
9049 struct nfs_free_stateid_data *data = calldata;
9050
9051 nfs41_sequence_done(task, &data->res.seq_res);
9052
9053 switch (task->tk_status) {
9054 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10009055 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009056 rpc_restart_call_prepare(task);
9057 }
9058}
9059
9060static void nfs41_free_stateid_release(void *calldata)
9061{
9062 kfree(calldata);
9063}
9064
Trond Myklebust17f26b12013-08-21 15:48:42 -04009065static const struct rpc_call_ops nfs41_free_stateid_ops = {
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009066 .rpc_call_prepare = nfs41_free_stateid_prepare,
9067 .rpc_call_done = nfs41_free_stateid_done,
9068 .rpc_release = nfs41_free_stateid_release,
9069};
9070
9071static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009072 const nfs4_stateid *stateid,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009073 struct rpc_cred *cred,
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009074 bool privileged)
9075{
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009076 struct rpc_message msg = {
9077 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009078 .rpc_cred = cred,
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009079 };
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009080 struct rpc_task_setup task_setup = {
9081 .rpc_client = server->client,
9082 .rpc_message = &msg,
9083 .callback_ops = &nfs41_free_stateid_ops,
9084 .flags = RPC_TASK_ASYNC,
9085 };
9086 struct nfs_free_stateid_data *data;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009087
Weston Andros Adamson3787d502013-08-13 16:37:36 -04009088 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9089 &task_setup.rpc_client, &msg);
9090
Chuck Lever38527b12012-07-11 16:30:23 -04009091 dprintk("NFS call free_stateid %p\n", stateid);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009092 data = kmalloc(sizeof(*data), GFP_NOFS);
9093 if (!data)
9094 return ERR_PTR(-ENOMEM);
9095 data->server = server;
9096 nfs4_stateid_copy(&data->args.stateid, stateid);
9097
9098 task_setup.callback_data = data;
9099
9100 msg.rpc_argp = &data->args;
9101 msg.rpc_resp = &data->res;
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04009102 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009103 if (privileged)
9104 nfs4_set_sequence_privileged(&data->args.seq_args);
9105
9106 return rpc_run_task(&task_setup);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009107}
9108
Chuck Lever38527b12012-07-11 16:30:23 -04009109/**
9110 * nfs41_free_stateid - perform a FREE_STATEID operation
9111 *
9112 * @server: server / transport on which to perform the operation
9113 * @stateid: state ID to release
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009114 * @cred: credential
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009115 * @is_recovery: set to true if this call needs to be privileged
Chuck Lever38527b12012-07-11 16:30:23 -04009116 *
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009117 * Note: this function is always asynchronous.
Chuck Lever38527b12012-07-11 16:30:23 -04009118 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009119static int nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009120 const nfs4_stateid *stateid,
9121 struct rpc_cred *cred,
9122 bool is_recovery)
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009123{
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009124 struct rpc_task *task;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009125
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009126 task = _nfs41_free_stateid(server, stateid, cred, is_recovery);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009127 if (IS_ERR(task))
9128 return PTR_ERR(task);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009129 rpc_put_task(task);
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009130 return 0;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009131}
Trond Myklebust36281ca2012-03-04 18:13:56 -05009132
Jeff Laytonf1cdae82014-05-01 06:28:47 -04009133static void
9134nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009135{
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009136 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009137
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009138 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009139 nfs4_free_lock_state(server, lsp);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009140}
9141
Trond Myklebust36281ca2012-03-04 18:13:56 -05009142static bool nfs41_match_stateid(const nfs4_stateid *s1,
9143 const nfs4_stateid *s2)
9144{
Trond Myklebust93b717f2016-05-16 17:42:43 -04009145 if (s1->type != s2->type)
9146 return false;
9147
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009148 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009149 return false;
9150
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009151 if (s1->seqid == s2->seqid)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009152 return true;
Trond Myklebust36281ca2012-03-04 18:13:56 -05009153
Anna Schumaker045c5512017-01-11 16:59:48 -05009154 return s1->seqid == 0 || s2->seqid == 0;
Trond Myklebust36281ca2012-03-04 18:13:56 -05009155}
9156
Andy Adamson557134a2009-04-01 09:21:53 -04009157#endif /* CONFIG_NFS_V4_1 */
9158
Trond Myklebust36281ca2012-03-04 18:13:56 -05009159static bool nfs4_match_stateid(const nfs4_stateid *s1,
9160 const nfs4_stateid *s2)
9161{
Trond Myklebustf597c532012-03-04 18:13:56 -05009162 return nfs4_stateid_match(s1, s2);
Trond Myklebust36281ca2012-03-04 18:13:56 -05009163}
9164
9165
Trond Myklebust17280172012-03-11 13:11:00 -04009166static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009167 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009168 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009169 .recover_open = nfs4_open_reclaim,
9170 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04009171 .establish_clid = nfs4_init_clientid,
Chuck Lever05f4c352012-09-14 17:24:32 -04009172 .detect_trunking = nfs40_discover_server_trunking,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173};
9174
Andy Adamson591d71c2009-04-01 09:22:47 -04009175#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009176static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009177 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9178 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9179 .recover_open = nfs4_open_reclaim,
9180 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05009181 .establish_clid = nfs41_init_clientid,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05009182 .reclaim_complete = nfs41_proc_reclaim_complete,
Chuck Lever05f4c352012-09-14 17:24:32 -04009183 .detect_trunking = nfs41_discover_server_trunking,
Andy Adamson591d71c2009-04-01 09:22:47 -04009184};
9185#endif /* CONFIG_NFS_V4_1 */
9186
Trond Myklebust17280172012-03-11 13:11:00 -04009187static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009188 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009189 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03009190 .recover_open = nfs40_open_expired,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009191 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04009192 .establish_clid = nfs4_init_clientid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193};
9194
Andy Adamson591d71c2009-04-01 09:22:47 -04009195#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009196static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009197 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9198 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Bryan Schumakerf062eb62011-06-02 14:59:10 -04009199 .recover_open = nfs41_open_expired,
9200 .recover_lock = nfs41_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05009201 .establish_clid = nfs41_init_clientid,
Andy Adamson591d71c2009-04-01 09:22:47 -04009202};
9203#endif /* CONFIG_NFS_V4_1 */
9204
Trond Myklebust17280172012-03-11 13:11:00 -04009205static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009206 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04009207 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009208 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04009209};
9210
9211#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009212static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009213 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04009214 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009215 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04009216};
9217#endif
9218
Chuck Leverec011fe2013-10-17 14:12:39 -04009219static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009220 .get_locations = _nfs40_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009221 .fsid_present = _nfs40_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009222};
9223
9224#if defined(CONFIG_NFS_V4_1)
9225static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009226 .get_locations = _nfs41_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009227 .fsid_present = _nfs41_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009228};
9229#endif /* CONFIG_NFS_V4_1 */
9230
Trond Myklebust97dc1352010-06-16 09:52:26 -04009231static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
9232 .minor_version = 0,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009233 .init_caps = NFS_CAP_READDIRPLUS
9234 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009235 | NFS_CAP_POSIX_LOCK,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009236 .init_client = nfs40_init_client,
9237 .shutdown_client = nfs40_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009238 .match_stateid = nfs4_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009239 .find_root_sec = nfs4_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009240 .free_lock_state = nfs4_release_lockowner,
Trond Myklebust45870d62016-09-22 13:38:59 -04009241 .test_and_free_expired = nfs40_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009242 .alloc_seqid = nfs_alloc_seqid,
Chuck Lever9915ea72013-08-09 12:48:27 -04009243 .call_sync_ops = &nfs40_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009244 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
9245 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
9246 .state_renewal_ops = &nfs40_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009247 .mig_recovery_ops = &nfs40_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009248};
9249
9250#if defined(CONFIG_NFS_V4_1)
Trond Myklebust63f5f792015-01-23 19:19:25 -05009251static struct nfs_seqid *
9252nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
9253{
9254 return NULL;
9255}
9256
Trond Myklebust97dc1352010-06-16 09:52:26 -04009257static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
9258 .minor_version = 1,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009259 .init_caps = NFS_CAP_READDIRPLUS
9260 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust3b664862013-03-17 15:31:15 -04009261 | NFS_CAP_POSIX_LOCK
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04009262 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009263 | NFS_CAP_ATOMIC_OPEN_V1,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009264 .init_client = nfs41_init_client,
9265 .shutdown_client = nfs41_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009266 .match_stateid = nfs41_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009267 .find_root_sec = nfs41_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009268 .free_lock_state = nfs41_free_lock_state,
Trond Myklebust45870d62016-09-22 13:38:59 -04009269 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009270 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009271 .session_trunk = nfs4_test_session_trunk,
Chuck Lever9915ea72013-08-09 12:48:27 -04009272 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009273 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9274 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9275 .state_renewal_ops = &nfs41_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009276 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009277};
9278#endif
9279
Steve Dickson42c2c422013-05-22 12:50:38 -04009280#if defined(CONFIG_NFS_V4_2)
9281static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
9282 .minor_version = 2,
Bryan Schumaker70173102013-06-19 13:41:43 -04009283 .init_caps = NFS_CAP_READDIRPLUS
9284 | NFS_CAP_ATOMIC_OPEN
Bryan Schumaker70173102013-06-19 13:41:43 -04009285 | NFS_CAP_POSIX_LOCK
9286 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009287 | NFS_CAP_ATOMIC_OPEN_V1
Anna Schumakerf4ac1672014-11-25 13:18:15 -05009288 | NFS_CAP_ALLOCATE
Anna Schumaker2e724482013-05-21 16:53:03 -04009289 | NFS_CAP_COPY
Anna Schumaker624bd5b2014-11-25 13:18:16 -05009290 | NFS_CAP_DEALLOCATE
Trond Myklebust6c5a0d82015-06-27 11:45:46 -04009291 | NFS_CAP_SEEK
Peng Taoe5341f32015-09-26 02:24:35 +08009292 | NFS_CAP_LAYOUTSTATS
9293 | NFS_CAP_CLONE,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009294 .init_client = nfs41_init_client,
9295 .shutdown_client = nfs41_shutdown_client,
Steve Dickson42c2c422013-05-22 12:50:38 -04009296 .match_stateid = nfs41_match_stateid,
9297 .find_root_sec = nfs41_find_root_sec,
Bryan Schumaker70173102013-06-19 13:41:43 -04009298 .free_lock_state = nfs41_free_lock_state,
Chuck Lever9915ea72013-08-09 12:48:27 -04009299 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebust45870d62016-09-22 13:38:59 -04009300 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009301 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009302 .session_trunk = nfs4_test_session_trunk,
Steve Dickson42c2c422013-05-22 12:50:38 -04009303 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9304 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9305 .state_renewal_ops = &nfs41_state_renewal_ops,
Kinglong Mee18e3b732015-08-15 21:52:10 +08009306 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Steve Dickson42c2c422013-05-22 12:50:38 -04009307};
9308#endif
9309
Trond Myklebust97dc1352010-06-16 09:52:26 -04009310const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
9311 [0] = &nfs_v4_0_minor_ops,
9312#if defined(CONFIG_NFS_V4_1)
9313 [1] = &nfs_v4_1_minor_ops,
9314#endif
Steve Dickson42c2c422013-05-22 12:50:38 -04009315#if defined(CONFIG_NFS_V4_2)
9316 [2] = &nfs_v4_2_minor_ops,
9317#endif
Trond Myklebust97dc1352010-06-16 09:52:26 -04009318};
9319
Trond Myklebust13997822016-07-24 17:10:52 -04009320static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009321{
9322 ssize_t error, error2;
9323
9324 error = generic_listxattr(dentry, list, size);
9325 if (error < 0)
9326 return error;
9327 if (list) {
9328 list += error;
9329 size -= error;
9330 }
9331
9332 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size);
9333 if (error2 < 0)
9334 return error2;
9335 return error + error2;
9336}
9337
Trond Myklebust17f26b12013-08-21 15:48:42 -04009338static const struct inode_operations nfs4_dir_inode_operations = {
Bryan Schumaker73a79702012-07-16 16:39:12 -04009339 .create = nfs_create,
9340 .lookup = nfs_lookup,
9341 .atomic_open = nfs_atomic_open,
9342 .link = nfs_link,
9343 .unlink = nfs_unlink,
9344 .symlink = nfs_symlink,
9345 .mkdir = nfs_mkdir,
9346 .rmdir = nfs_rmdir,
9347 .mknod = nfs_mknod,
9348 .rename = nfs_rename,
9349 .permission = nfs_permission,
9350 .getattr = nfs_getattr,
9351 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009352 .listxattr = nfs4_listxattr,
Bryan Schumaker73a79702012-07-16 16:39:12 -04009353};
9354
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08009355static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009356 .permission = nfs_permission,
9357 .getattr = nfs_getattr,
9358 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009359 .listxattr = nfs4_listxattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009360};
9361
David Howells509de812006-08-22 20:06:11 -04009362const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363 .version = 4, /* protocol version */
9364 .dentry_ops = &nfs4_dentry_operations,
9365 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009366 .file_inode_ops = &nfs4_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -04009367 .file_ops = &nfs4_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009368 .getroot = nfs4_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -04009369 .submount = nfs4_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -04009370 .try_mount = nfs4_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009371 .getattr = nfs4_proc_getattr,
9372 .setattr = nfs4_proc_setattr,
9373 .lookup = nfs4_proc_lookup,
Jeff Layton5b5faaf2017-06-29 06:34:52 -07009374 .lookupp = nfs4_proc_lookupp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009375 .access = nfs4_proc_access,
9376 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009377 .create = nfs4_proc_create,
9378 .remove = nfs4_proc_remove,
9379 .unlink_setup = nfs4_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -04009380 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009381 .unlink_done = nfs4_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -04009382 .rename_setup = nfs4_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04009383 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -04009384 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009385 .link = nfs4_proc_link,
9386 .symlink = nfs4_proc_symlink,
9387 .mkdir = nfs4_proc_mkdir,
9388 .rmdir = nfs4_proc_remove,
9389 .readdir = nfs4_proc_readdir,
9390 .mknod = nfs4_proc_mknod,
9391 .statfs = nfs4_proc_statfs,
9392 .fsinfo = nfs4_proc_fsinfo,
9393 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04009394 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009395 .decode_dirent = nfs4_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -04009396 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009397 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05009398 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009399 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009400 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009401 .commit_setup = nfs4_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -04009402 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009403 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009404 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00009405 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04009406 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04009407 .open_context = nfs4_atomic_open,
Bryan Schumaker011e2a72012-06-20 15:53:43 -04009408 .have_delegation = nfs4_have_delegation,
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04009409 .return_delegation = nfs4_inode_return_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -04009410 .alloc_client = nfs4_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +00009411 .init_client = nfs4_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -04009412 .free_client = nfs4_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -04009413 .create_server = nfs4_create_server,
9414 .clone_server = nfs_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009415};
9416
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009417static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +01009418 .name = XATTR_NAME_NFSV4_ACL,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009419 .list = nfs4_xattr_list_nfs4_acl,
9420 .get = nfs4_xattr_get_nfs4_acl,
9421 .set = nfs4_xattr_set_nfs4_acl,
9422};
9423
9424const struct xattr_handler *nfs4_xattr_handlers[] = {
9425 &nfs4_xattr_nfs4_acl_handler,
David Quigleyc9bccef2013-05-22 12:50:45 -04009426#ifdef CONFIG_NFS_V4_SECURITY_LABEL
9427 &nfs4_xattr_nfs4_label_handler,
9428#endif
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009429 NULL
9430};
9431
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432/*
9433 * Local variables:
9434 * c-basic-offset: 8
9435 * End:
9436 */