blob: 401ea6e4cab8687060a656ea2dd4ce0f8dc09a39 [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>
Jeff Laytonfeaff8e2015-05-12 15:48:10 -040041#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/string.h>
Trond Myklebust652f89f2011-12-09 19:05:58 -050043#include <linux/ratelimit.h>
44#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/sunrpc/clnt.h>
47#include <linux/nfs.h>
48#include <linux/nfs4.h>
49#include <linux/nfs_fs.h>
50#include <linux/nfs_page.h>
Bryan Schumaker9b7160c2011-04-13 14:31:30 -040051#include <linux/nfs_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070053#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040054#include <linux/module.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000055#include <linux/xattr.h>
Andy Adamsonc7a360b2011-01-25 19:15:32 -050056#include <linux/utsname.h>
Jeff Laytond3103102011-12-01 22:44:39 +010057#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Trond Myklebust4ce79712005-06-22 17:16:21 +000059#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050061#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050062#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040063#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040064#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040065#include "netns.h"
Anna Schumaker40c64c22015-04-15 13:00:05 -040066#include "nfs4idmap.h"
Trond Myklebust73e39aa2012-11-26 12:49:34 -050067#include "nfs4session.h"
David Howellsde242c02012-12-20 21:52:38 +000068#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Trond Myklebustc6d01c62013-08-09 11:51:26 -040070#include "nfs4trace.h"
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define NFSDBG_FACILITY NFSDBG_PROC
73
Trond Myklebust2066fe82006-09-15 08:30:46 -040074#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define NFS4_POLL_RETRY_MAX (15*HZ)
76
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +020077/* file attributes which can be mapped to nfs attributes */
78#define NFS4_VALID_ATTRS (ATTR_MODE \
79 | ATTR_UID \
80 | ATTR_GID \
81 | ATTR_SIZE \
82 | ATTR_ATIME \
83 | ATTR_MTIME \
84 | ATTR_CTIME \
85 | ATTR_ATIME_SET \
86 | ATTR_MTIME_SET)
87
Trond Myklebustcdd4e682006-01-03 09:55:12 +010088struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010089static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080090static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Chuck Lever81934dd2012-03-01 17:01:57 -050092static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
David Quigley1775fd32013-05-22 12:50:42 -040093static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label);
94static 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 -040095static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
96 struct nfs_fattr *fattr, struct iattr *sattr,
David Quigley1775fd32013-05-22 12:50:42 -040097 struct nfs4_state *state, struct nfs4_label *ilabel,
98 struct nfs4_label *olabel);
Bryan Schumakerf062eb62011-06-02 14:59:10 -040099#ifdef CONFIG_NFS_V4_1
Trond Myklebustab7cb0d2013-05-20 11:20:27 -0400100static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
101 struct rpc_cred *);
Trond Myklebustf0b0bf82016-09-22 13:39:04 -0400102static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *,
103 struct rpc_cred *, bool);
Bryan Schumakerf062eb62011-06-02 14:59:10 -0400104#endif
David Quigleyaa9c2662013-05-22 12:50:44 -0400105
106#ifdef CONFIG_NFS_V4_SECURITY_LABEL
107static inline struct nfs4_label *
108nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
109 struct iattr *sattr, struct nfs4_label *label)
110{
111 int err;
112
113 if (label == NULL)
114 return NULL;
115
116 if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
117 return NULL;
118
David Quigleyaa9c2662013-05-22 12:50:44 -0400119 err = security_dentry_init_security(dentry, sattr->ia_mode,
120 &dentry->d_name, (void **)&label->label, &label->len);
121 if (err == 0)
122 return label;
123
124 return NULL;
125}
126static inline void
127nfs4_label_release_security(struct nfs4_label *label)
128{
129 if (label)
130 security_release_secctx(label->label, label->len);
131}
132static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
133{
134 if (label)
135 return server->attr_bitmask;
136
137 return server->attr_bitmask_nl;
138}
139#else
140static inline struct nfs4_label *
141nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
142 struct iattr *sattr, struct nfs4_label *l)
143{ return NULL; }
144static inline void
145nfs4_label_release_security(struct nfs4_label *label)
146{ return; }
147static inline u32 *
148nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
149{ return server->attr_bitmask; }
150#endif
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -0500153static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Trond Myklebust52567b02009-10-23 14:46:42 -0400155 if (err >= -1000)
156 return err;
157 switch (err) {
158 case -NFS4ERR_RESOURCE:
Weston Andros Adamson30005122013-02-28 20:30:10 -0500159 case -NFS4ERR_LAYOUTTRYLATER:
160 case -NFS4ERR_RECALLCONFLICT:
Trond Myklebust52567b02009-10-23 14:46:42 -0400161 return -EREMOTEIO;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000162 case -NFS4ERR_WRONGSEC:
Weston Andros Adamson88975382013-08-13 16:37:38 -0400163 case -NFS4ERR_WRONG_CRED:
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000164 return -EPERM;
Trond Myklebust3ddeb7c2011-02-22 15:44:31 -0800165 case -NFS4ERR_BADOWNER:
166 case -NFS4ERR_BADNAME:
167 return -EINVAL;
Trond Myklebustfb13bfa2012-05-28 11:36:28 -0400168 case -NFS4ERR_SHARE_DENIED:
169 return -EACCES;
Steve Dicksonf25efd82012-06-06 14:12:07 -0400170 case -NFS4ERR_MINOR_VERS_MISMATCH:
171 return -EPROTONOSUPPORT;
Trond Myklebust6e3cf242013-03-23 15:22:45 -0400172 case -NFS4ERR_FILE_OPEN:
173 return -EBUSY;
Trond Myklebust52567b02009-10-23 14:46:42 -0400174 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700176 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -0400177 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Trond Myklebust52567b02009-10-23 14:46:42 -0400179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/*
183 * This is our standard bitmap for GETATTR requests.
184 */
Trond Myklebust1549210f2012-06-05 09:16:47 -0400185const u32 nfs4_fattr_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 FATTR4_WORD0_TYPE
187 | FATTR4_WORD0_CHANGE
188 | FATTR4_WORD0_SIZE
189 | FATTR4_WORD0_FSID
190 | FATTR4_WORD0_FILEID,
191 FATTR4_WORD1_MODE
192 | FATTR4_WORD1_NUMLINKS
193 | FATTR4_WORD1_OWNER
194 | FATTR4_WORD1_OWNER_GROUP
195 | FATTR4_WORD1_RAWDEV
196 | FATTR4_WORD1_SPACE_USED
197 | FATTR4_WORD1_TIME_ACCESS
198 | FATTR4_WORD1_TIME_METADATA
Anna Schumakerea96d1e2015-04-03 14:35:59 -0400199 | FATTR4_WORD1_TIME_MODIFY
200 | FATTR4_WORD1_MOUNTED_ON_FILEID,
David Quigleyaa9c2662013-05-22 12:50:44 -0400201#ifdef CONFIG_NFS_V4_SECURITY_LABEL
202 FATTR4_WORD2_SECURITY_LABEL
203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204};
205
Trond Myklebust1549210f2012-06-05 09:16:47 -0400206static const u32 nfs4_pnfs_open_bitmap[3] = {
207 FATTR4_WORD0_TYPE
208 | FATTR4_WORD0_CHANGE
209 | FATTR4_WORD0_SIZE
210 | FATTR4_WORD0_FSID
211 | FATTR4_WORD0_FILEID,
212 FATTR4_WORD1_MODE
213 | FATTR4_WORD1_NUMLINKS
214 | FATTR4_WORD1_OWNER
215 | FATTR4_WORD1_OWNER_GROUP
216 | FATTR4_WORD1_RAWDEV
217 | FATTR4_WORD1_SPACE_USED
218 | FATTR4_WORD1_TIME_ACCESS
219 | FATTR4_WORD1_TIME_METADATA
220 | FATTR4_WORD1_TIME_MODIFY,
221 FATTR4_WORD2_MDSTHRESHOLD
Trond Myklebust95864c92015-12-26 15:06:03 -0500222#ifdef CONFIG_NFS_V4_SECURITY_LABEL
223 | FATTR4_WORD2_SECURITY_LABEL
224#endif
Trond Myklebust1549210f2012-06-05 09:16:47 -0400225};
226
Andy Adamsone23008e2012-10-02 21:07:32 -0400227static const u32 nfs4_open_noattr_bitmap[3] = {
228 FATTR4_WORD0_TYPE
229 | FATTR4_WORD0_CHANGE
230 | FATTR4_WORD0_FILEID,
231};
232
David Quigleya09df2c2013-05-22 12:50:41 -0400233const u32 nfs4_statfs_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 FATTR4_WORD0_FILES_AVAIL
235 | FATTR4_WORD0_FILES_FREE
236 | FATTR4_WORD0_FILES_TOTAL,
237 FATTR4_WORD1_SPACE_AVAIL
238 | FATTR4_WORD1_SPACE_FREE
239 | FATTR4_WORD1_SPACE_TOTAL
240};
241
David Quigleya09df2c2013-05-22 12:50:41 -0400242const u32 nfs4_pathconf_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 FATTR4_WORD0_MAXLINK
244 | FATTR4_WORD0_MAXNAME,
245 0
246};
247
Fred Isamandae100c2011-07-30 20:52:37 -0400248const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 | FATTR4_WORD0_MAXREAD
250 | FATTR4_WORD0_MAXWRITE
251 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700252 FATTR4_WORD1_TIME_DELTA
Fred Isamandae100c2011-07-30 20:52:37 -0400253 | FATTR4_WORD1_FS_LAYOUT_TYPES,
254 FATTR4_WORD2_LAYOUT_BLKSIZE
Peng Tao2a92ee92015-09-26 02:24:37 +0800255 | FATTR4_WORD2_CLONE_BLKSIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256};
257
David Quigleya09df2c2013-05-22 12:50:41 -0400258const u32 nfs4_fs_locations_bitmap[3] = {
Manoj Naik830b8e32006-06-09 09:34:25 -0400259 FATTR4_WORD0_TYPE
260 | FATTR4_WORD0_CHANGE
261 | FATTR4_WORD0_SIZE
262 | FATTR4_WORD0_FSID
263 | FATTR4_WORD0_FILEID
264 | FATTR4_WORD0_FS_LOCATIONS,
265 FATTR4_WORD1_MODE
266 | FATTR4_WORD1_NUMLINKS
267 | FATTR4_WORD1_OWNER
268 | FATTR4_WORD1_OWNER_GROUP
269 | FATTR4_WORD1_RAWDEV
270 | FATTR4_WORD1_SPACE_USED
271 | FATTR4_WORD1_TIME_ACCESS
272 | FATTR4_WORD1_TIME_METADATA
273 | FATTR4_WORD1_TIME_MODIFY
David Quigleya09df2c2013-05-22 12:50:41 -0400274 | FATTR4_WORD1_MOUNTED_ON_FILEID,
Manoj Naik830b8e32006-06-09 09:34:25 -0400275};
276
Al Virobc4785c2006-10-19 23:28:51 -0700277static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct nfs4_readdir_arg *readdir)
279{
Al Viro0dbb4c62006-10-19 23:28:49 -0700280 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000283 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
285 return;
286 }
287
288 readdir->cookie = 0;
289 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
290 if (cookie == 2)
291 return;
292
293 /*
294 * NFSv4 servers do not return entries for '.' and '..'
295 * Therefore, we fake these entries here. We let '.'
296 * have cookie 0 and '..' have cookie 1. Note that
297 * when talking to the server, we always send cookie 0
298 * instead of 1 or 2.
299 */
Cong Wang2b86ce22011-11-25 23:14:33 +0800300 start = p = kmap_atomic(*readdir->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (cookie == 0) {
303 *p++ = xdr_one; /* next */
304 *p++ = xdr_zero; /* cookie, first word */
305 *p++ = xdr_one; /* cookie, second word */
306 *p++ = xdr_one; /* entry len */
307 memcpy(p, ".\0\0\0", 4); /* entry */
308 p++;
309 *p++ = xdr_one; /* bitmap length */
310 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
311 *p++ = htonl(8); /* attribute buffer length */
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 */
322 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
323 *p++ = htonl(8); /* attribute buffer length */
David Howells2b0143b2015-03-17 22:25:59 +0000324 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 readdir->pgbase = (char *)p - (char *)start;
327 readdir->count -= readdir->pgbase;
Cong Wang2b86ce22011-11-25 23:14:33 +0800328 kunmap_atomic(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Trond Myklebust26d36302016-09-22 13:39:05 -0400331static void nfs4_test_and_free_stateid(struct nfs_server *server,
332 nfs4_stateid *stateid,
333 struct rpc_cred *cred)
334{
335 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
336
337 ops->test_and_free_expired(server, stateid, cred);
338}
339
340static void __nfs4_free_revoked_stateid(struct nfs_server *server,
341 nfs4_stateid *stateid,
342 struct rpc_cred *cred)
343{
344 stateid->type = NFS4_REVOKED_STATEID_TYPE;
345 nfs4_test_and_free_stateid(server, stateid, cred);
346}
347
348static void nfs4_free_revoked_stateid(struct nfs_server *server,
349 const nfs4_stateid *stateid,
350 struct rpc_cred *cred)
351{
352 nfs4_stateid tmp;
353
354 nfs4_stateid_copy(&tmp, stateid);
355 __nfs4_free_revoked_stateid(server, &tmp, cred);
356}
357
NeilBrown8478eaa2014-09-18 16:09:27 +1000358static long nfs4_update_delay(long *timeout)
359{
360 long ret;
361 if (!timeout)
362 return NFS4_POLL_RETRY_MAX;
363 if (*timeout <= 0)
364 *timeout = NFS4_POLL_RETRY_MIN;
365 if (*timeout > NFS4_POLL_RETRY_MAX)
366 *timeout = NFS4_POLL_RETRY_MAX;
367 ret = *timeout;
368 *timeout <<= 1;
369 return ret;
370}
371
Trond Myklebust65de8722008-12-23 15:21:44 -0500372static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
373{
374 int res = 0;
375
376 might_sleep();
377
NeilBrown8478eaa2014-09-18 16:09:27 +1000378 freezable_schedule_timeout_killable_unsafe(
379 nfs4_update_delay(timeout));
Trond Myklebust65de8722008-12-23 15:21:44 -0500380 if (fatal_signal_pending(current))
381 res = -ERESTARTSYS;
Trond Myklebust65de8722008-12-23 15:21:44 -0500382 return res;
383}
384
385/* This is the error handling routine for processes that are allowed
386 * to sleep.
387 */
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400388static int nfs4_do_handle_exception(struct nfs_server *server,
389 int errorcode, struct nfs4_exception *exception)
Trond Myklebust65de8722008-12-23 15:21:44 -0500390{
391 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500392 struct nfs4_state *state = exception->state;
Trond Myklebust8487c472016-06-26 08:44:35 -0400393 const nfs4_stateid *stateid = exception->stateid;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500394 struct inode *inode = exception->inode;
Trond Myklebust65de8722008-12-23 15:21:44 -0500395 int ret = errorcode;
396
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400397 exception->delay = 0;
398 exception->recovering = 0;
Trond Myklebust65de8722008-12-23 15:21:44 -0500399 exception->retry = 0;
Trond Myklebust272289a2016-09-22 13:39:15 -0400400
401 if (stateid == NULL && state != NULL)
402 stateid = &state->stateid;
403
Trond Myklebust65de8722008-12-23 15:21:44 -0500404 switch(errorcode) {
405 case 0:
406 return 0;
Trond Myklebust5ba12442015-06-16 11:26:35 -0400407 case -NFS4ERR_DELEG_REVOKED:
408 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust272289a2016-09-22 13:39:15 -0400409 case -NFS4ERR_EXPIRED:
Trond Myklebust5ba12442015-06-16 11:26:35 -0400410 case -NFS4ERR_BAD_STATEID:
Trond Myklebust272289a2016-09-22 13:39:15 -0400411 if (inode != NULL && stateid != NULL) {
412 nfs_inode_find_state_and_recover(inode,
413 stateid);
414 goto wait_on_recovery;
415 }
416 case -NFS4ERR_OPENMODE:
Trond Myklebust8487c472016-06-26 08:44:35 -0400417 if (inode) {
418 int err;
419
420 err = nfs_async_inode_return_delegation(inode,
421 stateid);
422 if (err == 0)
423 goto wait_on_recovery;
424 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
425 exception->retry = 1;
426 break;
427 }
428 }
Trond Myklebust3114ea72012-03-07 16:39:06 -0500429 if (state == NULL)
430 break;
Trond Myklebust5d422302013-03-14 16:57:48 -0400431 ret = nfs4_schedule_stateid_recovery(server, state);
432 if (ret < 0)
433 break;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500434 goto wait_on_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500435 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500436 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500437 nfs4_schedule_lease_recovery(clp);
438 goto wait_on_recovery;
Chuck Lever519ae252013-10-17 14:13:19 -0400439 case -NFS4ERR_MOVED:
440 ret = nfs4_schedule_migration_recovery(server);
441 if (ret < 0)
442 break;
443 goto wait_on_recovery;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -0400444 case -NFS4ERR_LEASE_MOVED:
445 nfs4_schedule_lease_moved_recovery(clp);
446 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500447#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400448 case -NFS4ERR_BADSESSION:
449 case -NFS4ERR_BADSLOT:
450 case -NFS4ERR_BAD_HIGH_SLOT:
451 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
452 case -NFS4ERR_DEADSESSION:
453 case -NFS4ERR_SEQ_FALSE_RETRY:
454 case -NFS4ERR_SEQ_MISORDERED:
455 dprintk("%s ERROR: %d Reset session\n", __func__,
456 errorcode);
Trond Myklebust9f594792012-05-27 13:02:53 -0400457 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
Bryan Schumaker399f11c2012-10-30 16:06:35 -0400458 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500459#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500460 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500461 if (exception->timeout > HZ) {
462 /* We have retried a decent amount, time to
463 * fail
464 */
465 ret = -EBUSY;
466 break;
467 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500468 case -NFS4ERR_DELAY:
Trond Myklebust2598ed32015-09-20 16:10:18 -0400469 nfs_inc_server_stats(server, NFSIOS_DELAY);
470 case -NFS4ERR_GRACE:
Trond Myklebuste85d7ee2016-07-14 18:46:24 -0400471 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -0400472 case -NFS4ERR_RECALLCONFLICT:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400473 exception->delay = 1;
474 return 0;
475
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400476 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust65de8722008-12-23 15:21:44 -0500477 case -NFS4ERR_OLD_STATEID:
478 exception->retry = 1;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800479 break;
480 case -NFS4ERR_BADOWNER:
481 /* The following works around a Linux server bug! */
482 case -NFS4ERR_BADNAME:
483 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
484 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
485 exception->retry = 1;
486 printk(KERN_WARNING "NFS: v4 server %s "
487 "does not accept raw "
488 "uid/gids. "
489 "Reenabling the idmapper.\n",
490 server->nfs_client->cl_hostname);
491 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500492 }
493 /* We failed to handle the error */
494 return nfs4_map_errors(ret);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500495wait_on_recovery:
Trond Myklebustb3c2aa02015-09-20 14:32:45 -0400496 exception->recovering = 1;
497 return 0;
498}
499
500/* This is the error handling routine for processes that are allowed
501 * to sleep.
502 */
503int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
504{
505 struct nfs_client *clp = server->nfs_client;
506 int ret;
507
508 ret = nfs4_do_handle_exception(server, errorcode, exception);
509 if (exception->delay) {
510 ret = nfs4_delay(server->client, &exception->timeout);
511 goto out_retry;
512 }
513 if (exception->recovering) {
514 ret = nfs4_wait_clnt_recover(clp);
515 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
516 return -EIO;
517 goto out_retry;
518 }
519 return ret;
520out_retry:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500521 if (ret == 0)
522 exception->retry = 1;
523 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500524}
525
Trond Myklebust037fc982015-09-20 15:51:00 -0400526static int
527nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
528 int errorcode, struct nfs4_exception *exception)
529{
530 struct nfs_client *clp = server->nfs_client;
531 int ret;
532
533 ret = nfs4_do_handle_exception(server, errorcode, exception);
534 if (exception->delay) {
535 rpc_delay(task, nfs4_update_delay(&exception->timeout));
536 goto out_retry;
537 }
538 if (exception->recovering) {
539 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
540 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
541 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
542 goto out_retry;
543 }
544 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
545 ret = -EIO;
546 return ret;
547out_retry:
548 if (ret == 0)
549 exception->retry = 1;
550 return ret;
551}
552
553static int
554nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
555 struct nfs4_state *state, long *timeout)
556{
557 struct nfs4_exception exception = {
558 .state = state,
559 };
560
561 if (task->tk_status >= 0)
562 return 0;
563 if (timeout)
564 exception.timeout = *timeout;
565 task->tk_status = nfs4_async_handle_exception(task, server,
566 task->tk_status,
567 &exception);
568 if (exception.delay && timeout)
569 *timeout = exception.timeout;
570 if (exception.retry)
571 return -EAGAIN;
572 return 0;
573}
574
Weston Andros Adamsona5250de2013-09-03 15:18:49 -0400575/*
576 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
577 * or 'false' otherwise.
578 */
579static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
580{
581 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
582
583 if (flavor == RPC_AUTH_GSS_KRB5I ||
584 flavor == RPC_AUTH_GSS_KRB5P)
585 return true;
586
587 return false;
588}
Trond Myklebust65de8722008-12-23 15:21:44 -0500589
Trond Myklebust452e9352010-07-31 14:29:06 -0400590static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 spin_lock(&clp->cl_lock);
593 if (time_before(clp->cl_last_renewal,timestamp))
594 clp->cl_last_renewal = timestamp;
595 spin_unlock(&clp->cl_lock);
596}
597
Trond Myklebust452e9352010-07-31 14:29:06 -0400598static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
599{
Trond Myklebustbe824162015-07-05 14:50:46 -0400600 struct nfs_client *clp = server->nfs_client;
601
602 if (!nfs4_has_session(clp))
603 do_renew_lease(clp, timestamp);
Trond Myklebust452e9352010-07-31 14:29:06 -0400604}
605
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400606struct nfs4_call_sync_data {
607 const struct nfs_server *seq_server;
608 struct nfs4_sequence_args *seq_args;
609 struct nfs4_sequence_res *seq_res;
610};
611
Trond Myklebustbe3a5d22015-06-23 19:51:55 +0800612void nfs4_init_sequence(struct nfs4_sequence_args *args,
613 struct nfs4_sequence_res *res, int cache_reply)
Chuck Levera9c92d62013-08-09 12:48:18 -0400614{
615 args->sa_slot = NULL;
616 args->sa_cache_this = cache_reply;
617 args->sa_privileged = 0;
618
619 res->sr_slot = NULL;
620}
621
622static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args)
623{
624 args->sa_privileged = 1;
625}
626
Peng Taocb04ad22014-06-11 05:24:15 +0800627int nfs40_setup_sequence(struct nfs4_slot_table *tbl,
628 struct nfs4_sequence_args *args,
629 struct nfs4_sequence_res *res,
630 struct rpc_task *task)
Chuck Lever3bd23842013-08-09 12:49:19 -0400631{
Chuck Lever3bd23842013-08-09 12:49:19 -0400632 struct nfs4_slot *slot;
633
634 /* slot already allocated? */
635 if (res->sr_slot != NULL)
636 goto out_start;
637
638 spin_lock(&tbl->slot_tbl_lock);
639 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
640 goto out_sleep;
641
642 slot = nfs4_alloc_slot(tbl);
643 if (IS_ERR(slot)) {
644 if (slot == ERR_PTR(-ENOMEM))
645 task->tk_timeout = HZ >> 2;
646 goto out_sleep;
647 }
648 spin_unlock(&tbl->slot_tbl_lock);
649
Trond Myklebust0a014a42016-09-22 13:38:51 -0400650 slot->privileged = args->sa_privileged ? 1 : 0;
Chuck Lever3bd23842013-08-09 12:49:19 -0400651 args->sa_slot = slot;
652 res->sr_slot = slot;
653
654out_start:
655 rpc_call_start(task);
656 return 0;
657
658out_sleep:
659 if (args->sa_privileged)
660 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
661 NULL, RPC_PRIORITY_PRIVILEGED);
662 else
663 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
664 spin_unlock(&tbl->slot_tbl_lock);
665 return -EAGAIN;
666}
Peng Taocb04ad22014-06-11 05:24:15 +0800667EXPORT_SYMBOL_GPL(nfs40_setup_sequence);
Chuck Lever3bd23842013-08-09 12:49:19 -0400668
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400669static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
Chuck Lever3bd23842013-08-09 12:49:19 -0400670{
671 struct nfs4_slot *slot = res->sr_slot;
672 struct nfs4_slot_table *tbl;
673
Chuck Lever3bd23842013-08-09 12:49:19 -0400674 tbl = slot->table;
675 spin_lock(&tbl->slot_tbl_lock);
676 if (!nfs41_wake_and_assign_slot(tbl, slot))
677 nfs4_free_slot(tbl, slot);
678 spin_unlock(&tbl->slot_tbl_lock);
679
680 res->sr_slot = NULL;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400681}
682
683static int nfs40_sequence_done(struct rpc_task *task,
684 struct nfs4_sequence_res *res)
685{
686 if (res->sr_slot != NULL)
687 nfs40_sequence_free_slot(res);
Chuck Lever3bd23842013-08-09 12:49:19 -0400688 return 1;
689}
690
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400691#if defined(CONFIG_NFS_V4_1)
692
Trond Myklebustd185a332010-06-16 09:52:25 -0400693static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400694{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500695 struct nfs4_session *session;
Andy Adamson13615872009-04-01 09:22:17 -0400696 struct nfs4_slot_table *tbl;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500697 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500698 bool send_new_highest_used_slotid = false;
Andy Adamson13615872009-04-01 09:22:17 -0400699
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500700 tbl = slot->table;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500701 session = tbl->session;
Andy Adamsonea028ac2009-12-04 15:55:38 -0500702
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400703 /* Bump the slot sequence number */
704 if (slot->seq_done)
705 slot->seq_nr++;
706 slot->seq_done = 0;
707
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500708 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500709 /* Be nice to the server: try to ensure that the last transmitted
710 * value for highest_user_slotid <= target_highest_slotid
711 */
712 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
713 send_new_highest_used_slotid = true;
714
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500715 if (nfs41_wake_and_assign_slot(tbl, slot)) {
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500716 send_new_highest_used_slotid = false;
717 goto out_unlock;
718 }
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500719 nfs4_free_slot(tbl, slot);
Trond Myklebustc10e4492012-11-26 16:16:54 -0500720
721 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
722 send_new_highest_used_slotid = false;
Trond Myklebustb75ad4c2012-11-29 17:27:47 -0500723out_unlock:
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500724 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400725 res->sr_slot = NULL;
Trond Myklebustc10e4492012-11-26 16:16:54 -0500726 if (send_new_highest_used_slotid)
Anna Schumaker3f10a6a2015-07-13 14:01:31 -0400727 nfs41_notify_server(session->clp);
Trond Myklebust045d2a62016-08-28 13:25:43 -0400728 if (waitqueue_active(&tbl->slot_waitq))
729 wake_up_all(&tbl->slot_waitq);
Andy Adamson13615872009-04-01 09:22:17 -0400730}
731
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400732static int nfs41_sequence_process(struct rpc_task *task,
733 struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400734{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500735 struct nfs4_session *session;
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500736 struct nfs4_slot *slot = res->sr_slot;
Trond Myklebust14516c32010-07-31 14:29:06 -0400737 struct nfs_client *clp;
Trond Myklebustac20d162012-12-15 15:36:07 -0500738 bool interrupted = false;
Trond Myklebust85563072012-12-11 10:31:12 -0500739 int ret = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400740
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500741 if (slot == NULL)
742 goto out_noaction;
Bryan Schumaker468f8612011-04-18 15:57:32 -0400743 /* don't increment the sequence number if the task wasn't sent */
744 if (!RPC_WAS_SENT(task))
Andy Adamsonb0df8062009-04-01 09:22:18 -0400745 goto out;
746
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500747 session = slot->table->session;
Trond Myklebust933602e2012-11-16 12:12:38 -0500748
Trond Myklebustac20d162012-12-15 15:36:07 -0500749 if (slot->interrupted) {
750 slot->interrupted = 0;
751 interrupted = true;
752 }
753
Trond Myklebust2f92ae32013-08-14 17:58:28 -0400754 trace_nfs4_sequence_done(session, res);
Andy Adamson691daf32009-12-04 15:55:39 -0500755 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400756 switch (res->sr_status) {
757 case 0:
Olga Kornievskaiaa8658802016-09-23 17:24:03 -0400758 /* If previous op on slot was interrupted and we reused
759 * the seq# and got a reply from the cache, then retry
760 */
761 if (task->tk_status == -EREMOTEIO && interrupted) {
762 ++slot->seq_nr;
763 goto retry_nowait;
764 }
Andy Adamsonb0df8062009-04-01 09:22:18 -0400765 /* Update the slot's sequence and clientid lease timer */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400766 slot->seq_done = 1;
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500767 clp = session->clp;
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500768 do_renew_lease(clp, res->sr_timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500769 /* Check sequence flags */
Trond Myklebust0a014a42016-09-22 13:38:51 -0400770 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
771 !!slot->privileged);
Trond Myklebust464ee9f2012-11-20 12:49:27 -0500772 nfs41_update_target_slotid(slot->table, slot, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400773 break;
Trond Myklebustac20d162012-12-15 15:36:07 -0500774 case 1:
775 /*
776 * sr_status remains 1 if an RPC level error occurred.
777 * The server may or may not have processed the sequence
778 * operation..
779 * Mark the slot as having hosted an interrupted RPC call.
780 */
781 slot->interrupted = 1;
782 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400783 case -NFS4ERR_DELAY:
784 /* The server detected a resend of the RPC call and
785 * returned NFS4ERR_DELAY as per Section 2.10.6.2
786 * of RFC5661.
787 */
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500788 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400789 __func__,
Trond Myklebustdf2fabf2012-11-16 12:45:06 -0500790 slot->slot_nr,
Trond Myklebust933602e2012-11-16 12:12:38 -0500791 slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400792 goto out_retry;
Trond Myklebust85563072012-12-11 10:31:12 -0500793 case -NFS4ERR_BADSLOT:
794 /*
795 * The slot id we used was probably retired. Try again
796 * using a different slot id.
797 */
Trond Myklebuste8794442012-12-15 13:56:18 -0500798 goto retry_nowait;
799 case -NFS4ERR_SEQ_MISORDERED:
800 /*
Trond Myklebustac20d162012-12-15 15:36:07 -0500801 * Was the last operation on this sequence interrupted?
802 * If so, retry after bumping the sequence number.
803 */
804 if (interrupted) {
805 ++slot->seq_nr;
806 goto retry_nowait;
807 }
808 /*
Trond Myklebuste8794442012-12-15 13:56:18 -0500809 * Could this slot have been previously retired?
810 * If so, then the server may be expecting seq_nr = 1!
811 */
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500812 if (slot->seq_nr != 1) {
813 slot->seq_nr = 1;
814 goto retry_nowait;
815 }
816 break;
Trond Myklebuste8794442012-12-15 13:56:18 -0500817 case -NFS4ERR_SEQ_FALSE_RETRY:
818 ++slot->seq_nr;
819 goto retry_nowait;
Trond Myklebust14516c32010-07-31 14:29:06 -0400820 default:
821 /* Just update the slot sequence no. */
Trond Myklebust07e8dcb2016-08-28 10:28:25 -0400822 slot->seq_done = 1;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400823 }
824out:
825 /* The session may be reset by one of the error handlers. */
826 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebusta13ce7c2014-01-29 12:24:03 -0500827out_noaction:
Trond Myklebust85563072012-12-11 10:31:12 -0500828 return ret;
Trond Myklebuste8794442012-12-15 13:56:18 -0500829retry_nowait:
830 if (rpc_restart_call_prepare(task)) {
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400831 nfs41_sequence_free_slot(res);
Trond Myklebuste8794442012-12-15 13:56:18 -0500832 task->tk_status = 0;
833 ret = 0;
834 }
835 goto out;
Trond Myklebust14516c32010-07-31 14:29:06 -0400836out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400837 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400838 goto out;
839 rpc_delay(task, NFS4_POLL_RETRY_MAX);
840 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400841}
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400842
843int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
844{
845 if (!nfs41_sequence_process(task, res))
846 return 0;
847 if (res->sr_slot != NULL)
848 nfs41_sequence_free_slot(res);
849 return 1;
850
851}
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500852EXPORT_SYMBOL_GPL(nfs41_sequence_done);
Andy Adamsonb0df8062009-04-01 09:22:18 -0400853
Trond Myklebust2e80dbe2016-08-28 11:50:26 -0400854static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
855{
856 if (res->sr_slot == NULL)
857 return 1;
858 if (res->sr_slot->table->session != NULL)
859 return nfs41_sequence_process(task, res);
860 return nfs40_sequence_done(task, res);
861}
862
863static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
864{
865 if (res->sr_slot != NULL) {
866 if (res->sr_slot->table->session != NULL)
867 nfs41_sequence_free_slot(res);
868 else
869 nfs40_sequence_free_slot(res);
870 }
871}
872
Peng Tao2c4b1312014-06-11 05:24:16 +0800873int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400874{
Trond Myklebuste3725ec2012-11-16 12:25:01 -0500875 if (res->sr_slot == NULL)
Trond Myklebust14516c32010-07-31 14:29:06 -0400876 return 1;
Chuck Lever3bd23842013-08-09 12:49:19 -0400877 if (!res->sr_slot->table->session)
878 return nfs40_sequence_done(task, res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400879 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400880}
Peng Tao2c4b1312014-06-11 05:24:16 +0800881EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Trond Myklebustdf896452010-06-16 09:52:26 -0400882
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000883int nfs41_setup_sequence(struct nfs4_session *session,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400884 struct nfs4_sequence_args *args,
885 struct nfs4_sequence_res *res,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400886 struct rpc_task *task)
887{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400888 struct nfs4_slot *slot;
889 struct nfs4_slot_table *tbl;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400890
891 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400892 /* slot already allocated? */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400893 if (res->sr_slot != NULL)
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400894 goto out_success;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400895
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400896 tbl = &session->fc_slot_table;
897
Trond Myklebust69d206b2012-11-22 13:21:02 -0500898 task->tk_timeout = 0;
899
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400900 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson774d5f12013-05-20 14:13:50 -0400901 if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state) &&
Trond Myklebust8fe72ba2012-10-29 19:02:20 -0400902 !args->sa_privileged) {
Andy Adamson0b1c8fc2011-11-09 13:58:26 -0500903 /* The state manager will wait until the slot table is empty */
Andy Adamson0b1c8fc2011-11-09 13:58:26 -0500904 dprintk("%s session is draining\n", __func__);
Trond Myklebust7b939a32012-11-01 15:19:46 -0400905 goto out_sleep;
Andy Adamsonb069d942009-04-01 09:22:43 -0400906 }
907
Trond Myklebust2dc03b72012-11-16 16:10:11 -0500908 slot = nfs4_alloc_slot(tbl);
Trond Myklebust69d206b2012-11-22 13:21:02 -0500909 if (IS_ERR(slot)) {
910 /* If out of memory, try again in 1/4 second */
911 if (slot == ERR_PTR(-ENOMEM))
912 task->tk_timeout = HZ >> 2;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400913 dprintk("<-- %s: no free slots\n", __func__);
Trond Myklebust7b939a32012-11-01 15:19:46 -0400914 goto out_sleep;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400915 }
916 spin_unlock(&tbl->slot_tbl_lock);
917
Trond Myklebust0a014a42016-09-22 13:38:51 -0400918 slot->privileged = args->sa_privileged ? 1 : 0;
Trond Myklebust2b2fa712012-11-16 12:58:36 -0500919 args->sa_slot = slot;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400920
Chuck Levere8d92382013-08-09 12:47:51 -0400921 dprintk("<-- %s slotid=%u seqid=%u\n", __func__,
Trond Myklebust2dc03b72012-11-16 16:10:11 -0500922 slot->slot_nr, slot->seq_nr);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400923
Benny Halevydfb4f3092010-09-24 09:17:01 -0400924 res->sr_slot = slot;
Trond Myklebust8e63b6a2012-12-15 15:21:52 -0500925 res->sr_timestamp = jiffies;
Trond Myklebust2a6e26c2010-06-16 09:52:25 -0400926 res->sr_status_flags = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400927 /*
928 * sr_status is only set in decode_sequence, and so will remain
929 * set to 1 if an rpc level failure occurs.
930 */
931 res->sr_status = 1;
Trond Myklebust2f92ae32013-08-14 17:58:28 -0400932 trace_nfs4_setup_sequence(session, args);
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400933out_success:
934 rpc_call_start(task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400935 return 0;
Trond Myklebust7b939a32012-11-01 15:19:46 -0400936out_sleep:
Trond Myklebust8fe72ba2012-10-29 19:02:20 -0400937 /* Privileged tasks are queued with top priority */
938 if (args->sa_privileged)
Trond Myklebust1e1093c2012-11-01 16:44:05 -0400939 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
940 NULL, RPC_PRIORITY_PRIVILEGED);
941 else
942 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Trond Myklebust7b939a32012-11-01 15:19:46 -0400943 spin_unlock(&tbl->slot_tbl_lock);
944 return -EAGAIN;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400945}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000946EXPORT_SYMBOL_GPL(nfs41_setup_sequence);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400947
Chuck Lever5a580e02013-08-09 12:48:09 -0400948static int nfs4_setup_sequence(const struct nfs_server *server,
949 struct nfs4_sequence_args *args,
950 struct nfs4_sequence_res *res,
951 struct rpc_task *task)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400952{
Trond Myklebust035168a2010-06-16 09:52:26 -0400953 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400954 int ret = 0;
955
Chuck Lever3bd23842013-08-09 12:49:19 -0400956 if (!session)
Peng Taocb04ad22014-06-11 05:24:15 +0800957 return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
958 args, res, task);
Trond Myklebust035168a2010-06-16 09:52:26 -0400959
Chuck Levere8d92382013-08-09 12:47:51 -0400960 dprintk("--> %s clp %p session %p sr_slot %u\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400961 __func__, session->clp, session, res->sr_slot ?
Chuck Levere8d92382013-08-09 12:47:51 -0400962 res->sr_slot->slot_nr : NFS4_NO_SLOT);
Trond Myklebust035168a2010-06-16 09:52:26 -0400963
Trond Myklebust9d12b212012-01-17 22:04:25 -0500964 ret = nfs41_setup_sequence(session, args, res, task);
Chuck Lever3bd23842013-08-09 12:49:19 -0400965
Andy Adamsonce5039c2009-04-01 09:22:13 -0400966 dprintk("<-- %s status=%d\n", __func__, ret);
967 return ret;
968}
969
Andy Adamsonce5039c2009-04-01 09:22:13 -0400970static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
971{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400972 struct nfs4_call_sync_data *data = calldata;
Trond Myklebust6ba7db32012-10-22 20:07:20 -0400973 struct nfs4_session *session = nfs4_get_session(data->seq_server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400974
Trond Myklebust035168a2010-06-16 09:52:26 -0400975 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
976
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400977 nfs41_setup_sequence(session, data->seq_args, data->seq_res, task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400978}
979
Andy Adamson69ab40c2009-04-01 09:22:19 -0400980static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
981{
Chuck Lever2a3eb2b2013-08-09 12:48:00 -0400982 struct nfs4_call_sync_data *data = calldata;
Andy Adamson69ab40c2009-04-01 09:22:19 -0400983
Trond Myklebust14516c32010-07-31 14:29:06 -0400984 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400985}
986
Trond Myklebust17280172012-03-11 13:11:00 -0400987static const struct rpc_call_ops nfs41_call_sync_ops = {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400988 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400989 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400990};
991
Chuck Lever3bd23842013-08-09 12:49:19 -0400992#else /* !CONFIG_NFS_V4_1 */
993
Chuck Lever5a580e02013-08-09 12:48:09 -0400994static int nfs4_setup_sequence(const struct nfs_server *server,
995 struct nfs4_sequence_args *args,
996 struct nfs4_sequence_res *res,
997 struct rpc_task *task)
998{
Peng Taocb04ad22014-06-11 05:24:15 +0800999 return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
1000 args, res, task);
Chuck Lever5a580e02013-08-09 12:48:09 -04001001}
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04001002
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001003static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
1004{
1005 return nfs40_sequence_done(task, res);
1006}
1007
1008static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
1009{
1010 if (res->sr_slot != NULL)
1011 nfs40_sequence_free_slot(res);
1012}
1013
Peng Tao2c4b1312014-06-11 05:24:16 +08001014int nfs4_sequence_done(struct rpc_task *task,
1015 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -04001016{
Chuck Lever3bd23842013-08-09 12:49:19 -04001017 return nfs40_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -04001018}
Peng Tao2c4b1312014-06-11 05:24:16 +08001019EXPORT_SYMBOL_GPL(nfs4_sequence_done);
Chuck Lever3bd23842013-08-09 12:49:19 -04001020
1021#endif /* !CONFIG_NFS_V4_1 */
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001022
Chuck Lever9915ea72013-08-09 12:48:27 -04001023static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
1024{
1025 struct nfs4_call_sync_data *data = calldata;
1026 nfs4_setup_sequence(data->seq_server,
1027 data->seq_args, data->seq_res, task);
1028}
1029
1030static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
1031{
1032 struct nfs4_call_sync_data *data = calldata;
1033 nfs4_sequence_done(task, data->seq_res);
1034}
1035
1036static const struct rpc_call_ops nfs40_call_sync_ops = {
1037 .rpc_call_prepare = nfs40_call_sync_prepare,
1038 .rpc_call_done = nfs40_call_sync_done,
1039};
1040
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001041static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001042 struct nfs_server *server,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001043 struct rpc_message *msg,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001044 struct nfs4_sequence_args *args,
1045 struct nfs4_sequence_res *res)
Trond Myklebustad389da2007-06-05 12:30:00 -04001046{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001047 int ret;
1048 struct rpc_task *task;
Chuck Lever9915ea72013-08-09 12:48:27 -04001049 struct nfs_client *clp = server->nfs_client;
1050 struct nfs4_call_sync_data data = {
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001051 .seq_server = server,
1052 .seq_args = args,
1053 .seq_res = res,
1054 };
1055 struct rpc_task_setup task_setup = {
1056 .rpc_client = clnt,
1057 .rpc_message = msg,
Chuck Lever9915ea72013-08-09 12:48:27 -04001058 .callback_ops = clp->cl_mvops->call_sync_ops,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001059 .callback_data = &data
1060 };
1061
1062 task = rpc_run_task(&task_setup);
1063 if (IS_ERR(task))
1064 ret = PTR_ERR(task);
1065 else {
1066 ret = task->tk_status;
Trond Myklebustad389da2007-06-05 12:30:00 -04001067 rpc_put_task(task);
1068 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001069 return ret;
1070}
1071
Bryan Schumaker7c513052011-03-24 17:12:24 +00001072int nfs4_call_sync(struct rpc_clnt *clnt,
1073 struct nfs_server *server,
Bryan Schumakere73b83f2011-03-24 17:12:23 +00001074 struct rpc_message *msg,
1075 struct nfs4_sequence_args *args,
1076 struct nfs4_sequence_res *res,
1077 int cache_reply)
1078{
Chuck Levera9c92d62013-08-09 12:48:18 -04001079 nfs4_init_sequence(args, res, cache_reply);
Chuck Lever9915ea72013-08-09 12:48:27 -04001080 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
Bryan Schumakere73b83f2011-03-24 17:12:23 +00001081}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
1084{
1085 struct nfs_inode *nfsi = NFS_I(dir);
1086
1087 spin_lock(&dir->i_lock);
Trond Myklebust359d7d12012-05-28 10:01:34 -04001088 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
Trond Myklebusta9a4a872011-10-17 16:08:46 -07001089 if (!cinfo->atomic || cinfo->before != dir->i_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 nfs_force_lookup_revalidate(dir);
Trond Myklebusta9a4a872011-10-17 16:08:46 -07001091 dir->i_version = cinfo->after;
Trond Myklebust3235b402015-02-26 19:52:06 -05001092 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
David Howellsde242c02012-12-20 21:52:38 +00001093 nfs_fscache_invalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 spin_unlock(&dir->i_lock);
1095}
1096
1097struct nfs4_opendata {
1098 struct kref kref;
1099 struct nfs_openargs o_arg;
1100 struct nfs_openres o_res;
1101 struct nfs_open_confirmargs c_arg;
1102 struct nfs_open_confirmres c_res;
Trond Myklebust6926afd2012-01-07 13:22:46 -05001103 struct nfs4_string owner_name;
1104 struct nfs4_string group_name;
Kinglong Meea49c2692015-07-27 15:31:38 +08001105 struct nfs4_label *a_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 struct nfs_fattr f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001107 struct nfs4_label *f_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct dentry *dir;
Al Viro82a2c1b2011-06-22 18:30:55 -04001109 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 struct nfs4_state_owner *owner;
1111 struct nfs4_state *state;
1112 struct iattr attrs;
1113 unsigned long timestamp;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001114 unsigned int rpc_done : 1;
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04001115 unsigned int file_created : 1;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04001116 unsigned int is_recover : 1;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001117 int rpc_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 int cancelled;
1119};
Trond Myklebustdecf4912005-10-27 22:12:39 -04001120
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001121static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1122 int err, struct nfs4_exception *exception)
1123{
1124 if (err != -EINVAL)
1125 return false;
1126 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1127 return false;
1128 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1129 exception->retry = 1;
1130 return true;
1131}
1132
Trond Myklebust6ae37332015-01-30 14:21:14 -05001133static u32
1134nfs4_map_atomic_open_share(struct nfs_server *server,
1135 fmode_t fmode, int openflags)
1136{
1137 u32 res = 0;
1138
1139 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1140 case FMODE_READ:
1141 res = NFS4_SHARE_ACCESS_READ;
1142 break;
1143 case FMODE_WRITE:
1144 res = NFS4_SHARE_ACCESS_WRITE;
1145 break;
1146 case FMODE_READ|FMODE_WRITE:
1147 res = NFS4_SHARE_ACCESS_BOTH;
1148 }
1149 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1150 goto out;
1151 /* Want no delegation if we're using O_DIRECT */
1152 if (openflags & O_DIRECT)
1153 res |= NFS4_SHARE_WANT_NO_DELEG;
1154out:
1155 return res;
1156}
1157
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001158static enum open_claim_type4
1159nfs4_map_atomic_open_claim(struct nfs_server *server,
1160 enum open_claim_type4 claim)
1161{
1162 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1163 return claim;
1164 switch (claim) {
1165 default:
1166 return claim;
1167 case NFS4_OPEN_CLAIM_FH:
1168 return NFS4_OPEN_CLAIM_NULL;
1169 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1170 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1171 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1172 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1173 }
1174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176static void nfs4_init_opendata_res(struct nfs4_opendata *p)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001177{
1178 p->o_res.f_attr = &p->f_attr;
David Quigley1775fd32013-05-22 12:50:42 -04001179 p->o_res.f_label = p->f_label;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001180 p->o_res.seqid = p->o_arg.seqid;
1181 p->c_res.seqid = p->c_arg.seqid;
1182 p->o_res.server = p->o_arg.server;
Andy Adamson5f657532012-10-03 02:39:34 -04001183 p->o_res.access_request = p->o_arg.access;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001184 nfs_fattr_init(&p->f_attr);
Trond Myklebust6926afd2012-01-07 13:22:46 -05001185 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001186}
1187
Al Viro82a2c1b2011-06-22 18:30:55 -04001188static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001189 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001190 const struct iattr *attrs,
David Quigley1775fd32013-05-22 12:50:42 -04001191 struct nfs4_label *label,
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001192 enum open_claim_type4 claim,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001193 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001194{
Al Viro82a2c1b2011-06-22 18:30:55 -04001195 struct dentry *parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001196 struct inode *dir = d_inode(parent);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001197 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust63f5f792015-01-23 19:19:25 -05001198 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001199 struct nfs4_opendata *p;
1200
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001201 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001202 if (p == NULL)
1203 goto err;
David Quigley14c43f72013-05-22 12:50:43 -04001204
1205 p->f_label = nfs4_label_alloc(server, gfp_mask);
1206 if (IS_ERR(p->f_label))
1207 goto err_free_p;
1208
Kinglong Meea49c2692015-07-27 15:31:38 +08001209 p->a_label = nfs4_label_alloc(server, gfp_mask);
1210 if (IS_ERR(p->a_label))
1211 goto err_free_f;
1212
Trond Myklebust63f5f792015-01-23 19:19:25 -05001213 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1214 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05001215 if (IS_ERR(p->o_arg.seqid))
David Quigley14c43f72013-05-22 12:50:43 -04001216 goto err_free_label;
Al Viro82a2c1b2011-06-22 18:30:55 -04001217 nfs_sb_active(dentry->d_sb);
1218 p->dentry = dget(dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001219 p->dir = parent;
1220 p->owner = sp;
1221 atomic_inc(&sp->so_count);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001222 p->o_arg.open_flags = flags;
1223 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
Trond Myklebust6ae37332015-01-30 14:21:14 -05001224 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1225 fmode, flags);
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001226 /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1227 * will return permission denied for all bits until close */
1228 if (!(flags & O_EXCL)) {
1229 /* ask server to check for all possible rights as results
1230 * are cached */
1231 p->o_arg.access = NFS4_ACCESS_READ | NFS4_ACCESS_MODIFY |
1232 NFS4_ACCESS_EXTEND | NFS4_ACCESS_EXECUTE;
Weston Andros Adamsonae2bb032012-10-02 14:49:52 -07001233 }
David Howells7539bba2006-08-22 20:06:09 -04001234 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001235 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1236 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
Al Viro82a2c1b2011-06-22 18:30:55 -04001237 p->o_arg.name = &dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001238 p->o_arg.server = server;
David Quigleyaa9c2662013-05-22 12:50:44 -04001239 p->o_arg.bitmask = nfs4_bitmask(server, label);
Trond Myklebust1549210f2012-06-05 09:16:47 -04001240 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
Kinglong Meea49c2692015-07-27 15:31:38 +08001241 p->o_arg.label = nfs4_label_copy(p->a_label, label);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001242 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
1243 switch (p->o_arg.claim) {
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001244 case NFS4_OPEN_CLAIM_NULL:
1245 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1246 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1247 p->o_arg.fh = NFS_FH(dir);
1248 break;
1249 case NFS4_OPEN_CLAIM_PREVIOUS:
1250 case NFS4_OPEN_CLAIM_FH:
1251 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1252 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
David Howells2b0143b2015-03-17 22:25:59 +00001253 p->o_arg.fh = NFS_FH(d_inode(dentry));
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001254 }
Trond Myklebust536e43d2012-01-17 22:04:26 -05001255 if (attrs != NULL && attrs->ia_valid != 0) {
Trond Myklebustc281fa9c2013-08-20 21:06:49 -04001256 __u32 verf[2];
Trond Myklebustd77d76f2010-06-16 09:52:27 -04001257
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001258 p->o_arg.u.attrs = &p->attrs;
1259 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Chuck Levercd937102012-03-02 17:14:31 -05001260
1261 verf[0] = jiffies;
1262 verf[1] = current->pid;
1263 memcpy(p->o_arg.u.verifier.data, verf,
1264 sizeof(p->o_arg.u.verifier.data));
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001265 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001266 p->c_arg.fh = &p->o_res.fh;
1267 p->c_arg.stateid = &p->o_res.stateid;
1268 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001269 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001270 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001271 return p;
David Quigley14c43f72013-05-22 12:50:43 -04001272
1273err_free_label:
Kinglong Meea49c2692015-07-27 15:31:38 +08001274 nfs4_label_free(p->a_label);
1275err_free_f:
David Quigley14c43f72013-05-22 12:50:43 -04001276 nfs4_label_free(p->f_label);
1277err_free_p:
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001278 kfree(p);
1279err:
1280 dput(parent);
1281 return NULL;
1282}
1283
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001284static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001285{
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001286 struct nfs4_opendata *p = container_of(kref,
1287 struct nfs4_opendata, kref);
Al Viro82a2c1b2011-06-22 18:30:55 -04001288 struct super_block *sb = p->dentry->d_sb;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001289
1290 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001291 nfs4_sequence_free_slot(&p->o_res.seq_res);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001292 if (p->state != NULL)
1293 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001294 nfs4_put_state_owner(p->owner);
David Quigley14c43f72013-05-22 12:50:43 -04001295
Kinglong Meea49c2692015-07-27 15:31:38 +08001296 nfs4_label_free(p->a_label);
David Quigley14c43f72013-05-22 12:50:43 -04001297 nfs4_label_free(p->f_label);
1298
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001299 dput(p->dir);
Al Viro82a2c1b2011-06-22 18:30:55 -04001300 dput(p->dentry);
1301 nfs_sb_deactive(sb);
Trond Myklebust6926afd2012-01-07 13:22:46 -05001302 nfs_fattr_free_names(&p->f_attr);
Trond Myklebuste911b812014-03-26 13:24:37 -07001303 kfree(p->f_attr.mdsthreshold);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001304 kfree(p);
1305}
1306
1307static void nfs4_opendata_put(struct nfs4_opendata *p)
1308{
1309 if (p != NULL)
1310 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001311}
1312
Trond Myklebust06f814a2006-01-03 09:55:07 +01001313static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
1314{
Trond Myklebust06f814a2006-01-03 09:55:07 +01001315 int ret;
1316
Trond Myklebust06f814a2006-01-03 09:55:07 +01001317 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +01001318 return ret;
1319}
1320
Trond Myklebust24311f82015-09-20 10:50:17 -04001321static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1322 fmode_t fmode)
1323{
1324 switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1325 case FMODE_READ|FMODE_WRITE:
1326 return state->n_rdwr != 0;
1327 case FMODE_WRITE:
1328 return state->n_wronly != 0;
1329 case FMODE_READ:
1330 return state->n_rdonly != 0;
1331 }
1332 WARN_ON_ONCE(1);
1333 return false;
1334}
1335
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001336static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -04001337{
1338 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001339
Trond Myklebust536e43d2012-01-17 22:04:26 -05001340 if (open_mode & (O_EXCL|O_TRUNC))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001341 goto out;
1342 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001343 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -05001344 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1345 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001346 break;
1347 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001348 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1349 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001350 break;
1351 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -05001352 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1353 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001354 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001355out:
Trond Myklebust6ee41262007-07-08 14:11:36 -04001356 return ret;
1357}
1358
Trond Myklebust2a606182015-08-19 22:30:00 -05001359static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1360 enum open_claim_type4 claim)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001361{
Trond Myklebust652f89f2011-12-09 19:05:58 -05001362 if (delegation == NULL)
1363 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001364 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001365 return 0;
Trond Myklebustd25be542013-02-05 11:43:28 -05001366 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
1367 return 0;
Trond Myklebust2a606182015-08-19 22:30:00 -05001368 switch (claim) {
1369 case NFS4_OPEN_CLAIM_NULL:
1370 case NFS4_OPEN_CLAIM_FH:
1371 break;
1372 case NFS4_OPEN_CLAIM_PREVIOUS:
1373 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1374 break;
1375 default:
1376 return 0;
1377 }
Trond Myklebustb7391f42008-12-23 15:21:52 -05001378 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001379 return 1;
1380}
1381
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001382static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +01001383{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001384 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +01001385 case FMODE_WRITE:
1386 state->n_wronly++;
1387 break;
1388 case FMODE_READ:
1389 state->n_rdonly++;
1390 break;
1391 case FMODE_READ|FMODE_WRITE:
1392 state->n_rdwr++;
1393 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001394 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +01001395}
1396
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04001397#ifdef CONFIG_NFS_V4_1
1398static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1399{
1400 if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1401 return true;
1402 if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1403 return true;
1404 if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1405 return true;
1406 return false;
1407}
1408#endif /* CONFIG_NFS_V4_1 */
1409
Trond Myklebust4f14c192014-02-12 19:15:06 -05001410static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
Trond Myklebust003707c2007-07-05 18:07:55 -04001411{
Trond Myklebust4f14c192014-02-12 19:15:06 -05001412 struct nfs_client *clp = state->owner->so_server->nfs_client;
1413 bool need_recover = false;
1414
1415 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1416 need_recover = true;
1417 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1418 need_recover = true;
1419 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1420 need_recover = true;
1421 if (need_recover)
1422 nfs4_state_mark_reclaim_nograce(clp, state);
1423}
1424
Trond Myklebuste999e802014-02-10 18:20:47 -05001425static bool nfs_need_update_open_stateid(struct nfs4_state *state,
Trond Myklebust1393d962016-09-22 13:39:13 -04001426 const nfs4_stateid *stateid, nfs4_stateid *freeme)
Trond Myklebuste999e802014-02-10 18:20:47 -05001427{
1428 if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0)
1429 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001430 if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001431 nfs4_stateid_copy(freeme, &state->open_stateid);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001432 nfs_test_and_clear_all_open_stateid(state);
Trond Myklebuste999e802014-02-10 18:20:47 -05001433 return true;
Trond Myklebust4f14c192014-02-12 19:15:06 -05001434 }
Trond Myklebuste999e802014-02-10 18:20:47 -05001435 if (nfs4_stateid_is_newer(stateid, &state->open_stateid))
1436 return true;
1437 return false;
1438}
1439
Trond Myklebustf95549c2015-01-23 18:06:09 -05001440static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1441{
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001442 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1443 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001444 if (state->n_wronly)
1445 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1446 if (state->n_rdonly)
1447 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1448 if (state->n_rdwr)
1449 set_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust3c38cbe2015-07-22 13:46:13 -04001450 set_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebustf95549c2015-01-23 18:06:09 -05001451}
1452
Trond Myklebust226056c2014-02-11 10:41:07 -05001453static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1454 nfs4_stateid *stateid, fmode_t fmode)
1455{
1456 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1457 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1458 case FMODE_WRITE:
1459 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1460 break;
1461 case FMODE_READ:
1462 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1463 break;
1464 case 0:
1465 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1466 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1467 clear_bit(NFS_OPEN_STATE, &state->flags);
1468 }
1469 if (stateid == NULL)
1470 return;
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001471 /* Handle OPEN+OPEN_DOWNGRADE races */
1472 if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1473 !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
Trond Myklebustf95549c2015-01-23 18:06:09 -05001474 nfs_resync_open_stateid_locked(state);
Trond Myklebust226056c2014-02-11 10:41:07 -05001475 return;
Trond Myklebustf95549c2015-01-23 18:06:09 -05001476 }
Trond Myklebust003707c2007-07-05 18:07:55 -04001477 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001478 nfs4_stateid_copy(&state->stateid, stateid);
1479 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust226056c2014-02-11 10:41:07 -05001480}
1481
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07001482static void nfs_clear_open_stateid(struct nfs4_state *state,
1483 nfs4_stateid *arg_stateid,
1484 nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust226056c2014-02-11 10:41:07 -05001485{
1486 write_seqlock(&state->seqlock);
Trond Myklebust3e7dfb12016-11-14 11:19:55 -05001487 /* Ignore, if the CLOSE argment doesn't match the current stateid */
1488 if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1489 nfs_clear_open_stateid_locked(state, stateid, fmode);
Trond Myklebust226056c2014-02-11 10:41:07 -05001490 write_sequnlock(&state->seqlock);
Trond Myklebust4f14c192014-02-12 19:15:06 -05001491 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1492 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
Trond Myklebust226056c2014-02-11 10:41:07 -05001493}
1494
Trond Myklebust1393d962016-09-22 13:39:13 -04001495static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1496 const nfs4_stateid *stateid, fmode_t fmode,
1497 nfs4_stateid *freeme)
Trond Myklebust003707c2007-07-05 18:07:55 -04001498{
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001499 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001500 case FMODE_READ:
1501 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1502 break;
1503 case FMODE_WRITE:
1504 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1505 break;
1506 case FMODE_READ|FMODE_WRITE:
1507 set_bit(NFS_O_RDWR_STATE, &state->flags);
1508 }
Trond Myklebust1393d962016-09-22 13:39:13 -04001509 if (!nfs_need_update_open_stateid(state, stateid, freeme))
Trond Myklebuste999e802014-02-10 18:20:47 -05001510 return;
1511 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1512 nfs4_stateid_copy(&state->stateid, stateid);
1513 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001514}
1515
Trond Myklebust1393d962016-09-22 13:39:13 -04001516static void __update_open_stateid(struct nfs4_state *state,
1517 const nfs4_stateid *open_stateid,
1518 const nfs4_stateid *deleg_stateid,
1519 fmode_t fmode,
1520 nfs4_stateid *freeme)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001522 /*
1523 * Protect the call to nfs4_state_set_mode_locked and
1524 * serialise the stateid update
1525 */
Andrew Elble361cad32015-12-02 09:20:57 -05001526 spin_lock(&state->owner->so_lock);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001527 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001528 if (deleg_stateid != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001529 nfs4_stateid_copy(&state->stateid, deleg_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001530 set_bit(NFS_DELEGATED_STATE, &state->flags);
1531 }
1532 if (open_stateid != NULL)
Trond Myklebust1393d962016-09-22 13:39:13 -04001533 nfs_set_open_stateid_locked(state, open_stateid, fmode, freeme);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001534 write_sequnlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001535 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -07001536 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Trond Myklebust1393d962016-09-22 13:39:13 -04001539static int update_open_stateid(struct nfs4_state *state,
1540 const nfs4_stateid *open_stateid,
1541 const nfs4_stateid *delegation,
1542 fmode_t fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001543{
Trond Myklebust1393d962016-09-22 13:39:13 -04001544 struct nfs_server *server = NFS_SERVER(state->inode);
1545 struct nfs_client *clp = server->nfs_client;
Trond Myklebust34310432008-12-23 15:21:38 -05001546 struct nfs_inode *nfsi = NFS_I(state->inode);
1547 struct nfs_delegation *deleg_cur;
Arnd Bergmann83aa3e02016-10-18 17:21:30 +02001548 nfs4_stateid freeme = { };
Trond Myklebust34310432008-12-23 15:21:38 -05001549 int ret = 0;
1550
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001551 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -05001552
1553 rcu_read_lock();
1554 deleg_cur = rcu_dereference(nfsi->delegation);
1555 if (deleg_cur == NULL)
1556 goto no_delegation;
1557
1558 spin_lock(&deleg_cur->lock);
Trond Myklebust17f26b12013-08-21 15:48:42 -04001559 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
Trond Myklebustd25be542013-02-05 11:43:28 -05001560 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001561 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001562 goto no_delegation_unlock;
1563
1564 if (delegation == NULL)
1565 delegation = &deleg_cur->stateid;
Trond Myklebustf597c532012-03-04 18:13:56 -05001566 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
Trond Myklebust34310432008-12-23 15:21:38 -05001567 goto no_delegation_unlock;
1568
Trond Myklebustb7391f42008-12-23 15:21:52 -05001569 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebust1393d962016-09-22 13:39:13 -04001570 __update_open_stateid(state, open_stateid, &deleg_cur->stateid,
1571 fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001572 ret = 1;
1573no_delegation_unlock:
1574 spin_unlock(&deleg_cur->lock);
1575no_delegation:
1576 rcu_read_unlock();
1577
1578 if (!ret && open_stateid != NULL) {
Trond Myklebust1393d962016-09-22 13:39:13 -04001579 __update_open_stateid(state, open_stateid, NULL, fmode, &freeme);
Trond Myklebust34310432008-12-23 15:21:38 -05001580 ret = 1;
1581 }
Trond Myklebust4f14c192014-02-12 19:15:06 -05001582 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
Trond Myklebust1393d962016-09-22 13:39:13 -04001583 nfs4_schedule_state_manager(clp);
1584 if (freeme.type != 0)
1585 nfs4_test_and_free_stateid(server, &freeme,
1586 state->owner->so_cred);
Trond Myklebust34310432008-12-23 15:21:38 -05001587
1588 return ret;
1589}
1590
Trond Myklebust39071e62015-01-24 15:07:56 -05001591static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1592 const nfs4_stateid *stateid)
1593{
1594 struct nfs4_state *state = lsp->ls_state;
1595 bool ret = false;
1596
1597 spin_lock(&state->state_lock);
1598 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1599 goto out_noupdate;
1600 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1601 goto out_noupdate;
1602 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1603 ret = true;
1604out_noupdate:
1605 spin_unlock(&state->state_lock);
1606 return ret;
1607}
Trond Myklebust34310432008-12-23 15:21:38 -05001608
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001609static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001610{
1611 struct nfs_delegation *delegation;
1612
1613 rcu_read_lock();
1614 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001615 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001616 rcu_read_unlock();
1617 return;
1618 }
1619 rcu_read_unlock();
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001620 nfs4_inode_return_delegation(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001621}
1622
Trond Myklebust6ee41262007-07-08 14:11:36 -04001623static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001624{
1625 struct nfs4_state *state = opendata->state;
1626 struct nfs_inode *nfsi = NFS_I(state->inode);
1627 struct nfs_delegation *delegation;
Trond Myklebustf448bad2013-05-29 15:36:40 -04001628 int open_mode = opendata->o_arg.open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001629 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebust2a606182015-08-19 22:30:00 -05001630 enum open_claim_type4 claim = opendata->o_arg.claim;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001631 nfs4_stateid stateid;
1632 int ret = -EAGAIN;
1633
Trond Myklebustaac00a82007-07-05 19:02:21 -04001634 for (;;) {
Anna Schumaker61beef752014-09-03 14:15:40 -04001635 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001636 if (can_open_cached(state, fmode, open_mode)) {
Anna Schumaker61beef752014-09-03 14:15:40 -04001637 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001638 spin_unlock(&state->owner->so_lock);
Anna Schumaker61beef752014-09-03 14:15:40 -04001639 goto out_return_state;
Trond Myklebust6ee41262007-07-08 14:11:36 -04001640 }
Anna Schumaker61beef752014-09-03 14:15:40 -04001641 spin_unlock(&state->owner->so_lock);
Trond Myklebust34310432008-12-23 15:21:38 -05001642 rcu_read_lock();
1643 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05001644 if (!can_open_delegated(delegation, fmode, claim)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001645 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001646 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001647 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001648 /* Save the delegation */
Trond Myklebustf597c532012-03-04 18:13:56 -05001649 nfs4_stateid_copy(&stateid, &delegation->stateid);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001650 rcu_read_unlock();
Trond Myklebustfa332942013-04-09 12:56:52 -04001651 nfs_release_seqid(opendata->o_arg.seqid);
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04001652 if (!opendata->is_recover) {
1653 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1654 if (ret != 0)
1655 goto out;
1656 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001657 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001658
1659 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001660 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001661 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001662 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001663out:
1664 return ERR_PTR(ret);
1665out_return_state:
1666 atomic_inc(&state->count);
1667 return state;
1668}
1669
Andy Adamsone23008e2012-10-02 21:07:32 -04001670static void
1671nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1672{
1673 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1674 struct nfs_delegation *delegation;
1675 int delegation_flags = 0;
1676
1677 rcu_read_lock();
1678 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1679 if (delegation)
1680 delegation_flags = delegation->flags;
1681 rcu_read_unlock();
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001682 switch (data->o_arg.claim) {
1683 default:
1684 break;
1685 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1686 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04001687 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1688 "returning a delegation for "
1689 "OPEN(CLAIM_DELEGATE_CUR)\n",
1690 clp->cl_hostname);
Trond Myklebust72d79ff2015-10-02 11:44:54 -04001691 return;
1692 }
1693 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Andy Adamsone23008e2012-10-02 21:07:32 -04001694 nfs_inode_set_delegation(state->inode,
1695 data->owner->so_cred,
1696 &data->o_res);
1697 else
1698 nfs_inode_reclaim_delegation(state->inode,
1699 data->owner->so_cred,
1700 &data->o_res);
1701}
1702
1703/*
1704 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1705 * and update the nfs4_state.
1706 */
1707static struct nfs4_state *
1708_nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1709{
1710 struct inode *inode = data->state->inode;
1711 struct nfs4_state *state = data->state;
1712 int ret;
1713
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001714 if (!data->rpc_done) {
1715 if (data->rpc_status) {
1716 ret = data->rpc_status;
1717 goto err;
1718 }
1719 /* cached opens have already been processed */
1720 goto update;
Andy Adamsone23008e2012-10-02 21:07:32 -04001721 }
1722
Andy Adamsone23008e2012-10-02 21:07:32 -04001723 ret = nfs_refresh_inode(inode, &data->f_attr);
1724 if (ret)
1725 goto err;
1726
1727 if (data->o_res.delegation_type != 0)
1728 nfs4_opendata_check_deleg(data, state);
Weston Andros Adamsond2bfda22013-10-21 13:10:13 -04001729update:
Andy Adamsone23008e2012-10-02 21:07:32 -04001730 update_open_stateid(state, &data->o_res.stateid, NULL,
1731 data->o_arg.fmode);
Trond Myklebustd49f0422013-10-28 14:57:12 -04001732 atomic_inc(&state->count);
Andy Adamsone23008e2012-10-02 21:07:32 -04001733
1734 return state;
1735err:
1736 return ERR_PTR(ret);
1737
1738}
1739
1740static struct nfs4_state *
1741_nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001742{
1743 struct inode *inode;
1744 struct nfs4_state *state = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001745 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001746
Trond Myklebustaac00a82007-07-05 19:02:21 -04001747 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001748 state = nfs4_try_open_cached(data);
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05001749 trace_nfs4_cached_open(data->state);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001750 goto out;
1751 }
1752
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001753 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001754 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001755 goto err;
David Quigley1775fd32013-05-22 12:50:42 -04001756 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001757 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001758 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001759 goto err;
1760 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001761 state = nfs4_get_open_state(inode, data->owner);
1762 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001763 goto err_put_inode;
Andy Adamsone23008e2012-10-02 21:07:32 -04001764 if (data->o_res.delegation_type != 0)
1765 nfs4_opendata_check_deleg(data, state);
Trond Myklebust34310432008-12-23 15:21:38 -05001766 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001767 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001768 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001769out:
Trond Myklebust7aa262b52013-02-28 16:19:59 -08001770 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001771 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001772err_put_inode:
1773 iput(inode);
1774err:
1775 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001776}
1777
Andy Adamsone23008e2012-10-02 21:07:32 -04001778static struct nfs4_state *
1779nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1780{
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001781 struct nfs4_state *ret;
1782
Andy Adamsone23008e2012-10-02 21:07:32 -04001783 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04001784 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
1785 else
1786 ret = _nfs4_opendata_to_nfs4_state(data);
1787 nfs4_sequence_free_slot(&data->o_res.seq_res);
1788 return ret;
Andy Adamsone23008e2012-10-02 21:07:32 -04001789}
1790
Trond Myklebust864472e2006-01-03 09:55:15 +01001791static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1792{
1793 struct nfs_inode *nfsi = NFS_I(state->inode);
1794 struct nfs_open_context *ctx;
1795
1796 spin_lock(&state->inode->i_lock);
1797 list_for_each_entry(ctx, &nfsi->open_files, list) {
1798 if (ctx->state != state)
1799 continue;
1800 get_nfs_open_context(ctx);
1801 spin_unlock(&state->inode->i_lock);
1802 return ctx;
1803 }
1804 spin_unlock(&state->inode->i_lock);
1805 return ERR_PTR(-ENOENT);
1806}
1807
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001808static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
1809 struct nfs4_state *state, enum open_claim_type4 claim)
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001810{
1811 struct nfs4_opendata *opendata;
1812
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001813 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
David Quigley1775fd32013-05-22 12:50:42 -04001814 NULL, NULL, claim, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001815 if (opendata == NULL)
1816 return ERR_PTR(-ENOMEM);
1817 opendata->state = state;
1818 atomic_inc(&state->count);
1819 return opendata;
1820}
1821
Trond Myklebust24311f82015-09-20 10:50:17 -04001822static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
1823 fmode_t fmode)
Trond Myklebust864472e2006-01-03 09:55:15 +01001824{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001825 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001826 int ret;
1827
Trond Myklebust24311f82015-09-20 10:50:17 -04001828 if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
NeilBrown39f897f2015-06-29 14:28:54 +10001829 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001830 opendata->o_arg.open_flags = 0;
1831 opendata->o_arg.fmode = fmode;
Trond Myklebustbe36e182015-02-27 17:04:17 -05001832 opendata->o_arg.share_access = nfs4_map_atomic_open_share(
1833 NFS_SB(opendata->dentry->d_sb),
1834 fmode, 0);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001835 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1836 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1837 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001838 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001839 if (ret != 0)
1840 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001841 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001842 if (IS_ERR(newstate))
1843 return PTR_ERR(newstate);
Trond Myklebust24311f82015-09-20 10:50:17 -04001844 if (newstate != opendata->state)
1845 ret = -ESTALE;
Al Viro643168c2011-06-22 18:20:23 -04001846 nfs4_close_state(newstate, fmode);
Trond Myklebust24311f82015-09-20 10:50:17 -04001847 return ret;
Trond Myklebust864472e2006-01-03 09:55:15 +01001848}
1849
1850static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1851{
Trond Myklebust864472e2006-01-03 09:55:15 +01001852 int ret;
1853
Trond Myklebust4f14c192014-02-12 19:15:06 -05001854 /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */
1855 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1856 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1857 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001858 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001859 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04001860 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001861 smp_rmb();
Trond Myklebust24311f82015-09-20 10:50:17 -04001862 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1863 if (ret != 0)
1864 return ret;
1865 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1866 if (ret != 0)
1867 return ret;
1868 ret = nfs4_open_recover_helper(opendata, FMODE_READ);
1869 if (ret != 0)
1870 return ret;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001871 /*
1872 * We may have performed cached opens for all three recoveries.
1873 * Check if we need to update the current stateid.
1874 */
1875 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
Trond Myklebustf597c532012-03-04 18:13:56 -05001876 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001877 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001878 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001879 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001880 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001881 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001882 return 0;
1883}
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885/*
1886 * OPEN_RECLAIM:
1887 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001889static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001891 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001892 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001893 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 int status;
1895
Trond Myklebust4a1c0892013-03-15 14:57:33 -04001896 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1897 NFS4_OPEN_CLAIM_PREVIOUS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001898 if (IS_ERR(opendata))
1899 return PTR_ERR(opendata);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001900 rcu_read_lock();
1901 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001902 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001903 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001904 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001905 opendata->o_arg.u.delegation_type = delegation_type;
1906 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001907 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return status;
1909}
1910
Trond Myklebust539cd032007-06-05 11:46:42 -04001911static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
1913 struct nfs_server *server = NFS_SERVER(state->inode);
1914 struct nfs4_exception exception = { };
1915 int err;
1916 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001917 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04001918 trace_nfs4_open_reclaim(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04001919 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
1920 continue;
Trond Myklebust168667c2010-10-19 19:47:49 -04001921 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001922 break;
1923 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 } while (exception.retry);
1925 return err;
1926}
1927
Trond Myklebust864472e2006-01-03 09:55:15 +01001928static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1929{
1930 struct nfs_open_context *ctx;
1931 int ret;
1932
1933 ctx = nfs4_state_find_open_context(state);
1934 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04001935 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04001936 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001937 put_nfs_open_context(ctx);
1938 return ret;
1939}
1940
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04001941static 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 -07001942{
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001943 switch (err) {
1944 default:
1945 printk(KERN_ERR "NFS: %s: unhandled error "
1946 "%d.\n", __func__, err);
1947 case 0:
1948 case -ENOENT:
Trond Myklebust8eee52a2015-06-04 13:51:13 -04001949 case -EAGAIN:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001950 case -ESTALE:
1951 break;
1952 case -NFS4ERR_BADSESSION:
1953 case -NFS4ERR_BADSLOT:
1954 case -NFS4ERR_BAD_HIGH_SLOT:
1955 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1956 case -NFS4ERR_DEADSESSION:
1957 set_bit(NFS_DELEGATED_STATE, &state->flags);
1958 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
1959 return -EAGAIN;
1960 case -NFS4ERR_STALE_CLIENTID:
1961 case -NFS4ERR_STALE_STATEID:
1962 set_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001963 /* Don't recall a delegation if it was lost */
1964 nfs4_schedule_lease_recovery(server->nfs_client);
1965 return -EAGAIN;
Chuck Lever352297b2013-10-17 14:13:24 -04001966 case -NFS4ERR_MOVED:
1967 nfs4_schedule_migration_recovery(server);
1968 return -EAGAIN;
Chuck Lever8ef2f8d2013-10-17 14:13:41 -04001969 case -NFS4ERR_LEASE_MOVED:
1970 nfs4_schedule_lease_moved_recovery(server->nfs_client);
1971 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001972 case -NFS4ERR_DELEG_REVOKED:
1973 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebust404ea3562016-09-22 13:39:08 -04001974 case -NFS4ERR_EXPIRED:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001975 case -NFS4ERR_BAD_STATEID:
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04001976 case -NFS4ERR_OPENMODE:
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001977 nfs_inode_find_state_and_recover(state->inode,
1978 stateid);
1979 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust869f9df2014-11-10 18:43:56 -05001980 return -EAGAIN;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001981 case -NFS4ERR_DELAY:
1982 case -NFS4ERR_GRACE:
1983 set_bit(NFS_DELEGATED_STATE, &state->flags);
1984 ssleep(1);
1985 return -EAGAIN;
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04001986 case -ENOMEM:
1987 case -NFS4ERR_DENIED:
1988 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
1989 return 0;
Trond Myklebustbe76b5b2013-04-01 15:40:44 -04001990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return err;
1992}
1993
Trond Myklebust24311f82015-09-20 10:50:17 -04001994int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
1995 struct nfs4_state *state, const nfs4_stateid *stateid,
1996 fmode_t type)
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04001997{
1998 struct nfs_server *server = NFS_SERVER(state->inode);
1999 struct nfs4_opendata *opendata;
Trond Myklebust24311f82015-09-20 10:50:17 -04002000 int err = 0;
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04002001
2002 opendata = nfs4_open_recoverdata_alloc(ctx, state,
2003 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
2004 if (IS_ERR(opendata))
2005 return PTR_ERR(opendata);
2006 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
Jeff Layton5e99b532015-10-02 13:14:37 -04002007 write_seqlock(&state->seqlock);
2008 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2009 write_sequnlock(&state->seqlock);
Trond Myklebust24311f82015-09-20 10:50:17 -04002010 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2011 switch (type & (FMODE_READ|FMODE_WRITE)) {
2012 case FMODE_READ|FMODE_WRITE:
2013 case FMODE_WRITE:
2014 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
2015 if (err)
2016 break;
2017 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
2018 if (err)
2019 break;
2020 case FMODE_READ:
2021 err = nfs4_open_recover_helper(opendata, FMODE_READ);
2022 }
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04002023 nfs4_opendata_put(opendata);
2024 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
2025}
2026
Chuck Leverbe05c862013-08-09 12:49:47 -04002027static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
2028{
2029 struct nfs4_opendata *data = calldata;
2030
Peng Taocb04ad22014-06-11 05:24:15 +08002031 nfs40_setup_sequence(data->o_arg.server->nfs_client->cl_slot_tbl,
2032 &data->c_arg.seq_args, &data->c_res.seq_res, task);
Chuck Leverbe05c862013-08-09 12:49:47 -04002033}
2034
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002035static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
2036{
2037 struct nfs4_opendata *data = calldata;
2038
Trond Myklebust17ead6c2014-02-01 14:53:23 -05002039 nfs40_sequence_done(task, &data->c_res.seq_res);
Chuck Leverbe05c862013-08-09 12:49:47 -04002040
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002041 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002042 if (data->rpc_status == 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -05002043 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
Trond Myklebustbb226292008-01-02 15:19:18 -05002044 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002045 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04002046 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002047 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002048}
2049
2050static void nfs4_open_confirm_release(void *calldata)
2051{
2052 struct nfs4_opendata *data = calldata;
2053 struct nfs4_state *state = NULL;
2054
2055 /* If this request hasn't been cancelled, do nothing */
2056 if (data->cancelled == 0)
2057 goto out_free;
2058 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04002059 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002060 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002061 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04002062 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04002063 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002064out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002065 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002066}
2067
2068static const struct rpc_call_ops nfs4_open_confirm_ops = {
Chuck Leverbe05c862013-08-09 12:49:47 -04002069 .rpc_call_prepare = nfs4_open_confirm_prepare,
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002070 .rpc_call_done = nfs4_open_confirm_done,
2071 .rpc_release = nfs4_open_confirm_release,
2072};
2073
2074/*
2075 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
2076 */
2077static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
2078{
David Howells2b0143b2015-03-17 22:25:59 +00002079 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002080 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002081 struct rpc_message msg = {
2082 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2083 .rpc_argp = &data->c_arg,
2084 .rpc_resp = &data->c_res,
2085 .rpc_cred = data->owner->so_cred,
2086 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002087 struct rpc_task_setup task_setup_data = {
2088 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002089 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002090 .callback_ops = &nfs4_open_confirm_ops,
2091 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002092 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002093 .flags = RPC_TASK_ASYNC,
2094 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 int status;
2096
Trond Myklebust17ead6c2014-02-01 14:53:23 -05002097 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002098 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04002099 data->rpc_done = 0;
2100 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002101 data->timestamp = jiffies;
Benjamin Coddingtone92c1e02015-10-01 09:17:33 -04002102 if (data->is_recover)
2103 nfs4_set_sequence_privileged(&data->c_arg.seq_args);
Trond Myklebustc970aa82007-07-14 15:39:59 -04002104 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05002105 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002106 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002107 status = nfs4_wait_for_completion_rpc_task(task);
2108 if (status != 0) {
2109 data->cancelled = 1;
2110 smp_wmb();
2111 } else
2112 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05002113 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return status;
2115}
2116
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002117static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002119 struct nfs4_opendata *data = calldata;
2120 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust549b19c2013-04-16 18:42:34 -04002121 struct nfs_client *clp = sp->so_server->nfs_client;
Trond Myklebust2a606182015-08-19 22:30:00 -05002122 enum open_claim_type4 claim = data->o_arg.claim;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002123
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002124 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002125 goto out_wait;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002126 /*
2127 * Check if we still need to send an OPEN call, or if we can use
2128 * a delegation instead.
2129 */
2130 if (data->state != NULL) {
2131 struct nfs_delegation *delegation;
2132
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002133 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04002134 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002135 rcu_read_lock();
2136 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
Trond Myklebust2a606182015-08-19 22:30:00 -05002137 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
Trond Myklebust652f89f2011-12-09 19:05:58 -05002138 goto unlock_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002139 rcu_read_unlock();
2140 }
Trond Myklebust95b72eb2012-04-20 19:24:51 -04002141 /* Update client id. */
Trond Myklebust549b19c2013-04-16 18:42:34 -04002142 data->o_arg.clientid = clp->cl_clientid;
Trond Myklebust2a606182015-08-19 22:30:00 -05002143 switch (claim) {
2144 default:
2145 break;
Trond Myklebust8188df12013-04-23 14:31:19 -04002146 case NFS4_OPEN_CLAIM_PREVIOUS:
2147 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2148 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Andy Adamsone23008e2012-10-02 21:07:32 -04002149 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
Trond Myklebust8188df12013-04-23 14:31:19 -04002150 case NFS4_OPEN_CLAIM_FH:
2151 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002152 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
2153 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002154 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04002155 if (nfs4_setup_sequence(data->o_arg.server,
Andy Adamsond8985282009-04-01 09:22:21 -04002156 &data->o_arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04002157 &data->o_res.seq_res,
2158 task) != 0)
2159 nfs_release_seqid(data->o_arg.seqid);
Trond Myklebust549b19c2013-04-16 18:42:34 -04002160
2161 /* Set the create mode (note dependency on the session type) */
2162 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2163 if (data->o_arg.open_flags & O_EXCL) {
2164 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2165 if (nfs4_has_persistent_session(clp))
2166 data->o_arg.createmode = NFS4_CREATE_GUARDED;
2167 else if (clp->cl_mvops->minor_version > 0)
2168 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2169 }
Trond Myklebust6ee41262007-07-08 14:11:36 -04002170 return;
Trond Myklebust652f89f2011-12-09 19:05:58 -05002171unlock_no_action:
Olga Kornievskaia9759b0f2015-11-24 13:29:42 -05002172 trace_nfs4_cached_open(data->state);
Trond Myklebust652f89f2011-12-09 19:05:58 -05002173 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04002174out_no_action:
2175 task->tk_action = NULL;
Trond Myklebustc8da19b2013-02-11 19:01:21 -05002176out_wait:
Trond Myklebustb75ad4c2012-11-29 17:27:47 -05002177 nfs4_sequence_done(task, &data->o_res.seq_res);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002178}
2179
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002180static void nfs4_open_done(struct rpc_task *task, void *calldata)
2181{
2182 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002184 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04002185
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04002186 if (!nfs4_sequence_process(task, &data->o_res.seq_res))
Trond Myklebust14516c32010-07-31 14:29:06 -04002187 return;
Andy Adamsond8985282009-04-01 09:22:21 -04002188
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002189 if (task->tk_status == 0) {
Trond Myklebust807d66d82012-10-02 17:09:00 -07002190 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2191 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07002192 case S_IFREG:
2193 break;
2194 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002195 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002196 break;
2197 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002198 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07002199 break;
2200 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002201 data->rpc_status = -ENOTDIR;
Trond Myklebust807d66d82012-10-02 17:09:00 -07002202 }
Trond Myklebust6f926b52005-10-18 14:20:18 -07002203 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01002204 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04002205 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2206 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07002207 }
Trond Myklebust3e309912007-07-07 13:19:59 -04002208 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002209}
Trond Myklebust6f926b52005-10-18 14:20:18 -07002210
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002211static void nfs4_open_release(void *calldata)
2212{
2213 struct nfs4_opendata *data = calldata;
2214 struct nfs4_state *state = NULL;
2215
2216 /* If this request hasn't been cancelled, do nothing */
2217 if (data->cancelled == 0)
2218 goto out_free;
2219 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04002220 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002221 goto out_free;
2222 /* In case we need an open_confirm, no cleanup! */
2223 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2224 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002225 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04002226 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04002227 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002228out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002229 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002230}
2231
2232static const struct rpc_call_ops nfs4_open_ops = {
2233 .rpc_call_prepare = nfs4_open_prepare,
2234 .rpc_call_done = nfs4_open_done,
2235 .rpc_release = nfs4_open_release,
2236};
2237
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002238static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002239{
David Howells2b0143b2015-03-17 22:25:59 +00002240 struct inode *dir = d_inode(data->dir);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002241 struct nfs_server *server = NFS_SERVER(dir);
2242 struct nfs_openargs *o_arg = &data->o_arg;
2243 struct nfs_openres *o_res = &data->o_res;
2244 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002245 struct rpc_message msg = {
2246 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2247 .rpc_argp = o_arg,
2248 .rpc_resp = o_res,
2249 .rpc_cred = data->owner->so_cred,
2250 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002251 struct rpc_task_setup task_setup_data = {
2252 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002253 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002254 .callback_ops = &nfs4_open_ops,
2255 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05002256 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002257 .flags = RPC_TASK_ASYNC,
2258 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002259 int status;
2260
Chuck Levera9c92d62013-08-09 12:48:18 -04002261 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002262 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04002263 data->rpc_done = 0;
2264 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04002265 data->cancelled = 0;
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002266 data->is_recover = 0;
2267 if (isrecover) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04002268 nfs4_set_sequence_privileged(&o_arg->seq_args);
Trond Myklebustbdeca1b2013-04-23 14:52:44 -04002269 data->is_recover = 1;
2270 }
Trond Myklebustc970aa82007-07-14 15:39:59 -04002271 task = rpc_run_task(&task_setup_data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002272 if (IS_ERR(task))
2273 return PTR_ERR(task);
2274 status = nfs4_wait_for_completion_rpc_task(task);
2275 if (status != 0) {
2276 data->cancelled = 1;
2277 smp_wmb();
2278 } else
2279 status = data->rpc_status;
2280 rpc_put_task(task);
2281
2282 return status;
2283}
2284
2285static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2286{
David Howells2b0143b2015-03-17 22:25:59 +00002287 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002288 struct nfs_openres *o_res = &data->o_res;
2289 int status;
2290
2291 status = nfs4_run_open_task(data, 1);
2292 if (status != 0 || !data->rpc_done)
2293 return status;
2294
Trond Myklebust6926afd2012-01-07 13:22:46 -05002295 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2296
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002297 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2298 status = _nfs4_proc_open_confirm(data);
2299 if (status != 0)
2300 return status;
2301 }
2302
2303 return status;
2304}
2305
Trond Myklebustf3792d62014-07-10 08:54:32 -04002306/*
2307 * Additional permission checks in order to distinguish between an
2308 * open for read, and an open for execute. This works around the
2309 * fact that NFSv4 OPEN treats read and execute permissions as being
2310 * the same.
2311 * Note that in the non-execute case, we want to turn off permission
2312 * checking if we just created a new file (POSIX open() semantics).
2313 */
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002314static int nfs4_opendata_access(struct rpc_cred *cred,
2315 struct nfs4_opendata *opendata,
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002316 struct nfs4_state *state, fmode_t fmode,
2317 int openflags)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002318{
2319 struct nfs_access_entry cache;
2320 u32 mask;
2321
2322 /* access call failed or for some reason the server doesn't
2323 * support any access modes -- defer access call until later */
2324 if (opendata->o_res.access_supported == 0)
2325 return 0;
2326
2327 mask = 0;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002328 /*
2329 * Use openflags to check for exec, because fmode won't
2330 * always have FMODE_EXEC set when file open for exec.
2331 */
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002332 if (openflags & __FMODE_EXEC) {
2333 /* ONLY check for exec rights */
2334 mask = MAY_EXEC;
Trond Myklebustf3792d62014-07-10 08:54:32 -04002335 } else if ((fmode & FMODE_READ) && !opendata->file_created)
Weston Andros Adamsonf8d9a892013-01-03 16:42:29 -05002336 mask = MAY_READ;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002337
2338 cache.cred = cred;
2339 cache.jiffies = jiffies;
2340 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2341 nfs_access_add_cache(state->inode, &cache);
2342
Weston Andros Adamsonbbd3a8e2012-10-02 14:49:51 -07002343 if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0)
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002344 return 0;
2345
Weston Andros Adamson998f40b2012-11-02 18:00:56 -04002346 return -EACCES;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002347}
2348
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002349/*
2350 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2351 */
2352static int _nfs4_proc_open(struct nfs4_opendata *data)
2353{
David Howells2b0143b2015-03-17 22:25:59 +00002354 struct inode *dir = d_inode(data->dir);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08002355 struct nfs_server *server = NFS_SERVER(dir);
2356 struct nfs_openargs *o_arg = &data->o_arg;
2357 struct nfs_openres *o_res = &data->o_res;
2358 int status;
2359
2360 status = nfs4_run_open_task(data, 0);
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002361 if (!data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002362 return status;
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07002363 if (status != 0) {
2364 if (status == -NFS4ERR_BADNAME &&
2365 !(o_arg->open_flags & O_CREAT))
2366 return -ENOENT;
2367 return status;
2368 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002369
Trond Myklebust6926afd2012-01-07 13:22:46 -05002370 nfs_fattr_map_and_free_names(server, &data->f_attr);
2371
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002372 if (o_arg->open_flags & O_CREAT) {
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002373 update_changeattr(dir, &o_res->cinfo);
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002374 if (o_arg->open_flags & O_EXCL)
2375 data->file_created = 1;
2376 else if (o_res->cinfo.before != o_res->cinfo.after)
2377 data->file_created = 1;
2378 }
Trond Myklebust0df5dd42010-04-11 16:48:44 -04002379 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2380 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01002382 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002384 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
Trond Myklebust88ac6b72017-04-15 19:20:01 -04002386 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2387 nfs4_sequence_free_slot(&o_res->seq_res);
Andy Adamson8935ef62014-05-23 06:22:59 -07002388 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
Trond Myklebust88ac6b72017-04-15 19:20:01 -04002389 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
Andy Adamsond83217c2011-03-01 01:34:17 +00002393static int nfs4_recover_expired_lease(struct nfs_server *server)
2394{
2395 return nfs4_client_recover_expired_lease(server->nfs_client);
2396}
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398/*
2399 * OPEN_EXPIRED:
2400 * reclaim state on the server after a network partition.
2401 * Assumes caller holds the appropriate lock
2402 */
Trond Myklebust539cd032007-06-05 11:46:42 -04002403static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002405 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01002406 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002408 opendata = nfs4_open_recoverdata_alloc(ctx, state,
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002409 NFS4_OPEN_CLAIM_FH);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04002410 if (IS_ERR(opendata))
2411 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002412 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04002413 if (ret == -ESTALE)
Al Viro3d4ff432011-06-22 18:40:12 -04002414 d_drop(ctx->dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002415 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01002416 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
2418
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002419static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00002420{
Trond Myklebust539cd032007-06-05 11:46:42 -04002421 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00002422 struct nfs4_exception exception = { };
2423 int err;
2424
2425 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04002426 err = _nfs4_open_expired(ctx, state);
Trond Myklebust42113a72013-08-12 16:19:27 -04002427 trace_nfs4_open_expired(ctx, 0, err);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002428 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2429 continue;
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002430 switch (err) {
2431 default:
2432 goto out;
2433 case -NFS4ERR_GRACE:
2434 case -NFS4ERR_DELAY:
2435 nfs4_handle_exception(server, err, &exception);
2436 err = 0;
2437 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00002438 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05002439out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00002440 return err;
2441}
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2444{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01002446 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Trond Myklebust864472e2006-01-03 09:55:15 +01002448 ctx = nfs4_state_find_open_context(state);
2449 if (IS_ERR(ctx))
Trond Myklebust91876b12013-03-28 14:01:33 -04002450 return -EAGAIN;
Trond Myklebust539cd032007-06-05 11:46:42 -04002451 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01002452 put_nfs_open_context(ctx);
2453 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454}
2455
Trond Myklebust41020b62016-09-22 13:38:58 -04002456static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2457 const nfs4_stateid *stateid)
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002458{
Trond Myklebust41020b62016-09-22 13:38:58 -04002459 nfs_remove_bad_delegation(state->inode, stateid);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002460 write_seqlock(&state->seqlock);
2461 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2462 write_sequnlock(&state->seqlock);
2463 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2464}
2465
2466static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2467{
2468 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
Trond Myklebust41020b62016-09-22 13:38:58 -04002469 nfs_finish_clear_delegation_stateid(state, NULL);
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03002470}
2471
2472static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2473{
2474 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2475 nfs40_clear_delegation_stateid(state);
2476 return nfs4_open_expired(sp, state);
2477}
2478
Trond Myklebust45870d62016-09-22 13:38:59 -04002479static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2480 nfs4_stateid *stateid,
2481 struct rpc_cred *cred)
2482{
2483 return -NFS4ERR_BAD_STATEID;
2484}
2485
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002486#if defined(CONFIG_NFS_V4_1)
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002487static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2488 nfs4_stateid *stateid,
2489 struct rpc_cred *cred)
2490{
2491 int status;
2492
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002493 switch (stateid->type) {
2494 default:
2495 break;
2496 case NFS4_INVALID_STATEID_TYPE:
2497 case NFS4_SPECIAL_STATEID_TYPE:
2498 return -NFS4ERR_BAD_STATEID;
2499 case NFS4_REVOKED_STATEID_TYPE:
2500 goto out_free;
2501 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002502
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002503 status = nfs41_test_stateid(server, stateid, cred);
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002504 switch (status) {
2505 case -NFS4ERR_EXPIRED:
2506 case -NFS4ERR_ADMIN_REVOKED:
2507 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002508 break;
2509 default:
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002510 return status;
2511 }
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002512out_free:
2513 /* Ack the revoked state to the server */
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04002514 nfs41_free_stateid(server, stateid, cred, true);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002515 return -NFS4ERR_EXPIRED;
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002516}
2517
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002518static void nfs41_check_delegation_stateid(struct nfs4_state *state)
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002519{
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002520 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002521 nfs4_stateid stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002522 struct nfs_delegation *delegation;
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002523 struct rpc_cred *cred;
2524 int status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002525
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002526 /* Get the delegation credential for use by test/free_stateid */
2527 rcu_read_lock();
2528 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002529 if (delegation == NULL) {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002530 rcu_read_unlock();
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002531 return;
2532 }
2533
2534 nfs4_stateid_copy(&stateid, &delegation->stateid);
Olga Kornievskaia461bbb92017-03-30 13:49:03 -04002535 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) ||
2536 !test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED,
2537 &delegation->flags)) {
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002538 rcu_read_unlock();
Trond Myklebust41020b62016-09-22 13:38:58 -04002539 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebust4c8e5442016-09-22 13:38:55 -04002540 return;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002541 }
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002542
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002543 cred = get_rpccred(delegation->cred);
2544 rcu_read_unlock();
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002545 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002546 trace_nfs4_test_delegation_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002547 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
Trond Myklebust41020b62016-09-22 13:38:58 -04002548 nfs_finish_clear_delegation_stateid(state, &stateid);
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002549
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002550 put_rpccred(cred);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002551}
2552
2553/**
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002554 * nfs41_check_expired_locks - possibly free a lock stateid
2555 *
2556 * @state: NFSv4 state for an inode
2557 *
2558 * Returns NFS_OK if recovery for this stateid is now finished.
2559 * Otherwise a negative NFS4ERR value is returned.
2560 */
2561static int nfs41_check_expired_locks(struct nfs4_state *state)
2562{
2563 int status, ret = NFS_OK;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002564 struct nfs4_lock_state *lsp, *prev = NULL;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002565 struct nfs_server *server = NFS_SERVER(state->inode);
2566
2567 if (!test_bit(LK_STATE_IN_USE, &state->flags))
2568 goto out;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002569
2570 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002571 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2572 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2573 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
2574
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002575 atomic_inc(&lsp->ls_count);
2576 spin_unlock(&state->state_lock);
2577
2578 nfs4_put_lock_state(prev);
2579 prev = lsp;
2580
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002581 status = nfs41_test_and_free_expired_stateid(server,
2582 &lsp->ls_stateid,
2583 cred);
2584 trace_nfs4_test_lock_stateid(state, lsp, status);
2585 if (status == -NFS4ERR_EXPIRED ||
2586 status == -NFS4ERR_BAD_STATEID) {
2587 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002588 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002589 if (!recover_lost_locks)
2590 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2591 } else if (status != NFS_OK) {
2592 ret = status;
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002593 nfs4_put_lock_state(prev);
2594 goto out;
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002595 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002596 spin_lock(&state->state_lock);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002597 }
Benjamin Coddingtond75a6a02016-11-18 21:11:39 -05002598 }
2599 spin_unlock(&state->state_lock);
2600 nfs4_put_lock_state(prev);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002601out:
2602 return ret;
2603}
2604
2605/**
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002606 * nfs41_check_open_stateid - possibly free an open stateid
2607 *
2608 * @state: NFSv4 state for an inode
2609 *
2610 * Returns NFS_OK if recovery for this stateid is now finished.
2611 * Otherwise a negative NFS4ERR value is returned.
2612 */
2613static int nfs41_check_open_stateid(struct nfs4_state *state)
2614{
2615 struct nfs_server *server = NFS_SERVER(state->inode);
Bryan Schumakerfcb6d9c2012-09-26 15:25:53 -04002616 nfs4_stateid *stateid = &state->open_stateid;
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04002617 struct rpc_cred *cred = state->owner->so_cred;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002618 int status;
2619
Trond Myklebustb134fc42016-09-22 13:39:16 -04002620 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) {
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002621 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) {
2622 if (nfs4_have_delegation(state->inode, state->state))
2623 return NFS_OK;
2624 return -NFS4ERR_OPENMODE;
2625 }
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002626 return -NFS4ERR_BAD_STATEID;
Trond Myklebustb134fc42016-09-22 13:39:16 -04002627 }
Trond Myklebust4586f6e2016-09-22 13:38:57 -04002628 status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
Trond Myklebust08cb47f2013-08-20 21:59:40 -04002629 trace_nfs4_test_open_stateid(state, NULL, status);
Trond Myklebustf7a62ad2016-09-22 13:39:02 -04002630 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002631 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2632 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2633 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebustfd068b22013-04-22 11:29:51 -04002634 clear_bit(NFS_OPEN_STATE, &state->flags);
Trond Myklebust67dd4832016-09-22 13:39:17 -04002635 stateid->type = NFS4_INVALID_STATEID_TYPE;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002636 }
Trond Myklebust8a64c4e2016-09-22 13:39:21 -04002637 if (status != NFS_OK)
2638 return status;
2639 if (nfs_open_stateid_recover_openmode(state))
2640 return -NFS4ERR_OPENMODE;
2641 return NFS_OK;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002642}
2643
2644static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2645{
Chuck Levereb64cf92012-07-11 16:30:05 -04002646 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05002647
Trond Myklebust0c116ca2014-11-12 14:44:49 -05002648 nfs41_check_delegation_stateid(state);
Trond Myklebustc5896fc2016-09-22 13:39:03 -04002649 status = nfs41_check_expired_locks(state);
2650 if (status != NFS_OK)
2651 return status;
Chuck Lever3e60ffd2012-07-11 16:30:14 -04002652 status = nfs41_check_open_stateid(state);
Chuck Levereb64cf92012-07-11 16:30:05 -04002653 if (status != NFS_OK)
2654 status = nfs4_open_expired(sp, state);
2655 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04002656}
2657#endif
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002660 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2661 * fields corresponding to attributes that were used to store the verifier.
2662 * Make sure we clobber those fields in the later setattr call
2663 */
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002664static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
2665 struct iattr *sattr, struct nfs4_label **label)
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002666{
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002667 const u32 *attrset = opendata->o_res.attrset;
2668
2669 if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002670 !(sattr->ia_valid & ATTR_ATIME_SET))
2671 sattr->ia_valid |= ATTR_ATIME;
2672
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002673 if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002674 !(sattr->ia_valid & ATTR_MTIME_SET))
2675 sattr->ia_valid |= ATTR_MTIME;
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002676
2677 /* Except MODE, it seems harmless of setting twice. */
Benjamin Coddington56379492017-01-24 11:34:20 -05002678 if (opendata->o_arg.createmode != NFS4_CREATE_EXCLUSIVE &&
2679 attrset[1] & FATTR4_WORD1_MODE)
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002680 sattr->ia_valid &= ~ATTR_MODE;
2681
2682 if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL)
2683 *label = NULL;
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002684}
2685
Trond Myklebustc21443c2013-02-07 14:26:21 -05002686static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2687 fmode_t fmode,
2688 int flags,
Trond Myklebust3efb9722013-05-29 13:17:04 -04002689 struct nfs_open_context *ctx)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002690{
2691 struct nfs4_state_owner *sp = opendata->owner;
2692 struct nfs_server *server = sp->so_server;
Trond Myklebust275bb302013-05-29 13:11:28 -04002693 struct dentry *dentry;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002694 struct nfs4_state *state;
2695 unsigned int seq;
2696 int ret;
2697
2698 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2699
2700 ret = _nfs4_proc_open(opendata);
Trond Myklebustdca780012014-10-23 19:23:03 +03002701 if (ret != 0)
Trond Myklebustc21443c2013-02-07 14:26:21 -05002702 goto out;
2703
2704 state = nfs4_opendata_to_nfs4_state(opendata);
2705 ret = PTR_ERR(state);
2706 if (IS_ERR(state))
2707 goto out;
Trond Myklebust04653392017-02-08 11:29:46 -05002708 ctx->state = state;
Trond Myklebustc21443c2013-02-07 14:26:21 -05002709 if (server->caps & NFS_CAP_POSIX_LOCK)
2710 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Jeff Laytona8ce3772016-09-17 18:17:35 -04002711 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
2712 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
Trond Myklebustc21443c2013-02-07 14:26:21 -05002713
Trond Myklebust275bb302013-05-29 13:11:28 -04002714 dentry = opendata->dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002715 if (d_really_is_negative(dentry)) {
Al Viro668d0cd2016-03-08 12:44:17 -05002716 struct dentry *alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002717 d_drop(dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002718 alias = d_exact_alias(dentry, state->inode);
2719 if (!alias)
2720 alias = d_splice_alias(igrab(state->inode), dentry);
2721 /* d_splice_alias() can't fail here - it's a non-directory */
2722 if (alias) {
Trond Myklebust275bb302013-05-29 13:11:28 -04002723 dput(ctx->dentry);
Al Viro668d0cd2016-03-08 12:44:17 -05002724 ctx->dentry = dentry = alias;
Trond Myklebust275bb302013-05-29 13:11:28 -04002725 }
2726 nfs_set_verifier(dentry,
David Howells2b0143b2015-03-17 22:25:59 +00002727 nfs_save_change_attribute(d_inode(opendata->dir)));
Trond Myklebust275bb302013-05-29 13:11:28 -04002728 }
2729
Trond Myklebustc21443c2013-02-07 14:26:21 -05002730 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags);
2731 if (ret != 0)
2732 goto out;
2733
David Howells2b0143b2015-03-17 22:25:59 +00002734 if (d_inode(dentry) == state->inode) {
Trond Myklebustc45ffdd2013-05-29 13:34:46 -04002735 nfs_inode_attach_open_context(ctx);
2736 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
2737 nfs4_schedule_stateid_recovery(server, state);
2738 }
Trond Myklebustc21443c2013-02-07 14:26:21 -05002739out:
2740 return ret;
2741}
2742
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002743/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01002744 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 */
Andy Adamson82be4172012-05-23 05:02:35 -04002746static int _nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002747 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002748 int flags,
2749 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002750 struct nfs4_label *label,
2751 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752{
2753 struct nfs4_state_owner *sp;
2754 struct nfs4_state *state = NULL;
2755 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002756 struct nfs4_opendata *opendata;
Trond Myklebust4197a052013-05-29 12:37:49 -04002757 struct dentry *dentry = ctx->dentry;
2758 struct rpc_cred *cred = ctx->cred;
2759 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
2760 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002761 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
David Quigley1775fd32013-05-22 12:50:42 -04002762 struct nfs4_label *olabel = NULL;
Trond Myklebustaac00a82007-07-05 19:02:21 -04002763 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 status = -ENOMEM;
Trond Myklebustd1e284d2012-01-17 22:04:24 -05002767 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
2768 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
2770 goto out_err;
2771 }
Trond Myklebust58d97142006-01-03 09:55:24 +01002772 status = nfs4_recover_expired_lease(server);
2773 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002774 goto err_put_state_owner;
David Howells2b0143b2015-03-17 22:25:59 +00002775 if (d_really_is_positive(dentry))
2776 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01002777 status = -ENOMEM;
David Howells2b0143b2015-03-17 22:25:59 +00002778 if (d_really_is_positive(dentry))
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002779 claim = NFS4_OPEN_CLAIM_FH;
Trond Myklebust4a1c0892013-03-15 14:57:33 -04002780 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr,
David Quigley1775fd32013-05-22 12:50:42 -04002781 label, claim, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002782 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05002783 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
David Quigley14c43f72013-05-22 12:50:43 -04002785 if (label) {
2786 olabel = nfs4_label_alloc(server, GFP_KERNEL);
2787 if (IS_ERR(olabel)) {
2788 status = PTR_ERR(olabel);
2789 goto err_opendata_put;
2790 }
2791 }
2792
Trond Myklebuste911b812014-03-26 13:24:37 -07002793 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
2794 if (!opendata->f_attr.mdsthreshold) {
2795 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
2796 if (!opendata->f_attr.mdsthreshold)
2797 goto err_free_label;
2798 }
Trond Myklebust1549210f2012-06-05 09:16:47 -04002799 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
Andy Adamson82be4172012-05-23 05:02:35 -04002800 }
David Howells2b0143b2015-03-17 22:25:59 +00002801 if (d_really_is_positive(dentry))
2802 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
Trond Myklebustaac00a82007-07-05 19:02:21 -04002803
Trond Myklebust3efb9722013-05-29 13:17:04 -04002804 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx);
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002805 if (status != 0)
David Quigley14c43f72013-05-22 12:50:43 -04002806 goto err_free_label;
Trond Myklebust3efb9722013-05-29 13:17:04 -04002807 state = ctx->state;
Weston Andros Adamson6168f622012-09-10 14:00:46 -04002808
NeilBrownefcbc042015-07-30 13:00:56 +10002809 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
Trond Myklebust549b19c2013-04-16 18:42:34 -04002810 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
Kinglong Mee5334c5b2015-08-26 21:13:37 +08002811 nfs4_exclusive_attrset(opendata, sattr, &label);
Tigran Mkrtchyana1d1c4f2016-05-12 11:16:38 +02002812 /*
2813 * send create attributes which was not set by open
2814 * with an extra setattr.
2815 */
2816 if (sattr->ia_valid & NFS4_VALID_ATTRS) {
2817 nfs_fattr_init(opendata->o_res.f_attr);
2818 status = nfs4_do_setattr(state->inode, cred,
2819 opendata->o_res.f_attr, sattr,
2820 state, label, olabel);
2821 if (status == 0) {
2822 nfs_setattr_update_inode(state->inode, sattr,
2823 opendata->o_res.f_attr);
2824 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
2825 }
David Quigley1775fd32013-05-22 12:50:42 -04002826 }
Trond Myklebust0ab64e02010-04-16 16:22:51 -04002827 }
Kinglong Meec5c3fb52015-08-26 21:11:39 +08002828 if (opened && opendata->file_created)
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002829 *opened |= FILE_CREATED;
Andy Adamson82be4172012-05-23 05:02:35 -04002830
Trond Myklebuste911b812014-03-26 13:24:37 -07002831 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
Andy Adamson82be4172012-05-23 05:02:35 -04002832 *ctx_th = opendata->f_attr.mdsthreshold;
Trond Myklebuste911b812014-03-26 13:24:37 -07002833 opendata->f_attr.mdsthreshold = NULL;
2834 }
Andy Adamson82be4172012-05-23 05:02:35 -04002835
David Quigley14c43f72013-05-22 12:50:43 -04002836 nfs4_label_free(olabel);
2837
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002838 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return 0;
David Quigley14c43f72013-05-22 12:50:43 -04002841err_free_label:
2842 nfs4_label_free(olabel);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04002843err_opendata_put:
2844 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01002845err_put_state_owner:
2846 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return status;
2849}
2850
2851
Andy Adamson82be4172012-05-23 05:02:35 -04002852static struct nfs4_state *nfs4_do_open(struct inode *dir,
Trond Myklebust4197a052013-05-29 12:37:49 -04002853 struct nfs_open_context *ctx,
Andy Adamson82be4172012-05-23 05:02:35 -04002854 int flags,
2855 struct iattr *sattr,
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002856 struct nfs4_label *label,
2857 int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002859 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 struct nfs4_exception exception = { };
2861 struct nfs4_state *res;
2862 int status;
2863
2864 do {
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04002865 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened);
Trond Myklebust3efb9722013-05-29 13:17:04 -04002866 res = ctx->state;
Trond Myklebust42113a72013-08-12 16:19:27 -04002867 trace_nfs4_open_file(ctx, flags, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (status == 0)
2869 break;
2870 /* NOTE: BAD_SEQID means the server and client disagree about the
2871 * book-keeping w.r.t. state-changing operations
2872 * (OPEN/CLOSE/LOCK/LOCKU...)
2873 * It is actually a sign of a bug on the client or on the server.
2874 *
2875 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07002876 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 * have unhashed the old state_owner for us, and that we can
2878 * therefore safely retry using a new one. We should still warn
2879 * the user though...
2880 */
2881 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust9a3ba432012-03-12 18:01:48 -04002882 pr_warn_ratelimited("NFS: v4 server %s "
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04002883 " returned a bad sequence-id error!\n",
2884 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 exception.retry = 1;
2886 continue;
2887 }
Trond Myklebust550f5742005-10-18 14:20:21 -07002888 /*
2889 * BAD_STATEID on OPEN means that the server cancelled our
2890 * state before it received the OPEN_CONFIRM.
2891 * Recover by retrying the request as per the discussion
2892 * on Page 181 of RFC3530.
2893 */
2894 if (status == -NFS4ERR_BAD_STATEID) {
2895 exception.retry = 1;
2896 continue;
2897 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04002898 if (status == -EAGAIN) {
2899 /* We must have found a delegation */
2900 exception.retry = 1;
2901 continue;
2902 }
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04002903 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
2904 continue;
2905 res = ERR_PTR(nfs4_handle_exception(server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 status, &exception));
2907 } while (exception.retry);
2908 return res;
2909}
2910
Trond Myklebust8487c472016-06-26 08:44:35 -04002911static int _nfs4_do_setattr(struct inode *inode,
2912 struct nfs_setattrargs *arg,
2913 struct nfs_setattrres *res,
2914 struct rpc_cred *cred,
2915 struct nfs4_state *state)
2916{
2917 struct nfs_server *server = NFS_SERVER(inode);
2918 struct rpc_message msg = {
2919 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2920 .rpc_argp = arg,
2921 .rpc_resp = res,
2922 .rpc_cred = cred,
2923 };
2924 struct rpc_cred *delegation_cred = NULL;
2925 unsigned long timestamp = jiffies;
2926 fmode_t fmode;
2927 bool truncate;
2928 int status;
2929
2930 nfs_fattr_init(res->fattr);
2931
2932 /* Servers should only apply open mode checks for file size changes */
2933 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
2934 fmode = truncate ? FMODE_WRITE : FMODE_READ;
2935
2936 if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) {
2937 /* Use that stateid */
2938 } else if (truncate && state != NULL) {
2939 struct nfs_lockowner lockowner = {
2940 .l_owner = current->files,
2941 .l_pid = current->tgid,
2942 };
2943 if (!nfs4_valid_open_stateid(state))
2944 return -EBADF;
2945 if (nfs4_select_rw_stateid(state, FMODE_WRITE, &lockowner,
2946 &arg->stateid, &delegation_cred) == -EIO)
2947 return -EBADF;
2948 } else
2949 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
2950 if (delegation_cred)
2951 msg.rpc_cred = delegation_cred;
2952
2953 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
2954
2955 put_rpccred(delegation_cred);
2956 if (status == 0 && state != NULL)
2957 renew_lease(server, timestamp);
2958 trace_nfs4_setattr(inode, &arg->stateid, status);
2959 return status;
2960}
2961
2962static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2963 struct nfs_fattr *fattr, struct iattr *sattr,
2964 struct nfs4_state *state, struct nfs4_label *ilabel,
2965 struct nfs4_label *olabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002967 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002969 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 .iap = sattr,
2971 .server = server,
2972 .bitmask = server->attr_bitmask,
David Quigley1775fd32013-05-22 12:50:42 -04002973 .label = ilabel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 };
2975 struct nfs_setattrres res = {
2976 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04002977 .label = olabel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 .server = server,
2979 };
Trond Myklebust8487c472016-06-26 08:44:35 -04002980 struct nfs4_exception exception = {
2981 .state = state,
2982 .inode = inode,
2983 .stateid = &arg.stateid,
2984 };
2985 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
David Quigleyaa9c2662013-05-22 12:50:44 -04002987 arg.bitmask = nfs4_bitmask(server, ilabel);
2988 if (ilabel)
2989 arg.bitmask = nfs4_bitmask(server, olabel);
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 do {
Trond Myklebust8487c472016-06-26 08:44:35 -04002992 err = _nfs4_do_setattr(inode, &arg, &res, cred, state);
Trond Myklebust451146b2012-04-18 16:29:11 -04002993 switch (err) {
2994 case -NFS4ERR_OPENMODE:
Trond Myklebust721ccfb2013-04-29 11:11:58 -04002995 if (!(sattr->ia_valid & ATTR_SIZE)) {
2996 pr_warn_once("NFSv4: server %s is incorrectly "
2997 "applying open mode checks to "
2998 "a SETATTR that is not "
2999 "changing file size.\n",
3000 server->nfs_client->cl_hostname);
3001 }
Trond Myklebust451146b2012-04-18 16:29:11 -04003002 if (state && !(state->state & FMODE_WRITE)) {
3003 err = -EBADF;
3004 if (sattr->ia_valid & ATTR_OPEN)
3005 err = -EACCES;
3006 goto out;
3007 }
3008 }
3009 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 } while (exception.retry);
Trond Myklebust451146b2012-04-18 16:29:11 -04003011out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 return err;
3013}
3014
Peng Tao500d7012015-09-22 11:35:22 +08003015static bool
3016nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
3017{
3018 if (inode == NULL || !nfs_have_layout(inode))
3019 return false;
3020
3021 return pnfs_wait_on_layoutreturn(inode, task);
3022}
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024struct nfs4_closedata {
3025 struct inode *inode;
3026 struct nfs4_state *state;
3027 struct nfs_closeargs arg;
3028 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003029 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003030 unsigned long timestamp;
Fred Isamanf7e89172011-01-06 11:36:32 +00003031 bool roc;
3032 u32 roc_barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033};
3034
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003035static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07003036{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003037 struct nfs4_closedata *calldata = data;
3038 struct nfs4_state_owner *sp = calldata->state->owner;
Al Viro643168c2011-06-22 18:20:23 -04003039 struct super_block *sb = calldata->state->inode->i_sb;
Trond Myklebust95121352005-10-18 14:20:12 -07003040
Fred Isamanf7e89172011-01-06 11:36:32 +00003041 if (calldata->roc)
3042 pnfs_roc_release(calldata->state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07003043 nfs4_put_open_state(calldata->state);
3044 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07003045 nfs4_put_state_owner(sp);
Trond Myklebust322b2b92013-01-11 16:39:51 -05003046 nfs_sb_deactive(sb);
Trond Myklebust95121352005-10-18 14:20:12 -07003047 kfree(calldata);
3048}
3049
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003050static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003052 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 struct nfs_server *server = NFS_SERVER(calldata->inode);
Trond Myklebust412f6c42014-08-25 22:09:08 -04003055 nfs4_stateid *res_stateid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Chuck Levera3ca5652012-03-01 17:00:40 -05003057 dprintk("%s: begin!\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04003058 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3059 return;
Trond Myklebust42113a72013-08-12 16:19:27 -04003060 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 /* hmm. we are done with the inode, and in the process of freeing
3062 * the state_owner. we keep this around to process errors
3063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 switch (task->tk_status) {
3065 case 0:
Trond Myklebust412f6c42014-08-25 22:09:08 -04003066 res_stateid = &calldata->res.stateid;
Trond Myklebust3c13cb52015-08-18 23:45:13 -05003067 if (calldata->roc)
Fred Isamanf7e89172011-01-06 11:36:32 +00003068 pnfs_roc_set_barrier(state->inode,
3069 calldata->roc_barrier);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003070 renew_lease(server, calldata->timestamp);
Trond Myklebust412f6c42014-08-25 22:09:08 -04003071 break;
Trond Myklebust69794ad2013-11-20 12:57:19 -05003072 case -NFS4ERR_ADMIN_REVOKED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 case -NFS4ERR_STALE_STATEID:
Trond Myklebust26d36302016-09-22 13:39:05 -04003074 case -NFS4ERR_EXPIRED:
3075 nfs4_free_revoked_stateid(server,
3076 &calldata->arg.stateid,
3077 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003078 case -NFS4ERR_OLD_STATEID:
3079 case -NFS4ERR_BAD_STATEID:
Trond Myklebust566fcec2015-01-23 15:32:46 -05003080 if (!nfs4_stateid_match(&calldata->arg.stateid,
Anna Schumaker369d6b72015-03-02 16:46:09 -05003081 &state->open_stateid)) {
Trond Myklebust566fcec2015-01-23 15:32:46 -05003082 rpc_restart_call_prepare(task);
3083 goto out_release;
3084 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003085 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10003088 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) {
Trond Myklebust72211db2009-12-15 14:47:36 -05003089 rpc_restart_call_prepare(task);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003090 goto out_release;
3091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
Trond Myklebust4a1e2fe2015-08-30 18:37:59 -07003093 nfs_clear_open_stateid(state, &calldata->arg.stateid,
3094 res_stateid, calldata->arg.fmode);
Trond Myklebust69794ad2013-11-20 12:57:19 -05003095out_release:
Trond Myklebust72211db2009-12-15 14:47:36 -05003096 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebust516a6af2005-10-27 22:12:41 -04003097 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Chuck Levera3ca5652012-03-01 17:00:40 -05003098 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099}
3100
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003101static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003103 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07003104 struct nfs4_state *state = calldata->state;
Trond Myklebust7fdab062012-09-20 20:15:57 -04003105 struct inode *inode = calldata->inode;
Trond Myklebustaee7af32014-08-25 22:33:12 -04003106 bool is_rdonly, is_wronly, is_rdwr;
Trond Myklebust88069f72009-12-08 08:33:16 -05003107 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07003108
Chuck Levera3ca5652012-03-01 17:00:40 -05003109 dprintk("%s: begin!\n", __func__);
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003110 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003111 goto out_wait;
Trond Myklebust003707c2007-07-05 18:07:55 -04003112
Trond Myklebust88069f72009-12-08 08:33:16 -05003113 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust4cecb762005-11-04 15:32:58 -05003114 spin_lock(&state->owner->so_lock);
Trond Myklebustaee7af32014-08-25 22:33:12 -04003115 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3116 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3117 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
Anna Schumaker369d6b72015-03-02 16:46:09 -05003118 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04003119 /* Calculate the change in open mode */
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003120 calldata->arg.fmode = 0;
Trond Myklebuste7616922006-01-03 09:55:13 +01003121 if (state->n_rdwr == 0) {
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003122 if (state->n_rdonly == 0)
3123 call_close |= is_rdonly;
3124 else if (is_rdonly)
3125 calldata->arg.fmode |= FMODE_READ;
3126 if (state->n_wronly == 0)
3127 call_close |= is_wronly;
3128 else if (is_wronly)
3129 calldata->arg.fmode |= FMODE_WRITE;
Trond Myklebuste547f262016-06-25 19:19:28 -04003130 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3131 call_close |= is_rdwr;
Trond Myklebustcd9288f2014-09-18 11:51:32 -04003132 } else if (is_rdwr)
3133 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3134
Trond Myklebust5cc78612016-11-14 11:19:56 -05003135 if (!nfs4_valid_open_stateid(state) ||
3136 test_bit(NFS_OPEN_STATE, &state->flags) == 0)
Trond Myklebust5d422302013-03-14 16:57:48 -04003137 call_close = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05003138 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05003139
3140 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003141 /* Note: exit _without_ calling nfs4_close_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003142 goto out_no_action;
Trond Myklebust95121352005-10-18 14:20:12 -07003143 }
Trond Myklebust88069f72009-12-08 08:33:16 -05003144
Peng Tao500d7012015-09-22 11:35:22 +08003145 if (nfs4_wait_on_layoutreturn(inode, task)) {
3146 nfs_release_seqid(calldata->arg.seqid);
3147 goto out_wait;
3148 }
3149
Trond Myklebust3c13cb52015-08-18 23:45:13 -05003150 if (calldata->arg.fmode == 0)
Trond Myklebust88069f72009-12-08 08:33:16 -05003151 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Trond Myklebust3c13cb52015-08-18 23:45:13 -05003152 if (calldata->roc)
3153 pnfs_roc_get_barrier(inode, &calldata->roc_barrier);
3154
Trond Myklebust6ae37332015-01-30 14:21:14 -05003155 calldata->arg.share_access =
3156 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3157 calldata->arg.fmode, 0);
Trond Myklebust88069f72009-12-08 08:33:16 -05003158
Trond Myklebust516a6af2005-10-27 22:12:41 -04003159 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003160 calldata->timestamp = jiffies;
Trond Myklebust7fdab062012-09-20 20:15:57 -04003161 if (nfs4_setup_sequence(NFS_SERVER(inode),
Trond Myklebust9d12b212012-01-17 22:04:25 -05003162 &calldata->arg.seq_args,
3163 &calldata->res.seq_res,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04003164 task) != 0)
3165 nfs_release_seqid(calldata->arg.seqid);
Chuck Levera3ca5652012-03-01 17:00:40 -05003166 dprintk("%s: done!\n", __func__);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05003167 return;
3168out_no_action:
3169 task->tk_action = NULL;
3170out_wait:
3171 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172}
3173
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003174static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003175 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003176 .rpc_call_done = nfs4_close_done,
3177 .rpc_release = nfs4_free_closedata,
3178};
3179
Peng Taofe08c542014-07-03 13:05:01 +08003180static bool nfs4_roc(struct inode *inode)
3181{
Trond Myklebust40dd4b72015-01-24 13:54:37 -05003182 if (!nfs_have_layout(inode))
Peng Taofe08c542014-07-03 13:05:01 +08003183 return false;
Peng Taofe08c542014-07-03 13:05:01 +08003184 return pnfs_roc(inode);
3185}
3186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187/*
3188 * It is possible for data to be read/written from a mem-mapped file
3189 * after the sys_close call (which hits the vfs layer as a flush).
3190 * This means that we can't safely call nfsv4 close on a file until
3191 * the inode is cleared. This in turn means that we are not good
3192 * NFSv4 citizens - we do not indicate to the server to update the file's
3193 * share state even when we are done with one of the three share
3194 * stateid's in the inode.
3195 *
3196 * NOTE: Caller must be holding the sp->so_owner semaphore!
3197 */
Trond Myklebust1f7977c2012-09-20 20:31:51 -04003198int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003200 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust63f5f792015-01-23 19:19:25 -05003201 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04003203 struct nfs4_state_owner *sp = state->owner;
3204 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003205 struct rpc_message msg = {
3206 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3207 .rpc_cred = state->owner->so_cred,
3208 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003209 struct rpc_task_setup task_setup_data = {
3210 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003211 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003212 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003213 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003214 .flags = RPC_TASK_ASYNC,
3215 };
Trond Myklebust95121352005-10-18 14:20:12 -07003216 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04003218 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3219 &task_setup_data.rpc_client, &msg);
3220
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003221 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07003223 goto out;
Chuck Levera9c92d62013-08-09 12:48:18 -04003224 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003225 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04003227 calldata->arg.fh = NFS_FH(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 /* Serialization for the sequence id */
Trond Myklebust63f5f792015-01-23 19:19:25 -05003229 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3230 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05003231 if (IS_ERR(calldata->arg.seqid))
Trond Myklebust95121352005-10-18 14:20:12 -07003232 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05003233 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04003234 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003235 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003236 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04003237 calldata->res.server = server;
Peng Taofe08c542014-07-03 13:05:01 +08003238 calldata->roc = nfs4_roc(state->inode);
Al Viro643168c2011-06-22 18:20:23 -04003239 nfs_sb_active(calldata->inode->i_sb);
Trond Myklebust95121352005-10-18 14:20:12 -07003240
Trond Myklebust1174dd12010-12-21 10:52:24 -05003241 msg.rpc_argp = &calldata->arg;
3242 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003243 task_setup_data.callback_data = calldata;
3244 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003245 if (IS_ERR(task))
3246 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003247 status = 0;
3248 if (wait)
3249 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04003250 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04003251 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07003252out_free_calldata:
3253 kfree(calldata);
3254out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04003255 nfs4_put_open_state(state);
3256 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07003257 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
3259
Trond Myklebust2b484292010-09-17 10:56:51 -04003260static struct inode *
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003261nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3262 int open_flags, struct iattr *attr, int *opened)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 struct nfs4_state *state;
David Quigleyaa9c2662013-05-22 12:50:44 -04003265 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
3266
3267 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Trond Myklebust565277f2007-10-15 18:17:53 -04003269 /* Protect against concurrent sillydeletes */
Trond Myklebust5bc2afc2013-09-23 18:01:28 -04003270 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
David Quigleyaa9c2662013-05-22 12:50:44 -04003271
3272 nfs4_label_release_security(label);
3273
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04003274 if (IS_ERR(state))
3275 return ERR_CAST(state);
Trond Myklebust275bb302013-05-29 13:11:28 -04003276 return state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
Trond Myklebust1185a552009-12-03 15:54:02 -05003279static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003280{
3281 if (ctx->state == NULL)
3282 return;
3283 if (is_sync)
Al Viro643168c2011-06-22 18:20:23 -04003284 nfs4_close_sync(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003285 else
Al Viro643168c2011-06-22 18:20:23 -04003286 nfs4_close_state(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04003287}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Trond Myklebustb944dba2013-11-04 15:20:20 -05003289#define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3290#define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
J. Bruce Fields999e5682014-06-03 17:33:35 -04003291#define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_SECURITY_LABEL - 1UL)
Trond Myklebustb944dba2013-11-04 15:20:20 -05003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3294{
Kinglong Mee8c612822015-08-26 21:12:58 +08003295 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
Benny Halevy43652ad2009-04-01 09:21:54 -04003296 struct nfs4_server_caps_arg args = {
3297 .fhandle = fhandle,
Kinglong Mee8c612822015-08-26 21:12:58 +08003298 .bitmask = bitmask,
Benny Halevy43652ad2009-04-01 09:21:54 -04003299 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 struct nfs4_server_caps_res res = {};
3301 struct rpc_message msg = {
3302 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04003303 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 .rpc_resp = &res,
3305 };
3306 int status;
3307
Kinglong Mee8c612822015-08-26 21:12:58 +08003308 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3309 FATTR4_WORD0_FH_EXPIRE_TYPE |
3310 FATTR4_WORD0_LINK_SUPPORT |
3311 FATTR4_WORD0_SYMLINK_SUPPORT |
3312 FATTR4_WORD0_ACLSUPPORT;
3313 if (minorversion)
3314 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3315
Bryan Schumaker7c513052011-03-24 17:12:24 +00003316 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (status == 0) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003318 /* Sanity check the server answers */
Kinglong Mee8c612822015-08-26 21:12:58 +08003319 switch (minorversion) {
Trond Myklebustb944dba2013-11-04 15:20:20 -05003320 case 0:
3321 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3322 res.attr_bitmask[2] = 0;
3323 break;
3324 case 1:
3325 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3326 break;
3327 case 2:
3328 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04003331 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
3332 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
3333 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
3334 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
Trond Myklebustb944dba2013-11-04 15:20:20 -05003335 NFS_CAP_CTIME|NFS_CAP_MTIME|
3336 NFS_CAP_SECURITY_LABEL);
Malahal Naineni7dd7d952014-01-23 08:54:55 -06003337 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3338 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 server->caps |= NFS_CAP_ACLS;
3340 if (res.has_links != 0)
3341 server->caps |= NFS_CAP_HARDLINKS;
3342 if (res.has_symlinks != 0)
3343 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04003344 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
3345 server->caps |= NFS_CAP_FILEID;
3346 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
3347 server->caps |= NFS_CAP_MODE;
3348 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
3349 server->caps |= NFS_CAP_NLINK;
3350 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
3351 server->caps |= NFS_CAP_OWNER;
3352 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
3353 server->caps |= NFS_CAP_OWNER_GROUP;
3354 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
3355 server->caps |= NFS_CAP_ATIME;
3356 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
3357 server->caps |= NFS_CAP_CTIME;
3358 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
3359 server->caps |= NFS_CAP_MTIME;
David Quigleyaa9c2662013-05-22 12:50:44 -04003360#ifdef CONFIG_NFS_V4_SECURITY_LABEL
3361 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3362 server->caps |= NFS_CAP_SECURITY_LABEL;
3363#endif
3364 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3365 sizeof(server->attr_bitmask));
Trond Myklebustb944dba2013-11-04 15:20:20 -05003366 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04003367
Trond Myklebusta65318b2009-03-11 14:10:28 -04003368 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3369 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3370 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Trond Myklebustb944dba2013-11-04 15:20:20 -05003371 server->cache_consistency_bitmask[2] = 0;
Kinglong Mee8c612822015-08-26 21:12:58 +08003372 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3373 sizeof(server->exclcreat_bitmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 server->acl_bitmask = res.acl_bitmask;
Chuck Lever264e6352012-03-01 17:02:05 -05003375 server->fh_expire_type = res.fh_expire_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return status;
3379}
3380
Trond Myklebust55a97592006-06-09 09:34:19 -04003381int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382{
3383 struct nfs4_exception exception = { };
3384 int err;
3385 do {
3386 err = nfs4_handle_exception(server,
3387 _nfs4_server_capabilities(server, fhandle),
3388 &exception);
3389 } while (exception.retry);
3390 return err;
3391}
3392
3393static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3394 struct nfs_fsinfo *info)
3395{
David Quigleyaa9c2662013-05-22 12:50:44 -04003396 u32 bitmask[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 struct nfs4_lookup_root_arg args = {
David Quigleyaa9c2662013-05-22 12:50:44 -04003398 .bitmask = bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 };
3400 struct nfs4_lookup_res res = {
3401 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04003402 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 .fh = fhandle,
3404 };
3405 struct rpc_message msg = {
3406 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
3407 .rpc_argp = &args,
3408 .rpc_resp = &res,
3409 };
Benny Halevy008f55d2009-04-01 09:22:50 -04003410
David Quigleyaa9c2662013-05-22 12:50:44 -04003411 bitmask[0] = nfs4_fattr_bitmap[0];
3412 bitmask[1] = nfs4_fattr_bitmap[1];
3413 /*
3414 * Process the label in the upcoming getfattr
3415 */
3416 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
3417
Trond Myklebust0e574af2005-10-27 22:12:38 -04003418 nfs_fattr_init(info->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003419 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420}
3421
3422static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3423 struct nfs_fsinfo *info)
3424{
3425 struct nfs4_exception exception = { };
3426 int err;
3427 do {
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003428 err = _nfs4_lookup_root(server, fhandle, info);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003429 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003430 switch (err) {
3431 case 0:
3432 case -NFS4ERR_WRONGSEC:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003433 goto out;
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003434 default:
3435 err = nfs4_handle_exception(server, err, &exception);
3436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04003438out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return err;
3440}
3441
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003442static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3443 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3444{
Trond Myklebustc2190662013-08-26 19:23:04 -04003445 struct rpc_auth_create_args auth_args = {
3446 .pseudoflavor = flavor,
3447 };
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003448 struct rpc_auth *auth;
3449 int ret;
3450
Trond Myklebustc2190662013-08-26 19:23:04 -04003451 auth = rpcauth_create(&auth_args, server->client);
Wei Yongjune8d920c2012-09-21 12:27:41 +08003452 if (IS_ERR(auth)) {
Chuck Lever75bc8822013-03-16 15:55:36 -04003453 ret = -EACCES;
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003454 goto out;
3455 }
3456 ret = nfs4_lookup_root(server, fhandle, info);
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003457out:
3458 return ret;
3459}
3460
Chuck Lever9a744ba2013-03-16 15:56:02 -04003461/*
3462 * Retry pseudoroot lookup with various security flavors. We do this when:
3463 *
3464 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3465 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3466 *
3467 * Returns zero on success, or a negative NFS4ERR value, or a
3468 * negative errno value.
3469 */
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003470static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04003471 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
Chuck Lever9a744ba2013-03-16 15:56:02 -04003473 /* Per 3530bis 15.33.5 */
3474 static const rpc_authflavor_t flav_array[] = {
3475 RPC_AUTH_GSS_KRB5P,
3476 RPC_AUTH_GSS_KRB5I,
3477 RPC_AUTH_GSS_KRB5,
Chuck Leverc4eafe12013-03-16 15:56:11 -04003478 RPC_AUTH_UNIX, /* courtesy */
Chuck Lever9a744ba2013-03-16 15:56:02 -04003479 RPC_AUTH_NULL,
3480 };
3481 int status = -EPERM;
3482 size_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04003484 if (server->auth_info.flavor_len > 0) {
3485 /* try each flavor specified by user */
3486 for (i = 0; i < server->auth_info.flavor_len; i++) {
3487 status = nfs4_lookup_root_sec(server, fhandle, info,
3488 server->auth_info.flavors[i]);
3489 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3490 continue;
3491 break;
3492 }
3493 } else {
3494 /* no flavors specified by user, try default list */
3495 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3496 status = nfs4_lookup_root_sec(server, fhandle, info,
3497 flav_array[i]);
3498 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3499 continue;
3500 break;
3501 }
Bryan Schumaker8f70e952011-03-24 17:12:31 +00003502 }
Chuck Lever9a744ba2013-03-16 15:56:02 -04003503
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04003504 /*
3505 * -EACCESS could mean that the user doesn't have correct permissions
3506 * to access the mount. It could also mean that we tried to mount
3507 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
3508 * existing mount programs don't handle -EACCES very well so it should
3509 * be mapped to -EPERM instead.
3510 */
3511 if (status == -EACCES)
3512 status = -EPERM;
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003513 return status;
3514}
3515
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003516/**
3517 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3518 * @server: initialized nfs_server handle
3519 * @fhandle: we fill in the pseudo-fs root file handle
3520 * @info: we fill in an FSINFO struct
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003521 * @auth_probe: probe the auth flavours
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003522 *
3523 * Returns zero on success, or a negative errno.
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003524 */
Bryan Schumaker3028eb22012-05-10 15:07:30 -04003525int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003526 struct nfs_fsinfo *info,
3527 bool auth_probe)
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04003528{
Andre Przywarac7757072015-04-23 17:17:40 +01003529 int status = 0;
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003530
Andre Przywarac7757072015-04-23 17:17:40 +01003531 if (!auth_probe)
Trond Myklebust5e6b1992013-09-07 12:58:57 -04003532 status = nfs4_lookup_root(server, fhandle, info);
Andre Przywarac7757072015-04-23 17:17:40 +01003533
3534 if (auth_probe || status == NFS4ERR_WRONGSEC)
Trond Myklebust698c9372016-07-25 13:31:14 -04003535 status = server->nfs_client->cl_mvops->find_root_sec(server,
3536 fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 if (status == 0)
3539 status = nfs4_server_capabilities(server, fhandle);
3540 if (status == 0)
3541 status = nfs4_do_fsinfo(server, fhandle, info);
Chuck Lever2ed4b95b2013-03-16 15:55:45 -04003542
Trond Myklebustc12e87f2006-03-13 21:20:47 -08003543 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544}
3545
Bryan Schumakerbae36242012-05-10 15:07:31 -04003546static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3547 struct nfs_fsinfo *info)
3548{
3549 int error;
3550 struct nfs_fattr *fattr = info->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04003551 struct nfs4_label *label = NULL;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003552
3553 error = nfs4_server_capabilities(server, mntfh);
3554 if (error < 0) {
3555 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3556 return error;
3557 }
3558
David Quigley14c43f72013-05-22 12:50:43 -04003559 label = nfs4_label_alloc(server, GFP_KERNEL);
3560 if (IS_ERR(label))
3561 return PTR_ERR(label);
3562
David Quigley1775fd32013-05-22 12:50:42 -04003563 error = nfs4_proc_getattr(server, mntfh, fattr, label);
Bryan Schumakerbae36242012-05-10 15:07:31 -04003564 if (error < 0) {
3565 dprintk("nfs4_get_root: getattr error = %d\n", -error);
David Quigley14c43f72013-05-22 12:50:43 -04003566 goto err_free_label;
Bryan Schumakerbae36242012-05-10 15:07:31 -04003567 }
3568
3569 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
3570 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
3571 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
3572
David Quigley14c43f72013-05-22 12:50:43 -04003573err_free_label:
3574 nfs4_label_free(label);
3575
Bryan Schumakerbae36242012-05-10 15:07:31 -04003576 return error;
3577}
3578
Manoj Naik6b97fd32006-06-09 09:34:29 -04003579/*
3580 * Get locations and (maybe) other attributes of a referral.
3581 * Note that we'll actually follow the referral later when
3582 * we detect fsid mismatch in inode revalidation
3583 */
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003584static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
3585 const struct qstr *name, struct nfs_fattr *fattr,
3586 struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04003587{
3588 int status = -ENOMEM;
3589 struct page *page = NULL;
3590 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003591
3592 page = alloc_page(GFP_KERNEL);
3593 if (page == NULL)
3594 goto out;
3595 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
3596 if (locations == NULL)
3597 goto out;
3598
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003599 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003600 if (status != 0)
3601 goto out;
Chuck Lever519ae252013-10-17 14:13:19 -04003602
3603 /*
3604 * If the fsid didn't change, this is a migration event, not a
3605 * referral. Cause us to drop into the exception handler, which
3606 * will kick off migration recovery.
3607 */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003608 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Andy Adamson533eb462011-06-13 18:25:56 -04003609 dprintk("%s: server did not return a different fsid for"
3610 " a referral at %s\n", __func__, name->name);
Chuck Lever519ae252013-10-17 14:13:19 -04003611 status = -NFS4ERR_MOVED;
Manoj Naik6b97fd32006-06-09 09:34:29 -04003612 goto out;
3613 }
Andy Adamson533eb462011-06-13 18:25:56 -04003614 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
3615 nfs_fixup_referral_attributes(&locations->fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003616
Andy Adamson533eb462011-06-13 18:25:56 -04003617 /* replace the lookup nfs_fattr with the locations nfs_fattr */
Manoj Naik6b97fd32006-06-09 09:34:29 -04003618 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
Manoj Naik6b97fd32006-06-09 09:34:29 -04003619 memset(fhandle, 0, sizeof(struct nfs_fh));
3620out:
3621 if (page)
3622 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04003623 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04003624 return status;
3625}
3626
David Quigley1775fd32013-05-22 12:50:42 -04003627static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3628 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629{
3630 struct nfs4_getattr_arg args = {
3631 .fh = fhandle,
3632 .bitmask = server->attr_bitmask,
3633 };
3634 struct nfs4_getattr_res res = {
3635 .fattr = fattr,
David Quigley1775fd32013-05-22 12:50:42 -04003636 .label = label,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 .server = server,
3638 };
3639 struct rpc_message msg = {
3640 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
3641 .rpc_argp = &args,
3642 .rpc_resp = &res,
3643 };
David Quigleyaa9c2662013-05-22 12:50:44 -04003644
3645 args.bitmask = nfs4_bitmask(server, label);
3646
Trond Myklebust0e574af2005-10-27 22:12:38 -04003647 nfs_fattr_init(fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003648 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649}
3650
David Quigley1775fd32013-05-22 12:50:42 -04003651static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3652 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653{
3654 struct nfs4_exception exception = { };
3655 int err;
3656 do {
Trond Myklebustb5f875a2013-08-13 13:01:39 -04003657 err = _nfs4_proc_getattr(server, fhandle, fattr, label);
3658 trace_nfs4_getattr(server, fhandle, fattr, err);
3659 err = nfs4_handle_exception(server, err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 &exception);
3661 } while (exception.retry);
3662 return err;
3663}
3664
3665/*
3666 * The file is not closed if it is opened due to the a request to change
3667 * the size of the file. The open call will not be needed once the
3668 * VFS layer lookup-intents are implemented.
3669 *
3670 * Close is called when the inode is destroyed.
3671 * If we haven't opened the file for O_WRONLY, we
3672 * need to in the size_change case to obtain a stateid.
3673 *
3674 * Got race?
3675 * Because OPEN is always done by name in nfsv4, it is
3676 * possible that we opened a different file by the same
3677 * name. We can recognize this race condition, but we
3678 * can't do anything about it besides returning an error.
3679 *
3680 * This will be fixed with VFS changes (lookup-intent).
3681 */
3682static int
3683nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
3684 struct iattr *sattr)
3685{
David Howells2b0143b2015-03-17 22:25:59 +00003686 struct inode *inode = d_inode(dentry);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003687 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05003688 struct nfs4_state *state = NULL;
David Quigley14c43f72013-05-22 12:50:43 -04003689 struct nfs4_label *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 int status;
3691
Peng Tao88ac8152014-09-12 11:04:10 +08003692 if (pnfs_ld_layoutret_on_setattr(inode) &&
3693 sattr->ia_valid & ATTR_SIZE &&
3694 sattr->ia_size < i_size_read(inode))
Trond Myklebust24028672013-03-20 13:23:33 -04003695 pnfs_commit_and_return_layout(inode);
Benny Halevy8a1636c2010-07-14 15:43:57 -04003696
Trond Myklebust0e574af2005-10-27 22:12:38 -04003697 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Andy Adamson26699402012-05-30 16:12:24 -04003699 /* Deal with open(O_TRUNC) */
3700 if (sattr->ia_valid & ATTR_OPEN)
Nadav Shemercc7936f2013-07-21 17:21:43 +03003701 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
Andy Adamson26699402012-05-30 16:12:24 -04003702
3703 /* Optimization: if the end result is no change, don't RPC */
Nadav Shemercc7936f2013-07-21 17:21:43 +03003704 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
Andy Adamson26699402012-05-30 16:12:24 -04003705 return 0;
3706
Trond Myklebustd5308382005-11-04 15:33:38 -05003707 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003708 if (sattr->ia_valid & ATTR_FILE) {
3709 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00003710
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003711 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11003712 if (ctx) {
3713 cred = ctx->cred;
3714 state = ctx->state;
3715 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04003716 }
3717
David Quigley14c43f72013-05-22 12:50:43 -04003718 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
3719 if (IS_ERR(label))
3720 return PTR_ERR(label);
3721
3722 status = nfs4_do_setattr(inode, cred, fattr, sattr, state, NULL, label);
David Quigleyaa9c2662013-05-22 12:50:44 -04003723 if (status == 0) {
Trond Myklebustf0446362015-02-26 16:09:04 -05003724 nfs_setattr_update_inode(inode, sattr, fattr);
David Quigleyaa9c2662013-05-22 12:50:44 -04003725 nfs_setsecurity(inode, fattr, label);
3726 }
David Quigley14c43f72013-05-22 12:50:43 -04003727 nfs4_label_free(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return status;
3729}
3730
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003731static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
3732 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003733 struct nfs_fattr *fattr, struct nfs4_label *label)
David Howells2b3de442006-08-22 20:06:09 -04003734{
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003735 struct nfs_server *server = NFS_SERVER(dir);
David Howells2b3de442006-08-22 20:06:09 -04003736 int status;
3737 struct nfs4_lookup_arg args = {
3738 .bitmask = server->attr_bitmask,
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003739 .dir_fh = NFS_FH(dir),
David Howells2b3de442006-08-22 20:06:09 -04003740 .name = name,
3741 };
3742 struct nfs4_lookup_res res = {
3743 .server = server,
3744 .fattr = fattr,
David Quigleyaa9c2662013-05-22 12:50:44 -04003745 .label = label,
David Howells2b3de442006-08-22 20:06:09 -04003746 .fh = fhandle,
3747 };
3748 struct rpc_message msg = {
3749 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
3750 .rpc_argp = &args,
3751 .rpc_resp = &res,
3752 };
3753
David Quigleyaa9c2662013-05-22 12:50:44 -04003754 args.bitmask = nfs4_bitmask(server, label);
3755
David Howells2b3de442006-08-22 20:06:09 -04003756 nfs_fattr_init(fattr);
3757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003759 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 dprintk("NFS reply lookup: %d\n", status);
3761 return status;
3762}
3763
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003764static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003765{
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003766 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003767 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00003768 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3769 fattr->nlink = 2;
3770}
3771
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003772static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04003773 const struct qstr *name, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -04003774 struct nfs_fattr *fattr, struct nfs4_label *label)
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003775{
3776 struct nfs4_exception exception = { };
3777 struct rpc_clnt *client = *clnt;
3778 int err;
3779 do {
David Quigley1775fd32013-05-22 12:50:42 -04003780 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
Trond Myklebust078ea3d2013-08-12 16:45:55 -04003781 trace_nfs4_lookup(dir, name, err);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003782 switch (err) {
3783 case -NFS4ERR_BADNAME:
3784 err = -ENOENT;
3785 goto out;
3786 case -NFS4ERR_MOVED:
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003787 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
Dominique Martinetc86c90c2015-06-04 17:04:17 +02003788 if (err == -NFS4ERR_MOVED)
3789 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003790 goto out;
3791 case -NFS4ERR_WRONGSEC:
3792 err = -EPERM;
3793 if (client != *clnt)
3794 goto out;
Andy Adamson66b06862014-06-12 15:02:32 -04003795 client = nfs4_negotiate_security(client, dir, name);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003796 if (IS_ERR(client))
3797 return PTR_ERR(client);
3798
3799 exception.retry = 1;
3800 break;
3801 default:
3802 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3803 }
3804 } while (exception.retry);
3805
3806out:
3807 if (err == 0)
3808 *clnt = client;
3809 else if (client != *clnt)
3810 rpc_shutdown_client(client);
3811
3812 return err;
3813}
3814
Al Virobeffb8f2016-07-20 16:34:42 -04003815static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
David Quigley1775fd32013-05-22 12:50:42 -04003816 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3817 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818{
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003819 int status;
3820 struct rpc_clnt *client = NFS_CLIENT(dir);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07003821
David Quigley1775fd32013-05-22 12:50:42 -04003822 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04003823 if (client != NFS_CLIENT(dir)) {
3824 rpc_shutdown_client(client);
3825 nfs_fixup_secinfo_attributes(fattr);
3826 }
3827 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828}
3829
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003830struct rpc_clnt *
Al Virobeffb8f2016-07-20 16:34:42 -04003831nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name,
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003832 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
3833{
Trond Myklebustb72888c2013-08-07 20:38:07 -04003834 struct rpc_clnt *client = NFS_CLIENT(dir);
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003835 int status;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003836
David Quigley1775fd32013-05-22 12:50:42 -04003837 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003838 if (status < 0)
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003839 return ERR_PTR(status);
Trond Myklebustb72888c2013-08-07 20:38:07 -04003840 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04003841}
3842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3844{
Trond Myklebust76b32992007-08-10 17:45:11 -04003845 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 struct nfs4_accessargs args = {
3847 .fh = NFS_FH(inode),
Trond Myklebusta4980e72012-01-30 15:43:56 -05003848 .bitmask = server->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 };
Trond Myklebust76b32992007-08-10 17:45:11 -04003850 struct nfs4_accessres res = {
3851 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04003852 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 struct rpc_message msg = {
3854 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
3855 .rpc_argp = &args,
3856 .rpc_resp = &res,
3857 .rpc_cred = entry->cred,
3858 };
3859 int mode = entry->mask;
David Quigleyaa9c2662013-05-22 12:50:44 -04003860 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
3862 /*
3863 * Determine which access bits we want to ask for...
3864 */
3865 if (mode & MAY_READ)
3866 args.access |= NFS4_ACCESS_READ;
3867 if (S_ISDIR(inode->i_mode)) {
3868 if (mode & MAY_WRITE)
3869 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
3870 if (mode & MAY_EXEC)
3871 args.access |= NFS4_ACCESS_LOOKUP;
3872 } else {
3873 if (mode & MAY_WRITE)
3874 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
3875 if (mode & MAY_EXEC)
3876 args.access |= NFS4_ACCESS_EXECUTE;
3877 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003878
3879 res.fattr = nfs_alloc_fattr();
3880 if (res.fattr == NULL)
3881 return -ENOMEM;
3882
Bryan Schumaker7c513052011-03-24 17:12:24 +00003883 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 if (!status) {
Weston Andros Adamson6168f622012-09-10 14:00:46 -04003885 nfs_access_set_mask(entry, res.access);
Trond Myklebustc407d412010-04-16 16:22:48 -04003886 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 }
Trond Myklebustc407d412010-04-16 16:22:48 -04003888 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 return status;
3890}
3891
3892static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3893{
3894 struct nfs4_exception exception = { };
3895 int err;
3896 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003897 err = _nfs4_proc_access(inode, entry);
3898 trace_nfs4_access(inode, err);
3899 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 &exception);
3901 } while (exception.retry);
3902 return err;
3903}
3904
3905/*
3906 * TODO: For the time being, we don't try to get any attributes
3907 * along with any of the zero-copy operations READ, READDIR,
3908 * READLINK, WRITE.
3909 *
3910 * In the case of the first three, we want to put the GETATTR
3911 * after the read-type operation -- this is because it is hard
3912 * to predict the length of a GETATTR response in v4, and thus
3913 * align the READ data correctly. This means that the GETATTR
3914 * may end up partially falling into the page cache, and we should
3915 * shift it into the 'tail' of the xdr_buf before processing.
3916 * To do this efficiently, we need to know the total length
3917 * of data received, which doesn't seem to be available outside
3918 * of the RPC layer.
3919 *
3920 * In the case of WRITE, we also want to put the GETATTR after
3921 * the operation -- in this case because we want to make sure
Trond Myklebust140150d2012-06-05 15:20:25 -04003922 * we get the post-operation mtime and size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 *
3924 * Both of these changes to the XDR layer would in fact be quite
3925 * minor, but I decided to leave them for a subsequent patch.
3926 */
3927static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
3928 unsigned int pgbase, unsigned int pglen)
3929{
3930 struct nfs4_readlink args = {
3931 .fh = NFS_FH(inode),
3932 .pgbase = pgbase,
3933 .pglen = pglen,
3934 .pages = &page,
3935 };
Benny Halevyf50c7002009-04-01 09:21:55 -04003936 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 struct rpc_message msg = {
3938 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
3939 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04003940 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 };
3942
Bryan Schumaker7c513052011-03-24 17:12:24 +00003943 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 -07003944}
3945
3946static int nfs4_proc_readlink(struct inode *inode, struct page *page,
3947 unsigned int pgbase, unsigned int pglen)
3948{
3949 struct nfs4_exception exception = { };
3950 int err;
3951 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04003952 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
3953 trace_nfs4_readlink(inode, err);
3954 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 &exception);
3956 } while (exception.retry);
3957 return err;
3958}
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960/*
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003961 * This is just for mknod. open(O_CREAT) will always do ->open_context().
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963static int
3964nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003965 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966{
David Quigleyaa9c2662013-05-22 12:50:44 -04003967 struct nfs4_label l, *ilabel = NULL;
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003968 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 int status = 0;
3971
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003972 ctx = alloc_nfs_open_context(dentry, FMODE_READ);
3973 if (IS_ERR(ctx))
3974 return PTR_ERR(ctx);
3975
David Quigleyaa9c2662013-05-22 12:50:44 -04003976 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
3977
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00003978 sattr->ia_mode &= ~current_umask();
Kinglong Meec5c3fb52015-08-26 21:11:39 +08003979 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 if (IS_ERR(state)) {
3981 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04003982 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984out:
David Quigleyaa9c2662013-05-22 12:50:44 -04003985 nfs4_label_release_security(ilabel);
Miklos Szeredi8867fe52012-06-05 15:10:19 +02003986 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return status;
3988}
3989
Al Virobeffb8f2016-07-20 16:34:42 -04003990static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
Trond Myklebust16e42952005-10-27 22:12:44 -04003992 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04003993 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 .fh = NFS_FH(dir),
Linus Torvalds26fe5752012-05-10 13:14:12 -07003995 .name = *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04003997 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04003998 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04003999 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04004001 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
4002 .rpc_argp = &args,
4003 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 };
Trond Myklebust778d2812012-04-27 13:48:19 -04004005 int status;
Trond Myklebustd3468902010-04-16 16:22:50 -04004006
Bryan Schumaker7c513052011-03-24 17:12:24 +00004007 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
Trond Myklebust778d2812012-04-27 13:48:19 -04004008 if (status == 0)
Trond Myklebust16e42952005-10-27 22:12:44 -04004009 update_changeattr(dir, &res.cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 return status;
4011}
4012
Al Virobeffb8f2016-07-20 16:34:42 -04004013static int nfs4_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
4015 struct nfs4_exception exception = { };
4016 int err;
4017 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004018 err = _nfs4_proc_remove(dir, name);
4019 trace_nfs4_remove(dir, name, err);
4020 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 &exception);
4022 } while (exception.retry);
4023 return err;
4024}
4025
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004026static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004028 struct nfs_server *server = NFS_SERVER(dir);
4029 struct nfs_removeargs *args = msg->rpc_argp;
4030 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004032 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Chuck Levera9c92d62013-08-09 12:48:18 -04004034 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04004035
4036 nfs_fattr_init(res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037}
4038
Bryan Schumaker34e137c2012-03-19 14:54:41 -04004039static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4040{
Al Viro884be172016-04-28 23:56:31 -04004041 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb),
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004042 &data->args.seq_args,
4043 &data->res.seq_res,
4044 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045}
4046
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004047static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048{
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004049 struct nfs_unlinkdata *data = task->tk_calldata;
4050 struct nfs_removeres *res = &data->res;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004051
Trond Myklebust14516c32010-07-31 14:29:06 -04004052 if (!nfs4_sequence_done(task, &res->seq_res))
4053 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004054 if (nfs4_async_handle_error(task, res->server, NULL,
4055 &data->timeout) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004056 return 0;
4057 update_changeattr(dir, &res->cinfo);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04004058 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059}
4060
Jeff Laytond3d41522010-09-17 17:31:57 -04004061static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
4062{
4063 struct nfs_server *server = NFS_SERVER(dir);
4064 struct nfs_renameargs *arg = msg->rpc_argp;
4065 struct nfs_renameres *res = msg->rpc_resp;
4066
4067 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
Jeff Laytond3d41522010-09-17 17:31:57 -04004068 res->server = server;
Chuck Levera9c92d62013-08-09 12:48:18 -04004069 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1);
Jeff Laytond3d41522010-09-17 17:31:57 -04004070}
4071
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04004072static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4073{
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004074 nfs4_setup_sequence(NFS_SERVER(data->old_dir),
4075 &data->args.seq_args,
4076 &data->res.seq_res,
4077 task);
Jeff Laytond3d41522010-09-17 17:31:57 -04004078}
4079
4080static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4081 struct inode *new_dir)
4082{
Trond Myklebustfbc6f7c2013-08-12 17:08:26 -04004083 struct nfs_renamedata *data = task->tk_calldata;
4084 struct nfs_renameres *res = &data->res;
Jeff Laytond3d41522010-09-17 17:31:57 -04004085
4086 if (!nfs4_sequence_done(task, &res->seq_res))
4087 return 0;
NeilBrown8478eaa2014-09-18 16:09:27 +10004088 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
Jeff Laytond3d41522010-09-17 17:31:57 -04004089 return 0;
4090
4091 update_changeattr(old_dir, &res->old_cinfo);
Jeff Laytond3d41522010-09-17 17:31:57 -04004092 update_changeattr(new_dir, &res->new_cinfo);
Jeff Laytond3d41522010-09-17 17:31:57 -04004093 return 1;
4094}
4095
Al Virobeffb8f2016-07-20 16:34:42 -04004096static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004098 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 struct nfs4_link_arg arg = {
4100 .fh = NFS_FH(inode),
4101 .dir_fh = NFS_FH(dir),
4102 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004103 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004105 struct nfs4_link_res res = {
4106 .server = server,
David Quigley1775fd32013-05-22 12:50:42 -04004107 .label = NULL,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004108 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 struct rpc_message msg = {
4110 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4111 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004112 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 };
Trond Myklebust136f2622010-04-16 16:22:49 -04004114 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Trond Myklebust136f2622010-04-16 16:22:49 -04004116 res.fattr = nfs_alloc_fattr();
Trond Myklebust778d2812012-04-27 13:48:19 -04004117 if (res.fattr == NULL)
Trond Myklebust136f2622010-04-16 16:22:49 -04004118 goto out;
4119
David Quigley14c43f72013-05-22 12:50:43 -04004120 res.label = nfs4_label_alloc(server, GFP_KERNEL);
4121 if (IS_ERR(res.label)) {
4122 status = PTR_ERR(res.label);
4123 goto out;
4124 }
David Quigleyaa9c2662013-05-22 12:50:44 -04004125 arg.bitmask = nfs4_bitmask(server, res.label);
David Quigley14c43f72013-05-22 12:50:43 -04004126
Bryan Schumaker7c513052011-03-24 17:12:24 +00004127 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004128 if (!status) {
4129 update_changeattr(dir, &res.cinfo);
David Quigleyaa9c2662013-05-22 12:50:44 -04004130 status = nfs_post_op_update_inode(inode, res.fattr);
4131 if (!status)
4132 nfs_setsecurity(inode, res.fattr, res.label);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04004133 }
David Quigley14c43f72013-05-22 12:50:43 -04004134
4135
4136 nfs4_label_free(res.label);
4137
Trond Myklebust136f2622010-04-16 16:22:49 -04004138out:
Trond Myklebust136f2622010-04-16 16:22:49 -04004139 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 return status;
4141}
4142
Al Virobeffb8f2016-07-20 16:34:42 -04004143static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144{
4145 struct nfs4_exception exception = { };
4146 int err;
4147 do {
4148 err = nfs4_handle_exception(NFS_SERVER(inode),
4149 _nfs4_proc_link(inode, dir, name),
4150 &exception);
4151 } while (exception.retry);
4152 return err;
4153}
4154
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004155struct nfs4_createdata {
4156 struct rpc_message msg;
4157 struct nfs4_create_arg arg;
4158 struct nfs4_create_res res;
4159 struct nfs_fh fh;
4160 struct nfs_fattr fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004161 struct nfs4_label *label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004162};
4163
4164static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
Al Virobeffb8f2016-07-20 16:34:42 -04004165 const struct qstr *name, struct iattr *sattr, u32 ftype)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004166{
4167 struct nfs4_createdata *data;
4168
4169 data = kzalloc(sizeof(*data), GFP_KERNEL);
4170 if (data != NULL) {
4171 struct nfs_server *server = NFS_SERVER(dir);
4172
David Quigley14c43f72013-05-22 12:50:43 -04004173 data->label = nfs4_label_alloc(server, GFP_KERNEL);
4174 if (IS_ERR(data->label))
4175 goto out_free;
4176
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004177 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
4178 data->msg.rpc_argp = &data->arg;
4179 data->msg.rpc_resp = &data->res;
4180 data->arg.dir_fh = NFS_FH(dir);
4181 data->arg.server = server;
4182 data->arg.name = name;
4183 data->arg.attrs = sattr;
4184 data->arg.ftype = ftype;
David Quigleyaa9c2662013-05-22 12:50:44 -04004185 data->arg.bitmask = nfs4_bitmask(server, data->label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004186 data->res.server = server;
4187 data->res.fh = &data->fh;
4188 data->res.fattr = &data->fattr;
David Quigley1775fd32013-05-22 12:50:42 -04004189 data->res.label = data->label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004190 nfs_fattr_init(data->res.fattr);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004191 }
4192 return data;
David Quigley14c43f72013-05-22 12:50:43 -04004193out_free:
4194 kfree(data);
4195 return NULL;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004196}
4197
4198static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
4199{
Bryan Schumaker7c513052011-03-24 17:12:24 +00004200 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
Bryan Schumakere73b83f2011-03-24 17:12:23 +00004201 &data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004202 if (status == 0) {
4203 update_changeattr(dir, &data->res.dir_cinfo);
David Quigley1775fd32013-05-22 12:50:42 -04004204 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004205 }
4206 return status;
4207}
4208
4209static void nfs4_free_createdata(struct nfs4_createdata *data)
4210{
David Quigley14c43f72013-05-22 12:50:43 -04004211 nfs4_label_free(data->label);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004212 kfree(data);
4213}
4214
Chuck Lever4f390c12006-08-22 20:06:22 -04004215static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004216 struct page *page, unsigned int len, struct iattr *sattr,
4217 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004219 struct nfs4_createdata *data;
4220 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Chuck Lever94a6d752006-08-22 20:06:23 -04004222 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004223 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04004224
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004225 status = -ENOMEM;
4226 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
4227 if (data == NULL)
4228 goto out;
4229
4230 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
4231 data->arg.u.symlink.pages = &page;
4232 data->arg.u.symlink.len = len;
David Quigley1775fd32013-05-22 12:50:42 -04004233 data->arg.label = label;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004235 status = nfs4_do_create(dir, dentry, data);
4236
4237 nfs4_free_createdata(data);
4238out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 return status;
4240}
4241
Chuck Lever4f390c12006-08-22 20:06:22 -04004242static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04004243 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244{
4245 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004246 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 int err;
David Quigleyaa9c2662013-05-22 12:50:44 -04004248
4249 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004252 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
4253 trace_nfs4_symlink(dir, &dentry->d_name, err);
4254 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 &exception);
4256 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004257
4258 nfs4_label_release_security(label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return err;
4260}
4261
4262static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
David Quigley1775fd32013-05-22 12:50:42 -04004263 struct iattr *sattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004265 struct nfs4_createdata *data;
4266 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004268 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
4269 if (data == NULL)
4270 goto out;
4271
David Quigley1775fd32013-05-22 12:50:42 -04004272 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004273 status = nfs4_do_create(dir, dentry, data);
4274
4275 nfs4_free_createdata(data);
4276out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 return status;
4278}
4279
4280static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4281 struct iattr *sattr)
4282{
4283 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004284 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004286
David Quigleyaa9c2662013-05-22 12:50:44 -04004287 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4288
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004289 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004291 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
4292 trace_nfs4_mkdir(dir, &dentry->d_name, err);
4293 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 &exception);
4295 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004296 nfs4_label_release_security(label);
4297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 return err;
4299}
4300
4301static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004302 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303{
David Howells2b0143b2015-03-17 22:25:59 +00004304 struct inode *dir = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 struct nfs4_readdir_arg args = {
4306 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004307 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 .pgbase = 0,
4309 .count = count,
David Howells2b0143b2015-03-17 22:25:59 +00004310 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04004311 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 };
4313 struct nfs4_readdir_res res;
4314 struct rpc_message msg = {
4315 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
4316 .rpc_argp = &args,
4317 .rpc_resp = &res,
4318 .rpc_cred = cred,
4319 };
4320 int status;
4321
Al Viro6de14722013-09-16 10:53:17 -04004322 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
4323 dentry,
Trond Myklebusteadf4592005-06-22 17:16:39 +00004324 (unsigned long long)cookie);
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004325 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 res.pgbase = args.pgbase;
Bryan Schumaker7c513052011-03-24 17:12:24 +00004327 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 -05004328 if (status >= 0) {
Trond Myklebustc3f52af2012-09-03 14:56:02 -04004329 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05004330 status += args.pgbase;
4331 }
Trond Myklebustc4812992007-09-28 17:11:45 -04004332
4333 nfs_invalidate_atime(dir);
4334
Harvey Harrison3110ff82008-05-02 13:42:44 -07004335 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 return status;
4337}
4338
4339static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04004340 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341{
4342 struct nfs4_exception exception = { };
4343 int err;
4344 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04004345 err = _nfs4_proc_readdir(dentry, cred, cookie,
4346 pages, count, plus);
David Howells2b0143b2015-03-17 22:25:59 +00004347 trace_nfs4_readdir(d_inode(dentry), err);
4348 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 &exception);
4350 } while (exception.retry);
4351 return err;
4352}
4353
4354static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
David Quigleyaa9c2662013-05-22 12:50:44 -04004355 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004357 struct nfs4_createdata *data;
4358 int mode = sattr->ia_mode;
4359 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004361 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
4362 if (data == NULL)
4363 goto out;
4364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004366 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004368 data->arg.ftype = NF4BLK;
4369 data->arg.u.device.specdata1 = MAJOR(rdev);
4370 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 }
4372 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004373 data->arg.ftype = NF4CHR;
4374 data->arg.u.device.specdata1 = MAJOR(rdev);
4375 data->arg.u.device.specdata2 = MINOR(rdev);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004376 } else if (!S_ISSOCK(mode)) {
4377 status = -EINVAL;
4378 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 }
David Quigley1775fd32013-05-22 12:50:42 -04004380
David Quigleyaa9c2662013-05-22 12:50:44 -04004381 data->arg.label = label;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004382 status = nfs4_do_create(dir, dentry, data);
Trond Myklebust4ea8fed2012-10-15 15:47:41 -04004383out_free:
Trond Myklebust57dc9a52008-06-20 15:35:32 -04004384 nfs4_free_createdata(data);
4385out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 return status;
4387}
4388
4389static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4390 struct iattr *sattr, dev_t rdev)
4391{
4392 struct nfs4_exception exception = { };
David Quigleyaa9c2662013-05-22 12:50:44 -04004393 struct nfs4_label l, *label = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004395
David Quigleyaa9c2662013-05-22 12:50:44 -04004396 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4397
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00004398 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04004400 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
4401 trace_nfs4_mknod(dir, &dentry->d_name, err);
4402 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 &exception);
4404 } while (exception.retry);
David Quigleyaa9c2662013-05-22 12:50:44 -04004405
4406 nfs4_label_release_security(label);
4407
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 return err;
4409}
4410
4411static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
4412 struct nfs_fsstat *fsstat)
4413{
4414 struct nfs4_statfs_arg args = {
4415 .fh = fhandle,
4416 .bitmask = server->attr_bitmask,
4417 };
Benny Halevy24ad1482009-04-01 09:21:56 -04004418 struct nfs4_statfs_res res = {
4419 .fsstat = fsstat,
4420 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 struct rpc_message msg = {
4422 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4423 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04004424 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 };
4426
Trond Myklebust0e574af2005-10-27 22:12:38 -04004427 nfs_fattr_init(fsstat->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004428 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429}
4430
4431static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
4432{
4433 struct nfs4_exception exception = { };
4434 int err;
4435 do {
4436 err = nfs4_handle_exception(server,
4437 _nfs4_proc_statfs(server, fhandle, fsstat),
4438 &exception);
4439 } while (exception.retry);
4440 return err;
4441}
4442
4443static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
4444 struct nfs_fsinfo *fsinfo)
4445{
4446 struct nfs4_fsinfo_arg args = {
4447 .fh = fhandle,
4448 .bitmask = server->attr_bitmask,
4449 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04004450 struct nfs4_fsinfo_res res = {
4451 .fsinfo = fsinfo,
4452 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 struct rpc_message msg = {
4454 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
4455 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04004456 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 };
4458
Bryan Schumaker7c513052011-03-24 17:12:24 +00004459 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460}
4461
4462static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4463{
4464 struct nfs4_exception exception = { };
Chuck Lever83ca7f52013-03-16 15:55:53 -04004465 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 int err;
4467
4468 do {
Chuck Lever83ca7f52013-03-16 15:55:53 -04004469 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
Trond Myklebustb5f875a2013-08-13 13:01:39 -04004470 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004471 if (err == 0) {
Trond Myklebustfb10fb62016-08-05 19:13:08 -04004472 nfs4_set_lease_period(server->nfs_client,
4473 fsinfo->lease_time * HZ,
4474 now);
Chuck Lever83ca7f52013-03-16 15:55:53 -04004475 break;
4476 }
4477 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 } while (exception.retry);
4479 return err;
4480}
4481
4482static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4483{
Bryan Schumakere38eb652012-06-20 15:53:40 -04004484 int error;
4485
Trond Myklebust0e574af2005-10-27 22:12:38 -04004486 nfs_fattr_init(fsinfo->fattr);
Bryan Schumakere38eb652012-06-20 15:53:40 -04004487 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004488 if (error == 0) {
4489 /* block layout checks this! */
4490 server->pnfs_blksize = fsinfo->blksize;
Jeff Laytonca440c32016-09-15 14:40:49 -04004491 set_pnfs_layoutdriver(server, fhandle, fsinfo);
Peng Taodc182542012-08-24 00:27:49 +08004492 }
Bryan Schumakere38eb652012-06-20 15:53:40 -04004493
4494 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495}
4496
4497static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4498 struct nfs_pathconf *pathconf)
4499{
4500 struct nfs4_pathconf_arg args = {
4501 .fh = fhandle,
4502 .bitmask = server->attr_bitmask,
4503 };
Benny Halevyd45b2982009-04-01 09:21:58 -04004504 struct nfs4_pathconf_res res = {
4505 .pathconf = pathconf,
4506 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 struct rpc_message msg = {
4508 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
4509 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04004510 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 };
4512
4513 /* None of the pathconf attributes are mandatory to implement */
4514 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
4515 memset(pathconf, 0, sizeof(*pathconf));
4516 return 0;
4517 }
4518
Trond Myklebust0e574af2005-10-27 22:12:38 -04004519 nfs_fattr_init(pathconf->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00004520 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521}
4522
4523static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4524 struct nfs_pathconf *pathconf)
4525{
4526 struct nfs4_exception exception = { };
4527 int err;
4528
4529 do {
4530 err = nfs4_handle_exception(server,
4531 _nfs4_proc_pathconf(server, fhandle, pathconf),
4532 &exception);
4533 } while (exception.retry);
4534 return err;
4535}
4536
Trond Myklebust5521abf2013-03-16 20:54:34 -04004537int nfs4_set_rw_stateid(nfs4_stateid *stateid,
Trond Myklebust9b206142013-03-17 15:52:00 -04004538 const struct nfs_open_context *ctx,
4539 const struct nfs_lock_context *l_ctx,
4540 fmode_t fmode)
4541{
4542 const struct nfs_lockowner *lockowner = NULL;
4543
4544 if (l_ctx != NULL)
4545 lockowner = &l_ctx->lockowner;
Trond Myklebustabf4e132016-05-16 17:42:44 -04004546 return nfs4_select_rw_stateid(ctx->state, fmode, lockowner, stateid, NULL);
Trond Myklebust9b206142013-03-17 15:52:00 -04004547}
4548EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
4549
Trond Myklebust5521abf2013-03-16 20:54:34 -04004550static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
4551 const struct nfs_open_context *ctx,
4552 const struct nfs_lock_context *l_ctx,
4553 fmode_t fmode)
4554{
4555 nfs4_stateid current_stateid;
4556
Trond Myklebuste1253be2014-03-05 08:44:23 -05004557 /* If the current stateid represents a lost lock, then exit */
4558 if (nfs4_set_rw_stateid(&current_stateid, ctx, l_ctx, fmode) == -EIO)
4559 return true;
Trond Myklebust5521abf2013-03-16 20:54:34 -04004560 return nfs4_stateid_match(stateid, &current_stateid);
4561}
4562
4563static bool nfs4_error_stateid_expired(int err)
4564{
4565 switch (err) {
4566 case -NFS4ERR_DELEG_REVOKED:
4567 case -NFS4ERR_ADMIN_REVOKED:
4568 case -NFS4ERR_BAD_STATEID:
4569 case -NFS4ERR_STALE_STATEID:
4570 case -NFS4ERR_OLD_STATEID:
4571 case -NFS4ERR_OPENMODE:
4572 case -NFS4ERR_EXPIRED:
4573 return true;
4574 }
4575 return false;
4576}
4577
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004578static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004580 struct nfs_server *server = NFS_SERVER(hdr->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004582 trace_nfs4_read(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004583 if (task->tk_status < 0) {
4584 struct nfs4_exception exception = {
4585 .inode = hdr->inode,
4586 .state = hdr->args.context->state,
4587 .stateid = &hdr->args.stateid,
4588 };
4589 task->tk_status = nfs4_async_handle_exception(task,
4590 server, task->tk_status, &exception);
4591 if (exception.retry) {
4592 rpc_restart_call_prepare(task);
4593 return -EAGAIN;
4594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 }
Trond Myklebust8850df92007-09-28 17:20:07 -04004596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 if (task->tk_status > 0)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004598 renew_lease(server, hdr->timestamp);
Trond Myklebustec06c092006-03-20 13:44:27 -05004599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600}
4601
Trond Myklebust5521abf2013-03-16 20:54:34 -04004602static bool nfs4_read_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004603 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004604{
4605
4606 if (!nfs4_error_stateid_expired(task->tk_status) ||
4607 nfs4_stateid_is_current(&args->stateid,
4608 args->context,
4609 args->lock_context,
4610 FMODE_READ))
4611 return false;
4612 rpc_restart_call_prepare(task);
4613 return true;
4614}
4615
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004616static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00004617{
4618
4619 dprintk("--> %s\n", __func__);
4620
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004621 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00004622 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004623 if (nfs4_read_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004624 return -EAGAIN;
Trond Myklebustbfc505d2016-09-15 18:26:05 -04004625 if (task->tk_status > 0)
4626 nfs_invalidate_atime(hdr->inode);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004627 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4628 nfs4_read_done_cb(task, hdr);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00004629}
4630
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004631static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
4632 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004634 hdr->timestamp = jiffies;
Trond Myklebustca857cc2016-06-28 13:54:09 -04004635 if (!hdr->pgio_done_cb)
4636 hdr->pgio_done_cb = nfs4_read_done_cb;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004637 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004638 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
4640
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004641static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
4642 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -04004643{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004644 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode),
4645 &hdr->args.seq_args,
4646 &hdr->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -04004647 task))
NeilBrownef1820f2013-09-04 17:04:49 +10004648 return 0;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004649 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
4650 hdr->args.lock_context,
4651 hdr->rw_ops->rw_mode) == -EIO)
NeilBrownef1820f2013-09-04 17:04:49 +10004652 return -EIO;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004653 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
NeilBrownef1820f2013-09-04 17:04:49 +10004654 return -EIO;
4655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656}
4657
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004658static int nfs4_write_done_cb(struct rpc_task *task,
4659 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004661 struct inode *inode = hdr->inode;
NeilBrown8478eaa2014-09-18 16:09:27 +10004662
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004663 trace_nfs4_write(hdr, task->tk_status);
Trond Myklebust9c278692016-09-22 13:39:11 -04004664 if (task->tk_status < 0) {
4665 struct nfs4_exception exception = {
4666 .inode = hdr->inode,
4667 .state = hdr->args.context->state,
4668 .stateid = &hdr->args.stateid,
4669 };
4670 task->tk_status = nfs4_async_handle_exception(task,
4671 NFS_SERVER(inode), task->tk_status,
4672 &exception);
4673 if (exception.retry) {
4674 rpc_restart_call_prepare(task);
4675 return -EAGAIN;
4676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004678 if (task->tk_status >= 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004679 renew_lease(NFS_SERVER(inode), hdr->timestamp);
Trond Myklebusta08a8cd2015-02-26 17:36:09 -05004680 nfs_writeback_update_inode(hdr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004681 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683}
4684
Trond Myklebust5521abf2013-03-16 20:54:34 -04004685static bool nfs4_write_stateid_changed(struct rpc_task *task,
Anna Schumaker3c6b8992014-05-06 09:12:24 -04004686 struct nfs_pgio_args *args)
Trond Myklebust5521abf2013-03-16 20:54:34 -04004687{
4688
4689 if (!nfs4_error_stateid_expired(task->tk_status) ||
4690 nfs4_stateid_is_current(&args->stateid,
4691 args->context,
4692 args->lock_context,
4693 FMODE_WRITE))
4694 return false;
4695 rpc_restart_call_prepare(task);
4696 return true;
4697}
4698
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004699static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Fred Isamanb029bc92011-03-03 15:13:42 +00004700{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004701 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
Fred Isamanb029bc92011-03-03 15:13:42 +00004702 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004703 if (nfs4_write_stateid_changed(task, &hdr->args))
Trond Myklebust5521abf2013-03-16 20:54:34 -04004704 return -EAGAIN;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004705 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4706 nfs4_write_done_cb(task, hdr);
Fred Isamanb029bc92011-03-03 15:13:42 +00004707}
4708
Trond Myklebust5a37f852012-04-28 14:55:16 -04004709static
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004710bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
Fred Isamana69aef12011-03-03 15:13:47 +00004711{
Trond Myklebust5a37f852012-04-28 14:55:16 -04004712 /* Don't request attributes for pNFS or O_DIRECT writes */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004713 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
Trond Myklebust5a37f852012-04-28 14:55:16 -04004714 return false;
4715 /* Otherwise, request attributes if and only if we don't hold
4716 * a delegation
4717 */
Bryan Schumaker011e2a72012-06-20 15:53:43 -04004718 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
Fred Isamana69aef12011-03-03 15:13:47 +00004719}
Fred Isamana69aef12011-03-03 15:13:47 +00004720
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004721static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
4722 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004724 struct nfs_server *server = NFS_SERVER(hdr->inode);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004725
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004726 if (!nfs4_write_need_cache_consistency_data(hdr)) {
4727 hdr->args.bitmask = NULL;
4728 hdr->res.fattr = NULL;
Fred Isaman7ffd1062011-03-03 15:13:46 +00004729 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004730 hdr->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust5a37f852012-04-28 14:55:16 -04004731
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004732 if (!hdr->pgio_done_cb)
4733 hdr->pgio_done_cb = nfs4_write_done_cb;
4734 hdr->res.server = server;
4735 hdr->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004737 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04004738 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739}
4740
Fred Isaman0b7c0152012-04-20 14:47:39 -04004741static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
4742{
Trond Myklebustd9afbd12012-10-22 20:28:44 -04004743 nfs4_setup_sequence(NFS_SERVER(data->inode),
4744 &data->args.seq_args,
4745 &data->res.seq_res,
4746 task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747}
4748
Fred Isaman0b7c0152012-04-20 14:47:39 -04004749static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 struct inode *inode = data->inode;
Trond Myklebust14516c32010-07-31 14:29:06 -04004752
Trond Myklebustcc668ab2013-08-14 15:31:28 -04004753 trace_nfs4_commit(data, task->tk_status);
NeilBrown8478eaa2014-09-18 16:09:27 +10004754 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4755 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07004756 rpc_restart_call_prepare(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05004757 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05004759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760}
4761
Fred Isaman0b7c0152012-04-20 14:47:39 -04004762static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
Fred Isaman5f452432011-03-23 13:27:46 +00004763{
4764 if (!nfs4_sequence_done(task, &data->res.seq_res))
4765 return -EAGAIN;
Fred Isaman0b7c0152012-04-20 14:47:39 -04004766 return data->commit_done_cb(task, data);
Fred Isaman5f452432011-03-23 13:27:46 +00004767}
4768
Fred Isaman0b7c0152012-04-20 14:47:39 -04004769static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770{
Trond Myklebust788e7a82006-03-20 13:44:27 -05004771 struct nfs_server *server = NFS_SERVER(data->inode);
Fred Isaman988b6dc2011-03-23 13:27:52 +00004772
Fred Isaman0b7c0152012-04-20 14:47:39 -04004773 if (data->commit_done_cb == NULL)
4774 data->commit_done_cb = nfs4_commit_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04004775 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04004776 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Chuck Levera9c92d62013-08-09 12:48:18 -04004777 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778}
4779
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004780struct nfs4_renewdata {
4781 struct nfs_client *client;
4782 unsigned long timestamp;
4783};
4784
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785/*
4786 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
4787 * standalone procedure for queueing an asynchronous RENEW.
4788 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004789static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004790{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004791 struct nfs4_renewdata *data = calldata;
4792 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004793
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004794 if (atomic_read(&clp->cl_count) > 1)
4795 nfs4_schedule_state_renewal(clp);
4796 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004797 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004798}
4799
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004800static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004802 struct nfs4_renewdata *data = calldata;
4803 struct nfs_client *clp = data->client;
4804 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
Trond Myklebustc6d01c62013-08-09 11:51:26 -04004806 trace_nfs4_renew_async(clp, task->tk_status);
Chuck Leverf8aba1e2013-10-17 14:13:53 -04004807 switch (task->tk_status) {
4808 case 0:
4809 break;
4810 case -NFS4ERR_LEASE_MOVED:
4811 nfs4_schedule_lease_moved_recovery(clp);
4812 break;
4813 default:
Trond Myklebust95baa252009-05-26 14:51:00 -04004814 /* Unless we're shutting down, schedule state recovery! */
Trond Myklebust042b60b2011-08-24 15:07:37 -04004815 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
4816 return;
4817 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004818 nfs4_schedule_lease_recovery(clp);
Trond Myklebust042b60b2011-08-24 15:07:37 -04004819 return;
4820 }
4821 nfs4_schedule_path_down_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 }
Trond Myklebust452e9352010-07-31 14:29:06 -04004823 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824}
4825
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004826static const struct rpc_call_ops nfs4_renew_ops = {
4827 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08004828 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004829};
4830
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004831static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832{
4833 struct rpc_message msg = {
4834 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4835 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004836 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004838 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
Trond Myklebust2f60ea62011-08-24 15:07:37 -04004840 if (renew_flags == 0)
4841 return 0;
Alexandros Batsakis0851de062010-02-05 03:45:06 -08004842 if (!atomic_inc_not_zero(&clp->cl_count))
4843 return -EIO;
Trond Myklebustb569ad32011-08-24 15:07:35 -04004844 data = kmalloc(sizeof(*data), GFP_NOFS);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004845 if (data == NULL)
4846 return -ENOMEM;
4847 data->client = clp;
4848 data->timestamp = jiffies;
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004849 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04004850 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851}
4852
Trond Myklebust8534d4e2011-08-24 15:07:37 -04004853static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854{
4855 struct rpc_message msg = {
4856 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4857 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01004858 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 };
4860 unsigned long now = jiffies;
4861 int status;
4862
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04004863 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 if (status < 0)
4865 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04004866 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 return 0;
4868}
4869
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004870static inline int nfs4_server_supports_acls(struct nfs_server *server)
4871{
Malahal Naineni7dd7d952014-01-23 08:54:55 -06004872 return server->caps & NFS_CAP_ACLS;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004873}
4874
Trond Myklebust21f498c2012-08-24 10:59:25 -04004875/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
4876 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004877 * the stack.
4878 */
Trond Myklebust21f498c2012-08-24 10:59:25 -04004879#define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004880
Neil Hormane9e3d722011-03-04 19:26:03 -05004881static int buf_to_pages_noslab(const void *buf, size_t buflen,
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01004882 struct page **pages)
Neil Hormane9e3d722011-03-04 19:26:03 -05004883{
4884 struct page *newpage, **spages;
4885 int rc = 0;
4886 size_t len;
4887 spages = pages;
4888
4889 do {
Trond Myklebust21f498c2012-08-24 10:59:25 -04004890 len = min_t(size_t, PAGE_SIZE, buflen);
Neil Hormane9e3d722011-03-04 19:26:03 -05004891 newpage = alloc_page(GFP_KERNEL);
4892
4893 if (newpage == NULL)
4894 goto unwind;
4895 memcpy(page_address(newpage), buf, len);
4896 buf += len;
4897 buflen -= len;
4898 *pages++ = newpage;
4899 rc++;
4900 } while (buflen != 0);
4901
4902 return rc;
4903
4904unwind:
4905 for(; rc > 0; rc--)
4906 __free_page(spages[rc-1]);
4907 return -ENOMEM;
4908}
4909
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004910struct nfs4_cached_acl {
4911 int cached;
4912 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00004913 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004914};
4915
4916static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004917{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004918 struct nfs_inode *nfsi = NFS_I(inode);
4919
4920 spin_lock(&inode->i_lock);
4921 kfree(nfsi->nfs4_acl);
4922 nfsi->nfs4_acl = acl;
4923 spin_unlock(&inode->i_lock);
4924}
4925
4926static void nfs4_zap_acl_attr(struct inode *inode)
4927{
4928 nfs4_set_cached_acl(inode, NULL);
4929}
4930
4931static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
4932{
4933 struct nfs_inode *nfsi = NFS_I(inode);
4934 struct nfs4_cached_acl *acl;
4935 int ret = -ENOENT;
4936
4937 spin_lock(&inode->i_lock);
4938 acl = nfsi->nfs4_acl;
4939 if (acl == NULL)
4940 goto out;
4941 if (buf == NULL) /* user is just asking for length */
4942 goto out_len;
4943 if (acl->cached == 0)
4944 goto out;
4945 ret = -ERANGE; /* see getxattr(2) man page */
4946 if (acl->len > buflen)
4947 goto out;
4948 memcpy(buf, acl->data, acl->len);
4949out_len:
4950 ret = acl->len;
4951out:
4952 spin_unlock(&inode->i_lock);
4953 return ret;
4954}
4955
Sachin Prabhu5794d212012-04-17 14:36:40 +01004956static 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 +00004957{
4958 struct nfs4_cached_acl *acl;
Trond Myklebustb291f1b2012-08-14 18:30:41 -04004959 size_t buflen = sizeof(*acl) + acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004960
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07004961 if (buflen <= PAGE_SIZE) {
Trond Myklebustb291f1b2012-08-14 18:30:41 -04004962 acl = kmalloc(buflen, GFP_KERNEL);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004963 if (acl == NULL)
4964 goto out;
4965 acl->cached = 1;
Sachin Prabhu5794d212012-04-17 14:36:40 +01004966 _copy_from_pages(acl->data, pages, pgbase, acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004967 } else {
4968 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
4969 if (acl == NULL)
4970 goto out;
4971 acl->cached = 0;
4972 }
4973 acl->len = acl_len;
4974out:
4975 nfs4_set_cached_acl(inode, acl);
4976}
4977
Andy Adamsonbf118a32011-12-07 11:55:27 -05004978/*
4979 * The getxattr API returns the required buffer length when called with a
4980 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
4981 * the required buf. On a NULL buf, we send a page of data to the server
4982 * guessing that the ACL request can be serviced by a page. If so, we cache
4983 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
4984 * the cache. If not so, we throw away the page, and cache the required
4985 * length. The next getxattr call will then produce another round trip to
4986 * the server, this time with the input buf of the required size.
4987 */
Trond Myklebust16b4289c2006-08-24 12:27:15 -04004988static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00004989{
Weston Andros Adamsond78f9332017-02-23 14:54:21 -05004990 struct page *pages[NFS4ACL_MAXPAGES + 1] = {NULL, };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004991 struct nfs_getaclargs args = {
4992 .fh = NFS_FH(inode),
4993 .acl_pages = pages,
4994 .acl_len = buflen,
4995 };
Benny Halevy663c79b2009-04-01 09:21:59 -04004996 struct nfs_getaclres res = {
4997 .acl_len = buflen,
4998 };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004999 struct rpc_message msg = {
5000 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
5001 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04005002 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005003 };
Weston Andros Adamsond78f9332017-02-23 14:54:21 -05005004 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
Trond Myklebust21f498c2012-08-24 10:59:25 -04005005 int ret = -ENOMEM, i;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005006
Trond Myklebust21f498c2012-08-24 10:59:25 -04005007 if (npages > ARRAY_SIZE(pages))
5008 return -ERANGE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005009
Andy Adamsonbf118a32011-12-07 11:55:27 -05005010 for (i = 0; i < npages; i++) {
5011 pages[i] = alloc_page(GFP_KERNEL);
5012 if (!pages[i])
5013 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005014 }
Sachin Prabhu5a006892012-04-17 14:35:39 +01005015
5016 /* for decoding across pages */
5017 res.acl_scratch = alloc_page(GFP_KERNEL);
5018 if (!res.acl_scratch)
5019 goto out_free;
5020
Andy Adamsonbf118a32011-12-07 11:55:27 -05005021 args.acl_len = npages * PAGE_SIZE;
Sachin Prabhu5a006892012-04-17 14:35:39 +01005022
Peng Taode040be2012-01-10 22:42:47 +08005023 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
Andy Adamsonbf118a32011-12-07 11:55:27 -05005024 __func__, buf, buflen, npages, args.acl_len);
5025 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
5026 &msg, &args.seq_args, &res.seq_res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005027 if (ret)
5028 goto out_free;
Andy Adamsonbf118a32011-12-07 11:55:27 -05005029
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005030 /* Handle the case where the passed-in buffer is too short */
5031 if (res.acl_flags & NFS4_ACL_TRUNC) {
5032 /* Did the user only issue a request for the acl length? */
5033 if (buf == NULL)
5034 goto out_ok;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005035 ret = -ERANGE;
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005036 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005037 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005038 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005039 if (buf) {
5040 if (res.acl_len > buflen) {
5041 ret = -ERANGE;
5042 goto out_free;
5043 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005044 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
Sven Wegener7d3e91a2012-12-08 15:30:18 +01005045 }
Trond Myklebust1f1ea6c2012-08-26 11:44:43 -07005046out_ok:
5047 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005048out_free:
Andy Adamsonbf118a32011-12-07 11:55:27 -05005049 for (i = 0; i < npages; i++)
5050 if (pages[i])
5051 __free_page(pages[i]);
Trond Myklebust331818f2012-02-03 18:30:53 -05005052 if (res.acl_scratch)
5053 __free_page(res.acl_scratch);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005054 return ret;
5055}
5056
Trond Myklebust16b4289c2006-08-24 12:27:15 -04005057static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5058{
5059 struct nfs4_exception exception = { };
5060 ssize_t ret;
5061 do {
5062 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
Trond Myklebustc1578b72013-08-12 16:58:42 -04005063 trace_nfs4_get_acl(inode, ret);
Trond Myklebust16b4289c2006-08-24 12:27:15 -04005064 if (ret >= 0)
5065 break;
5066 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
5067 } while (exception.retry);
5068 return ret;
5069}
5070
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005071static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
5072{
5073 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005074 int ret;
5075
5076 if (!nfs4_server_supports_acls(server))
5077 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005078 ret = nfs_revalidate_inode(server, inode);
5079 if (ret < 0)
5080 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005081 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
5082 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005083 ret = nfs4_read_cached_acl(inode, buf, buflen);
5084 if (ret != -ENOENT)
Andy Adamsonbf118a32011-12-07 11:55:27 -05005085 /* -ENOENT is returned if there is no ACL or if there is an ACL
5086 * but no cached acl data, just the acl length */
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005087 return ret;
5088 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005089}
5090
Trond Myklebust16b4289c2006-08-24 12:27:15 -04005091static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005092{
5093 struct nfs_server *server = NFS_SERVER(inode);
5094 struct page *pages[NFS4ACL_MAXPAGES];
5095 struct nfs_setaclargs arg = {
5096 .fh = NFS_FH(inode),
5097 .acl_pages = pages,
5098 .acl_len = buflen,
5099 };
Benny Halevy73c403a2009-04-01 09:22:01 -04005100 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005101 struct rpc_message msg = {
5102 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
5103 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04005104 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005105 };
Trond Myklebust21f498c2012-08-24 10:59:25 -04005106 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
Neil Hormane9e3d722011-03-04 19:26:03 -05005107 int ret, i;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005108
5109 if (!nfs4_server_supports_acls(server))
5110 return -EOPNOTSUPP;
Trond Myklebust21f498c2012-08-24 10:59:25 -04005111 if (npages > ARRAY_SIZE(pages))
5112 return -ERANGE;
Andreas Gruenbacher8fbcf232015-11-03 18:25:34 +01005113 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages);
Neil Hormane9e3d722011-03-04 19:26:03 -05005114 if (i < 0)
5115 return i;
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04005116 nfs4_inode_return_delegation(inode);
Bryan Schumaker7c513052011-03-24 17:12:24 +00005117 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Neil Hormane9e3d722011-03-04 19:26:03 -05005118
5119 /*
5120 * Free each page after tx, so the only ref left is
5121 * held by the network stack
5122 */
5123 for (; i > 0; i--)
5124 put_page(pages[i-1]);
5125
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00005126 /*
5127 * Acl update can result in inode attribute update.
5128 * so mark the attribute cache invalid.
5129 */
5130 spin_lock(&inode->i_lock);
5131 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
5132 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04005133 nfs_access_zap_cache(inode);
5134 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005135 return ret;
5136}
5137
Trond Myklebust16b4289c2006-08-24 12:27:15 -04005138static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5139{
5140 struct nfs4_exception exception = { };
5141 int err;
5142 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005143 err = __nfs4_proc_set_acl(inode, buf, buflen);
5144 trace_nfs4_set_acl(inode, err);
5145 err = nfs4_handle_exception(NFS_SERVER(inode), err,
Trond Myklebust16b4289c2006-08-24 12:27:15 -04005146 &exception);
5147 } while (exception.retry);
5148 return err;
5149}
5150
David Quigleyaa9c2662013-05-22 12:50:44 -04005151#ifdef CONFIG_NFS_V4_SECURITY_LABEL
5152static int _nfs4_get_security_label(struct inode *inode, void *buf,
5153 size_t buflen)
5154{
5155 struct nfs_server *server = NFS_SERVER(inode);
5156 struct nfs_fattr fattr;
5157 struct nfs4_label label = {0, 0, buflen, buf};
5158
5159 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005160 struct nfs4_getattr_arg arg = {
David Quigleyaa9c2662013-05-22 12:50:44 -04005161 .fh = NFS_FH(inode),
5162 .bitmask = bitmask,
5163 };
5164 struct nfs4_getattr_res res = {
5165 .fattr = &fattr,
5166 .label = &label,
5167 .server = server,
5168 };
5169 struct rpc_message msg = {
5170 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005171 .rpc_argp = &arg,
David Quigleyaa9c2662013-05-22 12:50:44 -04005172 .rpc_resp = &res,
5173 };
5174 int ret;
5175
5176 nfs_fattr_init(&fattr);
5177
Trond Myklebustfcb63a92013-11-01 12:42:25 -04005178 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
David Quigleyaa9c2662013-05-22 12:50:44 -04005179 if (ret)
5180 return ret;
5181 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
5182 return -ENOENT;
5183 if (buflen < label.len)
5184 return -ERANGE;
5185 return 0;
5186}
5187
5188static int nfs4_get_security_label(struct inode *inode, void *buf,
5189 size_t buflen)
5190{
5191 struct nfs4_exception exception = { };
5192 int err;
5193
5194 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5195 return -EOPNOTSUPP;
5196
5197 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005198 err = _nfs4_get_security_label(inode, buf, buflen);
5199 trace_nfs4_get_security_label(inode, err);
5200 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005201 &exception);
5202 } while (exception.retry);
5203 return err;
5204}
5205
5206static int _nfs4_do_set_security_label(struct inode *inode,
5207 struct nfs4_label *ilabel,
5208 struct nfs_fattr *fattr,
5209 struct nfs4_label *olabel)
5210{
5211
5212 struct iattr sattr = {0};
5213 struct nfs_server *server = NFS_SERVER(inode);
5214 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
Jeff Layton12207f62013-11-01 10:49:32 -04005215 struct nfs_setattrargs arg = {
David Quigleyaa9c2662013-05-22 12:50:44 -04005216 .fh = NFS_FH(inode),
5217 .iap = &sattr,
5218 .server = server,
5219 .bitmask = bitmask,
5220 .label = ilabel,
5221 };
5222 struct nfs_setattrres res = {
5223 .fattr = fattr,
5224 .label = olabel,
5225 .server = server,
5226 };
5227 struct rpc_message msg = {
5228 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
Jeff Layton12207f62013-11-01 10:49:32 -04005229 .rpc_argp = &arg,
David Quigleyaa9c2662013-05-22 12:50:44 -04005230 .rpc_resp = &res,
5231 };
5232 int status;
5233
Jeff Layton12207f62013-11-01 10:49:32 -04005234 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
David Quigleyaa9c2662013-05-22 12:50:44 -04005235
Jeff Layton12207f62013-11-01 10:49:32 -04005236 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
David Quigleyaa9c2662013-05-22 12:50:44 -04005237 if (status)
5238 dprintk("%s failed: %d\n", __func__, status);
5239
5240 return status;
5241}
5242
5243static int nfs4_do_set_security_label(struct inode *inode,
5244 struct nfs4_label *ilabel,
5245 struct nfs_fattr *fattr,
5246 struct nfs4_label *olabel)
5247{
5248 struct nfs4_exception exception = { };
5249 int err;
5250
5251 do {
Trond Myklebustc1578b72013-08-12 16:58:42 -04005252 err = _nfs4_do_set_security_label(inode, ilabel,
5253 fattr, olabel);
5254 trace_nfs4_set_security_label(inode, err);
5255 err = nfs4_handle_exception(NFS_SERVER(inode), err,
David Quigleyaa9c2662013-05-22 12:50:44 -04005256 &exception);
5257 } while (exception.retry);
5258 return err;
5259}
5260
5261static int
Al Viro59301222016-05-27 10:19:30 -04005262nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
David Quigleyaa9c2662013-05-22 12:50:44 -04005263{
5264 struct nfs4_label ilabel, *olabel = NULL;
5265 struct nfs_fattr fattr;
5266 struct rpc_cred *cred;
David Quigleyaa9c2662013-05-22 12:50:44 -04005267 int status;
5268
5269 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5270 return -EOPNOTSUPP;
5271
5272 nfs_fattr_init(&fattr);
5273
5274 ilabel.pi = 0;
5275 ilabel.lfs = 0;
5276 ilabel.label = (char *)buf;
5277 ilabel.len = buflen;
5278
5279 cred = rpc_lookup_cred();
5280 if (IS_ERR(cred))
5281 return PTR_ERR(cred);
5282
5283 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
5284 if (IS_ERR(olabel)) {
5285 status = -PTR_ERR(olabel);
5286 goto out;
5287 }
5288
5289 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
5290 if (status == 0)
5291 nfs_setsecurity(inode, &fattr, olabel);
5292
5293 nfs4_label_free(olabel);
5294out:
5295 put_rpccred(cred);
5296 return status;
5297}
5298#endif /* CONFIG_NFS_V4_SECURITY_LABEL */
5299
5300
Chuck Leverf0920752012-05-21 22:45:41 -04005301static void nfs4_init_boot_verifier(const struct nfs_client *clp,
5302 nfs4_verifier *bootverf)
Chuck Levercd937102012-03-02 17:14:31 -05005303{
5304 __be32 verf[2];
5305
Chuck Lever2c820d92012-05-21 22:45:33 -04005306 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
5307 /* An impossible timestamp guarantees this value
5308 * will never match a generated boot time. */
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005309 verf[0] = cpu_to_be32(U32_MAX);
5310 verf[1] = cpu_to_be32(U32_MAX);
Chuck Lever2c820d92012-05-21 22:45:33 -04005311 } else {
Chuck Leverf0920752012-05-21 22:45:41 -04005312 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07005313 u64 ns = ktime_to_ns(nn->boot_time);
5314
5315 verf[0] = cpu_to_be32(ns >> 32);
5316 verf[1] = cpu_to_be32(ns);
Chuck Lever2c820d92012-05-21 22:45:33 -04005317 }
Chuck Levercd937102012-03-02 17:14:31 -05005318 memcpy(bootverf->data, verf, sizeof(bootverf->data));
5319}
5320
Jeff Laytona3192682015-06-09 19:43:59 -04005321static int
5322nfs4_init_nonuniform_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005323{
Jeff Laytona3192682015-06-09 19:43:59 -04005324 size_t len;
5325 char *str;
Chuck Levere984a552012-09-14 17:24:21 -04005326
Trond Myklebustceb3a162015-01-03 15:16:04 -05005327 if (clp->cl_owner_id != NULL)
Jeff Laytona3192682015-06-09 19:43:59 -04005328 return 0;
Kinglong Mee4a3e5772015-08-31 10:53:43 +08005329
Jeff Laytona3192682015-06-09 19:43:59 -04005330 rcu_read_lock();
Kinglong Mee4a703162015-08-31 10:53:33 +08005331 len = 14 + strlen(clp->cl_ipaddr) + 1 +
Jeff Laytona3192682015-06-09 19:43:59 -04005332 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
5333 1 +
5334 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) +
5335 1;
5336 rcu_read_unlock();
5337
5338 if (len > NFS4_OPAQUE_LIMIT + 1)
5339 return -EINVAL;
5340
5341 /*
5342 * Since this string is allocated at mount time, and held until the
5343 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5344 * about a memory-reclaim deadlock.
5345 */
5346 str = kmalloc(len, GFP_KERNEL);
5347 if (!str)
5348 return -ENOMEM;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005349
Chuck Levere984a552012-09-14 17:24:21 -04005350 rcu_read_lock();
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005351 scnprintf(str, len, "Linux NFSv4.0 %s/%s %s",
Jeff Laytona3192682015-06-09 19:43:59 -04005352 clp->cl_ipaddr,
5353 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR),
5354 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO));
Chuck Levere984a552012-09-14 17:24:21 -04005355 rcu_read_unlock();
Jeff Laytona3192682015-06-09 19:43:59 -04005356
Jeff Laytona3192682015-06-09 19:43:59 -04005357 clp->cl_owner_id = str;
5358 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005359}
5360
Jeff Layton873e3852015-06-09 19:44:00 -04005361static int
5362nfs4_init_uniquifier_client_string(struct nfs_client *clp)
Chuck Levere984a552012-09-14 17:24:21 -04005363{
Jeff Layton873e3852015-06-09 19:44:00 -04005364 size_t len;
5365 char *str;
5366
5367 len = 10 + 10 + 1 + 10 + 1 +
5368 strlen(nfs4_client_id_uniquifier) + 1 +
5369 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5370
5371 if (len > NFS4_OPAQUE_LIMIT + 1)
5372 return -EINVAL;
5373
5374 /*
5375 * Since this string is allocated at mount time, and held until the
5376 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5377 * about a memory-reclaim deadlock.
5378 */
5379 str = kmalloc(len, GFP_KERNEL);
5380 if (!str)
5381 return -ENOMEM;
5382
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005383 scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
Jeff Layton873e3852015-06-09 19:44:00 -04005384 clp->rpc_ops->version, clp->cl_minorversion,
5385 nfs4_client_id_uniquifier,
5386 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005387 clp->cl_owner_id = str;
5388 return 0;
5389}
5390
5391static int
5392nfs4_init_uniform_client_string(struct nfs_client *clp)
5393{
Jeff Layton873e3852015-06-09 19:44:00 -04005394 size_t len;
5395 char *str;
Trond Myklebustceb3a162015-01-03 15:16:04 -05005396
5397 if (clp->cl_owner_id != NULL)
Jeff Layton873e3852015-06-09 19:44:00 -04005398 return 0;
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04005399
5400 if (nfs4_client_id_uniquifier[0] != '\0')
Jeff Layton873e3852015-06-09 19:44:00 -04005401 return nfs4_init_uniquifier_client_string(clp);
5402
5403 len = 10 + 10 + 1 + 10 + 1 +
5404 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5405
5406 if (len > NFS4_OPAQUE_LIMIT + 1)
5407 return -EINVAL;
5408
5409 /*
5410 * Since this string is allocated at mount time, and held until the
5411 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5412 * about a memory-reclaim deadlock.
5413 */
5414 str = kmalloc(len, GFP_KERNEL);
5415 if (!str)
5416 return -ENOMEM;
5417
Trond Myklebustf2dd4362015-10-08 11:33:17 -04005418 scnprintf(str, len, "Linux NFSv%u.%u %s",
Jeff Layton873e3852015-06-09 19:44:00 -04005419 clp->rpc_ops->version, clp->cl_minorversion,
5420 clp->cl_rpcclient->cl_nodename);
Jeff Layton873e3852015-06-09 19:44:00 -04005421 clp->cl_owner_id = str;
5422 return 0;
Chuck Levere984a552012-09-14 17:24:21 -04005423}
5424
Chuck Lever706cb8d2014-03-12 12:51:47 -04005425/*
5426 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
5427 * services. Advertise one based on the address family of the
5428 * clientaddr.
5429 */
5430static unsigned int
5431nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
5432{
5433 if (strchr(clp->cl_ipaddr, ':') != NULL)
5434 return scnprintf(buf, len, "tcp6");
5435 else
5436 return scnprintf(buf, len, "tcp");
5437}
5438
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005439static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
5440{
5441 struct nfs4_setclientid *sc = calldata;
5442
5443 if (task->tk_status == 0)
5444 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
5445}
5446
5447static const struct rpc_call_ops nfs4_setclientid_ops = {
5448 .rpc_call_done = nfs4_setclientid_done,
5449};
5450
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005451/**
5452 * nfs4_proc_setclientid - Negotiate client ID
5453 * @clp: state data structure
5454 * @program: RPC program for NFSv4 callback service
5455 * @port: IP port number for NFS4 callback service
5456 * @cred: RPC credential to use for this call
5457 * @res: where to place the result
5458 *
5459 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5460 */
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005461int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
5462 unsigned short port, struct rpc_cred *cred,
5463 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464{
5465 nfs4_verifier sc_verifier;
5466 struct nfs4_setclientid setclientid = {
5467 .sc_verifier = &sc_verifier,
5468 .sc_prog = program,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005469 .sc_clnt = clp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 };
5471 struct rpc_message msg = {
5472 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
5473 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005474 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005475 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 };
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005477 struct rpc_task *task;
5478 struct rpc_task_setup task_setup_data = {
5479 .rpc_client = clp->cl_rpcclient,
5480 .rpc_message = &msg,
5481 .callback_ops = &nfs4_setclientid_ops,
5482 .callback_data = &setclientid,
5483 .flags = RPC_TASK_TIMEOUT,
5484 };
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005485 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
Chuck Leverde734832012-07-11 16:30:50 -04005487 /* nfs_client_id4 */
Chuck Leverf0920752012-05-21 22:45:41 -04005488 nfs4_init_boot_verifier(clp, &sc_verifier);
Jeff Layton873e3852015-06-09 19:44:00 -04005489
5490 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
5491 status = nfs4_init_uniform_client_string(clp);
5492 else
Jeff Laytona3192682015-06-09 19:43:59 -04005493 status = nfs4_init_nonuniform_client_string(clp);
Jeff Layton873e3852015-06-09 19:44:00 -04005494
5495 if (status)
5496 goto out;
Jeff Layton3a6bb732015-06-09 19:43:57 -04005497
Chuck Leverde734832012-07-11 16:30:50 -04005498 /* cb_client4 */
Chuck Lever706cb8d2014-03-12 12:51:47 -04005499 setclientid.sc_netid_len =
5500 nfs4_init_callback_netid(clp,
5501 setclientid.sc_netid,
5502 sizeof(setclientid.sc_netid));
Chuck Leverde734832012-07-11 16:30:50 -04005503 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05005504 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 clp->cl_ipaddr, port >> 8, port & 255);
5506
Jeff Layton3a6bb732015-06-09 19:43:57 -04005507 dprintk("NFS call setclientid auth=%s, '%s'\n",
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005508 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Jeff Layton3a6bb732015-06-09 19:43:57 -04005509 clp->cl_owner_id);
Jeff Laytonf11b2a12014-06-21 20:52:17 -04005510 task = rpc_run_task(&task_setup_data);
5511 if (IS_ERR(task)) {
5512 status = PTR_ERR(task);
5513 goto out;
5514 }
5515 status = task->tk_status;
5516 if (setclientid.sc_cred) {
5517 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
5518 put_rpccred(setclientid.sc_cred);
5519 }
5520 rpc_put_task(task);
5521out:
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005522 trace_nfs4_setclientid(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005523 dprintk("NFS reply setclientid: %d\n", status);
5524 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525}
5526
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005527/**
5528 * nfs4_proc_setclientid_confirm - Confirm client ID
5529 * @clp: state data structure
5530 * @res: result of a previous SETCLIENTID
5531 * @cred: RPC credential to use for this call
5532 *
5533 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5534 */
Trond Myklebustfd954ae2011-04-24 14:28:18 -04005535int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005536 struct nfs4_setclientid_res *arg,
5537 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539 struct rpc_message msg = {
5540 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04005541 .rpc_argp = arg,
Trond Myklebust286d7d62006-01-03 09:55:26 +01005542 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 int status;
5545
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005546 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
5547 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5548 clp->cl_clientid);
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005549 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04005550 trace_nfs4_setclientid_confirm(clp, status);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04005551 dprintk("NFS reply setclientid_confirm: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 return status;
5553}
5554
Trond Myklebustfe650402006-01-03 09:55:18 +01005555struct nfs4_delegreturndata {
5556 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005557 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01005558 struct nfs_fh fh;
5559 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005560 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005561 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01005562 int rpc_status;
Peng Tao039b7562014-07-03 13:05:02 +08005563 struct inode *inode;
5564 bool roc;
5565 u32 roc_barrier;
Trond Myklebustfe650402006-01-03 09:55:18 +01005566};
5567
Trond Myklebustfe650402006-01-03 09:55:18 +01005568static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
5569{
5570 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04005571
Trond Myklebust14516c32010-07-31 14:29:06 -04005572 if (!nfs4_sequence_done(task, &data->res.seq_res))
5573 return;
Andy Adamson938e1012009-04-01 09:22:28 -04005574
Trond Myklebustca8acf82013-08-13 10:36:56 -04005575 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
Ricardo Labiaga79708862009-12-07 09:23:21 -05005576 switch (task->tk_status) {
Ricardo Labiaga79708862009-12-07 09:23:21 -05005577 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01005578 renew_lease(data->res.server, data->timestamp);
Trond Myklebust23ea44c2016-11-10 16:06:28 -05005579 break;
Trond Myklebustc97cf602013-11-19 16:34:14 -05005580 case -NFS4ERR_ADMIN_REVOKED:
5581 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust26d36302016-09-22 13:39:05 -04005582 case -NFS4ERR_EXPIRED:
5583 nfs4_free_revoked_stateid(data->res.server,
5584 data->args.stateid,
5585 task->tk_msg.rpc_cred);
Trond Myklebustc97cf602013-11-19 16:34:14 -05005586 case -NFS4ERR_BAD_STATEID:
5587 case -NFS4ERR_OLD_STATEID:
5588 case -NFS4ERR_STALE_STATEID:
Trond Myklebustc97cf602013-11-19 16:34:14 -05005589 task->tk_status = 0;
5590 break;
Ricardo Labiaga79708862009-12-07 09:23:21 -05005591 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005592 if (nfs4_async_handle_error(task, data->res.server,
5593 NULL, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005594 rpc_restart_call_prepare(task);
Ricardo Labiaga79708862009-12-07 09:23:21 -05005595 return;
5596 }
5597 }
5598 data->rpc_status = task->tk_status;
Trond Myklebust23ea44c2016-11-10 16:06:28 -05005599 if (data->roc && data->rpc_status == 0)
5600 pnfs_roc_set_barrier(data->inode, data->roc_barrier);
Trond Myklebustfe650402006-01-03 09:55:18 +01005601}
5602
5603static void nfs4_delegreturn_release(void *calldata)
5604{
Peng Tao039b7562014-07-03 13:05:02 +08005605 struct nfs4_delegreturndata *data = calldata;
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005606 struct inode *inode = data->inode;
Peng Tao039b7562014-07-03 13:05:02 +08005607
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005608 if (inode) {
5609 if (data->roc)
5610 pnfs_roc_release(inode);
5611 nfs_iput_and_deactive(inode);
5612 }
Trond Myklebustfe650402006-01-03 09:55:18 +01005613 kfree(calldata);
5614}
5615
Andy Adamson938e1012009-04-01 09:22:28 -04005616static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
5617{
5618 struct nfs4_delegreturndata *d_data;
5619
5620 d_data = (struct nfs4_delegreturndata *)data;
5621
Peng Tao500d7012015-09-22 11:35:22 +08005622 if (nfs4_wait_on_layoutreturn(d_data->inode, task))
5623 return;
5624
Trond Myklebust4ff376f2015-08-18 23:23:21 -05005625 if (d_data->roc)
5626 pnfs_roc_get_barrier(d_data->inode, &d_data->roc_barrier);
Peng Tao039b7562014-07-03 13:05:02 +08005627
Trond Myklebustd9afbd12012-10-22 20:28:44 -04005628 nfs4_setup_sequence(d_data->res.server,
5629 &d_data->args.seq_args,
5630 &d_data->res.seq_res,
5631 task);
Andy Adamson938e1012009-04-01 09:22:28 -04005632}
Andy Adamson938e1012009-04-01 09:22:28 -04005633
Jesper Juhlc8d149f2006-03-20 13:44:07 -05005634static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04005635 .rpc_call_prepare = nfs4_delegreturn_prepare,
Trond Myklebustfe650402006-01-03 09:55:18 +01005636 .rpc_call_done = nfs4_delegreturn_done,
5637 .rpc_release = nfs4_delegreturn_release,
5638};
5639
Trond Myklebuste6f81072008-01-24 18:14:34 -05005640static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01005641{
5642 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01005643 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01005644 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005645 struct rpc_message msg = {
5646 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
5647 .rpc_cred = cred,
5648 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005649 struct rpc_task_setup task_setup_data = {
5650 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04005651 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005652 .callback_ops = &nfs4_delegreturn_ops,
5653 .flags = RPC_TASK_ASYNC,
5654 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05005655 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01005656
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005657 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01005658 if (data == NULL)
5659 return -ENOMEM;
Chuck Levera9c92d62013-08-09 12:48:18 -04005660 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andrew Elble99ade3c2015-12-02 09:39:51 -05005661
5662 nfs4_state_protect(server->nfs_client,
5663 NFS_SP4_MACH_CRED_CLEANUP,
5664 &task_setup_data.rpc_client, &msg);
5665
Trond Myklebustfe650402006-01-03 09:55:18 +01005666 data->args.fhandle = &data->fh;
5667 data->args.stateid = &data->stateid;
Trond Myklebust9e907fe2012-04-27 13:48:17 -04005668 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01005669 nfs_copy_fh(&data->fh, NFS_FH(inode));
Trond Myklebustf597c532012-03-04 18:13:56 -05005670 nfs4_stateid_copy(&data->stateid, stateid);
Trond Myklebustfa178f22006-01-03 09:55:38 +01005671 data->res.fattr = &data->fattr;
5672 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005673 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01005674 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01005675 data->rpc_status = 0;
Trond Myklebustea7c38f2015-02-05 15:13:24 -05005676 data->inode = nfs_igrab_and_active(inode);
5677 if (data->inode)
5678 data->roc = nfs4_roc(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01005679
Trond Myklebustc970aa82007-07-14 15:39:59 -04005680 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05005681 msg.rpc_argp = &data->args;
5682 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04005683 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05005684 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01005685 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005686 if (!issync)
5687 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01005688 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005689 if (status != 0)
5690 goto out;
5691 status = data->rpc_status;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04005692 if (status == 0)
5693 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
5694 else
5695 nfs_refresh_inode(inode, &data->fattr);
Trond Myklebuste6f81072008-01-24 18:14:34 -05005696out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05005697 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01005698 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699}
5700
Trond Myklebuste6f81072008-01-24 18:14:34 -05005701int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702{
5703 struct nfs_server *server = NFS_SERVER(inode);
5704 struct nfs4_exception exception = { };
5705 int err;
5706 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05005707 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05005708 trace_nfs4_delegreturn(inode, stateid, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 switch (err) {
5710 case -NFS4ERR_STALE_STATEID:
5711 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 case 0:
5713 return 0;
5714 }
5715 err = nfs4_handle_exception(server, err, &exception);
5716 } while (exception.retry);
5717 return err;
5718}
5719
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5721{
5722 struct inode *inode = state->inode;
5723 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04005724 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005725 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005727 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005729 struct nfs_lockt_res res = {
5730 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731 };
5732 struct rpc_message msg = {
5733 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
5734 .rpc_argp = &arg,
5735 .rpc_resp = &res,
5736 .rpc_cred = state->owner->so_cred,
5737 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 struct nfs4_lock_state *lsp;
5739 int status;
5740
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005741 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005742 status = nfs4_set_lock_state(state, request);
5743 if (status != 0)
5744 goto out;
5745 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05005746 arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05005747 arg.lock_owner.s_dev = server->s_dev;
Bryan Schumaker7c513052011-03-24 17:12:24 +00005748 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005749 switch (status) {
5750 case 0:
5751 request->fl_type = F_UNLCK;
5752 break;
5753 case -NFS4ERR_DENIED:
5754 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05005756 request->fl_ops->fl_release_private(request);
Trond Myklebusta6f951d2013-10-01 14:24:58 -04005757 request->fl_ops = NULL;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00005758out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 return status;
5760}
5761
5762static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5763{
5764 struct nfs4_exception exception = { };
5765 int err;
5766
5767 do {
Trond Myklebustd1b748a2013-08-12 16:35:20 -04005768 err = _nfs4_proc_getlk(state, cmd, request);
5769 trace_nfs4_get_lock(request, state, cmd, err);
5770 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771 &exception);
5772 } while (exception.retry);
5773 return err;
5774}
5775
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005776struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005777 struct nfs_locku_args arg;
5778 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005779 struct nfs4_lock_state *lsp;
5780 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005781 struct file_lock fl;
Trond Myklebust516285eb2015-09-20 16:15:24 -04005782 struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005783 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005784};
5785
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005786static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
5787 struct nfs_open_context *ctx,
5788 struct nfs4_lock_state *lsp,
5789 struct nfs_seqid *seqid)
5790{
5791 struct nfs4_unlockdata *p;
5792 struct inode *inode = lsp->ls_state->inode;
5793
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005794 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005795 if (p == NULL)
5796 return NULL;
5797 p->arg.fh = NFS_FH(inode);
5798 p->arg.fl = &p->fl;
5799 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04005800 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005801 p->lsp = lsp;
5802 atomic_inc(&lsp->ls_count);
5803 /* Ensure we don't close file until we're done freeing locks! */
5804 p->ctx = get_nfs_open_context(ctx);
5805 memcpy(&p->fl, fl, sizeof(p->fl));
5806 p->server = NFS_SERVER(inode);
5807 return p;
5808}
5809
Trond Myklebust06f814a2006-01-03 09:55:07 +01005810static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005811{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005812 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005813 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005814 nfs4_put_lock_state(calldata->lsp);
5815 put_nfs_open_context(calldata->ctx);
5816 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005817}
5818
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005819static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005820{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005821 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005822
Trond Myklebust14516c32010-07-31 14:29:06 -04005823 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
5824 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005825 switch (task->tk_status) {
5826 case 0:
Trond Myklebust26e976a2006-01-03 09:55:21 +01005827 renew_lease(calldata->server, calldata->timestamp);
Jeff Layton75575dd2016-09-17 18:17:32 -04005828 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
Trond Myklebustc69899a2015-01-24 16:03:52 -05005829 if (nfs4_update_lock_stateid(calldata->lsp,
5830 &calldata->res.stateid))
5831 break;
Trond Myklebust26d36302016-09-22 13:39:05 -04005832 case -NFS4ERR_ADMIN_REVOKED:
5833 case -NFS4ERR_EXPIRED:
5834 nfs4_free_revoked_stateid(calldata->server,
5835 &calldata->arg.stateid,
5836 task->tk_msg.rpc_cred);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05005837 case -NFS4ERR_BAD_STATEID:
5838 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005839 case -NFS4ERR_STALE_STATEID:
Trond Myklebust425c1d42015-01-24 14:57:53 -05005840 if (!nfs4_stateid_match(&calldata->arg.stateid,
5841 &calldata->lsp->ls_stateid))
5842 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005843 break;
5844 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10005845 if (nfs4_async_handle_error(task, calldata->server,
5846 NULL, NULL) == -EAGAIN)
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005847 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005848 }
Trond Myklebust2b1bc302012-10-29 18:53:23 -04005849 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005850}
5851
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005852static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005853{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005854 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005856 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005857 goto out_wait;
Trond Myklebust425c1d42015-01-24 14:57:53 -05005858 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid);
Trond Myklebust795a88c2012-09-10 13:26:49 -04005859 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005860 /* Note: exit _without_ running nfs4_locku_done */
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005861 goto out_no_action;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005862 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01005863 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04005864 if (nfs4_setup_sequence(calldata->server,
Andy Adamsona8936932009-04-01 09:22:23 -04005865 &calldata->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04005866 &calldata->res.seq_res,
5867 task) != 0)
5868 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05005869 return;
5870out_no_action:
5871 task->tk_action = NULL;
5872out_wait:
5873 nfs4_sequence_done(task, &calldata->res.seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874}
5875
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005876static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01005877 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005878 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01005879 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01005880};
5881
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005882static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
5883 struct nfs_open_context *ctx,
5884 struct nfs4_lock_state *lsp,
5885 struct nfs_seqid *seqid)
5886{
5887 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04005888 struct rpc_message msg = {
5889 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
5890 .rpc_cred = ctx->cred,
5891 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04005892 struct rpc_task_setup task_setup_data = {
5893 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04005894 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005895 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05005896 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04005897 .flags = RPC_TASK_ASYNC,
5898 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005899
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04005900 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
5901 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
5902
Frank Filz137d6ac2007-07-09 15:32:29 -07005903 /* Ensure this is an unlock - when canceling a lock, the
5904 * canceled lock is passed in, and it won't be an unlock.
5905 */
5906 fl->fl_type = F_UNLCK;
5907
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005908 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
5909 if (data == NULL) {
5910 nfs_free_seqid(seqid);
5911 return ERR_PTR(-ENOMEM);
5912 }
5913
Chuck Levera9c92d62013-08-09 12:48:18 -04005914 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05005915 msg.rpc_argp = &data->arg;
5916 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04005917 task_setup_data.callback_data = data;
5918 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005919}
5920
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
5922{
Trond Myklebust65b62a22013-02-07 10:54:07 -05005923 struct inode *inode = state->inode;
5924 struct nfs4_state_owner *sp = state->owner;
5925 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005926 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005927 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01005928 struct rpc_task *task;
Trond Myklebustb4019c02015-01-24 14:19:19 -05005929 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebust06f814a2006-01-03 09:55:07 +01005930 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04005931 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Trond Myklebust9b073572006-06-29 16:38:34 -04005933 status = nfs4_set_lock_state(state, request);
5934 /* Unlock _before_ we do the RPC call */
5935 request->fl_flags |= FL_EXISTS;
Trond Myklebust65b62a22013-02-07 10:54:07 -05005936 /* Exclude nfs_delegation_claim_locks() */
5937 mutex_lock(&sp->so_delegreturn_mutex);
5938 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
Trond Myklebust19e03c52008-12-23 15:21:44 -05005939 down_read(&nfsi->rwsem);
Jeff Layton75575dd2016-09-17 18:17:32 -04005940 if (locks_lock_inode_wait(inode, request) == -ENOENT) {
Trond Myklebust19e03c52008-12-23 15:21:44 -05005941 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05005942 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04005943 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05005944 }
5945 up_read(&nfsi->rwsem);
Trond Myklebust65b62a22013-02-07 10:54:07 -05005946 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebust9b073572006-06-29 16:38:34 -04005947 if (status != 0)
5948 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05005949 /* Is this a delegated lock? */
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005950 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebustc5a2a152013-04-30 12:43:42 -04005951 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
5952 goto out;
Trond Myklebustb4019c02015-01-24 14:19:19 -05005953 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
5954 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04005955 status = -ENOMEM;
Trond Myklebustbadc76d2015-01-23 18:48:00 -05005956 if (IS_ERR(seqid))
Trond Myklebust9b073572006-06-29 16:38:34 -04005957 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04005958 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005959 status = PTR_ERR(task);
5960 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04005961 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005962 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05005963 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04005964out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04005965 request->fl_flags = fl_flags;
Trond Myklebustd1b748a2013-08-12 16:35:20 -04005966 trace_nfs4_unlock(request, state, F_SETLK, status);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07005967 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968}
5969
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005970struct nfs4_lockdata {
5971 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01005972 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005973 struct nfs4_lock_state *lsp;
5974 struct nfs_open_context *ctx;
5975 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01005976 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005977 int rpc_status;
5978 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04005979 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005980};
5981
5982static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005983 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
5984 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005985{
5986 struct nfs4_lockdata *p;
5987 struct inode *inode = lsp->ls_state->inode;
5988 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustb4019c02015-01-24 14:19:19 -05005989 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005990
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005991 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01005992 if (p == NULL)
5993 return NULL;
5994
5995 p->arg.fh = NFS_FH(inode);
5996 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005997 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05005998 if (IS_ERR(p->arg.open_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05005999 goto out_free;
Trond Myklebustb4019c02015-01-24 14:19:19 -05006000 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
6001 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebustbadc76d2015-01-23 18:48:00 -05006002 if (IS_ERR(p->arg.lock_seqid))
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006003 goto out_free_seqid;
David Howells7539bba2006-08-22 20:06:09 -04006004 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05006005 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05006006 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006007 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006008 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04006009 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006010 atomic_inc(&lsp->ls_count);
6011 p->ctx = get_nfs_open_context(ctx);
Jeff Laytonfeaff8e2015-05-12 15:48:10 -04006012 get_file(fl->fl_file);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006013 memcpy(&p->fl, fl, sizeof(p->fl));
6014 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006015out_free_seqid:
6016 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006017out_free:
6018 kfree(p);
6019 return NULL;
6020}
6021
6022static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
6023{
6024 struct nfs4_lockdata *data = calldata;
6025 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Harvey Harrison3110ff82008-05-02 13:42:44 -07006027 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006028 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006029 goto out_wait;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006030 /* Do we need to do an open_to_lock_owner? */
Trond Myklebust6b447532015-01-24 18:38:15 -05006031 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006032 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006033 goto out_release_lock_seqid;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006034 }
Trond Myklebust425c1d42015-01-24 14:57:53 -05006035 nfs4_stateid_copy(&data->arg.open_stateid,
6036 &state->open_stateid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006037 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04006038 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006039 } else {
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006040 data->arg.new_lock_owner = 0;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006041 nfs4_stateid_copy(&data->arg.lock_stateid,
6042 &data->lsp->ls_stateid);
6043 }
Trond Myklebust5d422302013-03-14 16:57:48 -04006044 if (!nfs4_valid_open_stateid(state)) {
6045 data->rpc_status = -EBADF;
6046 task->tk_action = NULL;
6047 goto out_release_open_seqid;
6048 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01006049 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04006050 if (nfs4_setup_sequence(data->server,
6051 &data->arg.seq_args,
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006052 &data->res.seq_res,
Trond Myklebustd9afbd12012-10-22 20:28:44 -04006053 task) == 0)
Andy Adamson66179ef2009-04-01 09:22:22 -04006054 return;
Trond Myklebust5d422302013-03-14 16:57:48 -04006055out_release_open_seqid:
Trond Myklebust2240a9e2012-10-29 18:37:40 -04006056 nfs_release_seqid(data->arg.open_seqid);
6057out_release_lock_seqid:
6058 nfs_release_seqid(data->arg.lock_seqid);
Trond Myklebustc8da19b2013-02-11 19:01:21 -05006059out_wait:
6060 nfs4_sequence_done(task, &data->res.seq_res);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006061 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08006062}
6063
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006064static void nfs4_lock_done(struct rpc_task *task, void *calldata)
6065{
6066 struct nfs4_lockdata *data = calldata;
Trond Myklebust39071e62015-01-24 15:07:56 -05006067 struct nfs4_lock_state *lsp = data->lsp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006068
Harvey Harrison3110ff82008-05-02 13:42:44 -07006069 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006070
Trond Myklebust14516c32010-07-31 14:29:06 -04006071 if (!nfs4_sequence_done(task, &data->res.seq_res))
6072 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04006073
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006074 data->rpc_status = task->tk_status;
Trond Myklebust425c1d42015-01-24 14:57:53 -05006075 switch (task->tk_status) {
6076 case 0:
David Howells2b0143b2015-03-17 22:25:59 +00006077 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
Trond Myklebust39071e62015-01-24 15:07:56 -05006078 data->timestamp);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006079 if (data->arg.new_lock) {
6080 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
Jeff Layton75575dd2016-09-17 18:17:32 -04006081 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) {
Trond Myklebustc69899a2015-01-24 16:03:52 -05006082 rpc_restart_call_prepare(task);
6083 break;
6084 }
6085 }
Trond Myklebust39071e62015-01-24 15:07:56 -05006086 if (data->arg.new_lock_owner != 0) {
6087 nfs_confirm_seqid(&lsp->ls_seqid, 0);
6088 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
6089 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
6090 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
6091 rpc_restart_call_prepare(task);
Trond Myklebust425c1d42015-01-24 14:57:53 -05006092 break;
6093 case -NFS4ERR_BAD_STATEID:
6094 case -NFS4ERR_OLD_STATEID:
6095 case -NFS4ERR_STALE_STATEID:
6096 case -NFS4ERR_EXPIRED:
6097 if (data->arg.new_lock_owner != 0) {
6098 if (!nfs4_stateid_match(&data->arg.open_stateid,
6099 &lsp->ls_state->open_stateid))
6100 rpc_restart_call_prepare(task);
6101 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
6102 &lsp->ls_stateid))
6103 rpc_restart_call_prepare(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006104 }
Harvey Harrison3110ff82008-05-02 13:42:44 -07006105 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006106}
6107
6108static void nfs4_lock_release(void *calldata)
6109{
6110 struct nfs4_lockdata *data = calldata;
6111
Harvey Harrison3110ff82008-05-02 13:42:44 -07006112 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05006113 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006114 if (data->cancelled != 0) {
6115 struct rpc_task *task;
6116 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
6117 data->arg.lock_seqid);
6118 if (!IS_ERR(task))
Trond Myklebustbf294b42011-02-21 11:05:41 -08006119 rpc_put_task_async(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006120 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006121 } else
6122 nfs_free_seqid(data->arg.lock_seqid);
6123 nfs4_put_lock_state(data->lsp);
6124 put_nfs_open_context(data->ctx);
Jeff Laytonfeaff8e2015-05-12 15:48:10 -04006125 fput(data->fl.fl_file);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006126 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006127 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006128}
6129
6130static const struct rpc_call_ops nfs4_lock_ops = {
6131 .rpc_call_prepare = nfs4_lock_prepare,
6132 .rpc_call_done = nfs4_lock_done,
6133 .rpc_release = nfs4_lock_release,
6134};
6135
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006136static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
6137{
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006138 switch (error) {
6139 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustd7f3e4b2016-09-22 13:39:09 -04006140 case -NFS4ERR_EXPIRED:
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006141 case -NFS4ERR_BAD_STATEID:
Trond Myklebustecac7992011-03-09 16:00:56 -05006142 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006143 if (new_lock_owner != 0 ||
Trond Myklebust795a88c2012-09-10 13:26:49 -04006144 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
Trond Myklebustecac7992011-03-09 16:00:56 -05006145 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006146 break;
6147 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05006148 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebustecac7992011-03-09 16:00:56 -05006149 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006150 };
6151}
6152
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006153static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006154{
6155 struct nfs4_lockdata *data;
6156 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04006157 struct rpc_message msg = {
6158 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
6159 .rpc_cred = state->owner->so_cred,
6160 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04006161 struct rpc_task_setup task_setup_data = {
6162 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04006163 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006164 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05006165 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04006166 .flags = RPC_TASK_ASYNC,
6167 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006168 int ret;
6169
Harvey Harrison3110ff82008-05-02 13:42:44 -07006170 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006171 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006172 fl->fl_u.nfs4_fl.owner,
6173 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006174 if (data == NULL)
6175 return -ENOMEM;
6176 if (IS_SETLKW(cmd))
6177 data->arg.block = 1;
Chuck Levera9c92d62013-08-09 12:48:18 -04006178 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05006179 msg.rpc_argp = &data->arg;
6180 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006181 task_setup_data.callback_data = data;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04006182 if (recovery_type > NFS_LOCK_NEW) {
6183 if (recovery_type == NFS_LOCK_RECLAIM)
6184 data->arg.reclaim = NFS_LOCK_RECLAIM;
6185 nfs4_set_sequence_privileged(&data->arg.seq_args);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006186 } else
6187 data->arg.new_lock = 1;
Trond Myklebustc970aa82007-07-14 15:39:59 -04006188 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05006189 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006190 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006191 ret = nfs4_wait_for_completion_rpc_task(task);
6192 if (ret == 0) {
6193 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05006194 if (ret)
6195 nfs4_handle_setlk_error(data->server, data->lsp,
6196 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006197 } else
6198 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05006199 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006200 dprintk("%s: done, ret = %d!\n", __func__, ret);
Olga Kornievskaia48c95792015-11-24 13:29:41 -05006201 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01006202 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203}
6204
6205static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
6206{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006207 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006208 struct nfs4_exception exception = {
6209 .inode = state->inode,
6210 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006211 int err;
6212
6213 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006214 /* Cache the lock if possible... */
6215 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6216 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006217 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04006218 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00006219 break;
6220 nfs4_handle_exception(server, err, &exception);
6221 } while (exception.retry);
6222 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223}
6224
6225static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
6226{
Trond Myklebust202b50d2005-06-22 17:16:29 +00006227 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04006228 struct nfs4_exception exception = {
6229 .inode = state->inode,
6230 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00006231 int err;
6232
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05006233 err = nfs4_set_lock_state(state, request);
6234 if (err != 0)
6235 return err;
Trond Myklebustf6de7a32013-09-04 10:08:54 -04006236 if (!recover_lost_locks) {
NeilBrownef1820f2013-09-04 17:04:49 +10006237 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
6238 return 0;
6239 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006240 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04006241 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6242 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006243 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006244 switch (err) {
6245 default:
6246 goto out;
6247 case -NFS4ERR_GRACE:
6248 case -NFS4ERR_DELAY:
6249 nfs4_handle_exception(server, err, &exception);
6250 err = 0;
6251 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00006252 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05006253out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00006254 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255}
6256
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006257#if defined(CONFIG_NFS_V4_1)
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006258static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
6259{
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006260 struct nfs4_lock_state *lsp;
6261 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05006262
Trond Myklebustc5896fc2016-09-22 13:39:03 -04006263 status = nfs4_set_lock_state(state, request);
6264 if (status != 0)
6265 return status;
6266 lsp = request->fl_u.nfs4_fl.owner;
6267 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
6268 test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
6269 return 0;
6270 status = nfs4_lock_expired(state, request);
Chuck Levereb64cf92012-07-11 16:30:05 -04006271 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006272}
6273#endif
6274
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6276{
Trond Myklebust19e03c52008-12-23 15:21:44 -05006277 struct nfs_inode *nfsi = NFS_I(state->inode);
Chuck Lever11476e92016-04-11 16:20:22 -04006278 struct nfs4_state_owner *sp = state->owner;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006279 unsigned char fl_flags = request->fl_flags;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006280 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281
Trond Myklebust01c3b862006-06-29 16:38:39 -04006282 request->fl_flags |= FL_ACCESS;
Jeff Layton75575dd2016-09-17 18:17:32 -04006283 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006284 if (status < 0)
6285 goto out;
Chuck Lever11476e92016-04-11 16:20:22 -04006286 mutex_lock(&sp->so_delegreturn_mutex);
Trond Myklebust19e03c52008-12-23 15:21:44 -05006287 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006288 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04006289 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04006290 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05006291 request->fl_flags = fl_flags & ~FL_SLEEP;
Jeff Layton75575dd2016-09-17 18:17:32 -04006292 status = locks_lock_inode_wait(state->inode, request);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006293 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006294 mutex_unlock(&sp->so_delegreturn_mutex);
Trond Myklebustc69899a2015-01-24 16:03:52 -05006295 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04006296 }
Trond Myklebust9a99af492013-02-04 20:17:49 -05006297 up_read(&nfsi->rwsem);
Chuck Lever11476e92016-04-11 16:20:22 -04006298 mutex_unlock(&sp->so_delegreturn_mutex);
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08006299 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust01c3b862006-06-29 16:38:39 -04006300out:
6301 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302 return status;
6303}
6304
6305static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6306{
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006307 struct nfs4_exception exception = {
6308 .state = state,
Trond Myklebust05ffe242012-04-18 12:20:10 -04006309 .inode = state->inode,
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05006310 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311 int err;
6312
6313 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07006314 err = _nfs4_proc_setlk(state, cmd, request);
6315 if (err == -NFS4ERR_DENIED)
6316 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07006318 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319 } while (exception.retry);
6320 return err;
6321}
6322
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006323#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
6324#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
6325
6326static int
Jeff Laytona1d617d82016-09-17 18:17:39 -04006327nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
6328 struct file_lock *request)
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006329{
6330 int status = -ERESTARTSYS;
6331 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
6332
6333 while(!signalled()) {
6334 status = nfs4_proc_setlk(state, cmd, request);
6335 if ((status != -EAGAIN) || IS_SETLK(cmd))
6336 break;
6337 freezable_schedule_timeout_interruptible(timeout);
6338 timeout *= 2;
6339 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
6340 status = -ERESTARTSYS;
6341 }
6342 return status;
6343}
6344
Jeff Laytona1d617d82016-09-17 18:17:39 -04006345#ifdef CONFIG_NFS_V4_1
6346struct nfs4_lock_waiter {
6347 struct task_struct *task;
6348 struct inode *inode;
6349 struct nfs_lowner *owner;
6350 bool notified;
6351};
6352
6353static int
6354nfs4_wake_lock_waiter(wait_queue_t *wait, unsigned int mode, int flags, void *key)
6355{
6356 int ret;
6357 struct cb_notify_lock_args *cbnl = key;
6358 struct nfs4_lock_waiter *waiter = wait->private;
6359 struct nfs_lowner *lowner = &cbnl->cbnl_owner,
6360 *wowner = waiter->owner;
6361
6362 /* Only wake if the callback was for the same owner */
6363 if (lowner->clientid != wowner->clientid ||
6364 lowner->id != wowner->id ||
6365 lowner->s_dev != wowner->s_dev)
6366 return 0;
6367
6368 /* Make sure it's for the right inode */
6369 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
6370 return 0;
6371
6372 waiter->notified = true;
6373
6374 /* override "private" so we can use default_wake_function */
6375 wait->private = waiter->task;
6376 ret = autoremove_wake_function(wait, mode, flags, key);
6377 wait->private = waiter;
6378 return ret;
6379}
6380
6381static int
6382nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6383{
6384 int status = -ERESTARTSYS;
6385 unsigned long flags;
6386 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
6387 struct nfs_server *server = NFS_SERVER(state->inode);
6388 struct nfs_client *clp = server->nfs_client;
6389 wait_queue_head_t *q = &clp->cl_lock_waitq;
6390 struct nfs_lowner owner = { .clientid = clp->cl_clientid,
6391 .id = lsp->ls_seqid.owner_id,
6392 .s_dev = server->s_dev };
6393 struct nfs4_lock_waiter waiter = { .task = current,
6394 .inode = state->inode,
6395 .owner = &owner,
6396 .notified = false };
6397 wait_queue_t wait;
6398
6399 /* Don't bother with waitqueue if we don't expect a callback */
6400 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
6401 return nfs4_retry_setlk_simple(state, cmd, request);
6402
6403 init_wait(&wait);
6404 wait.private = &waiter;
6405 wait.func = nfs4_wake_lock_waiter;
6406 add_wait_queue(q, &wait);
6407
6408 while(!signalled()) {
6409 status = nfs4_proc_setlk(state, cmd, request);
6410 if ((status != -EAGAIN) || IS_SETLK(cmd))
6411 break;
6412
6413 status = -ERESTARTSYS;
6414 spin_lock_irqsave(&q->lock, flags);
6415 if (waiter.notified) {
6416 spin_unlock_irqrestore(&q->lock, flags);
6417 continue;
6418 }
6419 set_current_state(TASK_INTERRUPTIBLE);
6420 spin_unlock_irqrestore(&q->lock, flags);
6421
6422 freezable_schedule_timeout_interruptible(NFS4_LOCK_MAXTIMEOUT);
6423 }
6424
6425 finish_wait(q, &wait);
6426 return status;
6427}
6428#else /* !CONFIG_NFS_V4_1 */
6429static inline int
6430nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6431{
6432 return nfs4_retry_setlk_simple(state, cmd, request);
6433}
6434#endif
6435
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436static int
6437nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
6438{
6439 struct nfs_open_context *ctx;
6440 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 int status;
6442
6443 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04006444 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 state = ctx->state;
6446
6447 if (request->fl_start < 0 || request->fl_end < 0)
6448 return -EINVAL;
6449
Trond Myklebustd9531262009-07-21 19:22:38 -04006450 if (IS_GETLK(cmd)) {
6451 if (state != NULL)
6452 return nfs4_proc_getlk(state, F_GETLK, request);
6453 return 0;
6454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
6456 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
6457 return -EINVAL;
6458
Trond Myklebustd9531262009-07-21 19:22:38 -04006459 if (request->fl_type == F_UNLCK) {
6460 if (state != NULL)
6461 return nfs4_proc_unlck(state, cmd, request);
6462 return 0;
6463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
Trond Myklebustd9531262009-07-21 19:22:38 -04006465 if (state == NULL)
6466 return -ENOLCK;
Jeff Layton1ea67db2016-09-17 18:17:37 -04006467
6468 if ((request->fl_flags & FL_POSIX) &&
6469 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
6470 return -ENOLCK;
6471
Trond Myklebust55725512012-04-18 12:48:35 -04006472 /*
6473 * Don't rely on the VFS having checked the file open mode,
6474 * since it won't do this for flock() locks.
6475 */
Jeff Laytonf44106e2012-07-23 15:49:56 -04006476 switch (request->fl_type) {
Trond Myklebust55725512012-04-18 12:48:35 -04006477 case F_RDLCK:
6478 if (!(filp->f_mode & FMODE_READ))
6479 return -EBADF;
6480 break;
6481 case F_WRLCK:
6482 if (!(filp->f_mode & FMODE_WRITE))
6483 return -EBADF;
6484 }
6485
Jeff Layton1ea67db2016-09-17 18:17:37 -04006486 status = nfs4_set_lock_state(state, request);
6487 if (status != 0)
6488 return status;
6489
Jeff Laytond2f3a7f2016-09-17 18:17:38 -04006490 return nfs4_retry_setlk(state, cmd, request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491}
6492
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04006493int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
Trond Myklebust888e6942005-11-04 15:38:11 -05006494{
6495 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust888e6942005-11-04 15:38:11 -05006496 int err;
6497
6498 err = nfs4_set_lock_state(state, fl);
6499 if (err != 0)
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04006500 return err;
Trond Myklebust4a706fa2013-04-01 14:47:22 -04006501 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustdb4f2e632013-04-01 15:56:46 -04006502 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
Trond Myklebust888e6942005-11-04 15:38:11 -05006503}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006504
Trond Myklebustcf470c32012-03-07 13:49:12 -05006505struct nfs_release_lockowner_data {
6506 struct nfs4_lock_state *lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006507 struct nfs_server *server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006508 struct nfs_release_lockowner_args args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006509 struct nfs_release_lockowner_res res;
Chuck Lever60ea6812013-10-17 14:13:47 -04006510 unsigned long timestamp;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006511};
6512
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006513static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
6514{
6515 struct nfs_release_lockowner_data *data = calldata;
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006516 struct nfs_server *server = data->server;
Peng Taocb04ad22014-06-11 05:24:15 +08006517 nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
6518 &data->args.seq_args, &data->res.seq_res, task);
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006519 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
Chuck Lever60ea6812013-10-17 14:13:47 -04006520 data->timestamp = jiffies;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006521}
6522
6523static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
6524{
6525 struct nfs_release_lockowner_data *data = calldata;
Chuck Lever60ea6812013-10-17 14:13:47 -04006526 struct nfs_server *server = data->server;
6527
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006528 nfs40_sequence_done(task, &data->res.seq_res);
Chuck Lever60ea6812013-10-17 14:13:47 -04006529
6530 switch (task->tk_status) {
6531 case 0:
6532 renew_lease(server, data->timestamp);
6533 break;
6534 case -NFS4ERR_STALE_CLIENTID:
6535 case -NFS4ERR_EXPIRED:
Kinglong Mee5b53dc82014-08-04 16:18:16 +08006536 nfs4_schedule_lease_recovery(server->nfs_client);
6537 break;
Chuck Lever60ea6812013-10-17 14:13:47 -04006538 case -NFS4ERR_LEASE_MOVED:
6539 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10006540 if (nfs4_async_handle_error(task, server,
6541 NULL, NULL) == -EAGAIN)
Chuck Lever60ea6812013-10-17 14:13:47 -04006542 rpc_restart_call_prepare(task);
6543 }
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006544}
6545
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006546static void nfs4_release_lockowner_release(void *calldata)
6547{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006548 struct nfs_release_lockowner_data *data = calldata;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006549 nfs4_free_lock_state(data->server, data->lsp);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006550 kfree(calldata);
6551}
6552
Trond Myklebust17280172012-03-11 13:11:00 -04006553static const struct rpc_call_ops nfs4_release_lockowner_ops = {
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006554 .rpc_call_prepare = nfs4_release_lockowner_prepare,
6555 .rpc_call_done = nfs4_release_lockowner_done,
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006556 .rpc_release = nfs4_release_lockowner_release,
6557};
6558
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006559static void
6560nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006561{
Trond Myklebustcf470c32012-03-07 13:49:12 -05006562 struct nfs_release_lockowner_data *data;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006563 struct rpc_message msg = {
6564 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
6565 };
6566
6567 if (server->nfs_client->cl_mvops->minor_version != 0)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006568 return;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006569
Trond Myklebustcf470c32012-03-07 13:49:12 -05006570 data = kmalloc(sizeof(*data), GFP_NOFS);
6571 if (!data)
Jeff Laytonf1cdae82014-05-01 06:28:47 -04006572 return;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006573 data->lsp = lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04006574 data->server = server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05006575 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6576 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
6577 data->args.lock_owner.s_dev = server->s_dev;
Chuck Leverfbd4bfd2013-08-09 12:49:38 -04006578
Trond Myklebustcf470c32012-03-07 13:49:12 -05006579 msg.rpc_argp = &data->args;
Trond Myklebustb7e63a12014-02-26 11:19:14 -08006580 msg.rpc_resp = &data->res;
6581 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
Trond Myklebustcf470c32012-03-07 13:49:12 -05006582 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04006583}
6584
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00006585#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
6586
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006587static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006588 struct dentry *unused, struct inode *inode,
6589 const char *key, const void *buf,
6590 size_t buflen, int flags)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006591{
Al Viro59301222016-05-27 10:19:30 -04006592 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006593}
6594
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006595static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006596 struct dentry *unused, struct inode *inode,
6597 const char *key, void *buf, size_t buflen)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006598{
Al Virob2968212016-04-10 20:48:24 -04006599 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006600}
6601
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006602static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006603{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +01006604 return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)));
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006605}
6606
David Quigleyc9bccef2013-05-22 12:50:45 -04006607#ifdef CONFIG_NFS_V4_SECURITY_LABEL
David Quigleyc9bccef2013-05-22 12:50:45 -04006608
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006609static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04006610 struct dentry *unused, struct inode *inode,
6611 const char *key, const void *buf,
6612 size_t buflen, int flags)
David Quigleyc9bccef2013-05-22 12:50:45 -04006613{
6614 if (security_ismaclabel(key))
Al Viro59301222016-05-27 10:19:30 -04006615 return nfs4_set_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006616
6617 return -EOPNOTSUPP;
6618}
6619
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +02006620static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -04006621 struct dentry *unused, struct inode *inode,
6622 const char *key, void *buf, size_t buflen)
David Quigleyc9bccef2013-05-22 12:50:45 -04006623{
6624 if (security_ismaclabel(key))
Al Virob2968212016-04-10 20:48:24 -04006625 return nfs4_get_security_label(inode, buf, buflen);
David Quigleyc9bccef2013-05-22 12:50:45 -04006626 return -EOPNOTSUPP;
6627}
6628
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006629static ssize_t
6630nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
David Quigleyc9bccef2013-05-22 12:50:45 -04006631{
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006632 int len = 0;
David Quigleyc9bccef2013-05-22 12:50:45 -04006633
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006634 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
6635 len = security_inode_listsecurity(inode, list, list_len);
6636 if (list_len && len > list_len)
6637 return -ERANGE;
David Quigleyc9bccef2013-05-22 12:50:45 -04006638 }
6639 return len;
6640}
6641
6642static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
6643 .prefix = XATTR_SECURITY_PREFIX,
David Quigleyc9bccef2013-05-22 12:50:45 -04006644 .get = nfs4_xattr_get_nfs4_label,
6645 .set = nfs4_xattr_set_nfs4_label,
6646};
David Quigleyc9bccef2013-05-22 12:50:45 -04006647
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01006648#else
6649
6650static ssize_t
6651nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
6652{
6653 return 0;
6654}
6655
6656#endif
David Quigleyc9bccef2013-05-22 12:50:45 -04006657
Andy Adamson533eb462011-06-13 18:25:56 -04006658/*
6659 * nfs_fhget will use either the mounted_on_fileid or the fileid
6660 */
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006661static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
6662{
Andy Adamson533eb462011-06-13 18:25:56 -04006663 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
6664 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
6665 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
Chuck Lever81934dd2012-03-01 17:01:57 -05006666 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006667 return;
6668
6669 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Chuck Lever81934dd2012-03-01 17:01:57 -05006670 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust69aaaae2009-03-11 14:10:28 -04006671 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
6672 fattr->nlink = 2;
6673}
6674
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006675static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6676 const struct qstr *name,
6677 struct nfs4_fs_locations *fs_locations,
6678 struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04006679{
6680 struct nfs_server *server = NFS_SERVER(dir);
David Quigleya09df2c2013-05-22 12:50:41 -04006681 u32 bitmask[3] = {
Manoj Naik361e6242006-06-09 09:34:24 -04006682 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006683 };
6684 struct nfs4_fs_locations_arg args = {
6685 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05006686 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006687 .page = page,
6688 .bitmask = bitmask,
6689 };
Benny Halevy22958462009-04-01 09:22:02 -04006690 struct nfs4_fs_locations_res res = {
6691 .fs_locations = fs_locations,
6692 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04006693 struct rpc_message msg = {
6694 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6695 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04006696 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04006697 };
6698 int status;
6699
Harvey Harrison3110ff82008-05-02 13:42:44 -07006700 dprintk("%s: start\n", __func__);
Andy Adamson533eb462011-06-13 18:25:56 -04006701
6702 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
6703 * is not supported */
6704 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
6705 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
6706 else
6707 bitmask[0] |= FATTR4_WORD0_FILEID;
6708
Trond Myklebustc228fd32007-01-13 02:28:11 -05006709 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006710 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04006711 fs_locations->nlocations = 0;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006712 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07006713 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04006714 return status;
6715}
6716
Bryan Schumakerf05d1472012-04-27 13:27:41 -04006717int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6718 const struct qstr *name,
6719 struct nfs4_fs_locations *fs_locations,
6720 struct page *page)
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006721{
6722 struct nfs4_exception exception = { };
6723 int err;
6724 do {
Trond Myklebust078ea3d2013-08-12 16:45:55 -04006725 err = _nfs4_proc_fs_locations(client, dir, name,
6726 fs_locations, page);
6727 trace_nfs4_get_fs_locations(dir, name, err);
6728 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04006729 &exception);
6730 } while (exception.retry);
6731 return err;
6732}
6733
Chuck Leverb03d7352013-10-17 14:12:50 -04006734/*
6735 * This operation also signals the server that this client is
6736 * performing migration recovery. The server can stop returning
6737 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
6738 * appended to this compound to identify the client ID which is
6739 * performing recovery.
6740 */
6741static int _nfs40_proc_get_locations(struct inode *inode,
6742 struct nfs4_fs_locations *locations,
6743 struct page *page, struct rpc_cred *cred)
6744{
6745 struct nfs_server *server = NFS_SERVER(inode);
6746 struct rpc_clnt *clnt = server->client;
6747 u32 bitmask[2] = {
6748 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6749 };
6750 struct nfs4_fs_locations_arg args = {
6751 .clientid = server->nfs_client->cl_clientid,
6752 .fh = NFS_FH(inode),
6753 .page = page,
6754 .bitmask = bitmask,
6755 .migration = 1, /* skip LOOKUP */
6756 .renew = 1, /* append RENEW */
6757 };
6758 struct nfs4_fs_locations_res res = {
6759 .fs_locations = locations,
6760 .migration = 1,
6761 .renew = 1,
6762 };
6763 struct rpc_message msg = {
6764 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6765 .rpc_argp = &args,
6766 .rpc_resp = &res,
6767 .rpc_cred = cred,
6768 };
6769 unsigned long now = jiffies;
6770 int status;
6771
6772 nfs_fattr_init(&locations->fattr);
6773 locations->server = server;
6774 locations->nlocations = 0;
6775
6776 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6777 nfs4_set_sequence_privileged(&args.seq_args);
6778 status = nfs4_call_sync_sequence(clnt, server, &msg,
6779 &args.seq_args, &res.seq_res);
6780 if (status)
6781 return status;
6782
6783 renew_lease(server, now);
6784 return 0;
6785}
6786
6787#ifdef CONFIG_NFS_V4_1
6788
6789/*
6790 * This operation also signals the server that this client is
6791 * performing migration recovery. The server can stop asserting
6792 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
6793 * performing this operation is identified in the SEQUENCE
6794 * operation in this compound.
6795 *
6796 * When the client supports GETATTR(fs_locations_info), it can
6797 * be plumbed in here.
6798 */
6799static int _nfs41_proc_get_locations(struct inode *inode,
6800 struct nfs4_fs_locations *locations,
6801 struct page *page, struct rpc_cred *cred)
6802{
6803 struct nfs_server *server = NFS_SERVER(inode);
6804 struct rpc_clnt *clnt = server->client;
6805 u32 bitmask[2] = {
6806 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6807 };
6808 struct nfs4_fs_locations_arg args = {
6809 .fh = NFS_FH(inode),
6810 .page = page,
6811 .bitmask = bitmask,
6812 .migration = 1, /* skip LOOKUP */
6813 };
6814 struct nfs4_fs_locations_res res = {
6815 .fs_locations = locations,
6816 .migration = 1,
6817 };
6818 struct rpc_message msg = {
6819 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6820 .rpc_argp = &args,
6821 .rpc_resp = &res,
6822 .rpc_cred = cred,
6823 };
6824 int status;
6825
6826 nfs_fattr_init(&locations->fattr);
6827 locations->server = server;
6828 locations->nlocations = 0;
6829
6830 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6831 nfs4_set_sequence_privileged(&args.seq_args);
6832 status = nfs4_call_sync_sequence(clnt, server, &msg,
6833 &args.seq_args, &res.seq_res);
6834 if (status == NFS4_OK &&
6835 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6836 status = -NFS4ERR_LEASE_MOVED;
6837 return status;
6838}
6839
6840#endif /* CONFIG_NFS_V4_1 */
6841
6842/**
6843 * nfs4_proc_get_locations - discover locations for a migrated FSID
6844 * @inode: inode on FSID that is migrating
6845 * @locations: result of query
6846 * @page: buffer
6847 * @cred: credential to use for this operation
6848 *
6849 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
6850 * operation failed, or a negative errno if a local error occurred.
6851 *
6852 * On success, "locations" is filled in, but if the server has
6853 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
6854 * asserted.
6855 *
6856 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
6857 * from this client that require migration recovery.
6858 */
6859int nfs4_proc_get_locations(struct inode *inode,
6860 struct nfs4_fs_locations *locations,
6861 struct page *page, struct rpc_cred *cred)
6862{
6863 struct nfs_server *server = NFS_SERVER(inode);
6864 struct nfs_client *clp = server->nfs_client;
6865 const struct nfs4_mig_recovery_ops *ops =
6866 clp->cl_mvops->mig_recovery_ops;
6867 struct nfs4_exception exception = { };
6868 int status;
6869
6870 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6871 (unsigned long long)server->fsid.major,
6872 (unsigned long long)server->fsid.minor,
6873 clp->cl_hostname);
6874 nfs_display_fhandle(NFS_FH(inode), __func__);
6875
6876 do {
6877 status = ops->get_locations(inode, locations, page, cred);
6878 if (status != -NFS4ERR_DELAY)
6879 break;
6880 nfs4_handle_exception(server, status, &exception);
6881 } while (exception.retry);
6882 return status;
6883}
6884
Chuck Lever44c99932013-10-17 14:13:30 -04006885/*
6886 * This operation also signals the server that this client is
6887 * performing "lease moved" recovery. The server can stop
6888 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
6889 * is appended to this compound to identify the client ID which is
6890 * performing recovery.
6891 */
6892static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6893{
6894 struct nfs_server *server = NFS_SERVER(inode);
6895 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
6896 struct rpc_clnt *clnt = server->client;
6897 struct nfs4_fsid_present_arg args = {
6898 .fh = NFS_FH(inode),
6899 .clientid = clp->cl_clientid,
6900 .renew = 1, /* append RENEW */
6901 };
6902 struct nfs4_fsid_present_res res = {
6903 .renew = 1,
6904 };
6905 struct rpc_message msg = {
6906 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6907 .rpc_argp = &args,
6908 .rpc_resp = &res,
6909 .rpc_cred = cred,
6910 };
6911 unsigned long now = jiffies;
6912 int status;
6913
6914 res.fh = nfs_alloc_fhandle();
6915 if (res.fh == NULL)
6916 return -ENOMEM;
6917
6918 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6919 nfs4_set_sequence_privileged(&args.seq_args);
6920 status = nfs4_call_sync_sequence(clnt, server, &msg,
6921 &args.seq_args, &res.seq_res);
6922 nfs_free_fhandle(res.fh);
6923 if (status)
6924 return status;
6925
6926 do_renew_lease(clp, now);
6927 return 0;
6928}
6929
6930#ifdef CONFIG_NFS_V4_1
6931
6932/*
6933 * This operation also signals the server that this client is
6934 * performing "lease moved" recovery. The server can stop asserting
6935 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
6936 * this operation is identified in the SEQUENCE operation in this
6937 * compound.
6938 */
6939static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6940{
6941 struct nfs_server *server = NFS_SERVER(inode);
6942 struct rpc_clnt *clnt = server->client;
6943 struct nfs4_fsid_present_arg args = {
6944 .fh = NFS_FH(inode),
6945 };
6946 struct nfs4_fsid_present_res res = {
6947 };
6948 struct rpc_message msg = {
6949 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6950 .rpc_argp = &args,
6951 .rpc_resp = &res,
6952 .rpc_cred = cred,
6953 };
6954 int status;
6955
6956 res.fh = nfs_alloc_fhandle();
6957 if (res.fh == NULL)
6958 return -ENOMEM;
6959
6960 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6961 nfs4_set_sequence_privileged(&args.seq_args);
6962 status = nfs4_call_sync_sequence(clnt, server, &msg,
6963 &args.seq_args, &res.seq_res);
6964 nfs_free_fhandle(res.fh);
6965 if (status == NFS4_OK &&
6966 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6967 status = -NFS4ERR_LEASE_MOVED;
6968 return status;
6969}
6970
6971#endif /* CONFIG_NFS_V4_1 */
6972
6973/**
6974 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
6975 * @inode: inode on FSID to check
6976 * @cred: credential to use for this operation
6977 *
6978 * Server indicates whether the FSID is present, moved, or not
6979 * recognized. This operation is necessary to clear a LEASE_MOVED
6980 * condition for this client ID.
6981 *
6982 * Returns NFS4_OK if the FSID is present on this server,
6983 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
6984 * NFS4ERR code if some error occurred on the server, or a
6985 * negative errno if a local failure occurred.
6986 */
6987int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6988{
6989 struct nfs_server *server = NFS_SERVER(inode);
6990 struct nfs_client *clp = server->nfs_client;
6991 const struct nfs4_mig_recovery_ops *ops =
6992 clp->cl_mvops->mig_recovery_ops;
6993 struct nfs4_exception exception = { };
6994 int status;
6995
6996 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6997 (unsigned long long)server->fsid.major,
6998 (unsigned long long)server->fsid.minor,
6999 clp->cl_hostname);
7000 nfs_display_fhandle(NFS_FH(inode), __func__);
7001
7002 do {
7003 status = ops->fsid_present(inode, cred);
7004 if (status != -NFS4ERR_DELAY)
7005 break;
7006 nfs4_handle_exception(server, status, &exception);
7007 } while (exception.retry);
7008 return status;
7009}
7010
Andy Adamson5ec16a82013-08-08 10:57:55 -04007011/**
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007012 * If 'use_integrity' is true and the state managment nfs_client
7013 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
7014 * and the machine credential as per RFC3530bis and RFC5661 Security
7015 * Considerations sections. Otherwise, just use the user cred with the
7016 * filesystem's rpc_client.
Andy Adamson5ec16a82013-08-08 10:57:55 -04007017 */
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007018static 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 +00007019{
7020 int status;
7021 struct nfs4_secinfo_arg args = {
7022 .dir_fh = NFS_FH(dir),
7023 .name = name,
7024 };
7025 struct nfs4_secinfo_res res = {
7026 .flavors = flavors,
7027 };
7028 struct rpc_message msg = {
7029 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
7030 .rpc_argp = &args,
7031 .rpc_resp = &res,
7032 };
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007033 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007034 struct rpc_cred *cred = NULL;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007035
7036 if (use_integrity) {
7037 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007038 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client);
7039 msg.rpc_cred = cred;
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007040 }
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007041
7042 dprintk("NFS call secinfo %s\n", name->name);
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007043
7044 nfs4_state_protect(NFS_SERVER(dir)->nfs_client,
7045 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
7046
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007047 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args,
7048 &res.seq_res, 0);
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007049 dprintk("NFS reply secinfo: %d\n", status);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007050
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04007051 if (cred)
7052 put_rpccred(cred);
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007053
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007054 return status;
7055}
7056
Bryan Schumaker72de53e2012-04-27 13:27:40 -04007057int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
7058 struct nfs4_secinfo_flavors *flavors)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007059{
7060 struct nfs4_exception exception = { };
7061 int err;
7062 do {
Weston Andros Adamsona5250de2013-09-03 15:18:49 -04007063 err = -NFS4ERR_WRONGSEC;
7064
7065 /* try to use integrity protection with machine cred */
7066 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
7067 err = _nfs4_proc_secinfo(dir, name, flavors, true);
7068
7069 /*
7070 * if unable to use integrity protection, or SECINFO with
7071 * integrity protection returns NFS4ERR_WRONGSEC (which is
7072 * disallowed by spec, but exists in deployed servers) use
7073 * the current filesystem's rpc_client and the user cred.
7074 */
7075 if (err == -NFS4ERR_WRONGSEC)
7076 err = _nfs4_proc_secinfo(dir, name, flavors, false);
7077
Trond Myklebust078ea3d2013-08-12 16:45:55 -04007078 trace_nfs4_secinfo(dir, name, err);
7079 err = nfs4_handle_exception(NFS_SERVER(dir), err,
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00007080 &exception);
7081 } while (exception.retry);
7082 return err;
7083}
7084
Andy Adamson557134a2009-04-01 09:21:53 -04007085#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04007086/*
Andy Adamson357f54d2010-12-14 10:11:57 -05007087 * Check the exchange flags returned by the server for invalid flags, having
7088 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
7089 * DS flags set.
7090 */
7091static int nfs4_check_cl_exchange_flags(u32 flags)
7092{
7093 if (flags & ~EXCHGID4_FLAG_MASK_R)
7094 goto out_inval;
7095 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
7096 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
7097 goto out_inval;
7098 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
7099 goto out_inval;
7100 return NFS_OK;
7101out_inval:
7102 return -NFS4ERR_INVAL;
7103}
7104
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007105static bool
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007106nfs41_same_server_scope(struct nfs41_server_scope *a,
7107 struct nfs41_server_scope *b)
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007108{
7109 if (a->server_scope_sz == b->server_scope_sz &&
7110 memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0)
7111 return true;
7112
7113 return false;
7114}
7115
Andy Adamson02a95de2016-02-05 16:08:37 -05007116static void
7117nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
7118{
7119}
7120
7121static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
7122 .rpc_call_done = &nfs4_bind_one_conn_to_session_done,
7123};
7124
Andy Adamson357f54d2010-12-14 10:11:57 -05007125/*
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007126 * nfs4_proc_bind_one_conn_to_session()
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007127 *
7128 * The 4.1 client currently uses the same TCP connection for the
7129 * fore and backchannel.
7130 */
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007131static
7132int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
7133 struct rpc_xprt *xprt,
7134 struct nfs_client *clp,
7135 struct rpc_cred *cred)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007136{
7137 int status;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007138 struct nfs41_bind_conn_to_session_args args = {
7139 .client = clp,
7140 .dir = NFS4_CDFC4_FORE_OR_BOTH,
7141 };
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007142 struct nfs41_bind_conn_to_session_res res;
7143 struct rpc_message msg = {
7144 .rpc_proc =
7145 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
Trond Myklebust71a097c2015-02-18 09:27:18 -08007146 .rpc_argp = &args,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007147 .rpc_resp = &res,
Trond Myklebust2cf047c2012-05-25 17:57:41 -04007148 .rpc_cred = cred,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007149 };
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007150 struct rpc_task_setup task_setup_data = {
7151 .rpc_client = clnt,
7152 .rpc_xprt = xprt,
Andy Adamson02a95de2016-02-05 16:08:37 -05007153 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007154 .rpc_message = &msg,
7155 .flags = RPC_TASK_TIMEOUT,
7156 };
7157 struct rpc_task *task;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007158
7159 dprintk("--> %s\n", __func__);
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007160
Trond Myklebust71a097c2015-02-18 09:27:18 -08007161 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
7162 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
7163 args.dir = NFS4_CDFC4_FORE;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007164
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007165 /* Do not set the backchannel flag unless this is clnt->cl_xprt */
7166 if (xprt != rcu_access_pointer(clnt->cl_xprt))
7167 args.dir = NFS4_CDFC4_FORE;
7168
7169 task = rpc_run_task(&task_setup_data);
7170 if (!IS_ERR(task)) {
7171 status = task->tk_status;
7172 rpc_put_task(task);
7173 } else
7174 status = PTR_ERR(task);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007175 trace_nfs4_bind_conn_to_session(clp, status);
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007176 if (status == 0) {
Trond Myklebust71a097c2015-02-18 09:27:18 -08007177 if (memcmp(res.sessionid.data,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007178 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
7179 dprintk("NFS: %s: Session ID mismatch\n", __func__);
7180 status = -EIO;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007181 goto out;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007182 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007183 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007184 dprintk("NFS: %s: Unexpected direction from server\n",
7185 __func__);
7186 status = -EIO;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007187 goto out;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007188 }
Trond Myklebust71a097c2015-02-18 09:27:18 -08007189 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007190 dprintk("NFS: %s: Server returned RDMA mode = true\n",
7191 __func__);
7192 status = -EIO;
Trond Myklebust71a097c2015-02-18 09:27:18 -08007193 goto out;
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007194 }
7195 }
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007196out:
7197 dprintk("<-- %s status= %d\n", __func__, status);
7198 return status;
7199}
7200
Trond Myklebustd9ddbf52016-01-30 22:58:24 -05007201struct rpc_bind_conn_calldata {
7202 struct nfs_client *clp;
7203 struct rpc_cred *cred;
7204};
7205
7206static int
7207nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
7208 struct rpc_xprt *xprt,
7209 void *calldata)
7210{
7211 struct rpc_bind_conn_calldata *p = calldata;
7212
7213 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
7214}
7215
7216int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
7217{
7218 struct rpc_bind_conn_calldata data = {
7219 .clp = clp,
7220 .cred = cred,
7221 };
7222 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
7223 nfs4_proc_bind_conn_to_session_callback, &data);
7224}
7225
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04007226/*
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007227 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
7228 * and operations we'd like to see to enable certain features in the allow map
Benny Halevy99fe60d2009-04-01 09:22:29 -04007229 */
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007230static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
7231 .how = SP4_MACH_CRED,
7232 .enforce.u.words = {
7233 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7234 1 << (OP_EXCHANGE_ID - 32) |
7235 1 << (OP_CREATE_SESSION - 32) |
7236 1 << (OP_DESTROY_SESSION - 32) |
7237 1 << (OP_DESTROY_CLIENTID - 32)
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007238 },
7239 .allow.u.words = {
7240 [0] = 1 << (OP_CLOSE) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007241 1 << (OP_OPEN_DOWNGRADE) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007242 1 << (OP_LOCKU) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007243 1 << (OP_DELEGRETURN) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007244 1 << (OP_COMMIT),
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007245 [1] = 1 << (OP_SECINFO - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007246 1 << (OP_SECINFO_NO_NAME - 32) |
Andrew Elble99ade3c2015-12-02 09:39:51 -05007247 1 << (OP_LAYOUTRETURN - 32) |
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007248 1 << (OP_TEST_STATEID - 32) |
Weston Andros Adamsona0279622013-09-10 18:44:30 -04007249 1 << (OP_FREE_STATEID - 32) |
7250 1 << (OP_WRITE - 32)
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007251 }
7252};
7253
7254/*
7255 * Select the state protection mode for client `clp' given the server results
7256 * from exchange_id in `sp'.
7257 *
7258 * Returns 0 on success, negative errno otherwise.
7259 */
7260static int nfs4_sp4_select_mode(struct nfs_client *clp,
7261 struct nfs41_state_protection *sp)
7262{
7263 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
7264 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7265 1 << (OP_EXCHANGE_ID - 32) |
7266 1 << (OP_CREATE_SESSION - 32) |
7267 1 << (OP_DESTROY_SESSION - 32) |
7268 1 << (OP_DESTROY_CLIENTID - 32)
7269 };
7270 unsigned int i;
7271
7272 if (sp->how == SP4_MACH_CRED) {
7273 /* Print state protect result */
7274 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
7275 for (i = 0; i <= LAST_NFS4_OP; i++) {
7276 if (test_bit(i, sp->enforce.u.longs))
7277 dfprintk(MOUNT, " enforce op %d\n", i);
7278 if (test_bit(i, sp->allow.u.longs))
7279 dfprintk(MOUNT, " allow op %d\n", i);
7280 }
7281
7282 /* make sure nothing is on enforce list that isn't supported */
7283 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
7284 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
7285 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7286 return -EINVAL;
7287 }
7288 }
7289
7290 /*
7291 * Minimal mode - state operations are allowed to use machine
7292 * credential. Note this already happens by default, so the
7293 * client doesn't have to do anything more than the negotiation.
7294 *
7295 * NOTE: we don't care if EXCHANGE_ID is in the list -
7296 * we're already using the machine cred for exchange_id
7297 * and will never use a different cred.
7298 */
7299 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
7300 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
7301 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
7302 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
7303 dfprintk(MOUNT, "sp4_mach_cred:\n");
7304 dfprintk(MOUNT, " minimal mode enabled\n");
7305 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags);
7306 } else {
7307 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7308 return -EINVAL;
7309 }
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007310
7311 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
Andrew Elble99ade3c2015-12-02 09:39:51 -05007312 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
7313 test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
Weston Andros Adamsonfa940722013-08-13 16:37:34 -04007314 test_bit(OP_LOCKU, sp->allow.u.longs)) {
7315 dfprintk(MOUNT, " cleanup mode enabled\n");
7316 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags);
7317 }
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007318
Andrew Elble99ade3c2015-12-02 09:39:51 -05007319 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
7320 dfprintk(MOUNT, " pnfs cleanup mode enabled\n");
7321 set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP,
7322 &clp->cl_sp4_flags);
7323 }
7324
Weston Andros Adamson8b5bee22013-08-13 16:37:35 -04007325 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
7326 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
7327 dfprintk(MOUNT, " secinfo mode enabled\n");
7328 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
7329 }
Weston Andros Adamson3787d502013-08-13 16:37:36 -04007330
7331 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
7332 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
7333 dfprintk(MOUNT, " stateid mode enabled\n");
7334 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
7335 }
Weston Andros Adamson8c21c622013-08-13 16:37:37 -04007336
7337 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
7338 dfprintk(MOUNT, " write mode enabled\n");
7339 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags);
7340 }
7341
7342 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
7343 dfprintk(MOUNT, " commit mode enabled\n");
7344 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags);
7345 }
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007346 }
7347
7348 return 0;
7349}
7350
Andy Adamson8d89bd72016-09-09 09:22:18 -04007351struct nfs41_exchange_id_data {
7352 struct nfs41_exchange_id_res res;
7353 struct nfs41_exchange_id_args args;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007354 struct rpc_xprt *xprt;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007355 int rpc_status;
7356};
7357
7358static void nfs4_exchange_id_done(struct rpc_task *task, void *data)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007359{
Andy Adamson8d89bd72016-09-09 09:22:18 -04007360 struct nfs41_exchange_id_data *cdata =
7361 (struct nfs41_exchange_id_data *)data;
7362 struct nfs_client *clp = cdata->args.client;
7363 int status = task->tk_status;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007364
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007365 trace_nfs4_exchange_id(clp, status);
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007366
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007367 if (status == 0)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007368 status = nfs4_check_cl_exchange_flags(cdata->res.flags);
Andy Adamsonad0849a2016-09-09 09:22:28 -04007369
7370 if (cdata->xprt && status == 0) {
7371 status = nfs4_detect_session_trunking(clp, &cdata->res,
7372 cdata->xprt);
7373 goto out;
7374 }
7375
Andy Adamson8d89bd72016-09-09 09:22:18 -04007376 if (status == 0)
7377 status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007378
Chuck Lever177313f2012-05-21 22:44:58 -04007379 if (status == 0) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007380 clp->cl_clientid = cdata->res.clientid;
7381 clp->cl_exchange_flags = cdata->res.flags;
Trond Myklebuste11259f2015-03-03 20:35:31 -05007382 /* Client ID is not confirmed */
Andy Adamson8d89bd72016-09-09 09:22:18 -04007383 if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R)) {
Trond Myklebuste11259f2015-03-03 20:35:31 -05007384 clear_bit(NFS4_SESSION_ESTABLISHED,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007385 &clp->cl_session->session_state);
7386 clp->cl_seqid = cdata->res.seqid;
Trond Myklebuste11259f2015-03-03 20:35:31 -05007387 }
Trond Myklebust32b01312012-05-26 13:41:04 -04007388
Chuck Leveracdeb692012-05-21 22:46:16 -04007389 kfree(clp->cl_serverowner);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007390 clp->cl_serverowner = cdata->res.server_owner;
7391 cdata->res.server_owner = NULL;
Chuck Leveracdeb692012-05-21 22:46:16 -04007392
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007393 /* use the most recent implementation id */
Chuck Lever59155542012-05-21 22:44:41 -04007394 kfree(clp->cl_implid);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007395 clp->cl_implid = cdata->res.impl_id;
7396 cdata->res.impl_id = NULL;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007397
Chuck Lever177313f2012-05-21 22:44:58 -04007398 if (clp->cl_serverscope != NULL &&
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007399 !nfs41_same_server_scope(clp->cl_serverscope,
Andy Adamson8d89bd72016-09-09 09:22:18 -04007400 cdata->res.server_scope)) {
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007401 dprintk("%s: server_scope mismatch detected\n",
7402 __func__);
7403 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
Chuck Lever79d4e1f2012-05-21 22:44:31 -04007404 kfree(clp->cl_serverscope);
7405 clp->cl_serverscope = NULL;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04007406 }
7407
Chuck Lever177313f2012-05-21 22:44:58 -04007408 if (clp->cl_serverscope == NULL) {
Andy Adamson8d89bd72016-09-09 09:22:18 -04007409 clp->cl_serverscope = cdata->res.server_scope;
7410 cdata->res.server_scope = NULL;
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007411 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007412 /* Save the EXCHANGE_ID verifier session trunk tests */
7413 memcpy(clp->cl_confirm.data, cdata->args.verifier->data,
7414 sizeof(clp->cl_confirm.data));
Andy Adamson8d89bd72016-09-09 09:22:18 -04007415 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007416out:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007417 cdata->rpc_status = status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007418 return;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007419}
7420
7421static void nfs4_exchange_id_release(void *data)
7422{
7423 struct nfs41_exchange_id_data *cdata =
7424 (struct nfs41_exchange_id_data *)data;
7425
Andy Adamsonad0849a2016-09-09 09:22:28 -04007426 if (cdata->xprt) {
7427 xprt_put(cdata->xprt);
7428 rpc_clnt_xprt_switch_put(cdata->args.client->cl_rpcclient);
7429 }
Olga Kornievskaiab76d4fb2017-03-13 10:36:19 -04007430 nfs_put_client(cdata->args.client);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007431 kfree(cdata->res.impl_id);
7432 kfree(cdata->res.server_scope);
7433 kfree(cdata->res.server_owner);
7434 kfree(cdata);
7435}
7436
7437static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
7438 .rpc_call_done = nfs4_exchange_id_done,
7439 .rpc_release = nfs4_exchange_id_release,
7440};
7441
Benny Halevy99fe60d2009-04-01 09:22:29 -04007442/*
7443 * _nfs4_proc_exchange_id()
7444 *
7445 * Wrapper for EXCHANGE_ID operation.
7446 */
7447static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred,
Andy Adamsonad0849a2016-09-09 09:22:28 -04007448 u32 sp4_how, struct rpc_xprt *xprt)
Benny Halevy99fe60d2009-04-01 09:22:29 -04007449{
7450 nfs4_verifier verifier;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007451 struct rpc_message msg = {
7452 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
Benny Halevy99fe60d2009-04-01 09:22:29 -04007453 .rpc_cred = cred,
7454 };
Andy Adamson8d89bd72016-09-09 09:22:18 -04007455 struct rpc_task_setup task_setup_data = {
7456 .rpc_client = clp->cl_rpcclient,
7457 .callback_ops = &nfs4_exchange_id_call_ops,
7458 .rpc_message = &msg,
7459 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
7460 };
7461 struct nfs41_exchange_id_data *calldata;
7462 struct rpc_task *task;
7463 int status = -EIO;
7464
7465 if (!atomic_inc_not_zero(&clp->cl_count))
7466 goto out;
7467
7468 status = -ENOMEM;
7469 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
7470 if (!calldata)
7471 goto out;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007472
Andy Adamsonad0849a2016-09-09 09:22:28 -04007473 if (!xprt)
7474 nfs4_init_boot_verifier(clp, &verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007475
7476 status = nfs4_init_uniform_client_string(clp);
7477 if (status)
Andy Adamson8d89bd72016-09-09 09:22:18 -04007478 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007479
7480 dprintk("NFS call exchange_id auth=%s, '%s'\n",
7481 clp->cl_rpcclient->cl_auth->au_ops->au_name,
7482 clp->cl_owner_id);
7483
Andy Adamson8d89bd72016-09-09 09:22:18 -04007484 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
7485 GFP_NOFS);
7486 status = -ENOMEM;
7487 if (unlikely(calldata->res.server_owner == NULL))
7488 goto out_calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007489
Andy Adamson8d89bd72016-09-09 09:22:18 -04007490 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
Benny Halevy99fe60d2009-04-01 09:22:29 -04007491 GFP_NOFS);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007492 if (unlikely(calldata->res.server_scope == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007493 goto out_server_owner;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007494
Andy Adamson8d89bd72016-09-09 09:22:18 -04007495 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
7496 if (unlikely(calldata->res.impl_id == NULL))
Benny Halevy99fe60d2009-04-01 09:22:29 -04007497 goto out_server_scope;
7498
7499 switch (sp4_how) {
7500 case SP4_NONE:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007501 calldata->args.state_protect.how = SP4_NONE;
Andy Adamson557134a2009-04-01 09:21:53 -04007502 break;
7503
7504 case SP4_MACH_CRED:
Andy Adamson8d89bd72016-09-09 09:22:18 -04007505 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007506 break;
7507
7508 default:
7509 /* unsupported! */
7510 WARN_ON_ONCE(1);
7511 status = -EINVAL;
7512 goto out_impl_id;
7513 }
Andy Adamsonad0849a2016-09-09 09:22:28 -04007514 if (xprt) {
7515 calldata->xprt = xprt;
7516 task_setup_data.rpc_xprt = xprt;
7517 task_setup_data.flags =
7518 RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC;
7519 calldata->args.verifier = &clp->cl_confirm;
7520 } else {
7521 calldata->args.verifier = &verifier;
7522 }
Andy Adamson8d89bd72016-09-09 09:22:18 -04007523 calldata->args.client = clp;
7524#ifdef CONFIG_NFS_V4_1_MIGRATION
7525 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7526 EXCHGID4_FLAG_BIND_PRINC_STATEID |
7527 EXCHGID4_FLAG_SUPP_MOVED_MIGR,
7528#else
7529 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7530 EXCHGID4_FLAG_BIND_PRINC_STATEID,
7531#endif
7532 msg.rpc_argp = &calldata->args;
7533 msg.rpc_resp = &calldata->res;
7534 task_setup_data.callback_data = calldata;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007535
Andy Adamson8d89bd72016-09-09 09:22:18 -04007536 task = rpc_run_task(&task_setup_data);
Olga Kornievskaiab76d4fb2017-03-13 10:36:19 -04007537 if (IS_ERR(task))
7538 return PTR_ERR(task);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007539
Andy Adamsonad0849a2016-09-09 09:22:28 -04007540 if (!xprt) {
7541 status = rpc_wait_for_completion_task(task);
7542 if (!status)
7543 status = calldata->rpc_status;
7544 } else /* session trunking test */
Andy Adamson8d89bd72016-09-09 09:22:18 -04007545 status = calldata->rpc_status;
Andy Adamsonad0849a2016-09-09 09:22:28 -04007546
Andy Adamson8d89bd72016-09-09 09:22:18 -04007547 rpc_put_task(task);
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05007548out:
Chuck Lever177313f2012-05-21 22:44:58 -04007549 if (clp->cl_implid != NULL)
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04007550 dprintk("NFS reply exchange_id: Server Implementation ID: "
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05007551 "domain: %s, name: %s, date: %llu,%u\n",
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04007552 clp->cl_implid->domain, clp->cl_implid->name,
Chuck Lever59155542012-05-21 22:44:41 -04007553 clp->cl_implid->date.seconds,
7554 clp->cl_implid->date.nseconds);
Chuck Lever6bbb4ae2012-07-11 16:30:59 -04007555 dprintk("NFS reply exchange_id: %d\n", status);
Benny Halevy99fe60d2009-04-01 09:22:29 -04007556 return status;
Andy Adamson8d89bd72016-09-09 09:22:18 -04007557
7558out_impl_id:
7559 kfree(calldata->res.impl_id);
7560out_server_scope:
7561 kfree(calldata->res.server_scope);
7562out_server_owner:
7563 kfree(calldata->res.server_owner);
7564out_calldata:
7565 kfree(calldata);
Olga Kornievskaiab76d4fb2017-03-13 10:36:19 -04007566 nfs_put_client(clp);
Andy Adamson8d89bd72016-09-09 09:22:18 -04007567 goto out;
Benny Halevy99fe60d2009-04-01 09:22:29 -04007568}
7569
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007570/*
7571 * nfs4_proc_exchange_id()
7572 *
7573 * Returns zero, a negative errno, or a negative NFS4ERR status code.
7574 *
7575 * Since the clientid has expired, all compounds using sessions
7576 * associated with the stale clientid will be returning
7577 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
7578 * be in some phase of session reset.
7579 *
7580 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
7581 */
7582int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
7583{
7584 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
7585 int status;
7586
7587 /* try SP4_MACH_CRED if krb5i/p */
7588 if (authflavor == RPC_AUTH_GSS_KRB5I ||
7589 authflavor == RPC_AUTH_GSS_KRB5P) {
Andy Adamsonad0849a2016-09-09 09:22:28 -04007590 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007591 if (!status)
7592 return 0;
7593 }
7594
7595 /* try SP4_NONE */
Andy Adamsonad0849a2016-09-09 09:22:28 -04007596 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL);
Weston Andros Adamson2031cd12013-08-13 16:37:32 -04007597}
7598
Andy Adamson04fa2c62016-09-09 09:22:29 -04007599/**
7600 * nfs4_test_session_trunk
7601 *
7602 * This is an add_xprt_test() test function called from
7603 * rpc_clnt_setup_test_and_add_xprt.
7604 *
7605 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
7606 * and is dereferrenced in nfs4_exchange_id_release
7607 *
7608 * Upon success, add the new transport to the rpc_clnt
7609 *
7610 * @clnt: struct rpc_clnt to get new transport
7611 * @xprt: the rpc_xprt to test
7612 * @data: call data for _nfs4_proc_exchange_id.
7613 */
7614int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
7615 void *data)
7616{
7617 struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data;
7618 u32 sp4_how;
7619
7620 dprintk("--> %s try %s\n", __func__,
7621 xprt->address_strings[RPC_DISPLAY_ADDR]);
7622
7623 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
7624
7625 /* Test connection for session trunking. Async exchange_id call */
7626 return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
7627}
7628EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
7629
Trond Myklebust66245532012-05-25 17:18:09 -04007630static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
7631 struct rpc_cred *cred)
7632{
7633 struct rpc_message msg = {
7634 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
7635 .rpc_argp = clp,
7636 .rpc_cred = cred,
7637 };
7638 int status;
7639
7640 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007641 trace_nfs4_destroy_clientid(clp, status);
Trond Myklebust66245532012-05-25 17:18:09 -04007642 if (status)
Trond Myklebust02c67522012-06-07 13:45:53 -04007643 dprintk("NFS: Got error %d from the server %s on "
Trond Myklebust66245532012-05-25 17:18:09 -04007644 "DESTROY_CLIENTID.", status, clp->cl_hostname);
7645 return status;
7646}
7647
7648static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
7649 struct rpc_cred *cred)
7650{
7651 unsigned int loop;
7652 int ret;
7653
7654 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
7655 ret = _nfs4_proc_destroy_clientid(clp, cred);
7656 switch (ret) {
7657 case -NFS4ERR_DELAY:
7658 case -NFS4ERR_CLIENTID_BUSY:
7659 ssleep(1);
7660 break;
7661 default:
7662 return ret;
7663 }
7664 }
7665 return 0;
7666}
7667
7668int nfs4_destroy_clientid(struct nfs_client *clp)
7669{
7670 struct rpc_cred *cred;
7671 int ret = 0;
7672
7673 if (clp->cl_mvops->minor_version < 1)
7674 goto out;
7675 if (clp->cl_exchange_flags == 0)
7676 goto out;
Chuck Lever05f4c352012-09-14 17:24:32 -04007677 if (clp->cl_preserve_clid)
7678 goto out;
Chuck Lever73d8bde2013-07-24 12:28:37 -04007679 cred = nfs4_get_clid_cred(clp);
Trond Myklebust66245532012-05-25 17:18:09 -04007680 ret = nfs4_proc_destroy_clientid(clp, cred);
7681 if (cred)
7682 put_rpccred(cred);
7683 switch (ret) {
7684 case 0:
7685 case -NFS4ERR_STALE_CLIENTID:
7686 clp->cl_exchange_flags = 0;
7687 }
7688out:
7689 return ret;
7690}
7691
Andy Adamson2050f0c2009-04-01 09:22:30 -04007692struct nfs4_get_lease_time_data {
7693 struct nfs4_get_lease_time_args *args;
7694 struct nfs4_get_lease_time_res *res;
7695 struct nfs_client *clp;
7696};
7697
7698static void nfs4_get_lease_time_prepare(struct rpc_task *task,
7699 void *calldata)
7700{
Andy Adamson2050f0c2009-04-01 09:22:30 -04007701 struct nfs4_get_lease_time_data *data =
7702 (struct nfs4_get_lease_time_data *)calldata;
7703
7704 dprintk("--> %s\n", __func__);
7705 /* just setup sequence, do not trigger session recovery
7706 since we're invoked within one */
Trond Myklebustd9afbd12012-10-22 20:28:44 -04007707 nfs41_setup_sequence(data->clp->cl_session,
7708 &data->args->la_seq_args,
7709 &data->res->lr_seq_res,
7710 task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007711 dprintk("<-- %s\n", __func__);
7712}
7713
7714/*
7715 * Called from nfs4_state_manager thread for session setup, so don't recover
7716 * from sequence operation or clientid errors.
7717 */
7718static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
7719{
7720 struct nfs4_get_lease_time_data *data =
7721 (struct nfs4_get_lease_time_data *)calldata;
7722
7723 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04007724 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
7725 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04007726 switch (task->tk_status) {
7727 case -NFS4ERR_DELAY:
7728 case -NFS4ERR_GRACE:
7729 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
7730 rpc_delay(task, NFS4_POLL_RETRY_MIN);
7731 task->tk_status = 0;
Andy Adamsona8a4ae32011-05-03 13:43:03 -04007732 /* fall through */
7733 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustd00c5d42011-10-19 12:17:29 -07007734 rpc_restart_call_prepare(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007735 return;
7736 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04007737 dprintk("<-- %s\n", __func__);
7738}
7739
Trond Myklebust17280172012-03-11 13:11:00 -04007740static const struct rpc_call_ops nfs4_get_lease_time_ops = {
Andy Adamson2050f0c2009-04-01 09:22:30 -04007741 .rpc_call_prepare = nfs4_get_lease_time_prepare,
7742 .rpc_call_done = nfs4_get_lease_time_done,
7743};
7744
7745int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
7746{
7747 struct rpc_task *task;
7748 struct nfs4_get_lease_time_args args;
7749 struct nfs4_get_lease_time_res res = {
7750 .lr_fsinfo = fsinfo,
7751 };
7752 struct nfs4_get_lease_time_data data = {
7753 .args = &args,
7754 .res = &res,
7755 .clp = clp,
7756 };
7757 struct rpc_message msg = {
7758 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
7759 .rpc_argp = &args,
7760 .rpc_resp = &res,
7761 };
7762 struct rpc_task_setup task_setup = {
7763 .rpc_client = clp->cl_rpcclient,
7764 .rpc_message = &msg,
7765 .callback_ops = &nfs4_get_lease_time_ops,
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007766 .callback_data = &data,
7767 .flags = RPC_TASK_TIMEOUT,
Andy Adamson2050f0c2009-04-01 09:22:30 -04007768 };
7769 int status;
7770
Chuck Levera9c92d62013-08-09 12:48:18 -04007771 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04007772 nfs4_set_sequence_privileged(&args.la_seq_args);
Andy Adamson2050f0c2009-04-01 09:22:30 -04007773 dprintk("--> %s\n", __func__);
7774 task = rpc_run_task(&task_setup);
7775
7776 if (IS_ERR(task))
7777 status = PTR_ERR(task);
7778 else {
7779 status = task->tk_status;
7780 rpc_put_task(task);
7781 }
7782 dprintk("<-- %s return %d\n", __func__, status);
7783
7784 return status;
7785}
7786
Andy Adamsonfc931582009-04-01 09:22:31 -04007787/*
7788 * Initialize the values to be used by the client in CREATE_SESSION
7789 * If nfs4_init_session set the fore channel request and response sizes,
7790 * use them.
7791 *
7792 * Set the back channel max_resp_sz_cached to zero to force the client to
7793 * always set csa_cachethis to FALSE because the current implementation
7794 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
7795 */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007796static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
7797 struct rpc_clnt *clnt)
Andy Adamsonfc931582009-04-01 09:22:31 -04007798{
Andy Adamson18aad3d2013-06-26 12:21:49 -04007799 unsigned int max_rqst_sz, max_resp_sz;
Chuck Lever6b26cc82016-05-02 14:40:40 -04007800 unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
Andy Adamsonfc931582009-04-01 09:22:31 -04007801
Andy Adamson18aad3d2013-06-26 12:21:49 -04007802 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
7803 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
7804
Andy Adamsonfc931582009-04-01 09:22:31 -04007805 /* Fore channel attributes */
Andy Adamson18aad3d2013-06-26 12:21:49 -04007806 args->fc_attrs.max_rqst_sz = max_rqst_sz;
7807 args->fc_attrs.max_resp_sz = max_resp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04007808 args->fc_attrs.max_ops = NFS4_MAX_OPS;
Trond Myklebustef159e92012-02-06 19:50:40 -05007809 args->fc_attrs.max_reqs = max_session_slots;
Andy Adamsonfc931582009-04-01 09:22:31 -04007810
7811 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05007812 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04007813 __func__,
7814 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05007815 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04007816
7817 /* Back channel attributes */
Chuck Lever6b26cc82016-05-02 14:40:40 -04007818 args->bc_attrs.max_rqst_sz = max_bc_payload;
7819 args->bc_attrs.max_resp_sz = max_bc_payload;
Andy Adamsonfc931582009-04-01 09:22:31 -04007820 args->bc_attrs.max_resp_sz_cached = 0;
7821 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007822 args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1);
Andy Adamsonfc931582009-04-01 09:22:31 -04007823
7824 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
7825 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
7826 __func__,
7827 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
7828 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
7829 args->bc_attrs.max_reqs);
7830}
7831
Trond Myklebust79969dd2015-02-18 11:30:18 -08007832static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
7833 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007834{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007835 struct nfs4_channel_attrs *sent = &args->fc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007836 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007837
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007838 if (rcvd->max_resp_sz > sent->max_resp_sz)
7839 return -EINVAL;
7840 /*
7841 * Our requested max_ops is the minimum we need; we're not
7842 * prepared to break up compounds into smaller pieces than that.
7843 * So, no point even trying to continue if the server won't
7844 * cooperate:
7845 */
7846 if (rcvd->max_ops < sent->max_ops)
7847 return -EINVAL;
7848 if (rcvd->max_reqs == 0)
7849 return -EINVAL;
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04007850 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
7851 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007852 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04007853}
7854
Trond Myklebust79969dd2015-02-18 11:30:18 -08007855static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
7856 struct nfs41_create_session_res *res)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007857{
7858 struct nfs4_channel_attrs *sent = &args->bc_attrs;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007859 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04007860
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007861 if (!(res->flags & SESSION4_BACK_CHAN))
7862 goto out;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007863 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
7864 return -EINVAL;
7865 if (rcvd->max_resp_sz < sent->max_resp_sz)
7866 return -EINVAL;
7867 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
7868 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007869 if (rcvd->max_ops > sent->max_ops)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007870 return -EINVAL;
Trond Myklebust5405fc42016-08-29 20:03:52 -04007871 if (rcvd->max_reqs > sent->max_reqs)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007872 return -EINVAL;
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007873out:
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007874 return 0;
7875}
Andy Adamson8d353012009-04-01 09:22:32 -04007876
Andy Adamson8d353012009-04-01 09:22:32 -04007877static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007878 struct nfs41_create_session_res *res)
Andy Adamson8d353012009-04-01 09:22:32 -04007879{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007880 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04007881
Trond Myklebust79969dd2015-02-18 11:30:18 -08007882 ret = nfs4_verify_fore_channel_attrs(args, res);
J. Bruce Fields43c2e882010-10-02 15:19:01 -04007883 if (ret)
7884 return ret;
Trond Myklebust79969dd2015-02-18 11:30:18 -08007885 return nfs4_verify_back_channel_attrs(args, res);
7886}
7887
7888static void nfs4_update_session(struct nfs4_session *session,
7889 struct nfs41_create_session_res *res)
7890{
7891 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
Trond Myklebuste11259f2015-03-03 20:35:31 -05007892 /* Mark client id and session as being confirmed */
7893 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
7894 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
Trond Myklebust79969dd2015-02-18 11:30:18 -08007895 session->flags = res->flags;
7896 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
Trond Myklebustb1c0df52015-02-18 11:34:58 -08007897 if (res->flags & SESSION4_BACK_CHAN)
7898 memcpy(&session->bc_attrs, &res->bc_attrs,
7899 sizeof(session->bc_attrs));
Andy Adamson8d353012009-04-01 09:22:32 -04007900}
7901
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007902static int _nfs4_proc_create_session(struct nfs_client *clp,
7903 struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007904{
7905 struct nfs4_session *session = clp->cl_session;
7906 struct nfs41_create_session_args args = {
7907 .client = clp,
Trond Myklebust79969dd2015-02-18 11:30:18 -08007908 .clientid = clp->cl_clientid,
7909 .seqid = clp->cl_seqid,
Andy Adamsonfc931582009-04-01 09:22:31 -04007910 .cb_program = NFS4_CALLBACK,
7911 };
Trond Myklebust79969dd2015-02-18 11:30:18 -08007912 struct nfs41_create_session_res res;
7913
Andy Adamsonfc931582009-04-01 09:22:31 -04007914 struct rpc_message msg = {
7915 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
7916 .rpc_argp = &args,
7917 .rpc_resp = &res,
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007918 .rpc_cred = cred,
Andy Adamsonfc931582009-04-01 09:22:31 -04007919 };
7920 int status;
7921
Chuck Lever6b26cc82016-05-02 14:40:40 -04007922 nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
Andy Adamson0f914212009-04-01 09:23:16 -04007923 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04007924
Trond Myklebust1bd714f2011-04-24 14:29:33 -04007925 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04007926 trace_nfs4_create_session(clp, status);
Andy Adamsonfc931582009-04-01 09:22:31 -04007927
Trond Myklebustb519d402016-09-11 14:50:01 -04007928 switch (status) {
7929 case -NFS4ERR_STALE_CLIENTID:
7930 case -NFS4ERR_DELAY:
7931 case -ETIMEDOUT:
7932 case -EACCES:
7933 case -EAGAIN:
7934 goto out;
7935 };
7936
7937 clp->cl_seqid++;
Trond Myklebust43095d32012-11-20 11:13:12 -05007938 if (!status) {
Andy Adamson8d353012009-04-01 09:22:32 -04007939 /* Verify the session's negotiated channel_attrs values */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007940 status = nfs4_verify_channel_attrs(&args, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007941 /* Increment the clientid slot sequence id */
Trond Myklebust79969dd2015-02-18 11:30:18 -08007942 if (status)
7943 goto out;
7944 nfs4_update_session(session, &res);
Andy Adamsonfc931582009-04-01 09:22:31 -04007945 }
Trond Myklebust79969dd2015-02-18 11:30:18 -08007946out:
Andy Adamsonfc931582009-04-01 09:22:31 -04007947 return status;
7948}
7949
7950/*
7951 * Issues a CREATE_SESSION operation to the server.
7952 * It is the responsibility of the caller to verify the session is
7953 * expired before calling this routine.
7954 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007955int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04007956{
7957 int status;
7958 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04007959 struct nfs4_session *session = clp->cl_session;
7960
7961 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
7962
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007963 status = _nfs4_proc_create_session(clp, cred);
Andy Adamsonfc931582009-04-01 09:22:31 -04007964 if (status)
7965 goto out;
7966
Andy Adamsonaacd5532011-11-09 13:58:21 -05007967 /* Init or reset the session slot tables */
7968 status = nfs4_setup_session_slot_tables(session);
7969 dprintk("slot table setup returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04007970 if (status)
7971 goto out;
7972
7973 ptr = (unsigned *)&session->sess_id.data[0];
7974 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
7975 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04007976out:
7977 dprintk("<-- %s\n", __func__);
7978 return status;
7979}
7980
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007981/*
7982 * Issue the over-the-wire RPC DESTROY_SESSION.
7983 * The caller must serialize access to this routine.
7984 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007985int nfs4_proc_destroy_session(struct nfs4_session *session,
7986 struct rpc_cred *cred)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007987{
Trond Myklebust848f5bd2012-05-25 17:51:23 -04007988 struct rpc_message msg = {
7989 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
7990 .rpc_argp = session,
7991 .rpc_cred = cred,
7992 };
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007993 int status = 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04007994
7995 dprintk("--> nfs4_proc_destroy_session\n");
7996
7997 /* session is still being setup */
Trond Myklebuste11259f2015-03-03 20:35:31 -05007998 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
7999 return 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008000
Trond Myklebust1bd714f2011-04-24 14:29:33 -04008001 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008002 trace_nfs4_destroy_session(session->clp, status);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008003
8004 if (status)
Trond Myklebust08106ac2012-06-05 10:08:24 -04008005 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
Andy Adamson0f3e66c2009-04-01 09:22:34 -04008006 "Session has been destroyed regardless...\n", status);
8007
8008 dprintk("<-- nfs4_proc_destroy_session\n");
8009 return status;
8010}
8011
Trond Myklebust7b38c362012-05-23 13:23:31 -04008012/*
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008013 * Renew the cl_session lease.
8014 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008015struct nfs4_sequence_data {
8016 struct nfs_client *clp;
8017 struct nfs4_sequence_args args;
8018 struct nfs4_sequence_res res;
8019};
8020
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008021static void nfs41_sequence_release(void *data)
8022{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008023 struct nfs4_sequence_data *calldata = data;
8024 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008025
Alexandros Batsakis71358402010-02-05 03:45:05 -08008026 if (atomic_read(&clp->cl_count) > 1)
8027 nfs4_schedule_state_renewal(clp);
8028 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008029 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008030}
8031
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008032static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8033{
8034 switch(task->tk_status) {
8035 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008036 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8037 return -EAGAIN;
8038 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008039 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008040 }
8041 return 0;
8042}
8043
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008044static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008045{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008046 struct nfs4_sequence_data *calldata = data;
8047 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008048
Trond Myklebust14516c32010-07-31 14:29:06 -04008049 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
8050 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008051
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008052 trace_nfs4_sequence(clp, task->tk_status);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008053 if (task->tk_status < 0) {
8054 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008055 if (atomic_read(&clp->cl_count) == 1)
8056 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008057
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008058 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
8059 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008060 return;
8061 }
8062 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008063 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08008064out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008065 dprintk("<-- %s\n", __func__);
8066}
8067
8068static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
8069{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008070 struct nfs4_sequence_data *calldata = data;
8071 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008072 struct nfs4_sequence_args *args;
8073 struct nfs4_sequence_res *res;
8074
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008075 args = task->tk_msg.rpc_argp;
8076 res = task->tk_msg.rpc_resp;
8077
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008078 nfs41_setup_sequence(clp->cl_session, args, res, task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008079}
8080
8081static const struct rpc_call_ops nfs41_sequence_ops = {
8082 .rpc_call_done = nfs41_sequence_call_done,
8083 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08008084 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008085};
8086
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008087static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
8088 struct rpc_cred *cred,
8089 bool is_privileged)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008090{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008091 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008092 struct rpc_message msg = {
8093 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
8094 .rpc_cred = cred,
8095 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008096 struct rpc_task_setup task_setup_data = {
8097 .rpc_client = clp->cl_rpcclient,
8098 .rpc_message = &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008099 .callback_ops = &nfs41_sequence_ops,
Trond Myklebustbc7a05c2013-04-08 17:50:28 -04008100 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008101 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008102
Alexandros Batsakis71358402010-02-05 03:45:05 -08008103 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008104 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04008105 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008106 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08008107 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008108 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008109 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008110 nfs4_init_sequence(&calldata->args, &calldata->res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008111 if (is_privileged)
8112 nfs4_set_sequence_privileged(&calldata->args);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04008113 msg.rpc_argp = &calldata->args;
8114 msg.rpc_resp = &calldata->res;
8115 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008116 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008117
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008118 return rpc_run_task(&task_setup_data);
8119}
8120
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008121static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008122{
8123 struct rpc_task *task;
8124 int ret = 0;
8125
Trond Myklebust2f60ea62011-08-24 15:07:37 -04008126 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
Andy Adamsond1f456b2014-09-29 12:31:57 -04008127 return -EAGAIN;
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008128 task = _nfs41_proc_sequence(clp, cred, false);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008129 if (IS_ERR(task))
8130 ret = PTR_ERR(task);
8131 else
Trond Myklebustbf294b42011-02-21 11:05:41 -08008132 rpc_put_task_async(task);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008133 dprintk("<-- %s status=%d\n", __func__, ret);
8134 return ret;
8135}
8136
8137static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
8138{
8139 struct rpc_task *task;
8140 int ret;
8141
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008142 task = _nfs41_proc_sequence(clp, cred, true);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008143 if (IS_ERR(task)) {
8144 ret = PTR_ERR(task);
8145 goto out;
8146 }
8147 ret = rpc_wait_for_completion_task(task);
Trond Myklebustbe824162015-07-05 14:50:46 -04008148 if (!ret)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04008149 ret = task->tk_status;
8150 rpc_put_task(task);
8151out:
8152 dprintk("<-- %s status=%d\n", __func__, ret);
8153 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04008154}
8155
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008156struct nfs4_reclaim_complete_data {
8157 struct nfs_client *clp;
8158 struct nfs41_reclaim_complete_args arg;
8159 struct nfs41_reclaim_complete_res res;
8160};
8161
8162static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
8163{
8164 struct nfs4_reclaim_complete_data *calldata = data;
8165
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008166 nfs41_setup_sequence(calldata->clp->cl_session,
8167 &calldata->arg.seq_args,
8168 &calldata->res.seq_res,
8169 task);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008170}
8171
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008172static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8173{
8174 switch(task->tk_status) {
8175 case 0:
8176 case -NFS4ERR_COMPLETE_ALREADY:
8177 case -NFS4ERR_WRONG_CRED: /* What to do here? */
8178 break;
8179 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008180 rpc_delay(task, NFS4_POLL_RETRY_MAX);
Andy Adamsona8a4ae32011-05-03 13:43:03 -04008181 /* fall through */
8182 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008183 return -EAGAIN;
8184 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05008185 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008186 }
8187 return 0;
8188}
8189
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008190static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
8191{
8192 struct nfs4_reclaim_complete_data *calldata = data;
8193 struct nfs_client *clp = calldata->clp;
8194 struct nfs4_sequence_res *res = &calldata->res.seq_res;
8195
8196 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04008197 if (!nfs41_sequence_done(task, res))
8198 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008199
Trond Myklebustc6d01c62013-08-09 11:51:26 -04008200 trace_nfs4_reclaim_complete(clp, task->tk_status);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04008201 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
8202 rpc_restart_call_prepare(task);
8203 return;
8204 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008205 dprintk("<-- %s\n", __func__);
8206}
8207
8208static void nfs4_free_reclaim_complete_data(void *data)
8209{
8210 struct nfs4_reclaim_complete_data *calldata = data;
8211
8212 kfree(calldata);
8213}
8214
8215static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
8216 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
8217 .rpc_call_done = nfs4_reclaim_complete_done,
8218 .rpc_release = nfs4_free_reclaim_complete_data,
8219};
8220
8221/*
8222 * Issue a global reclaim complete.
8223 */
Trond Myklebust965e9c22013-05-20 11:05:17 -04008224static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
8225 struct rpc_cred *cred)
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008226{
8227 struct nfs4_reclaim_complete_data *calldata;
8228 struct rpc_task *task;
8229 struct rpc_message msg = {
8230 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
Trond Myklebust965e9c22013-05-20 11:05:17 -04008231 .rpc_cred = cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008232 };
8233 struct rpc_task_setup task_setup_data = {
8234 .rpc_client = clp->cl_rpcclient,
8235 .rpc_message = &msg,
8236 .callback_ops = &nfs4_reclaim_complete_call_ops,
8237 .flags = RPC_TASK_ASYNC,
8238 };
8239 int status = -ENOMEM;
8240
8241 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04008242 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008243 if (calldata == NULL)
8244 goto out;
8245 calldata->clp = clp;
8246 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008247
Chuck Levera9c92d62013-08-09 12:48:18 -04008248 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008249 nfs4_set_sequence_privileged(&calldata->arg.seq_args);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008250 msg.rpc_argp = &calldata->arg;
8251 msg.rpc_resp = &calldata->res;
8252 task_setup_data.callback_data = calldata;
8253 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008254 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008255 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008256 goto out;
8257 }
Andy Adamsonc34c32e2011-03-09 13:13:46 -05008258 status = nfs4_wait_for_completion_rpc_task(task);
8259 if (status == 0)
8260 status = task->tk_status;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008261 rpc_put_task(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02008262 return 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05008263out:
8264 dprintk("<-- %s status=%d\n", __func__, status);
8265 return status;
8266}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008267
8268static void
8269nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
8270{
8271 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00008272 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Trond Myklebust6ba7db32012-10-22 20:07:20 -04008273 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008274
8275 dprintk("--> %s\n", __func__);
Jeff Layton183d9e72016-05-17 12:28:47 -04008276 nfs41_setup_sequence(session, &lgp->args.seq_args,
8277 &lgp->res.seq_res, task);
8278 dprintk("<-- %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008279}
8280
8281static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
8282{
8283 struct nfs4_layoutget *lgp = calldata;
Jeff Layton183d9e72016-05-17 12:28:47 -04008284
8285 dprintk("--> %s\n", __func__);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008286 nfs41_sequence_process(task, &lgp->res.seq_res);
Jeff Layton183d9e72016-05-17 12:28:47 -04008287 dprintk("<-- %s\n", __func__);
8288}
8289
8290static int
8291nfs4_layoutget_handle_exception(struct rpc_task *task,
8292 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
8293{
Trond Myklebustee314c22012-10-01 17:25:48 -07008294 struct inode *inode = lgp->args.inode;
8295 struct nfs_server *server = NFS_SERVER(inode);
8296 struct pnfs_layout_hdr *lo;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008297 int nfs4err = task->tk_status;
8298 int err, status = 0;
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008299 LIST_HEAD(head);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008300
Boaz Harroshed7e5422014-01-22 20:34:54 +02008301 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008302
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008303 switch (nfs4err) {
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008304 case 0:
Trond Myklebustee314c22012-10-01 17:25:48 -07008305 goto out;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008306
8307 /*
8308 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
8309 * on the file. set tk_status to -ENODATA to tell upper layer to
8310 * retry go inband.
8311 */
8312 case -NFS4ERR_LAYOUTUNAVAILABLE:
Jeff Layton183d9e72016-05-17 12:28:47 -04008313 status = -ENODATA;
Peng Tao7c1e6e52015-12-05 17:01:01 +08008314 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008315 /*
Trond Myklebust21b874c2015-08-31 01:19:22 -07008316 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
8317 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
8318 */
8319 case -NFS4ERR_BADLAYOUT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008320 status = -EOVERFLOW;
8321 goto out;
Trond Myklebust21b874c2015-08-31 01:19:22 -07008322 /*
Boaz Harroshed7e5422014-01-22 20:34:54 +02008323 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
Trond Myklebust21b874c2015-08-31 01:19:22 -07008324 * (or clients) writing to the same RAID stripe except when
8325 * the minlength argument is 0 (see RFC5661 section 18.43.3).
Jeff Layton183d9e72016-05-17 12:28:47 -04008326 *
8327 * Treat it like we would RECALLCONFLICT -- we retry for a little
8328 * while, and then eventually give up.
Boaz Harroshed7e5422014-01-22 20:34:54 +02008329 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008330 case -NFS4ERR_LAYOUTTRYLATER:
Jeff Layton183d9e72016-05-17 12:28:47 -04008331 if (lgp->args.minlength == 0) {
8332 status = -EOVERFLOW;
8333 goto out;
Boaz Harroshed7e5422014-01-22 20:34:54 +02008334 }
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008335 status = -EBUSY;
8336 break;
Jeff Layton183d9e72016-05-17 12:28:47 -04008337 case -NFS4ERR_RECALLCONFLICT:
Jeff Layton183d9e72016-05-17 12:28:47 -04008338 status = -ERECALLCONFLICT;
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008339 break;
Trond Myklebust26f47442016-09-22 13:39:10 -04008340 case -NFS4ERR_DELEG_REVOKED:
8341 case -NFS4ERR_ADMIN_REVOKED:
Trond Myklebustee314c22012-10-01 17:25:48 -07008342 case -NFS4ERR_EXPIRED:
8343 case -NFS4ERR_BAD_STATEID:
Jeff Layton183d9e72016-05-17 12:28:47 -04008344 exception->timeout = 0;
Trond Myklebustee314c22012-10-01 17:25:48 -07008345 spin_lock(&inode->i_lock);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008346 lo = NFS_I(inode)->layout;
8347 /* If the open stateid was bad, then recover it. */
8348 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
8349 nfs4_stateid_match_other(&lgp->args.stateid,
Trond Myklebust2259f962015-09-20 13:30:30 -04008350 &lgp->args.ctx->state->stateid)) {
Trond Myklebustee314c22012-10-01 17:25:48 -07008351 spin_unlock(&inode->i_lock);
Jeff Layton183d9e72016-05-17 12:28:47 -04008352 exception->state = lgp->args.ctx->state;
Trond Myklebust26f47442016-09-22 13:39:10 -04008353 exception->stateid = &lgp->args.stateid;
Trond Myklebust2259f962015-09-20 13:30:30 -04008354 break;
8355 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008356
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008357 /*
8358 * Mark the bad layout state as invalid, then retry
8359 */
Trond Myklebust668f4552016-07-24 17:08:59 -04008360 pnfs_mark_layout_stateid_invalid(lo, &head);
Trond Myklebustf7db0b22016-07-14 15:14:02 -04008361 spin_unlock(&inode->i_lock);
8362 pnfs_free_lseg_list(&head);
8363 status = -EAGAIN;
8364 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008365 }
Jeff Layton183d9e72016-05-17 12:28:47 -04008366
Trond Myklebust0a702352017-01-23 22:44:12 -05008367 nfs4_sequence_free_slot(&lgp->res.seq_res);
Trond Myklebuste85d7ee2016-07-14 18:46:24 -04008368 err = nfs4_handle_exception(server, nfs4err, exception);
8369 if (!status) {
8370 if (exception->retry)
8371 status = -EAGAIN;
8372 else
8373 status = err;
8374 }
Trond Myklebustee314c22012-10-01 17:25:48 -07008375out:
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008376 dprintk("<-- %s\n", __func__);
Jeff Layton183d9e72016-05-17 12:28:47 -04008377 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008378}
8379
Idan Kedar85541162012-08-02 11:47:10 +03008380static size_t max_response_pages(struct nfs_server *server)
8381{
8382 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
8383 return nfs_page_array_len(0, max_resp_sz);
8384}
8385
8386static void nfs4_free_pages(struct page **pages, size_t size)
8387{
8388 int i;
8389
8390 if (!pages)
8391 return;
8392
8393 for (i = 0; i < size; i++) {
8394 if (!pages[i])
8395 break;
8396 __free_page(pages[i]);
8397 }
8398 kfree(pages);
8399}
8400
8401static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags)
8402{
8403 struct page **pages;
8404 int i;
8405
8406 pages = kcalloc(size, sizeof(struct page *), gfp_flags);
8407 if (!pages) {
8408 dprintk("%s: can't alloc array of %zu pages\n", __func__, size);
8409 return NULL;
8410 }
8411
8412 for (i = 0; i < size; i++) {
8413 pages[i] = alloc_page(gfp_flags);
8414 if (!pages[i]) {
8415 dprintk("%s: failed to allocate page\n", __func__);
8416 nfs4_free_pages(pages, size);
8417 return NULL;
8418 }
8419 }
8420
8421 return pages;
8422}
8423
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008424static void nfs4_layoutget_release(void *calldata)
8425{
8426 struct nfs4_layoutget *lgp = calldata;
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008427 struct inode *inode = lgp->args.inode;
8428 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008429 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008430
8431 dprintk("--> %s\n", __func__);
Trond Myklebustcb2c6fd2017-06-27 17:33:38 -04008432 nfs4_sequence_free_slot(&lgp->res.seq_res);
Idan Kedar85541162012-08-02 11:47:10 +03008433 nfs4_free_pages(lgp->args.layout.pages, max_pages);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008434 pnfs_put_layout_hdr(NFS_I(inode)->layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008435 put_nfs_open_context(lgp->args.ctx);
8436 kfree(calldata);
8437 dprintk("<-- %s\n", __func__);
8438}
8439
8440static const struct rpc_call_ops nfs4_layoutget_call_ops = {
8441 .rpc_call_prepare = nfs4_layoutget_prepare,
8442 .rpc_call_done = nfs4_layoutget_done,
8443 .rpc_release = nfs4_layoutget_release,
8444};
8445
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008446struct pnfs_layout_segment *
Jeff Layton183d9e72016-05-17 12:28:47 -04008447nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008448{
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008449 struct inode *inode = lgp->args.inode;
8450 struct nfs_server *server = NFS_SERVER(inode);
Idan Kedar85541162012-08-02 11:47:10 +03008451 size_t max_pages = max_response_pages(server);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008452 struct rpc_task *task;
8453 struct rpc_message msg = {
8454 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
8455 .rpc_argp = &lgp->args,
8456 .rpc_resp = &lgp->res,
Trond Myklebust6ab59342013-05-20 10:49:34 -04008457 .rpc_cred = lgp->cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008458 };
8459 struct rpc_task_setup task_setup_data = {
8460 .rpc_client = server->client,
8461 .rpc_message = &msg,
8462 .callback_ops = &nfs4_layoutget_call_ops,
8463 .callback_data = lgp,
8464 .flags = RPC_TASK_ASYNC,
8465 };
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008466 struct pnfs_layout_segment *lseg = NULL;
Trond Myklebustbc236762016-06-17 16:48:18 -04008467 struct nfs4_exception exception = {
8468 .inode = inode,
8469 .timeout = *timeout,
8470 };
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008471 int status = 0;
8472
8473 dprintk("--> %s\n", __func__);
8474
Peng Tao4bd5a982014-11-17 11:05:17 +08008475 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
8476 pnfs_get_layout_hdr(NFS_I(inode)->layout);
8477
Idan Kedar85541162012-08-02 11:47:10 +03008478 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags);
8479 if (!lgp->args.layout.pages) {
8480 nfs4_layoutget_release(lgp);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008481 return ERR_PTR(-ENOMEM);
Idan Kedar85541162012-08-02 11:47:10 +03008482 }
8483 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
8484
Weston Andros Adamson35124a02011-03-24 16:48:21 -04008485 lgp->res.layoutp = &lgp->args.layout;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008486 lgp->res.seq_res.sr_slot = NULL;
Chuck Levera9c92d62013-08-09 12:48:18 -04008487 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
Weston Andros Adamsona47970f2013-02-25 21:27:33 -05008488
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008489 task = rpc_run_task(&task_setup_data);
8490 if (IS_ERR(task))
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008491 return ERR_CAST(task);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008492 status = nfs4_wait_for_completion_rpc_task(task);
Jeff Layton183d9e72016-05-17 12:28:47 -04008493 if (status == 0) {
8494 status = nfs4_layoutget_handle_exception(task, lgp, &exception);
8495 *timeout = exception.timeout;
8496 }
8497
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008498 trace_nfs4_layoutget(lgp->args.ctx,
8499 &lgp->args.range,
8500 &lgp->res.range,
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008501 &lgp->res.stateid,
Trond Myklebust1037e6e2013-08-14 16:36:51 -04008502 status);
Jeff Layton183d9e72016-05-17 12:28:47 -04008503
Weston Andros Adamson085b7a42013-02-15 16:03:46 -05008504 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */
8505 if (status == 0 && lgp->res.layoutp->len)
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008506 lseg = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008507 rpc_put_task(task);
8508 dprintk("<-- %s status=%d\n", __func__, status);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04008509 if (status)
8510 return ERR_PTR(status);
8511 return lseg;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008512}
8513
Benny Halevycbe82602011-05-22 19:52:37 +03008514static void
8515nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
8516{
8517 struct nfs4_layoutreturn *lrp = calldata;
8518
8519 dprintk("--> %s\n", __func__);
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008520 nfs41_setup_sequence(lrp->clp->cl_session,
8521 &lrp->args.seq_args,
8522 &lrp->res.seq_res,
8523 task);
Benny Halevycbe82602011-05-22 19:52:37 +03008524}
8525
8526static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
8527{
8528 struct nfs4_layoutreturn *lrp = calldata;
8529 struct nfs_server *server;
8530
8531 dprintk("--> %s\n", __func__);
8532
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008533 if (!nfs41_sequence_process(task, &lrp->res.seq_res))
Benny Halevycbe82602011-05-22 19:52:37 +03008534 return;
8535
8536 server = NFS_SERVER(lrp->args.inode);
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008537 switch (task->tk_status) {
8538 default:
8539 task->tk_status = 0;
8540 case 0:
8541 break;
8542 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10008543 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
Trond Myklebustf22e5ed2013-12-04 12:09:45 -05008544 break;
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008545 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebustd00c5d42011-10-19 12:17:29 -07008546 rpc_restart_call_prepare(task);
Benny Halevycbe82602011-05-22 19:52:37 +03008547 return;
8548 }
Benny Halevycbe82602011-05-22 19:52:37 +03008549 dprintk("<-- %s\n", __func__);
8550}
8551
8552static void nfs4_layoutreturn_release(void *calldata)
8553{
8554 struct nfs4_layoutreturn *lrp = calldata;
Trond Myklebust849b2862012-09-24 14:18:39 -04008555 struct pnfs_layout_hdr *lo = lrp->args.layout;
Trond Myklebustc5d73712015-07-09 17:58:39 +02008556 LIST_HEAD(freeme);
Benny Halevycbe82602011-05-22 19:52:37 +03008557
8558 dprintk("--> %s\n", __func__);
Trond Myklebust849b2862012-09-24 14:18:39 -04008559 spin_lock(&lo->plh_inode->i_lock);
Trond Myklebust52ec7be2016-09-03 11:05:28 -04008560 if (lrp->res.lrs_present) {
8561 pnfs_mark_matching_lsegs_invalid(lo, &freeme,
8562 &lrp->args.range,
8563 be32_to_cpu(lrp->args.stateid.seqid));
Trond Myklebust849b2862012-09-24 14:18:39 -04008564 pnfs_set_layout_stateid(lo, &lrp->res.stateid, true);
Trond Myklebust52ec7be2016-09-03 11:05:28 -04008565 } else
8566 pnfs_mark_layout_stateid_invalid(lo, &freeme);
Tom Haynesd67ae822014-12-11 17:02:04 -05008567 pnfs_clear_layoutreturn_waitbit(lo);
Trond Myklebust849b2862012-09-24 14:18:39 -04008568 spin_unlock(&lo->plh_inode->i_lock);
Trond Myklebust2e80dbe2016-08-28 11:50:26 -04008569 nfs4_sequence_free_slot(&lrp->res.seq_res);
Trond Myklebustc5d73712015-07-09 17:58:39 +02008570 pnfs_free_lseg_list(&freeme);
Trond Myklebust70c3bd22012-09-18 20:51:13 -04008571 pnfs_put_layout_hdr(lrp->args.layout);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008572 nfs_iput_and_deactive(lrp->inode);
Benny Halevycbe82602011-05-22 19:52:37 +03008573 kfree(calldata);
8574 dprintk("<-- %s\n", __func__);
8575}
8576
8577static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
8578 .rpc_call_prepare = nfs4_layoutreturn_prepare,
8579 .rpc_call_done = nfs4_layoutreturn_done,
8580 .rpc_release = nfs4_layoutreturn_release,
8581};
8582
Peng Tao6c166052014-11-17 09:30:40 +08008583int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
Benny Halevycbe82602011-05-22 19:52:37 +03008584{
8585 struct rpc_task *task;
8586 struct rpc_message msg = {
8587 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
8588 .rpc_argp = &lrp->args,
8589 .rpc_resp = &lrp->res,
Trond Myklebust95560002013-05-20 10:43:47 -04008590 .rpc_cred = lrp->cred,
Benny Halevycbe82602011-05-22 19:52:37 +03008591 };
8592 struct rpc_task_setup task_setup_data = {
Andy Adamson1771c572013-07-22 12:42:05 -04008593 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
Benny Halevycbe82602011-05-22 19:52:37 +03008594 .rpc_message = &msg,
8595 .callback_ops = &nfs4_layoutreturn_call_ops,
8596 .callback_data = lrp,
8597 };
Peng Tao6c166052014-11-17 09:30:40 +08008598 int status = 0;
Benny Halevycbe82602011-05-22 19:52:37 +03008599
Andrew Elble99ade3c2015-12-02 09:39:51 -05008600 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
8601 NFS_SP4_MACH_CRED_PNFS_CLEANUP,
8602 &task_setup_data.rpc_client, &msg);
8603
Benny Halevycbe82602011-05-22 19:52:37 +03008604 dprintk("--> %s\n", __func__);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008605 if (!sync) {
8606 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
8607 if (!lrp->inode) {
8608 nfs4_layoutreturn_release(lrp);
8609 return -EAGAIN;
8610 }
8611 task_setup_data.flags |= RPC_TASK_ASYNC;
8612 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008613 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
Benny Halevycbe82602011-05-22 19:52:37 +03008614 task = rpc_run_task(&task_setup_data);
8615 if (IS_ERR(task))
8616 return PTR_ERR(task);
Trond Myklebust5a0ec8ac2015-02-05 16:35:16 -05008617 if (sync)
8618 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008619 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
Benny Halevycbe82602011-05-22 19:52:37 +03008620 dprintk("<-- %s status=%d\n", __func__, status);
8621 rpc_put_task(task);
8622 return status;
8623}
8624
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008625static int
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008626_nfs4_proc_getdeviceinfo(struct nfs_server *server,
8627 struct pnfs_device *pdev,
8628 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008629{
8630 struct nfs4_getdeviceinfo_args args = {
8631 .pdev = pdev,
Trond Myklebust4e590802015-03-09 14:01:25 -04008632 .notify_types = NOTIFY_DEVICEID4_CHANGE |
8633 NOTIFY_DEVICEID4_DELETE,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008634 };
8635 struct nfs4_getdeviceinfo_res res = {
8636 .pdev = pdev,
8637 };
8638 struct rpc_message msg = {
8639 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
8640 .rpc_argp = &args,
8641 .rpc_resp = &res,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008642 .rpc_cred = cred,
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008643 };
8644 int status;
8645
8646 dprintk("--> %s\n", __func__);
Bryan Schumaker7c513052011-03-24 17:12:24 +00008647 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Trond Myklebust4e590802015-03-09 14:01:25 -04008648 if (res.notification & ~args.notify_types)
8649 dprintk("%s: unsupported notification\n", __func__);
Trond Myklebustdf526992015-03-09 14:48:32 -04008650 if (res.notification != args.notify_types)
8651 pdev->nocache = 1;
Trond Myklebust4e590802015-03-09 14:01:25 -04008652
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008653 dprintk("<-- %s status=%d\n", __func__, status);
8654
8655 return status;
8656}
8657
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008658int nfs4_proc_getdeviceinfo(struct nfs_server *server,
8659 struct pnfs_device *pdev,
8660 struct rpc_cred *cred)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008661{
8662 struct nfs4_exception exception = { };
8663 int err;
8664
8665 do {
8666 err = nfs4_handle_exception(server,
Trond Myklebustcd5875f2013-05-20 11:42:54 -04008667 _nfs4_proc_getdeviceinfo(server, pdev, cred),
Andy Adamsonb1f69b72010-10-20 00:18:03 -04008668 &exception);
8669 } while (exception.retry);
8670 return err;
8671}
8672EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
8673
Andy Adamson863a3c62011-03-23 13:27:54 +00008674static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
8675{
8676 struct nfs4_layoutcommit_data *data = calldata;
8677 struct nfs_server *server = NFS_SERVER(data->args.inode);
Trond Myklebust6ba7db32012-10-22 20:07:20 -04008678 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamson863a3c62011-03-23 13:27:54 +00008679
Trond Myklebustd9afbd12012-10-22 20:28:44 -04008680 nfs41_setup_sequence(session,
8681 &data->args.seq_args,
8682 &data->res.seq_res,
8683 task);
Andy Adamson863a3c62011-03-23 13:27:54 +00008684}
8685
8686static void
8687nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
8688{
8689 struct nfs4_layoutcommit_data *data = calldata;
8690 struct nfs_server *server = NFS_SERVER(data->args.inode);
8691
Trond Myklebust6ba7db32012-10-22 20:07:20 -04008692 if (!nfs41_sequence_done(task, &data->res.seq_res))
Andy Adamson863a3c62011-03-23 13:27:54 +00008693 return;
8694
8695 switch (task->tk_status) { /* Just ignore these failures */
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008696 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
8697 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
8698 case -NFS4ERR_BADLAYOUT: /* no layout */
8699 case -NFS4ERR_GRACE: /* loca_recalim always false */
Andy Adamson863a3c62011-03-23 13:27:54 +00008700 task->tk_status = 0;
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008701 case 0:
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008702 break;
8703 default:
NeilBrown8478eaa2014-09-18 16:09:27 +10008704 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
Trond Myklebuste59d27e2012-03-27 18:22:19 -04008705 rpc_restart_call_prepare(task);
8706 return;
8707 }
8708 }
Andy Adamson863a3c62011-03-23 13:27:54 +00008709}
8710
8711static void nfs4_layoutcommit_release(void *calldata)
8712{
8713 struct nfs4_layoutcommit_data *data = calldata;
8714
Andy Adamsondb29c082011-07-30 20:52:38 -04008715 pnfs_cleanup_layoutcommit(data);
Trond Myklebustd8c951c2014-01-13 12:08:11 -05008716 nfs_post_op_update_inode_force_wcc(data->args.inode,
8717 data->res.fattr);
Andy Adamson863a3c62011-03-23 13:27:54 +00008718 put_rpccred(data->cred);
Trond Myklebust472e2592015-02-05 16:50:30 -05008719 nfs_iput_and_deactive(data->inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00008720 kfree(data);
8721}
8722
8723static const struct rpc_call_ops nfs4_layoutcommit_ops = {
8724 .rpc_call_prepare = nfs4_layoutcommit_prepare,
8725 .rpc_call_done = nfs4_layoutcommit_done,
8726 .rpc_release = nfs4_layoutcommit_release,
8727};
8728
8729int
Andy Adamsonef311532011-03-12 02:58:10 -05008730nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00008731{
8732 struct rpc_message msg = {
8733 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
8734 .rpc_argp = &data->args,
8735 .rpc_resp = &data->res,
8736 .rpc_cred = data->cred,
8737 };
8738 struct rpc_task_setup task_setup_data = {
8739 .task = &data->task,
8740 .rpc_client = NFS_CLIENT(data->args.inode),
8741 .rpc_message = &msg,
8742 .callback_ops = &nfs4_layoutcommit_ops,
8743 .callback_data = data,
Andy Adamson863a3c62011-03-23 13:27:54 +00008744 };
8745 struct rpc_task *task;
8746 int status = 0;
8747
Kinglong Meeb4839eb2015-07-01 12:00:13 +08008748 dprintk("NFS: initiating layoutcommit call. sync %d "
8749 "lbw: %llu inode %lu\n", sync,
Andy Adamson863a3c62011-03-23 13:27:54 +00008750 data->args.lastbytewritten,
8751 data->args.inode->i_ino);
8752
Trond Myklebust472e2592015-02-05 16:50:30 -05008753 if (!sync) {
8754 data->inode = nfs_igrab_and_active(data->args.inode);
8755 if (data->inode == NULL) {
8756 nfs4_layoutcommit_release(data);
8757 return -EAGAIN;
8758 }
8759 task_setup_data.flags = RPC_TASK_ASYNC;
8760 }
Chuck Levera9c92d62013-08-09 12:48:18 -04008761 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andy Adamson863a3c62011-03-23 13:27:54 +00008762 task = rpc_run_task(&task_setup_data);
8763 if (IS_ERR(task))
8764 return PTR_ERR(task);
Trond Myklebust472e2592015-02-05 16:50:30 -05008765 if (sync)
8766 status = task->tk_status;
Olga Kornievskaia48c95792015-11-24 13:29:41 -05008767 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
Andy Adamson863a3c62011-03-23 13:27:54 +00008768 dprintk("%s: status %d\n", __func__, status);
8769 rpc_put_task(task);
8770 return status;
8771}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008772
Andy Adamson97431202013-08-08 10:57:56 -04008773/**
8774 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
8775 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
8776 */
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008777static int
8778_nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008779 struct nfs_fsinfo *info,
8780 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008781{
8782 struct nfs41_secinfo_no_name_args args = {
8783 .style = SECINFO_STYLE_CURRENT_FH,
8784 };
8785 struct nfs4_secinfo_res res = {
8786 .flavors = flavors,
8787 };
8788 struct rpc_message msg = {
8789 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
8790 .rpc_argp = &args,
8791 .rpc_resp = &res,
8792 };
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008793 struct rpc_clnt *clnt = server->client;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008794 struct rpc_cred *cred = NULL;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008795 int status;
8796
8797 if (use_integrity) {
8798 clnt = server->nfs_client->cl_rpcclient;
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008799 cred = nfs4_get_clid_cred(server->nfs_client);
8800 msg.rpc_cred = cred;
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008801 }
8802
8803 dprintk("--> %s\n", __func__);
8804 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
8805 &res.seq_res, 0);
8806 dprintk("<-- %s status=%d\n", __func__, status);
8807
Weston Andros Adamson7cb852d2013-09-10 18:44:31 -04008808 if (cred)
8809 put_rpccred(cred);
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008810
8811 return status;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008812}
8813
8814static int
8815nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8816 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
8817{
8818 struct nfs4_exception exception = { };
8819 int err;
8820 do {
Weston Andros Adamsonb1b3e132013-09-04 12:13:19 -04008821 /* first try using integrity protection */
8822 err = -NFS4ERR_WRONGSEC;
8823
8824 /* try to use integrity protection with machine cred */
8825 if (_nfs4_is_integrity_protected(server->nfs_client))
8826 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8827 flavors, true);
8828
8829 /*
8830 * if unable to use integrity protection, or SECINFO with
8831 * integrity protection returns NFS4ERR_WRONGSEC (which is
8832 * disallowed by spec, but exists in deployed servers) use
8833 * the current filesystem's rpc_client and the user cred.
8834 */
8835 if (err == -NFS4ERR_WRONGSEC)
8836 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8837 flavors, false);
8838
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008839 switch (err) {
8840 case 0:
8841 case -NFS4ERR_WRONGSEC:
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008842 case -ENOTSUPP:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008843 goto out;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008844 default:
8845 err = nfs4_handle_exception(server, err, &exception);
8846 }
8847 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04008848out:
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008849 return err;
8850}
8851
8852static int
8853nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
8854 struct nfs_fsinfo *info)
8855{
8856 int err;
8857 struct page *page;
Anna Schumaker367156d2013-09-25 17:02:48 -04008858 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008859 struct nfs4_secinfo_flavors *flavors;
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008860 struct nfs4_secinfo4 *secinfo;
8861 int i;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008862
8863 page = alloc_page(GFP_KERNEL);
8864 if (!page) {
8865 err = -ENOMEM;
8866 goto out;
8867 }
8868
8869 flavors = page_address(page);
8870 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
8871
8872 /*
8873 * Fall back on "guess and check" method if
8874 * the server doesn't support SECINFO_NO_NAME
8875 */
Weston Andros Adamson78b19ba2014-01-13 16:54:45 -05008876 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008877 err = nfs4_find_root_sec(server, fhandle, info);
8878 goto out_freepage;
8879 }
8880 if (err)
8881 goto out_freepage;
8882
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008883 for (i = 0; i < flavors->num_flavors; i++) {
8884 secinfo = &flavors->flavors[i];
8885
8886 switch (secinfo->flavor) {
8887 case RPC_AUTH_NULL:
8888 case RPC_AUTH_UNIX:
8889 case RPC_AUTH_GSS:
8890 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
8891 &secinfo->flavor_info);
8892 break;
8893 default:
8894 flavor = RPC_AUTH_MAXFLAVOR;
8895 break;
8896 }
8897
Weston Andros Adamson4d4b69d2013-10-18 15:15:19 -04008898 if (!nfs_auth_info_match(&server->auth_info, flavor))
8899 flavor = RPC_AUTH_MAXFLAVOR;
8900
Weston Andros Adamson58a8cf12013-09-24 13:58:02 -04008901 if (flavor != RPC_AUTH_MAXFLAVOR) {
8902 err = nfs4_lookup_root_sec(server, fhandle,
8903 info, flavor);
8904 if (!err)
8905 break;
8906 }
8907 }
8908
8909 if (flavor == RPC_AUTH_MAXFLAVOR)
8910 err = -EPERM;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04008911
8912out_freepage:
8913 put_page(page);
8914 if (err == -EACCES)
8915 return -EPERM;
8916out:
8917 return err;
8918}
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008919
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008920static int _nfs41_test_stateid(struct nfs_server *server,
8921 nfs4_stateid *stateid,
8922 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04008923{
8924 int status;
8925 struct nfs41_test_stateid_args args = {
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008926 .stateid = stateid,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008927 };
8928 struct nfs41_test_stateid_res res;
8929 struct rpc_message msg = {
8930 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
8931 .rpc_argp = &args,
8932 .rpc_resp = &res,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008933 .rpc_cred = cred,
Bryan Schumaker7d974792011-06-02 14:59:08 -04008934 };
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008935 struct rpc_clnt *rpc_client = server->client;
8936
8937 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8938 &rpc_client, &msg);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05008939
Chuck Lever38527b12012-07-11 16:30:23 -04008940 dprintk("NFS call test_stateid %p\n", stateid);
Chuck Levera9c92d62013-08-09 12:48:18 -04008941 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008942 nfs4_set_sequence_privileged(&args.seq_args);
Weston Andros Adamson3787d502013-08-13 16:37:36 -04008943 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
Trond Myklebust8fe72ba2012-10-29 19:02:20 -04008944 &args.seq_args, &res.seq_res);
Chuck Lever38527b12012-07-11 16:30:23 -04008945 if (status != NFS_OK) {
8946 dprintk("NFS reply test_stateid: failed, %d\n", status);
Chuck Lever377e5072012-07-11 16:29:45 -04008947 return status;
Chuck Lever38527b12012-07-11 16:30:23 -04008948 }
8949 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
Chuck Lever377e5072012-07-11 16:29:45 -04008950 return -res.status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04008951}
8952
Trond Myklebust43912bb2016-09-22 13:38:56 -04008953static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
8954 int err, struct nfs4_exception *exception)
8955{
8956 exception->retry = 0;
8957 switch(err) {
8958 case -NFS4ERR_DELAY:
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04008959 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust43912bb2016-09-22 13:38:56 -04008960 nfs4_handle_exception(server, err, exception);
8961 break;
8962 case -NFS4ERR_BADSESSION:
8963 case -NFS4ERR_BADSLOT:
8964 case -NFS4ERR_BAD_HIGH_SLOT:
8965 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8966 case -NFS4ERR_DEADSESSION:
8967 nfs4_do_handle_exception(server, err, exception);
8968 }
8969}
8970
Chuck Lever38527b12012-07-11 16:30:23 -04008971/**
8972 * nfs41_test_stateid - perform a TEST_STATEID operation
8973 *
8974 * @server: server / transport on which to perform the operation
8975 * @stateid: state ID to test
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008976 * @cred: credential
Chuck Lever38527b12012-07-11 16:30:23 -04008977 *
8978 * Returns NFS_OK if the server recognizes that "stateid" is valid.
8979 * Otherwise a negative NFS4ERR value is returned if the operation
8980 * failed or the state ID is not currently valid.
8981 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008982static int nfs41_test_stateid(struct nfs_server *server,
8983 nfs4_stateid *stateid,
8984 struct rpc_cred *cred)
Bryan Schumaker7d974792011-06-02 14:59:08 -04008985{
8986 struct nfs4_exception exception = { };
8987 int err;
8988 do {
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04008989 err = _nfs41_test_stateid(server, stateid, cred);
Trond Myklebust43912bb2016-09-22 13:38:56 -04008990 nfs4_handle_delay_or_session_error(server, err, &exception);
Bryan Schumaker7d974792011-06-02 14:59:08 -04008991 } while (exception.retry);
8992 return err;
8993}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04008994
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008995struct nfs_free_stateid_data {
8996 struct nfs_server *server;
8997 struct nfs41_free_stateid_args args;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04008998 struct nfs41_free_stateid_res res;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04008999};
9000
9001static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
9002{
9003 struct nfs_free_stateid_data *data = calldata;
9004 nfs41_setup_sequence(nfs4_get_session(data->server),
9005 &data->args.seq_args,
9006 &data->res.seq_res,
9007 task);
9008}
9009
9010static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
9011{
9012 struct nfs_free_stateid_data *data = calldata;
9013
9014 nfs41_sequence_done(task, &data->res.seq_res);
9015
9016 switch (task->tk_status) {
9017 case -NFS4ERR_DELAY:
NeilBrown8478eaa2014-09-18 16:09:27 +10009018 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009019 rpc_restart_call_prepare(task);
9020 }
9021}
9022
9023static void nfs41_free_stateid_release(void *calldata)
9024{
9025 kfree(calldata);
9026}
9027
Trond Myklebust17f26b12013-08-21 15:48:42 -04009028static const struct rpc_call_ops nfs41_free_stateid_ops = {
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009029 .rpc_call_prepare = nfs41_free_stateid_prepare,
9030 .rpc_call_done = nfs41_free_stateid_done,
9031 .rpc_release = nfs41_free_stateid_release,
9032};
9033
9034static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009035 const nfs4_stateid *stateid,
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009036 struct rpc_cred *cred,
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009037 bool privileged)
9038{
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009039 struct rpc_message msg = {
9040 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009041 .rpc_cred = cred,
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009042 };
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009043 struct rpc_task_setup task_setup = {
9044 .rpc_client = server->client,
9045 .rpc_message = &msg,
9046 .callback_ops = &nfs41_free_stateid_ops,
9047 .flags = RPC_TASK_ASYNC,
9048 };
9049 struct nfs_free_stateid_data *data;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009050
Weston Andros Adamson3787d502013-08-13 16:37:36 -04009051 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9052 &task_setup.rpc_client, &msg);
9053
Chuck Lever38527b12012-07-11 16:30:23 -04009054 dprintk("NFS call free_stateid %p\n", stateid);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009055 data = kmalloc(sizeof(*data), GFP_NOFS);
9056 if (!data)
9057 return ERR_PTR(-ENOMEM);
9058 data->server = server;
9059 nfs4_stateid_copy(&data->args.stateid, stateid);
9060
9061 task_setup.callback_data = data;
9062
9063 msg.rpc_argp = &data->args;
9064 msg.rpc_resp = &data->res;
Trond Myklebust76e8a1b2016-09-22 13:39:19 -04009065 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009066 if (privileged)
9067 nfs4_set_sequence_privileged(&data->args.seq_args);
9068
9069 return rpc_run_task(&task_setup);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009070}
9071
Chuck Lever38527b12012-07-11 16:30:23 -04009072/**
9073 * nfs41_free_stateid - perform a FREE_STATEID operation
9074 *
9075 * @server: server / transport on which to perform the operation
9076 * @stateid: state ID to release
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009077 * @cred: credential
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009078 * @is_recovery: set to true if this call needs to be privileged
Chuck Lever38527b12012-07-11 16:30:23 -04009079 *
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009080 * Note: this function is always asynchronous.
Chuck Lever38527b12012-07-11 16:30:23 -04009081 */
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009082static int nfs41_free_stateid(struct nfs_server *server,
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009083 const nfs4_stateid *stateid,
9084 struct rpc_cred *cred,
9085 bool is_recovery)
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009086{
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009087 struct rpc_task *task;
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009088
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009089 task = _nfs41_free_stateid(server, stateid, cred, is_recovery);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009090 if (IS_ERR(task))
9091 return PTR_ERR(task);
Trond Myklebust7c1d5fa2013-05-03 14:40:01 -04009092 rpc_put_task(task);
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009093 return 0;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04009094}
Trond Myklebust36281ca2012-03-04 18:13:56 -05009095
Jeff Laytonf1cdae82014-05-01 06:28:47 -04009096static void
9097nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009098{
Trond Myklebustab7cb0d2013-05-20 11:20:27 -04009099 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009100
Trond Myklebustf0b0bf82016-09-22 13:39:04 -04009101 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009102 nfs4_free_lock_state(server, lsp);
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009103}
9104
Trond Myklebust36281ca2012-03-04 18:13:56 -05009105static bool nfs41_match_stateid(const nfs4_stateid *s1,
9106 const nfs4_stateid *s2)
9107{
Trond Myklebust93b717f2016-05-16 17:42:43 -04009108 if (s1->type != s2->type)
9109 return false;
9110
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009111 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009112 return false;
9113
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009114 if (s1->seqid == s2->seqid)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009115 return true;
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05009116 if (s1->seqid == 0 || s2->seqid == 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05009117 return true;
9118
9119 return false;
9120}
9121
Andy Adamson557134a2009-04-01 09:21:53 -04009122#endif /* CONFIG_NFS_V4_1 */
9123
Trond Myklebust36281ca2012-03-04 18:13:56 -05009124static bool nfs4_match_stateid(const nfs4_stateid *s1,
9125 const nfs4_stateid *s2)
9126{
Trond Myklebustf597c532012-03-04 18:13:56 -05009127 return nfs4_stateid_match(s1, s2);
Trond Myklebust36281ca2012-03-04 18:13:56 -05009128}
9129
9130
Trond Myklebust17280172012-03-11 13:11:00 -04009131static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009132 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009133 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134 .recover_open = nfs4_open_reclaim,
9135 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04009136 .establish_clid = nfs4_init_clientid,
Chuck Lever05f4c352012-09-14 17:24:32 -04009137 .detect_trunking = nfs40_discover_server_trunking,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009138};
9139
Andy Adamson591d71c2009-04-01 09:22:47 -04009140#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009141static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009142 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9143 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9144 .recover_open = nfs4_open_reclaim,
9145 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05009146 .establish_clid = nfs41_init_clientid,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05009147 .reclaim_complete = nfs41_proc_reclaim_complete,
Chuck Lever05f4c352012-09-14 17:24:32 -04009148 .detect_trunking = nfs41_discover_server_trunking,
Andy Adamson591d71c2009-04-01 09:22:47 -04009149};
9150#endif /* CONFIG_NFS_V4_1 */
9151
Trond Myklebust17280172012-03-11 13:11:00 -04009152static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05009153 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05009154 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Trond Myklebust4dfd4f72014-10-17 15:10:25 +03009155 .recover_open = nfs40_open_expired,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009156 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04009157 .establish_clid = nfs4_init_clientid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158};
9159
Andy Adamson591d71c2009-04-01 09:22:47 -04009160#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009161static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04009162 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9163 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Bryan Schumakerf062eb62011-06-02 14:59:10 -04009164 .recover_open = nfs41_open_expired,
9165 .recover_lock = nfs41_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05009166 .establish_clid = nfs41_init_clientid,
Andy Adamson591d71c2009-04-01 09:22:47 -04009167};
9168#endif /* CONFIG_NFS_V4_1 */
9169
Trond Myklebust17280172012-03-11 13:11:00 -04009170static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009171 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04009172 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009173 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04009174};
9175
9176#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04009177static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04009178 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04009179 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04009180 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04009181};
9182#endif
9183
Chuck Leverec011fe2013-10-17 14:12:39 -04009184static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009185 .get_locations = _nfs40_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009186 .fsid_present = _nfs40_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009187};
9188
9189#if defined(CONFIG_NFS_V4_1)
9190static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
Chuck Leverb03d7352013-10-17 14:12:50 -04009191 .get_locations = _nfs41_proc_get_locations,
Chuck Lever44c99932013-10-17 14:13:30 -04009192 .fsid_present = _nfs41_proc_fsid_present,
Chuck Leverec011fe2013-10-17 14:12:39 -04009193};
9194#endif /* CONFIG_NFS_V4_1 */
9195
Trond Myklebust97dc1352010-06-16 09:52:26 -04009196static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
9197 .minor_version = 0,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009198 .init_caps = NFS_CAP_READDIRPLUS
9199 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009200 | NFS_CAP_POSIX_LOCK,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009201 .init_client = nfs40_init_client,
9202 .shutdown_client = nfs40_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009203 .match_stateid = nfs4_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009204 .find_root_sec = nfs4_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009205 .free_lock_state = nfs4_release_lockowner,
Trond Myklebust45870d62016-09-22 13:38:59 -04009206 .test_and_free_expired = nfs40_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009207 .alloc_seqid = nfs_alloc_seqid,
Chuck Lever9915ea72013-08-09 12:48:27 -04009208 .call_sync_ops = &nfs40_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009209 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
9210 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
9211 .state_renewal_ops = &nfs40_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009212 .mig_recovery_ops = &nfs40_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009213};
9214
9215#if defined(CONFIG_NFS_V4_1)
Trond Myklebust63f5f792015-01-23 19:19:25 -05009216static struct nfs_seqid *
9217nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
9218{
9219 return NULL;
9220}
9221
Trond Myklebust97dc1352010-06-16 09:52:26 -04009222static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
9223 .minor_version = 1,
Trond Myklebust39c6daa2013-03-15 16:11:57 -04009224 .init_caps = NFS_CAP_READDIRPLUS
9225 | NFS_CAP_ATOMIC_OPEN
Trond Myklebust3b664862013-03-17 15:31:15 -04009226 | NFS_CAP_POSIX_LOCK
Trond Myklebust49f9a0f2013-03-15 16:44:28 -04009227 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009228 | NFS_CAP_ATOMIC_OPEN_V1,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009229 .init_client = nfs41_init_client,
9230 .shutdown_client = nfs41_shutdown_client,
Trond Myklebust36281ca2012-03-04 18:13:56 -05009231 .match_stateid = nfs41_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04009232 .find_root_sec = nfs41_find_root_sec,
Trond Myklebustc8b2d0b2013-05-03 16:22:55 -04009233 .free_lock_state = nfs41_free_lock_state,
Trond Myklebust45870d62016-09-22 13:38:59 -04009234 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009235 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009236 .session_trunk = nfs4_test_session_trunk,
Chuck Lever9915ea72013-08-09 12:48:27 -04009237 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04009238 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9239 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9240 .state_renewal_ops = &nfs41_state_renewal_ops,
Chuck Leverec011fe2013-10-17 14:12:39 -04009241 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04009242};
9243#endif
9244
Steve Dickson42c2c422013-05-22 12:50:38 -04009245#if defined(CONFIG_NFS_V4_2)
9246static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
9247 .minor_version = 2,
Bryan Schumaker70173102013-06-19 13:41:43 -04009248 .init_caps = NFS_CAP_READDIRPLUS
9249 | NFS_CAP_ATOMIC_OPEN
Bryan Schumaker70173102013-06-19 13:41:43 -04009250 | NFS_CAP_POSIX_LOCK
9251 | NFS_CAP_STATEID_NFSV41
Anna Schumakere9831202014-10-22 15:53:10 -04009252 | NFS_CAP_ATOMIC_OPEN_V1
Anna Schumakerf4ac1672014-11-25 13:18:15 -05009253 | NFS_CAP_ALLOCATE
Anna Schumaker2e724482013-05-21 16:53:03 -04009254 | NFS_CAP_COPY
Anna Schumaker624bd5b2014-11-25 13:18:16 -05009255 | NFS_CAP_DEALLOCATE
Trond Myklebust6c5a0d82015-06-27 11:45:46 -04009256 | NFS_CAP_SEEK
Peng Taoe5341f32015-09-26 02:24:35 +08009257 | NFS_CAP_LAYOUTSTATS
9258 | NFS_CAP_CLONE,
Chuck Leverabf79bb2013-08-09 12:49:11 -04009259 .init_client = nfs41_init_client,
9260 .shutdown_client = nfs41_shutdown_client,
Steve Dickson42c2c422013-05-22 12:50:38 -04009261 .match_stateid = nfs41_match_stateid,
9262 .find_root_sec = nfs41_find_root_sec,
Bryan Schumaker70173102013-06-19 13:41:43 -04009263 .free_lock_state = nfs41_free_lock_state,
Chuck Lever9915ea72013-08-09 12:48:27 -04009264 .call_sync_ops = &nfs41_call_sync_ops,
Trond Myklebust45870d62016-09-22 13:38:59 -04009265 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
Trond Myklebust63f5f792015-01-23 19:19:25 -05009266 .alloc_seqid = nfs_alloc_no_seqid,
Andy Adamson04fa2c62016-09-09 09:22:29 -04009267 .session_trunk = nfs4_test_session_trunk,
Steve Dickson42c2c422013-05-22 12:50:38 -04009268 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9269 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9270 .state_renewal_ops = &nfs41_state_renewal_ops,
Kinglong Mee18e3b732015-08-15 21:52:10 +08009271 .mig_recovery_ops = &nfs41_mig_recovery_ops,
Steve Dickson42c2c422013-05-22 12:50:38 -04009272};
9273#endif
9274
Trond Myklebust97dc1352010-06-16 09:52:26 -04009275const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
9276 [0] = &nfs_v4_0_minor_ops,
9277#if defined(CONFIG_NFS_V4_1)
9278 [1] = &nfs_v4_1_minor_ops,
9279#endif
Steve Dickson42c2c422013-05-22 12:50:38 -04009280#if defined(CONFIG_NFS_V4_2)
9281 [2] = &nfs_v4_2_minor_ops,
9282#endif
Trond Myklebust97dc1352010-06-16 09:52:26 -04009283};
9284
Trond Myklebust13997822016-07-24 17:10:52 -04009285static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009286{
9287 ssize_t error, error2;
9288
9289 error = generic_listxattr(dentry, list, size);
9290 if (error < 0)
9291 return error;
9292 if (list) {
9293 list += error;
9294 size -= error;
9295 }
9296
9297 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size);
9298 if (error2 < 0)
9299 return error2;
9300 return error + error2;
9301}
9302
Trond Myklebust17f26b12013-08-21 15:48:42 -04009303static const struct inode_operations nfs4_dir_inode_operations = {
Bryan Schumaker73a79702012-07-16 16:39:12 -04009304 .create = nfs_create,
9305 .lookup = nfs_lookup,
9306 .atomic_open = nfs_atomic_open,
9307 .link = nfs_link,
9308 .unlink = nfs_unlink,
9309 .symlink = nfs_symlink,
9310 .mkdir = nfs_mkdir,
9311 .rmdir = nfs_rmdir,
9312 .mknod = nfs_mknod,
9313 .rename = nfs_rename,
9314 .permission = nfs_permission,
9315 .getattr = nfs_getattr,
9316 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009317 .listxattr = nfs4_listxattr,
Bryan Schumaker73a79702012-07-16 16:39:12 -04009318};
9319
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08009320static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009321 .permission = nfs_permission,
9322 .getattr = nfs_getattr,
9323 .setattr = nfs_setattr,
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +01009324 .listxattr = nfs4_listxattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009325};
9326
David Howells509de812006-08-22 20:06:11 -04009327const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009328 .version = 4, /* protocol version */
9329 .dentry_ops = &nfs4_dentry_operations,
9330 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00009331 .file_inode_ops = &nfs4_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -04009332 .file_ops = &nfs4_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333 .getroot = nfs4_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -04009334 .submount = nfs4_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -04009335 .try_mount = nfs4_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009336 .getattr = nfs4_proc_getattr,
9337 .setattr = nfs4_proc_setattr,
9338 .lookup = nfs4_proc_lookup,
9339 .access = nfs4_proc_access,
9340 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009341 .create = nfs4_proc_create,
9342 .remove = nfs4_proc_remove,
9343 .unlink_setup = nfs4_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -04009344 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345 .unlink_done = nfs4_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -04009346 .rename_setup = nfs4_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04009347 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -04009348 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349 .link = nfs4_proc_link,
9350 .symlink = nfs4_proc_symlink,
9351 .mkdir = nfs4_proc_mkdir,
9352 .rmdir = nfs4_proc_remove,
9353 .readdir = nfs4_proc_readdir,
9354 .mknod = nfs4_proc_mknod,
9355 .statfs = nfs4_proc_statfs,
9356 .fsinfo = nfs4_proc_fsinfo,
9357 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04009358 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009359 .decode_dirent = nfs4_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -04009360 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009361 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05009362 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009364 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009365 .commit_setup = nfs4_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -04009366 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05009367 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009368 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00009369 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04009370 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04009371 .open_context = nfs4_atomic_open,
Bryan Schumaker011e2a72012-06-20 15:53:43 -04009372 .have_delegation = nfs4_have_delegation,
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04009373 .return_delegation = nfs4_inode_return_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -04009374 .alloc_client = nfs4_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +00009375 .init_client = nfs4_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -04009376 .free_client = nfs4_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -04009377 .create_server = nfs4_create_server,
9378 .clone_server = nfs_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009379};
9380
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009381static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +01009382 .name = XATTR_NAME_NFSV4_ACL,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009383 .list = nfs4_xattr_list_nfs4_acl,
9384 .get = nfs4_xattr_get_nfs4_acl,
9385 .set = nfs4_xattr_set_nfs4_acl,
9386};
9387
9388const struct xattr_handler *nfs4_xattr_handlers[] = {
9389 &nfs4_xattr_nfs4_acl_handler,
David Quigleyc9bccef2013-05-22 12:50:45 -04009390#ifdef CONFIG_NFS_V4_SECURITY_LABEL
9391 &nfs4_xattr_nfs4_label_handler,
9392#endif
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00009393 NULL
9394};
9395
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396/*
9397 * Local variables:
9398 * c-basic-offset: 8
9399 * End:
9400 */