blob: 634f32d847e02a9a56786f7ef86396eb24094729 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Server-side procedures for NFSv4.
3 *
4 * Copyright (c) 2002 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <andros@umich.edu>
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
J. Bruce Fields880a3a52018-03-21 17:19:02 -040035#include <linux/fs_struct.h>
NeilBrown7e06b7f2005-06-23 22:03:13 -070036#include <linux/file.h>
Anna Schumakerb0cb9082014-11-07 14:44:27 -050037#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -040039#include <linux/kthread.h>
Olga Kornievskaia624322f2019-10-04 16:34:26 -040040#include <linux/sunrpc/addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Mi Jinlong58e7b332011-08-28 18:18:56 +080042#include "idmap.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020043#include "cache.h"
44#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050045#include "vfs.h"
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +010046#include "current_stateid.h"
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +030047#include "netns.h"
Christoph Hellwig4ac72492013-12-20 05:16:55 -080048#include "acl.h"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020049#include "pnfs.h"
Christoph Hellwig31ef83d2014-08-16 19:02:22 -050050#include "trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Quigley18032ca2013-05-02 13:19:10 -040052#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
53#include <linux/security.h>
54
55static inline void
56nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
57{
David Howells2b0143b2015-03-17 22:25:59 +000058 struct inode *inode = d_inode(resfh->fh_dentry);
David Quigley18032ca2013-05-02 13:19:10 -040059 int status;
60
Al Viro59551022016-01-22 15:40:57 -050061 inode_lock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040062 status = security_inode_setsecctx(resfh->fh_dentry,
63 label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -050064 inode_unlock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040065
66 if (status)
67 /*
68 * XXX: We should really fail the whole open, but we may
69 * already have created a new file, so it may be too
70 * late. For now this seems the least of evils:
71 */
72 bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
73
74 return;
75}
76#else
77static inline void
78nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
79{ }
80#endif
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define NFSDDBG_FACILITY NFSDDBG_PROC
83
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080084static u32 nfsd_attrmask[] = {
85 NFSD_WRITEABLE_ATTRS_WORD0,
86 NFSD_WRITEABLE_ATTRS_WORD1,
87 NFSD_WRITEABLE_ATTRS_WORD2
88};
89
90static u32 nfsd41_ex_attrmask[] = {
91 NFSD_SUPPATTR_EXCLCREAT_WORD0,
92 NFSD_SUPPATTR_EXCLCREAT_WORD1,
93 NFSD_SUPPATTR_EXCLCREAT_WORD2
94};
95
96static __be32
97check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
98 u32 *bmval, u32 *writable)
99{
100 struct dentry *dentry = cstate->current_fh.fh_dentry;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500101 struct svc_export *exp = cstate->current_fh.fh_export;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800102
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400103 if (!nfsd_attrs_supported(cstate->minorversion, bmval))
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800104 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400105 if ((bmval[0] & FATTR4_WORD0_ACL) && !IS_POSIXACL(d_inode(dentry)))
106 return nfserr_attrnotsupp;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500107 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) &&
108 !(exp->ex_flags & NFSEXP_SECURITY_LABEL))
109 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400110 if (writable && !bmval_is_subset(bmval, writable))
111 return nfserr_inval;
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100112 if (writable && (bmval[2] & FATTR4_WORD2_MODE_UMASK) &&
113 (bmval[1] & FATTR4_WORD1_MODE))
114 return nfserr_inval;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800115 return nfs_ok;
116}
117
118static __be32
119nfsd4_check_open_attributes(struct svc_rqst *rqstp,
120 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
121{
122 __be32 status = nfs_ok;
123
124 if (open->op_create == NFS4_OPEN_CREATE) {
125 if (open->op_createmode == NFS4_CREATE_UNCHECKED
126 || open->op_createmode == NFS4_CREATE_GUARDED)
127 status = check_attr_support(rqstp, cstate,
128 open->op_bmval, nfsd_attrmask);
129 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
130 status = check_attr_support(rqstp, cstate,
131 open->op_bmval, nfsd41_ex_attrmask);
132 }
133
134 return status;
135}
136
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800137static int
138is_create_with_attrs(struct nfsd4_open *open)
139{
140 return open->op_create == NFS4_OPEN_CREATE
141 && (open->op_createmode == NFS4_CREATE_UNCHECKED
142 || open->op_createmode == NFS4_CREATE_GUARDED
143 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
144}
145
146/*
147 * if error occurs when setting the acl, just clear the acl bit
148 * in the returned attr bitmap.
149 */
150static void
151do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
152 struct nfs4_acl *acl, u32 *bmval)
153{
154 __be32 status;
155
156 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
157 if (status)
158 /*
159 * We should probably fail the whole open at this point,
160 * but we've already created the file, so it's too late;
161 * So this seems the least of evils:
162 */
163 bmval[0] &= ~FATTR4_WORD0_ACL;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static inline void
167fh_dup2(struct svc_fh *dst, struct svc_fh *src)
168{
169 fh_put(dst);
170 dget(src->fh_dentry);
171 if (src->fh_export)
Kinglong Meebf18f162014-06-10 22:06:44 +0800172 exp_get(src->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *dst = *src;
174}
175
Al Virob37ad282006-10-19 23:28:59 -0700176static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700177do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Al Virob37ad282006-10-19 23:28:59 -0700179 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 if (open->op_truncate &&
182 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
183 return nfserr_inval;
184
J. Bruce Fieldsa0432262011-08-25 10:48:39 -0400185 accmode |= NFSD_MAY_READ_IF_EXEC;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200188 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700189 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200190 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields57ecb342009-12-01 19:42:57 -0500191 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200192 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
195
196 return status;
197}
198
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400199static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
200{
David Howells2b0143b2015-03-17 22:25:59 +0000201 umode_t mode = d_inode(fh->fh_dentry)->i_mode;
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400202
203 if (S_ISREG(mode))
204 return nfs_ok;
205 if (S_ISDIR(mode))
206 return nfserr_isdir;
207 /*
208 * Using err_symlink as our catch-all case may look odd; but
209 * there's no other obvious error for this case in 4.0, and we
210 * happen to know that it will cause the linux v4 client to do
211 * the right thing on attempts to open something other than a
212 * regular file.
213 */
214 return nfserr_symlink;
215}
216
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400217static void nfsd4_set_open_owner_reply_cache(struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh *resfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400219 if (nfsd4_has_session(cstate))
220 return;
221 fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
222 &resfh->fh_handle);
223}
224
225static __be32
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500226do_open_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh **resfh)
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400227{
228 struct svc_fh *current_fh = &cstate->current_fh;
Neil Brown7007c902012-12-07 15:40:55 -0500229 int accmode;
Al Virob37ad282006-10-19 23:28:59 -0700230 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500232 *resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
233 if (!*resfh)
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500234 return nfserr_jukebox;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500235 fh_init(*resfh, NFS4_FHSIZE);
zhengbin500c24812019-12-25 11:19:35 +0800236 open->op_truncate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300239 /* FIXME: check session persistence and pnfs flags.
240 * The nfsv4.1 spec requires the following semantics:
241 *
242 * Persistent | pNFS | Server REQUIRED | Client Allowed
243 * Reply Cache | server | |
244 * -------------+--------+-----------------+--------------------
245 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
246 * | | | (SHOULD)
247 * | | and EXCLUSIVE4 | or EXCLUSIVE4
248 * | | | (SHOULD NOT)
249 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
250 * yes | no | GUARDED4 | GUARDED4
251 * yes | yes | GUARDED4 | GUARDED4
252 */
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
255 * Note: create modes (UNCHECKED,GUARDED...) are the same
Mi Jinlongac6721a2011-04-20 17:06:25 +0800256 * in NFSv4 as in v3 except EXCLUSIVE4_1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400258 current->fs->umask = open->op_umask;
Mi Jinlongac6721a2011-04-20 17:06:25 +0800259 status = do_nfsd_create(rqstp, current_fh, open->op_fname.data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 open->op_fname.len, &open->op_iattr,
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500261 *resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700262 (u32 *)open->op_verf.data,
J. Bruce Fields856121b2011-10-13 11:37:11 -0400263 &open->op_truncate, &open->op_created);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400264 current->fs->umask = 0;
Jeff Layton749997e2007-07-31 00:37:51 -0700265
David Quigley18032ca2013-05-02 13:19:10 -0400266 if (!status && open->op_label.len)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500267 nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval);
David Quigley18032ca2013-05-02 13:19:10 -0400268
J. Bruce Fields99f88722009-02-02 15:12:27 -0500269 /*
Kinglong Meeead8fb82015-07-30 21:55:02 +0800270 * Following rfc 3530 14.2.16, and rfc 5661 18.16.4
271 * use the returned bitmask to indicate which attributes
272 * we used to store the verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700273 */
Kinglong Meeead8fb82015-07-30 21:55:02 +0800274 if (nfsd_create_is_exclusive(open->op_createmode) && status == 0)
275 open->op_bmval[1] |= (FATTR4_WORD1_TIME_ACCESS |
276 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fields43357232014-01-24 18:04:40 -0500277 } else
278 /*
279 * Note this may exit with the parent still locked.
280 * We will hold the lock until nfsd4_open's final
281 * lookup, to prevent renames or unlinks until we've had
282 * a chance to an acquire a delegation if appropriate.
283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 status = nfsd_lookup(rqstp, current_fh,
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500285 open->op_fname.data, open->op_fname.len, *resfh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800286 if (status)
287 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500288 status = nfsd_check_obj_isreg(*resfh);
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -0400289 if (status)
290 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800292 if (is_create_with_attrs(open) && open->op_acl != NULL)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500293 do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval);
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800294
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500295 nfsd4_set_open_owner_reply_cache(cstate, open, *resfh);
Neil Brown7007c902012-12-07 15:40:55 -0500296 accmode = NFSD_MAY_NOP;
J. Bruce Fields89f6c332013-06-19 15:47:37 -0400297 if (open->op_created ||
298 open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
Neil Brown7007c902012-12-07 15:40:55 -0500299 accmode |= NFSD_MAY_OWNER_OVERRIDE;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500300 status = do_open_permission(rqstp, *resfh, open, accmode);
J. Bruce Fields41fd1e42012-01-27 16:26:02 -0500301 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800302out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return status;
304}
305
Al Virob37ad282006-10-19 23:28:59 -0700306static __be32
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400307do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400309 struct svc_fh *current_fh = &cstate->current_fh;
Al Virob37ad282006-10-19 23:28:59 -0700310 __be32 status;
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400311 int accmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* We don't know the target directory, and therefore can not
314 * set the change info
315 */
316
317 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
318
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400319 nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
322 (open->op_iattr.ia_size == 0);
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400323 /*
324 * In the delegation case, the client is telling us about an
325 * open that it *already* performed locally, some time ago. We
326 * should let it succeed now if possible.
327 *
328 * In the case of a CLAIM_FH open, on the other hand, the client
329 * may be counting on us to enforce permissions (the Linux 4.1
330 * client uses this for normal opens, for example).
331 */
332 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
333 accmode = NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400335 status = do_open_permission(rqstp, current_fh, open, accmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 return status;
338}
339
Andy Adamson60adfc52009-04-03 08:28:50 +0300340static void
341copy_clientid(clientid_t *clid, struct nfsd4_session *session)
342{
343 struct nfsd4_sessionid *sid =
344 (struct nfsd4_sessionid *)session->se_sessionid.data;
345
346 clid->cl_boot = sid->clientid.cl_boot;
347 clid->cl_id = sid->clientid.cl_id;
348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
J.Bruce Fields71911552006-12-13 00:35:29 -0800350static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800351nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200352 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200354 struct nfsd4_open *open = &u->open;
Al Virob37ad282006-10-19 23:28:59 -0700355 __be32 status;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500356 struct svc_fh *resfh = NULL;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300357 struct net *net = SVC_NET(rqstp);
358 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400359 bool reclaim = false;
Andy Adamson66689582009-04-03 08:28:45 +0300360
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400361 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 (int)open->op_fname.len, open->op_fname.data,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400363 open->op_openowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* This check required by spec. */
366 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
367 return nfserr_inval;
368
zhengbin500c24812019-12-25 11:19:35 +0800369 open->op_created = false;
Mi Jinlongab1350b2011-07-14 15:06:26 +0800370 /*
371 * RFC5661 18.51.3
372 * Before RECLAIM_COMPLETE done, server should deny new lock
373 */
374 if (nfsd4_has_session(cstate) &&
Jeff Laytona52d7262012-03-21 09:52:02 -0400375 !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
376 &cstate->session->se_client->cl_flags) &&
Mi Jinlongab1350b2011-07-14 15:06:26 +0800377 open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
378 return nfserr_grace;
379
Andy Adamson60adfc52009-04-03 08:28:50 +0300380 if (nfsd4_has_session(cstate))
381 copy_clientid(&open->op_clientid, cstate->session);
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* check seqid for replay. set nfs4_owner */
Kinglong Mee6cd22662015-07-13 17:32:05 +0800384 status = nfsd4_process_open1(cstate, open, nn);
Al Viroa90b0612006-10-19 23:29:03 -0700385 if (status == nfserr_replay_me) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400386 struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800387 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500388 fh_copy_shallow(&cstate->current_fh.fh_handle,
389 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200390 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (status)
392 dprintk("nfsd4_open: replay failed"
393 " restoring previous filehandle\n");
394 else
Al Viroa90b0612006-10-19 23:29:03 -0700395 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 if (status)
398 goto out;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800399 if (open->op_xdr_error) {
400 status = open->op_xdr_error;
401 goto out;
402 }
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800403
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800404 status = nfsd4_check_open_attributes(rqstp, cstate, open);
405 if (status)
406 goto out;
407
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800408 /* Openowner is now set, so sequence id will get bumped. Now we need
409 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800410 status = nfserr_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400411 if (opens_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800412 goto out;
413 status = nfserr_no_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400414 if (!opens_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800415 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700418 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 case NFS4_OPEN_CLAIM_NULL:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500420 status = do_open_lookup(rqstp, cstate, open, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (status)
422 goto out;
423 break;
424 case NFS4_OPEN_CLAIM_PREVIOUS:
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300425 status = nfs4_check_open_reclaim(&open->op_clientid,
Trond Myklebust0fe492d2014-06-30 11:48:47 -0400426 cstate, nn);
Mi Jinlong0cf99b92011-11-23 10:48:40 +0800427 if (status)
428 goto out;
Jeff Laytonba5378b2014-05-30 09:09:28 -0400429 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400430 reclaim = true;
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -0600431 /* fall through */
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400432 case NFS4_OPEN_CLAIM_FH:
433 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400434 status = do_open_fhandle(rqstp, cstate, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (status)
436 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500437 resfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400439 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400441 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 open->op_claim_type);
443 status = nfserr_notsupp;
444 goto out;
445 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400446 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 open->op_claim_type);
448 status = nfserr_inval;
449 goto out;
450 }
451 /*
452 * nfsd4_process_open2() does the actual opening of the file. If
453 * successful, it (1) truncates the file if open->op_truncate was
454 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
455 */
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500456 status = nfsd4_process_open2(rqstp, resfh, open);
Jeff Laytonb3fbfe02014-07-29 21:37:44 -0400457 WARN(status && open->op_created,
458 "nfsd4_process_open2 failed to open newly-created file! status=%u\n",
459 be32_to_cpu(status));
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400460 if (reclaim && !status)
461 nn->somebody_reclaimed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462out:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500463 if (resfh && resfh != &cstate->current_fh) {
464 fh_dup2(&cstate->current_fh, resfh);
465 fh_put(resfh);
466 kfree(resfh);
467 }
Jeff Layton42297892015-03-23 10:53:44 -0400468 nfsd4_cleanup_open_state(cstate, open);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -0400469 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return status;
471}
472
473/*
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800474 * OPEN is the only seqid-mutating operation whose decoding can fail
475 * with a seqid-mutating error (specifically, decoding of user names in
476 * the attributes). Therefore we have to do some processing to look up
477 * the stateowner so that we can bump the seqid.
478 */
479static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
480{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200481 struct nfsd4_open *open = &op->u.open;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800482
483 if (!seqid_mutating_err(ntohl(op->status)))
484 return op->status;
485 if (nfsd4_has_session(cstate))
486 return op->status;
487 open->op_xdr_error = op->status;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200488 return nfsd4_open(rqstp, cstate, &op->u);
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800489}
490
491/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * filehandle-manipulating ops.
493 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800494static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800495nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200496 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200498 u->getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return nfs_ok;
500}
501
J.Bruce Fields71911552006-12-13 00:35:29 -0800502static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800503nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200504 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200506 struct nfsd4_putfh *putfh = &u->putfh;
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400507 __be32 ret;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200508
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800509 fh_put(&cstate->current_fh);
510 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
511 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
512 putfh->pf_fhlen);
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400513 ret = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
514#ifdef CONFIG_NFSD_V4_2_INTER_SSC
515 if (ret == nfserr_stale && putfh->no_verify) {
516 SET_FH_FLAG(&cstate->current_fh, NFSD4_FH_FOREIGN);
517 ret = 0;
518 }
519#endif
520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
J.Bruce Fields71911552006-12-13 00:35:29 -0800523static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800524nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200525 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Al Virob37ad282006-10-19 23:28:59 -0700527 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800529 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700530 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return status;
532}
533
J.Bruce Fields71911552006-12-13 00:35:29 -0800534static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800535nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200536 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800538 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return nfserr_restorefh;
540
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800541 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400542 if (HAS_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100543 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400544 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return nfs_ok;
547}
548
J.Bruce Fields71911552006-12-13 00:35:29 -0800549static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800550nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200551 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800553 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400554 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100555 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400556 SET_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return nfs_ok;
559}
560
561/*
562 * misc nfsv4 ops
563 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800564static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800565nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200566 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200568 struct nfsd4_access *access = &u->access;
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
571 return nfserr_inval;
572
573 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800574 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
575 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300578static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
Chuck Leverab4684d2012-03-02 17:13:50 -0500579{
Trond Myklebust27c438f2019-09-02 13:02:56 -0400580 __be32 *verf = (__be32 *)verifier->data;
Chuck Leverab4684d2012-03-02 17:13:50 -0500581
Trond Myklebust27c438f2019-09-02 13:02:56 -0400582 BUILD_BUG_ON(2*sizeof(*verf) != sizeof(verifier->data));
583
584 nfsd_copy_boot_verifier(verf, net_generic(net, nfsd_net_id));
Chuck Leverab4684d2012-03-02 17:13:50 -0500585}
586
J.Bruce Fields71911552006-12-13 00:35:29 -0800587static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800588nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200589 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200591 struct nfsd4_commit *commit = &u->commit;
592
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300593 gen_boot_verifier(&commit->co_verf, SVC_NET(rqstp));
J. Bruce Fields75c096f2011-08-15 18:39:32 -0400594 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800595 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Al Virob37ad282006-10-19 23:28:59 -0700598static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800599nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200600 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200602 struct nfsd4_create *create = &u->create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700604 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 dev_t rdev;
606
607 fh_init(&resfh, NFS4_FHSIZE);
608
J. Bruce Fieldsfa081392016-07-21 16:00:12 -0400609 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (status)
611 return status;
612
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800613 status = check_attr_support(rqstp, cstate, create->cr_bmval,
614 nfsd_attrmask);
615 if (status)
616 return status;
617
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400618 current->fs->umask = create->cr_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 switch (create->cr_type) {
620 case NF4LNK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800621 status = nfsd_symlink(rqstp, &cstate->current_fh,
622 create->cr_name, create->cr_namelen,
Kinglong Mee1e444f52014-07-01 17:48:02 +0800623 create->cr_data, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625
626 case NF4BLK:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400627 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
629 if (MAJOR(rdev) != create->cr_specdata1 ||
630 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400631 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800632 status = nfsd_create(rqstp, &cstate->current_fh,
633 create->cr_name, create->cr_namelen,
634 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636
637 case NF4CHR:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400638 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
640 if (MAJOR(rdev) != create->cr_specdata1 ||
641 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400642 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800643 status = nfsd_create(rqstp, &cstate->current_fh,
644 create->cr_name, create->cr_namelen,
645 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 break;
647
648 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800649 status = nfsd_create(rqstp, &cstate->current_fh,
650 create->cr_name, create->cr_namelen,
651 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653
654 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800655 status = nfsd_create(rqstp, &cstate->current_fh,
656 create->cr_name, create->cr_namelen,
657 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659
660 case NF4DIR:
661 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800662 status = nfsd_create(rqstp, &cstate->current_fh,
663 create->cr_name, create->cr_namelen,
664 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666
667 default:
668 status = nfserr_badtype;
669 }
670
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800671 if (status)
672 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Quigley18032ca2013-05-02 13:19:10 -0400674 if (create->cr_label.len)
675 nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
676
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800677 if (create->cr_acl != NULL)
678 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
679 create->cr_bmval);
680
681 fh_unlock(&cstate->current_fh);
682 set_change_info(&create->cr_cinfo, &cstate->current_fh);
683 fh_dup2(&cstate->current_fh, &resfh);
684out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 fh_put(&resfh);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400686out_umask:
687 current->fs->umask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return status;
689}
690
J.Bruce Fields71911552006-12-13 00:35:29 -0800691static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800692nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200693 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200695 struct nfsd4_getattr *getattr = &u->getattr;
Al Virob37ad282006-10-19 23:28:59 -0700696 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200698 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (status)
700 return status;
701
702 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
703 return nfserr_inval;
704
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400705 getattr->ga_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
706 getattr->ga_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
707 getattr->ga_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800709 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return nfs_ok;
711}
712
J.Bruce Fields71911552006-12-13 00:35:29 -0800713static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800714nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200715 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200717 struct nfsd4_link *link = &u->link;
J. Bruce Fields95424462017-09-15 16:02:52 -0400718 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800720 status = nfsd_link(rqstp, &cstate->current_fh,
721 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800723 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return status;
725}
726
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500727static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700730 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700733 ret = exp_pseudoroot(rqstp, &tmp_fh);
734 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return ret;
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500736 if (tmp_fh.fh_dentry == fh->fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 fh_put(&tmp_fh);
738 return nfserr_noent;
739 }
740 fh_put(&tmp_fh);
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500741 return nfsd_lookup(rqstp, fh, "..", 2, fh);
742}
743
744static __be32
745nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200746 union nfsd4_op_u *u)
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500747{
748 return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
J.Bruce Fields71911552006-12-13 00:35:29 -0800751static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800752nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200753 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800755 return nfsd_lookup(rqstp, &cstate->current_fh,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200756 u->lookup.lo_name, u->lookup.lo_len,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800757 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
J.Bruce Fields71911552006-12-13 00:35:29 -0800760static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800761nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200762 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200764 struct nfsd4_read *read = &u->read;
Al Virob37ad282006-10-19 23:28:59 -0700765 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Jeff Layton5c4583b2019-08-18 14:18:54 -0400767 read->rd_nf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (read->rd_offset >= OFFSET_MAX)
769 return nfserr_inval;
770
Chuck Lever87c59422018-03-28 13:29:11 -0400771 trace_nfsd_read_start(rqstp, &cstate->current_fh,
772 read->rd_offset, read->rd_length);
773
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500774 /*
775 * If we do a zero copy read, then a client will see read data
776 * that reflects the state of the file *after* performing the
777 * following compound.
778 *
779 * To ensure proper ordering, we therefore turn off zero copy if
780 * the client wants us to do more in this compound:
781 */
782 if (!nfsd4_last_compound_op(rqstp))
Jeff Layton779fb0f2014-11-19 07:51:18 -0500783 clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* check stateid */
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100786 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
787 &read->rd_stateid, RD_STATE,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400788 &read->rd_nf, NULL);
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200789 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
791 goto out;
792 }
793 status = nfs_ok;
794out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800796 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return status;
798}
799
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400800
801static void
802nfsd4_read_release(union nfsd4_op_u *u)
803{
Jeff Layton5c4583b2019-08-18 14:18:54 -0400804 if (u->read.rd_nf)
805 nfsd_file_put(u->read.rd_nf);
Chuck Lever87c59422018-03-28 13:29:11 -0400806 trace_nfsd_read_done(u->read.rd_rqstp, u->read.rd_fhp,
807 u->read.rd_offset, u->read.rd_length);
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400808}
809
J.Bruce Fields71911552006-12-13 00:35:29 -0800810static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800811nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200812 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200814 struct nfsd4_readdir *readdir = &u->readdir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 u64 cookie = readdir->rd_cookie;
816 static const nfs4_verifier zeroverf;
817
818 /* no need to check permission - this will be done in nfsd_readdir() */
819
820 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
821 return nfserr_inval;
822
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400823 readdir->rd_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
824 readdir->rd_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
825 readdir->rd_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Bernd Schubert832023b2011-08-08 17:38:08 +0200827 if ((cookie == 1) || (cookie == 2) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
829 return nfserr_bad_cookie;
830
831 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800832 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return nfs_ok;
834}
835
J.Bruce Fields71911552006-12-13 00:35:29 -0800836static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800837nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200838 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200840 u->readlink.rl_rqstp = rqstp;
841 u->readlink.rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return nfs_ok;
843}
844
J.Bruce Fields71911552006-12-13 00:35:29 -0800845static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800846nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200847 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200849 struct nfsd4_remove *remove = &u->remove;
Al Virob37ad282006-10-19 23:28:59 -0700850 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400852 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700853 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800854 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
855 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800857 fh_unlock(&cstate->current_fh);
858 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 return status;
861}
862
J.Bruce Fields71911552006-12-13 00:35:29 -0800863static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800864nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200865 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200867 struct nfsd4_rename *rename = &u->rename;
J. Bruce Fields95424462017-09-15 16:02:52 -0400868 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
J. Bruce Fieldsf8f71d02018-11-06 11:47:20 -0500870 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700871 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800872 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
873 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fields2a6cf942013-04-30 15:28:51 -0400875 if (status)
876 return status;
877 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
878 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
879 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
J.Bruce Fields71911552006-12-13 00:35:29 -0800882static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700883nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200884 union nfsd4_op_u *u)
Andy Adamsondcb488a32007-07-17 04:04:51 -0700885{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200886 struct nfsd4_secinfo *secinfo = &u->secinfo;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700887 struct svc_export *exp;
888 struct dentry *dentry;
889 __be32 err;
890
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400891 err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
892 if (err)
893 return err;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700894 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
895 secinfo->si_name, secinfo->si_namelen,
896 &exp, &dentry);
897 if (err)
898 return err;
J. Bruce Fields2f6fc052016-03-02 16:36:21 -0800899 fh_unlock(&cstate->current_fh);
David Howells2b0143b2015-03-17 22:25:59 +0000900 if (d_really_is_negative(dentry)) {
Andy Adamsondcb488a32007-07-17 04:04:51 -0700901 exp_put(exp);
902 err = nfserr_noent;
903 } else
904 secinfo->si_exp = exp;
905 dput(dentry);
J. Bruce Fields56560b92010-12-16 09:57:15 -0500906 if (cstate->minorversion)
907 /* See rfc 5661 section 2.6.3.1.1.8 */
908 fh_put(&cstate->current_fh);
Andy Adamsondcb488a32007-07-17 04:04:51 -0700909 return err;
910}
911
912static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500913nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200914 union nfsd4_op_u *u)
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500915{
916 __be32 err;
917
Christoph Hellwigeb698532017-05-08 20:58:35 +0200918 switch (u->secinfo_no_name.sin_style) {
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500919 case NFS4_SECINFO_STYLE4_CURRENT_FH:
920 break;
921 case NFS4_SECINFO_STYLE4_PARENT:
922 err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
923 if (err)
924 return err;
925 break;
926 default:
927 return nfserr_inval;
928 }
Kinglong Meebf18f162014-06-10 22:06:44 +0800929
Christoph Hellwigeb698532017-05-08 20:58:35 +0200930 u->secinfo_no_name.sin_exp = exp_get(cstate->current_fh.fh_export);
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500931 fh_put(&cstate->current_fh);
932 return nfs_ok;
933}
934
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400935static void
936nfsd4_secinfo_release(union nfsd4_op_u *u)
937{
938 if (u->secinfo.si_exp)
939 exp_put(u->secinfo.si_exp);
940}
941
Eryu Guanec572b92017-09-29 15:01:10 +0800942static void
943nfsd4_secinfo_no_name_release(union nfsd4_op_u *u)
944{
945 if (u->secinfo_no_name.sin_exp)
946 exp_put(u->secinfo_no_name.sin_exp);
947}
948
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500949static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800950nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200951 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200953 struct nfsd4_setattr *setattr = &u->setattr;
Al Virob37ad282006-10-19 23:28:59 -0700954 __be32 status = nfs_ok;
Al Viro96f6f982012-04-12 23:47:00 -0400955 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200958 status = nfs4_preprocess_stateid_op(rqstp, cstate,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100959 &cstate->current_fh, &setattr->sa_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400960 WR_STATE, NULL, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -0800961 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700962 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800963 return status;
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Al Viro96f6f982012-04-12 23:47:00 -0400966 err = fh_want_write(&cstate->current_fh);
967 if (err)
968 return nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800970
971 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
972 nfsd_attrmask);
973 if (status)
974 goto out;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800977 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
978 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800980 goto out;
David Quigley18032ca2013-05-02 13:19:10 -0400981 if (setattr->sa_label.len)
982 status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
983 &setattr->sa_label);
984 if (status)
985 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800986 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Arnd Bergmann2a1aa482019-11-03 17:50:18 +0100987 0, (time64_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800988out:
Al Virobad0dcf2011-11-23 12:03:18 -0500989 fh_drop_write(&cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return status;
991}
992
J.Bruce Fields71911552006-12-13 00:35:29 -0800993static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800994nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200995 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200997 struct nfsd4_write *write = &u->write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 stateid_t *stateid = &write->wr_stateid;
Jeff Layton5c4583b2019-08-18 14:18:54 -0400999 struct nfsd_file *nf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001000 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -05001001 unsigned long cnt;
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001002 int nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (write->wr_offset >= OFFSET_MAX)
1005 return nfserr_inval;
1006
Chuck Leverd890be12018-03-27 10:53:27 -04001007 cnt = write->wr_buflen;
1008 trace_nfsd_write_start(rqstp, &cstate->current_fh,
1009 write->wr_offset, cnt);
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001010 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001011 stateid, WR_STATE, &nf, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -08001012 if (status) {
1013 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1014 return status;
1015 }
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 write->wr_how_written = write->wr_stable_how;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +03001018 gen_boot_verifier(&write->wr_verifier, SVC_NET(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Chuck Lever3fd95572018-07-27 11:19:05 -04001020 nvecs = svc_fill_write_vector(rqstp, write->wr_pagelist,
1021 &write->wr_head, write->wr_buflen);
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001022 WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1023
Trond Myklebust16f8f892020-01-06 13:40:29 -05001024 status = nfsd_vfs_write(rqstp, &cstate->current_fh, nf,
Christoph Hellwigaf90f702015-06-18 16:45:00 +02001025 write->wr_offset, rqstp->rq_vec, nvecs, &cnt,
Kinglong Mee54bbb7d2016-12-31 20:59:53 +08001026 write->wr_how_written);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001027 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
David Shaw31dec252009-03-05 20:16:14 -05001029 write->wr_bytes_written = cnt;
Chuck Leverd890be12018-03-27 10:53:27 -04001030 trace_nfsd_write_done(rqstp, &cstate->current_fh,
1031 write->wr_offset, cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Anna Schumaker24bab492014-09-26 13:58:27 -04001035static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001036nfsd4_verify_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Jeff Layton5c4583b2019-08-18 14:18:54 -04001037 stateid_t *src_stateid, struct nfsd_file **src,
1038 stateid_t *dst_stateid, struct nfsd_file **dst)
Christoph Hellwigffa01602015-12-03 12:59:52 +01001039{
Christoph Hellwigffa01602015-12-03 12:59:52 +01001040 __be32 status;
1041
Scott Mayhew01310bb2018-11-08 11:11:36 -05001042 if (!cstate->save_fh.fh_dentry)
1043 return nfserr_nofilehandle;
1044
Christoph Hellwigffa01602015-12-03 12:59:52 +01001045 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->save_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001046 src_stateid, RD_STATE, src, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001047 if (status) {
1048 dprintk("NFSD: %s: couldn't process src stateid!\n", __func__);
1049 goto out;
1050 }
1051
1052 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001053 dst_stateid, WR_STATE, dst, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001054 if (status) {
1055 dprintk("NFSD: %s: couldn't process dst stateid!\n", __func__);
1056 goto out_put_src;
1057 }
1058
1059 /* fix up for NFS-specific error code */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001060 if (!S_ISREG(file_inode((*src)->nf_file)->i_mode) ||
1061 !S_ISREG(file_inode((*dst)->nf_file)->i_mode)) {
Christoph Hellwigffa01602015-12-03 12:59:52 +01001062 status = nfserr_wrong_type;
1063 goto out_put_dst;
1064 }
1065
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001066out:
1067 return status;
1068out_put_dst:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001069 nfsd_file_put(*dst);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001070out_put_src:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001071 nfsd_file_put(*src);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001072 goto out;
1073}
1074
1075static __be32
1076nfsd4_clone(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001077 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001078{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001079 struct nfsd4_clone *clone = &u->clone;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001080 struct nfsd_file *src, *dst;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001081 __be32 status;
1082
1083 status = nfsd4_verify_copy(rqstp, cstate, &clone->cl_src_stateid, &src,
1084 &clone->cl_dst_stateid, &dst);
1085 if (status)
1086 goto out;
1087
Trond Myklebustb66ae6d2020-01-06 13:40:32 -05001088 status = nfsd4_clone_file_range(src, clone->cl_src_pos,
1089 dst, clone->cl_dst_pos, clone->cl_count,
Trond Myklebusta25e37262019-11-27 17:05:51 -05001090 EX_ISSYNC(cstate->current_fh.fh_export));
Christoph Hellwigffa01602015-12-03 12:59:52 +01001091
Jeff Layton5c4583b2019-08-18 14:18:54 -04001092 nfsd_file_put(dst);
1093 nfsd_file_put(src);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001094out:
1095 return status;
1096}
1097
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001098void nfs4_put_copy(struct nfsd4_copy *copy)
1099{
1100 if (!refcount_dec_and_test(&copy->refcount))
1101 return;
1102 kfree(copy);
1103}
1104
1105static bool
1106check_and_set_stop_copy(struct nfsd4_copy *copy)
1107{
1108 bool value;
1109
1110 spin_lock(&copy->cp_clp->async_lock);
1111 value = copy->stopped;
1112 if (!copy->stopped)
1113 copy->stopped = true;
1114 spin_unlock(&copy->cp_clp->async_lock);
1115 return value;
1116}
1117
1118static void nfsd4_stop_copy(struct nfsd4_copy *copy)
1119{
1120 /* only 1 thread should stop the copy */
1121 if (!check_and_set_stop_copy(copy))
1122 kthread_stop(copy->copy_task);
1123 nfs4_put_copy(copy);
1124}
1125
1126static struct nfsd4_copy *nfsd4_get_copy(struct nfs4_client *clp)
1127{
1128 struct nfsd4_copy *copy = NULL;
1129
1130 spin_lock(&clp->async_lock);
1131 if (!list_empty(&clp->async_copies)) {
1132 copy = list_first_entry(&clp->async_copies, struct nfsd4_copy,
1133 copies);
1134 refcount_inc(&copy->refcount);
1135 }
1136 spin_unlock(&clp->async_lock);
1137 return copy;
1138}
1139
1140void nfsd4_shutdown_copy(struct nfs4_client *clp)
1141{
1142 struct nfsd4_copy *copy;
1143
1144 while ((copy = nfsd4_get_copy(clp)) != NULL)
1145 nfsd4_stop_copy(copy);
1146}
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001147#ifdef CONFIG_NFSD_V4_2_INTER_SSC
1148
1149extern struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1150 struct nfs_fh *src_fh,
1151 nfs4_stateid *stateid);
1152extern void nfs42_ssc_close(struct file *filep);
1153
1154extern void nfs_sb_deactive(struct super_block *sb);
1155
1156#define NFSD42_INTERSSC_MOUNTOPS "vers=4.2,addr=%s,sec=sys"
1157
1158/**
1159 * Support one copy source server for now.
1160 */
1161static __be32
1162nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp,
1163 struct vfsmount **mount)
1164{
1165 struct file_system_type *type;
1166 struct vfsmount *ss_mnt;
1167 struct nfs42_netaddr *naddr;
1168 struct sockaddr_storage tmp_addr;
1169 size_t tmp_addrlen, match_netid_len = 3;
1170 char *startsep = "", *endsep = "", *match_netid = "tcp";
1171 char *ipaddr, *dev_name, *raw_data;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001172 int len, raw_len;
1173 __be32 status = nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001174
1175 naddr = &nss->u.nl4_addr;
1176 tmp_addrlen = rpc_uaddr2sockaddr(SVC_NET(rqstp), naddr->addr,
1177 naddr->addr_len,
1178 (struct sockaddr *)&tmp_addr,
1179 sizeof(tmp_addr));
1180 if (tmp_addrlen == 0)
1181 goto out_err;
1182
1183 if (tmp_addr.ss_family == AF_INET6) {
1184 startsep = "[";
1185 endsep = "]";
1186 match_netid = "tcp6";
1187 match_netid_len = 4;
1188 }
1189
1190 if (naddr->netid_len != match_netid_len ||
1191 strncmp(naddr->netid, match_netid, naddr->netid_len))
1192 goto out_err;
1193
1194 /* Construct the raw data for the vfs_kern_mount call */
1195 len = RPC_MAX_ADDRBUFLEN + 1;
1196 ipaddr = kzalloc(len, GFP_KERNEL);
1197 if (!ipaddr)
1198 goto out_err;
1199
1200 rpc_ntop((struct sockaddr *)&tmp_addr, ipaddr, len);
1201
1202 /* 2 for ipv6 endsep and startsep. 3 for ":/" and trailing '/0'*/
1203
1204 raw_len = strlen(NFSD42_INTERSSC_MOUNTOPS) + strlen(ipaddr);
1205 raw_data = kzalloc(raw_len, GFP_KERNEL);
1206 if (!raw_data)
1207 goto out_free_ipaddr;
1208
1209 snprintf(raw_data, raw_len, NFSD42_INTERSSC_MOUNTOPS, ipaddr);
1210
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001211 status = nfserr_nodev;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001212 type = get_fs_type("nfs");
1213 if (!type)
1214 goto out_free_rawdata;
1215
1216 /* Set the server:<export> for the vfs_kern_mount call */
1217 dev_name = kzalloc(len + 5, GFP_KERNEL);
1218 if (!dev_name)
1219 goto out_free_rawdata;
1220 snprintf(dev_name, len + 5, "%s%s%s:/", startsep, ipaddr, endsep);
1221
1222 /* Use an 'internal' mount: SB_KERNMOUNT -> MNT_INTERNAL */
1223 ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data);
1224 module_put(type->owner);
1225 if (IS_ERR(ss_mnt))
1226 goto out_free_devname;
1227
1228 status = 0;
1229 *mount = ss_mnt;
1230
1231out_free_devname:
1232 kfree(dev_name);
1233out_free_rawdata:
1234 kfree(raw_data);
1235out_free_ipaddr:
1236 kfree(ipaddr);
1237out_err:
1238 return status;
1239}
1240
1241static void
1242nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1243{
1244 nfs_sb_deactive(ss_mnt->mnt_sb);
1245 mntput(ss_mnt);
1246}
1247
1248/**
1249 * nfsd4_setup_inter_ssc
1250 *
1251 * Verify COPY destination stateid.
1252 * Connect to the source server with NFSv4.1.
1253 * Create the source struct file for nfsd_copy_range.
1254 * Called with COPY cstate:
1255 * SAVED_FH: source filehandle
1256 * CURRENT_FH: destination filehandle
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001257 */
1258static __be32
1259nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1260 struct nfsd4_compound_state *cstate,
1261 struct nfsd4_copy *copy, struct vfsmount **mount)
1262{
1263 struct svc_fh *s_fh = NULL;
1264 stateid_t *s_stid = &copy->cp_src_stateid;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001265 __be32 status = nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001266
1267 /* Verify the destination stateid and set dst struct file*/
1268 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1269 &copy->cp_dst_stateid,
1270 WR_STATE, &copy->nf_dst, NULL);
1271 if (status)
1272 goto out;
1273
1274 status = nfsd4_interssc_connect(&copy->cp_src, rqstp, mount);
1275 if (status)
1276 goto out;
1277
1278 s_fh = &cstate->save_fh;
1279
1280 copy->c_fh.size = s_fh->fh_handle.fh_size;
1281 memcpy(copy->c_fh.data, &s_fh->fh_handle.fh_base, copy->c_fh.size);
Olga Kornievskaia3f9544c2019-12-04 15:13:53 -05001282 copy->stateid.seqid = cpu_to_be32(s_stid->si_generation);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001283 memcpy(copy->stateid.other, (void *)&s_stid->si_opaque,
1284 sizeof(stateid_opaque_t));
1285
1286 status = 0;
1287out:
1288 return status;
1289}
1290
1291static void
1292nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1293 struct nfsd_file *dst)
1294{
1295 nfs42_ssc_close(src->nf_file);
1296 nfsd_file_put(src);
1297 nfsd_file_put(dst);
1298 mntput(ss_mnt);
1299}
1300
1301#else /* CONFIG_NFSD_V4_2_INTER_SSC */
1302
1303static __be32
1304nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1305 struct nfsd4_compound_state *cstate,
1306 struct nfsd4_copy *copy,
1307 struct vfsmount **mount)
1308{
1309 *mount = NULL;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001310 return nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001311}
1312
1313static void
1314nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1315 struct nfsd_file *dst)
1316{
1317}
1318
1319static void
1320nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1321{
1322}
1323
1324static struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1325 struct nfs_fh *src_fh,
1326 nfs4_stateid *stateid)
1327{
1328 return NULL;
1329}
1330#endif /* CONFIG_NFSD_V4_2_INTER_SSC */
1331
1332static __be32
1333nfsd4_setup_intra_ssc(struct svc_rqst *rqstp,
1334 struct nfsd4_compound_state *cstate,
1335 struct nfsd4_copy *copy)
1336{
1337 return nfsd4_verify_copy(rqstp, cstate, &copy->cp_src_stateid,
1338 &copy->nf_src, &copy->cp_dst_stateid,
1339 &copy->nf_dst);
1340}
1341
1342static void
1343nfsd4_cleanup_intra_ssc(struct nfsd_file *src, struct nfsd_file *dst)
1344{
1345 nfsd_file_put(src);
1346 nfsd_file_put(dst);
1347}
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001348
1349static void nfsd4_cb_offload_release(struct nfsd4_callback *cb)
1350{
1351 struct nfsd4_copy *copy = container_of(cb, struct nfsd4_copy, cp_cb);
1352
1353 nfs4_put_copy(copy);
1354}
1355
1356static int nfsd4_cb_offload_done(struct nfsd4_callback *cb,
1357 struct rpc_task *task)
1358{
1359 return 1;
1360}
1361
1362static const struct nfsd4_callback_ops nfsd4_cb_offload_ops = {
1363 .release = nfsd4_cb_offload_release,
1364 .done = nfsd4_cb_offload_done
1365};
1366
1367static void nfsd4_init_copy_res(struct nfsd4_copy *copy, bool sync)
1368{
1369 copy->cp_res.wr_stable_how = NFS_UNSTABLE;
1370 copy->cp_synchronous = sync;
1371 gen_boot_verifier(&copy->cp_res.wr_verifier, copy->cp_clp->net);
1372}
1373
1374static ssize_t _nfsd_copy_file_range(struct nfsd4_copy *copy)
1375{
1376 ssize_t bytes_copied = 0;
1377 size_t bytes_total = copy->cp_count;
1378 u64 src_pos = copy->cp_src_pos;
1379 u64 dst_pos = copy->cp_dst_pos;
1380
1381 do {
1382 if (kthread_should_stop())
1383 break;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001384 bytes_copied = nfsd_copy_file_range(copy->nf_src->nf_file,
1385 src_pos, copy->nf_dst->nf_file, dst_pos,
1386 bytes_total);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001387 if (bytes_copied <= 0)
1388 break;
1389 bytes_total -= bytes_copied;
1390 copy->cp_res.wr_bytes_written += bytes_copied;
1391 src_pos += bytes_copied;
1392 dst_pos += bytes_copied;
1393 } while (bytes_total > 0 && !copy->cp_synchronous);
1394 return bytes_copied;
1395}
1396
1397static __be32 nfsd4_do_copy(struct nfsd4_copy *copy, bool sync)
1398{
1399 __be32 status;
1400 ssize_t bytes;
1401
1402 bytes = _nfsd_copy_file_range(copy);
1403 /* for async copy, we ignore the error, client can always retry
1404 * to get the error
1405 */
1406 if (bytes < 0 && !copy->cp_res.wr_bytes_written)
1407 status = nfserrno(bytes);
1408 else {
1409 nfsd4_init_copy_res(copy, sync);
1410 status = nfs_ok;
1411 }
1412
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001413 if (!copy->cp_intra) /* Inter server SSC */
1414 nfsd4_cleanup_inter_ssc(copy->ss_mnt, copy->nf_src,
1415 copy->nf_dst);
1416 else
1417 nfsd4_cleanup_intra_ssc(copy->nf_src, copy->nf_dst);
1418
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001419 return status;
1420}
1421
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001422static int dup_copy_fields(struct nfsd4_copy *src, struct nfsd4_copy *dst)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001423{
1424 dst->cp_src_pos = src->cp_src_pos;
1425 dst->cp_dst_pos = src->cp_dst_pos;
1426 dst->cp_count = src->cp_count;
1427 dst->cp_synchronous = src->cp_synchronous;
1428 memcpy(&dst->cp_res, &src->cp_res, sizeof(src->cp_res));
1429 memcpy(&dst->fh, &src->fh, sizeof(src->fh));
1430 dst->cp_clp = src->cp_clp;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001431 dst->nf_dst = nfsd_file_get(src->nf_dst);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001432 dst->cp_intra = src->cp_intra;
1433 if (src->cp_intra) /* for inter, file_src doesn't exist yet */
1434 dst->nf_src = nfsd_file_get(src->nf_src);
1435
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001436 memcpy(&dst->cp_stateid, &src->cp_stateid, sizeof(src->cp_stateid));
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001437 memcpy(&dst->cp_src, &src->cp_src, sizeof(struct nl4_server));
1438 memcpy(&dst->stateid, &src->stateid, sizeof(src->stateid));
1439 memcpy(&dst->c_fh, &src->c_fh, sizeof(src->c_fh));
1440 dst->ss_mnt = src->ss_mnt;
1441
1442 return 0;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001443}
1444
1445static void cleanup_async_copy(struct nfsd4_copy *copy)
1446{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001447 nfs4_free_copy_state(copy);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001448 nfsd_file_put(copy->nf_dst);
Olga Kornievskaia2e577f02019-12-04 15:13:54 -05001449 if (copy->cp_intra)
1450 nfsd_file_put(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001451 spin_lock(&copy->cp_clp->async_lock);
1452 list_del(&copy->copies);
1453 spin_unlock(&copy->cp_clp->async_lock);
1454 nfs4_put_copy(copy);
1455}
1456
1457static int nfsd4_do_async_copy(void *data)
1458{
1459 struct nfsd4_copy *copy = (struct nfsd4_copy *)data;
1460 struct nfsd4_copy *cb_copy;
1461
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001462 if (!copy->cp_intra) { /* Inter server SSC */
1463 copy->nf_src = kzalloc(sizeof(struct nfsd_file), GFP_KERNEL);
1464 if (!copy->nf_src) {
1465 copy->nfserr = nfserr_serverfault;
1466 nfsd4_interssc_disconnect(copy->ss_mnt);
1467 goto do_callback;
1468 }
1469 copy->nf_src->nf_file = nfs42_ssc_open(copy->ss_mnt, &copy->c_fh,
1470 &copy->stateid);
1471 if (IS_ERR(copy->nf_src->nf_file)) {
1472 kfree(copy->nf_src);
1473 copy->nfserr = nfserr_offload_denied;
1474 nfsd4_interssc_disconnect(copy->ss_mnt);
1475 goto do_callback;
1476 }
1477 }
1478
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001479 copy->nfserr = nfsd4_do_copy(copy, 0);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001480do_callback:
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001481 cb_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1482 if (!cb_copy)
1483 goto out;
1484 memcpy(&cb_copy->cp_res, &copy->cp_res, sizeof(copy->cp_res));
1485 cb_copy->cp_clp = copy->cp_clp;
1486 cb_copy->nfserr = copy->nfserr;
1487 memcpy(&cb_copy->fh, &copy->fh, sizeof(copy->fh));
1488 nfsd4_init_cb(&cb_copy->cp_cb, cb_copy->cp_clp,
1489 &nfsd4_cb_offload_ops, NFSPROC4_CLNT_CB_OFFLOAD);
1490 nfsd4_run_cb(&cb_copy->cp_cb);
1491out:
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001492 if (!copy->cp_intra)
1493 kfree(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001494 cleanup_async_copy(copy);
1495 return 0;
1496}
1497
Christoph Hellwigffa01602015-12-03 12:59:52 +01001498static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001499nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001500 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001501{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001502 struct nfsd4_copy *copy = &u->copy;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001503 __be32 status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001504 struct nfsd4_copy *async_copy = NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001505
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001506 if (!copy->cp_intra) { /* Inter server SSC */
1507 if (!inter_copy_offload_enable || copy->cp_synchronous) {
1508 status = nfserr_notsupp;
1509 goto out;
1510 }
1511 status = nfsd4_setup_inter_ssc(rqstp, cstate, copy,
1512 &copy->ss_mnt);
1513 if (status)
1514 return nfserr_offload_denied;
1515 } else {
1516 status = nfsd4_setup_intra_ssc(rqstp, cstate, copy);
1517 if (status)
1518 return status;
1519 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001520
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001521 copy->cp_clp = cstate->clp;
1522 memcpy(&copy->fh, &cstate->current_fh.fh_handle,
1523 sizeof(struct knfsd_fh));
1524 if (!copy->cp_synchronous) {
1525 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001526
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001527 status = nfserrno(-ENOMEM);
1528 async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1529 if (!async_copy)
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001530 goto out_err;
1531 if (!nfs4_init_copy_state(nn, copy))
1532 goto out_err;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001533 refcount_set(&async_copy->refcount, 1);
1534 memcpy(&copy->cp_res.cb_stateid, &copy->cp_stateid,
1535 sizeof(copy->cp_stateid));
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001536 status = dup_copy_fields(copy, async_copy);
1537 if (status)
1538 goto out_err;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001539 async_copy->copy_task = kthread_create(nfsd4_do_async_copy,
1540 async_copy, "%s", "copy thread");
1541 if (IS_ERR(async_copy->copy_task))
1542 goto out_err;
1543 spin_lock(&async_copy->cp_clp->async_lock);
1544 list_add(&async_copy->copies,
1545 &async_copy->cp_clp->async_copies);
1546 spin_unlock(&async_copy->cp_clp->async_lock);
1547 wake_up_process(async_copy->copy_task);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001548 status = nfs_ok;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001549 } else {
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001550 status = nfsd4_do_copy(copy, 1);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001551 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001552out:
1553 return status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001554out_err:
Olga Kornievskaia18f428d2019-12-04 15:13:54 -05001555 if (async_copy)
1556 cleanup_async_copy(async_copy);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001557 status = nfserrno(-ENOMEM);
1558 if (!copy->cp_intra)
1559 nfsd4_interssc_disconnect(copy->ss_mnt);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001560 goto out;
1561}
1562
1563struct nfsd4_copy *
1564find_async_copy(struct nfs4_client *clp, stateid_t *stateid)
1565{
1566 struct nfsd4_copy *copy;
1567
1568 spin_lock(&clp->async_lock);
1569 list_for_each_entry(copy, &clp->async_copies, copies) {
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001570 if (memcmp(&copy->cp_stateid.stid, stateid, NFS4_STATEID_SIZE))
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001571 continue;
1572 refcount_inc(&copy->refcount);
1573 spin_unlock(&clp->async_lock);
1574 return copy;
1575 }
1576 spin_unlock(&clp->async_lock);
1577 return NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001578}
1579
1580static __be32
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001581nfsd4_offload_cancel(struct svc_rqst *rqstp,
1582 struct nfsd4_compound_state *cstate,
1583 union nfsd4_op_u *u)
1584{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001585 struct nfsd4_offload_status *os = &u->offload_status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001586 struct nfsd4_copy *copy;
1587 struct nfs4_client *clp = cstate->clp;
1588
1589 copy = find_async_copy(clp, &os->stateid);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001590 if (!copy) {
1591 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001592
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001593 return manage_cpntf_state(nn, &os->stateid, clp, NULL);
1594 } else
1595 nfsd4_stop_copy(copy);
1596
1597 return nfs_ok;
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001598}
1599
1600static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04001601nfsd4_copy_notify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1602 union nfsd4_op_u *u)
1603{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001604 struct nfsd4_copy_notify *cn = &u->copy_notify;
1605 __be32 status;
1606 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1607 struct nfs4_stid *stid;
1608 struct nfs4_cpntf_state *cps;
1609 struct nfs4_client *clp = cstate->clp;
1610
1611 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1612 &cn->cpn_src_stateid, RD_STATE, NULL,
1613 &stid);
1614 if (status)
1615 return status;
1616
1617 cn->cpn_sec = nn->nfsd4_lease;
1618 cn->cpn_nsec = 0;
1619
1620 status = nfserrno(-ENOMEM);
1621 cps = nfs4_alloc_init_cpntf_state(nn, stid);
1622 if (!cps)
1623 goto out;
1624 memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.stid, sizeof(stateid_t));
1625 memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t));
1626 memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t));
1627
1628 /* For now, only return one server address in cpn_src, the
1629 * address used by the client to connect to this server.
1630 */
1631 cn->cpn_src.nl4_type = NL4_NETADDR;
1632 status = nfsd4_set_netaddr((struct sockaddr *)&rqstp->rq_daddr,
1633 &cn->cpn_src.u.nl4_addr);
1634 WARN_ON_ONCE(status);
1635 if (status) {
1636 nfs4_put_cpntf_state(nn, cps);
1637 goto out;
1638 }
1639out:
1640 nfs4_put_stid(stid);
1641 return status;
Olga Kornievskaia51911862019-08-08 11:14:59 -04001642}
1643
1644static __be32
Anna Schumaker95d871f2014-11-07 14:44:26 -05001645nfsd4_fallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1646 struct nfsd4_fallocate *fallocate, int flags)
1647{
J. Bruce Fields0d4d6722018-11-06 17:44:03 -05001648 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001649 struct nfsd_file *nf;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001650
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001651 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001652 &fallocate->falloc_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001653 WR_STATE, &nf, NULL);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001654 if (status != nfs_ok) {
1655 dprintk("NFSD: nfsd4_fallocate: couldn't process stateid!\n");
1656 return status;
1657 }
1658
Jeff Layton5c4583b2019-08-18 14:18:54 -04001659 status = nfsd4_vfs_fallocate(rqstp, &cstate->current_fh, nf->nf_file,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001660 fallocate->falloc_offset,
1661 fallocate->falloc_length,
1662 flags);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001663 nfsd_file_put(nf);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001664 return status;
1665}
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001666static __be32
1667nfsd4_offload_status(struct svc_rqst *rqstp,
1668 struct nfsd4_compound_state *cstate,
1669 union nfsd4_op_u *u)
1670{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001671 struct nfsd4_offload_status *os = &u->offload_status;
1672 __be32 status = 0;
1673 struct nfsd4_copy *copy;
1674 struct nfs4_client *clp = cstate->clp;
1675
1676 copy = find_async_copy(clp, &os->stateid);
1677 if (copy) {
1678 os->count = copy->cp_res.wr_bytes_written;
1679 nfs4_put_copy(copy);
1680 } else
1681 status = nfserr_bad_stateid;
1682
1683 return status;
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001684}
Anna Schumaker95d871f2014-11-07 14:44:26 -05001685
1686static __be32
1687nfsd4_allocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001688 union nfsd4_op_u *u)
Anna Schumaker95d871f2014-11-07 14:44:26 -05001689{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001690 return nfsd4_fallocate(rqstp, cstate, &u->allocate, 0);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001691}
1692
1693static __be32
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001694nfsd4_deallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001695 union nfsd4_op_u *u)
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001696{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001697 return nfsd4_fallocate(rqstp, cstate, &u->deallocate,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001698 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE);
1699}
1700
1701static __be32
Anna Schumaker24bab492014-09-26 13:58:27 -04001702nfsd4_seek(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001703 union nfsd4_op_u *u)
Anna Schumaker24bab492014-09-26 13:58:27 -04001704{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001705 struct nfsd4_seek *seek = &u->seek;
Anna Schumaker24bab492014-09-26 13:58:27 -04001706 int whence;
1707 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001708 struct nfsd_file *nf;
Anna Schumaker24bab492014-09-26 13:58:27 -04001709
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001710 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker24bab492014-09-26 13:58:27 -04001711 &seek->seek_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001712 RD_STATE, &nf, NULL);
Anna Schumaker24bab492014-09-26 13:58:27 -04001713 if (status) {
1714 dprintk("NFSD: nfsd4_seek: couldn't process stateid!\n");
1715 return status;
1716 }
1717
1718 switch (seek->seek_whence) {
1719 case NFS4_CONTENT_DATA:
1720 whence = SEEK_DATA;
1721 break;
1722 case NFS4_CONTENT_HOLE:
1723 whence = SEEK_HOLE;
1724 break;
1725 default:
1726 status = nfserr_union_notsupp;
1727 goto out;
1728 }
1729
1730 /*
1731 * Note: This call does change file->f_pos, but nothing in NFSD
1732 * should ever file->f_pos.
1733 */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001734 seek->seek_pos = vfs_llseek(nf->nf_file, seek->seek_offset, whence);
Anna Schumaker24bab492014-09-26 13:58:27 -04001735 if (seek->seek_pos < 0)
1736 status = nfserrno(seek->seek_pos);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001737 else if (seek->seek_pos >= i_size_read(file_inode(nf->nf_file)))
Anna Schumaker24bab492014-09-26 13:58:27 -04001738 seek->seek_eof = true;
1739
1740out:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001741 nfsd_file_put(nf);
Anna Schumaker24bab492014-09-26 13:58:27 -04001742 return status;
1743}
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745/* This routine never returns NFS_OK! If there are no other errors, it
1746 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1747 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
1748 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1749 */
Al Virob37ad282006-10-19 23:28:59 -07001750static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001751_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001752 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Al Viro2ebbc012006-10-19 23:28:58 -07001754 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 int count;
Al Virob37ad282006-10-19 23:28:59 -07001756 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001758 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (status)
1760 return status;
1761
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001762 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1763 if (status)
1764 return status;
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1767 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1768 return nfserr_inval;
1769 if (verify->ve_attrlen & 3)
1770 return nfserr_inval;
1771
1772 /* count in words:
1773 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1774 */
1775 count = 4 + (verify->ve_attrlen >> 2);
1776 buf = kmalloc(count << 2, GFP_KERNEL);
1777 if (!buf)
J. Bruce Fields3e772462011-08-10 19:07:33 -04001778 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
J. Bruce Fields84822d02012-12-14 17:57:50 -05001780 p = buf;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001781 status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001782 cstate->current_fh.fh_export,
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001783 cstate->current_fh.fh_dentry,
1784 verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001785 rqstp, 0);
J. Bruce Fields41ae6e712013-08-21 15:32:50 -04001786 /*
1787 * If nfsd4_encode_fattr() ran out of space, assume that's because
1788 * the attributes are longer (hence different) than those given:
1789 */
J. Bruce Fields84822d02012-12-14 17:57:50 -05001790 if (status == nfserr_resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 status = nfserr_not_same;
1792 if (status)
1793 goto out_kfree;
1794
Benny Halevy95ec28c2009-04-03 08:29:08 +03001795 /* skip bitmap */
1796 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 status = nfserr_not_same;
1798 if (ntohl(*p++) != verify->ve_attrlen)
1799 goto out_kfree;
1800 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1801 status = nfserr_same;
1802
1803out_kfree:
1804 kfree(buf);
1805 return status;
1806}
1807
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001808static __be32
1809nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001810 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001811{
1812 __be32 status;
1813
Christoph Hellwigeb698532017-05-08 20:58:35 +02001814 status = _nfsd4_verify(rqstp, cstate, &u->verify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001815 return status == nfserr_not_same ? nfs_ok : status;
1816}
1817
1818static __be32
1819nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001820 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001821{
1822 __be32 status;
1823
Christoph Hellwigeb698532017-05-08 20:58:35 +02001824 status = _nfsd4_verify(rqstp, cstate, &u->nverify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001825 return status == nfserr_same ? nfs_ok : status;
1826}
1827
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001828#ifdef CONFIG_NFSD_PNFS
1829static const struct nfsd4_layout_ops *
1830nfsd4_layout_verify(struct svc_export *exp, unsigned int layout_type)
1831{
Jeff Layton8a4c3922016-07-10 15:55:58 -04001832 if (!exp->ex_layout_types) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001833 dprintk("%s: export does not support pNFS\n", __func__);
1834 return NULL;
1835 }
1836
Ari Kauppib550a322017-05-05 16:07:55 -04001837 if (layout_type >= LAYOUT_TYPE_MAX ||
1838 !(exp->ex_layout_types & (1 << layout_type))) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001839 dprintk("%s: layout type %d not supported\n",
1840 __func__, layout_type);
1841 return NULL;
1842 }
1843
1844 return nfsd4_layout_ops[layout_type];
1845}
1846
1847static __be32
1848nfsd4_getdeviceinfo(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001849 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001850{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001851 struct nfsd4_getdeviceinfo *gdp = &u->getdeviceinfo;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001852 const struct nfsd4_layout_ops *ops;
1853 struct nfsd4_deviceid_map *map;
1854 struct svc_export *exp;
1855 __be32 nfserr;
1856
1857 dprintk("%s: layout_type %u dev_id [0x%llx:0x%x] maxcnt %u\n",
1858 __func__,
1859 gdp->gd_layout_type,
1860 gdp->gd_devid.fsid_idx, gdp->gd_devid.generation,
1861 gdp->gd_maxcount);
1862
1863 map = nfsd4_find_devid_map(gdp->gd_devid.fsid_idx);
1864 if (!map) {
1865 dprintk("%s: couldn't find device ID to export mapping!\n",
1866 __func__);
1867 return nfserr_noent;
1868 }
1869
1870 exp = rqst_exp_find(rqstp, map->fsid_type, map->fsid);
1871 if (IS_ERR(exp)) {
1872 dprintk("%s: could not find device id\n", __func__);
1873 return nfserr_noent;
1874 }
1875
1876 nfserr = nfserr_layoutunavailable;
1877 ops = nfsd4_layout_verify(exp, gdp->gd_layout_type);
1878 if (!ops)
1879 goto out;
1880
1881 nfserr = nfs_ok;
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01001882 if (gdp->gd_maxcount != 0) {
1883 nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb,
Tom Haynesd7c920d2016-06-14 13:41:27 -07001884 rqstp, cstate->session->se_client, gdp);
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01001885 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001886
1887 gdp->gd_notify_types &= ops->notify_types;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001888out:
Kinglong Meea1420382015-03-15 23:12:15 +08001889 exp_put(exp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001890 return nfserr;
1891}
1892
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04001893static void
1894nfsd4_getdeviceinfo_release(union nfsd4_op_u *u)
1895{
1896 kfree(u->getdeviceinfo.gd_device);
1897}
1898
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001899static __be32
1900nfsd4_layoutget(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001901 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001902{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001903 struct nfsd4_layoutget *lgp = &u->layoutget;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001904 struct svc_fh *current_fh = &cstate->current_fh;
1905 const struct nfsd4_layout_ops *ops;
1906 struct nfs4_layout_stateid *ls;
1907 __be32 nfserr;
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001908 int accmode = NFSD_MAY_READ_IF_EXEC;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001909
1910 switch (lgp->lg_seg.iomode) {
1911 case IOMODE_READ:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001912 accmode |= NFSD_MAY_READ;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001913 break;
1914 case IOMODE_RW:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001915 accmode |= NFSD_MAY_READ | NFSD_MAY_WRITE;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001916 break;
1917 default:
1918 dprintk("%s: invalid iomode %d\n",
1919 __func__, lgp->lg_seg.iomode);
1920 nfserr = nfserr_badiomode;
1921 goto out;
1922 }
1923
1924 nfserr = fh_verify(rqstp, current_fh, 0, accmode);
1925 if (nfserr)
1926 goto out;
1927
1928 nfserr = nfserr_layoutunavailable;
1929 ops = nfsd4_layout_verify(current_fh->fh_export, lgp->lg_layout_type);
1930 if (!ops)
1931 goto out;
1932
1933 /*
1934 * Verify minlength and range as per RFC5661:
1935 * o If loga_length is less than loga_minlength,
1936 * the metadata server MUST return NFS4ERR_INVAL.
1937 * o If the sum of loga_offset and loga_minlength exceeds
1938 * NFS4_UINT64_MAX, and loga_minlength is not
1939 * NFS4_UINT64_MAX, the error NFS4ERR_INVAL MUST result.
1940 * o If the sum of loga_offset and loga_length exceeds
1941 * NFS4_UINT64_MAX, and loga_length is not NFS4_UINT64_MAX,
1942 * the error NFS4ERR_INVAL MUST result.
1943 */
1944 nfserr = nfserr_inval;
1945 if (lgp->lg_seg.length < lgp->lg_minlength ||
1946 (lgp->lg_minlength != NFS4_MAX_UINT64 &&
1947 lgp->lg_minlength > NFS4_MAX_UINT64 - lgp->lg_seg.offset) ||
1948 (lgp->lg_seg.length != NFS4_MAX_UINT64 &&
1949 lgp->lg_seg.length > NFS4_MAX_UINT64 - lgp->lg_seg.offset))
1950 goto out;
1951 if (lgp->lg_seg.length == 0)
1952 goto out;
1953
1954 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lgp->lg_sid,
1955 true, lgp->lg_layout_type, &ls);
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05001956 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04001957 trace_nfsd_layout_get_lookup_fail(&lgp->lg_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001958 goto out;
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05001959 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001960
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02001961 nfserr = nfserr_recallconflict;
1962 if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls))
1963 goto out_put_stid;
1964
David Howells2b0143b2015-03-17 22:25:59 +00001965 nfserr = ops->proc_layoutget(d_inode(current_fh->fh_dentry),
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001966 current_fh, lgp);
1967 if (nfserr)
1968 goto out_put_stid;
1969
1970 nfserr = nfsd4_insert_layout(lgp, ls);
1971
1972out_put_stid:
Jeff Laytoncc8a5532015-09-17 07:58:24 -04001973 mutex_unlock(&ls->ls_mutex);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001974 nfs4_put_stid(&ls->ls_stid);
1975out:
1976 return nfserr;
1977}
1978
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04001979static void
1980nfsd4_layoutget_release(union nfsd4_op_u *u)
1981{
1982 kfree(u->layoutget.lg_content);
1983}
1984
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001985static __be32
1986nfsd4_layoutcommit(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001987 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001988{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001989 struct nfsd4_layoutcommit *lcp = &u->layoutcommit;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001990 const struct nfsd4_layout_seg *seg = &lcp->lc_seg;
1991 struct svc_fh *current_fh = &cstate->current_fh;
1992 const struct nfsd4_layout_ops *ops;
1993 loff_t new_size = lcp->lc_last_wr + 1;
1994 struct inode *inode;
1995 struct nfs4_layout_stateid *ls;
1996 __be32 nfserr;
1997
1998 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE);
1999 if (nfserr)
2000 goto out;
2001
2002 nfserr = nfserr_layoutunavailable;
2003 ops = nfsd4_layout_verify(current_fh->fh_export, lcp->lc_layout_type);
2004 if (!ops)
2005 goto out;
David Howells2b0143b2015-03-17 22:25:59 +00002006 inode = d_inode(current_fh->fh_dentry);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002007
2008 nfserr = nfserr_inval;
2009 if (new_size <= seg->offset) {
2010 dprintk("pnfsd: last write before layout segment\n");
2011 goto out;
2012 }
2013 if (new_size > seg->offset + seg->length) {
2014 dprintk("pnfsd: last write beyond layout segment\n");
2015 goto out;
2016 }
2017 if (!lcp->lc_newoffset && new_size > i_size_read(inode)) {
2018 dprintk("pnfsd: layoutcommit beyond EOF\n");
2019 goto out;
2020 }
2021
2022 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lcp->lc_sid,
2023 false, lcp->lc_layout_type,
2024 &ls);
2025 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04002026 trace_nfsd_layout_commit_lookup_fail(&lcp->lc_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002027 /* fixup error code as per RFC5661 */
2028 if (nfserr == nfserr_bad_stateid)
2029 nfserr = nfserr_badlayout;
2030 goto out;
2031 }
2032
Jeff Laytoncc8a5532015-09-17 07:58:24 -04002033 /* LAYOUTCOMMIT does not require any serialization */
2034 mutex_unlock(&ls->ls_mutex);
2035
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002036 if (new_size > i_size_read(inode)) {
2037 lcp->lc_size_chg = 1;
2038 lcp->lc_newsize = new_size;
2039 } else {
2040 lcp->lc_size_chg = 0;
2041 }
2042
Kinglong Meed8398fc2015-07-07 10:12:03 +08002043 nfserr = ops->proc_layoutcommit(inode, lcp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002044 nfs4_put_stid(&ls->ls_stid);
2045out:
2046 return nfserr;
2047}
2048
2049static __be32
2050nfsd4_layoutreturn(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002051 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002052{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002053 struct nfsd4_layoutreturn *lrp = &u->layoutreturn;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002054 struct svc_fh *current_fh = &cstate->current_fh;
2055 __be32 nfserr;
2056
2057 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_NOP);
2058 if (nfserr)
2059 goto out;
2060
2061 nfserr = nfserr_layoutunavailable;
2062 if (!nfsd4_layout_verify(current_fh->fh_export, lrp->lr_layout_type))
2063 goto out;
2064
2065 switch (lrp->lr_seg.iomode) {
2066 case IOMODE_READ:
2067 case IOMODE_RW:
2068 case IOMODE_ANY:
2069 break;
2070 default:
2071 dprintk("%s: invalid iomode %d\n", __func__,
2072 lrp->lr_seg.iomode);
2073 nfserr = nfserr_inval;
2074 goto out;
2075 }
2076
2077 switch (lrp->lr_return_type) {
2078 case RETURN_FILE:
2079 nfserr = nfsd4_return_file_layouts(rqstp, cstate, lrp);
2080 break;
2081 case RETURN_FSID:
2082 case RETURN_ALL:
2083 nfserr = nfsd4_return_client_layouts(rqstp, cstate, lrp);
2084 break;
2085 default:
2086 dprintk("%s: invalid return_type %d\n", __func__,
2087 lrp->lr_return_type);
2088 nfserr = nfserr_inval;
2089 break;
2090 }
2091out:
2092 return nfserr;
2093}
2094#endif /* CONFIG_NFSD_PNFS */
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096/*
2097 * NULL call.
2098 */
Al Viro7111c662006-10-19 23:28:45 -07002099static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002100nfsd4_proc_null(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 return nfs_ok;
2103}
2104
Shankar Anande2b20952006-07-10 04:45:44 -07002105static inline void nfsd4_increment_op_stats(u32 opnum)
2106{
2107 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
2108 nfsdstats.nfs4_opcount[opnum]++;
2109}
2110
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002111static const struct nfsd4_operation nfsd4_ops[];
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002112
Adrian Bunkf1c7f792008-08-08 19:26:42 +03002113static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +03002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115/*
J. Bruce Fields57716352010-04-21 12:27:19 -04002116 * Enforce NFSv4.1 COMPOUND ordering rules:
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002117 *
J. Bruce Fields57716352010-04-21 12:27:19 -04002118 * Also note, enforced elsewhere:
2119 * - SEQUENCE other than as first op results in
2120 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002121 * - BIND_CONN_TO_SESSION must be the only op in its compound.
2122 * (Enforced in nfsd4_bind_conn_to_session().)
J. Bruce Fields57716352010-04-21 12:27:19 -04002123 * - DESTROY_SESSION must be the final operation in a compound, if
2124 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
2125 * (Enforced in nfsd4_destroy_session().)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002126 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002127static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002128{
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002129 struct nfsd4_op *first_op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002130
2131 /* These ordering requirements don't apply to NFSv4.0: */
2132 if (args->minorversion == 0)
2133 return nfs_ok;
2134 /* This is weird, but OK, not our problem: */
2135 if (args->opcnt == 0)
2136 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002137 if (first_op->status == nfserr_op_illegal)
J. Bruce Fields57716352010-04-21 12:27:19 -04002138 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002139 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
J. Bruce Fields57716352010-04-21 12:27:19 -04002140 return nfserr_op_not_in_session;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002141 if (first_op->opnum == OP_SEQUENCE)
J. Bruce Fields57716352010-04-21 12:27:19 -04002142 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002143 /*
2144 * So first_op is something allowed outside a session, like
2145 * EXCHANGE_ID; but then it has to be the only op in the
2146 * compound:
2147 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002148 if (args->opcnt != 1)
2149 return nfserr_not_only_op;
2150 return nfs_ok;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002151}
2152
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002153const struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
J. Bruce Fields22b03212011-04-09 11:23:24 -04002154{
2155 return &nfsd4_ops[op->opnum];
2156}
2157
J. Bruce Fields10910062011-01-24 12:11:02 -05002158bool nfsd4_cache_this_op(struct nfsd4_op *op)
2159{
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04002160 if (op->opnum == OP_ILLEGAL)
2161 return false;
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002162 return OPDESC(op)->op_flags & OP_CACHEME;
J. Bruce Fields10910062011-01-24 12:11:02 -05002163}
2164
J. Bruce Fields68d93182011-04-08 17:00:50 -04002165static bool need_wrongsec_check(struct svc_rqst *rqstp)
2166{
2167 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2168 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
2169 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
2170 struct nfsd4_op *next = &argp->ops[resp->opcnt];
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002171 const struct nfsd4_operation *thisd = OPDESC(this);
2172 const struct nfsd4_operation *nextd;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002173
J. Bruce Fields68d93182011-04-08 17:00:50 -04002174 /*
2175 * Most ops check wronsec on our own; only the putfh-like ops
2176 * have special rules.
2177 */
2178 if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
2179 return false;
2180 /*
2181 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
2182 * put-filehandle operation if we're not going to use the
2183 * result:
2184 */
2185 if (argp->opcnt == resp->opcnt)
2186 return false;
J. Bruce Fields51904b02014-10-22 14:46:29 -04002187 if (next->opnum == OP_ILLEGAL)
2188 return false;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002189 nextd = OPDESC(next);
2190 /*
2191 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
2192 * errors themselves as necessary; others should check for them
2193 * now:
2194 */
2195 return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
2196}
2197
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002198static void svcxdr_init_encode(struct svc_rqst *rqstp,
2199 struct nfsd4_compoundres *resp)
2200{
2201 struct xdr_stream *xdr = &resp->xdr;
2202 struct xdr_buf *buf = &rqstp->rq_res;
2203 struct kvec *head = buf->head;
2204
2205 xdr->buf = buf;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002206 xdr->iov = head;
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002207 xdr->p = head->iov_base + head->iov_len;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002208 xdr->end = head->iov_base + PAGE_SIZE - rqstp->rq_auth_slack;
J. Bruce Fields6ac90392014-02-26 17:39:35 -05002209 /* Tail and page_len should be zero at this point: */
2210 buf->len = buf->head[0].iov_len;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002211 xdr->scratch.iov_len = 0;
J. Bruce Fields05638dc2014-06-02 12:05:47 -04002212 xdr->page_ptr = buf->pages - 1;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002213 buf->buflen = PAGE_SIZE * (1 + rqstp->rq_page_end - buf->pages)
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002214 - rqstp->rq_auth_slack;
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002215}
2216
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002217#ifdef CONFIG_NFSD_V4_2_INTER_SSC
2218static void
2219check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2220{
2221 struct nfsd4_op *op, *current_op = NULL, *saved_op = NULL;
2222 struct nfsd4_copy *copy;
2223 struct nfsd4_putfh *putfh;
2224 int i;
2225
2226 /* traverse all operation and if it's a COPY compound, mark the
2227 * source filehandle to skip verification
2228 */
2229 for (i = 0; i < args->opcnt; i++) {
2230 op = &args->ops[i];
2231 if (op->opnum == OP_PUTFH)
2232 current_op = op;
2233 else if (op->opnum == OP_SAVEFH)
2234 saved_op = current_op;
2235 else if (op->opnum == OP_RESTOREFH)
2236 current_op = saved_op;
2237 else if (op->opnum == OP_COPY) {
2238 copy = (struct nfsd4_copy *)&op->u;
2239 if (!saved_op) {
2240 op->status = nfserr_nofilehandle;
2241 return;
2242 }
2243 putfh = (struct nfsd4_putfh *)&saved_op->u;
2244 if (!copy->cp_intra)
2245 putfh->no_verify = true;
2246 }
2247 }
2248}
2249#else
2250static void
2251check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2252{
2253}
2254#endif
2255
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002256/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 * COMPOUND call.
2258 */
Al Viro7111c662006-10-19 23:28:45 -07002259static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002260nfsd4_proc_compound(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002262 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2263 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 struct nfsd4_op *op;
Andy Adamsone354d572009-03-28 11:30:52 +03002265 struct nfsd4_compound_state *cstate = &resp->cstate;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002266 struct svc_fh *current_fh = &cstate->current_fh;
2267 struct svc_fh *save_fh = &cstate->save_fh;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002268 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Al Virob37ad282006-10-19 23:28:59 -07002269 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002271 svcxdr_init_encode(rqstp, resp);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002272 resp->tagp = resp->xdr.p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 /* reserve space for: taglen, tag, and opcnt */
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05002274 xdr_reserve_space(&resp->xdr, 8 + args->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 resp->taglen = args->taglen;
2276 resp->tag = args->tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 resp->rqstp = rqstp;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002278 cstate->minorversion = args->minorversion;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002279 fh_init(current_fh, NFS4_FHSIZE);
2280 fh_init(save_fh, NFS4_FHSIZE);
NeilBrown8ff30fa2010-08-12 17:04:07 +10002281 /*
2282 * Don't use the deferral mechanism for NFSv4; compounds make it
2283 * too hard to avoid non-idempotency problems.
2284 */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002285 clear_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /*
2288 * According to RFC3010, this takes precedence over all other errors.
2289 */
2290 status = nfserr_minor_vers_mismatch;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002291 if (nfsd_minorversion(nn, args->minorversion, NFSD_TEST) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 goto out;
J. Bruce Fields00781172017-11-15 12:30:27 -05002293 status = nfserr_resource;
2294 if (args->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
2295 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
J. Bruce Fields57716352010-04-21 12:27:19 -04002297 status = nfs41_check_op_ordering(args);
2298 if (status) {
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002299 op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002300 op->status = status;
J. Bruce Fields5b7b15ae2018-06-13 15:21:35 -04002301 resp->opcnt = 1;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002302 goto encode_op;
2303 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002304 check_if_stalefh_allowed(args);
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002305
Chuck Leverfff40802018-03-27 10:53:54 -04002306 trace_nfsd_compound(rqstp, args->opcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 while (!status && resp->opcnt < args->opcnt) {
2308 op = &args->ops[resp->opcnt++];
2309
2310 /*
2311 * The XDR decode routines may have pre-set op->status;
2312 * for example, if there is a miscellaneous XDR error
2313 * it will be set to nfserr_bad_xdr.
2314 */
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002315 if (op->status) {
2316 if (op->opnum == OP_OPEN)
2317 op->status = nfsd4_open_omfg(rqstp, cstate, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 goto encode_op;
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002319 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002320 if (!current_fh->fh_dentry &&
2321 !HAS_FH_FLAG(current_fh, NFSD4_FH_FOREIGN)) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002322 if (!(op->opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002323 op->status = nfserr_nofilehandle;
2324 goto encode_op;
2325 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002326 } else if (current_fh->fh_export &&
2327 current_fh->fh_export->ex_fslocs.migrated &&
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002328 !(op->opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002329 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 goto encode_op;
2331 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002332
Kinglong Mee23367452014-03-29 10:23:47 +08002333 fh_clear_wcc(current_fh);
2334
Mi Jinlong58e7b332011-08-28 18:18:56 +08002335 /* If op is non-idempotent */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002336 if (op->opdesc->op_flags & OP_MODIFIES_SOMETHING) {
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002337 /*
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002338 * Don't execute this op if we couldn't encode a
2339 * succesful reply:
2340 */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002341 u32 plen = op->opdesc->op_rsize_bop(rqstp, op);
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002342 /*
2343 * Plus if there's another operation, make sure
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002344 * we'll have space to at least encode an error:
2345 */
2346 if (resp->opcnt < args->opcnt)
2347 plen += COMPOUND_ERR_SLACK_SPACE;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002348 op->status = nfsd4_check_resp_size(resp, plen);
2349 }
2350
2351 if (op->status)
2352 goto encode_op;
2353
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002354 if (op->opdesc->op_get_currentstateid)
2355 op->opdesc->op_get_currentstateid(cstate, &op->u);
2356 op->status = op->opdesc->op_func(rqstp, cstate, &op->u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
J. Bruce Fields9a307402017-05-23 12:24:40 -04002358 /* Only from SEQUENCE */
2359 if (cstate->status == nfserr_replay_cache) {
2360 dprintk("%s NFS4.1 replay from cache\n", __func__);
2361 status = op->status;
2362 goto out;
2363 }
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002364 if (!op->status) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002365 if (op->opdesc->op_set_currentstateid)
2366 op->opdesc->op_set_currentstateid(cstate, &op->u);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002367
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002368 if (op->opdesc->op_flags & OP_CLEAR_STATEID)
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01002369 clear_current_stateid(cstate);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002370
J. Bruce Fieldsd781e3d2019-12-06 16:07:32 -05002371 if (current_fh->fh_export &&
2372 need_wrongsec_check(rqstp))
Kinglong Mee4daeed22014-03-26 17:10:37 +08002373 op->status = check_nfsd_access(current_fh->fh_export, rqstp);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375encode_op:
Al Viroa90b0612006-10-19 23:29:03 -07002376 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002377 op->replay = &cstate->replay_owner->so_replay;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002378 nfsd4_encode_replay(&resp->xdr, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 status = op->status = op->replay->rp_status;
2380 } else {
2381 nfsd4_encode_operation(resp, op);
2382 status = op->status;
2383 }
Benny Halevy04077172008-12-15 19:40:49 +02002384
Chuck Leverfff40802018-03-27 10:53:54 -04002385 trace_nfsd_compound_status(args->opcnt, resp->opcnt, status,
2386 nfsd4_op_name(op->opnum));
Benny Halevy04077172008-12-15 19:40:49 +02002387
Jeff Layton58fb12e2014-07-29 21:34:27 -04002388 nfsd4_cstate_clear_replay(cstate);
Shankar Anande2b20952006-07-10 04:45:44 -07002389 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 }
2391
Kinglong Mee4daeed22014-03-26 17:10:37 +08002392 cstate->status = status;
2393 fh_put(current_fh);
2394 fh_put(save_fh);
2395 BUG_ON(cstate->replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396out:
Andy Adamson2f425872009-04-03 08:27:32 +03002397 /* Reset deferral mechanism for RPC deferrals */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002398 set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
J. Bruce Fields3b12cd92008-05-05 17:17:44 -04002399 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return status;
2401}
2402
Mi Jinlong58e7b332011-08-28 18:18:56 +08002403#define op_encode_hdr_size (2)
2404#define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
2405#define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
2406#define op_encode_change_info_maxsz (5)
2407#define nfs4_fattr_bitmap_maxsz (4)
2408
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002409/* We'll fall back on returning no lockowner if run out of space: */
2410#define op_encode_lockowner_maxsz (0)
Mi Jinlong58e7b332011-08-28 18:18:56 +08002411#define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
2412
2413#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
2414
2415#define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
2416#define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
2417 op_encode_ace_maxsz)
2418
2419#define op_encode_channel_attrs_maxsz (6 + 1 + 1)
2420
2421static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2422{
2423 return (op_encode_hdr_size) * sizeof(__be32);
2424}
2425
2426static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2427{
2428 return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
2429}
2430
Kinglong Mee2282cd22017-02-03 22:36:00 +08002431static inline u32 nfsd4_access_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2432{
2433 /* ac_supported, ac_resp_access */
2434 return (op_encode_hdr_size + 2)* sizeof(__be32);
2435}
2436
Mi Jinlong58e7b332011-08-28 18:18:56 +08002437static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2438{
2439 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
2440}
2441
2442static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2443{
2444 return (op_encode_hdr_size + op_encode_change_info_maxsz
2445 + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2446}
2447
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002448/*
2449 * Note since this is an idempotent operation we won't insist on failing
2450 * the op prematurely if the estimate is too large. We may turn off splice
2451 * reads unnecessarily.
2452 */
2453static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp,
2454 struct nfsd4_op *op)
2455{
2456 u32 *bmap = op->u.getattr.ga_bmval;
2457 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
2458 u32 ret = 0;
2459
2460 if (bmap0 & FATTR4_WORD0_ACL)
2461 return svc_max_payload(rqstp);
2462 if (bmap0 & FATTR4_WORD0_FS_LOCATIONS)
2463 return svc_max_payload(rqstp);
2464
2465 if (bmap1 & FATTR4_WORD1_OWNER) {
2466 ret += IDMAP_NAMESZ + 4;
2467 bmap1 &= ~FATTR4_WORD1_OWNER;
2468 }
2469 if (bmap1 & FATTR4_WORD1_OWNER_GROUP) {
2470 ret += IDMAP_NAMESZ + 4;
2471 bmap1 &= ~FATTR4_WORD1_OWNER_GROUP;
2472 }
2473 if (bmap0 & FATTR4_WORD0_FILEHANDLE) {
2474 ret += NFS4_FHSIZE + 4;
2475 bmap0 &= ~FATTR4_WORD0_FILEHANDLE;
2476 }
2477 if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) {
Kinglong Mee1ec8c0c2015-03-28 23:46:09 +08002478 ret += NFS4_MAXLABELLEN + 12;
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002479 bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2480 }
2481 /*
2482 * Largest of remaining attributes are 16 bytes (e.g.,
2483 * supported_attributes)
2484 */
2485 ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2));
2486 /* bitmask, length */
2487 ret += 20;
2488 return ret;
2489}
2490
Kinglong Mee2282cd22017-02-03 22:36:00 +08002491static inline u32 nfsd4_getfh_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2492{
2493 return (op_encode_hdr_size + 1) * sizeof(__be32) + NFS4_FHSIZE;
2494}
2495
Mi Jinlong58e7b332011-08-28 18:18:56 +08002496static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2497{
2498 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2499 * sizeof(__be32);
2500}
2501
2502static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2503{
2504 return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
2505 * sizeof(__be32);
2506}
2507
2508static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2509{
2510 return (op_encode_hdr_size + op_encode_stateid_maxsz
2511 + op_encode_change_info_maxsz + 1
2512 + nfs4_fattr_bitmap_maxsz
2513 + op_encode_delegation_maxsz) * sizeof(__be32);
2514}
2515
2516static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2517{
2518 u32 maxcount = 0, rlen = 0;
2519
2520 maxcount = svc_max_payload(rqstp);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002521 rlen = min(op->u.read.rd_length, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002522
J. Bruce Fields622f5602014-05-16 14:38:20 -04002523 return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002524}
2525
2526static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2527{
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002528 u32 maxcount = 0, rlen = 0;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002529
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002530 maxcount = svc_max_payload(rqstp);
2531 rlen = min(op->u.readdir.rd_maxcount, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002532
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002533 return (op_encode_hdr_size + op_encode_verifier_maxsz +
2534 XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002535}
2536
Kinglong Mee2282cd22017-02-03 22:36:00 +08002537static inline u32 nfsd4_readlink_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2538{
2539 return (op_encode_hdr_size + 1) * sizeof(__be32) + PAGE_SIZE;
2540}
2541
Mi Jinlong58e7b332011-08-28 18:18:56 +08002542static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2543{
2544 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2545 * sizeof(__be32);
2546}
2547
2548static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2549{
2550 return (op_encode_hdr_size + op_encode_change_info_maxsz
2551 + op_encode_change_info_maxsz) * sizeof(__be32);
2552}
2553
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002554static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp,
2555 struct nfsd4_op *op)
2556{
J. Bruce Fieldsd1d84c92014-08-21 15:04:31 -04002557 return (op_encode_hdr_size
2558 + XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5) * sizeof(__be32);
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002559}
2560
Kinglong Mee2282cd22017-02-03 22:36:00 +08002561static inline u32 nfsd4_test_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2562{
2563 return (op_encode_hdr_size + 1 + op->u.test_stateid.ts_num_ids)
2564 * sizeof(__be32);
2565}
2566
Mi Jinlong58e7b332011-08-28 18:18:56 +08002567static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2568{
2569 return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2570}
2571
Kinglong Mee2282cd22017-02-03 22:36:00 +08002572static inline u32 nfsd4_secinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2573{
2574 return (op_encode_hdr_size + RPC_AUTH_MAXFLAVOR *
2575 (4 + XDR_QUADLEN(GSS_OID_MAX_LEN))) * sizeof(__be32);
2576}
2577
Mi Jinlong58e7b332011-08-28 18:18:56 +08002578static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2579{
J. Bruce Fields480efae2014-03-10 14:17:55 -04002580 return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) *
2581 sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002582}
2583
2584static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2585{
J. Bruce Fieldsf34e4322014-05-16 21:24:56 -04002586 return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002587}
2588
2589static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2590{
2591 return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
Kinglong Meea8bb84b2013-12-10 15:24:36 +08002592 1 + 1 + /* eir_flags, spr_how */\
2593 4 + /* spo_must_enforce & _allow with bitmap */\
Mi Jinlong58e7b332011-08-28 18:18:56 +08002594 2 + /*eir_server_owner.so_minor_id */\
2595 /* eir_server_owner.so_major_id<> */\
2596 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2597 /* eir_server_scope<> */\
2598 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2599 1 + /* eir_server_impl_id array length */\
2600 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
2601}
2602
2603static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2604{
2605 return (op_encode_hdr_size + \
2606 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
2607 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
2608}
2609
2610static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2611{
2612 return (op_encode_hdr_size + \
2613 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
2614 2 + /* csr_sequence, csr_flags */\
2615 op_encode_channel_attrs_maxsz + \
2616 op_encode_channel_attrs_maxsz) * sizeof(__be32);
2617}
2618
Anna Schumaker29ae7f92016-09-07 15:57:30 -04002619static inline u32 nfsd4_copy_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2620{
2621 return (op_encode_hdr_size +
2622 1 /* wr_callback */ +
2623 op_encode_stateid_maxsz /* wr_callback */ +
2624 2 /* wr_count */ +
2625 1 /* wr_committed */ +
2626 op_encode_verifier_maxsz +
2627 1 /* cr_consecutive */ +
2628 1 /* cr_synchronous */) * sizeof(__be32);
2629}
2630
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04002631static inline u32 nfsd4_offload_status_rsize(struct svc_rqst *rqstp,
2632 struct nfsd4_op *op)
2633{
2634 return (op_encode_hdr_size +
2635 2 /* osr_count */ +
2636 1 /* osr_complete<1> optional 0 for now */) * sizeof(__be32);
2637}
2638
Olga Kornievskaia51911862019-08-08 11:14:59 -04002639static inline u32 nfsd4_copy_notify_rsize(struct svc_rqst *rqstp,
2640 struct nfsd4_op *op)
2641{
2642 return (op_encode_hdr_size +
2643 3 /* cnr_lease_time */ +
2644 1 /* We support one cnr_source_server */ +
2645 1 /* cnr_stateid seq */ +
2646 op_encode_stateid_maxsz /* cnr_stateid */ +
2647 1 /* num cnr_source_server*/ +
2648 1 /* nl4_type */ +
2649 1 /* nl4 size */ +
2650 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) /*nl4_loc + nl4_loc_sz */)
2651 * sizeof(__be32);
2652}
2653
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002654#ifdef CONFIG_NFSD_PNFS
Kinglong Mee2282cd22017-02-03 22:36:00 +08002655static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2656{
2657 u32 maxcount = 0, rlen = 0;
2658
2659 maxcount = svc_max_payload(rqstp);
2660 rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount);
2661
2662 return (op_encode_hdr_size +
2663 1 /* gd_layout_type*/ +
2664 XDR_QUADLEN(rlen) +
2665 2 /* gd_notify_types */) * sizeof(__be32);
2666}
2667
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002668/*
2669 * At this stage we don't really know what layout driver will handle the request,
2670 * so we need to define an arbitrary upper bound here.
2671 */
2672#define MAX_LAYOUT_SIZE 128
2673static inline u32 nfsd4_layoutget_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2674{
2675 return (op_encode_hdr_size +
2676 1 /* logr_return_on_close */ +
2677 op_encode_stateid_maxsz +
2678 1 /* nr of layouts */ +
2679 MAX_LAYOUT_SIZE) * sizeof(__be32);
2680}
2681
2682static inline u32 nfsd4_layoutcommit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2683{
2684 return (op_encode_hdr_size +
2685 1 /* locr_newsize */ +
2686 2 /* ns_size */) * sizeof(__be32);
2687}
2688
2689static inline u32 nfsd4_layoutreturn_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2690{
2691 return (op_encode_hdr_size +
2692 1 /* lrs_stateid */ +
2693 op_encode_stateid_maxsz) * sizeof(__be32);
2694}
2695#endif /* CONFIG_NFSD_PNFS */
2696
Kinglong Mee2282cd22017-02-03 22:36:00 +08002697
2698static inline u32 nfsd4_seek_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2699{
2700 return (op_encode_hdr_size + 3) * sizeof(__be32);
2701}
2702
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002703static const struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002704 [OP_ACCESS] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002705 .op_func = nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002706 .op_name = "OP_ACCESS",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002707 .op_rsize_bop = nfsd4_access_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002708 },
2709 [OP_CLOSE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002710 .op_func = nfsd4_close,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002711 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002712 .op_name = "OP_CLOSE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002713 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002714 .op_get_currentstateid = nfsd4_get_closestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002715 .op_set_currentstateid = nfsd4_set_closestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002716 },
2717 [OP_COMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002718 .op_func = nfsd4_commit,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002719 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002720 .op_name = "OP_COMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002721 .op_rsize_bop = nfsd4_commit_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002722 },
2723 [OP_CREATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002724 .op_func = nfsd4_create,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002725 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002726 .op_name = "OP_CREATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002727 .op_rsize_bop = nfsd4_create_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002728 },
2729 [OP_DELEGRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002730 .op_func = nfsd4_delegreturn,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002731 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002732 .op_name = "OP_DELEGRETURN",
Mi Jinlong58e7b332011-08-28 18:18:56 +08002733 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002734 .op_get_currentstateid = nfsd4_get_delegreturnstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002735 },
2736 [OP_GETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002737 .op_func = nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002738 .op_flags = ALLOWED_ON_ABSENT_FS,
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002739 .op_rsize_bop = nfsd4_getattr_rsize,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002740 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002741 },
2742 [OP_GETFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002743 .op_func = nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002744 .op_name = "OP_GETFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002745 .op_rsize_bop = nfsd4_getfh_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002746 },
2747 [OP_LINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002748 .op_func = nfsd4_link,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002749 .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
2750 | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002751 .op_name = "OP_LINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002752 .op_rsize_bop = nfsd4_link_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002753 },
2754 [OP_LOCK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002755 .op_func = nfsd4_lock,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002756 .op_flags = OP_MODIFIES_SOMETHING |
2757 OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002758 .op_name = "OP_LOCK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002759 .op_rsize_bop = nfsd4_lock_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002760 .op_set_currentstateid = nfsd4_set_lockstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002761 },
2762 [OP_LOCKT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002763 .op_func = nfsd4_lockt,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002764 .op_flags = OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002765 .op_name = "OP_LOCKT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002766 .op_rsize_bop = nfsd4_lock_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002767 },
2768 [OP_LOCKU] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002769 .op_func = nfsd4_locku,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002770 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002771 .op_name = "OP_LOCKU",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002772 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002773 .op_get_currentstateid = nfsd4_get_lockustateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002774 },
2775 [OP_LOOKUP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002776 .op_func = nfsd4_lookup,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002777 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002778 .op_name = "OP_LOOKUP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002779 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002780 },
2781 [OP_LOOKUPP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002782 .op_func = nfsd4_lookupp,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002783 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002784 .op_name = "OP_LOOKUPP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002785 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002786 },
2787 [OP_NVERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002788 .op_func = nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002789 .op_name = "OP_NVERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002790 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002791 },
2792 [OP_OPEN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002793 .op_func = nfsd4_open,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002794 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002795 .op_name = "OP_OPEN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002796 .op_rsize_bop = nfsd4_open_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002797 .op_set_currentstateid = nfsd4_set_openstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002798 },
2799 [OP_OPEN_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002800 .op_func = nfsd4_open_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002801 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002802 .op_name = "OP_OPEN_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002803 .op_rsize_bop = nfsd4_status_stateid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002804 },
2805 [OP_OPEN_DOWNGRADE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002806 .op_func = nfsd4_open_downgrade,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002807 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002808 .op_name = "OP_OPEN_DOWNGRADE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002809 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002810 .op_get_currentstateid = nfsd4_get_opendowngradestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002811 .op_set_currentstateid = nfsd4_set_opendowngradestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002812 },
2813 [OP_PUTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002814 .op_func = nfsd4_putfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002815 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002816 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002817 .op_name = "OP_PUTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002818 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002819 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002820 [OP_PUTPUBFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002821 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002822 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002823 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002824 .op_name = "OP_PUTPUBFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002825 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002826 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002827 [OP_PUTROOTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002828 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002829 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002830 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002831 .op_name = "OP_PUTROOTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002832 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002833 },
2834 [OP_READ] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002835 .op_func = nfsd4_read,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04002836 .op_release = nfsd4_read_release,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002837 .op_name = "OP_READ",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002838 .op_rsize_bop = nfsd4_read_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002839 .op_get_currentstateid = nfsd4_get_readstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002840 },
2841 [OP_READDIR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002842 .op_func = nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002843 .op_name = "OP_READDIR",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002844 .op_rsize_bop = nfsd4_readdir_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002845 },
2846 [OP_READLINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002847 .op_func = nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002848 .op_name = "OP_READLINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002849 .op_rsize_bop = nfsd4_readlink_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002850 },
2851 [OP_REMOVE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002852 .op_func = nfsd4_remove,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002853 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002854 .op_name = "OP_REMOVE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002855 .op_rsize_bop = nfsd4_remove_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002856 },
2857 [OP_RENAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002858 .op_func = nfsd4_rename,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002859 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002860 .op_name = "OP_RENAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002861 .op_rsize_bop = nfsd4_rename_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002862 },
2863 [OP_RENEW] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002864 .op_func = nfsd4_renew,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002865 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2866 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002867 .op_name = "OP_RENEW",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002868 .op_rsize_bop = nfsd4_only_status_rsize,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002869
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002870 },
2871 [OP_RESTOREFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002872 .op_func = nfsd4_restorefh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002873 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Mi Jinlong58e7b332011-08-28 18:18:56 +08002874 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002875 .op_name = "OP_RESTOREFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002876 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002877 },
2878 [OP_SAVEFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002879 .op_func = nfsd4_savefh,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002880 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002881 .op_name = "OP_SAVEFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002882 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002883 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07002884 [OP_SECINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002885 .op_func = nfsd4_secinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04002886 .op_release = nfsd4_secinfo_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002887 .op_flags = OP_HANDLES_WRONGSEC,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002888 .op_name = "OP_SECINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002889 .op_rsize_bop = nfsd4_secinfo_rsize,
Andy Adamsondcb488a32007-07-17 04:04:51 -07002890 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002891 [OP_SETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002892 .op_func = nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002893 .op_name = "OP_SETATTR",
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002894 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME
2895 | OP_NONTRIVIAL_ERROR_ENCODE,
Christoph Hellwig1c122632017-05-08 20:42:10 +02002896 .op_rsize_bop = nfsd4_setattr_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002897 .op_get_currentstateid = nfsd4_get_setattrstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002898 },
2899 [OP_SETCLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002900 .op_func = nfsd4_setclientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002901 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002902 | OP_MODIFIES_SOMETHING | OP_CACHEME
2903 | OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002904 .op_name = "OP_SETCLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002905 .op_rsize_bop = nfsd4_setclientid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002906 },
2907 [OP_SETCLIENTID_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002908 .op_func = nfsd4_setclientid_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002909 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002910 | OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002911 .op_name = "OP_SETCLIENTID_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002912 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002913 },
2914 [OP_VERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002915 .op_func = nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002916 .op_name = "OP_VERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002917 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002918 },
2919 [OP_WRITE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002920 .op_func = nfsd4_write,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002921 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002922 .op_name = "OP_WRITE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002923 .op_rsize_bop = nfsd4_write_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002924 .op_get_currentstateid = nfsd4_get_writestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002925 },
2926 [OP_RELEASE_LOCKOWNER] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002927 .op_func = nfsd4_release_lockowner,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002928 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2929 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002930 .op_name = "OP_RELEASE_LOCKOWNER",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002931 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002932 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03002933
2934 /* NFSv4.1 operations */
2935 [OP_EXCHANGE_ID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002936 .op_func = nfsd4_exchange_id,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002937 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
2938 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002939 .op_name = "OP_EXCHANGE_ID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002940 .op_rsize_bop = nfsd4_exchange_id_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002941 },
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002942 [OP_BACKCHANNEL_CTL] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002943 .op_func = nfsd4_backchannel_ctl,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002944 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
2945 .op_name = "OP_BACKCHANNEL_CTL",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002946 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04002947 },
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002948 [OP_BIND_CONN_TO_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002949 .op_func = nfsd4_bind_conn_to_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002950 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
2951 | OP_MODIFIES_SOMETHING,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002952 .op_name = "OP_BIND_CONN_TO_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002953 .op_rsize_bop = nfsd4_bind_conn_to_session_rsize,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002954 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03002955 [OP_CREATE_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002956 .op_func = nfsd4_create_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002957 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
2958 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002959 .op_name = "OP_CREATE_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002960 .op_rsize_bop = nfsd4_create_session_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002961 },
2962 [OP_DESTROY_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002963 .op_func = nfsd4_destroy_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002964 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
2965 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002966 .op_name = "OP_DESTROY_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002967 .op_rsize_bop = nfsd4_only_status_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002968 },
2969 [OP_SEQUENCE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002970 .op_func = nfsd4_sequence,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002971 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002972 .op_name = "OP_SEQUENCE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002973 .op_rsize_bop = nfsd4_sequence_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03002974 },
Benny Halevy094b5d72011-06-16 11:39:10 -04002975 [OP_DESTROY_CLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002976 .op_func = nfsd4_destroy_clientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002977 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
2978 | OP_MODIFIES_SOMETHING,
Benny Halevy094b5d72011-06-16 11:39:10 -04002979 .op_name = "OP_DESTROY_CLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002980 .op_rsize_bop = nfsd4_only_status_rsize,
Benny Halevy094b5d72011-06-16 11:39:10 -04002981 },
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002982 [OP_RECLAIM_COMPLETE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002983 .op_func = nfsd4_reclaim_complete,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002984 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002985 .op_name = "OP_RECLAIM_COMPLETE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002986 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04002987 },
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05002988 [OP_SECINFO_NO_NAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002989 .op_func = nfsd4_secinfo_no_name,
Eryu Guanec572b92017-09-29 15:01:10 +08002990 .op_release = nfsd4_secinfo_no_name_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002991 .op_flags = OP_HANDLES_WRONGSEC,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05002992 .op_name = "OP_SECINFO_NO_NAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002993 .op_rsize_bop = nfsd4_secinfo_rsize,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05002994 },
Bryan Schumaker17456802011-07-13 10:50:48 -04002995 [OP_TEST_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002996 .op_func = nfsd4_test_stateid,
Bryan Schumaker17456802011-07-13 10:50:48 -04002997 .op_flags = ALLOWED_WITHOUT_FH,
2998 .op_name = "OP_TEST_STATEID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002999 .op_rsize_bop = nfsd4_test_stateid_rsize,
Bryan Schumaker17456802011-07-13 10:50:48 -04003000 },
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003001 [OP_FREE_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003002 .op_func = nfsd4_free_stateid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003003 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003004 .op_name = "OP_FREE_STATEID",
Christoph Hellwig57832e72017-05-08 20:37:33 +02003005 .op_get_currentstateid = nfsd4_get_freestateid,
Christoph Hellwig1c122632017-05-08 20:42:10 +02003006 .op_rsize_bop = nfsd4_only_status_rsize,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003007 },
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003008#ifdef CONFIG_NFSD_PNFS
3009 [OP_GETDEVICEINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003010 .op_func = nfsd4_getdeviceinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003011 .op_release = nfsd4_getdeviceinfo_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003012 .op_flags = ALLOWED_WITHOUT_FH,
3013 .op_name = "OP_GETDEVICEINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003014 .op_rsize_bop = nfsd4_getdeviceinfo_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003015 },
3016 [OP_LAYOUTGET] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003017 .op_func = nfsd4_layoutget,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003018 .op_release = nfsd4_layoutget_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003019 .op_flags = OP_MODIFIES_SOMETHING,
3020 .op_name = "OP_LAYOUTGET",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003021 .op_rsize_bop = nfsd4_layoutget_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003022 },
3023 [OP_LAYOUTCOMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003024 .op_func = nfsd4_layoutcommit,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003025 .op_flags = OP_MODIFIES_SOMETHING,
3026 .op_name = "OP_LAYOUTCOMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003027 .op_rsize_bop = nfsd4_layoutcommit_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003028 },
3029 [OP_LAYOUTRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003030 .op_func = nfsd4_layoutreturn,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003031 .op_flags = OP_MODIFIES_SOMETHING,
3032 .op_name = "OP_LAYOUTRETURN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003033 .op_rsize_bop = nfsd4_layoutreturn_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003034 },
3035#endif /* CONFIG_NFSD_PNFS */
Anna Schumaker24bab492014-09-26 13:58:27 -04003036
3037 /* NFSv4.2 operations */
Anna Schumaker95d871f2014-11-07 14:44:26 -05003038 [OP_ALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003039 .op_func = nfsd4_allocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003040 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003041 .op_name = "OP_ALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003042 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003043 },
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003044 [OP_DEALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003045 .op_func = nfsd4_deallocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003046 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003047 .op_name = "OP_DEALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003048 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003049 },
Christoph Hellwigffa01602015-12-03 12:59:52 +01003050 [OP_CLONE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003051 .op_func = nfsd4_clone,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003052 .op_flags = OP_MODIFIES_SOMETHING,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003053 .op_name = "OP_CLONE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003054 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003055 },
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003056 [OP_COPY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003057 .op_func = nfsd4_copy,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003058 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003059 .op_name = "OP_COPY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003060 .op_rsize_bop = nfsd4_copy_rsize,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003061 },
Anna Schumaker24bab492014-09-26 13:58:27 -04003062 [OP_SEEK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003063 .op_func = nfsd4_seek,
Anna Schumaker24bab492014-09-26 13:58:27 -04003064 .op_name = "OP_SEEK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003065 .op_rsize_bop = nfsd4_seek_rsize,
Anna Schumaker24bab492014-09-26 13:58:27 -04003066 },
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04003067 [OP_OFFLOAD_STATUS] = {
3068 .op_func = nfsd4_offload_status,
3069 .op_name = "OP_OFFLOAD_STATUS",
3070 .op_rsize_bop = nfsd4_offload_status_rsize,
3071 },
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04003072 [OP_OFFLOAD_CANCEL] = {
3073 .op_func = nfsd4_offload_cancel,
3074 .op_flags = OP_MODIFIES_SOMETHING,
3075 .op_name = "OP_OFFLOAD_CANCEL",
3076 .op_rsize_bop = nfsd4_only_status_rsize,
3077 },
Olga Kornievskaia51911862019-08-08 11:14:59 -04003078 [OP_COPY_NOTIFY] = {
3079 .op_func = nfsd4_copy_notify,
3080 .op_flags = OP_MODIFIES_SOMETHING,
3081 .op_name = "OP_COPY_NOTIFY",
3082 .op_rsize_bop = nfsd4_copy_notify_rsize,
3083 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003084};
3085
Andrew Elbleed941642016-06-15 12:52:09 -04003086/**
3087 * nfsd4_spo_must_allow - Determine if the compound op contains an
3088 * operation that is allowed to be sent with machine credentials
3089 *
3090 * @rqstp: a pointer to the struct svc_rqst
3091 *
3092 * Checks to see if the compound contains a spo_must_allow op
3093 * and confirms that it was sent with the proper machine creds.
3094 */
3095
3096bool nfsd4_spo_must_allow(struct svc_rqst *rqstp)
3097{
3098 struct nfsd4_compoundres *resp = rqstp->rq_resp;
3099 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3100 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
3101 struct nfsd4_compound_state *cstate = &resp->cstate;
3102 struct nfs4_op_map *allow = &cstate->clp->cl_spo_must_allow;
3103 u32 opiter;
3104
3105 if (!cstate->minorversion)
3106 return false;
3107
3108 if (cstate->spo_must_allowed == true)
3109 return true;
3110
3111 opiter = resp->opcnt;
3112 while (opiter < argp->opcnt) {
3113 this = &argp->ops[opiter++];
3114 if (test_bit(this->opnum, allow->u.longs) &&
3115 cstate->clp->cl_mach_cred &&
3116 nfsd4_mach_creds_match(cstate->clp, rqstp)) {
3117 cstate->spo_must_allowed = true;
3118 return true;
3119 }
3120 }
3121 cstate->spo_must_allowed = false;
3122 return false;
3123}
3124
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003125int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op)
3126{
Olga Kornievskaia05b72782017-03-23 14:36:20 -04003127 if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003128 return op_encode_hdr_size * sizeof(__be32);
Kinglong Mee2282cd22017-02-03 22:36:00 +08003129
3130 BUG_ON(OPDESC(op)->op_rsize_bop == NULL);
3131 return OPDESC(op)->op_rsize_bop(rqstp, op);
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003132}
3133
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003134void warn_on_nonidempotent_op(struct nfsd4_op *op)
3135{
3136 if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) {
3137 pr_err("unable to encode reply to nonidempotent op %d (%s)\n",
3138 op->opnum, nfsd4_op_name(op->opnum));
3139 WARN_ON_ONCE(1);
3140 }
3141}
3142
Adrian Bunkf1c7f792008-08-08 19:26:42 +03003143static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03003144{
3145 if (opnum < ARRAY_SIZE(nfsd4_ops))
3146 return nfsd4_ops[opnum].op_name;
3147 return "unknown_operation";
3148}
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150#define nfsd4_voidres nfsd4_voidargs
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151struct nfsd4_voidargs { int dummy; };
3152
Christoph Hellwig860bda22017-05-12 16:11:49 +02003153static const struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003154 [NFSPROC4_NULL] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003155 .pc_func = nfsd4_proc_null,
Christoph Hellwig63f8de32017-05-08 19:42:02 +02003156 .pc_encode = nfs4svc_encode_voidres,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003157 .pc_argsize = sizeof(struct nfsd4_voidargs),
3158 .pc_ressize = sizeof(struct nfsd4_voidres),
3159 .pc_cachetype = RC_NOCACHE,
3160 .pc_xdrressize = 1,
3161 },
3162 [NFSPROC4_COMPOUND] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003163 .pc_func = nfsd4_proc_compound,
Christoph Hellwig026fec72017-05-08 19:01:48 +02003164 .pc_decode = nfs4svc_decode_compoundargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +02003165 .pc_encode = nfs4svc_encode_compoundres,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003166 .pc_argsize = sizeof(struct nfsd4_compoundargs),
3167 .pc_ressize = sizeof(struct nfsd4_compoundres),
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003168 .pc_release = nfsd4_release_compoundargs,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003169 .pc_cachetype = RC_NOCACHE,
3170 .pc_xdrressize = NFSD_BUFSIZE/4,
3171 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172};
3173
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003174static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures4)];
Christoph Hellwige9679182017-05-12 16:21:37 +02003175const struct svc_version nfsd_version4 = {
Jeff Layton5283b032017-02-24 13:25:24 -05003176 .vs_vers = 4,
3177 .vs_nproc = 2,
3178 .vs_proc = nfsd_procedures4,
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003179 .vs_count = nfsd_count3,
Jeff Layton5283b032017-02-24 13:25:24 -05003180 .vs_dispatch = nfsd_dispatch,
3181 .vs_xdrsize = NFS4_SVC_XDRSIZE,
3182 .vs_rpcb_optnl = true,
3183 .vs_need_cong_ctrl = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184};
3185
3186/*
3187 * Local variables:
3188 * c-basic-offset: 8
3189 * End:
3190 */