blob: e83b21778816d957d33f277c6a7a048ad71b82d6 [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>
Dai Ngo0cfcd402020-10-18 23:42:49 -040041#include <linux/nfs_ssc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Mi Jinlong58e7b332011-08-28 18:18:56 +080043#include "idmap.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020044#include "cache.h"
45#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050046#include "vfs.h"
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +010047#include "current_stateid.h"
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +030048#include "netns.h"
Christoph Hellwig4ac72492013-12-20 05:16:55 -080049#include "acl.h"
Christoph Hellwig9cf514c2014-05-05 13:11:59 +020050#include "pnfs.h"
Christoph Hellwig31ef83d2014-08-16 19:02:22 -050051#include "trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Quigley18032ca2013-05-02 13:19:10 -040053#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
54#include <linux/security.h>
55
56static inline void
57nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
58{
David Howells2b0143b2015-03-17 22:25:59 +000059 struct inode *inode = d_inode(resfh->fh_dentry);
David Quigley18032ca2013-05-02 13:19:10 -040060 int status;
61
Al Viro59551022016-01-22 15:40:57 -050062 inode_lock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040063 status = security_inode_setsecctx(resfh->fh_dentry,
64 label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -050065 inode_unlock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040066
67 if (status)
68 /*
69 * XXX: We should really fail the whole open, but we may
70 * already have created a new file, so it may be too
71 * late. For now this seems the least of evils:
72 */
73 bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
74
75 return;
76}
77#else
78static inline void
79nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
80{ }
81#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define NFSDDBG_FACILITY NFSDDBG_PROC
84
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080085static u32 nfsd_attrmask[] = {
86 NFSD_WRITEABLE_ATTRS_WORD0,
87 NFSD_WRITEABLE_ATTRS_WORD1,
88 NFSD_WRITEABLE_ATTRS_WORD2
89};
90
91static u32 nfsd41_ex_attrmask[] = {
92 NFSD_SUPPATTR_EXCLCREAT_WORD0,
93 NFSD_SUPPATTR_EXCLCREAT_WORD1,
94 NFSD_SUPPATTR_EXCLCREAT_WORD2
95};
96
97static __be32
98check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
99 u32 *bmval, u32 *writable)
100{
101 struct dentry *dentry = cstate->current_fh.fh_dentry;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500102 struct svc_export *exp = cstate->current_fh.fh_export;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800103
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400104 if (!nfsd_attrs_supported(cstate->minorversion, bmval))
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800105 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400106 if ((bmval[0] & FATTR4_WORD0_ACL) && !IS_POSIXACL(d_inode(dentry)))
107 return nfserr_attrnotsupp;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500108 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) &&
109 !(exp->ex_flags & NFSEXP_SECURITY_LABEL))
110 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400111 if (writable && !bmval_is_subset(bmval, writable))
112 return nfserr_inval;
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100113 if (writable && (bmval[2] & FATTR4_WORD2_MODE_UMASK) &&
114 (bmval[1] & FATTR4_WORD1_MODE))
115 return nfserr_inval;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800116 return nfs_ok;
117}
118
119static __be32
120nfsd4_check_open_attributes(struct svc_rqst *rqstp,
121 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
122{
123 __be32 status = nfs_ok;
124
125 if (open->op_create == NFS4_OPEN_CREATE) {
126 if (open->op_createmode == NFS4_CREATE_UNCHECKED
127 || open->op_createmode == NFS4_CREATE_GUARDED)
128 status = check_attr_support(rqstp, cstate,
129 open->op_bmval, nfsd_attrmask);
130 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
131 status = check_attr_support(rqstp, cstate,
132 open->op_bmval, nfsd41_ex_attrmask);
133 }
134
135 return status;
136}
137
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800138static int
139is_create_with_attrs(struct nfsd4_open *open)
140{
141 return open->op_create == NFS4_OPEN_CREATE
142 && (open->op_createmode == NFS4_CREATE_UNCHECKED
143 || open->op_createmode == NFS4_CREATE_GUARDED
144 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
145}
146
147/*
148 * if error occurs when setting the acl, just clear the acl bit
149 * in the returned attr bitmap.
150 */
151static void
152do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
153 struct nfs4_acl *acl, u32 *bmval)
154{
155 __be32 status;
156
157 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
158 if (status)
159 /*
160 * We should probably fail the whole open at this point,
161 * but we've already created the file, so it's too late;
162 * So this seems the least of evils:
163 */
164 bmval[0] &= ~FATTR4_WORD0_ACL;
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static inline void
168fh_dup2(struct svc_fh *dst, struct svc_fh *src)
169{
170 fh_put(dst);
171 dget(src->fh_dentry);
172 if (src->fh_export)
Kinglong Meebf18f162014-06-10 22:06:44 +0800173 exp_get(src->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *dst = *src;
175}
176
Al Virob37ad282006-10-19 23:28:59 -0700177static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700178do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Al Virob37ad282006-10-19 23:28:59 -0700180 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (open->op_truncate &&
183 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
184 return nfserr_inval;
185
J. Bruce Fieldsa0432262011-08-25 10:48:39 -0400186 accmode |= NFSD_MAY_READ_IF_EXEC;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200189 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700190 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200191 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields57ecb342009-12-01 19:42:57 -0500192 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200193 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
196
197 return status;
198}
199
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400200static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
201{
David Howells2b0143b2015-03-17 22:25:59 +0000202 umode_t mode = d_inode(fh->fh_dentry)->i_mode;
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400203
204 if (S_ISREG(mode))
205 return nfs_ok;
206 if (S_ISDIR(mode))
207 return nfserr_isdir;
208 /*
209 * Using err_symlink as our catch-all case may look odd; but
210 * there's no other obvious error for this case in 4.0, and we
211 * happen to know that it will cause the linux v4 client to do
212 * the right thing on attempts to open something other than a
213 * regular file.
214 */
215 return nfserr_symlink;
216}
217
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400218static 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 -0700219{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400220 if (nfsd4_has_session(cstate))
221 return;
222 fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
223 &resfh->fh_handle);
224}
225
226static __be32
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500227do_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 -0400228{
229 struct svc_fh *current_fh = &cstate->current_fh;
Neil Brown7007c902012-12-07 15:40:55 -0500230 int accmode;
Al Virob37ad282006-10-19 23:28:59 -0700231 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500233 *resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
234 if (!*resfh)
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500235 return nfserr_jukebox;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500236 fh_init(*resfh, NFS4_FHSIZE);
zhengbin500c24812019-12-25 11:19:35 +0800237 open->op_truncate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300240 /* FIXME: check session persistence and pnfs flags.
241 * The nfsv4.1 spec requires the following semantics:
242 *
243 * Persistent | pNFS | Server REQUIRED | Client Allowed
244 * Reply Cache | server | |
245 * -------------+--------+-----------------+--------------------
246 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
247 * | | | (SHOULD)
248 * | | and EXCLUSIVE4 | or EXCLUSIVE4
249 * | | | (SHOULD NOT)
250 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
251 * yes | no | GUARDED4 | GUARDED4
252 * yes | yes | GUARDED4 | GUARDED4
253 */
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /*
256 * Note: create modes (UNCHECKED,GUARDED...) are the same
Mi Jinlongac6721a2011-04-20 17:06:25 +0800257 * in NFSv4 as in v3 except EXCLUSIVE4_1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400259 current->fs->umask = open->op_umask;
Mi Jinlongac6721a2011-04-20 17:06:25 +0800260 status = do_nfsd_create(rqstp, current_fh, open->op_fname.data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 open->op_fname.len, &open->op_iattr,
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500262 *resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700263 (u32 *)open->op_verf.data,
J. Bruce Fields856121b2011-10-13 11:37:11 -0400264 &open->op_truncate, &open->op_created);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400265 current->fs->umask = 0;
Jeff Layton749997e2007-07-31 00:37:51 -0700266
David Quigley18032ca2013-05-02 13:19:10 -0400267 if (!status && open->op_label.len)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500268 nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval);
David Quigley18032ca2013-05-02 13:19:10 -0400269
J. Bruce Fields99f88722009-02-02 15:12:27 -0500270 /*
Kinglong Meeead8fb82015-07-30 21:55:02 +0800271 * Following rfc 3530 14.2.16, and rfc 5661 18.16.4
272 * use the returned bitmask to indicate which attributes
273 * we used to store the verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700274 */
Kinglong Meeead8fb82015-07-30 21:55:02 +0800275 if (nfsd_create_is_exclusive(open->op_createmode) && status == 0)
276 open->op_bmval[1] |= (FATTR4_WORD1_TIME_ACCESS |
277 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fields43357232014-01-24 18:04:40 -0500278 } else
279 /*
280 * Note this may exit with the parent still locked.
281 * We will hold the lock until nfsd4_open's final
282 * lookup, to prevent renames or unlinks until we've had
283 * a chance to an acquire a delegation if appropriate.
284 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 status = nfsd_lookup(rqstp, current_fh,
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500286 open->op_fname.data, open->op_fname.len, *resfh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800287 if (status)
288 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500289 status = nfsd_check_obj_isreg(*resfh);
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -0400290 if (status)
291 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800293 if (is_create_with_attrs(open) && open->op_acl != NULL)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500294 do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval);
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800295
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500296 nfsd4_set_open_owner_reply_cache(cstate, open, *resfh);
Neil Brown7007c902012-12-07 15:40:55 -0500297 accmode = NFSD_MAY_NOP;
J. Bruce Fields89f6c332013-06-19 15:47:37 -0400298 if (open->op_created ||
299 open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
Neil Brown7007c902012-12-07 15:40:55 -0500300 accmode |= NFSD_MAY_OWNER_OVERRIDE;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500301 status = do_open_permission(rqstp, *resfh, open, accmode);
J. Bruce Fields41fd1e42012-01-27 16:26:02 -0500302 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800303out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return status;
305}
306
Al Virob37ad282006-10-19 23:28:59 -0700307static __be32
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400308do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400310 struct svc_fh *current_fh = &cstate->current_fh;
Al Virob37ad282006-10-19 23:28:59 -0700311 __be32 status;
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400312 int accmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* We don't know the target directory, and therefore can not
315 * set the change info
316 */
317
318 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
319
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400320 nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
323 (open->op_iattr.ia_size == 0);
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400324 /*
325 * In the delegation case, the client is telling us about an
326 * open that it *already* performed locally, some time ago. We
327 * should let it succeed now if possible.
328 *
329 * In the case of a CLAIM_FH open, on the other hand, the client
330 * may be counting on us to enforce permissions (the Linux 4.1
331 * client uses this for normal opens, for example).
332 */
333 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
334 accmode = NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400336 status = do_open_permission(rqstp, current_fh, open, accmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 return status;
339}
340
Andy Adamson60adfc52009-04-03 08:28:50 +0300341static void
342copy_clientid(clientid_t *clid, struct nfsd4_session *session)
343{
344 struct nfsd4_sessionid *sid =
345 (struct nfsd4_sessionid *)session->se_sessionid.data;
346
347 clid->cl_boot = sid->clientid.cl_boot;
348 clid->cl_id = sid->clientid.cl_id;
349}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
J.Bruce Fields71911552006-12-13 00:35:29 -0800351static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800352nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200353 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200355 struct nfsd4_open *open = &u->open;
Al Virob37ad282006-10-19 23:28:59 -0700356 __be32 status;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500357 struct svc_fh *resfh = NULL;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300358 struct net *net = SVC_NET(rqstp);
359 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400360 bool reclaim = false;
Andy Adamson66689582009-04-03 08:28:45 +0300361
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400362 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 (int)open->op_fname.len, open->op_fname.data,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400364 open->op_openowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* This check required by spec. */
367 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
368 return nfserr_inval;
369
zhengbin500c24812019-12-25 11:19:35 +0800370 open->op_created = false;
Mi Jinlongab1350b2011-07-14 15:06:26 +0800371 /*
372 * RFC5661 18.51.3
373 * Before RECLAIM_COMPLETE done, server should deny new lock
374 */
375 if (nfsd4_has_session(cstate) &&
Jeff Laytona52d7262012-03-21 09:52:02 -0400376 !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
377 &cstate->session->se_client->cl_flags) &&
Mi Jinlongab1350b2011-07-14 15:06:26 +0800378 open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
379 return nfserr_grace;
380
Andy Adamson60adfc52009-04-03 08:28:50 +0300381 if (nfsd4_has_session(cstate))
382 copy_clientid(&open->op_clientid, cstate->session);
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* check seqid for replay. set nfs4_owner */
Kinglong Mee6cd22662015-07-13 17:32:05 +0800385 status = nfsd4_process_open1(cstate, open, nn);
Al Viroa90b0612006-10-19 23:29:03 -0700386 if (status == nfserr_replay_me) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400387 struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800388 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500389 fh_copy_shallow(&cstate->current_fh.fh_handle,
390 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200391 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (status)
393 dprintk("nfsd4_open: replay failed"
394 " restoring previous filehandle\n");
395 else
Al Viroa90b0612006-10-19 23:29:03 -0700396 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
398 if (status)
399 goto out;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800400 if (open->op_xdr_error) {
401 status = open->op_xdr_error;
402 goto out;
403 }
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800404
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800405 status = nfsd4_check_open_attributes(rqstp, cstate, open);
406 if (status)
407 goto out;
408
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800409 /* Openowner is now set, so sequence id will get bumped. Now we need
410 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800411 status = nfserr_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400412 if (opens_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800413 goto out;
414 status = nfserr_no_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400415 if (!opens_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800416 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700419 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 case NFS4_OPEN_CLAIM_NULL:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500421 status = do_open_lookup(rqstp, cstate, open, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (status)
423 goto out;
424 break;
425 case NFS4_OPEN_CLAIM_PREVIOUS:
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300426 status = nfs4_check_open_reclaim(&open->op_clientid,
Trond Myklebust0fe492d2014-06-30 11:48:47 -0400427 cstate, nn);
Mi Jinlong0cf99b92011-11-23 10:48:40 +0800428 if (status)
429 goto out;
Jeff Laytonba5378b2014-05-30 09:09:28 -0400430 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400431 reclaim = true;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500432 fallthrough;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400433 case NFS4_OPEN_CLAIM_FH:
434 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400435 status = do_open_fhandle(rqstp, cstate, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (status)
437 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500438 resfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400440 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400442 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 open->op_claim_type);
444 status = nfserr_notsupp;
445 goto out;
446 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400447 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 open->op_claim_type);
449 status = nfserr_inval;
450 goto out;
451 }
452 /*
453 * nfsd4_process_open2() does the actual opening of the file. If
454 * successful, it (1) truncates the file if open->op_truncate was
455 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
456 */
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500457 status = nfsd4_process_open2(rqstp, resfh, open);
Jeff Laytonb3fbfe02014-07-29 21:37:44 -0400458 WARN(status && open->op_created,
459 "nfsd4_process_open2 failed to open newly-created file! status=%u\n",
460 be32_to_cpu(status));
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400461 if (reclaim && !status)
462 nn->somebody_reclaimed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463out:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500464 if (resfh && resfh != &cstate->current_fh) {
465 fh_dup2(&cstate->current_fh, resfh);
466 fh_put(resfh);
467 kfree(resfh);
468 }
Jeff Layton42297892015-03-23 10:53:44 -0400469 nfsd4_cleanup_open_state(cstate, open);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -0400470 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return status;
472}
473
474/*
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800475 * OPEN is the only seqid-mutating operation whose decoding can fail
476 * with a seqid-mutating error (specifically, decoding of user names in
477 * the attributes). Therefore we have to do some processing to look up
478 * the stateowner so that we can bump the seqid.
479 */
480static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
481{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200482 struct nfsd4_open *open = &op->u.open;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800483
484 if (!seqid_mutating_err(ntohl(op->status)))
485 return op->status;
486 if (nfsd4_has_session(cstate))
487 return op->status;
488 open->op_xdr_error = op->status;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200489 return nfsd4_open(rqstp, cstate, &op->u);
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800490}
491
492/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * filehandle-manipulating ops.
494 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800495static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800496nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200497 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200499 u->getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return nfs_ok;
501}
502
J.Bruce Fields71911552006-12-13 00:35:29 -0800503static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800504nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200505 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200507 struct nfsd4_putfh *putfh = &u->putfh;
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400508 __be32 ret;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200509
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800510 fh_put(&cstate->current_fh);
511 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
512 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
513 putfh->pf_fhlen);
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400514 ret = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
515#ifdef CONFIG_NFSD_V4_2_INTER_SSC
516 if (ret == nfserr_stale && putfh->no_verify) {
517 SET_FH_FLAG(&cstate->current_fh, NFSD4_FH_FOREIGN);
518 ret = 0;
519 }
520#endif
521 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
J.Bruce Fields71911552006-12-13 00:35:29 -0800524static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800525nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200526 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Al Virob37ad282006-10-19 23:28:59 -0700528 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800530 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700531 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return status;
533}
534
J.Bruce Fields71911552006-12-13 00:35:29 -0800535static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800536nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200537 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800539 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return nfserr_restorefh;
541
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800542 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400543 if (HAS_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100544 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400545 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return nfs_ok;
548}
549
J.Bruce Fields71911552006-12-13 00:35:29 -0800550static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800551nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200552 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800554 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400555 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100556 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400557 SET_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return nfs_ok;
560}
561
562/*
563 * misc nfsv4 ops
564 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800565static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800566nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200567 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200569 struct nfsd4_access *access = &u->access;
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000570 u32 access_full;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200571
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000572 access_full = NFS3_ACCESS_FULL;
573 if (cstate->minorversion >= 2)
574 access_full |= NFS4_ACCESS_XALIST | NFS4_ACCESS_XAREAD |
575 NFS4_ACCESS_XAWRITE;
576
577 if (access->ac_req_access & ~access_full)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return nfserr_inval;
579
580 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800581 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
582 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300585static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
Chuck Leverab4684d2012-03-02 17:13:50 -0500586{
Trond Myklebust27c438f2019-09-02 13:02:56 -0400587 __be32 *verf = (__be32 *)verifier->data;
Chuck Leverab4684d2012-03-02 17:13:50 -0500588
Trond Myklebust27c438f2019-09-02 13:02:56 -0400589 BUILD_BUG_ON(2*sizeof(*verf) != sizeof(verifier->data));
590
591 nfsd_copy_boot_verifier(verf, net_generic(net, nfsd_net_id));
Chuck Leverab4684d2012-03-02 17:13:50 -0500592}
593
J.Bruce Fields71911552006-12-13 00:35:29 -0800594static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800595nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200596 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200598 struct nfsd4_commit *commit = &u->commit;
599
J. Bruce Fields75c096f2011-08-15 18:39:32 -0400600 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
Trond Myklebust524ff1a2020-01-06 13:40:36 -0500601 commit->co_count,
602 (__be32 *)commit->co_verf.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Al Virob37ad282006-10-19 23:28:59 -0700605static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800606nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200607 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200609 struct nfsd4_create *create = &u->create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700611 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 dev_t rdev;
613
614 fh_init(&resfh, NFS4_FHSIZE);
615
J. Bruce Fieldsfa081392016-07-21 16:00:12 -0400616 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (status)
618 return status;
619
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800620 status = check_attr_support(rqstp, cstate, create->cr_bmval,
621 nfsd_attrmask);
622 if (status)
623 return status;
624
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400625 current->fs->umask = create->cr_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 switch (create->cr_type) {
627 case NF4LNK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800628 status = nfsd_symlink(rqstp, &cstate->current_fh,
629 create->cr_name, create->cr_namelen,
Kinglong Mee1e444f52014-07-01 17:48:02 +0800630 create->cr_data, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632
633 case NF4BLK:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400634 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
636 if (MAJOR(rdev) != create->cr_specdata1 ||
637 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400638 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800639 status = nfsd_create(rqstp, &cstate->current_fh,
640 create->cr_name, create->cr_namelen,
641 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 break;
643
644 case NF4CHR:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400645 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
647 if (MAJOR(rdev) != create->cr_specdata1 ||
648 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400649 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800650 status = nfsd_create(rqstp, &cstate->current_fh,
651 create->cr_name, create->cr_namelen,
652 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 break;
654
655 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800656 status = nfsd_create(rqstp, &cstate->current_fh,
657 create->cr_name, create->cr_namelen,
658 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 break;
660
661 case NF4FIFO:
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_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666
667 case NF4DIR:
668 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800669 status = nfsd_create(rqstp, &cstate->current_fh,
670 create->cr_name, create->cr_namelen,
671 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 break;
673
674 default:
675 status = nfserr_badtype;
676 }
677
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800678 if (status)
679 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
David Quigley18032ca2013-05-02 13:19:10 -0400681 if (create->cr_label.len)
682 nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
683
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800684 if (create->cr_acl != NULL)
685 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
686 create->cr_bmval);
687
688 fh_unlock(&cstate->current_fh);
689 set_change_info(&create->cr_cinfo, &cstate->current_fh);
690 fh_dup2(&cstate->current_fh, &resfh);
691out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 fh_put(&resfh);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400693out_umask:
694 current->fs->umask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return status;
696}
697
J.Bruce Fields71911552006-12-13 00:35:29 -0800698static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800699nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200700 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200702 struct nfsd4_getattr *getattr = &u->getattr;
Al Virob37ad282006-10-19 23:28:59 -0700703 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200705 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (status)
707 return status;
708
709 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
710 return nfserr_inval;
711
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400712 getattr->ga_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
713 getattr->ga_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
714 getattr->ga_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800716 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return nfs_ok;
718}
719
J.Bruce Fields71911552006-12-13 00:35:29 -0800720static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800721nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200722 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200724 struct nfsd4_link *link = &u->link;
J. Bruce Fields95424462017-09-15 16:02:52 -0400725 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800727 status = nfsd_link(rqstp, &cstate->current_fh,
728 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800730 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return status;
732}
733
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500734static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700737 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700740 ret = exp_pseudoroot(rqstp, &tmp_fh);
741 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return ret;
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500743 if (tmp_fh.fh_dentry == fh->fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 fh_put(&tmp_fh);
745 return nfserr_noent;
746 }
747 fh_put(&tmp_fh);
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500748 return nfsd_lookup(rqstp, fh, "..", 2, fh);
749}
750
751static __be32
752nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200753 union nfsd4_op_u *u)
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500754{
755 return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
J.Bruce Fields71911552006-12-13 00:35:29 -0800758static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800759nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200760 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800762 return nfsd_lookup(rqstp, &cstate->current_fh,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200763 u->lookup.lo_name, u->lookup.lo_len,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800764 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
J.Bruce Fields71911552006-12-13 00:35:29 -0800767static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800768nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200769 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200771 struct nfsd4_read *read = &u->read;
Al Virob37ad282006-10-19 23:28:59 -0700772 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Jeff Layton5c4583b2019-08-18 14:18:54 -0400774 read->rd_nf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (read->rd_offset >= OFFSET_MAX)
776 return nfserr_inval;
777
Chuck Lever87c59422018-03-28 13:29:11 -0400778 trace_nfsd_read_start(rqstp, &cstate->current_fh,
779 read->rd_offset, read->rd_length);
780
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500781 /*
782 * If we do a zero copy read, then a client will see read data
783 * that reflects the state of the file *after* performing the
784 * following compound.
785 *
786 * To ensure proper ordering, we therefore turn off zero copy if
787 * the client wants us to do more in this compound:
788 */
789 if (!nfsd4_last_compound_op(rqstp))
Jeff Layton779fb0f2014-11-19 07:51:18 -0500790 clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* check stateid */
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100793 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
794 &read->rd_stateid, RD_STATE,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400795 &read->rd_nf, NULL);
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200796 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
798 goto out;
799 }
800 status = nfs_ok;
801out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800803 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return status;
805}
806
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400807
808static void
809nfsd4_read_release(union nfsd4_op_u *u)
810{
Jeff Layton5c4583b2019-08-18 14:18:54 -0400811 if (u->read.rd_nf)
812 nfsd_file_put(u->read.rd_nf);
Chuck Lever87c59422018-03-28 13:29:11 -0400813 trace_nfsd_read_done(u->read.rd_rqstp, u->read.rd_fhp,
814 u->read.rd_offset, u->read.rd_length);
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400815}
816
J.Bruce Fields71911552006-12-13 00:35:29 -0800817static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800818nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200819 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200821 struct nfsd4_readdir *readdir = &u->readdir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 u64 cookie = readdir->rd_cookie;
823 static const nfs4_verifier zeroverf;
824
825 /* no need to check permission - this will be done in nfsd_readdir() */
826
827 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
828 return nfserr_inval;
829
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400830 readdir->rd_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
831 readdir->rd_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
832 readdir->rd_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Bernd Schubert832023b2011-08-08 17:38:08 +0200834 if ((cookie == 1) || (cookie == 2) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
836 return nfserr_bad_cookie;
837
838 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800839 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return nfs_ok;
841}
842
J.Bruce Fields71911552006-12-13 00:35:29 -0800843static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800844nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200845 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200847 u->readlink.rl_rqstp = rqstp;
848 u->readlink.rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return nfs_ok;
850}
851
J.Bruce Fields71911552006-12-13 00:35:29 -0800852static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800853nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200854 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200856 struct nfsd4_remove *remove = &u->remove;
Al Virob37ad282006-10-19 23:28:59 -0700857 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400859 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700860 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800861 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
862 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800864 fh_unlock(&cstate->current_fh);
865 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867 return status;
868}
869
J.Bruce Fields71911552006-12-13 00:35:29 -0800870static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800871nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200872 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200874 struct nfsd4_rename *rename = &u->rename;
J. Bruce Fields95424462017-09-15 16:02:52 -0400875 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
J. Bruce Fieldsf8f71d02018-11-06 11:47:20 -0500877 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700878 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800879 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
880 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fields2a6cf942013-04-30 15:28:51 -0400882 if (status)
883 return status;
884 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
885 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
886 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
J.Bruce Fields71911552006-12-13 00:35:29 -0800889static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700890nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200891 union nfsd4_op_u *u)
Andy Adamsondcb488a32007-07-17 04:04:51 -0700892{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200893 struct nfsd4_secinfo *secinfo = &u->secinfo;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700894 struct svc_export *exp;
895 struct dentry *dentry;
896 __be32 err;
897
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400898 err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
899 if (err)
900 return err;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700901 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
902 secinfo->si_name, secinfo->si_namelen,
903 &exp, &dentry);
904 if (err)
905 return err;
J. Bruce Fields2f6fc052016-03-02 16:36:21 -0800906 fh_unlock(&cstate->current_fh);
David Howells2b0143b2015-03-17 22:25:59 +0000907 if (d_really_is_negative(dentry)) {
Andy Adamsondcb488a32007-07-17 04:04:51 -0700908 exp_put(exp);
909 err = nfserr_noent;
910 } else
911 secinfo->si_exp = exp;
912 dput(dentry);
J. Bruce Fields56560b92010-12-16 09:57:15 -0500913 if (cstate->minorversion)
914 /* See rfc 5661 section 2.6.3.1.1.8 */
915 fh_put(&cstate->current_fh);
Andy Adamsondcb488a32007-07-17 04:04:51 -0700916 return err;
917}
918
919static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500920nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200921 union nfsd4_op_u *u)
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500922{
923 __be32 err;
924
Christoph Hellwigeb698532017-05-08 20:58:35 +0200925 switch (u->secinfo_no_name.sin_style) {
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500926 case NFS4_SECINFO_STYLE4_CURRENT_FH:
927 break;
928 case NFS4_SECINFO_STYLE4_PARENT:
929 err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
930 if (err)
931 return err;
932 break;
933 default:
934 return nfserr_inval;
935 }
Kinglong Meebf18f162014-06-10 22:06:44 +0800936
Christoph Hellwigeb698532017-05-08 20:58:35 +0200937 u->secinfo_no_name.sin_exp = exp_get(cstate->current_fh.fh_export);
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500938 fh_put(&cstate->current_fh);
939 return nfs_ok;
940}
941
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400942static void
943nfsd4_secinfo_release(union nfsd4_op_u *u)
944{
945 if (u->secinfo.si_exp)
946 exp_put(u->secinfo.si_exp);
947}
948
Eryu Guanec572b92017-09-29 15:01:10 +0800949static void
950nfsd4_secinfo_no_name_release(union nfsd4_op_u *u)
951{
952 if (u->secinfo_no_name.sin_exp)
953 exp_put(u->secinfo_no_name.sin_exp);
954}
955
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500956static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800957nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200958 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200960 struct nfsd4_setattr *setattr = &u->setattr;
Al Virob37ad282006-10-19 23:28:59 -0700961 __be32 status = nfs_ok;
Al Viro96f6f982012-04-12 23:47:00 -0400962 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200965 status = nfs4_preprocess_stateid_op(rqstp, cstate,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100966 &cstate->current_fh, &setattr->sa_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400967 WR_STATE, NULL, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -0800968 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700969 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800970 return status;
971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Al Viro96f6f982012-04-12 23:47:00 -0400973 err = fh_want_write(&cstate->current_fh);
974 if (err)
975 return nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800977
978 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
979 nfsd_attrmask);
980 if (status)
981 goto out;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800984 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
985 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800987 goto out;
David Quigley18032ca2013-05-02 13:19:10 -0400988 if (setattr->sa_label.len)
989 status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
990 &setattr->sa_label);
991 if (status)
992 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800993 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Arnd Bergmann2a1aa482019-11-03 17:50:18 +0100994 0, (time64_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800995out:
Al Virobad0dcf2011-11-23 12:03:18 -0500996 fh_drop_write(&cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return status;
998}
999
J.Bruce Fields71911552006-12-13 00:35:29 -08001000static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001001nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001002 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001004 struct nfsd4_write *write = &u->write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 stateid_t *stateid = &write->wr_stateid;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001006 struct nfsd_file *nf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001007 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -05001008 unsigned long cnt;
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001009 int nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (write->wr_offset >= OFFSET_MAX)
1012 return nfserr_inval;
1013
Chuck Leverd890be12018-03-27 10:53:27 -04001014 cnt = write->wr_buflen;
1015 trace_nfsd_write_start(rqstp, &cstate->current_fh,
1016 write->wr_offset, cnt);
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001017 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001018 stateid, WR_STATE, &nf, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -08001019 if (status) {
1020 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1021 return status;
1022 }
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 write->wr_how_written = write->wr_stable_how;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Chuck Lever3fd95572018-07-27 11:19:05 -04001026 nvecs = svc_fill_write_vector(rqstp, write->wr_pagelist,
1027 &write->wr_head, write->wr_buflen);
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001028 WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1029
Trond Myklebust16f8f892020-01-06 13:40:29 -05001030 status = nfsd_vfs_write(rqstp, &cstate->current_fh, nf,
Christoph Hellwigaf90f702015-06-18 16:45:00 +02001031 write->wr_offset, rqstp->rq_vec, nvecs, &cnt,
Trond Myklebust19e06632020-01-06 13:40:37 -05001032 write->wr_how_written,
1033 (__be32 *)write->wr_verifier.data);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001034 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
David Shaw31dec252009-03-05 20:16:14 -05001036 write->wr_bytes_written = cnt;
Chuck Leverd890be12018-03-27 10:53:27 -04001037 trace_nfsd_write_done(rqstp, &cstate->current_fh,
1038 write->wr_offset, cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
Anna Schumaker24bab492014-09-26 13:58:27 -04001042static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001043nfsd4_verify_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Jeff Layton5c4583b2019-08-18 14:18:54 -04001044 stateid_t *src_stateid, struct nfsd_file **src,
1045 stateid_t *dst_stateid, struct nfsd_file **dst)
Christoph Hellwigffa01602015-12-03 12:59:52 +01001046{
Christoph Hellwigffa01602015-12-03 12:59:52 +01001047 __be32 status;
1048
Scott Mayhew01310bb2018-11-08 11:11:36 -05001049 if (!cstate->save_fh.fh_dentry)
1050 return nfserr_nofilehandle;
1051
Christoph Hellwigffa01602015-12-03 12:59:52 +01001052 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->save_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001053 src_stateid, RD_STATE, src, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001054 if (status) {
1055 dprintk("NFSD: %s: couldn't process src stateid!\n", __func__);
1056 goto out;
1057 }
1058
1059 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001060 dst_stateid, WR_STATE, dst, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001061 if (status) {
1062 dprintk("NFSD: %s: couldn't process dst stateid!\n", __func__);
1063 goto out_put_src;
1064 }
1065
1066 /* fix up for NFS-specific error code */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001067 if (!S_ISREG(file_inode((*src)->nf_file)->i_mode) ||
1068 !S_ISREG(file_inode((*dst)->nf_file)->i_mode)) {
Christoph Hellwigffa01602015-12-03 12:59:52 +01001069 status = nfserr_wrong_type;
1070 goto out_put_dst;
1071 }
1072
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001073out:
1074 return status;
1075out_put_dst:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001076 nfsd_file_put(*dst);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001077out_put_src:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001078 nfsd_file_put(*src);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001079 goto out;
1080}
1081
1082static __be32
1083nfsd4_clone(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001084 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001085{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001086 struct nfsd4_clone *clone = &u->clone;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001087 struct nfsd_file *src, *dst;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001088 __be32 status;
1089
1090 status = nfsd4_verify_copy(rqstp, cstate, &clone->cl_src_stateid, &src,
1091 &clone->cl_dst_stateid, &dst);
1092 if (status)
1093 goto out;
1094
Trond Myklebustb66ae6d2020-01-06 13:40:32 -05001095 status = nfsd4_clone_file_range(src, clone->cl_src_pos,
1096 dst, clone->cl_dst_pos, clone->cl_count,
Trond Myklebusta25e37262019-11-27 17:05:51 -05001097 EX_ISSYNC(cstate->current_fh.fh_export));
Christoph Hellwigffa01602015-12-03 12:59:52 +01001098
Jeff Layton5c4583b2019-08-18 14:18:54 -04001099 nfsd_file_put(dst);
1100 nfsd_file_put(src);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001101out:
1102 return status;
1103}
1104
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001105void nfs4_put_copy(struct nfsd4_copy *copy)
1106{
1107 if (!refcount_dec_and_test(&copy->refcount))
1108 return;
1109 kfree(copy);
1110}
1111
1112static bool
1113check_and_set_stop_copy(struct nfsd4_copy *copy)
1114{
1115 bool value;
1116
1117 spin_lock(&copy->cp_clp->async_lock);
1118 value = copy->stopped;
1119 if (!copy->stopped)
1120 copy->stopped = true;
1121 spin_unlock(&copy->cp_clp->async_lock);
1122 return value;
1123}
1124
1125static void nfsd4_stop_copy(struct nfsd4_copy *copy)
1126{
1127 /* only 1 thread should stop the copy */
1128 if (!check_and_set_stop_copy(copy))
1129 kthread_stop(copy->copy_task);
1130 nfs4_put_copy(copy);
1131}
1132
1133static struct nfsd4_copy *nfsd4_get_copy(struct nfs4_client *clp)
1134{
1135 struct nfsd4_copy *copy = NULL;
1136
1137 spin_lock(&clp->async_lock);
1138 if (!list_empty(&clp->async_copies)) {
1139 copy = list_first_entry(&clp->async_copies, struct nfsd4_copy,
1140 copies);
1141 refcount_inc(&copy->refcount);
1142 }
1143 spin_unlock(&clp->async_lock);
1144 return copy;
1145}
1146
1147void nfsd4_shutdown_copy(struct nfs4_client *clp)
1148{
1149 struct nfsd4_copy *copy;
1150
1151 while ((copy = nfsd4_get_copy(clp)) != NULL)
1152 nfsd4_stop_copy(copy);
1153}
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001154#ifdef CONFIG_NFSD_V4_2_INTER_SSC
1155
1156extern struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1157 struct nfs_fh *src_fh,
1158 nfs4_stateid *stateid);
1159extern void nfs42_ssc_close(struct file *filep);
1160
1161extern void nfs_sb_deactive(struct super_block *sb);
1162
1163#define NFSD42_INTERSSC_MOUNTOPS "vers=4.2,addr=%s,sec=sys"
1164
Chuck Leverf2453972020-04-06 16:01:42 -04001165/*
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001166 * Support one copy source server for now.
1167 */
1168static __be32
1169nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp,
1170 struct vfsmount **mount)
1171{
1172 struct file_system_type *type;
1173 struct vfsmount *ss_mnt;
1174 struct nfs42_netaddr *naddr;
1175 struct sockaddr_storage tmp_addr;
1176 size_t tmp_addrlen, match_netid_len = 3;
1177 char *startsep = "", *endsep = "", *match_netid = "tcp";
1178 char *ipaddr, *dev_name, *raw_data;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001179 int len, raw_len;
1180 __be32 status = nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001181
1182 naddr = &nss->u.nl4_addr;
1183 tmp_addrlen = rpc_uaddr2sockaddr(SVC_NET(rqstp), naddr->addr,
1184 naddr->addr_len,
1185 (struct sockaddr *)&tmp_addr,
1186 sizeof(tmp_addr));
1187 if (tmp_addrlen == 0)
1188 goto out_err;
1189
1190 if (tmp_addr.ss_family == AF_INET6) {
1191 startsep = "[";
1192 endsep = "]";
1193 match_netid = "tcp6";
1194 match_netid_len = 4;
1195 }
1196
1197 if (naddr->netid_len != match_netid_len ||
1198 strncmp(naddr->netid, match_netid, naddr->netid_len))
1199 goto out_err;
1200
1201 /* Construct the raw data for the vfs_kern_mount call */
1202 len = RPC_MAX_ADDRBUFLEN + 1;
1203 ipaddr = kzalloc(len, GFP_KERNEL);
1204 if (!ipaddr)
1205 goto out_err;
1206
1207 rpc_ntop((struct sockaddr *)&tmp_addr, ipaddr, len);
1208
1209 /* 2 for ipv6 endsep and startsep. 3 for ":/" and trailing '/0'*/
1210
1211 raw_len = strlen(NFSD42_INTERSSC_MOUNTOPS) + strlen(ipaddr);
1212 raw_data = kzalloc(raw_len, GFP_KERNEL);
1213 if (!raw_data)
1214 goto out_free_ipaddr;
1215
1216 snprintf(raw_data, raw_len, NFSD42_INTERSSC_MOUNTOPS, ipaddr);
1217
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001218 status = nfserr_nodev;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001219 type = get_fs_type("nfs");
1220 if (!type)
1221 goto out_free_rawdata;
1222
1223 /* Set the server:<export> for the vfs_kern_mount call */
1224 dev_name = kzalloc(len + 5, GFP_KERNEL);
1225 if (!dev_name)
1226 goto out_free_rawdata;
1227 snprintf(dev_name, len + 5, "%s%s%s:/", startsep, ipaddr, endsep);
1228
1229 /* Use an 'internal' mount: SB_KERNMOUNT -> MNT_INTERNAL */
1230 ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data);
1231 module_put(type->owner);
1232 if (IS_ERR(ss_mnt))
1233 goto out_free_devname;
1234
1235 status = 0;
1236 *mount = ss_mnt;
1237
1238out_free_devname:
1239 kfree(dev_name);
1240out_free_rawdata:
1241 kfree(raw_data);
1242out_free_ipaddr:
1243 kfree(ipaddr);
1244out_err:
1245 return status;
1246}
1247
1248static void
1249nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1250{
Dai Ngo0cfcd402020-10-18 23:42:49 -04001251 nfs_do_sb_deactive(ss_mnt->mnt_sb);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001252 mntput(ss_mnt);
1253}
1254
Chuck Leverf2453972020-04-06 16:01:42 -04001255/*
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001256 * Verify COPY destination stateid.
Chuck Leverf2453972020-04-06 16:01:42 -04001257 *
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001258 * Connect to the source server with NFSv4.1.
1259 * Create the source struct file for nfsd_copy_range.
1260 * Called with COPY cstate:
1261 * SAVED_FH: source filehandle
1262 * CURRENT_FH: destination filehandle
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001263 */
1264static __be32
1265nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1266 struct nfsd4_compound_state *cstate,
1267 struct nfsd4_copy *copy, struct vfsmount **mount)
1268{
1269 struct svc_fh *s_fh = NULL;
1270 stateid_t *s_stid = &copy->cp_src_stateid;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001271 __be32 status = nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001272
1273 /* Verify the destination stateid and set dst struct file*/
1274 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1275 &copy->cp_dst_stateid,
1276 WR_STATE, &copy->nf_dst, NULL);
1277 if (status)
1278 goto out;
1279
1280 status = nfsd4_interssc_connect(&copy->cp_src, rqstp, mount);
1281 if (status)
1282 goto out;
1283
1284 s_fh = &cstate->save_fh;
1285
1286 copy->c_fh.size = s_fh->fh_handle.fh_size;
1287 memcpy(copy->c_fh.data, &s_fh->fh_handle.fh_base, copy->c_fh.size);
Olga Kornievskaia3f9544c2019-12-04 15:13:53 -05001288 copy->stateid.seqid = cpu_to_be32(s_stid->si_generation);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001289 memcpy(copy->stateid.other, (void *)&s_stid->si_opaque,
1290 sizeof(stateid_opaque_t));
1291
1292 status = 0;
1293out:
1294 return status;
1295}
1296
1297static void
1298nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1299 struct nfsd_file *dst)
1300{
1301 nfs42_ssc_close(src->nf_file);
Dai Ngo36e1e5b2020-10-29 15:07:15 -04001302 /* 'src' is freed by nfsd4_do_async_copy */
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001303 nfsd_file_put(dst);
1304 mntput(ss_mnt);
1305}
1306
1307#else /* CONFIG_NFSD_V4_2_INTER_SSC */
1308
1309static __be32
1310nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1311 struct nfsd4_compound_state *cstate,
1312 struct nfsd4_copy *copy,
1313 struct vfsmount **mount)
1314{
1315 *mount = NULL;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001316 return nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001317}
1318
1319static void
1320nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1321 struct nfsd_file *dst)
1322{
1323}
1324
1325static void
1326nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1327{
1328}
1329
1330static struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1331 struct nfs_fh *src_fh,
1332 nfs4_stateid *stateid)
1333{
1334 return NULL;
1335}
1336#endif /* CONFIG_NFSD_V4_2_INTER_SSC */
1337
1338static __be32
1339nfsd4_setup_intra_ssc(struct svc_rqst *rqstp,
1340 struct nfsd4_compound_state *cstate,
1341 struct nfsd4_copy *copy)
1342{
1343 return nfsd4_verify_copy(rqstp, cstate, &copy->cp_src_stateid,
1344 &copy->nf_src, &copy->cp_dst_stateid,
1345 &copy->nf_dst);
1346}
1347
1348static void
1349nfsd4_cleanup_intra_ssc(struct nfsd_file *src, struct nfsd_file *dst)
1350{
1351 nfsd_file_put(src);
1352 nfsd_file_put(dst);
1353}
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001354
1355static void nfsd4_cb_offload_release(struct nfsd4_callback *cb)
1356{
1357 struct nfsd4_copy *copy = container_of(cb, struct nfsd4_copy, cp_cb);
1358
1359 nfs4_put_copy(copy);
1360}
1361
1362static int nfsd4_cb_offload_done(struct nfsd4_callback *cb,
1363 struct rpc_task *task)
1364{
1365 return 1;
1366}
1367
1368static const struct nfsd4_callback_ops nfsd4_cb_offload_ops = {
1369 .release = nfsd4_cb_offload_release,
1370 .done = nfsd4_cb_offload_done
1371};
1372
1373static void nfsd4_init_copy_res(struct nfsd4_copy *copy, bool sync)
1374{
1375 copy->cp_res.wr_stable_how = NFS_UNSTABLE;
1376 copy->cp_synchronous = sync;
1377 gen_boot_verifier(&copy->cp_res.wr_verifier, copy->cp_clp->net);
1378}
1379
1380static ssize_t _nfsd_copy_file_range(struct nfsd4_copy *copy)
1381{
1382 ssize_t bytes_copied = 0;
1383 size_t bytes_total = copy->cp_count;
1384 u64 src_pos = copy->cp_src_pos;
1385 u64 dst_pos = copy->cp_dst_pos;
1386
1387 do {
1388 if (kthread_should_stop())
1389 break;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001390 bytes_copied = nfsd_copy_file_range(copy->nf_src->nf_file,
1391 src_pos, copy->nf_dst->nf_file, dst_pos,
1392 bytes_total);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001393 if (bytes_copied <= 0)
1394 break;
1395 bytes_total -= bytes_copied;
1396 copy->cp_res.wr_bytes_written += bytes_copied;
1397 src_pos += bytes_copied;
1398 dst_pos += bytes_copied;
1399 } while (bytes_total > 0 && !copy->cp_synchronous);
1400 return bytes_copied;
1401}
1402
1403static __be32 nfsd4_do_copy(struct nfsd4_copy *copy, bool sync)
1404{
1405 __be32 status;
1406 ssize_t bytes;
1407
1408 bytes = _nfsd_copy_file_range(copy);
1409 /* for async copy, we ignore the error, client can always retry
1410 * to get the error
1411 */
1412 if (bytes < 0 && !copy->cp_res.wr_bytes_written)
1413 status = nfserrno(bytes);
1414 else {
1415 nfsd4_init_copy_res(copy, sync);
1416 status = nfs_ok;
1417 }
1418
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001419 if (!copy->cp_intra) /* Inter server SSC */
1420 nfsd4_cleanup_inter_ssc(copy->ss_mnt, copy->nf_src,
1421 copy->nf_dst);
1422 else
1423 nfsd4_cleanup_intra_ssc(copy->nf_src, copy->nf_dst);
1424
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001425 return status;
1426}
1427
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001428static int dup_copy_fields(struct nfsd4_copy *src, struct nfsd4_copy *dst)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001429{
1430 dst->cp_src_pos = src->cp_src_pos;
1431 dst->cp_dst_pos = src->cp_dst_pos;
1432 dst->cp_count = src->cp_count;
1433 dst->cp_synchronous = src->cp_synchronous;
1434 memcpy(&dst->cp_res, &src->cp_res, sizeof(src->cp_res));
1435 memcpy(&dst->fh, &src->fh, sizeof(src->fh));
1436 dst->cp_clp = src->cp_clp;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001437 dst->nf_dst = nfsd_file_get(src->nf_dst);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001438 dst->cp_intra = src->cp_intra;
1439 if (src->cp_intra) /* for inter, file_src doesn't exist yet */
1440 dst->nf_src = nfsd_file_get(src->nf_src);
1441
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001442 memcpy(&dst->cp_stateid, &src->cp_stateid, sizeof(src->cp_stateid));
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001443 memcpy(&dst->cp_src, &src->cp_src, sizeof(struct nl4_server));
1444 memcpy(&dst->stateid, &src->stateid, sizeof(src->stateid));
1445 memcpy(&dst->c_fh, &src->c_fh, sizeof(src->c_fh));
1446 dst->ss_mnt = src->ss_mnt;
1447
1448 return 0;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001449}
1450
1451static void cleanup_async_copy(struct nfsd4_copy *copy)
1452{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001453 nfs4_free_copy_state(copy);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001454 nfsd_file_put(copy->nf_dst);
Olga Kornievskaia2e577f02019-12-04 15:13:54 -05001455 if (copy->cp_intra)
1456 nfsd_file_put(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001457 spin_lock(&copy->cp_clp->async_lock);
1458 list_del(&copy->copies);
1459 spin_unlock(&copy->cp_clp->async_lock);
1460 nfs4_put_copy(copy);
1461}
1462
1463static int nfsd4_do_async_copy(void *data)
1464{
1465 struct nfsd4_copy *copy = (struct nfsd4_copy *)data;
1466 struct nfsd4_copy *cb_copy;
1467
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001468 if (!copy->cp_intra) { /* Inter server SSC */
1469 copy->nf_src = kzalloc(sizeof(struct nfsd_file), GFP_KERNEL);
1470 if (!copy->nf_src) {
1471 copy->nfserr = nfserr_serverfault;
1472 nfsd4_interssc_disconnect(copy->ss_mnt);
1473 goto do_callback;
1474 }
1475 copy->nf_src->nf_file = nfs42_ssc_open(copy->ss_mnt, &copy->c_fh,
1476 &copy->stateid);
1477 if (IS_ERR(copy->nf_src->nf_file)) {
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001478 copy->nfserr = nfserr_offload_denied;
1479 nfsd4_interssc_disconnect(copy->ss_mnt);
1480 goto do_callback;
1481 }
1482 }
1483
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001484 copy->nfserr = nfsd4_do_copy(copy, 0);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001485do_callback:
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001486 cb_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1487 if (!cb_copy)
1488 goto out;
Dai Ngo49a36132020-10-29 15:07:16 -04001489 refcount_set(&cb_copy->refcount, 1);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001490 memcpy(&cb_copy->cp_res, &copy->cp_res, sizeof(copy->cp_res));
1491 cb_copy->cp_clp = copy->cp_clp;
1492 cb_copy->nfserr = copy->nfserr;
1493 memcpy(&cb_copy->fh, &copy->fh, sizeof(copy->fh));
1494 nfsd4_init_cb(&cb_copy->cp_cb, cb_copy->cp_clp,
1495 &nfsd4_cb_offload_ops, NFSPROC4_CLNT_CB_OFFLOAD);
1496 nfsd4_run_cb(&cb_copy->cp_cb);
1497out:
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001498 if (!copy->cp_intra)
1499 kfree(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001500 cleanup_async_copy(copy);
1501 return 0;
1502}
1503
Christoph Hellwigffa01602015-12-03 12:59:52 +01001504static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001505nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001506 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001507{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001508 struct nfsd4_copy *copy = &u->copy;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001509 __be32 status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001510 struct nfsd4_copy *async_copy = NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001511
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001512 if (!copy->cp_intra) { /* Inter server SSC */
1513 if (!inter_copy_offload_enable || copy->cp_synchronous) {
1514 status = nfserr_notsupp;
1515 goto out;
1516 }
1517 status = nfsd4_setup_inter_ssc(rqstp, cstate, copy,
1518 &copy->ss_mnt);
1519 if (status)
1520 return nfserr_offload_denied;
1521 } else {
1522 status = nfsd4_setup_intra_ssc(rqstp, cstate, copy);
1523 if (status)
1524 return status;
1525 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001526
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001527 copy->cp_clp = cstate->clp;
1528 memcpy(&copy->fh, &cstate->current_fh.fh_handle,
1529 sizeof(struct knfsd_fh));
1530 if (!copy->cp_synchronous) {
1531 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001532
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001533 status = nfserrno(-ENOMEM);
1534 async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1535 if (!async_copy)
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001536 goto out_err;
1537 if (!nfs4_init_copy_state(nn, copy))
1538 goto out_err;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001539 refcount_set(&async_copy->refcount, 1);
1540 memcpy(&copy->cp_res.cb_stateid, &copy->cp_stateid,
1541 sizeof(copy->cp_stateid));
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001542 status = dup_copy_fields(copy, async_copy);
1543 if (status)
1544 goto out_err;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001545 async_copy->copy_task = kthread_create(nfsd4_do_async_copy,
1546 async_copy, "%s", "copy thread");
1547 if (IS_ERR(async_copy->copy_task))
1548 goto out_err;
1549 spin_lock(&async_copy->cp_clp->async_lock);
1550 list_add(&async_copy->copies,
1551 &async_copy->cp_clp->async_copies);
1552 spin_unlock(&async_copy->cp_clp->async_lock);
1553 wake_up_process(async_copy->copy_task);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001554 status = nfs_ok;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001555 } else {
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001556 status = nfsd4_do_copy(copy, 1);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001557 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001558out:
1559 return status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001560out_err:
Olga Kornievskaia18f428d2019-12-04 15:13:54 -05001561 if (async_copy)
1562 cleanup_async_copy(async_copy);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001563 status = nfserrno(-ENOMEM);
1564 if (!copy->cp_intra)
1565 nfsd4_interssc_disconnect(copy->ss_mnt);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001566 goto out;
1567}
1568
1569struct nfsd4_copy *
1570find_async_copy(struct nfs4_client *clp, stateid_t *stateid)
1571{
1572 struct nfsd4_copy *copy;
1573
1574 spin_lock(&clp->async_lock);
1575 list_for_each_entry(copy, &clp->async_copies, copies) {
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001576 if (memcmp(&copy->cp_stateid.stid, stateid, NFS4_STATEID_SIZE))
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001577 continue;
1578 refcount_inc(&copy->refcount);
1579 spin_unlock(&clp->async_lock);
1580 return copy;
1581 }
1582 spin_unlock(&clp->async_lock);
1583 return NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001584}
1585
1586static __be32
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001587nfsd4_offload_cancel(struct svc_rqst *rqstp,
1588 struct nfsd4_compound_state *cstate,
1589 union nfsd4_op_u *u)
1590{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001591 struct nfsd4_offload_status *os = &u->offload_status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001592 struct nfsd4_copy *copy;
1593 struct nfs4_client *clp = cstate->clp;
1594
1595 copy = find_async_copy(clp, &os->stateid);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001596 if (!copy) {
1597 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001598
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001599 return manage_cpntf_state(nn, &os->stateid, clp, NULL);
1600 } else
1601 nfsd4_stop_copy(copy);
1602
1603 return nfs_ok;
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001604}
1605
1606static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04001607nfsd4_copy_notify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1608 union nfsd4_op_u *u)
1609{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001610 struct nfsd4_copy_notify *cn = &u->copy_notify;
1611 __be32 status;
1612 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1613 struct nfs4_stid *stid;
1614 struct nfs4_cpntf_state *cps;
1615 struct nfs4_client *clp = cstate->clp;
1616
1617 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1618 &cn->cpn_src_stateid, RD_STATE, NULL,
1619 &stid);
1620 if (status)
1621 return status;
1622
1623 cn->cpn_sec = nn->nfsd4_lease;
1624 cn->cpn_nsec = 0;
1625
1626 status = nfserrno(-ENOMEM);
1627 cps = nfs4_alloc_init_cpntf_state(nn, stid);
1628 if (!cps)
1629 goto out;
1630 memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.stid, sizeof(stateid_t));
1631 memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t));
1632 memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t));
1633
1634 /* For now, only return one server address in cpn_src, the
1635 * address used by the client to connect to this server.
1636 */
1637 cn->cpn_src.nl4_type = NL4_NETADDR;
1638 status = nfsd4_set_netaddr((struct sockaddr *)&rqstp->rq_daddr,
1639 &cn->cpn_src.u.nl4_addr);
1640 WARN_ON_ONCE(status);
1641 if (status) {
1642 nfs4_put_cpntf_state(nn, cps);
1643 goto out;
1644 }
1645out:
1646 nfs4_put_stid(stid);
1647 return status;
Olga Kornievskaia51911862019-08-08 11:14:59 -04001648}
1649
1650static __be32
Anna Schumaker95d871f2014-11-07 14:44:26 -05001651nfsd4_fallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1652 struct nfsd4_fallocate *fallocate, int flags)
1653{
J. Bruce Fields0d4d6722018-11-06 17:44:03 -05001654 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001655 struct nfsd_file *nf;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001656
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001657 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001658 &fallocate->falloc_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001659 WR_STATE, &nf, NULL);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001660 if (status != nfs_ok) {
1661 dprintk("NFSD: nfsd4_fallocate: couldn't process stateid!\n");
1662 return status;
1663 }
1664
Jeff Layton5c4583b2019-08-18 14:18:54 -04001665 status = nfsd4_vfs_fallocate(rqstp, &cstate->current_fh, nf->nf_file,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001666 fallocate->falloc_offset,
1667 fallocate->falloc_length,
1668 flags);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001669 nfsd_file_put(nf);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001670 return status;
1671}
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001672static __be32
1673nfsd4_offload_status(struct svc_rqst *rqstp,
1674 struct nfsd4_compound_state *cstate,
1675 union nfsd4_op_u *u)
1676{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001677 struct nfsd4_offload_status *os = &u->offload_status;
1678 __be32 status = 0;
1679 struct nfsd4_copy *copy;
1680 struct nfs4_client *clp = cstate->clp;
1681
1682 copy = find_async_copy(clp, &os->stateid);
1683 if (copy) {
1684 os->count = copy->cp_res.wr_bytes_written;
1685 nfs4_put_copy(copy);
1686 } else
1687 status = nfserr_bad_stateid;
1688
1689 return status;
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001690}
Anna Schumaker95d871f2014-11-07 14:44:26 -05001691
1692static __be32
1693nfsd4_allocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001694 union nfsd4_op_u *u)
Anna Schumaker95d871f2014-11-07 14:44:26 -05001695{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001696 return nfsd4_fallocate(rqstp, cstate, &u->allocate, 0);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001697}
1698
1699static __be32
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001700nfsd4_deallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001701 union nfsd4_op_u *u)
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001702{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001703 return nfsd4_fallocate(rqstp, cstate, &u->deallocate,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001704 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE);
1705}
1706
1707static __be32
Anna Schumaker24bab492014-09-26 13:58:27 -04001708nfsd4_seek(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001709 union nfsd4_op_u *u)
Anna Schumaker24bab492014-09-26 13:58:27 -04001710{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001711 struct nfsd4_seek *seek = &u->seek;
Anna Schumaker24bab492014-09-26 13:58:27 -04001712 int whence;
1713 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001714 struct nfsd_file *nf;
Anna Schumaker24bab492014-09-26 13:58:27 -04001715
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001716 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker24bab492014-09-26 13:58:27 -04001717 &seek->seek_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001718 RD_STATE, &nf, NULL);
Anna Schumaker24bab492014-09-26 13:58:27 -04001719 if (status) {
1720 dprintk("NFSD: nfsd4_seek: couldn't process stateid!\n");
1721 return status;
1722 }
1723
1724 switch (seek->seek_whence) {
1725 case NFS4_CONTENT_DATA:
1726 whence = SEEK_DATA;
1727 break;
1728 case NFS4_CONTENT_HOLE:
1729 whence = SEEK_HOLE;
1730 break;
1731 default:
1732 status = nfserr_union_notsupp;
1733 goto out;
1734 }
1735
1736 /*
1737 * Note: This call does change file->f_pos, but nothing in NFSD
1738 * should ever file->f_pos.
1739 */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001740 seek->seek_pos = vfs_llseek(nf->nf_file, seek->seek_offset, whence);
Anna Schumaker24bab492014-09-26 13:58:27 -04001741 if (seek->seek_pos < 0)
1742 status = nfserrno(seek->seek_pos);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001743 else if (seek->seek_pos >= i_size_read(file_inode(nf->nf_file)))
Anna Schumaker24bab492014-09-26 13:58:27 -04001744 seek->seek_eof = true;
1745
1746out:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001747 nfsd_file_put(nf);
Anna Schumaker24bab492014-09-26 13:58:27 -04001748 return status;
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/* This routine never returns NFS_OK! If there are no other errors, it
1752 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1753 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
1754 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1755 */
Al Virob37ad282006-10-19 23:28:59 -07001756static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001757_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001758 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Al Viro2ebbc012006-10-19 23:28:58 -07001760 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int count;
Al Virob37ad282006-10-19 23:28:59 -07001762 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001764 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (status)
1766 return status;
1767
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001768 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1769 if (status)
1770 return status;
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1773 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1774 return nfserr_inval;
1775 if (verify->ve_attrlen & 3)
1776 return nfserr_inval;
1777
1778 /* count in words:
1779 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1780 */
1781 count = 4 + (verify->ve_attrlen >> 2);
1782 buf = kmalloc(count << 2, GFP_KERNEL);
1783 if (!buf)
J. Bruce Fields3e772462011-08-10 19:07:33 -04001784 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
J. Bruce Fields84822d02012-12-14 17:57:50 -05001786 p = buf;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001787 status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001788 cstate->current_fh.fh_export,
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001789 cstate->current_fh.fh_dentry,
1790 verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001791 rqstp, 0);
J. Bruce Fields41ae6e72013-08-21 15:32:50 -04001792 /*
1793 * If nfsd4_encode_fattr() ran out of space, assume that's because
1794 * the attributes are longer (hence different) than those given:
1795 */
J. Bruce Fields84822d02012-12-14 17:57:50 -05001796 if (status == nfserr_resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 status = nfserr_not_same;
1798 if (status)
1799 goto out_kfree;
1800
Benny Halevy95ec28c2009-04-03 08:29:08 +03001801 /* skip bitmap */
1802 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 status = nfserr_not_same;
1804 if (ntohl(*p++) != verify->ve_attrlen)
1805 goto out_kfree;
1806 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1807 status = nfserr_same;
1808
1809out_kfree:
1810 kfree(buf);
1811 return status;
1812}
1813
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001814static __be32
1815nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001816 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001817{
1818 __be32 status;
1819
Christoph Hellwigeb698532017-05-08 20:58:35 +02001820 status = _nfsd4_verify(rqstp, cstate, &u->verify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001821 return status == nfserr_not_same ? nfs_ok : status;
1822}
1823
1824static __be32
1825nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001826 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001827{
1828 __be32 status;
1829
Christoph Hellwigeb698532017-05-08 20:58:35 +02001830 status = _nfsd4_verify(rqstp, cstate, &u->nverify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001831 return status == nfserr_same ? nfs_ok : status;
1832}
1833
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001834#ifdef CONFIG_NFSD_PNFS
1835static const struct nfsd4_layout_ops *
1836nfsd4_layout_verify(struct svc_export *exp, unsigned int layout_type)
1837{
Jeff Layton8a4c3922016-07-10 15:55:58 -04001838 if (!exp->ex_layout_types) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001839 dprintk("%s: export does not support pNFS\n", __func__);
1840 return NULL;
1841 }
1842
Ari Kauppib550a322017-05-05 16:07:55 -04001843 if (layout_type >= LAYOUT_TYPE_MAX ||
1844 !(exp->ex_layout_types & (1 << layout_type))) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001845 dprintk("%s: layout type %d not supported\n",
1846 __func__, layout_type);
1847 return NULL;
1848 }
1849
1850 return nfsd4_layout_ops[layout_type];
1851}
1852
1853static __be32
1854nfsd4_getdeviceinfo(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001855 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001856{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001857 struct nfsd4_getdeviceinfo *gdp = &u->getdeviceinfo;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001858 const struct nfsd4_layout_ops *ops;
1859 struct nfsd4_deviceid_map *map;
1860 struct svc_export *exp;
1861 __be32 nfserr;
1862
1863 dprintk("%s: layout_type %u dev_id [0x%llx:0x%x] maxcnt %u\n",
1864 __func__,
1865 gdp->gd_layout_type,
1866 gdp->gd_devid.fsid_idx, gdp->gd_devid.generation,
1867 gdp->gd_maxcount);
1868
1869 map = nfsd4_find_devid_map(gdp->gd_devid.fsid_idx);
1870 if (!map) {
1871 dprintk("%s: couldn't find device ID to export mapping!\n",
1872 __func__);
1873 return nfserr_noent;
1874 }
1875
1876 exp = rqst_exp_find(rqstp, map->fsid_type, map->fsid);
1877 if (IS_ERR(exp)) {
1878 dprintk("%s: could not find device id\n", __func__);
1879 return nfserr_noent;
1880 }
1881
1882 nfserr = nfserr_layoutunavailable;
1883 ops = nfsd4_layout_verify(exp, gdp->gd_layout_type);
1884 if (!ops)
1885 goto out;
1886
1887 nfserr = nfs_ok;
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01001888 if (gdp->gd_maxcount != 0) {
1889 nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb,
Tom Haynesd7c920d2016-06-14 13:41:27 -07001890 rqstp, cstate->session->se_client, gdp);
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01001891 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001892
1893 gdp->gd_notify_types &= ops->notify_types;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001894out:
Kinglong Meea1420382015-03-15 23:12:15 +08001895 exp_put(exp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001896 return nfserr;
1897}
1898
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04001899static void
1900nfsd4_getdeviceinfo_release(union nfsd4_op_u *u)
1901{
1902 kfree(u->getdeviceinfo.gd_device);
1903}
1904
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001905static __be32
1906nfsd4_layoutget(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001907 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001908{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001909 struct nfsd4_layoutget *lgp = &u->layoutget;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001910 struct svc_fh *current_fh = &cstate->current_fh;
1911 const struct nfsd4_layout_ops *ops;
1912 struct nfs4_layout_stateid *ls;
1913 __be32 nfserr;
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001914 int accmode = NFSD_MAY_READ_IF_EXEC;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001915
1916 switch (lgp->lg_seg.iomode) {
1917 case IOMODE_READ:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001918 accmode |= NFSD_MAY_READ;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001919 break;
1920 case IOMODE_RW:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05001921 accmode |= NFSD_MAY_READ | NFSD_MAY_WRITE;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001922 break;
1923 default:
1924 dprintk("%s: invalid iomode %d\n",
1925 __func__, lgp->lg_seg.iomode);
1926 nfserr = nfserr_badiomode;
1927 goto out;
1928 }
1929
1930 nfserr = fh_verify(rqstp, current_fh, 0, accmode);
1931 if (nfserr)
1932 goto out;
1933
1934 nfserr = nfserr_layoutunavailable;
1935 ops = nfsd4_layout_verify(current_fh->fh_export, lgp->lg_layout_type);
1936 if (!ops)
1937 goto out;
1938
1939 /*
1940 * Verify minlength and range as per RFC5661:
1941 * o If loga_length is less than loga_minlength,
1942 * the metadata server MUST return NFS4ERR_INVAL.
1943 * o If the sum of loga_offset and loga_minlength exceeds
1944 * NFS4_UINT64_MAX, and loga_minlength is not
1945 * NFS4_UINT64_MAX, the error NFS4ERR_INVAL MUST result.
1946 * o If the sum of loga_offset and loga_length exceeds
1947 * NFS4_UINT64_MAX, and loga_length is not NFS4_UINT64_MAX,
1948 * the error NFS4ERR_INVAL MUST result.
1949 */
1950 nfserr = nfserr_inval;
1951 if (lgp->lg_seg.length < lgp->lg_minlength ||
1952 (lgp->lg_minlength != NFS4_MAX_UINT64 &&
1953 lgp->lg_minlength > NFS4_MAX_UINT64 - lgp->lg_seg.offset) ||
1954 (lgp->lg_seg.length != NFS4_MAX_UINT64 &&
1955 lgp->lg_seg.length > NFS4_MAX_UINT64 - lgp->lg_seg.offset))
1956 goto out;
1957 if (lgp->lg_seg.length == 0)
1958 goto out;
1959
1960 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lgp->lg_sid,
1961 true, lgp->lg_layout_type, &ls);
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05001962 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04001963 trace_nfsd_layout_get_lookup_fail(&lgp->lg_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001964 goto out;
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05001965 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001966
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02001967 nfserr = nfserr_recallconflict;
1968 if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls))
1969 goto out_put_stid;
1970
David Howells2b0143b2015-03-17 22:25:59 +00001971 nfserr = ops->proc_layoutget(d_inode(current_fh->fh_dentry),
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001972 current_fh, lgp);
1973 if (nfserr)
1974 goto out_put_stid;
1975
1976 nfserr = nfsd4_insert_layout(lgp, ls);
1977
1978out_put_stid:
Jeff Laytoncc8a5532015-09-17 07:58:24 -04001979 mutex_unlock(&ls->ls_mutex);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001980 nfs4_put_stid(&ls->ls_stid);
1981out:
1982 return nfserr;
1983}
1984
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04001985static void
1986nfsd4_layoutget_release(union nfsd4_op_u *u)
1987{
1988 kfree(u->layoutget.lg_content);
1989}
1990
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001991static __be32
1992nfsd4_layoutcommit(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001993 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001994{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001995 struct nfsd4_layoutcommit *lcp = &u->layoutcommit;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001996 const struct nfsd4_layout_seg *seg = &lcp->lc_seg;
1997 struct svc_fh *current_fh = &cstate->current_fh;
1998 const struct nfsd4_layout_ops *ops;
1999 loff_t new_size = lcp->lc_last_wr + 1;
2000 struct inode *inode;
2001 struct nfs4_layout_stateid *ls;
2002 __be32 nfserr;
2003
2004 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE);
2005 if (nfserr)
2006 goto out;
2007
2008 nfserr = nfserr_layoutunavailable;
2009 ops = nfsd4_layout_verify(current_fh->fh_export, lcp->lc_layout_type);
2010 if (!ops)
2011 goto out;
David Howells2b0143b2015-03-17 22:25:59 +00002012 inode = d_inode(current_fh->fh_dentry);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002013
2014 nfserr = nfserr_inval;
2015 if (new_size <= seg->offset) {
2016 dprintk("pnfsd: last write before layout segment\n");
2017 goto out;
2018 }
2019 if (new_size > seg->offset + seg->length) {
2020 dprintk("pnfsd: last write beyond layout segment\n");
2021 goto out;
2022 }
2023 if (!lcp->lc_newoffset && new_size > i_size_read(inode)) {
2024 dprintk("pnfsd: layoutcommit beyond EOF\n");
2025 goto out;
2026 }
2027
2028 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lcp->lc_sid,
2029 false, lcp->lc_layout_type,
2030 &ls);
2031 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04002032 trace_nfsd_layout_commit_lookup_fail(&lcp->lc_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002033 /* fixup error code as per RFC5661 */
2034 if (nfserr == nfserr_bad_stateid)
2035 nfserr = nfserr_badlayout;
2036 goto out;
2037 }
2038
Jeff Laytoncc8a5532015-09-17 07:58:24 -04002039 /* LAYOUTCOMMIT does not require any serialization */
2040 mutex_unlock(&ls->ls_mutex);
2041
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002042 if (new_size > i_size_read(inode)) {
2043 lcp->lc_size_chg = 1;
2044 lcp->lc_newsize = new_size;
2045 } else {
2046 lcp->lc_size_chg = 0;
2047 }
2048
Kinglong Meed8398fc2015-07-07 10:12:03 +08002049 nfserr = ops->proc_layoutcommit(inode, lcp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002050 nfs4_put_stid(&ls->ls_stid);
2051out:
2052 return nfserr;
2053}
2054
2055static __be32
2056nfsd4_layoutreturn(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002057 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002058{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002059 struct nfsd4_layoutreturn *lrp = &u->layoutreturn;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002060 struct svc_fh *current_fh = &cstate->current_fh;
2061 __be32 nfserr;
2062
2063 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_NOP);
2064 if (nfserr)
2065 goto out;
2066
2067 nfserr = nfserr_layoutunavailable;
2068 if (!nfsd4_layout_verify(current_fh->fh_export, lrp->lr_layout_type))
2069 goto out;
2070
2071 switch (lrp->lr_seg.iomode) {
2072 case IOMODE_READ:
2073 case IOMODE_RW:
2074 case IOMODE_ANY:
2075 break;
2076 default:
2077 dprintk("%s: invalid iomode %d\n", __func__,
2078 lrp->lr_seg.iomode);
2079 nfserr = nfserr_inval;
2080 goto out;
2081 }
2082
2083 switch (lrp->lr_return_type) {
2084 case RETURN_FILE:
2085 nfserr = nfsd4_return_file_layouts(rqstp, cstate, lrp);
2086 break;
2087 case RETURN_FSID:
2088 case RETURN_ALL:
2089 nfserr = nfsd4_return_client_layouts(rqstp, cstate, lrp);
2090 break;
2091 default:
2092 dprintk("%s: invalid return_type %d\n", __func__,
2093 lrp->lr_return_type);
2094 nfserr = nfserr_inval;
2095 break;
2096 }
2097out:
2098 return nfserr;
2099}
2100#endif /* CONFIG_NFSD_PNFS */
2101
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002102static __be32
2103nfsd4_getxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2104 union nfsd4_op_u *u)
2105{
2106 struct nfsd4_getxattr *getxattr = &u->getxattr;
2107
2108 return nfsd_getxattr(rqstp, &cstate->current_fh,
2109 getxattr->getxa_name, &getxattr->getxa_buf,
2110 &getxattr->getxa_len);
2111}
2112
2113static __be32
2114nfsd4_setxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2115 union nfsd4_op_u *u)
2116{
2117 struct nfsd4_setxattr *setxattr = &u->setxattr;
2118 __be32 ret;
2119
2120 if (opens_in_grace(SVC_NET(rqstp)))
2121 return nfserr_grace;
2122
2123 ret = nfsd_setxattr(rqstp, &cstate->current_fh, setxattr->setxa_name,
2124 setxattr->setxa_buf, setxattr->setxa_len,
2125 setxattr->setxa_flags);
2126
2127 if (!ret)
2128 set_change_info(&setxattr->setxa_cinfo, &cstate->current_fh);
2129
2130 return ret;
2131}
2132
2133static __be32
2134nfsd4_listxattrs(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2135 union nfsd4_op_u *u)
2136{
2137 /*
2138 * Get the entire list, then copy out only the user attributes
2139 * in the encode function.
2140 */
2141 return nfsd_listxattr(rqstp, &cstate->current_fh,
2142 &u->listxattrs.lsxa_buf, &u->listxattrs.lsxa_len);
2143}
2144
2145static __be32
2146nfsd4_removexattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2147 union nfsd4_op_u *u)
2148{
2149 struct nfsd4_removexattr *removexattr = &u->removexattr;
2150 __be32 ret;
2151
2152 if (opens_in_grace(SVC_NET(rqstp)))
2153 return nfserr_grace;
2154
2155 ret = nfsd_removexattr(rqstp, &cstate->current_fh,
2156 removexattr->rmxa_name);
2157
2158 if (!ret)
2159 set_change_info(&removexattr->rmxa_cinfo, &cstate->current_fh);
2160
2161 return ret;
2162}
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164/*
2165 * NULL call.
2166 */
Al Viro7111c662006-10-19 23:28:45 -07002167static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002168nfsd4_proc_null(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
Chuck Levercc028a12020-10-02 15:52:44 -04002170 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
2172
Shankar Anande2b20952006-07-10 04:45:44 -07002173static inline void nfsd4_increment_op_stats(u32 opnum)
2174{
2175 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
2176 nfsdstats.nfs4_opcount[opnum]++;
2177}
2178
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002179static const struct nfsd4_operation nfsd4_ops[];
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002180
Adrian Bunkf1c7f792008-08-08 19:26:42 +03002181static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +03002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183/*
J. Bruce Fields57716352010-04-21 12:27:19 -04002184 * Enforce NFSv4.1 COMPOUND ordering rules:
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002185 *
J. Bruce Fields57716352010-04-21 12:27:19 -04002186 * Also note, enforced elsewhere:
2187 * - SEQUENCE other than as first op results in
2188 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002189 * - BIND_CONN_TO_SESSION must be the only op in its compound.
2190 * (Enforced in nfsd4_bind_conn_to_session().)
J. Bruce Fields57716352010-04-21 12:27:19 -04002191 * - DESTROY_SESSION must be the final operation in a compound, if
2192 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
2193 * (Enforced in nfsd4_destroy_session().)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002194 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002195static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002196{
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002197 struct nfsd4_op *first_op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002198
2199 /* These ordering requirements don't apply to NFSv4.0: */
2200 if (args->minorversion == 0)
2201 return nfs_ok;
2202 /* This is weird, but OK, not our problem: */
2203 if (args->opcnt == 0)
2204 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002205 if (first_op->status == nfserr_op_illegal)
J. Bruce Fields57716352010-04-21 12:27:19 -04002206 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002207 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
J. Bruce Fields57716352010-04-21 12:27:19 -04002208 return nfserr_op_not_in_session;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002209 if (first_op->opnum == OP_SEQUENCE)
J. Bruce Fields57716352010-04-21 12:27:19 -04002210 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002211 /*
2212 * So first_op is something allowed outside a session, like
2213 * EXCHANGE_ID; but then it has to be the only op in the
2214 * compound:
2215 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002216 if (args->opcnt != 1)
2217 return nfserr_not_only_op;
2218 return nfs_ok;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002219}
2220
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002221const struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
J. Bruce Fields22b03212011-04-09 11:23:24 -04002222{
2223 return &nfsd4_ops[op->opnum];
2224}
2225
J. Bruce Fields10910062011-01-24 12:11:02 -05002226bool nfsd4_cache_this_op(struct nfsd4_op *op)
2227{
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04002228 if (op->opnum == OP_ILLEGAL)
2229 return false;
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002230 return OPDESC(op)->op_flags & OP_CACHEME;
J. Bruce Fields10910062011-01-24 12:11:02 -05002231}
2232
J. Bruce Fields68d93182011-04-08 17:00:50 -04002233static bool need_wrongsec_check(struct svc_rqst *rqstp)
2234{
2235 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2236 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
2237 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
2238 struct nfsd4_op *next = &argp->ops[resp->opcnt];
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002239 const struct nfsd4_operation *thisd = OPDESC(this);
2240 const struct nfsd4_operation *nextd;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002241
J. Bruce Fields68d93182011-04-08 17:00:50 -04002242 /*
2243 * Most ops check wronsec on our own; only the putfh-like ops
2244 * have special rules.
2245 */
2246 if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
2247 return false;
2248 /*
2249 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
2250 * put-filehandle operation if we're not going to use the
2251 * result:
2252 */
2253 if (argp->opcnt == resp->opcnt)
2254 return false;
J. Bruce Fields51904b02014-10-22 14:46:29 -04002255 if (next->opnum == OP_ILLEGAL)
2256 return false;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002257 nextd = OPDESC(next);
2258 /*
2259 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
2260 * errors themselves as necessary; others should check for them
2261 * now:
2262 */
2263 return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
2264}
2265
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002266static void svcxdr_init_encode(struct svc_rqst *rqstp,
2267 struct nfsd4_compoundres *resp)
2268{
2269 struct xdr_stream *xdr = &resp->xdr;
2270 struct xdr_buf *buf = &rqstp->rq_res;
2271 struct kvec *head = buf->head;
2272
2273 xdr->buf = buf;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002274 xdr->iov = head;
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002275 xdr->p = head->iov_base + head->iov_len;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002276 xdr->end = head->iov_base + PAGE_SIZE - rqstp->rq_auth_slack;
J. Bruce Fields6ac90392014-02-26 17:39:35 -05002277 /* Tail and page_len should be zero at this point: */
2278 buf->len = buf->head[0].iov_len;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002279 xdr->scratch.iov_len = 0;
J. Bruce Fields05638dc2014-06-02 12:05:47 -04002280 xdr->page_ptr = buf->pages - 1;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002281 buf->buflen = PAGE_SIZE * (1 + rqstp->rq_page_end - buf->pages)
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04002282 - rqstp->rq_auth_slack;
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002283}
2284
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002285#ifdef CONFIG_NFSD_V4_2_INTER_SSC
2286static void
2287check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2288{
2289 struct nfsd4_op *op, *current_op = NULL, *saved_op = NULL;
2290 struct nfsd4_copy *copy;
2291 struct nfsd4_putfh *putfh;
2292 int i;
2293
2294 /* traverse all operation and if it's a COPY compound, mark the
2295 * source filehandle to skip verification
2296 */
2297 for (i = 0; i < args->opcnt; i++) {
2298 op = &args->ops[i];
2299 if (op->opnum == OP_PUTFH)
2300 current_op = op;
2301 else if (op->opnum == OP_SAVEFH)
2302 saved_op = current_op;
2303 else if (op->opnum == OP_RESTOREFH)
2304 current_op = saved_op;
2305 else if (op->opnum == OP_COPY) {
2306 copy = (struct nfsd4_copy *)&op->u;
2307 if (!saved_op) {
2308 op->status = nfserr_nofilehandle;
2309 return;
2310 }
2311 putfh = (struct nfsd4_putfh *)&saved_op->u;
2312 if (!copy->cp_intra)
2313 putfh->no_verify = true;
2314 }
2315 }
2316}
2317#else
2318static void
2319check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2320{
2321}
2322#endif
2323
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002324/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 * COMPOUND call.
2326 */
Al Viro7111c662006-10-19 23:28:45 -07002327static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002328nfsd4_proc_compound(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002330 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2331 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 struct nfsd4_op *op;
Andy Adamsone354d572009-03-28 11:30:52 +03002333 struct nfsd4_compound_state *cstate = &resp->cstate;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002334 struct svc_fh *current_fh = &cstate->current_fh;
2335 struct svc_fh *save_fh = &cstate->save_fh;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002336 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Al Virob37ad282006-10-19 23:28:59 -07002337 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
J. Bruce Fields2d124dfaa2014-01-15 16:26:42 -05002339 svcxdr_init_encode(rqstp, resp);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002340 resp->tagp = resp->xdr.p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /* reserve space for: taglen, tag, and opcnt */
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05002342 xdr_reserve_space(&resp->xdr, 8 + args->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 resp->taglen = args->taglen;
2344 resp->tag = args->tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 resp->rqstp = rqstp;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002346 cstate->minorversion = args->minorversion;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002347 fh_init(current_fh, NFS4_FHSIZE);
2348 fh_init(save_fh, NFS4_FHSIZE);
NeilBrown8ff30fa2010-08-12 17:04:07 +10002349 /*
2350 * Don't use the deferral mechanism for NFSv4; compounds make it
2351 * too hard to avoid non-idempotency problems.
2352 */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002353 clear_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 /*
2356 * According to RFC3010, this takes precedence over all other errors.
2357 */
2358 status = nfserr_minor_vers_mismatch;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002359 if (nfsd_minorversion(nn, args->minorversion, NFSD_TEST) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 goto out;
J. Bruce Fields00781172017-11-15 12:30:27 -05002361 status = nfserr_resource;
2362 if (args->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
2363 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
J. Bruce Fields57716352010-04-21 12:27:19 -04002365 status = nfs41_check_op_ordering(args);
2366 if (status) {
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002367 op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002368 op->status = status;
J. Bruce Fields5b7b15ae2018-06-13 15:21:35 -04002369 resp->opcnt = 1;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002370 goto encode_op;
2371 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002372 check_if_stalefh_allowed(args);
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002373
J. Bruce Fields28df3d12017-07-28 16:35:15 -04002374 rqstp->rq_lease_breaker = (void **)&cstate->clp;
2375
Chuck Leverfff40802018-03-27 10:53:54 -04002376 trace_nfsd_compound(rqstp, args->opcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 while (!status && resp->opcnt < args->opcnt) {
2378 op = &args->ops[resp->opcnt++];
2379
2380 /*
2381 * The XDR decode routines may have pre-set op->status;
2382 * for example, if there is a miscellaneous XDR error
2383 * it will be set to nfserr_bad_xdr.
2384 */
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002385 if (op->status) {
2386 if (op->opnum == OP_OPEN)
2387 op->status = nfsd4_open_omfg(rqstp, cstate, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 goto encode_op;
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002389 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002390 if (!current_fh->fh_dentry &&
2391 !HAS_FH_FLAG(current_fh, NFSD4_FH_FOREIGN)) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002392 if (!(op->opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002393 op->status = nfserr_nofilehandle;
2394 goto encode_op;
2395 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002396 } else if (current_fh->fh_export &&
2397 current_fh->fh_export->ex_fslocs.migrated &&
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002398 !(op->opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002399 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 goto encode_op;
2401 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002402
Kinglong Mee23367452014-03-29 10:23:47 +08002403 fh_clear_wcc(current_fh);
2404
Mi Jinlong58e7b332011-08-28 18:18:56 +08002405 /* If op is non-idempotent */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002406 if (op->opdesc->op_flags & OP_MODIFIES_SOMETHING) {
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002407 /*
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002408 * Don't execute this op if we couldn't encode a
2409 * succesful reply:
2410 */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002411 u32 plen = op->opdesc->op_rsize_bop(rqstp, op);
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002412 /*
2413 * Plus if there's another operation, make sure
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002414 * we'll have space to at least encode an error:
2415 */
2416 if (resp->opcnt < args->opcnt)
2417 plen += COMPOUND_ERR_SLACK_SPACE;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002418 op->status = nfsd4_check_resp_size(resp, plen);
2419 }
2420
2421 if (op->status)
2422 goto encode_op;
2423
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002424 if (op->opdesc->op_get_currentstateid)
2425 op->opdesc->op_get_currentstateid(cstate, &op->u);
2426 op->status = op->opdesc->op_func(rqstp, cstate, &op->u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
J. Bruce Fields9a307402017-05-23 12:24:40 -04002428 /* Only from SEQUENCE */
2429 if (cstate->status == nfserr_replay_cache) {
2430 dprintk("%s NFS4.1 replay from cache\n", __func__);
2431 status = op->status;
2432 goto out;
2433 }
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002434 if (!op->status) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002435 if (op->opdesc->op_set_currentstateid)
2436 op->opdesc->op_set_currentstateid(cstate, &op->u);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002437
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002438 if (op->opdesc->op_flags & OP_CLEAR_STATEID)
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01002439 clear_current_stateid(cstate);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002440
J. Bruce Fieldsd781e3d2019-12-06 16:07:32 -05002441 if (current_fh->fh_export &&
2442 need_wrongsec_check(rqstp))
Kinglong Mee4daeed22014-03-26 17:10:37 +08002443 op->status = check_nfsd_access(current_fh->fh_export, rqstp);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445encode_op:
Al Viroa90b0612006-10-19 23:29:03 -07002446 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002447 op->replay = &cstate->replay_owner->so_replay;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002448 nfsd4_encode_replay(&resp->xdr, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 status = op->status = op->replay->rp_status;
2450 } else {
2451 nfsd4_encode_operation(resp, op);
2452 status = op->status;
2453 }
Benny Halevy04077172008-12-15 19:40:49 +02002454
Chuck Leverfff40802018-03-27 10:53:54 -04002455 trace_nfsd_compound_status(args->opcnt, resp->opcnt, status,
2456 nfsd4_op_name(op->opnum));
Benny Halevy04077172008-12-15 19:40:49 +02002457
Jeff Layton58fb12e2014-07-29 21:34:27 -04002458 nfsd4_cstate_clear_replay(cstate);
Shankar Anande2b20952006-07-10 04:45:44 -07002459 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461
Kinglong Mee4daeed22014-03-26 17:10:37 +08002462 fh_put(current_fh);
2463 fh_put(save_fh);
2464 BUG_ON(cstate->replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465out:
Chuck Levercc028a12020-10-02 15:52:44 -04002466 cstate->status = status;
Andy Adamson2f425872009-04-03 08:27:32 +03002467 /* Reset deferral mechanism for RPC deferrals */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002468 set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
Chuck Levercc028a12020-10-02 15:52:44 -04002469 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
Mi Jinlong58e7b332011-08-28 18:18:56 +08002472#define op_encode_hdr_size (2)
2473#define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
2474#define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
2475#define op_encode_change_info_maxsz (5)
2476#define nfs4_fattr_bitmap_maxsz (4)
2477
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002478/* We'll fall back on returning no lockowner if run out of space: */
2479#define op_encode_lockowner_maxsz (0)
Mi Jinlong58e7b332011-08-28 18:18:56 +08002480#define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
2481
2482#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
2483
2484#define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
2485#define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
2486 op_encode_ace_maxsz)
2487
2488#define op_encode_channel_attrs_maxsz (6 + 1 + 1)
2489
2490static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2491{
2492 return (op_encode_hdr_size) * sizeof(__be32);
2493}
2494
2495static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2496{
2497 return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
2498}
2499
Kinglong Mee2282cd22017-02-03 22:36:00 +08002500static inline u32 nfsd4_access_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2501{
2502 /* ac_supported, ac_resp_access */
2503 return (op_encode_hdr_size + 2)* sizeof(__be32);
2504}
2505
Mi Jinlong58e7b332011-08-28 18:18:56 +08002506static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2507{
2508 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
2509}
2510
2511static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2512{
2513 return (op_encode_hdr_size + op_encode_change_info_maxsz
2514 + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2515}
2516
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002517/*
2518 * Note since this is an idempotent operation we won't insist on failing
2519 * the op prematurely if the estimate is too large. We may turn off splice
2520 * reads unnecessarily.
2521 */
2522static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp,
2523 struct nfsd4_op *op)
2524{
2525 u32 *bmap = op->u.getattr.ga_bmval;
2526 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
2527 u32 ret = 0;
2528
2529 if (bmap0 & FATTR4_WORD0_ACL)
2530 return svc_max_payload(rqstp);
2531 if (bmap0 & FATTR4_WORD0_FS_LOCATIONS)
2532 return svc_max_payload(rqstp);
2533
2534 if (bmap1 & FATTR4_WORD1_OWNER) {
2535 ret += IDMAP_NAMESZ + 4;
2536 bmap1 &= ~FATTR4_WORD1_OWNER;
2537 }
2538 if (bmap1 & FATTR4_WORD1_OWNER_GROUP) {
2539 ret += IDMAP_NAMESZ + 4;
2540 bmap1 &= ~FATTR4_WORD1_OWNER_GROUP;
2541 }
2542 if (bmap0 & FATTR4_WORD0_FILEHANDLE) {
2543 ret += NFS4_FHSIZE + 4;
2544 bmap0 &= ~FATTR4_WORD0_FILEHANDLE;
2545 }
2546 if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) {
Kinglong Mee1ec8c0c2015-03-28 23:46:09 +08002547 ret += NFS4_MAXLABELLEN + 12;
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002548 bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2549 }
2550 /*
2551 * Largest of remaining attributes are 16 bytes (e.g.,
2552 * supported_attributes)
2553 */
2554 ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2));
2555 /* bitmask, length */
2556 ret += 20;
2557 return ret;
2558}
2559
Kinglong Mee2282cd22017-02-03 22:36:00 +08002560static inline u32 nfsd4_getfh_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2561{
2562 return (op_encode_hdr_size + 1) * sizeof(__be32) + NFS4_FHSIZE;
2563}
2564
Mi Jinlong58e7b332011-08-28 18:18:56 +08002565static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2566{
2567 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2568 * sizeof(__be32);
2569}
2570
2571static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2572{
2573 return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
2574 * sizeof(__be32);
2575}
2576
2577static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2578{
2579 return (op_encode_hdr_size + op_encode_stateid_maxsz
2580 + op_encode_change_info_maxsz + 1
2581 + nfs4_fattr_bitmap_maxsz
2582 + op_encode_delegation_maxsz) * sizeof(__be32);
2583}
2584
2585static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2586{
2587 u32 maxcount = 0, rlen = 0;
2588
2589 maxcount = svc_max_payload(rqstp);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002590 rlen = min(op->u.read.rd_length, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002591
J. Bruce Fields622f5602014-05-16 14:38:20 -04002592 return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002593}
2594
Anna Schumaker528b8492020-09-28 13:08:58 -04002595static inline u32 nfsd4_read_plus_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2596{
2597 u32 maxcount = svc_max_payload(rqstp);
2598 u32 rlen = min(op->u.read.rd_length, maxcount);
2599 /*
2600 * If we detect that the file changed during hole encoding, then we
2601 * recover by encoding the remaining reply as data. This means we need
2602 * to set aside enough room to encode two data segments.
2603 */
2604 u32 seg_len = 2 * (1 + 2 + 1);
2605
2606 return (op_encode_hdr_size + 2 + seg_len + XDR_QUADLEN(rlen)) * sizeof(__be32);
2607}
2608
Mi Jinlong58e7b332011-08-28 18:18:56 +08002609static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2610{
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002611 u32 maxcount = 0, rlen = 0;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002612
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002613 maxcount = svc_max_payload(rqstp);
2614 rlen = min(op->u.readdir.rd_maxcount, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002615
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002616 return (op_encode_hdr_size + op_encode_verifier_maxsz +
2617 XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002618}
2619
Kinglong Mee2282cd22017-02-03 22:36:00 +08002620static inline u32 nfsd4_readlink_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2621{
2622 return (op_encode_hdr_size + 1) * sizeof(__be32) + PAGE_SIZE;
2623}
2624
Mi Jinlong58e7b332011-08-28 18:18:56 +08002625static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2626{
2627 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2628 * sizeof(__be32);
2629}
2630
2631static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2632{
2633 return (op_encode_hdr_size + op_encode_change_info_maxsz
2634 + op_encode_change_info_maxsz) * sizeof(__be32);
2635}
2636
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002637static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp,
2638 struct nfsd4_op *op)
2639{
J. Bruce Fieldsd1d84c92014-08-21 15:04:31 -04002640 return (op_encode_hdr_size
2641 + XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5) * sizeof(__be32);
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002642}
2643
Kinglong Mee2282cd22017-02-03 22:36:00 +08002644static inline u32 nfsd4_test_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2645{
2646 return (op_encode_hdr_size + 1 + op->u.test_stateid.ts_num_ids)
2647 * sizeof(__be32);
2648}
2649
Mi Jinlong58e7b332011-08-28 18:18:56 +08002650static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2651{
2652 return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2653}
2654
Kinglong Mee2282cd22017-02-03 22:36:00 +08002655static inline u32 nfsd4_secinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2656{
2657 return (op_encode_hdr_size + RPC_AUTH_MAXFLAVOR *
2658 (4 + XDR_QUADLEN(GSS_OID_MAX_LEN))) * sizeof(__be32);
2659}
2660
Mi Jinlong58e7b332011-08-28 18:18:56 +08002661static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2662{
J. Bruce Fields480efae2014-03-10 14:17:55 -04002663 return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) *
2664 sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002665}
2666
2667static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2668{
J. Bruce Fieldsf34e4322014-05-16 21:24:56 -04002669 return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002670}
2671
2672static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2673{
2674 return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
Kinglong Meea8bb84b2013-12-10 15:24:36 +08002675 1 + 1 + /* eir_flags, spr_how */\
2676 4 + /* spo_must_enforce & _allow with bitmap */\
Mi Jinlong58e7b332011-08-28 18:18:56 +08002677 2 + /*eir_server_owner.so_minor_id */\
2678 /* eir_server_owner.so_major_id<> */\
2679 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2680 /* eir_server_scope<> */\
2681 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2682 1 + /* eir_server_impl_id array length */\
2683 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
2684}
2685
2686static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2687{
2688 return (op_encode_hdr_size + \
2689 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
2690 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
2691}
2692
2693static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2694{
2695 return (op_encode_hdr_size + \
2696 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
2697 2 + /* csr_sequence, csr_flags */\
2698 op_encode_channel_attrs_maxsz + \
2699 op_encode_channel_attrs_maxsz) * sizeof(__be32);
2700}
2701
Anna Schumaker29ae7f92016-09-07 15:57:30 -04002702static inline u32 nfsd4_copy_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2703{
2704 return (op_encode_hdr_size +
2705 1 /* wr_callback */ +
2706 op_encode_stateid_maxsz /* wr_callback */ +
2707 2 /* wr_count */ +
2708 1 /* wr_committed */ +
2709 op_encode_verifier_maxsz +
2710 1 /* cr_consecutive */ +
2711 1 /* cr_synchronous */) * sizeof(__be32);
2712}
2713
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04002714static inline u32 nfsd4_offload_status_rsize(struct svc_rqst *rqstp,
2715 struct nfsd4_op *op)
2716{
2717 return (op_encode_hdr_size +
2718 2 /* osr_count */ +
2719 1 /* osr_complete<1> optional 0 for now */) * sizeof(__be32);
2720}
2721
Olga Kornievskaia51911862019-08-08 11:14:59 -04002722static inline u32 nfsd4_copy_notify_rsize(struct svc_rqst *rqstp,
2723 struct nfsd4_op *op)
2724{
2725 return (op_encode_hdr_size +
2726 3 /* cnr_lease_time */ +
2727 1 /* We support one cnr_source_server */ +
2728 1 /* cnr_stateid seq */ +
2729 op_encode_stateid_maxsz /* cnr_stateid */ +
2730 1 /* num cnr_source_server*/ +
2731 1 /* nl4_type */ +
2732 1 /* nl4 size */ +
2733 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) /*nl4_loc + nl4_loc_sz */)
2734 * sizeof(__be32);
2735}
2736
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002737#ifdef CONFIG_NFSD_PNFS
Kinglong Mee2282cd22017-02-03 22:36:00 +08002738static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2739{
2740 u32 maxcount = 0, rlen = 0;
2741
2742 maxcount = svc_max_payload(rqstp);
2743 rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount);
2744
2745 return (op_encode_hdr_size +
2746 1 /* gd_layout_type*/ +
2747 XDR_QUADLEN(rlen) +
2748 2 /* gd_notify_types */) * sizeof(__be32);
2749}
2750
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002751/*
2752 * At this stage we don't really know what layout driver will handle the request,
2753 * so we need to define an arbitrary upper bound here.
2754 */
2755#define MAX_LAYOUT_SIZE 128
2756static inline u32 nfsd4_layoutget_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2757{
2758 return (op_encode_hdr_size +
2759 1 /* logr_return_on_close */ +
2760 op_encode_stateid_maxsz +
2761 1 /* nr of layouts */ +
2762 MAX_LAYOUT_SIZE) * sizeof(__be32);
2763}
2764
2765static inline u32 nfsd4_layoutcommit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2766{
2767 return (op_encode_hdr_size +
2768 1 /* locr_newsize */ +
2769 2 /* ns_size */) * sizeof(__be32);
2770}
2771
2772static inline u32 nfsd4_layoutreturn_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2773{
2774 return (op_encode_hdr_size +
2775 1 /* lrs_stateid */ +
2776 op_encode_stateid_maxsz) * sizeof(__be32);
2777}
2778#endif /* CONFIG_NFSD_PNFS */
2779
Kinglong Mee2282cd22017-02-03 22:36:00 +08002780
2781static inline u32 nfsd4_seek_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2782{
2783 return (op_encode_hdr_size + 3) * sizeof(__be32);
2784}
2785
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002786static inline u32 nfsd4_getxattr_rsize(struct svc_rqst *rqstp,
2787 struct nfsd4_op *op)
2788{
2789 u32 maxcount, rlen;
2790
2791 maxcount = svc_max_payload(rqstp);
2792 rlen = min_t(u32, XATTR_SIZE_MAX, maxcount);
2793
2794 return (op_encode_hdr_size + 1 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2795}
2796
2797static inline u32 nfsd4_setxattr_rsize(struct svc_rqst *rqstp,
2798 struct nfsd4_op *op)
2799{
2800 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2801 * sizeof(__be32);
2802}
2803static inline u32 nfsd4_listxattrs_rsize(struct svc_rqst *rqstp,
2804 struct nfsd4_op *op)
2805{
2806 u32 maxcount, rlen;
2807
2808 maxcount = svc_max_payload(rqstp);
2809 rlen = min(op->u.listxattrs.lsxa_maxcount, maxcount);
2810
2811 return (op_encode_hdr_size + 4 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2812}
2813
2814static inline u32 nfsd4_removexattr_rsize(struct svc_rqst *rqstp,
2815 struct nfsd4_op *op)
2816{
2817 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2818 * sizeof(__be32);
2819}
2820
2821
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002822static const struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002823 [OP_ACCESS] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002824 .op_func = nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002825 .op_name = "OP_ACCESS",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002826 .op_rsize_bop = nfsd4_access_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002827 },
2828 [OP_CLOSE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002829 .op_func = nfsd4_close,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002830 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002831 .op_name = "OP_CLOSE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002832 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002833 .op_get_currentstateid = nfsd4_get_closestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002834 .op_set_currentstateid = nfsd4_set_closestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002835 },
2836 [OP_COMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002837 .op_func = nfsd4_commit,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002838 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002839 .op_name = "OP_COMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002840 .op_rsize_bop = nfsd4_commit_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002841 },
2842 [OP_CREATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002843 .op_func = nfsd4_create,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002844 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002845 .op_name = "OP_CREATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002846 .op_rsize_bop = nfsd4_create_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002847 },
2848 [OP_DELEGRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002849 .op_func = nfsd4_delegreturn,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002850 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002851 .op_name = "OP_DELEGRETURN",
Mi Jinlong58e7b332011-08-28 18:18:56 +08002852 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002853 .op_get_currentstateid = nfsd4_get_delegreturnstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002854 },
2855 [OP_GETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002856 .op_func = nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002857 .op_flags = ALLOWED_ON_ABSENT_FS,
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002858 .op_rsize_bop = nfsd4_getattr_rsize,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002859 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002860 },
2861 [OP_GETFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002862 .op_func = nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002863 .op_name = "OP_GETFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002864 .op_rsize_bop = nfsd4_getfh_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002865 },
2866 [OP_LINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002867 .op_func = nfsd4_link,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002868 .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
2869 | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002870 .op_name = "OP_LINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002871 .op_rsize_bop = nfsd4_link_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002872 },
2873 [OP_LOCK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002874 .op_func = nfsd4_lock,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002875 .op_flags = OP_MODIFIES_SOMETHING |
2876 OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002877 .op_name = "OP_LOCK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002878 .op_rsize_bop = nfsd4_lock_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002879 .op_set_currentstateid = nfsd4_set_lockstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002880 },
2881 [OP_LOCKT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002882 .op_func = nfsd4_lockt,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04002883 .op_flags = OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002884 .op_name = "OP_LOCKT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002885 .op_rsize_bop = nfsd4_lock_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002886 },
2887 [OP_LOCKU] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002888 .op_func = nfsd4_locku,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002889 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002890 .op_name = "OP_LOCKU",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002891 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002892 .op_get_currentstateid = nfsd4_get_lockustateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002893 },
2894 [OP_LOOKUP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002895 .op_func = nfsd4_lookup,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002896 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002897 .op_name = "OP_LOOKUP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002898 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002899 },
2900 [OP_LOOKUPP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002901 .op_func = nfsd4_lookupp,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002902 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002903 .op_name = "OP_LOOKUPP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002904 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002905 },
2906 [OP_NVERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002907 .op_func = nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002908 .op_name = "OP_NVERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002909 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002910 },
2911 [OP_OPEN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002912 .op_func = nfsd4_open,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002913 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002914 .op_name = "OP_OPEN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002915 .op_rsize_bop = nfsd4_open_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002916 .op_set_currentstateid = nfsd4_set_openstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002917 },
2918 [OP_OPEN_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002919 .op_func = nfsd4_open_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002920 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002921 .op_name = "OP_OPEN_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002922 .op_rsize_bop = nfsd4_status_stateid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002923 },
2924 [OP_OPEN_DOWNGRADE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002925 .op_func = nfsd4_open_downgrade,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002926 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002927 .op_name = "OP_OPEN_DOWNGRADE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002928 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002929 .op_get_currentstateid = nfsd4_get_opendowngradestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002930 .op_set_currentstateid = nfsd4_set_opendowngradestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002931 },
2932 [OP_PUTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002933 .op_func = nfsd4_putfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002934 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002935 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002936 .op_name = "OP_PUTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002937 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002938 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002939 [OP_PUTPUBFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002940 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002941 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002942 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002943 .op_name = "OP_PUTPUBFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002944 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002945 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002946 [OP_PUTROOTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002947 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002948 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05002949 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002950 .op_name = "OP_PUTROOTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002951 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002952 },
2953 [OP_READ] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002954 .op_func = nfsd4_read,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04002955 .op_release = nfsd4_read_release,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002956 .op_name = "OP_READ",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002957 .op_rsize_bop = nfsd4_read_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002958 .op_get_currentstateid = nfsd4_get_readstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002959 },
2960 [OP_READDIR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002961 .op_func = nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002962 .op_name = "OP_READDIR",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002963 .op_rsize_bop = nfsd4_readdir_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002964 },
2965 [OP_READLINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002966 .op_func = nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002967 .op_name = "OP_READLINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002968 .op_rsize_bop = nfsd4_readlink_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002969 },
2970 [OP_REMOVE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002971 .op_func = nfsd4_remove,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002972 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002973 .op_name = "OP_REMOVE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002974 .op_rsize_bop = nfsd4_remove_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002975 },
2976 [OP_RENAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002977 .op_func = nfsd4_rename,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002978 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002979 .op_name = "OP_RENAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002980 .op_rsize_bop = nfsd4_rename_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002981 },
2982 [OP_RENEW] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002983 .op_func = nfsd4_renew,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002984 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2985 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002986 .op_name = "OP_RENEW",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002987 .op_rsize_bop = nfsd4_only_status_rsize,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002988
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002989 },
2990 [OP_RESTOREFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002991 .op_func = nfsd4_restorefh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04002992 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Mi Jinlong58e7b332011-08-28 18:18:56 +08002993 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002994 .op_name = "OP_RESTOREFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002995 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002996 },
2997 [OP_SAVEFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002998 .op_func = nfsd4_savefh,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002999 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003000 .op_name = "OP_SAVEFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003001 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003002 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07003003 [OP_SECINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003004 .op_func = nfsd4_secinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003005 .op_release = nfsd4_secinfo_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003006 .op_flags = OP_HANDLES_WRONGSEC,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003007 .op_name = "OP_SECINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003008 .op_rsize_bop = nfsd4_secinfo_rsize,
Andy Adamsondcb488a32007-07-17 04:04:51 -07003009 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003010 [OP_SETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003011 .op_func = nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003012 .op_name = "OP_SETATTR",
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003013 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME
3014 | OP_NONTRIVIAL_ERROR_ENCODE,
Christoph Hellwig1c122632017-05-08 20:42:10 +02003015 .op_rsize_bop = nfsd4_setattr_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003016 .op_get_currentstateid = nfsd4_get_setattrstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003017 },
3018 [OP_SETCLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003019 .op_func = nfsd4_setclientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003020 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003021 | OP_MODIFIES_SOMETHING | OP_CACHEME
3022 | OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003023 .op_name = "OP_SETCLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003024 .op_rsize_bop = nfsd4_setclientid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003025 },
3026 [OP_SETCLIENTID_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003027 .op_func = nfsd4_setclientid_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003028 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003029 | OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003030 .op_name = "OP_SETCLIENTID_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003031 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003032 },
3033 [OP_VERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003034 .op_func = nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003035 .op_name = "OP_VERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003036 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003037 },
3038 [OP_WRITE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003039 .op_func = nfsd4_write,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003040 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003041 .op_name = "OP_WRITE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003042 .op_rsize_bop = nfsd4_write_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003043 .op_get_currentstateid = nfsd4_get_writestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003044 },
3045 [OP_RELEASE_LOCKOWNER] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003046 .op_func = nfsd4_release_lockowner,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003047 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3048 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003049 .op_name = "OP_RELEASE_LOCKOWNER",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003050 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003051 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03003052
3053 /* NFSv4.1 operations */
3054 [OP_EXCHANGE_ID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003055 .op_func = nfsd4_exchange_id,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003056 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3057 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003058 .op_name = "OP_EXCHANGE_ID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003059 .op_rsize_bop = nfsd4_exchange_id_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003060 },
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003061 [OP_BACKCHANNEL_CTL] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003062 .op_func = nfsd4_backchannel_ctl,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003063 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
3064 .op_name = "OP_BACKCHANNEL_CTL",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003065 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003066 },
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003067 [OP_BIND_CONN_TO_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003068 .op_func = nfsd4_bind_conn_to_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003069 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3070 | OP_MODIFIES_SOMETHING,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003071 .op_name = "OP_BIND_CONN_TO_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003072 .op_rsize_bop = nfsd4_bind_conn_to_session_rsize,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003073 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03003074 [OP_CREATE_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003075 .op_func = nfsd4_create_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003076 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3077 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003078 .op_name = "OP_CREATE_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003079 .op_rsize_bop = nfsd4_create_session_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003080 },
3081 [OP_DESTROY_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003082 .op_func = nfsd4_destroy_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003083 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3084 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003085 .op_name = "OP_DESTROY_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003086 .op_rsize_bop = nfsd4_only_status_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003087 },
3088 [OP_SEQUENCE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003089 .op_func = nfsd4_sequence,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003090 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003091 .op_name = "OP_SEQUENCE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003092 .op_rsize_bop = nfsd4_sequence_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003093 },
Benny Halevy094b5d72011-06-16 11:39:10 -04003094 [OP_DESTROY_CLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003095 .op_func = nfsd4_destroy_clientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003096 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3097 | OP_MODIFIES_SOMETHING,
Benny Halevy094b5d72011-06-16 11:39:10 -04003098 .op_name = "OP_DESTROY_CLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003099 .op_rsize_bop = nfsd4_only_status_rsize,
Benny Halevy094b5d72011-06-16 11:39:10 -04003100 },
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003101 [OP_RECLAIM_COMPLETE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003102 .op_func = nfsd4_reclaim_complete,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003103 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003104 .op_name = "OP_RECLAIM_COMPLETE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003105 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003106 },
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003107 [OP_SECINFO_NO_NAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003108 .op_func = nfsd4_secinfo_no_name,
Eryu Guanec572b92017-09-29 15:01:10 +08003109 .op_release = nfsd4_secinfo_no_name_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003110 .op_flags = OP_HANDLES_WRONGSEC,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003111 .op_name = "OP_SECINFO_NO_NAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003112 .op_rsize_bop = nfsd4_secinfo_rsize,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003113 },
Bryan Schumaker17456802011-07-13 10:50:48 -04003114 [OP_TEST_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003115 .op_func = nfsd4_test_stateid,
Bryan Schumaker17456802011-07-13 10:50:48 -04003116 .op_flags = ALLOWED_WITHOUT_FH,
3117 .op_name = "OP_TEST_STATEID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003118 .op_rsize_bop = nfsd4_test_stateid_rsize,
Bryan Schumaker17456802011-07-13 10:50:48 -04003119 },
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003120 [OP_FREE_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003121 .op_func = nfsd4_free_stateid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003122 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003123 .op_name = "OP_FREE_STATEID",
Christoph Hellwig57832e72017-05-08 20:37:33 +02003124 .op_get_currentstateid = nfsd4_get_freestateid,
Christoph Hellwig1c122632017-05-08 20:42:10 +02003125 .op_rsize_bop = nfsd4_only_status_rsize,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003126 },
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003127#ifdef CONFIG_NFSD_PNFS
3128 [OP_GETDEVICEINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003129 .op_func = nfsd4_getdeviceinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003130 .op_release = nfsd4_getdeviceinfo_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003131 .op_flags = ALLOWED_WITHOUT_FH,
3132 .op_name = "OP_GETDEVICEINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003133 .op_rsize_bop = nfsd4_getdeviceinfo_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003134 },
3135 [OP_LAYOUTGET] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003136 .op_func = nfsd4_layoutget,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003137 .op_release = nfsd4_layoutget_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003138 .op_flags = OP_MODIFIES_SOMETHING,
3139 .op_name = "OP_LAYOUTGET",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003140 .op_rsize_bop = nfsd4_layoutget_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003141 },
3142 [OP_LAYOUTCOMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003143 .op_func = nfsd4_layoutcommit,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003144 .op_flags = OP_MODIFIES_SOMETHING,
3145 .op_name = "OP_LAYOUTCOMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003146 .op_rsize_bop = nfsd4_layoutcommit_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003147 },
3148 [OP_LAYOUTRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003149 .op_func = nfsd4_layoutreturn,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003150 .op_flags = OP_MODIFIES_SOMETHING,
3151 .op_name = "OP_LAYOUTRETURN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003152 .op_rsize_bop = nfsd4_layoutreturn_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003153 },
3154#endif /* CONFIG_NFSD_PNFS */
Anna Schumaker24bab492014-09-26 13:58:27 -04003155
3156 /* NFSv4.2 operations */
Anna Schumaker95d871f2014-11-07 14:44:26 -05003157 [OP_ALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003158 .op_func = nfsd4_allocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003159 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003160 .op_name = "OP_ALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003161 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003162 },
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003163 [OP_DEALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003164 .op_func = nfsd4_deallocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003165 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003166 .op_name = "OP_DEALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003167 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003168 },
Christoph Hellwigffa01602015-12-03 12:59:52 +01003169 [OP_CLONE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003170 .op_func = nfsd4_clone,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003171 .op_flags = OP_MODIFIES_SOMETHING,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003172 .op_name = "OP_CLONE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003173 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003174 },
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003175 [OP_COPY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003176 .op_func = nfsd4_copy,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003177 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003178 .op_name = "OP_COPY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003179 .op_rsize_bop = nfsd4_copy_rsize,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003180 },
Anna Schumaker528b8492020-09-28 13:08:58 -04003181 [OP_READ_PLUS] = {
3182 .op_func = nfsd4_read,
3183 .op_release = nfsd4_read_release,
3184 .op_name = "OP_READ_PLUS",
3185 .op_rsize_bop = nfsd4_read_plus_rsize,
3186 .op_get_currentstateid = nfsd4_get_readstateid,
3187 },
Anna Schumaker24bab492014-09-26 13:58:27 -04003188 [OP_SEEK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003189 .op_func = nfsd4_seek,
Anna Schumaker24bab492014-09-26 13:58:27 -04003190 .op_name = "OP_SEEK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003191 .op_rsize_bop = nfsd4_seek_rsize,
Anna Schumaker24bab492014-09-26 13:58:27 -04003192 },
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04003193 [OP_OFFLOAD_STATUS] = {
3194 .op_func = nfsd4_offload_status,
3195 .op_name = "OP_OFFLOAD_STATUS",
3196 .op_rsize_bop = nfsd4_offload_status_rsize,
3197 },
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04003198 [OP_OFFLOAD_CANCEL] = {
3199 .op_func = nfsd4_offload_cancel,
3200 .op_flags = OP_MODIFIES_SOMETHING,
3201 .op_name = "OP_OFFLOAD_CANCEL",
3202 .op_rsize_bop = nfsd4_only_status_rsize,
3203 },
Olga Kornievskaia51911862019-08-08 11:14:59 -04003204 [OP_COPY_NOTIFY] = {
3205 .op_func = nfsd4_copy_notify,
3206 .op_flags = OP_MODIFIES_SOMETHING,
3207 .op_name = "OP_COPY_NOTIFY",
3208 .op_rsize_bop = nfsd4_copy_notify_rsize,
3209 },
Frank van der Linden23e50fe2020-06-23 22:39:26 +00003210 [OP_GETXATTR] = {
3211 .op_func = nfsd4_getxattr,
3212 .op_name = "OP_GETXATTR",
3213 .op_rsize_bop = nfsd4_getxattr_rsize,
3214 },
3215 [OP_SETXATTR] = {
3216 .op_func = nfsd4_setxattr,
3217 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3218 .op_name = "OP_SETXATTR",
3219 .op_rsize_bop = nfsd4_setxattr_rsize,
3220 },
3221 [OP_LISTXATTRS] = {
3222 .op_func = nfsd4_listxattrs,
3223 .op_name = "OP_LISTXATTRS",
3224 .op_rsize_bop = nfsd4_listxattrs_rsize,
3225 },
3226 [OP_REMOVEXATTR] = {
3227 .op_func = nfsd4_removexattr,
3228 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3229 .op_name = "OP_REMOVEXATTR",
3230 .op_rsize_bop = nfsd4_removexattr_rsize,
3231 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003232};
3233
Andrew Elbleed941642016-06-15 12:52:09 -04003234/**
3235 * nfsd4_spo_must_allow - Determine if the compound op contains an
3236 * operation that is allowed to be sent with machine credentials
3237 *
3238 * @rqstp: a pointer to the struct svc_rqst
3239 *
3240 * Checks to see if the compound contains a spo_must_allow op
3241 * and confirms that it was sent with the proper machine creds.
3242 */
3243
3244bool nfsd4_spo_must_allow(struct svc_rqst *rqstp)
3245{
3246 struct nfsd4_compoundres *resp = rqstp->rq_resp;
3247 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3248 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
3249 struct nfsd4_compound_state *cstate = &resp->cstate;
3250 struct nfs4_op_map *allow = &cstate->clp->cl_spo_must_allow;
3251 u32 opiter;
3252
3253 if (!cstate->minorversion)
3254 return false;
3255
Zheng Bin44b49aa2020-09-11 12:10:14 +08003256 if (cstate->spo_must_allowed)
Andrew Elbleed941642016-06-15 12:52:09 -04003257 return true;
3258
3259 opiter = resp->opcnt;
3260 while (opiter < argp->opcnt) {
3261 this = &argp->ops[opiter++];
3262 if (test_bit(this->opnum, allow->u.longs) &&
3263 cstate->clp->cl_mach_cred &&
3264 nfsd4_mach_creds_match(cstate->clp, rqstp)) {
3265 cstate->spo_must_allowed = true;
3266 return true;
3267 }
3268 }
3269 cstate->spo_must_allowed = false;
3270 return false;
3271}
3272
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003273int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op)
3274{
Olga Kornievskaia05b72782017-03-23 14:36:20 -04003275 if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003276 return op_encode_hdr_size * sizeof(__be32);
Kinglong Mee2282cd22017-02-03 22:36:00 +08003277
3278 BUG_ON(OPDESC(op)->op_rsize_bop == NULL);
3279 return OPDESC(op)->op_rsize_bop(rqstp, op);
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003280}
3281
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003282void warn_on_nonidempotent_op(struct nfsd4_op *op)
3283{
3284 if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) {
3285 pr_err("unable to encode reply to nonidempotent op %d (%s)\n",
3286 op->opnum, nfsd4_op_name(op->opnum));
3287 WARN_ON_ONCE(1);
3288 }
3289}
3290
Adrian Bunkf1c7f792008-08-08 19:26:42 +03003291static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03003292{
3293 if (opnum < ARRAY_SIZE(nfsd4_ops))
3294 return nfsd4_ops[opnum].op_name;
3295 return "unknown_operation";
3296}
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298#define nfsd4_voidres nfsd4_voidargs
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299struct nfsd4_voidargs { int dummy; };
3300
Christoph Hellwig860bda22017-05-12 16:11:49 +02003301static const struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003302 [NFSPROC4_NULL] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003303 .pc_func = nfsd4_proc_null,
Chuck Leverdcc46992020-10-01 18:59:12 -04003304 .pc_decode = nfs4svc_decode_voidarg,
Christoph Hellwig63f8de32017-05-08 19:42:02 +02003305 .pc_encode = nfs4svc_encode_voidres,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003306 .pc_argsize = sizeof(struct nfsd4_voidargs),
3307 .pc_ressize = sizeof(struct nfsd4_voidres),
3308 .pc_cachetype = RC_NOCACHE,
3309 .pc_xdrressize = 1,
3310 },
3311 [NFSPROC4_COMPOUND] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003312 .pc_func = nfsd4_proc_compound,
Christoph Hellwig026fec72017-05-08 19:01:48 +02003313 .pc_decode = nfs4svc_decode_compoundargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +02003314 .pc_encode = nfs4svc_encode_compoundres,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003315 .pc_argsize = sizeof(struct nfsd4_compoundargs),
3316 .pc_ressize = sizeof(struct nfsd4_compoundres),
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003317 .pc_release = nfsd4_release_compoundargs,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003318 .pc_cachetype = RC_NOCACHE,
3319 .pc_xdrressize = NFSD_BUFSIZE/4,
3320 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321};
3322
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003323static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures4)];
Christoph Hellwige9679182017-05-12 16:21:37 +02003324const struct svc_version nfsd_version4 = {
Jeff Layton5283b032017-02-24 13:25:24 -05003325 .vs_vers = 4,
3326 .vs_nproc = 2,
3327 .vs_proc = nfsd_procedures4,
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003328 .vs_count = nfsd_count3,
Jeff Layton5283b032017-02-24 13:25:24 -05003329 .vs_dispatch = nfsd_dispatch,
3330 .vs_xdrsize = NFS4_SVC_XDRSIZE,
3331 .vs_rpcb_optnl = true,
3332 .vs_need_cong_ctrl = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333};
3334
3335/*
3336 * Local variables:
3337 * c-basic-offset: 8
3338 * End:
3339 */