blob: b207c76a873f3a86ca095c035505b4e07f82f61a [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
Chuck Leverd6c9e432020-12-18 12:28:23 -050053static bool inter_copy_offload_enable;
54module_param(inter_copy_offload_enable, bool, 0644);
55MODULE_PARM_DESC(inter_copy_offload_enable,
56 "Enable inter server to server copy offload. Default: false");
57
Dai Ngof4e44b32021-05-21 15:09:37 -040058#ifdef CONFIG_NFSD_V4_2_INTER_SSC
59static int nfsd4_ssc_umount_timeout = 900000; /* default to 15 mins */
60module_param(nfsd4_ssc_umount_timeout, int, 0644);
61MODULE_PARM_DESC(nfsd4_ssc_umount_timeout,
62 "idle msecs before unmount export from source server");
63#endif
64
David Quigley18032ca2013-05-02 13:19:10 -040065#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
66#include <linux/security.h>
67
68static inline void
69nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
70{
David Howells2b0143b2015-03-17 22:25:59 +000071 struct inode *inode = d_inode(resfh->fh_dentry);
David Quigley18032ca2013-05-02 13:19:10 -040072 int status;
73
Al Viro59551022016-01-22 15:40:57 -050074 inode_lock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040075 status = security_inode_setsecctx(resfh->fh_dentry,
76 label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -050077 inode_unlock(inode);
David Quigley18032ca2013-05-02 13:19:10 -040078
79 if (status)
80 /*
81 * XXX: We should really fail the whole open, but we may
82 * already have created a new file, so it may be too
83 * late. For now this seems the least of evils:
84 */
85 bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
86
87 return;
88}
89#else
90static inline void
91nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
92{ }
93#endif
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define NFSDDBG_FACILITY NFSDDBG_PROC
96
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080097static u32 nfsd_attrmask[] = {
98 NFSD_WRITEABLE_ATTRS_WORD0,
99 NFSD_WRITEABLE_ATTRS_WORD1,
100 NFSD_WRITEABLE_ATTRS_WORD2
101};
102
103static u32 nfsd41_ex_attrmask[] = {
104 NFSD_SUPPATTR_EXCLCREAT_WORD0,
105 NFSD_SUPPATTR_EXCLCREAT_WORD1,
106 NFSD_SUPPATTR_EXCLCREAT_WORD2
107};
108
109static __be32
110check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
111 u32 *bmval, u32 *writable)
112{
113 struct dentry *dentry = cstate->current_fh.fh_dentry;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500114 struct svc_export *exp = cstate->current_fh.fh_export;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800115
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400116 if (!nfsd_attrs_supported(cstate->minorversion, bmval))
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800117 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400118 if ((bmval[0] & FATTR4_WORD0_ACL) && !IS_POSIXACL(d_inode(dentry)))
119 return nfserr_attrnotsupp;
J. Bruce Fields32ddd942017-01-03 12:30:11 -0500120 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) &&
121 !(exp->ex_flags & NFSEXP_SECURITY_LABEL))
122 return nfserr_attrnotsupp;
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400123 if (writable && !bmval_is_subset(bmval, writable))
124 return nfserr_inval;
Andreas Gruenbacher47057ab2016-01-12 20:24:14 +0100125 if (writable && (bmval[2] & FATTR4_WORD2_MODE_UMASK) &&
126 (bmval[1] & FATTR4_WORD1_MODE))
127 return nfserr_inval;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800128 return nfs_ok;
129}
130
131static __be32
132nfsd4_check_open_attributes(struct svc_rqst *rqstp,
133 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
134{
135 __be32 status = nfs_ok;
136
137 if (open->op_create == NFS4_OPEN_CREATE) {
138 if (open->op_createmode == NFS4_CREATE_UNCHECKED
139 || open->op_createmode == NFS4_CREATE_GUARDED)
140 status = check_attr_support(rqstp, cstate,
141 open->op_bmval, nfsd_attrmask);
142 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
143 status = check_attr_support(rqstp, cstate,
144 open->op_bmval, nfsd41_ex_attrmask);
145 }
146
147 return status;
148}
149
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800150static int
151is_create_with_attrs(struct nfsd4_open *open)
152{
153 return open->op_create == NFS4_OPEN_CREATE
154 && (open->op_createmode == NFS4_CREATE_UNCHECKED
155 || open->op_createmode == NFS4_CREATE_GUARDED
156 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
157}
158
159/*
160 * if error occurs when setting the acl, just clear the acl bit
161 * in the returned attr bitmap.
162 */
163static void
164do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
165 struct nfs4_acl *acl, u32 *bmval)
166{
167 __be32 status;
168
169 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
170 if (status)
171 /*
172 * We should probably fail the whole open at this point,
173 * but we've already created the file, so it's too late;
174 * So this seems the least of evils:
175 */
176 bmval[0] &= ~FATTR4_WORD0_ACL;
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static inline void
180fh_dup2(struct svc_fh *dst, struct svc_fh *src)
181{
182 fh_put(dst);
183 dget(src->fh_dentry);
184 if (src->fh_export)
Kinglong Meebf18f162014-06-10 22:06:44 +0800185 exp_get(src->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *dst = *src;
187}
188
Al Virob37ad282006-10-19 23:28:59 -0700189static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700190do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Al Virob37ad282006-10-19 23:28:59 -0700192 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (open->op_truncate &&
195 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
196 return nfserr_inval;
197
J. Bruce Fieldsa0432262011-08-25 10:48:39 -0400198 accmode |= NFSD_MAY_READ_IF_EXEC;
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200201 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700202 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200203 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields57ecb342009-12-01 19:42:57 -0500204 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200205 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
208
209 return status;
210}
211
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400212static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
213{
David Howells2b0143b2015-03-17 22:25:59 +0000214 umode_t mode = d_inode(fh->fh_dentry)->i_mode;
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400215
216 if (S_ISREG(mode))
217 return nfs_ok;
218 if (S_ISDIR(mode))
219 return nfserr_isdir;
220 /*
221 * Using err_symlink as our catch-all case may look odd; but
222 * there's no other obvious error for this case in 4.0, and we
223 * happen to know that it will cause the linux v4 client to do
224 * the right thing on attempts to open something other than a
225 * regular file.
226 */
227 return nfserr_symlink;
228}
229
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400230static 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 -0700231{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400232 if (nfsd4_has_session(cstate))
233 return;
234 fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
235 &resfh->fh_handle);
236}
237
238static __be32
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500239do_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 -0400240{
241 struct svc_fh *current_fh = &cstate->current_fh;
Neil Brown7007c902012-12-07 15:40:55 -0500242 int accmode;
Al Virob37ad282006-10-19 23:28:59 -0700243 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500245 *resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
246 if (!*resfh)
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500247 return nfserr_jukebox;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500248 fh_init(*resfh, NFS4_FHSIZE);
zhengbin500c24812019-12-25 11:19:35 +0800249 open->op_truncate = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300252 /* FIXME: check session persistence and pnfs flags.
253 * The nfsv4.1 spec requires the following semantics:
254 *
255 * Persistent | pNFS | Server REQUIRED | Client Allowed
256 * Reply Cache | server | |
257 * -------------+--------+-----------------+--------------------
258 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
259 * | | | (SHOULD)
260 * | | and EXCLUSIVE4 | or EXCLUSIVE4
261 * | | | (SHOULD NOT)
262 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
263 * yes | no | GUARDED4 | GUARDED4
264 * yes | yes | GUARDED4 | GUARDED4
265 */
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*
268 * Note: create modes (UNCHECKED,GUARDED...) are the same
Mi Jinlongac6721a2011-04-20 17:06:25 +0800269 * in NFSv4 as in v3 except EXCLUSIVE4_1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400271 current->fs->umask = open->op_umask;
Chuck Lever1708e502020-11-16 17:45:04 -0500272 status = do_nfsd_create(rqstp, current_fh, open->op_fname,
273 open->op_fnamelen, &open->op_iattr,
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500274 *resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700275 (u32 *)open->op_verf.data,
J. Bruce Fields856121b2011-10-13 11:37:11 -0400276 &open->op_truncate, &open->op_created);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400277 current->fs->umask = 0;
Jeff Layton749997e2007-07-31 00:37:51 -0700278
David Quigley18032ca2013-05-02 13:19:10 -0400279 if (!status && open->op_label.len)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500280 nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval);
David Quigley18032ca2013-05-02 13:19:10 -0400281
J. Bruce Fields99f88722009-02-02 15:12:27 -0500282 /*
Kinglong Meeead8fb82015-07-30 21:55:02 +0800283 * Following rfc 3530 14.2.16, and rfc 5661 18.16.4
284 * use the returned bitmask to indicate which attributes
285 * we used to store the verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700286 */
Kinglong Meeead8fb82015-07-30 21:55:02 +0800287 if (nfsd_create_is_exclusive(open->op_createmode) && status == 0)
288 open->op_bmval[1] |= (FATTR4_WORD1_TIME_ACCESS |
289 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fields43357232014-01-24 18:04:40 -0500290 } else
291 /*
292 * Note this may exit with the parent still locked.
293 * We will hold the lock until nfsd4_open's final
294 * lookup, to prevent renames or unlinks until we've had
295 * a chance to an acquire a delegation if appropriate.
296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 status = nfsd_lookup(rqstp, current_fh,
Chuck Lever1708e502020-11-16 17:45:04 -0500298 open->op_fname, open->op_fnamelen, *resfh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800299 if (status)
300 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500301 status = nfsd_check_obj_isreg(*resfh);
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -0400302 if (status)
303 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800305 if (is_create_with_attrs(open) && open->op_acl != NULL)
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500306 do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval);
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800307
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500308 nfsd4_set_open_owner_reply_cache(cstate, open, *resfh);
Neil Brown7007c902012-12-07 15:40:55 -0500309 accmode = NFSD_MAY_NOP;
J. Bruce Fields89f6c332013-06-19 15:47:37 -0400310 if (open->op_created ||
311 open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
Neil Brown7007c902012-12-07 15:40:55 -0500312 accmode |= NFSD_MAY_OWNER_OVERRIDE;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500313 status = do_open_permission(rqstp, *resfh, open, accmode);
J. Bruce Fields41fd1e42012-01-27 16:26:02 -0500314 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800315out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return status;
317}
318
Al Virob37ad282006-10-19 23:28:59 -0700319static __be32
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400320do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400322 struct svc_fh *current_fh = &cstate->current_fh;
Al Virob37ad282006-10-19 23:28:59 -0700323 __be32 status;
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400324 int accmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /* We don't know the target directory, and therefore can not
327 * set the change info
328 */
329
330 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
331
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400332 nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
335 (open->op_iattr.ia_size == 0);
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400336 /*
337 * In the delegation case, the client is telling us about an
338 * open that it *already* performed locally, some time ago. We
339 * should let it succeed now if possible.
340 *
341 * In the case of a CLAIM_FH open, on the other hand, the client
342 * may be counting on us to enforce permissions (the Linux 4.1
343 * client uses this for normal opens, for example).
344 */
345 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
346 accmode = NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400348 status = do_open_permission(rqstp, current_fh, open, accmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 return status;
351}
352
Andy Adamson60adfc52009-04-03 08:28:50 +0300353static void
354copy_clientid(clientid_t *clid, struct nfsd4_session *session)
355{
356 struct nfsd4_sessionid *sid =
357 (struct nfsd4_sessionid *)session->se_sessionid.data;
358
359 clid->cl_boot = sid->clientid.cl_boot;
360 clid->cl_id = sid->clientid.cl_id;
361}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
J.Bruce Fields71911552006-12-13 00:35:29 -0800363static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800364nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200365 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200367 struct nfsd4_open *open = &u->open;
Al Virob37ad282006-10-19 23:28:59 -0700368 __be32 status;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500369 struct svc_fh *resfh = NULL;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300370 struct net *net = SVC_NET(rqstp);
371 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400372 bool reclaim = false;
Andy Adamson66689582009-04-03 08:28:45 +0300373
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400374 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
Chuck Lever1708e502020-11-16 17:45:04 -0500375 (int)open->op_fnamelen, open->op_fname,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400376 open->op_openowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* This check required by spec. */
379 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
380 return nfserr_inval;
381
zhengbin500c24812019-12-25 11:19:35 +0800382 open->op_created = false;
Mi Jinlongab1350b2011-07-14 15:06:26 +0800383 /*
384 * RFC5661 18.51.3
385 * Before RECLAIM_COMPLETE done, server should deny new lock
386 */
387 if (nfsd4_has_session(cstate) &&
J. Bruce Fieldsec596592021-01-21 17:57:45 -0500388 !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags) &&
Mi Jinlongab1350b2011-07-14 15:06:26 +0800389 open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
390 return nfserr_grace;
391
Andy Adamson60adfc52009-04-03 08:28:50 +0300392 if (nfsd4_has_session(cstate))
393 copy_clientid(&open->op_clientid, cstate->session);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* check seqid for replay. set nfs4_owner */
Kinglong Mee6cd22662015-07-13 17:32:05 +0800396 status = nfsd4_process_open1(cstate, open, nn);
Al Viroa90b0612006-10-19 23:29:03 -0700397 if (status == nfserr_replay_me) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400398 struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800399 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500400 fh_copy_shallow(&cstate->current_fh.fh_handle,
401 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200402 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (status)
404 dprintk("nfsd4_open: replay failed"
405 " restoring previous filehandle\n");
406 else
Al Viroa90b0612006-10-19 23:29:03 -0700407 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 if (status)
410 goto out;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800411 if (open->op_xdr_error) {
412 status = open->op_xdr_error;
413 goto out;
414 }
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800415
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800416 status = nfsd4_check_open_attributes(rqstp, cstate, open);
417 if (status)
418 goto out;
419
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800420 /* Openowner is now set, so sequence id will get bumped. Now we need
421 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800422 status = nfserr_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400423 if (opens_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800424 goto out;
425 status = nfserr_no_grace;
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400426 if (!opens_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800427 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700430 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 case NFS4_OPEN_CLAIM_NULL:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500432 status = do_open_lookup(rqstp, cstate, open, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (status)
434 goto out;
435 break;
436 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fields1722b042021-01-21 17:57:44 -0500437 status = nfs4_check_open_reclaim(cstate->clp);
Mi Jinlong0cf99b92011-11-23 10:48:40 +0800438 if (status)
439 goto out;
Jeff Laytonba5378b2014-05-30 09:09:28 -0400440 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400441 reclaim = true;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500442 fallthrough;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400443 case NFS4_OPEN_CLAIM_FH:
444 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400445 status = do_open_fhandle(rqstp, cstate, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (status)
447 goto out;
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500448 resfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400450 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400452 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 open->op_claim_type);
454 status = nfserr_notsupp;
455 goto out;
456 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400457 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 open->op_claim_type);
459 status = nfserr_inval;
460 goto out;
461 }
462 /*
463 * nfsd4_process_open2() does the actual opening of the file. If
464 * successful, it (1) truncates the file if open->op_truncate was
465 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
466 */
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500467 status = nfsd4_process_open2(rqstp, resfh, open);
Jeff Laytonb3fbfe02014-07-29 21:37:44 -0400468 WARN(status && open->op_created,
469 "nfsd4_process_open2 failed to open newly-created file! status=%u\n",
470 be32_to_cpu(status));
J. Bruce Fields03f318c2018-06-08 12:28:47 -0400471 if (reclaim && !status)
472 nn->somebody_reclaimed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473out:
J. Bruce Fieldsc0e6bee2012-01-27 17:26:06 -0500474 if (resfh && resfh != &cstate->current_fh) {
475 fh_dup2(&cstate->current_fh, resfh);
476 fh_put(resfh);
477 kfree(resfh);
478 }
Jeff Layton42297892015-03-23 10:53:44 -0400479 nfsd4_cleanup_open_state(cstate, open);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -0400480 nfsd4_bump_seqid(cstate, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return status;
482}
483
484/*
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800485 * OPEN is the only seqid-mutating operation whose decoding can fail
486 * with a seqid-mutating error (specifically, decoding of user names in
487 * the attributes). Therefore we have to do some processing to look up
488 * the stateowner so that we can bump the seqid.
489 */
490static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
491{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200492 struct nfsd4_open *open = &op->u.open;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800493
494 if (!seqid_mutating_err(ntohl(op->status)))
495 return op->status;
496 if (nfsd4_has_session(cstate))
497 return op->status;
498 open->op_xdr_error = op->status;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200499 return nfsd4_open(rqstp, cstate, &op->u);
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800500}
501
502/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * filehandle-manipulating ops.
504 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800505static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800506nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200507 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200509 u->getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return nfs_ok;
511}
512
J.Bruce Fields71911552006-12-13 00:35:29 -0800513static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800514nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200515 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200517 struct nfsd4_putfh *putfh = &u->putfh;
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400518 __be32 ret;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200519
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800520 fh_put(&cstate->current_fh);
521 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
NeilBrownd8b26072021-09-02 11:16:32 +1000522 memcpy(&cstate->current_fh.fh_handle.fh_raw, putfh->pf_fhval,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800523 putfh->pf_fhlen);
Olga Kornievskaiab9e86382019-10-07 10:56:48 -0400524 ret = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
525#ifdef CONFIG_NFSD_V4_2_INTER_SSC
526 if (ret == nfserr_stale && putfh->no_verify) {
527 SET_FH_FLAG(&cstate->current_fh, NFSD4_FH_FOREIGN);
528 ret = 0;
529 }
530#endif
531 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
J.Bruce Fields71911552006-12-13 00:35:29 -0800534static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800535nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200536 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Al Virob37ad282006-10-19 23:28:59 -0700538 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800540 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700541 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return status;
543}
544
J.Bruce Fields71911552006-12-13 00:35:29 -0800545static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800546nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200547 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800549 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return nfserr_restorefh;
551
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800552 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400553 if (HAS_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100554 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400555 SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return nfs_ok;
558}
559
J.Bruce Fields71911552006-12-13 00:35:29 -0800560static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800561nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200562 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800564 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400565 if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG)) {
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100566 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
Olga Kornievskaia51100d22018-09-13 13:58:24 -0400567 SET_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return nfs_ok;
570}
571
572/*
573 * misc nfsv4 ops
574 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800575static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800576nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200577 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200579 struct nfsd4_access *access = &u->access;
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000580 u32 access_full;
Christoph Hellwigeb698532017-05-08 20:58:35 +0200581
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000582 access_full = NFS3_ACCESS_FULL;
583 if (cstate->minorversion >= 2)
584 access_full |= NFS4_ACCESS_XALIST | NFS4_ACCESS_XAREAD |
585 NFS4_ACCESS_XAWRITE;
586
587 if (access->ac_req_access & ~access_full)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return nfserr_inval;
589
590 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800591 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
592 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300595static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
Chuck Leverab4684d2012-03-02 17:13:50 -0500596{
Trond Myklebust27c438f2019-09-02 13:02:56 -0400597 __be32 *verf = (__be32 *)verifier->data;
Chuck Leverab4684d2012-03-02 17:13:50 -0500598
Trond Myklebust27c438f2019-09-02 13:02:56 -0400599 BUILD_BUG_ON(2*sizeof(*verf) != sizeof(verifier->data));
600
Chuck Lever3988a572021-12-30 10:22:05 -0500601 nfsd_copy_write_verifier(verf, net_generic(net, nfsd_net_id));
Chuck Leverab4684d2012-03-02 17:13:50 -0500602}
603
J.Bruce Fields71911552006-12-13 00:35:29 -0800604static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800605nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200606 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200608 struct nfsd4_commit *commit = &u->commit;
609
J. Bruce Fields75c096f2011-08-15 18:39:32 -0400610 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
Trond Myklebust524ff1a2020-01-06 13:40:36 -0500611 commit->co_count,
612 (__be32 *)commit->co_verf.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Al Virob37ad282006-10-19 23:28:59 -0700615static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800616nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200617 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200619 struct nfsd4_create *create = &u->create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700621 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 dev_t rdev;
623
624 fh_init(&resfh, NFS4_FHSIZE);
625
J. Bruce Fieldsfa081392016-07-21 16:00:12 -0400626 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (status)
628 return status;
629
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800630 status = check_attr_support(rqstp, cstate, create->cr_bmval,
631 nfsd_attrmask);
632 if (status)
633 return status;
634
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400635 current->fs->umask = create->cr_umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 switch (create->cr_type) {
637 case NF4LNK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800638 status = nfsd_symlink(rqstp, &cstate->current_fh,
639 create->cr_name, create->cr_namelen,
Kinglong Mee1e444f52014-07-01 17:48:02 +0800640 create->cr_data, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
642
643 case NF4BLK:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400644 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
646 if (MAJOR(rdev) != create->cr_specdata1 ||
647 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400648 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800649 status = nfsd_create(rqstp, &cstate->current_fh,
650 create->cr_name, create->cr_namelen,
651 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653
654 case NF4CHR:
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400655 status = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
657 if (MAJOR(rdev) != create->cr_specdata1 ||
658 MINOR(rdev) != create->cr_specdata2)
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400659 goto out_umask;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800660 status = nfsd_create(rqstp, &cstate->current_fh,
661 create->cr_name, create->cr_namelen,
662 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 break;
664
665 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800666 status = nfsd_create(rqstp, &cstate->current_fh,
667 create->cr_name, create->cr_namelen,
668 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670
671 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800672 status = nfsd_create(rqstp, &cstate->current_fh,
673 create->cr_name, create->cr_namelen,
674 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
676
677 case NF4DIR:
678 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800679 status = nfsd_create(rqstp, &cstate->current_fh,
680 create->cr_name, create->cr_namelen,
681 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
683
684 default:
685 status = nfserr_badtype;
686 }
687
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800688 if (status)
689 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
David Quigley18032ca2013-05-02 13:19:10 -0400691 if (create->cr_label.len)
692 nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
693
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800694 if (create->cr_acl != NULL)
695 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
696 create->cr_bmval);
697
698 fh_unlock(&cstate->current_fh);
699 set_change_info(&create->cr_cinfo, &cstate->current_fh);
700 fh_dup2(&cstate->current_fh, &resfh);
701out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 fh_put(&resfh);
J. Bruce Fields880a3a52018-03-21 17:19:02 -0400703out_umask:
704 current->fs->umask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return status;
706}
707
J.Bruce Fields71911552006-12-13 00:35:29 -0800708static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800709nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200710 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200712 struct nfsd4_getattr *getattr = &u->getattr;
Al Virob37ad282006-10-19 23:28:59 -0700713 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200715 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (status)
717 return status;
718
719 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
720 return nfserr_inval;
721
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400722 getattr->ga_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
723 getattr->ga_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
724 getattr->ga_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800726 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return nfs_ok;
728}
729
J.Bruce Fields71911552006-12-13 00:35:29 -0800730static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800731nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200732 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200734 struct nfsd4_link *link = &u->link;
J. Bruce Fields95424462017-09-15 16:02:52 -0400735 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800737 status = nfsd_link(rqstp, &cstate->current_fh,
738 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800740 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return status;
742}
743
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500744static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700747 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700750 ret = exp_pseudoroot(rqstp, &tmp_fh);
751 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return ret;
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500753 if (tmp_fh.fh_dentry == fh->fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 fh_put(&tmp_fh);
755 return nfserr_noent;
756 }
757 fh_put(&tmp_fh);
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500758 return nfsd_lookup(rqstp, fh, "..", 2, fh);
759}
760
761static __be32
762nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200763 union nfsd4_op_u *u)
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500764{
765 return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
J.Bruce Fields71911552006-12-13 00:35:29 -0800768static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800769nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200770 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800772 return nfsd_lookup(rqstp, &cstate->current_fh,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200773 u->lookup.lo_name, u->lookup.lo_len,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800774 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
J.Bruce Fields71911552006-12-13 00:35:29 -0800777static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800778nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200779 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200781 struct nfsd4_read *read = &u->read;
Al Virob37ad282006-10-19 23:28:59 -0700782 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jeff Layton5c4583b2019-08-18 14:18:54 -0400784 read->rd_nf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Chuck Lever87c59422018-03-28 13:29:11 -0400786 trace_nfsd_read_start(rqstp, &cstate->current_fh,
787 read->rd_offset, read->rd_length);
788
Chuck Lever0cb4d232022-02-04 15:19:34 -0500789 read->rd_length = min_t(u32, read->rd_length, svc_max_payload(rqstp));
790 if (read->rd_offset > (u64)OFFSET_MAX)
791 read->rd_offset = (u64)OFFSET_MAX;
792 if (read->rd_offset + read->rd_length > (u64)OFFSET_MAX)
793 read->rd_length = (u64)OFFSET_MAX - read->rd_offset;
794
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500795 /*
796 * If we do a zero copy read, then a client will see read data
797 * that reflects the state of the file *after* performing the
798 * following compound.
799 *
800 * To ensure proper ordering, we therefore turn off zero copy if
801 * the client wants us to do more in this compound:
802 */
803 if (!nfsd4_last_compound_op(rqstp))
Jeff Layton779fb0f2014-11-19 07:51:18 -0500804 clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* check stateid */
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100807 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
808 &read->rd_stateid, RD_STATE,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400809 &read->rd_nf, NULL);
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200810 if (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
812 goto out;
813 }
814 status = nfs_ok;
815out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800817 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return status;
819}
820
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400821
822static void
823nfsd4_read_release(union nfsd4_op_u *u)
824{
Jeff Layton5c4583b2019-08-18 14:18:54 -0400825 if (u->read.rd_nf)
826 nfsd_file_put(u->read.rd_nf);
Chuck Lever87c59422018-03-28 13:29:11 -0400827 trace_nfsd_read_done(u->read.rd_rqstp, u->read.rd_fhp,
828 u->read.rd_offset, u->read.rd_length);
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400829}
830
J.Bruce Fields71911552006-12-13 00:35:29 -0800831static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800832nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200833 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200835 struct nfsd4_readdir *readdir = &u->readdir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 u64 cookie = readdir->rd_cookie;
837 static const nfs4_verifier zeroverf;
838
839 /* no need to check permission - this will be done in nfsd_readdir() */
840
841 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
842 return nfserr_inval;
843
J. Bruce Fields916d2d82016-10-18 14:18:40 -0400844 readdir->rd_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
845 readdir->rd_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
846 readdir->rd_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Bernd Schubert832023b2011-08-08 17:38:08 +0200848 if ((cookie == 1) || (cookie == 2) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
850 return nfserr_bad_cookie;
851
852 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800853 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return nfs_ok;
855}
856
J.Bruce Fields71911552006-12-13 00:35:29 -0800857static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800858nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200859 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200861 u->readlink.rl_rqstp = rqstp;
862 u->readlink.rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return nfs_ok;
864}
865
J.Bruce Fields71911552006-12-13 00:35:29 -0800866static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800867nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200868 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200870 struct nfsd4_remove *remove = &u->remove;
Al Virob37ad282006-10-19 23:28:59 -0700871 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400873 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700874 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800875 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
876 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800878 fh_unlock(&cstate->current_fh);
879 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881 return status;
882}
883
J.Bruce Fields71911552006-12-13 00:35:29 -0800884static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800885nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200886 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200888 struct nfsd4_rename *rename = &u->rename;
J. Bruce Fields95424462017-09-15 16:02:52 -0400889 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
J. Bruce Fieldsf8f71d02018-11-06 11:47:20 -0500891 if (opens_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700892 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800893 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
894 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fields2a6cf942013-04-30 15:28:51 -0400896 if (status)
897 return status;
898 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
899 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
900 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
J.Bruce Fields71911552006-12-13 00:35:29 -0800903static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700904nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200905 union nfsd4_op_u *u)
Andy Adamsondcb488a32007-07-17 04:04:51 -0700906{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200907 struct nfsd4_secinfo *secinfo = &u->secinfo;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700908 struct svc_export *exp;
909 struct dentry *dentry;
910 __be32 err;
911
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400912 err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
913 if (err)
914 return err;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700915 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
916 secinfo->si_name, secinfo->si_namelen,
917 &exp, &dentry);
918 if (err)
919 return err;
J. Bruce Fields2f6fc052016-03-02 16:36:21 -0800920 fh_unlock(&cstate->current_fh);
David Howells2b0143b2015-03-17 22:25:59 +0000921 if (d_really_is_negative(dentry)) {
Andy Adamsondcb488a32007-07-17 04:04:51 -0700922 exp_put(exp);
923 err = nfserr_noent;
924 } else
925 secinfo->si_exp = exp;
926 dput(dentry);
J. Bruce Fields56560b92010-12-16 09:57:15 -0500927 if (cstate->minorversion)
928 /* See rfc 5661 section 2.6.3.1.1.8 */
929 fh_put(&cstate->current_fh);
Andy Adamsondcb488a32007-07-17 04:04:51 -0700930 return err;
931}
932
933static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500934nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200935 union nfsd4_op_u *u)
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500936{
937 __be32 err;
938
Christoph Hellwigeb698532017-05-08 20:58:35 +0200939 switch (u->secinfo_no_name.sin_style) {
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500940 case NFS4_SECINFO_STYLE4_CURRENT_FH:
941 break;
942 case NFS4_SECINFO_STYLE4_PARENT:
943 err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
944 if (err)
945 return err;
946 break;
947 default:
948 return nfserr_inval;
949 }
Kinglong Meebf18f162014-06-10 22:06:44 +0800950
Christoph Hellwigeb698532017-05-08 20:58:35 +0200951 u->secinfo_no_name.sin_exp = exp_get(cstate->current_fh.fh_export);
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500952 fh_put(&cstate->current_fh);
953 return nfs_ok;
954}
955
J. Bruce Fields34b1744c2017-05-05 17:09:37 -0400956static void
957nfsd4_secinfo_release(union nfsd4_op_u *u)
958{
959 if (u->secinfo.si_exp)
960 exp_put(u->secinfo.si_exp);
961}
962
Eryu Guanec572b92017-09-29 15:01:10 +0800963static void
964nfsd4_secinfo_no_name_release(union nfsd4_op_u *u)
965{
966 if (u->secinfo_no_name.sin_exp)
967 exp_put(u->secinfo_no_name.sin_exp);
968}
969
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500970static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800971nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +0200972 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Christoph Hellwigeb698532017-05-08 20:58:35 +0200974 struct nfsd4_setattr *setattr = &u->setattr;
Al Virob37ad282006-10-19 23:28:59 -0700975 __be32 status = nfs_ok;
Al Viro96f6f982012-04-12 23:47:00 -0400976 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200979 status = nfs4_preprocess_stateid_op(rqstp, cstate,
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +0100980 &cstate->current_fh, &setattr->sa_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -0400981 WR_STATE, NULL, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -0800982 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700983 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800984 return status;
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Al Viro96f6f982012-04-12 23:47:00 -0400987 err = fh_want_write(&cstate->current_fh);
988 if (err)
989 return nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800991
992 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
993 nfsd_attrmask);
994 if (status)
995 goto out;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800998 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
999 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -08001001 goto out;
David Quigley18032ca2013-05-02 13:19:10 -04001002 if (setattr->sa_label.len)
1003 status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
1004 &setattr->sa_label);
1005 if (status)
1006 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001007 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Arnd Bergmann2a1aa482019-11-03 17:50:18 +01001008 0, (time64_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -08001009out:
Al Virobad0dcf2011-11-23 12:03:18 -05001010 fh_drop_write(&cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return status;
1012}
1013
J.Bruce Fields71911552006-12-13 00:35:29 -08001014static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001015nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001016 union nfsd4_op_u *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001018 struct nfsd4_write *write = &u->write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 stateid_t *stateid = &write->wr_stateid;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001020 struct nfsd_file *nf = NULL;
Al Virob37ad282006-10-19 23:28:59 -07001021 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -05001022 unsigned long cnt;
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001023 int nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Chuck Lever6260d9a2022-01-25 16:36:22 -05001025 if (write->wr_offset > (u64)OFFSET_MAX ||
1026 write->wr_offset + write->wr_buflen > (u64)OFFSET_MAX)
1027 return nfserr_fbig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Chuck Leverd890be12018-03-27 10:53:27 -04001029 cnt = write->wr_buflen;
1030 trace_nfsd_write_start(rqstp, &cstate->current_fh,
1031 write->wr_offset, cnt);
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001032 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001033 stateid, WR_STATE, &nf, NULL);
J. Bruce Fields375c5542006-01-18 17:43:33 -08001034 if (status) {
1035 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1036 return status;
1037 }
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 write->wr_how_written = write->wr_stable_how;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Chuck Leverdae9a6c2021-09-30 17:06:21 -04001041 nvecs = svc_fill_write_vector(rqstp, &write->wr_payload);
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001042 WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1043
Trond Myklebust16f8f892020-01-06 13:40:29 -05001044 status = nfsd_vfs_write(rqstp, &cstate->current_fh, nf,
Christoph Hellwigaf90f702015-06-18 16:45:00 +02001045 write->wr_offset, rqstp->rq_vec, nvecs, &cnt,
Trond Myklebust19e06632020-01-06 13:40:37 -05001046 write->wr_how_written,
1047 (__be32 *)write->wr_verifier.data);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001048 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
David Shaw31dec252009-03-05 20:16:14 -05001050 write->wr_bytes_written = cnt;
Chuck Leverd890be12018-03-27 10:53:27 -04001051 trace_nfsd_write_done(rqstp, &cstate->current_fh,
1052 write->wr_offset, cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Anna Schumaker24bab492014-09-26 13:58:27 -04001056static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001057nfsd4_verify_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Jeff Layton5c4583b2019-08-18 14:18:54 -04001058 stateid_t *src_stateid, struct nfsd_file **src,
1059 stateid_t *dst_stateid, struct nfsd_file **dst)
Christoph Hellwigffa01602015-12-03 12:59:52 +01001060{
Christoph Hellwigffa01602015-12-03 12:59:52 +01001061 __be32 status;
1062
Scott Mayhew01310bb2018-11-08 11:11:36 -05001063 if (!cstate->save_fh.fh_dentry)
1064 return nfserr_nofilehandle;
1065
Christoph Hellwigffa01602015-12-03 12:59:52 +01001066 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->save_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001067 src_stateid, RD_STATE, src, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001068 if (status) {
1069 dprintk("NFSD: %s: couldn't process src stateid!\n", __func__);
1070 goto out;
1071 }
1072
1073 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001074 dst_stateid, WR_STATE, dst, NULL);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001075 if (status) {
1076 dprintk("NFSD: %s: couldn't process dst stateid!\n", __func__);
1077 goto out_put_src;
1078 }
1079
1080 /* fix up for NFS-specific error code */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001081 if (!S_ISREG(file_inode((*src)->nf_file)->i_mode) ||
1082 !S_ISREG(file_inode((*dst)->nf_file)->i_mode)) {
Christoph Hellwigffa01602015-12-03 12:59:52 +01001083 status = nfserr_wrong_type;
1084 goto out_put_dst;
1085 }
1086
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001087out:
1088 return status;
1089out_put_dst:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001090 nfsd_file_put(*dst);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001091out_put_src:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001092 nfsd_file_put(*src);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001093 goto out;
1094}
1095
1096static __be32
1097nfsd4_clone(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001098 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001099{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001100 struct nfsd4_clone *clone = &u->clone;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001101 struct nfsd_file *src, *dst;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001102 __be32 status;
1103
1104 status = nfsd4_verify_copy(rqstp, cstate, &clone->cl_src_stateid, &src,
1105 &clone->cl_dst_stateid, &dst);
1106 if (status)
1107 goto out;
1108
Trond Myklebusta2f4c3f2021-12-18 20:38:00 -05001109 status = nfsd4_clone_file_range(rqstp, src, clone->cl_src_pos,
Trond Myklebustb66ae6d2020-01-06 13:40:32 -05001110 dst, clone->cl_dst_pos, clone->cl_count,
Trond Myklebusta25e37262019-11-27 17:05:51 -05001111 EX_ISSYNC(cstate->current_fh.fh_export));
Christoph Hellwigffa01602015-12-03 12:59:52 +01001112
Jeff Layton5c4583b2019-08-18 14:18:54 -04001113 nfsd_file_put(dst);
1114 nfsd_file_put(src);
Christoph Hellwigffa01602015-12-03 12:59:52 +01001115out:
1116 return status;
1117}
1118
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001119void nfs4_put_copy(struct nfsd4_copy *copy)
1120{
1121 if (!refcount_dec_and_test(&copy->refcount))
1122 return;
1123 kfree(copy);
1124}
1125
1126static bool
1127check_and_set_stop_copy(struct nfsd4_copy *copy)
1128{
1129 bool value;
1130
1131 spin_lock(&copy->cp_clp->async_lock);
1132 value = copy->stopped;
1133 if (!copy->stopped)
1134 copy->stopped = true;
1135 spin_unlock(&copy->cp_clp->async_lock);
1136 return value;
1137}
1138
1139static void nfsd4_stop_copy(struct nfsd4_copy *copy)
1140{
1141 /* only 1 thread should stop the copy */
1142 if (!check_and_set_stop_copy(copy))
1143 kthread_stop(copy->copy_task);
1144 nfs4_put_copy(copy);
1145}
1146
1147static struct nfsd4_copy *nfsd4_get_copy(struct nfs4_client *clp)
1148{
1149 struct nfsd4_copy *copy = NULL;
1150
1151 spin_lock(&clp->async_lock);
1152 if (!list_empty(&clp->async_copies)) {
1153 copy = list_first_entry(&clp->async_copies, struct nfsd4_copy,
1154 copies);
1155 refcount_inc(&copy->refcount);
1156 }
1157 spin_unlock(&clp->async_lock);
1158 return copy;
1159}
1160
1161void nfsd4_shutdown_copy(struct nfs4_client *clp)
1162{
1163 struct nfsd4_copy *copy;
1164
1165 while ((copy = nfsd4_get_copy(clp)) != NULL)
1166 nfsd4_stop_copy(copy);
1167}
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001168#ifdef CONFIG_NFSD_V4_2_INTER_SSC
1169
1170extern struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1171 struct nfs_fh *src_fh,
1172 nfs4_stateid *stateid);
1173extern void nfs42_ssc_close(struct file *filep);
1174
1175extern void nfs_sb_deactive(struct super_block *sb);
1176
1177#define NFSD42_INTERSSC_MOUNTOPS "vers=4.2,addr=%s,sec=sys"
1178
Chuck Leverf2453972020-04-06 16:01:42 -04001179/*
Dai Ngof4e44b32021-05-21 15:09:37 -04001180 * setup a work entry in the ssc delayed unmount list.
1181 */
Dai Ngof47dc2d2021-06-03 20:02:26 -04001182static __be32 nfsd4_ssc_setup_dul(struct nfsd_net *nn, char *ipaddr,
Dai Ngof4e44b32021-05-21 15:09:37 -04001183 struct nfsd4_ssc_umount_item **retwork, struct vfsmount **ss_mnt)
1184{
Colin Ian King8e70bf22021-09-25 23:58:41 +01001185 struct nfsd4_ssc_umount_item *ni = NULL;
Dai Ngof4e44b32021-05-21 15:09:37 -04001186 struct nfsd4_ssc_umount_item *work = NULL;
1187 struct nfsd4_ssc_umount_item *tmp;
1188 DEFINE_WAIT(wait);
1189
1190 *ss_mnt = NULL;
1191 *retwork = NULL;
1192 work = kzalloc(sizeof(*work), GFP_KERNEL);
1193try_again:
1194 spin_lock(&nn->nfsd_ssc_lock);
1195 list_for_each_entry_safe(ni, tmp, &nn->nfsd_ssc_mount_list, nsui_list) {
1196 if (strncmp(ni->nsui_ipaddr, ipaddr, sizeof(ni->nsui_ipaddr)))
1197 continue;
1198 /* found a match */
1199 if (ni->nsui_busy) {
1200 /* wait - and try again */
1201 prepare_to_wait(&nn->nfsd_ssc_waitq, &wait,
1202 TASK_INTERRUPTIBLE);
1203 spin_unlock(&nn->nfsd_ssc_lock);
1204
1205 /* allow 20secs for mount/unmount for now - revisit */
1206 if (signal_pending(current) ||
1207 (schedule_timeout(20*HZ) == 0)) {
1208 kfree(work);
1209 return nfserr_eagain;
1210 }
1211 finish_wait(&nn->nfsd_ssc_waitq, &wait);
1212 goto try_again;
1213 }
1214 *ss_mnt = ni->nsui_vfsmount;
1215 refcount_inc(&ni->nsui_refcnt);
1216 spin_unlock(&nn->nfsd_ssc_lock);
1217 kfree(work);
1218
1219 /* return vfsmount in ss_mnt */
1220 return 0;
1221 }
1222 if (work) {
1223 strncpy(work->nsui_ipaddr, ipaddr, sizeof(work->nsui_ipaddr));
1224 refcount_set(&work->nsui_refcnt, 2);
1225 work->nsui_busy = true;
1226 list_add_tail(&work->nsui_list, &nn->nfsd_ssc_mount_list);
1227 *retwork = work;
1228 }
1229 spin_unlock(&nn->nfsd_ssc_lock);
1230 return 0;
1231}
1232
1233static void nfsd4_ssc_update_dul_work(struct nfsd_net *nn,
1234 struct nfsd4_ssc_umount_item *work, struct vfsmount *ss_mnt)
1235{
1236 /* set nsui_vfsmount, clear busy flag and wakeup waiters */
1237 spin_lock(&nn->nfsd_ssc_lock);
1238 work->nsui_vfsmount = ss_mnt;
1239 work->nsui_busy = false;
1240 wake_up_all(&nn->nfsd_ssc_waitq);
1241 spin_unlock(&nn->nfsd_ssc_lock);
1242}
1243
1244static void nfsd4_ssc_cancel_dul_work(struct nfsd_net *nn,
1245 struct nfsd4_ssc_umount_item *work)
1246{
1247 spin_lock(&nn->nfsd_ssc_lock);
1248 list_del(&work->nsui_list);
1249 wake_up_all(&nn->nfsd_ssc_waitq);
1250 spin_unlock(&nn->nfsd_ssc_lock);
1251 kfree(work);
1252}
1253
1254/*
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001255 * Support one copy source server for now.
1256 */
1257static __be32
1258nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp,
1259 struct vfsmount **mount)
1260{
1261 struct file_system_type *type;
1262 struct vfsmount *ss_mnt;
1263 struct nfs42_netaddr *naddr;
1264 struct sockaddr_storage tmp_addr;
1265 size_t tmp_addrlen, match_netid_len = 3;
1266 char *startsep = "", *endsep = "", *match_netid = "tcp";
1267 char *ipaddr, *dev_name, *raw_data;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001268 int len, raw_len;
1269 __be32 status = nfserr_inval;
Dai Ngof4e44b32021-05-21 15:09:37 -04001270 struct nfsd4_ssc_umount_item *work = NULL;
1271 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001272
1273 naddr = &nss->u.nl4_addr;
1274 tmp_addrlen = rpc_uaddr2sockaddr(SVC_NET(rqstp), naddr->addr,
1275 naddr->addr_len,
1276 (struct sockaddr *)&tmp_addr,
1277 sizeof(tmp_addr));
1278 if (tmp_addrlen == 0)
1279 goto out_err;
1280
1281 if (tmp_addr.ss_family == AF_INET6) {
1282 startsep = "[";
1283 endsep = "]";
1284 match_netid = "tcp6";
1285 match_netid_len = 4;
1286 }
1287
1288 if (naddr->netid_len != match_netid_len ||
1289 strncmp(naddr->netid, match_netid, naddr->netid_len))
1290 goto out_err;
1291
1292 /* Construct the raw data for the vfs_kern_mount call */
1293 len = RPC_MAX_ADDRBUFLEN + 1;
1294 ipaddr = kzalloc(len, GFP_KERNEL);
1295 if (!ipaddr)
1296 goto out_err;
1297
1298 rpc_ntop((struct sockaddr *)&tmp_addr, ipaddr, len);
1299
1300 /* 2 for ipv6 endsep and startsep. 3 for ":/" and trailing '/0'*/
1301
1302 raw_len = strlen(NFSD42_INTERSSC_MOUNTOPS) + strlen(ipaddr);
1303 raw_data = kzalloc(raw_len, GFP_KERNEL);
1304 if (!raw_data)
1305 goto out_free_ipaddr;
1306
1307 snprintf(raw_data, raw_len, NFSD42_INTERSSC_MOUNTOPS, ipaddr);
1308
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001309 status = nfserr_nodev;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001310 type = get_fs_type("nfs");
1311 if (!type)
1312 goto out_free_rawdata;
1313
1314 /* Set the server:<export> for the vfs_kern_mount call */
1315 dev_name = kzalloc(len + 5, GFP_KERNEL);
1316 if (!dev_name)
1317 goto out_free_rawdata;
1318 snprintf(dev_name, len + 5, "%s%s%s:/", startsep, ipaddr, endsep);
1319
Dai Ngof4e44b32021-05-21 15:09:37 -04001320 status = nfsd4_ssc_setup_dul(nn, ipaddr, &work, &ss_mnt);
1321 if (status)
1322 goto out_free_devname;
1323 if (ss_mnt)
1324 goto out_done;
1325
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001326 /* Use an 'internal' mount: SB_KERNMOUNT -> MNT_INTERNAL */
1327 ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data);
1328 module_put(type->owner);
Dai Ngof4e44b32021-05-21 15:09:37 -04001329 if (IS_ERR(ss_mnt)) {
Wei Yongjun54185262021-06-04 10:12:37 +00001330 status = nfserr_nodev;
Dai Ngof4e44b32021-05-21 15:09:37 -04001331 if (work)
1332 nfsd4_ssc_cancel_dul_work(nn, work);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001333 goto out_free_devname;
Dai Ngof4e44b32021-05-21 15:09:37 -04001334 }
1335 if (work)
1336 nfsd4_ssc_update_dul_work(nn, work, ss_mnt);
1337out_done:
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001338 status = 0;
1339 *mount = ss_mnt;
1340
1341out_free_devname:
1342 kfree(dev_name);
1343out_free_rawdata:
1344 kfree(raw_data);
1345out_free_ipaddr:
1346 kfree(ipaddr);
1347out_err:
1348 return status;
1349}
1350
1351static void
1352nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1353{
Dai Ngo0cfcd402020-10-18 23:42:49 -04001354 nfs_do_sb_deactive(ss_mnt->mnt_sb);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001355 mntput(ss_mnt);
1356}
1357
Chuck Leverf2453972020-04-06 16:01:42 -04001358/*
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001359 * Verify COPY destination stateid.
Chuck Leverf2453972020-04-06 16:01:42 -04001360 *
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001361 * Connect to the source server with NFSv4.1.
1362 * Create the source struct file for nfsd_copy_range.
1363 * Called with COPY cstate:
1364 * SAVED_FH: source filehandle
1365 * CURRENT_FH: destination filehandle
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001366 */
1367static __be32
1368nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1369 struct nfsd4_compound_state *cstate,
1370 struct nfsd4_copy *copy, struct vfsmount **mount)
1371{
1372 struct svc_fh *s_fh = NULL;
1373 stateid_t *s_stid = &copy->cp_src_stateid;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001374 __be32 status = nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001375
1376 /* Verify the destination stateid and set dst struct file*/
1377 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1378 &copy->cp_dst_stateid,
1379 WR_STATE, &copy->nf_dst, NULL);
1380 if (status)
1381 goto out;
1382
1383 status = nfsd4_interssc_connect(&copy->cp_src, rqstp, mount);
1384 if (status)
1385 goto out;
1386
1387 s_fh = &cstate->save_fh;
1388
1389 copy->c_fh.size = s_fh->fh_handle.fh_size;
NeilBrownd8b26072021-09-02 11:16:32 +10001390 memcpy(copy->c_fh.data, &s_fh->fh_handle.fh_raw, copy->c_fh.size);
Olga Kornievskaia3f9544c2019-12-04 15:13:53 -05001391 copy->stateid.seqid = cpu_to_be32(s_stid->si_generation);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001392 memcpy(copy->stateid.other, (void *)&s_stid->si_opaque,
1393 sizeof(stateid_opaque_t));
1394
1395 status = 0;
1396out:
1397 return status;
1398}
1399
1400static void
1401nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1402 struct nfsd_file *dst)
1403{
Dai Ngof4e44b32021-05-21 15:09:37 -04001404 bool found = false;
1405 long timeout;
1406 struct nfsd4_ssc_umount_item *tmp;
Dai Ngof47dc2d2021-06-03 20:02:26 -04001407 struct nfsd4_ssc_umount_item *ni = NULL;
Dai Ngof4e44b32021-05-21 15:09:37 -04001408 struct nfsd_net *nn = net_generic(dst->nf_net, nfsd_net_id);
1409
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001410 nfs42_ssc_close(src->nf_file);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001411 nfsd_file_put(dst);
Dai Ngof4e44b32021-05-21 15:09:37 -04001412 fput(src->nf_file);
1413
1414 if (!nn) {
1415 mntput(ss_mnt);
1416 return;
1417 }
1418 spin_lock(&nn->nfsd_ssc_lock);
1419 timeout = msecs_to_jiffies(nfsd4_ssc_umount_timeout);
1420 list_for_each_entry_safe(ni, tmp, &nn->nfsd_ssc_mount_list, nsui_list) {
1421 if (ni->nsui_vfsmount->mnt_sb == ss_mnt->mnt_sb) {
1422 list_del(&ni->nsui_list);
1423 /*
1424 * vfsmount can be shared by multiple exports,
1425 * decrement refcnt. If the count drops to 1 it
1426 * will be unmounted when nsui_expire expires.
1427 */
1428 refcount_dec(&ni->nsui_refcnt);
1429 ni->nsui_expire = jiffies + timeout;
1430 list_add_tail(&ni->nsui_list, &nn->nfsd_ssc_mount_list);
1431 found = true;
1432 break;
1433 }
1434 }
1435 spin_unlock(&nn->nfsd_ssc_lock);
1436 if (!found) {
1437 mntput(ss_mnt);
1438 return;
1439 }
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001440}
1441
1442#else /* CONFIG_NFSD_V4_2_INTER_SSC */
1443
1444static __be32
1445nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1446 struct nfsd4_compound_state *cstate,
1447 struct nfsd4_copy *copy,
1448 struct vfsmount **mount)
1449{
1450 *mount = NULL;
Olga Kornievskaiab8290ca2019-12-04 15:13:53 -05001451 return nfserr_inval;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001452}
1453
1454static void
1455nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1456 struct nfsd_file *dst)
1457{
1458}
1459
1460static void
1461nfsd4_interssc_disconnect(struct vfsmount *ss_mnt)
1462{
1463}
1464
1465static struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1466 struct nfs_fh *src_fh,
1467 nfs4_stateid *stateid)
1468{
1469 return NULL;
1470}
1471#endif /* CONFIG_NFSD_V4_2_INTER_SSC */
1472
1473static __be32
1474nfsd4_setup_intra_ssc(struct svc_rqst *rqstp,
1475 struct nfsd4_compound_state *cstate,
1476 struct nfsd4_copy *copy)
1477{
1478 return nfsd4_verify_copy(rqstp, cstate, &copy->cp_src_stateid,
1479 &copy->nf_src, &copy->cp_dst_stateid,
1480 &copy->nf_dst);
1481}
1482
1483static void
1484nfsd4_cleanup_intra_ssc(struct nfsd_file *src, struct nfsd_file *dst)
1485{
1486 nfsd_file_put(src);
1487 nfsd_file_put(dst);
1488}
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001489
1490static void nfsd4_cb_offload_release(struct nfsd4_callback *cb)
1491{
1492 struct nfsd4_copy *copy = container_of(cb, struct nfsd4_copy, cp_cb);
1493
1494 nfs4_put_copy(copy);
1495}
1496
1497static int nfsd4_cb_offload_done(struct nfsd4_callback *cb,
1498 struct rpc_task *task)
1499{
1500 return 1;
1501}
1502
1503static const struct nfsd4_callback_ops nfsd4_cb_offload_ops = {
1504 .release = nfsd4_cb_offload_release,
1505 .done = nfsd4_cb_offload_done
1506};
1507
1508static void nfsd4_init_copy_res(struct nfsd4_copy *copy, bool sync)
1509{
Olga Kornievskaiaeac0b172021-05-19 14:48:27 -04001510 copy->cp_res.wr_stable_how =
1511 copy->committed ? NFS_FILE_SYNC : NFS_UNSTABLE;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001512 copy->cp_synchronous = sync;
1513 gen_boot_verifier(&copy->cp_res.wr_verifier, copy->cp_clp->net);
1514}
1515
1516static ssize_t _nfsd_copy_file_range(struct nfsd4_copy *copy)
1517{
Trond Myklebust555dbf12021-12-18 20:38:01 -05001518 struct file *dst = copy->nf_dst->nf_file;
1519 struct file *src = copy->nf_src->nf_file;
1520 errseq_t since;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001521 ssize_t bytes_copied = 0;
J. Bruce Fieldse7a833e2021-03-18 20:03:22 -04001522 u64 bytes_total = copy->cp_count;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001523 u64 src_pos = copy->cp_src_pos;
1524 u64 dst_pos = copy->cp_dst_pos;
Chuck Leverc2f1c4b2021-10-13 16:44:20 -04001525 int status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001526
J. Bruce Fields792a5112021-03-18 20:03:23 -04001527 /* See RFC 7862 p.67: */
1528 if (bytes_total == 0)
1529 bytes_total = ULLONG_MAX;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001530 do {
1531 if (kthread_should_stop())
1532 break;
Trond Myklebust555dbf12021-12-18 20:38:01 -05001533 bytes_copied = nfsd_copy_file_range(src, src_pos, dst, dst_pos,
1534 bytes_total);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001535 if (bytes_copied <= 0)
1536 break;
1537 bytes_total -= bytes_copied;
1538 copy->cp_res.wr_bytes_written += bytes_copied;
1539 src_pos += bytes_copied;
1540 dst_pos += bytes_copied;
1541 } while (bytes_total > 0 && !copy->cp_synchronous);
Olga Kornievskaiaeac0b172021-05-19 14:48:27 -04001542 /* for a non-zero asynchronous copy do a commit of data */
1543 if (!copy->cp_synchronous && copy->cp_res.wr_bytes_written > 0) {
Trond Myklebust555dbf12021-12-18 20:38:01 -05001544 since = READ_ONCE(dst->f_wb_err);
1545 status = vfs_fsync_range(dst, copy->cp_dst_pos,
Olga Kornievskaiaeac0b172021-05-19 14:48:27 -04001546 copy->cp_res.wr_bytes_written, 0);
Trond Myklebust555dbf12021-12-18 20:38:01 -05001547 if (!status)
1548 status = filemap_check_wb_err(dst->f_mapping, since);
Olga Kornievskaiaeac0b172021-05-19 14:48:27 -04001549 if (!status)
1550 copy->committed = true;
1551 }
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001552 return bytes_copied;
1553}
1554
1555static __be32 nfsd4_do_copy(struct nfsd4_copy *copy, bool sync)
1556{
1557 __be32 status;
1558 ssize_t bytes;
1559
1560 bytes = _nfsd_copy_file_range(copy);
1561 /* for async copy, we ignore the error, client can always retry
1562 * to get the error
1563 */
1564 if (bytes < 0 && !copy->cp_res.wr_bytes_written)
1565 status = nfserrno(bytes);
1566 else {
1567 nfsd4_init_copy_res(copy, sync);
1568 status = nfs_ok;
1569 }
1570
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001571 if (!copy->cp_intra) /* Inter server SSC */
1572 nfsd4_cleanup_inter_ssc(copy->ss_mnt, copy->nf_src,
1573 copy->nf_dst);
1574 else
1575 nfsd4_cleanup_intra_ssc(copy->nf_src, copy->nf_dst);
1576
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001577 return status;
1578}
1579
Chuck Levereb162e12020-11-30 16:17:40 -05001580static void dup_copy_fields(struct nfsd4_copy *src, struct nfsd4_copy *dst)
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001581{
1582 dst->cp_src_pos = src->cp_src_pos;
1583 dst->cp_dst_pos = src->cp_dst_pos;
1584 dst->cp_count = src->cp_count;
1585 dst->cp_synchronous = src->cp_synchronous;
1586 memcpy(&dst->cp_res, &src->cp_res, sizeof(src->cp_res));
1587 memcpy(&dst->fh, &src->fh, sizeof(src->fh));
1588 dst->cp_clp = src->cp_clp;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001589 dst->nf_dst = nfsd_file_get(src->nf_dst);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001590 dst->cp_intra = src->cp_intra;
1591 if (src->cp_intra) /* for inter, file_src doesn't exist yet */
1592 dst->nf_src = nfsd_file_get(src->nf_src);
1593
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001594 memcpy(&dst->cp_stateid, &src->cp_stateid, sizeof(src->cp_stateid));
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001595 memcpy(&dst->cp_src, &src->cp_src, sizeof(struct nl4_server));
1596 memcpy(&dst->stateid, &src->stateid, sizeof(src->stateid));
1597 memcpy(&dst->c_fh, &src->c_fh, sizeof(src->c_fh));
1598 dst->ss_mnt = src->ss_mnt;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001599}
1600
1601static void cleanup_async_copy(struct nfsd4_copy *copy)
1602{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001603 nfs4_free_copy_state(copy);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001604 nfsd_file_put(copy->nf_dst);
Olga Kornievskaia2e577f02019-12-04 15:13:54 -05001605 if (copy->cp_intra)
1606 nfsd_file_put(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001607 spin_lock(&copy->cp_clp->async_lock);
1608 list_del(&copy->copies);
1609 spin_unlock(&copy->cp_clp->async_lock);
1610 nfs4_put_copy(copy);
1611}
1612
1613static int nfsd4_do_async_copy(void *data)
1614{
1615 struct nfsd4_copy *copy = (struct nfsd4_copy *)data;
1616 struct nfsd4_copy *cb_copy;
1617
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001618 if (!copy->cp_intra) { /* Inter server SSC */
1619 copy->nf_src = kzalloc(sizeof(struct nfsd_file), GFP_KERNEL);
1620 if (!copy->nf_src) {
1621 copy->nfserr = nfserr_serverfault;
1622 nfsd4_interssc_disconnect(copy->ss_mnt);
1623 goto do_callback;
1624 }
1625 copy->nf_src->nf_file = nfs42_ssc_open(copy->ss_mnt, &copy->c_fh,
1626 &copy->stateid);
1627 if (IS_ERR(copy->nf_src->nf_file)) {
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001628 copy->nfserr = nfserr_offload_denied;
1629 nfsd4_interssc_disconnect(copy->ss_mnt);
1630 goto do_callback;
1631 }
1632 }
1633
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001634 copy->nfserr = nfsd4_do_copy(copy, 0);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001635do_callback:
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001636 cb_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1637 if (!cb_copy)
1638 goto out;
Dai Ngo49a36132020-10-29 15:07:16 -04001639 refcount_set(&cb_copy->refcount, 1);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001640 memcpy(&cb_copy->cp_res, &copy->cp_res, sizeof(copy->cp_res));
1641 cb_copy->cp_clp = copy->cp_clp;
1642 cb_copy->nfserr = copy->nfserr;
1643 memcpy(&cb_copy->fh, &copy->fh, sizeof(copy->fh));
1644 nfsd4_init_cb(&cb_copy->cp_cb, cb_copy->cp_clp,
1645 &nfsd4_cb_offload_ops, NFSPROC4_CLNT_CB_OFFLOAD);
Chuck Lever87512382021-05-14 15:57:14 -04001646 trace_nfsd_cb_offload(copy->cp_clp, &copy->cp_res.cb_stateid,
1647 &copy->fh, copy->cp_count, copy->nfserr);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001648 nfsd4_run_cb(&cb_copy->cp_cb);
1649out:
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001650 if (!copy->cp_intra)
1651 kfree(copy->nf_src);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001652 cleanup_async_copy(copy);
1653 return 0;
1654}
1655
Christoph Hellwigffa01602015-12-03 12:59:52 +01001656static __be32
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001657nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001658 union nfsd4_op_u *u)
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001659{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001660 struct nfsd4_copy *copy = &u->copy;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001661 __be32 status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001662 struct nfsd4_copy *async_copy = NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001663
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001664 if (!copy->cp_intra) { /* Inter server SSC */
1665 if (!inter_copy_offload_enable || copy->cp_synchronous) {
1666 status = nfserr_notsupp;
1667 goto out;
1668 }
1669 status = nfsd4_setup_inter_ssc(rqstp, cstate, copy,
1670 &copy->ss_mnt);
1671 if (status)
1672 return nfserr_offload_denied;
1673 } else {
1674 status = nfsd4_setup_intra_ssc(rqstp, cstate, copy);
1675 if (status)
1676 return status;
1677 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001678
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001679 copy->cp_clp = cstate->clp;
1680 memcpy(&copy->fh, &cstate->current_fh.fh_handle,
1681 sizeof(struct knfsd_fh));
1682 if (!copy->cp_synchronous) {
1683 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001684
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001685 status = nfserrno(-ENOMEM);
1686 async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1687 if (!async_copy)
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001688 goto out_err;
1689 if (!nfs4_init_copy_state(nn, copy))
1690 goto out_err;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001691 refcount_set(&async_copy->refcount, 1);
Olga Kornievskaiae739b122021-03-30 15:03:59 -04001692 memcpy(&copy->cp_res.cb_stateid, &copy->cp_stateid.stid,
1693 sizeof(copy->cp_res.cb_stateid));
Chuck Levereb162e12020-11-30 16:17:40 -05001694 dup_copy_fields(copy, async_copy);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001695 async_copy->copy_task = kthread_create(nfsd4_do_async_copy,
1696 async_copy, "%s", "copy thread");
1697 if (IS_ERR(async_copy->copy_task))
1698 goto out_err;
1699 spin_lock(&async_copy->cp_clp->async_lock);
1700 list_add(&async_copy->copies,
1701 &async_copy->cp_clp->async_copies);
1702 spin_unlock(&async_copy->cp_clp->async_lock);
1703 wake_up_process(async_copy->copy_task);
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001704 status = nfs_ok;
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001705 } else {
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001706 status = nfsd4_do_copy(copy, 1);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001707 }
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001708out:
1709 return status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001710out_err:
Olga Kornievskaia18f428d2019-12-04 15:13:54 -05001711 if (async_copy)
1712 cleanup_async_copy(async_copy);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001713 status = nfserrno(-ENOMEM);
1714 if (!copy->cp_intra)
1715 nfsd4_interssc_disconnect(copy->ss_mnt);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001716 goto out;
1717}
1718
1719struct nfsd4_copy *
1720find_async_copy(struct nfs4_client *clp, stateid_t *stateid)
1721{
1722 struct nfsd4_copy *copy;
1723
1724 spin_lock(&clp->async_lock);
1725 list_for_each_entry(copy, &clp->async_copies, copies) {
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001726 if (memcmp(&copy->cp_stateid.stid, stateid, NFS4_STATEID_SIZE))
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001727 continue;
1728 refcount_inc(&copy->refcount);
1729 spin_unlock(&clp->async_lock);
1730 return copy;
1731 }
1732 spin_unlock(&clp->async_lock);
1733 return NULL;
Anna Schumaker29ae7f92016-09-07 15:57:30 -04001734}
1735
1736static __be32
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001737nfsd4_offload_cancel(struct svc_rqst *rqstp,
1738 struct nfsd4_compound_state *cstate,
1739 union nfsd4_op_u *u)
1740{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001741 struct nfsd4_offload_status *os = &u->offload_status;
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001742 struct nfsd4_copy *copy;
1743 struct nfs4_client *clp = cstate->clp;
1744
1745 copy = find_async_copy(clp, &os->stateid);
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001746 if (!copy) {
1747 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001748
Olga Kornievskaiace0887a2019-10-09 11:50:48 -04001749 return manage_cpntf_state(nn, &os->stateid, clp, NULL);
1750 } else
1751 nfsd4_stop_copy(copy);
1752
1753 return nfs_ok;
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04001754}
1755
1756static __be32
Olga Kornievskaia51911862019-08-08 11:14:59 -04001757nfsd4_copy_notify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1758 union nfsd4_op_u *u)
1759{
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001760 struct nfsd4_copy_notify *cn = &u->copy_notify;
1761 __be32 status;
1762 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1763 struct nfs4_stid *stid;
1764 struct nfs4_cpntf_state *cps;
1765 struct nfs4_client *clp = cstate->clp;
1766
1767 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1768 &cn->cpn_src_stateid, RD_STATE, NULL,
1769 &stid);
1770 if (status)
1771 return status;
1772
1773 cn->cpn_sec = nn->nfsd4_lease;
1774 cn->cpn_nsec = 0;
1775
1776 status = nfserrno(-ENOMEM);
1777 cps = nfs4_alloc_init_cpntf_state(nn, stid);
1778 if (!cps)
1779 goto out;
1780 memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.stid, sizeof(stateid_t));
1781 memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t));
1782 memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t));
1783
1784 /* For now, only return one server address in cpn_src, the
1785 * address used by the client to connect to this server.
1786 */
1787 cn->cpn_src.nl4_type = NL4_NETADDR;
1788 status = nfsd4_set_netaddr((struct sockaddr *)&rqstp->rq_daddr,
1789 &cn->cpn_src.u.nl4_addr);
1790 WARN_ON_ONCE(status);
1791 if (status) {
1792 nfs4_put_cpntf_state(nn, cps);
1793 goto out;
1794 }
1795out:
1796 nfs4_put_stid(stid);
1797 return status;
Olga Kornievskaia51911862019-08-08 11:14:59 -04001798}
1799
1800static __be32
Anna Schumaker95d871f2014-11-07 14:44:26 -05001801nfsd4_fallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1802 struct nfsd4_fallocate *fallocate, int flags)
1803{
J. Bruce Fields0d4d6722018-11-06 17:44:03 -05001804 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001805 struct nfsd_file *nf;
Anna Schumaker95d871f2014-11-07 14:44:26 -05001806
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001807 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001808 &fallocate->falloc_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001809 WR_STATE, &nf, NULL);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001810 if (status != nfs_ok) {
1811 dprintk("NFSD: nfsd4_fallocate: couldn't process stateid!\n");
1812 return status;
1813 }
1814
Jeff Layton5c4583b2019-08-18 14:18:54 -04001815 status = nfsd4_vfs_fallocate(rqstp, &cstate->current_fh, nf->nf_file,
Anna Schumaker95d871f2014-11-07 14:44:26 -05001816 fallocate->falloc_offset,
1817 fallocate->falloc_length,
1818 flags);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001819 nfsd_file_put(nf);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001820 return status;
1821}
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001822static __be32
1823nfsd4_offload_status(struct svc_rqst *rqstp,
1824 struct nfsd4_compound_state *cstate,
1825 union nfsd4_op_u *u)
1826{
Olga Kornievskaiae0639dc2018-07-20 18:19:20 -04001827 struct nfsd4_offload_status *os = &u->offload_status;
1828 __be32 status = 0;
1829 struct nfsd4_copy *copy;
1830 struct nfs4_client *clp = cstate->clp;
1831
1832 copy = find_async_copy(clp, &os->stateid);
1833 if (copy) {
1834 os->count = copy->cp_res.wr_bytes_written;
1835 nfs4_put_copy(copy);
1836 } else
1837 status = nfserr_bad_stateid;
1838
1839 return status;
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04001840}
Anna Schumaker95d871f2014-11-07 14:44:26 -05001841
1842static __be32
1843nfsd4_allocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001844 union nfsd4_op_u *u)
Anna Schumaker95d871f2014-11-07 14:44:26 -05001845{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001846 return nfsd4_fallocate(rqstp, cstate, &u->allocate, 0);
Anna Schumaker95d871f2014-11-07 14:44:26 -05001847}
1848
1849static __be32
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001850nfsd4_deallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001851 union nfsd4_op_u *u)
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001852{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001853 return nfsd4_fallocate(rqstp, cstate, &u->deallocate,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05001854 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE);
1855}
1856
1857static __be32
Anna Schumaker24bab492014-09-26 13:58:27 -04001858nfsd4_seek(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001859 union nfsd4_op_u *u)
Anna Schumaker24bab492014-09-26 13:58:27 -04001860{
Christoph Hellwigeb698532017-05-08 20:58:35 +02001861 struct nfsd4_seek *seek = &u->seek;
Anna Schumaker24bab492014-09-26 13:58:27 -04001862 int whence;
1863 __be32 status;
Jeff Layton5c4583b2019-08-18 14:18:54 -04001864 struct nfsd_file *nf;
Anna Schumaker24bab492014-09-26 13:58:27 -04001865
Anna Schumakeraa0d6ae2015-12-03 12:59:51 +01001866 status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
Anna Schumaker24bab492014-09-26 13:58:27 -04001867 &seek->seek_stateid,
Olga Kornievskaia624322f2019-10-04 16:34:26 -04001868 RD_STATE, &nf, NULL);
Anna Schumaker24bab492014-09-26 13:58:27 -04001869 if (status) {
1870 dprintk("NFSD: nfsd4_seek: couldn't process stateid!\n");
1871 return status;
1872 }
1873
1874 switch (seek->seek_whence) {
1875 case NFS4_CONTENT_DATA:
1876 whence = SEEK_DATA;
1877 break;
1878 case NFS4_CONTENT_HOLE:
1879 whence = SEEK_HOLE;
1880 break;
1881 default:
1882 status = nfserr_union_notsupp;
1883 goto out;
1884 }
1885
1886 /*
1887 * Note: This call does change file->f_pos, but nothing in NFSD
1888 * should ever file->f_pos.
1889 */
Jeff Layton5c4583b2019-08-18 14:18:54 -04001890 seek->seek_pos = vfs_llseek(nf->nf_file, seek->seek_offset, whence);
Anna Schumaker24bab492014-09-26 13:58:27 -04001891 if (seek->seek_pos < 0)
1892 status = nfserrno(seek->seek_pos);
Jeff Layton5c4583b2019-08-18 14:18:54 -04001893 else if (seek->seek_pos >= i_size_read(file_inode(nf->nf_file)))
Anna Schumaker24bab492014-09-26 13:58:27 -04001894 seek->seek_eof = true;
1895
1896out:
Jeff Layton5c4583b2019-08-18 14:18:54 -04001897 nfsd_file_put(nf);
Anna Schumaker24bab492014-09-26 13:58:27 -04001898 return status;
1899}
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901/* This routine never returns NFS_OK! If there are no other errors, it
1902 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1903 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
1904 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1905 */
Al Virob37ad282006-10-19 23:28:59 -07001906static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001907_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001908 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Al Viro2ebbc012006-10-19 23:28:58 -07001910 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 int count;
Al Virob37ad282006-10-19 23:28:59 -07001912 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001914 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (status)
1916 return status;
1917
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001918 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1919 if (status)
1920 return status;
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1923 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1924 return nfserr_inval;
1925 if (verify->ve_attrlen & 3)
1926 return nfserr_inval;
1927
1928 /* count in words:
1929 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1930 */
1931 count = 4 + (verify->ve_attrlen >> 2);
1932 buf = kmalloc(count << 2, GFP_KERNEL);
1933 if (!buf)
J. Bruce Fields3e772462011-08-10 19:07:33 -04001934 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
J. Bruce Fields84822d02012-12-14 17:57:50 -05001936 p = buf;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001937 status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001938 cstate->current_fh.fh_export,
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04001939 cstate->current_fh.fh_dentry,
1940 verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001941 rqstp, 0);
J. Bruce Fields41ae6e712013-08-21 15:32:50 -04001942 /*
1943 * If nfsd4_encode_fattr() ran out of space, assume that's because
1944 * the attributes are longer (hence different) than those given:
1945 */
J. Bruce Fields84822d02012-12-14 17:57:50 -05001946 if (status == nfserr_resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 status = nfserr_not_same;
1948 if (status)
1949 goto out_kfree;
1950
Benny Halevy95ec28c2009-04-03 08:29:08 +03001951 /* skip bitmap */
1952 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 status = nfserr_not_same;
1954 if (ntohl(*p++) != verify->ve_attrlen)
1955 goto out_kfree;
1956 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1957 status = nfserr_same;
1958
1959out_kfree:
1960 kfree(buf);
1961 return status;
1962}
1963
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001964static __be32
1965nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001966 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001967{
1968 __be32 status;
1969
Christoph Hellwigeb698532017-05-08 20:58:35 +02001970 status = _nfsd4_verify(rqstp, cstate, &u->verify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001971 return status == nfserr_not_same ? nfs_ok : status;
1972}
1973
1974static __be32
1975nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
Christoph Hellwigeb698532017-05-08 20:58:35 +02001976 union nfsd4_op_u *u)
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001977{
1978 __be32 status;
1979
Christoph Hellwigeb698532017-05-08 20:58:35 +02001980 status = _nfsd4_verify(rqstp, cstate, &u->nverify);
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001981 return status == nfserr_same ? nfs_ok : status;
1982}
1983
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001984#ifdef CONFIG_NFSD_PNFS
1985static const struct nfsd4_layout_ops *
1986nfsd4_layout_verify(struct svc_export *exp, unsigned int layout_type)
1987{
Jeff Layton8a4c3922016-07-10 15:55:58 -04001988 if (!exp->ex_layout_types) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001989 dprintk("%s: export does not support pNFS\n", __func__);
1990 return NULL;
1991 }
1992
Ari Kauppib550a322017-05-05 16:07:55 -04001993 if (layout_type >= LAYOUT_TYPE_MAX ||
1994 !(exp->ex_layout_types & (1 << layout_type))) {
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02001995 dprintk("%s: layout type %d not supported\n",
1996 __func__, layout_type);
1997 return NULL;
1998 }
1999
2000 return nfsd4_layout_ops[layout_type];
2001}
2002
2003static __be32
2004nfsd4_getdeviceinfo(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002005 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002006{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002007 struct nfsd4_getdeviceinfo *gdp = &u->getdeviceinfo;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002008 const struct nfsd4_layout_ops *ops;
2009 struct nfsd4_deviceid_map *map;
2010 struct svc_export *exp;
2011 __be32 nfserr;
2012
2013 dprintk("%s: layout_type %u dev_id [0x%llx:0x%x] maxcnt %u\n",
2014 __func__,
2015 gdp->gd_layout_type,
2016 gdp->gd_devid.fsid_idx, gdp->gd_devid.generation,
2017 gdp->gd_maxcount);
2018
2019 map = nfsd4_find_devid_map(gdp->gd_devid.fsid_idx);
2020 if (!map) {
2021 dprintk("%s: couldn't find device ID to export mapping!\n",
2022 __func__);
2023 return nfserr_noent;
2024 }
2025
2026 exp = rqst_exp_find(rqstp, map->fsid_type, map->fsid);
2027 if (IS_ERR(exp)) {
2028 dprintk("%s: could not find device id\n", __func__);
2029 return nfserr_noent;
2030 }
2031
2032 nfserr = nfserr_layoutunavailable;
2033 ops = nfsd4_layout_verify(exp, gdp->gd_layout_type);
2034 if (!ops)
2035 goto out;
2036
2037 nfserr = nfs_ok;
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01002038 if (gdp->gd_maxcount != 0) {
2039 nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb,
J. Bruce Fieldsec596592021-01-21 17:57:45 -05002040 rqstp, cstate->clp, gdp);
Christoph Hellwigf99d4fb2016-03-04 20:46:17 +01002041 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002042
2043 gdp->gd_notify_types &= ops->notify_types;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002044out:
Kinglong Meea1420382015-03-15 23:12:15 +08002045 exp_put(exp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002046 return nfserr;
2047}
2048
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04002049static void
2050nfsd4_getdeviceinfo_release(union nfsd4_op_u *u)
2051{
2052 kfree(u->getdeviceinfo.gd_device);
2053}
2054
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002055static __be32
2056nfsd4_layoutget(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_layoutget *lgp = &u->layoutget;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002060 struct svc_fh *current_fh = &cstate->current_fh;
2061 const struct nfsd4_layout_ops *ops;
2062 struct nfs4_layout_stateid *ls;
2063 __be32 nfserr;
Benjamin Coddington66282ec2017-12-19 09:35:25 -05002064 int accmode = NFSD_MAY_READ_IF_EXEC;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002065
2066 switch (lgp->lg_seg.iomode) {
2067 case IOMODE_READ:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05002068 accmode |= NFSD_MAY_READ;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002069 break;
2070 case IOMODE_RW:
Benjamin Coddington66282ec2017-12-19 09:35:25 -05002071 accmode |= NFSD_MAY_READ | NFSD_MAY_WRITE;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002072 break;
2073 default:
2074 dprintk("%s: invalid iomode %d\n",
2075 __func__, lgp->lg_seg.iomode);
2076 nfserr = nfserr_badiomode;
2077 goto out;
2078 }
2079
2080 nfserr = fh_verify(rqstp, current_fh, 0, accmode);
2081 if (nfserr)
2082 goto out;
2083
2084 nfserr = nfserr_layoutunavailable;
2085 ops = nfsd4_layout_verify(current_fh->fh_export, lgp->lg_layout_type);
2086 if (!ops)
2087 goto out;
2088
2089 /*
2090 * Verify minlength and range as per RFC5661:
2091 * o If loga_length is less than loga_minlength,
2092 * the metadata server MUST return NFS4ERR_INVAL.
2093 * o If the sum of loga_offset and loga_minlength exceeds
2094 * NFS4_UINT64_MAX, and loga_minlength is not
2095 * NFS4_UINT64_MAX, the error NFS4ERR_INVAL MUST result.
2096 * o If the sum of loga_offset and loga_length exceeds
2097 * NFS4_UINT64_MAX, and loga_length is not NFS4_UINT64_MAX,
2098 * the error NFS4ERR_INVAL MUST result.
2099 */
2100 nfserr = nfserr_inval;
2101 if (lgp->lg_seg.length < lgp->lg_minlength ||
2102 (lgp->lg_minlength != NFS4_MAX_UINT64 &&
2103 lgp->lg_minlength > NFS4_MAX_UINT64 - lgp->lg_seg.offset) ||
2104 (lgp->lg_seg.length != NFS4_MAX_UINT64 &&
2105 lgp->lg_seg.length > NFS4_MAX_UINT64 - lgp->lg_seg.offset))
2106 goto out;
2107 if (lgp->lg_seg.length == 0)
2108 goto out;
2109
2110 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lgp->lg_sid,
2111 true, lgp->lg_layout_type, &ls);
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05002112 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04002113 trace_nfsd_layout_get_lookup_fail(&lgp->lg_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002114 goto out;
Christoph Hellwig31ef83d2014-08-16 19:02:22 -05002115 }
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002116
Christoph Hellwigc5c707f2014-09-23 12:38:48 +02002117 nfserr = nfserr_recallconflict;
2118 if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls))
2119 goto out_put_stid;
2120
David Howells2b0143b2015-03-17 22:25:59 +00002121 nfserr = ops->proc_layoutget(d_inode(current_fh->fh_dentry),
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002122 current_fh, lgp);
2123 if (nfserr)
2124 goto out_put_stid;
2125
2126 nfserr = nfsd4_insert_layout(lgp, ls);
2127
2128out_put_stid:
Jeff Laytoncc8a5532015-09-17 07:58:24 -04002129 mutex_unlock(&ls->ls_mutex);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002130 nfs4_put_stid(&ls->ls_stid);
2131out:
2132 return nfserr;
2133}
2134
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04002135static void
2136nfsd4_layoutget_release(union nfsd4_op_u *u)
2137{
2138 kfree(u->layoutget.lg_content);
2139}
2140
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002141static __be32
2142nfsd4_layoutcommit(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002143 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002144{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002145 struct nfsd4_layoutcommit *lcp = &u->layoutcommit;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002146 const struct nfsd4_layout_seg *seg = &lcp->lc_seg;
2147 struct svc_fh *current_fh = &cstate->current_fh;
2148 const struct nfsd4_layout_ops *ops;
2149 loff_t new_size = lcp->lc_last_wr + 1;
2150 struct inode *inode;
2151 struct nfs4_layout_stateid *ls;
2152 __be32 nfserr;
2153
2154 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE);
2155 if (nfserr)
2156 goto out;
2157
2158 nfserr = nfserr_layoutunavailable;
2159 ops = nfsd4_layout_verify(current_fh->fh_export, lcp->lc_layout_type);
2160 if (!ops)
2161 goto out;
David Howells2b0143b2015-03-17 22:25:59 +00002162 inode = d_inode(current_fh->fh_dentry);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002163
2164 nfserr = nfserr_inval;
2165 if (new_size <= seg->offset) {
2166 dprintk("pnfsd: last write before layout segment\n");
2167 goto out;
2168 }
2169 if (new_size > seg->offset + seg->length) {
2170 dprintk("pnfsd: last write beyond layout segment\n");
2171 goto out;
2172 }
2173 if (!lcp->lc_newoffset && new_size > i_size_read(inode)) {
2174 dprintk("pnfsd: layoutcommit beyond EOF\n");
2175 goto out;
2176 }
2177
2178 nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lcp->lc_sid,
2179 false, lcp->lc_layout_type,
2180 &ls);
2181 if (nfserr) {
Chuck Leverf394b622018-03-27 10:53:11 -04002182 trace_nfsd_layout_commit_lookup_fail(&lcp->lc_sid);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002183 /* fixup error code as per RFC5661 */
2184 if (nfserr == nfserr_bad_stateid)
2185 nfserr = nfserr_badlayout;
2186 goto out;
2187 }
2188
Jeff Laytoncc8a5532015-09-17 07:58:24 -04002189 /* LAYOUTCOMMIT does not require any serialization */
2190 mutex_unlock(&ls->ls_mutex);
2191
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002192 if (new_size > i_size_read(inode)) {
2193 lcp->lc_size_chg = 1;
2194 lcp->lc_newsize = new_size;
2195 } else {
2196 lcp->lc_size_chg = 0;
2197 }
2198
Kinglong Meed8398fc2015-07-07 10:12:03 +08002199 nfserr = ops->proc_layoutcommit(inode, lcp);
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002200 nfs4_put_stid(&ls->ls_stid);
2201out:
2202 return nfserr;
2203}
2204
2205static __be32
2206nfsd4_layoutreturn(struct svc_rqst *rqstp,
Christoph Hellwigeb698532017-05-08 20:58:35 +02002207 struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002208{
Christoph Hellwigeb698532017-05-08 20:58:35 +02002209 struct nfsd4_layoutreturn *lrp = &u->layoutreturn;
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002210 struct svc_fh *current_fh = &cstate->current_fh;
2211 __be32 nfserr;
2212
2213 nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_NOP);
2214 if (nfserr)
2215 goto out;
2216
2217 nfserr = nfserr_layoutunavailable;
2218 if (!nfsd4_layout_verify(current_fh->fh_export, lrp->lr_layout_type))
2219 goto out;
2220
2221 switch (lrp->lr_seg.iomode) {
2222 case IOMODE_READ:
2223 case IOMODE_RW:
2224 case IOMODE_ANY:
2225 break;
2226 default:
2227 dprintk("%s: invalid iomode %d\n", __func__,
2228 lrp->lr_seg.iomode);
2229 nfserr = nfserr_inval;
2230 goto out;
2231 }
2232
2233 switch (lrp->lr_return_type) {
2234 case RETURN_FILE:
2235 nfserr = nfsd4_return_file_layouts(rqstp, cstate, lrp);
2236 break;
2237 case RETURN_FSID:
2238 case RETURN_ALL:
2239 nfserr = nfsd4_return_client_layouts(rqstp, cstate, lrp);
2240 break;
2241 default:
2242 dprintk("%s: invalid return_type %d\n", __func__,
2243 lrp->lr_return_type);
2244 nfserr = nfserr_inval;
2245 break;
2246 }
2247out:
2248 return nfserr;
2249}
2250#endif /* CONFIG_NFSD_PNFS */
2251
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002252static __be32
2253nfsd4_getxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2254 union nfsd4_op_u *u)
2255{
2256 struct nfsd4_getxattr *getxattr = &u->getxattr;
2257
2258 return nfsd_getxattr(rqstp, &cstate->current_fh,
2259 getxattr->getxa_name, &getxattr->getxa_buf,
2260 &getxattr->getxa_len);
2261}
2262
2263static __be32
2264nfsd4_setxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2265 union nfsd4_op_u *u)
2266{
2267 struct nfsd4_setxattr *setxattr = &u->setxattr;
2268 __be32 ret;
2269
2270 if (opens_in_grace(SVC_NET(rqstp)))
2271 return nfserr_grace;
2272
2273 ret = nfsd_setxattr(rqstp, &cstate->current_fh, setxattr->setxa_name,
2274 setxattr->setxa_buf, setxattr->setxa_len,
2275 setxattr->setxa_flags);
2276
2277 if (!ret)
2278 set_change_info(&setxattr->setxa_cinfo, &cstate->current_fh);
2279
2280 return ret;
2281}
2282
2283static __be32
2284nfsd4_listxattrs(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2285 union nfsd4_op_u *u)
2286{
2287 /*
2288 * Get the entire list, then copy out only the user attributes
2289 * in the encode function.
2290 */
2291 return nfsd_listxattr(rqstp, &cstate->current_fh,
2292 &u->listxattrs.lsxa_buf, &u->listxattrs.lsxa_len);
2293}
2294
2295static __be32
2296nfsd4_removexattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2297 union nfsd4_op_u *u)
2298{
2299 struct nfsd4_removexattr *removexattr = &u->removexattr;
2300 __be32 ret;
2301
2302 if (opens_in_grace(SVC_NET(rqstp)))
2303 return nfserr_grace;
2304
2305 ret = nfsd_removexattr(rqstp, &cstate->current_fh,
2306 removexattr->rmxa_name);
2307
2308 if (!ret)
2309 set_change_info(&removexattr->rmxa_cinfo, &cstate->current_fh);
2310
2311 return ret;
2312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314/*
2315 * NULL call.
2316 */
Al Viro7111c662006-10-19 23:28:45 -07002317static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002318nfsd4_proc_null(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
Chuck Levercc028a12020-10-02 15:52:44 -04002320 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
Shankar Anande2b20952006-07-10 04:45:44 -07002323static inline void nfsd4_increment_op_stats(u32 opnum)
2324{
2325 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
Amir Goldsteine567b982021-01-06 09:52:35 +02002326 percpu_counter_inc(&nfsdstats.counter[NFSD_STATS_NFS4_OP(opnum)]);
Shankar Anande2b20952006-07-10 04:45:44 -07002327}
2328
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002329static const struct nfsd4_operation nfsd4_ops[];
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002330
Adrian Bunkf1c7f792008-08-08 19:26:42 +03002331static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +03002332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333/*
J. Bruce Fields57716352010-04-21 12:27:19 -04002334 * Enforce NFSv4.1 COMPOUND ordering rules:
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002335 *
J. Bruce Fields57716352010-04-21 12:27:19 -04002336 * Also note, enforced elsewhere:
2337 * - SEQUENCE other than as first op results in
2338 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002339 * - BIND_CONN_TO_SESSION must be the only op in its compound.
2340 * (Enforced in nfsd4_bind_conn_to_session().)
J. Bruce Fields57716352010-04-21 12:27:19 -04002341 * - DESTROY_SESSION must be the final operation in a compound, if
2342 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
2343 * (Enforced in nfsd4_destroy_session().)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002344 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002345static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002346{
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002347 struct nfsd4_op *first_op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002348
2349 /* These ordering requirements don't apply to NFSv4.0: */
2350 if (args->minorversion == 0)
2351 return nfs_ok;
2352 /* This is weird, but OK, not our problem: */
2353 if (args->opcnt == 0)
2354 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002355 if (first_op->status == nfserr_op_illegal)
J. Bruce Fields57716352010-04-21 12:27:19 -04002356 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002357 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
J. Bruce Fields57716352010-04-21 12:27:19 -04002358 return nfserr_op_not_in_session;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002359 if (first_op->opnum == OP_SEQUENCE)
J. Bruce Fields57716352010-04-21 12:27:19 -04002360 return nfs_ok;
J. Bruce Fields7a04cfd2018-06-13 15:04:59 -04002361 /*
2362 * So first_op is something allowed outside a session, like
2363 * EXCHANGE_ID; but then it has to be the only op in the
2364 * compound:
2365 */
J. Bruce Fields57716352010-04-21 12:27:19 -04002366 if (args->opcnt != 1)
2367 return nfserr_not_only_op;
2368 return nfs_ok;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002369}
2370
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002371const struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
J. Bruce Fields22b03212011-04-09 11:23:24 -04002372{
2373 return &nfsd4_ops[op->opnum];
2374}
2375
J. Bruce Fields10910062011-01-24 12:11:02 -05002376bool nfsd4_cache_this_op(struct nfsd4_op *op)
2377{
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04002378 if (op->opnum == OP_ILLEGAL)
2379 return false;
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04002380 return OPDESC(op)->op_flags & OP_CACHEME;
J. Bruce Fields10910062011-01-24 12:11:02 -05002381}
2382
J. Bruce Fields68d93182011-04-08 17:00:50 -04002383static bool need_wrongsec_check(struct svc_rqst *rqstp)
2384{
2385 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2386 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
2387 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
2388 struct nfsd4_op *next = &argp->ops[resp->opcnt];
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002389 const struct nfsd4_operation *thisd = OPDESC(this);
2390 const struct nfsd4_operation *nextd;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002391
J. Bruce Fields68d93182011-04-08 17:00:50 -04002392 /*
2393 * Most ops check wronsec on our own; only the putfh-like ops
2394 * have special rules.
2395 */
2396 if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
2397 return false;
2398 /*
2399 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
2400 * put-filehandle operation if we're not going to use the
2401 * result:
2402 */
2403 if (argp->opcnt == resp->opcnt)
2404 return false;
J. Bruce Fields51904b02014-10-22 14:46:29 -04002405 if (next->opnum == OP_ILLEGAL)
2406 return false;
J. Bruce Fields68d93182011-04-08 17:00:50 -04002407 nextd = OPDESC(next);
2408 /*
2409 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
2410 * errors themselves as necessary; others should check for them
2411 * now:
2412 */
2413 return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
2414}
2415
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002416#ifdef CONFIG_NFSD_V4_2_INTER_SSC
2417static void
2418check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2419{
2420 struct nfsd4_op *op, *current_op = NULL, *saved_op = NULL;
2421 struct nfsd4_copy *copy;
2422 struct nfsd4_putfh *putfh;
2423 int i;
2424
2425 /* traverse all operation and if it's a COPY compound, mark the
2426 * source filehandle to skip verification
2427 */
2428 for (i = 0; i < args->opcnt; i++) {
2429 op = &args->ops[i];
2430 if (op->opnum == OP_PUTFH)
2431 current_op = op;
2432 else if (op->opnum == OP_SAVEFH)
2433 saved_op = current_op;
2434 else if (op->opnum == OP_RESTOREFH)
2435 current_op = saved_op;
2436 else if (op->opnum == OP_COPY) {
2437 copy = (struct nfsd4_copy *)&op->u;
2438 if (!saved_op) {
2439 op->status = nfserr_nofilehandle;
2440 return;
2441 }
2442 putfh = (struct nfsd4_putfh *)&saved_op->u;
2443 if (!copy->cp_intra)
2444 putfh->no_verify = true;
2445 }
2446 }
2447}
2448#else
2449static void
2450check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2451{
2452}
2453#endif
2454
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002455/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 * COMPOUND call.
2457 */
Al Viro7111c662006-10-19 23:28:45 -07002458static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002459nfsd4_proc_compound(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Christoph Hellwiga6beb732017-05-08 17:35:49 +02002461 struct nfsd4_compoundargs *args = rqstp->rq_argp;
2462 struct nfsd4_compoundres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 struct nfsd4_op *op;
Andy Adamsone354d572009-03-28 11:30:52 +03002464 struct nfsd4_compound_state *cstate = &resp->cstate;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002465 struct svc_fh *current_fh = &cstate->current_fh;
2466 struct svc_fh *save_fh = &cstate->save_fh;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002467 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Al Virob37ad282006-10-19 23:28:59 -07002468 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Chuck Leverbddfdbc2020-10-27 15:53:42 -04002470 resp->xdr = &rqstp->rq_res_stream;
Chuck Lever3b0ebb22021-10-13 10:40:59 -04002471 resp->statusp = resp->xdr->p;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04002472
2473 /* reserve space for: NFS status code */
2474 xdr_reserve_space(resp->xdr, XDR_UNIT);
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 /* reserve space for: taglen, tag, and opcnt */
Chuck Leverbddfdbc2020-10-27 15:53:42 -04002477 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 resp->taglen = args->taglen;
2479 resp->tag = args->tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 resp->rqstp = rqstp;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002481 cstate->minorversion = args->minorversion;
Kinglong Mee4daeed22014-03-26 17:10:37 +08002482 fh_init(current_fh, NFS4_FHSIZE);
2483 fh_init(save_fh, NFS4_FHSIZE);
NeilBrown8ff30fa2010-08-12 17:04:07 +10002484 /*
2485 * Don't use the deferral mechanism for NFSv4; compounds make it
2486 * too hard to avoid non-idempotency problems.
2487 */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002488 clear_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
2490 /*
2491 * According to RFC3010, this takes precedence over all other errors.
2492 */
2493 status = nfserr_minor_vers_mismatch;
Trond Myklebuste333f3b2019-04-09 11:46:19 -04002494 if (nfsd_minorversion(nn, args->minorversion, NFSD_TEST) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 goto out;
J. Bruce Fields00781172017-11-15 12:30:27 -05002496 status = nfserr_resource;
2497 if (args->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
2498 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
J. Bruce Fields57716352010-04-21 12:27:19 -04002500 status = nfs41_check_op_ordering(args);
2501 if (status) {
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002502 op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04002503 op->status = status;
J. Bruce Fields5b7b15ae2018-06-13 15:21:35 -04002504 resp->opcnt = 1;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002505 goto encode_op;
2506 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002507 check_if_stalefh_allowed(args);
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03002508
J. Bruce Fields28df3d12017-07-28 16:35:15 -04002509 rqstp->rq_lease_breaker = (void **)&cstate->clp;
2510
Chuck Leverfff40802018-03-27 10:53:54 -04002511 trace_nfsd_compound(rqstp, args->opcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 while (!status && resp->opcnt < args->opcnt) {
2513 op = &args->ops[resp->opcnt++];
2514
2515 /*
2516 * The XDR decode routines may have pre-set op->status;
2517 * for example, if there is a miscellaneous XDR error
2518 * it will be set to nfserr_bad_xdr.
2519 */
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002520 if (op->status) {
2521 if (op->opnum == OP_OPEN)
2522 op->status = nfsd4_open_omfg(rqstp, cstate, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 goto encode_op;
J. Bruce Fields9d313b12013-02-28 12:51:49 -08002524 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002525 if (!current_fh->fh_dentry &&
2526 !HAS_FH_FLAG(current_fh, NFSD4_FH_FOREIGN)) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002527 if (!(op->opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002528 op->status = nfserr_nofilehandle;
2529 goto encode_op;
2530 }
Olga Kornievskaiab9e86382019-10-07 10:56:48 -04002531 } else if (current_fh->fh_export &&
2532 current_fh->fh_export->ex_fslocs.migrated &&
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002533 !(op->opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002534 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 goto encode_op;
2536 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002537
Chuck Leverfcb5e3f2021-12-24 14:36:49 -05002538 fh_clear_pre_post_attrs(current_fh);
Kinglong Mee23367452014-03-29 10:23:47 +08002539
Mi Jinlong58e7b332011-08-28 18:18:56 +08002540 /* If op is non-idempotent */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002541 if (op->opdesc->op_flags & OP_MODIFIES_SOMETHING) {
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002542 /*
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002543 * Don't execute this op if we couldn't encode a
2544 * succesful reply:
2545 */
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002546 u32 plen = op->opdesc->op_rsize_bop(rqstp, op);
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04002547 /*
2548 * Plus if there's another operation, make sure
J. Bruce Fields4c69d582014-01-28 16:01:04 -05002549 * we'll have space to at least encode an error:
2550 */
2551 if (resp->opcnt < args->opcnt)
2552 plen += COMPOUND_ERR_SLACK_SPACE;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002553 op->status = nfsd4_check_resp_size(resp, plen);
2554 }
2555
2556 if (op->status)
2557 goto encode_op;
2558
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002559 if (op->opdesc->op_get_currentstateid)
2560 op->opdesc->op_get_currentstateid(cstate, &op->u);
2561 op->status = op->opdesc->op_func(rqstp, cstate, &op->u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
J. Bruce Fields9a307402017-05-23 12:24:40 -04002563 /* Only from SEQUENCE */
2564 if (cstate->status == nfserr_replay_cache) {
2565 dprintk("%s NFS4.1 replay from cache\n", __func__);
2566 status = op->status;
2567 goto out;
2568 }
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002569 if (!op->status) {
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002570 if (op->opdesc->op_set_currentstateid)
2571 op->opdesc->op_set_currentstateid(cstate, &op->u);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002572
J. Bruce Fieldsf4f9ef42017-07-06 17:51:29 -04002573 if (op->opdesc->op_flags & OP_CLEAR_STATEID)
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01002574 clear_current_stateid(cstate);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002575
J. Bruce Fieldsd781e3d2019-12-06 16:07:32 -05002576 if (current_fh->fh_export &&
2577 need_wrongsec_check(rqstp))
Kinglong Mee4daeed22014-03-26 17:10:37 +08002578 op->status = check_nfsd_access(current_fh->fh_export, rqstp);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01002579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580encode_op:
Al Viroa90b0612006-10-19 23:29:03 -07002581 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08002582 op->replay = &cstate->replay_owner->so_replay;
Chuck Leverbddfdbc2020-10-27 15:53:42 -04002583 nfsd4_encode_replay(resp->xdr, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 status = op->status = op->replay->rp_status;
2585 } else {
2586 nfsd4_encode_operation(resp, op);
2587 status = op->status;
2588 }
Benny Halevy04077172008-12-15 19:40:49 +02002589
Chuck Leverfff40802018-03-27 10:53:54 -04002590 trace_nfsd_compound_status(args->opcnt, resp->opcnt, status,
2591 nfsd4_op_name(op->opnum));
Benny Halevy04077172008-12-15 19:40:49 +02002592
Jeff Layton58fb12e2014-07-29 21:34:27 -04002593 nfsd4_cstate_clear_replay(cstate);
Shankar Anande2b20952006-07-10 04:45:44 -07002594 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
2596
Kinglong Mee4daeed22014-03-26 17:10:37 +08002597 fh_put(current_fh);
2598 fh_put(save_fh);
2599 BUG_ON(cstate->replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600out:
Chuck Levercc028a12020-10-02 15:52:44 -04002601 cstate->status = status;
Andy Adamson2f425872009-04-03 08:27:32 +03002602 /* Reset deferral mechanism for RPC deferrals */
Jeff Layton30660e04b2014-11-19 07:51:16 -05002603 set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
Chuck Levercc028a12020-10-02 15:52:44 -04002604 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
Mi Jinlong58e7b332011-08-28 18:18:56 +08002607#define op_encode_hdr_size (2)
2608#define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
2609#define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
2610#define op_encode_change_info_maxsz (5)
2611#define nfs4_fattr_bitmap_maxsz (4)
2612
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002613/* We'll fall back on returning no lockowner if run out of space: */
2614#define op_encode_lockowner_maxsz (0)
Mi Jinlong58e7b332011-08-28 18:18:56 +08002615#define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
2616
2617#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
2618
2619#define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
2620#define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
2621 op_encode_ace_maxsz)
2622
2623#define op_encode_channel_attrs_maxsz (6 + 1 + 1)
2624
2625static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2626{
2627 return (op_encode_hdr_size) * sizeof(__be32);
2628}
2629
2630static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2631{
2632 return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
2633}
2634
Kinglong Mee2282cd22017-02-03 22:36:00 +08002635static inline u32 nfsd4_access_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2636{
2637 /* ac_supported, ac_resp_access */
2638 return (op_encode_hdr_size + 2)* sizeof(__be32);
2639}
2640
Mi Jinlong58e7b332011-08-28 18:18:56 +08002641static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2642{
2643 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
2644}
2645
2646static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2647{
2648 return (op_encode_hdr_size + op_encode_change_info_maxsz
2649 + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2650}
2651
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002652/*
2653 * Note since this is an idempotent operation we won't insist on failing
2654 * the op prematurely if the estimate is too large. We may turn off splice
2655 * reads unnecessarily.
2656 */
2657static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp,
2658 struct nfsd4_op *op)
2659{
2660 u32 *bmap = op->u.getattr.ga_bmval;
2661 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
2662 u32 ret = 0;
2663
2664 if (bmap0 & FATTR4_WORD0_ACL)
2665 return svc_max_payload(rqstp);
2666 if (bmap0 & FATTR4_WORD0_FS_LOCATIONS)
2667 return svc_max_payload(rqstp);
2668
2669 if (bmap1 & FATTR4_WORD1_OWNER) {
2670 ret += IDMAP_NAMESZ + 4;
2671 bmap1 &= ~FATTR4_WORD1_OWNER;
2672 }
2673 if (bmap1 & FATTR4_WORD1_OWNER_GROUP) {
2674 ret += IDMAP_NAMESZ + 4;
2675 bmap1 &= ~FATTR4_WORD1_OWNER_GROUP;
2676 }
2677 if (bmap0 & FATTR4_WORD0_FILEHANDLE) {
2678 ret += NFS4_FHSIZE + 4;
2679 bmap0 &= ~FATTR4_WORD0_FILEHANDLE;
2680 }
2681 if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) {
Kinglong Mee1ec8c0c2015-03-28 23:46:09 +08002682 ret += NFS4_MAXLABELLEN + 12;
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002683 bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2684 }
2685 /*
2686 * Largest of remaining attributes are 16 bytes (e.g.,
2687 * supported_attributes)
2688 */
2689 ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2));
2690 /* bitmask, length */
2691 ret += 20;
2692 return ret;
2693}
2694
Kinglong Mee2282cd22017-02-03 22:36:00 +08002695static inline u32 nfsd4_getfh_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2696{
2697 return (op_encode_hdr_size + 1) * sizeof(__be32) + NFS4_FHSIZE;
2698}
2699
Mi Jinlong58e7b332011-08-28 18:18:56 +08002700static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2701{
2702 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2703 * sizeof(__be32);
2704}
2705
2706static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2707{
2708 return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
2709 * sizeof(__be32);
2710}
2711
2712static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2713{
2714 return (op_encode_hdr_size + op_encode_stateid_maxsz
2715 + op_encode_change_info_maxsz + 1
2716 + nfs4_fattr_bitmap_maxsz
2717 + op_encode_delegation_maxsz) * sizeof(__be32);
2718}
2719
2720static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2721{
2722 u32 maxcount = 0, rlen = 0;
2723
2724 maxcount = svc_max_payload(rqstp);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002725 rlen = min(op->u.read.rd_length, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002726
J. Bruce Fields622f5602014-05-16 14:38:20 -04002727 return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002728}
2729
Anna Schumaker528b8492020-09-28 13:08:58 -04002730static inline u32 nfsd4_read_plus_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2731{
2732 u32 maxcount = svc_max_payload(rqstp);
2733 u32 rlen = min(op->u.read.rd_length, maxcount);
2734 /*
2735 * If we detect that the file changed during hole encoding, then we
2736 * recover by encoding the remaining reply as data. This means we need
2737 * to set aside enough room to encode two data segments.
2738 */
2739 u32 seg_len = 2 * (1 + 2 + 1);
2740
2741 return (op_encode_hdr_size + 2 + seg_len + XDR_QUADLEN(rlen)) * sizeof(__be32);
2742}
2743
Mi Jinlong58e7b332011-08-28 18:18:56 +08002744static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2745{
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002746 u32 maxcount = 0, rlen = 0;
Mi Jinlong58e7b332011-08-28 18:18:56 +08002747
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002748 maxcount = svc_max_payload(rqstp);
2749 rlen = min(op->u.readdir.rd_maxcount, maxcount);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002750
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002751 return (op_encode_hdr_size + op_encode_verifier_maxsz +
2752 XDR_QUADLEN(rlen)) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002753}
2754
Kinglong Mee2282cd22017-02-03 22:36:00 +08002755static inline u32 nfsd4_readlink_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2756{
2757 return (op_encode_hdr_size + 1) * sizeof(__be32) + PAGE_SIZE;
2758}
2759
Mi Jinlong58e7b332011-08-28 18:18:56 +08002760static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2761{
2762 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2763 * sizeof(__be32);
2764}
2765
2766static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2767{
2768 return (op_encode_hdr_size + op_encode_change_info_maxsz
2769 + op_encode_change_info_maxsz) * sizeof(__be32);
2770}
2771
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002772static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp,
2773 struct nfsd4_op *op)
2774{
J. Bruce Fieldsd1d84c92014-08-21 15:04:31 -04002775 return (op_encode_hdr_size
2776 + XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5) * sizeof(__be32);
J. Bruce Fieldsccae70a2014-03-23 09:34:22 -07002777}
2778
Kinglong Mee2282cd22017-02-03 22:36:00 +08002779static inline u32 nfsd4_test_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2780{
2781 return (op_encode_hdr_size + 1 + op->u.test_stateid.ts_num_ids)
2782 * sizeof(__be32);
2783}
2784
Mi Jinlong58e7b332011-08-28 18:18:56 +08002785static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2786{
2787 return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2788}
2789
Kinglong Mee2282cd22017-02-03 22:36:00 +08002790static inline u32 nfsd4_secinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2791{
2792 return (op_encode_hdr_size + RPC_AUTH_MAXFLAVOR *
2793 (4 + XDR_QUADLEN(GSS_OID_MAX_LEN))) * sizeof(__be32);
2794}
2795
Mi Jinlong58e7b332011-08-28 18:18:56 +08002796static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2797{
J. Bruce Fields480efae2014-03-10 14:17:55 -04002798 return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) *
2799 sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002800}
2801
2802static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2803{
J. Bruce Fieldsf34e4322014-05-16 21:24:56 -04002804 return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32);
Mi Jinlong58e7b332011-08-28 18:18:56 +08002805}
2806
2807static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2808{
2809 return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
Kinglong Meea8bb84b2013-12-10 15:24:36 +08002810 1 + 1 + /* eir_flags, spr_how */\
2811 4 + /* spo_must_enforce & _allow with bitmap */\
Mi Jinlong58e7b332011-08-28 18:18:56 +08002812 2 + /*eir_server_owner.so_minor_id */\
2813 /* eir_server_owner.so_major_id<> */\
2814 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2815 /* eir_server_scope<> */\
2816 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2817 1 + /* eir_server_impl_id array length */\
2818 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
2819}
2820
2821static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2822{
2823 return (op_encode_hdr_size + \
2824 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
2825 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
2826}
2827
2828static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2829{
2830 return (op_encode_hdr_size + \
2831 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
2832 2 + /* csr_sequence, csr_flags */\
2833 op_encode_channel_attrs_maxsz + \
2834 op_encode_channel_attrs_maxsz) * sizeof(__be32);
2835}
2836
Anna Schumaker29ae7f92016-09-07 15:57:30 -04002837static inline u32 nfsd4_copy_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2838{
2839 return (op_encode_hdr_size +
2840 1 /* wr_callback */ +
2841 op_encode_stateid_maxsz /* wr_callback */ +
2842 2 /* wr_count */ +
2843 1 /* wr_committed */ +
2844 op_encode_verifier_maxsz +
2845 1 /* cr_consecutive */ +
2846 1 /* cr_synchronous */) * sizeof(__be32);
2847}
2848
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04002849static inline u32 nfsd4_offload_status_rsize(struct svc_rqst *rqstp,
2850 struct nfsd4_op *op)
2851{
2852 return (op_encode_hdr_size +
2853 2 /* osr_count */ +
2854 1 /* osr_complete<1> optional 0 for now */) * sizeof(__be32);
2855}
2856
Olga Kornievskaia51911862019-08-08 11:14:59 -04002857static inline u32 nfsd4_copy_notify_rsize(struct svc_rqst *rqstp,
2858 struct nfsd4_op *op)
2859{
2860 return (op_encode_hdr_size +
2861 3 /* cnr_lease_time */ +
2862 1 /* We support one cnr_source_server */ +
2863 1 /* cnr_stateid seq */ +
2864 op_encode_stateid_maxsz /* cnr_stateid */ +
2865 1 /* num cnr_source_server*/ +
2866 1 /* nl4_type */ +
2867 1 /* nl4 size */ +
2868 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) /*nl4_loc + nl4_loc_sz */)
2869 * sizeof(__be32);
2870}
2871
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002872#ifdef CONFIG_NFSD_PNFS
Kinglong Mee2282cd22017-02-03 22:36:00 +08002873static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2874{
2875 u32 maxcount = 0, rlen = 0;
2876
2877 maxcount = svc_max_payload(rqstp);
2878 rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount);
2879
2880 return (op_encode_hdr_size +
2881 1 /* gd_layout_type*/ +
2882 XDR_QUADLEN(rlen) +
2883 2 /* gd_notify_types */) * sizeof(__be32);
2884}
2885
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02002886/*
2887 * At this stage we don't really know what layout driver will handle the request,
2888 * so we need to define an arbitrary upper bound here.
2889 */
2890#define MAX_LAYOUT_SIZE 128
2891static inline u32 nfsd4_layoutget_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2892{
2893 return (op_encode_hdr_size +
2894 1 /* logr_return_on_close */ +
2895 op_encode_stateid_maxsz +
2896 1 /* nr of layouts */ +
2897 MAX_LAYOUT_SIZE) * sizeof(__be32);
2898}
2899
2900static inline u32 nfsd4_layoutcommit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2901{
2902 return (op_encode_hdr_size +
2903 1 /* locr_newsize */ +
2904 2 /* ns_size */) * sizeof(__be32);
2905}
2906
2907static inline u32 nfsd4_layoutreturn_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2908{
2909 return (op_encode_hdr_size +
2910 1 /* lrs_stateid */ +
2911 op_encode_stateid_maxsz) * sizeof(__be32);
2912}
2913#endif /* CONFIG_NFSD_PNFS */
2914
Kinglong Mee2282cd22017-02-03 22:36:00 +08002915
2916static inline u32 nfsd4_seek_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2917{
2918 return (op_encode_hdr_size + 3) * sizeof(__be32);
2919}
2920
Frank van der Linden23e50fe2020-06-23 22:39:26 +00002921static inline u32 nfsd4_getxattr_rsize(struct svc_rqst *rqstp,
2922 struct nfsd4_op *op)
2923{
2924 u32 maxcount, rlen;
2925
2926 maxcount = svc_max_payload(rqstp);
2927 rlen = min_t(u32, XATTR_SIZE_MAX, maxcount);
2928
2929 return (op_encode_hdr_size + 1 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2930}
2931
2932static inline u32 nfsd4_setxattr_rsize(struct svc_rqst *rqstp,
2933 struct nfsd4_op *op)
2934{
2935 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2936 * sizeof(__be32);
2937}
2938static inline u32 nfsd4_listxattrs_rsize(struct svc_rqst *rqstp,
2939 struct nfsd4_op *op)
2940{
2941 u32 maxcount, rlen;
2942
2943 maxcount = svc_max_payload(rqstp);
2944 rlen = min(op->u.listxattrs.lsxa_maxcount, maxcount);
2945
2946 return (op_encode_hdr_size + 4 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2947}
2948
2949static inline u32 nfsd4_removexattr_rsize(struct svc_rqst *rqstp,
2950 struct nfsd4_op *op)
2951{
2952 return (op_encode_hdr_size + op_encode_change_info_maxsz)
2953 * sizeof(__be32);
2954}
2955
2956
Christoph Hellwigbb2a8b02017-05-08 23:46:47 +02002957static const struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002958 [OP_ACCESS] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002959 .op_func = nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002960 .op_name = "OP_ACCESS",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002961 .op_rsize_bop = nfsd4_access_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002962 },
2963 [OP_CLOSE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002964 .op_func = nfsd4_close,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002965 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002966 .op_name = "OP_CLOSE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002967 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002968 .op_get_currentstateid = nfsd4_get_closestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02002969 .op_set_currentstateid = nfsd4_set_closestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002970 },
2971 [OP_COMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002972 .op_func = nfsd4_commit,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002973 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002974 .op_name = "OP_COMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002975 .op_rsize_bop = nfsd4_commit_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002976 },
2977 [OP_CREATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002978 .op_func = nfsd4_create,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01002979 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002980 .op_name = "OP_CREATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002981 .op_rsize_bop = nfsd4_create_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002982 },
2983 [OP_DELEGRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002984 .op_func = nfsd4_delegreturn,
Mi Jinlong58e7b332011-08-28 18:18:56 +08002985 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002986 .op_name = "OP_DELEGRETURN",
Mi Jinlong58e7b332011-08-28 18:18:56 +08002987 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02002988 .op_get_currentstateid = nfsd4_get_delegreturnstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002989 },
2990 [OP_GETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002991 .op_func = nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08002992 .op_flags = ALLOWED_ON_ABSENT_FS,
J. Bruce Fieldsb86cef62014-03-23 12:01:48 -04002993 .op_rsize_bop = nfsd4_getattr_rsize,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002994 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08002995 },
2996 [OP_GETFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02002997 .op_func = nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03002998 .op_name = "OP_GETFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02002999 .op_rsize_bop = nfsd4_getfh_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003000 },
3001 [OP_LINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003002 .op_func = nfsd4_link,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003003 .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
3004 | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003005 .op_name = "OP_LINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003006 .op_rsize_bop = nfsd4_link_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003007 },
3008 [OP_LOCK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003009 .op_func = nfsd4_lock,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003010 .op_flags = OP_MODIFIES_SOMETHING |
3011 OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003012 .op_name = "OP_LOCK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003013 .op_rsize_bop = nfsd4_lock_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02003014 .op_set_currentstateid = nfsd4_set_lockstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003015 },
3016 [OP_LOCKT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003017 .op_func = nfsd4_lockt,
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003018 .op_flags = OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003019 .op_name = "OP_LOCKT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003020 .op_rsize_bop = nfsd4_lock_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003021 },
3022 [OP_LOCKU] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003023 .op_func = nfsd4_locku,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003024 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003025 .op_name = "OP_LOCKU",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003026 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003027 .op_get_currentstateid = nfsd4_get_lockustateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003028 },
3029 [OP_LOOKUP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003030 .op_func = nfsd4_lookup,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01003031 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003032 .op_name = "OP_LOOKUP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003033 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003034 },
3035 [OP_LOOKUPP] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003036 .op_func = nfsd4_lookupp,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01003037 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003038 .op_name = "OP_LOOKUPP",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003039 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003040 },
3041 [OP_NVERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003042 .op_func = nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003043 .op_name = "OP_NVERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003044 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003045 },
3046 [OP_OPEN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003047 .op_func = nfsd4_open,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003048 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003049 .op_name = "OP_OPEN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003050 .op_rsize_bop = nfsd4_open_rsize,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02003051 .op_set_currentstateid = nfsd4_set_openstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003052 },
3053 [OP_OPEN_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003054 .op_func = nfsd4_open_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003055 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003056 .op_name = "OP_OPEN_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003057 .op_rsize_bop = nfsd4_status_stateid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003058 },
3059 [OP_OPEN_DOWNGRADE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003060 .op_func = nfsd4_open_downgrade,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003061 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003062 .op_name = "OP_OPEN_DOWNGRADE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003063 .op_rsize_bop = nfsd4_status_stateid_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003064 .op_get_currentstateid = nfsd4_get_opendowngradestateid,
Christoph Hellwigb60e9852017-05-08 20:03:15 +02003065 .op_set_currentstateid = nfsd4_set_opendowngradestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003066 },
3067 [OP_PUTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003068 .op_func = nfsd4_putfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003069 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05003070 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003071 .op_name = "OP_PUTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003072 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003073 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08003074 [OP_PUTPUBFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003075 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003076 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05003077 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003078 .op_name = "OP_PUTPUBFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003079 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08003080 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003081 [OP_PUTROOTFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003082 .op_func = nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003083 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fields5b648692014-03-07 11:43:58 -05003084 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003085 .op_name = "OP_PUTROOTFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003086 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003087 },
3088 [OP_READ] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003089 .op_func = nfsd4_read,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003090 .op_release = nfsd4_read_release,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003091 .op_name = "OP_READ",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003092 .op_rsize_bop = nfsd4_read_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003093 .op_get_currentstateid = nfsd4_get_readstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003094 },
3095 [OP_READDIR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003096 .op_func = nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003097 .op_name = "OP_READDIR",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003098 .op_rsize_bop = nfsd4_readdir_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003099 },
3100 [OP_READLINK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003101 .op_func = nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003102 .op_name = "OP_READLINK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003103 .op_rsize_bop = nfsd4_readlink_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003104 },
3105 [OP_REMOVE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003106 .op_func = nfsd4_remove,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003107 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003108 .op_name = "OP_REMOVE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003109 .op_rsize_bop = nfsd4_remove_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003110 },
3111 [OP_RENAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003112 .op_func = nfsd4_rename,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003113 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003114 .op_name = "OP_RENAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003115 .op_rsize_bop = nfsd4_rename_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003116 },
3117 [OP_RENEW] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003118 .op_func = nfsd4_renew,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003119 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3120 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003121 .op_name = "OP_RENEW",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003122 .op_rsize_bop = nfsd4_only_status_rsize,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003123
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003124 },
3125 [OP_RESTOREFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003126 .op_func = nfsd4_restorefh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003127 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Mi Jinlong58e7b332011-08-28 18:18:56 +08003128 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003129 .op_name = "OP_RESTOREFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003130 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003131 },
3132 [OP_SAVEFH] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003133 .op_func = nfsd4_savefh,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003134 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003135 .op_name = "OP_SAVEFH",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003136 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003137 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07003138 [OP_SECINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003139 .op_func = nfsd4_secinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003140 .op_release = nfsd4_secinfo_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003141 .op_flags = OP_HANDLES_WRONGSEC,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003142 .op_name = "OP_SECINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003143 .op_rsize_bop = nfsd4_secinfo_rsize,
Andy Adamsondcb488a32007-07-17 04:04:51 -07003144 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003145 [OP_SETATTR] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003146 .op_func = nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003147 .op_name = "OP_SETATTR",
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003148 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME
3149 | OP_NONTRIVIAL_ERROR_ENCODE,
Christoph Hellwig1c122632017-05-08 20:42:10 +02003150 .op_rsize_bop = nfsd4_setattr_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003151 .op_get_currentstateid = nfsd4_get_setattrstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003152 },
3153 [OP_SETCLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003154 .op_func = nfsd4_setclientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003155 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsb7571e42017-05-06 10:49:21 -04003156 | OP_MODIFIES_SOMETHING | OP_CACHEME
3157 | OP_NONTRIVIAL_ERROR_ENCODE,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003158 .op_name = "OP_SETCLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003159 .op_rsize_bop = nfsd4_setclientid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003160 },
3161 [OP_SETCLIENTID_CONFIRM] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003162 .op_func = nfsd4_setclientid_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003163 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003164 | OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003165 .op_name = "OP_SETCLIENTID_CONFIRM",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003166 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003167 },
3168 [OP_VERIFY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003169 .op_func = nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003170 .op_name = "OP_VERIFY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003171 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003172 },
3173 [OP_WRITE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003174 .op_func = nfsd4_write,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04003175 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003176 .op_name = "OP_WRITE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003177 .op_rsize_bop = nfsd4_write_rsize,
Christoph Hellwig57832e72017-05-08 20:37:33 +02003178 .op_get_currentstateid = nfsd4_get_writestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003179 },
3180 [OP_RELEASE_LOCKOWNER] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003181 .op_func = nfsd4_release_lockowner,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003182 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3183 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03003184 .op_name = "OP_RELEASE_LOCKOWNER",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003185 .op_rsize_bop = nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003186 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03003187
3188 /* NFSv4.1 operations */
3189 [OP_EXCHANGE_ID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003190 .op_func = nfsd4_exchange_id,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003191 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3192 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003193 .op_name = "OP_EXCHANGE_ID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003194 .op_rsize_bop = nfsd4_exchange_id_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003195 },
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003196 [OP_BACKCHANNEL_CTL] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003197 .op_func = nfsd4_backchannel_ctl,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003198 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
3199 .op_name = "OP_BACKCHANNEL_CTL",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003200 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04003201 },
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003202 [OP_BIND_CONN_TO_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003203 .op_func = nfsd4_bind_conn_to_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003204 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3205 | OP_MODIFIES_SOMETHING,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003206 .op_name = "OP_BIND_CONN_TO_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003207 .op_rsize_bop = nfsd4_bind_conn_to_session_rsize,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003208 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03003209 [OP_CREATE_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003210 .op_func = nfsd4_create_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003211 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3212 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003213 .op_name = "OP_CREATE_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003214 .op_rsize_bop = nfsd4_create_session_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003215 },
3216 [OP_DESTROY_SESSION] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003217 .op_func = nfsd4_destroy_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003218 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3219 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003220 .op_name = "OP_DESTROY_SESSION",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003221 .op_rsize_bop = nfsd4_only_status_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003222 },
3223 [OP_SEQUENCE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003224 .op_func = nfsd4_sequence,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03003225 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003226 .op_name = "OP_SEQUENCE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003227 .op_rsize_bop = nfsd4_sequence_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03003228 },
Benny Halevy094b5d72011-06-16 11:39:10 -04003229 [OP_DESTROY_CLIENTID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003230 .op_func = nfsd4_destroy_clientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003231 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3232 | OP_MODIFIES_SOMETHING,
Benny Halevy094b5d72011-06-16 11:39:10 -04003233 .op_name = "OP_DESTROY_CLIENTID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003234 .op_rsize_bop = nfsd4_only_status_rsize,
Benny Halevy094b5d72011-06-16 11:39:10 -04003235 },
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003236 [OP_RECLAIM_COMPLETE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003237 .op_func = nfsd4_reclaim_complete,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003238 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003239 .op_name = "OP_RECLAIM_COMPLETE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003240 .op_rsize_bop = nfsd4_only_status_rsize,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04003241 },
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003242 [OP_SECINFO_NO_NAME] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003243 .op_func = nfsd4_secinfo_no_name,
Eryu Guanec572b92017-09-29 15:01:10 +08003244 .op_release = nfsd4_secinfo_no_name_release,
J. Bruce Fields68d93182011-04-08 17:00:50 -04003245 .op_flags = OP_HANDLES_WRONGSEC,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003246 .op_name = "OP_SECINFO_NO_NAME",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003247 .op_rsize_bop = nfsd4_secinfo_rsize,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05003248 },
Bryan Schumaker17456802011-07-13 10:50:48 -04003249 [OP_TEST_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003250 .op_func = nfsd4_test_stateid,
Bryan Schumaker17456802011-07-13 10:50:48 -04003251 .op_flags = ALLOWED_WITHOUT_FH,
3252 .op_name = "OP_TEST_STATEID",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003253 .op_rsize_bop = nfsd4_test_stateid_rsize,
Bryan Schumaker17456802011-07-13 10:50:48 -04003254 },
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003255 [OP_FREE_STATEID] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003256 .op_func = nfsd4_free_stateid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08003257 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003258 .op_name = "OP_FREE_STATEID",
Christoph Hellwig57832e72017-05-08 20:37:33 +02003259 .op_get_currentstateid = nfsd4_get_freestateid,
Christoph Hellwig1c122632017-05-08 20:42:10 +02003260 .op_rsize_bop = nfsd4_only_status_rsize,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003261 },
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003262#ifdef CONFIG_NFSD_PNFS
3263 [OP_GETDEVICEINFO] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003264 .op_func = nfsd4_getdeviceinfo,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003265 .op_release = nfsd4_getdeviceinfo_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003266 .op_flags = ALLOWED_WITHOUT_FH,
3267 .op_name = "OP_GETDEVICEINFO",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003268 .op_rsize_bop = nfsd4_getdeviceinfo_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003269 },
3270 [OP_LAYOUTGET] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003271 .op_func = nfsd4_layoutget,
J. Bruce Fields34b1744c2017-05-05 17:09:37 -04003272 .op_release = nfsd4_layoutget_release,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003273 .op_flags = OP_MODIFIES_SOMETHING,
3274 .op_name = "OP_LAYOUTGET",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003275 .op_rsize_bop = nfsd4_layoutget_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003276 },
3277 [OP_LAYOUTCOMMIT] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003278 .op_func = nfsd4_layoutcommit,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003279 .op_flags = OP_MODIFIES_SOMETHING,
3280 .op_name = "OP_LAYOUTCOMMIT",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003281 .op_rsize_bop = nfsd4_layoutcommit_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003282 },
3283 [OP_LAYOUTRETURN] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003284 .op_func = nfsd4_layoutreturn,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003285 .op_flags = OP_MODIFIES_SOMETHING,
3286 .op_name = "OP_LAYOUTRETURN",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003287 .op_rsize_bop = nfsd4_layoutreturn_rsize,
Christoph Hellwig9cf514c2014-05-05 13:11:59 +02003288 },
3289#endif /* CONFIG_NFSD_PNFS */
Anna Schumaker24bab492014-09-26 13:58:27 -04003290
3291 /* NFSv4.2 operations */
Anna Schumaker95d871f2014-11-07 14:44:26 -05003292 [OP_ALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003293 .op_func = nfsd4_allocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003294 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003295 .op_name = "OP_ALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003296 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumaker95d871f2014-11-07 14:44:26 -05003297 },
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003298 [OP_DEALLOCATE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003299 .op_func = nfsd4_deallocate,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003300 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003301 .op_name = "OP_DEALLOCATE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003302 .op_rsize_bop = nfsd4_only_status_rsize,
Anna Schumakerb0cb9082014-11-07 14:44:27 -05003303 },
Christoph Hellwigffa01602015-12-03 12:59:52 +01003304 [OP_CLONE] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003305 .op_func = nfsd4_clone,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003306 .op_flags = OP_MODIFIES_SOMETHING,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003307 .op_name = "OP_CLONE",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003308 .op_rsize_bop = nfsd4_only_status_rsize,
Christoph Hellwigffa01602015-12-03 12:59:52 +01003309 },
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003310 [OP_COPY] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003311 .op_func = nfsd4_copy,
Olga Kornievskaia03b31f42018-12-04 14:09:21 -05003312 .op_flags = OP_MODIFIES_SOMETHING,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003313 .op_name = "OP_COPY",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003314 .op_rsize_bop = nfsd4_copy_rsize,
Anna Schumaker29ae7f92016-09-07 15:57:30 -04003315 },
Anna Schumaker528b8492020-09-28 13:08:58 -04003316 [OP_READ_PLUS] = {
3317 .op_func = nfsd4_read,
3318 .op_release = nfsd4_read_release,
3319 .op_name = "OP_READ_PLUS",
3320 .op_rsize_bop = nfsd4_read_plus_rsize,
3321 .op_get_currentstateid = nfsd4_get_readstateid,
3322 },
Anna Schumaker24bab492014-09-26 13:58:27 -04003323 [OP_SEEK] = {
Christoph Hellwigeb698532017-05-08 20:58:35 +02003324 .op_func = nfsd4_seek,
Anna Schumaker24bab492014-09-26 13:58:27 -04003325 .op_name = "OP_SEEK",
Christoph Hellwig1c122632017-05-08 20:42:10 +02003326 .op_rsize_bop = nfsd4_seek_rsize,
Anna Schumaker24bab492014-09-26 13:58:27 -04003327 },
Olga Kornievskaia6308bc92018-07-20 18:19:18 -04003328 [OP_OFFLOAD_STATUS] = {
3329 .op_func = nfsd4_offload_status,
3330 .op_name = "OP_OFFLOAD_STATUS",
3331 .op_rsize_bop = nfsd4_offload_status_rsize,
3332 },
Olga Kornievskaia885e2bf2018-07-20 18:19:19 -04003333 [OP_OFFLOAD_CANCEL] = {
3334 .op_func = nfsd4_offload_cancel,
3335 .op_flags = OP_MODIFIES_SOMETHING,
3336 .op_name = "OP_OFFLOAD_CANCEL",
3337 .op_rsize_bop = nfsd4_only_status_rsize,
3338 },
Olga Kornievskaia51911862019-08-08 11:14:59 -04003339 [OP_COPY_NOTIFY] = {
3340 .op_func = nfsd4_copy_notify,
3341 .op_flags = OP_MODIFIES_SOMETHING,
3342 .op_name = "OP_COPY_NOTIFY",
3343 .op_rsize_bop = nfsd4_copy_notify_rsize,
3344 },
Frank van der Linden23e50fe2020-06-23 22:39:26 +00003345 [OP_GETXATTR] = {
3346 .op_func = nfsd4_getxattr,
3347 .op_name = "OP_GETXATTR",
3348 .op_rsize_bop = nfsd4_getxattr_rsize,
3349 },
3350 [OP_SETXATTR] = {
3351 .op_func = nfsd4_setxattr,
3352 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3353 .op_name = "OP_SETXATTR",
3354 .op_rsize_bop = nfsd4_setxattr_rsize,
3355 },
3356 [OP_LISTXATTRS] = {
3357 .op_func = nfsd4_listxattrs,
3358 .op_name = "OP_LISTXATTRS",
3359 .op_rsize_bop = nfsd4_listxattrs_rsize,
3360 },
3361 [OP_REMOVEXATTR] = {
3362 .op_func = nfsd4_removexattr,
3363 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3364 .op_name = "OP_REMOVEXATTR",
3365 .op_rsize_bop = nfsd4_removexattr_rsize,
3366 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08003367};
3368
Andrew Elbleed941642016-06-15 12:52:09 -04003369/**
3370 * nfsd4_spo_must_allow - Determine if the compound op contains an
3371 * operation that is allowed to be sent with machine credentials
3372 *
3373 * @rqstp: a pointer to the struct svc_rqst
3374 *
3375 * Checks to see if the compound contains a spo_must_allow op
3376 * and confirms that it was sent with the proper machine creds.
3377 */
3378
3379bool nfsd4_spo_must_allow(struct svc_rqst *rqstp)
3380{
3381 struct nfsd4_compoundres *resp = rqstp->rq_resp;
3382 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
Colin Ian Kinge34c0ce2021-05-13 16:16:39 +01003383 struct nfsd4_op *this;
Andrew Elbleed941642016-06-15 12:52:09 -04003384 struct nfsd4_compound_state *cstate = &resp->cstate;
3385 struct nfs4_op_map *allow = &cstate->clp->cl_spo_must_allow;
3386 u32 opiter;
3387
3388 if (!cstate->minorversion)
3389 return false;
3390
Zheng Bin44b49aa2020-09-11 12:10:14 +08003391 if (cstate->spo_must_allowed)
Andrew Elbleed941642016-06-15 12:52:09 -04003392 return true;
3393
3394 opiter = resp->opcnt;
3395 while (opiter < argp->opcnt) {
3396 this = &argp->ops[opiter++];
3397 if (test_bit(this->opnum, allow->u.longs) &&
3398 cstate->clp->cl_mach_cred &&
3399 nfsd4_mach_creds_match(cstate->clp, rqstp)) {
3400 cstate->spo_must_allowed = true;
3401 return true;
3402 }
3403 }
3404 cstate->spo_must_allowed = false;
3405 return false;
3406}
3407
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003408int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op)
3409{
Olga Kornievskaia05b72782017-03-23 14:36:20 -04003410 if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003411 return op_encode_hdr_size * sizeof(__be32);
Kinglong Mee2282cd22017-02-03 22:36:00 +08003412
3413 BUG_ON(OPDESC(op)->op_rsize_bop == NULL);
3414 return OPDESC(op)->op_rsize_bop(rqstp, op);
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04003415}
3416
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003417void warn_on_nonidempotent_op(struct nfsd4_op *op)
3418{
3419 if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) {
Chuck Lever3a237b42020-11-22 12:49:52 -05003420 pr_err("unable to encode reply to nonidempotent op %u (%s)\n",
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003421 op->opnum, nfsd4_op_name(op->opnum));
3422 WARN_ON_ONCE(1);
3423 }
3424}
3425
Adrian Bunkf1c7f792008-08-08 19:26:42 +03003426static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03003427{
3428 if (opnum < ARRAY_SIZE(nfsd4_ops))
3429 return nfsd4_ops[opnum].op_name;
3430 return "unknown_operation";
3431}
3432
Christoph Hellwig860bda22017-05-12 16:11:49 +02003433static const struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003434 [NFSPROC4_NULL] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003435 .pc_func = nfsd4_proc_null,
Chuck Lever788f7182020-11-05 14:48:29 -05003436 .pc_decode = nfssvc_decode_voidarg,
3437 .pc_encode = nfssvc_encode_voidres,
3438 .pc_argsize = sizeof(struct nfsd_voidargs),
3439 .pc_ressize = sizeof(struct nfsd_voidres),
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003440 .pc_cachetype = RC_NOCACHE,
3441 .pc_xdrressize = 1,
Chuck Lever2289e872020-09-17 17:22:49 -04003442 .pc_name = "NULL",
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003443 },
3444 [NFSPROC4_COMPOUND] = {
Christoph Hellwigf7235b62017-05-08 17:59:13 +02003445 .pc_func = nfsd4_proc_compound,
Christoph Hellwig026fec72017-05-08 19:01:48 +02003446 .pc_decode = nfs4svc_decode_compoundargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +02003447 .pc_encode = nfs4svc_encode_compoundres,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003448 .pc_argsize = sizeof(struct nfsd4_compoundargs),
3449 .pc_ressize = sizeof(struct nfsd4_compoundres),
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003450 .pc_release = nfsd4_release_compoundargs,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003451 .pc_cachetype = RC_NOCACHE,
3452 .pc_xdrressize = NFSD_BUFSIZE/4,
Chuck Lever2289e872020-09-17 17:22:49 -04003453 .pc_name = "COMPOUND",
Yu Zhiguo0a93a472009-05-19 14:09:54 +08003454 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455};
3456
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003457static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures4)];
Christoph Hellwige9679182017-05-12 16:21:37 +02003458const struct svc_version nfsd_version4 = {
Jeff Layton5283b032017-02-24 13:25:24 -05003459 .vs_vers = 4,
3460 .vs_nproc = 2,
3461 .vs_proc = nfsd_procedures4,
Christoph Hellwig7fd38af2017-05-08 23:40:27 +02003462 .vs_count = nfsd_count3,
Jeff Layton5283b032017-02-24 13:25:24 -05003463 .vs_dispatch = nfsd_dispatch,
3464 .vs_xdrsize = NFS4_SVC_XDRSIZE,
3465 .vs_rpcb_optnl = true,
3466 .vs_need_cong_ctrl = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467};