xref: /kernel/linux/linux-5.10/fs/nfsd/nfs4proc.c (revision 8c2ecf20)
1/*
2 *  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.
34 */
35#include <linux/fs_struct.h>
36#include <linux/file.h>
37#include <linux/falloc.h>
38#include <linux/slab.h>
39#include <linux/kthread.h>
40#include <linux/sunrpc/addr.h>
41#include <linux/nfs_ssc.h>
42
43#include "idmap.h"
44#include "cache.h"
45#include "xdr4.h"
46#include "vfs.h"
47#include "current_stateid.h"
48#include "netns.h"
49#include "acl.h"
50#include "pnfs.h"
51#include "trace.h"
52
53#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
54#include <linux/security.h>
55
56static inline void
57nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
58{
59	struct inode *inode = d_inode(resfh->fh_dentry);
60	int status;
61
62	inode_lock(inode);
63	status = security_inode_setsecctx(resfh->fh_dentry,
64		label->data, label->len);
65	inode_unlock(inode);
66
67	if (status)
68		/*
69		 * XXX: We should really fail the whole open, but we may
70		 * already have created a new file, so it may be too
71		 * late.  For now this seems the least of evils:
72		 */
73		bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
74
75	return;
76}
77#else
78static inline void
79nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
80{ }
81#endif
82
83#define NFSDDBG_FACILITY		NFSDDBG_PROC
84
85static u32 nfsd_attrmask[] = {
86	NFSD_WRITEABLE_ATTRS_WORD0,
87	NFSD_WRITEABLE_ATTRS_WORD1,
88	NFSD_WRITEABLE_ATTRS_WORD2
89};
90
91static u32 nfsd41_ex_attrmask[] = {
92	NFSD_SUPPATTR_EXCLCREAT_WORD0,
93	NFSD_SUPPATTR_EXCLCREAT_WORD1,
94	NFSD_SUPPATTR_EXCLCREAT_WORD2
95};
96
97static __be32
98check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
99		   u32 *bmval, u32 *writable)
100{
101	struct dentry *dentry = cstate->current_fh.fh_dentry;
102	struct svc_export *exp = cstate->current_fh.fh_export;
103
104	if (!nfsd_attrs_supported(cstate->minorversion, bmval))
105		return nfserr_attrnotsupp;
106	if ((bmval[0] & FATTR4_WORD0_ACL) && !IS_POSIXACL(d_inode(dentry)))
107		return nfserr_attrnotsupp;
108	if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) &&
109			!(exp->ex_flags & NFSEXP_SECURITY_LABEL))
110		return nfserr_attrnotsupp;
111	if (writable && !bmval_is_subset(bmval, writable))
112		return nfserr_inval;
113	if (writable && (bmval[2] & FATTR4_WORD2_MODE_UMASK) &&
114			(bmval[1] & FATTR4_WORD1_MODE))
115		return nfserr_inval;
116	return nfs_ok;
117}
118
119static __be32
120nfsd4_check_open_attributes(struct svc_rqst *rqstp,
121	struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
122{
123	__be32 status = nfs_ok;
124
125	if (open->op_create == NFS4_OPEN_CREATE) {
126		if (open->op_createmode == NFS4_CREATE_UNCHECKED
127		    || open->op_createmode == NFS4_CREATE_GUARDED)
128			status = check_attr_support(rqstp, cstate,
129					open->op_bmval, nfsd_attrmask);
130		else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
131			status = check_attr_support(rqstp, cstate,
132					open->op_bmval, nfsd41_ex_attrmask);
133	}
134
135	return status;
136}
137
138static int
139is_create_with_attrs(struct nfsd4_open *open)
140{
141	return open->op_create == NFS4_OPEN_CREATE
142		&& (open->op_createmode == NFS4_CREATE_UNCHECKED
143		    || open->op_createmode == NFS4_CREATE_GUARDED
144		    || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
145}
146
147/*
148 * if error occurs when setting the acl, just clear the acl bit
149 * in the returned attr bitmap.
150 */
151static void
152do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
153		struct nfs4_acl *acl, u32 *bmval)
154{
155	__be32 status;
156
157	status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
158	if (status)
159		/*
160		 * We should probably fail the whole open at this point,
161		 * but we've already created the file, so it's too late;
162		 * So this seems the least of evils:
163		 */
164		bmval[0] &= ~FATTR4_WORD0_ACL;
165}
166
167static inline void
168fh_dup2(struct svc_fh *dst, struct svc_fh *src)
169{
170	fh_put(dst);
171	dget(src->fh_dentry);
172	if (src->fh_export)
173		exp_get(src->fh_export);
174	*dst = *src;
175}
176
177static __be32
178do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
179{
180	__be32 status;
181
182	if (open->op_truncate &&
183		!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
184		return nfserr_inval;
185
186	accmode |= NFSD_MAY_READ_IF_EXEC;
187
188	if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
189		accmode |= NFSD_MAY_READ;
190	if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
191		accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
192	if (open->op_share_deny & NFS4_SHARE_DENY_READ)
193		accmode |= NFSD_MAY_WRITE;
194
195	status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
196
197	return status;
198}
199
200static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
201{
202	umode_t mode = d_inode(fh->fh_dentry)->i_mode;
203
204	if (S_ISREG(mode))
205		return nfs_ok;
206	if (S_ISDIR(mode))
207		return nfserr_isdir;
208	/*
209	 * Using err_symlink as our catch-all case may look odd; but
210	 * there's no other obvious error for this case in 4.0, and we
211	 * happen to know that it will cause the linux v4 client to do
212	 * the right thing on attempts to open something other than a
213	 * regular file.
214	 */
215	return nfserr_symlink;
216}
217
218static void nfsd4_set_open_owner_reply_cache(struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh *resfh)
219{
220	if (nfsd4_has_session(cstate))
221		return;
222	fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
223			&resfh->fh_handle);
224}
225
226static __be32
227do_open_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh **resfh)
228{
229	struct svc_fh *current_fh = &cstate->current_fh;
230	int accmode;
231	__be32 status;
232
233	*resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
234	if (!*resfh)
235		return nfserr_jukebox;
236	fh_init(*resfh, NFS4_FHSIZE);
237	open->op_truncate = false;
238
239	if (open->op_create) {
240		/* FIXME: check session persistence and pnfs flags.
241		 * The nfsv4.1 spec requires the following semantics:
242		 *
243		 * Persistent   | pNFS   | Server REQUIRED | Client Allowed
244		 * Reply Cache  | server |                 |
245		 * -------------+--------+-----------------+--------------------
246		 * no           | no     | EXCLUSIVE4_1    | EXCLUSIVE4_1
247		 *              |        |                 | (SHOULD)
248		 *              |        | and EXCLUSIVE4  | or EXCLUSIVE4
249		 *              |        |                 | (SHOULD NOT)
250		 * no           | yes    | EXCLUSIVE4_1    | EXCLUSIVE4_1
251		 * yes          | no     | GUARDED4        | GUARDED4
252		 * yes          | yes    | GUARDED4        | GUARDED4
253		 */
254
255		/*
256		 * Note: create modes (UNCHECKED,GUARDED...) are the same
257		 * in NFSv4 as in v3 except EXCLUSIVE4_1.
258		 */
259		current->fs->umask = open->op_umask;
260		status = do_nfsd_create(rqstp, current_fh, open->op_fname.data,
261					open->op_fname.len, &open->op_iattr,
262					*resfh, open->op_createmode,
263					(u32 *)open->op_verf.data,
264					&open->op_truncate, &open->op_created);
265		current->fs->umask = 0;
266
267		if (!status && open->op_label.len)
268			nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval);
269
270		/*
271		 * Following rfc 3530 14.2.16, and rfc 5661 18.16.4
272		 * use the returned bitmask to indicate which attributes
273		 * we used to store the verifier:
274		 */
275		if (nfsd_create_is_exclusive(open->op_createmode) && status == 0)
276			open->op_bmval[1] |= (FATTR4_WORD1_TIME_ACCESS |
277						FATTR4_WORD1_TIME_MODIFY);
278	} else
279		/*
280		 * Note this may exit with the parent still locked.
281		 * We will hold the lock until nfsd4_open's final
282		 * lookup, to prevent renames or unlinks until we've had
283		 * a chance to an acquire a delegation if appropriate.
284		 */
285		status = nfsd_lookup(rqstp, current_fh,
286				     open->op_fname.data, open->op_fname.len, *resfh);
287	if (status)
288		goto out;
289	status = nfsd_check_obj_isreg(*resfh);
290	if (status)
291		goto out;
292
293	if (is_create_with_attrs(open) && open->op_acl != NULL)
294		do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval);
295
296	nfsd4_set_open_owner_reply_cache(cstate, open, *resfh);
297	accmode = NFSD_MAY_NOP;
298	if (open->op_created ||
299			open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
300		accmode |= NFSD_MAY_OWNER_OVERRIDE;
301	status = do_open_permission(rqstp, *resfh, open, accmode);
302	set_change_info(&open->op_cinfo, current_fh);
303out:
304	return status;
305}
306
307static __be32
308do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
309{
310	struct svc_fh *current_fh = &cstate->current_fh;
311	__be32 status;
312	int accmode = 0;
313
314	/* We don't know the target directory, and therefore can not
315	* set the change info
316	*/
317
318	memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
319
320	nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
321
322	open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
323		(open->op_iattr.ia_size == 0);
324	/*
325	 * In the delegation case, the client is telling us about an
326	 * open that it *already* performed locally, some time ago.  We
327	 * should let it succeed now if possible.
328	 *
329	 * In the case of a CLAIM_FH open, on the other hand, the client
330	 * may be counting on us to enforce permissions (the Linux 4.1
331	 * client uses this for normal opens, for example).
332	 */
333	if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
334		accmode = NFSD_MAY_OWNER_OVERRIDE;
335
336	status = do_open_permission(rqstp, current_fh, open, accmode);
337
338	return status;
339}
340
341static void
342copy_clientid(clientid_t *clid, struct nfsd4_session *session)
343{
344	struct nfsd4_sessionid *sid =
345			(struct nfsd4_sessionid *)session->se_sessionid.data;
346
347	clid->cl_boot = sid->clientid.cl_boot;
348	clid->cl_id = sid->clientid.cl_id;
349}
350
351static __be32
352nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
353	   union nfsd4_op_u *u)
354{
355	struct nfsd4_open *open = &u->open;
356	__be32 status;
357	struct svc_fh *resfh = NULL;
358	struct net *net = SVC_NET(rqstp);
359	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
360	bool reclaim = false;
361
362	dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
363		(int)open->op_fname.len, open->op_fname.data,
364		open->op_openowner);
365
366	/* This check required by spec. */
367	if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
368		return nfserr_inval;
369
370	open->op_created = false;
371	/*
372	 * RFC5661 18.51.3
373	 * Before RECLAIM_COMPLETE done, server should deny new lock
374	 */
375	if (nfsd4_has_session(cstate) &&
376	    !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
377		      &cstate->session->se_client->cl_flags) &&
378	    open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
379		return nfserr_grace;
380
381	if (nfsd4_has_session(cstate))
382		copy_clientid(&open->op_clientid, cstate->session);
383
384	/* check seqid for replay. set nfs4_owner */
385	status = nfsd4_process_open1(cstate, open, nn);
386	if (status == nfserr_replay_me) {
387		struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
388		fh_put(&cstate->current_fh);
389		fh_copy_shallow(&cstate->current_fh.fh_handle,
390				&rp->rp_openfh);
391		status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
392		if (status)
393			dprintk("nfsd4_open: replay failed"
394				" restoring previous filehandle\n");
395		else
396			status = nfserr_replay_me;
397	}
398	if (status)
399		goto out;
400	if (open->op_xdr_error) {
401		status = open->op_xdr_error;
402		goto out;
403	}
404
405	status = nfsd4_check_open_attributes(rqstp, cstate, open);
406	if (status)
407		goto out;
408
409	/* Openowner is now set, so sequence id will get bumped.  Now we need
410	 * these checks before we do any creates: */
411	status = nfserr_grace;
412	if (opens_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
413		goto out;
414	status = nfserr_no_grace;
415	if (!opens_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
416		goto out;
417
418	switch (open->op_claim_type) {
419		case NFS4_OPEN_CLAIM_DELEGATE_CUR:
420		case NFS4_OPEN_CLAIM_NULL:
421			status = do_open_lookup(rqstp, cstate, open, &resfh);
422			if (status)
423				goto out;
424			break;
425		case NFS4_OPEN_CLAIM_PREVIOUS:
426			status = nfs4_check_open_reclaim(&open->op_clientid,
427							 cstate, nn);
428			if (status)
429				goto out;
430			open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
431			reclaim = true;
432			fallthrough;
433		case NFS4_OPEN_CLAIM_FH:
434		case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
435			status = do_open_fhandle(rqstp, cstate, open);
436			if (status)
437				goto out;
438			resfh = &cstate->current_fh;
439			break;
440		case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
441             	case NFS4_OPEN_CLAIM_DELEGATE_PREV:
442			dprintk("NFSD: unsupported OPEN claim type %d\n",
443				open->op_claim_type);
444			status = nfserr_notsupp;
445			goto out;
446		default:
447			dprintk("NFSD: Invalid OPEN claim type %d\n",
448				open->op_claim_type);
449			status = nfserr_inval;
450			goto out;
451	}
452	/*
453	 * nfsd4_process_open2() does the actual opening of the file.  If
454	 * successful, it (1) truncates the file if open->op_truncate was
455	 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
456	 */
457	status = nfsd4_process_open2(rqstp, resfh, open);
458	WARN(status && open->op_created,
459	     "nfsd4_process_open2 failed to open newly-created file! status=%u\n",
460	     be32_to_cpu(status));
461	if (reclaim && !status)
462		nn->somebody_reclaimed = true;
463out:
464	if (resfh && resfh != &cstate->current_fh) {
465		fh_dup2(&cstate->current_fh, resfh);
466		fh_put(resfh);
467		kfree(resfh);
468	}
469	nfsd4_cleanup_open_state(cstate, open);
470	nfsd4_bump_seqid(cstate, status);
471	return status;
472}
473
474/*
475 * OPEN is the only seqid-mutating operation whose decoding can fail
476 * with a seqid-mutating error (specifically, decoding of user names in
477 * the attributes).  Therefore we have to do some processing to look up
478 * the stateowner so that we can bump the seqid.
479 */
480static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
481{
482	struct nfsd4_open *open = &op->u.open;
483
484	if (!seqid_mutating_err(ntohl(op->status)))
485		return op->status;
486	if (nfsd4_has_session(cstate))
487		return op->status;
488	open->op_xdr_error = op->status;
489	return nfsd4_open(rqstp, cstate, &op->u);
490}
491
492/*
493 * filehandle-manipulating ops.
494 */
495static __be32
496nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
497	    union nfsd4_op_u *u)
498{
499	u->getfh = &cstate->current_fh;
500	return nfs_ok;
501}
502
503static __be32
504nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
505	    union nfsd4_op_u *u)
506{
507	struct nfsd4_putfh *putfh = &u->putfh;
508	__be32 ret;
509
510	fh_put(&cstate->current_fh);
511	cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
512	memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
513	       putfh->pf_fhlen);
514	ret = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
515#ifdef CONFIG_NFSD_V4_2_INTER_SSC
516	if (ret == nfserr_stale && putfh->no_verify) {
517		SET_FH_FLAG(&cstate->current_fh, NFSD4_FH_FOREIGN);
518		ret = 0;
519	}
520#endif
521	return ret;
522}
523
524static __be32
525nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
526		union nfsd4_op_u *u)
527{
528	__be32 status;
529
530	fh_put(&cstate->current_fh);
531	status = exp_pseudoroot(rqstp, &cstate->current_fh);
532	return status;
533}
534
535static __be32
536nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
537		union nfsd4_op_u *u)
538{
539	if (!cstate->save_fh.fh_dentry)
540		return nfserr_restorefh;
541
542	fh_dup2(&cstate->current_fh, &cstate->save_fh);
543	if (HAS_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG)) {
544		memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
545		SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG);
546	}
547	return nfs_ok;
548}
549
550static __be32
551nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
552	     union nfsd4_op_u *u)
553{
554	fh_dup2(&cstate->save_fh, &cstate->current_fh);
555	if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG)) {
556		memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
557		SET_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG);
558	}
559	return nfs_ok;
560}
561
562/*
563 * misc nfsv4 ops
564 */
565static __be32
566nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
567	     union nfsd4_op_u *u)
568{
569	struct nfsd4_access *access = &u->access;
570	u32 access_full;
571
572	access_full = NFS3_ACCESS_FULL;
573	if (cstate->minorversion >= 2)
574		access_full |= NFS4_ACCESS_XALIST | NFS4_ACCESS_XAREAD |
575			       NFS4_ACCESS_XAWRITE;
576
577	if (access->ac_req_access & ~access_full)
578		return nfserr_inval;
579
580	access->ac_resp_access = access->ac_req_access;
581	return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
582			   &access->ac_supported);
583}
584
585static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
586{
587	__be32 *verf = (__be32 *)verifier->data;
588
589	BUILD_BUG_ON(2*sizeof(*verf) != sizeof(verifier->data));
590
591	nfsd_copy_boot_verifier(verf, net_generic(net, nfsd_net_id));
592}
593
594static __be32
595nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
596	     union nfsd4_op_u *u)
597{
598	struct nfsd4_commit *commit = &u->commit;
599
600	return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
601			     commit->co_count,
602			     (__be32 *)commit->co_verf.data);
603}
604
605static __be32
606nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
607	     union nfsd4_op_u *u)
608{
609	struct nfsd4_create *create = &u->create;
610	struct svc_fh resfh;
611	__be32 status;
612	dev_t rdev;
613
614	fh_init(&resfh, NFS4_FHSIZE);
615
616	status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP);
617	if (status)
618		return status;
619
620	status = check_attr_support(rqstp, cstate, create->cr_bmval,
621				    nfsd_attrmask);
622	if (status)
623		return status;
624
625	current->fs->umask = create->cr_umask;
626	switch (create->cr_type) {
627	case NF4LNK:
628		status = nfsd_symlink(rqstp, &cstate->current_fh,
629				      create->cr_name, create->cr_namelen,
630				      create->cr_data, &resfh);
631		break;
632
633	case NF4BLK:
634		status = nfserr_inval;
635		rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
636		if (MAJOR(rdev) != create->cr_specdata1 ||
637		    MINOR(rdev) != create->cr_specdata2)
638			goto out_umask;
639		status = nfsd_create(rqstp, &cstate->current_fh,
640				     create->cr_name, create->cr_namelen,
641				     &create->cr_iattr, S_IFBLK, rdev, &resfh);
642		break;
643
644	case NF4CHR:
645		status = nfserr_inval;
646		rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
647		if (MAJOR(rdev) != create->cr_specdata1 ||
648		    MINOR(rdev) != create->cr_specdata2)
649			goto out_umask;
650		status = nfsd_create(rqstp, &cstate->current_fh,
651				     create->cr_name, create->cr_namelen,
652				     &create->cr_iattr,S_IFCHR, rdev, &resfh);
653		break;
654
655	case NF4SOCK:
656		status = nfsd_create(rqstp, &cstate->current_fh,
657				     create->cr_name, create->cr_namelen,
658				     &create->cr_iattr, S_IFSOCK, 0, &resfh);
659		break;
660
661	case NF4FIFO:
662		status = nfsd_create(rqstp, &cstate->current_fh,
663				     create->cr_name, create->cr_namelen,
664				     &create->cr_iattr, S_IFIFO, 0, &resfh);
665		break;
666
667	case NF4DIR:
668		create->cr_iattr.ia_valid &= ~ATTR_SIZE;
669		status = nfsd_create(rqstp, &cstate->current_fh,
670				     create->cr_name, create->cr_namelen,
671				     &create->cr_iattr, S_IFDIR, 0, &resfh);
672		break;
673
674	default:
675		status = nfserr_badtype;
676	}
677
678	if (status)
679		goto out;
680
681	if (create->cr_label.len)
682		nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
683
684	if (create->cr_acl != NULL)
685		do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
686				create->cr_bmval);
687
688	fh_unlock(&cstate->current_fh);
689	set_change_info(&create->cr_cinfo, &cstate->current_fh);
690	fh_dup2(&cstate->current_fh, &resfh);
691out:
692	fh_put(&resfh);
693out_umask:
694	current->fs->umask = 0;
695	return status;
696}
697
698static __be32
699nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
700	      union nfsd4_op_u *u)
701{
702	struct nfsd4_getattr *getattr = &u->getattr;
703	__be32 status;
704
705	status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
706	if (status)
707		return status;
708
709	if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
710		return nfserr_inval;
711
712	getattr->ga_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
713	getattr->ga_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
714	getattr->ga_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
715
716	getattr->ga_fhp = &cstate->current_fh;
717	return nfs_ok;
718}
719
720static __be32
721nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
722	   union nfsd4_op_u *u)
723{
724	struct nfsd4_link *link = &u->link;
725	__be32 status;
726
727	status = nfsd_link(rqstp, &cstate->current_fh,
728			   link->li_name, link->li_namelen, &cstate->save_fh);
729	if (!status)
730		set_change_info(&link->li_cinfo, &cstate->current_fh);
731	return status;
732}
733
734static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
735{
736	struct svc_fh tmp_fh;
737	__be32 ret;
738
739	fh_init(&tmp_fh, NFS4_FHSIZE);
740	ret = exp_pseudoroot(rqstp, &tmp_fh);
741	if (ret)
742		return ret;
743	if (tmp_fh.fh_dentry == fh->fh_dentry) {
744		fh_put(&tmp_fh);
745		return nfserr_noent;
746	}
747	fh_put(&tmp_fh);
748	return nfsd_lookup(rqstp, fh, "..", 2, fh);
749}
750
751static __be32
752nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
753	      union nfsd4_op_u *u)
754{
755	return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
756}
757
758static __be32
759nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
760	     union nfsd4_op_u *u)
761{
762	return nfsd_lookup(rqstp, &cstate->current_fh,
763			   u->lookup.lo_name, u->lookup.lo_len,
764			   &cstate->current_fh);
765}
766
767static __be32
768nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
769	   union nfsd4_op_u *u)
770{
771	struct nfsd4_read *read = &u->read;
772	__be32 status;
773
774	read->rd_nf = NULL;
775	if (read->rd_offset >= OFFSET_MAX)
776		return nfserr_inval;
777
778	trace_nfsd_read_start(rqstp, &cstate->current_fh,
779			      read->rd_offset, read->rd_length);
780
781	/*
782	 * If we do a zero copy read, then a client will see read data
783	 * that reflects the state of the file *after* performing the
784	 * following compound.
785	 *
786	 * To ensure proper ordering, we therefore turn off zero copy if
787	 * the client wants us to do more in this compound:
788	 */
789	if (!nfsd4_last_compound_op(rqstp))
790		clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags);
791
792	/* check stateid */
793	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
794					&read->rd_stateid, RD_STATE,
795					&read->rd_nf, NULL);
796	if (status) {
797		dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
798		goto out;
799	}
800	status = nfs_ok;
801out:
802	read->rd_rqstp = rqstp;
803	read->rd_fhp = &cstate->current_fh;
804	return status;
805}
806
807
808static void
809nfsd4_read_release(union nfsd4_op_u *u)
810{
811	if (u->read.rd_nf)
812		nfsd_file_put(u->read.rd_nf);
813	trace_nfsd_read_done(u->read.rd_rqstp, u->read.rd_fhp,
814			     u->read.rd_offset, u->read.rd_length);
815}
816
817static __be32
818nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
819	      union nfsd4_op_u *u)
820{
821	struct nfsd4_readdir *readdir = &u->readdir;
822	u64 cookie = readdir->rd_cookie;
823	static const nfs4_verifier zeroverf;
824
825	/* no need to check permission - this will be done in nfsd_readdir() */
826
827	if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
828		return nfserr_inval;
829
830	readdir->rd_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0];
831	readdir->rd_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1];
832	readdir->rd_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2];
833
834	if ((cookie == 1) || (cookie == 2) ||
835	    (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
836		return nfserr_bad_cookie;
837
838	readdir->rd_rqstp = rqstp;
839	readdir->rd_fhp = &cstate->current_fh;
840	return nfs_ok;
841}
842
843static __be32
844nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
845	       union nfsd4_op_u *u)
846{
847	u->readlink.rl_rqstp = rqstp;
848	u->readlink.rl_fhp = &cstate->current_fh;
849	return nfs_ok;
850}
851
852static __be32
853nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
854	     union nfsd4_op_u *u)
855{
856	struct nfsd4_remove *remove = &u->remove;
857	__be32 status;
858
859	if (opens_in_grace(SVC_NET(rqstp)))
860		return nfserr_grace;
861	status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
862			     remove->rm_name, remove->rm_namelen);
863	if (!status) {
864		fh_unlock(&cstate->current_fh);
865		set_change_info(&remove->rm_cinfo, &cstate->current_fh);
866	}
867	return status;
868}
869
870static __be32
871nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
872	     union nfsd4_op_u *u)
873{
874	struct nfsd4_rename *rename = &u->rename;
875	__be32 status;
876
877	if (opens_in_grace(SVC_NET(rqstp)))
878		return nfserr_grace;
879	status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
880			     rename->rn_snamelen, &cstate->current_fh,
881			     rename->rn_tname, rename->rn_tnamelen);
882	if (status)
883		return status;
884	set_change_info(&rename->rn_sinfo, &cstate->save_fh);
885	set_change_info(&rename->rn_tinfo, &cstate->current_fh);
886	return nfs_ok;
887}
888
889static __be32
890nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
891	      union nfsd4_op_u *u)
892{
893	struct nfsd4_secinfo *secinfo = &u->secinfo;
894	struct svc_export *exp;
895	struct dentry *dentry;
896	__be32 err;
897
898	err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
899	if (err)
900		return err;
901	err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
902				    secinfo->si_name, secinfo->si_namelen,
903				    &exp, &dentry);
904	if (err)
905		return err;
906	fh_unlock(&cstate->current_fh);
907	if (d_really_is_negative(dentry)) {
908		exp_put(exp);
909		err = nfserr_noent;
910	} else
911		secinfo->si_exp = exp;
912	dput(dentry);
913	if (cstate->minorversion)
914		/* See rfc 5661 section 2.6.3.1.1.8 */
915		fh_put(&cstate->current_fh);
916	return err;
917}
918
919static __be32
920nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
921		union nfsd4_op_u *u)
922{
923	__be32 err;
924
925	switch (u->secinfo_no_name.sin_style) {
926	case NFS4_SECINFO_STYLE4_CURRENT_FH:
927		break;
928	case NFS4_SECINFO_STYLE4_PARENT:
929		err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
930		if (err)
931			return err;
932		break;
933	default:
934		return nfserr_inval;
935	}
936
937	u->secinfo_no_name.sin_exp = exp_get(cstate->current_fh.fh_export);
938	fh_put(&cstate->current_fh);
939	return nfs_ok;
940}
941
942static void
943nfsd4_secinfo_release(union nfsd4_op_u *u)
944{
945	if (u->secinfo.si_exp)
946		exp_put(u->secinfo.si_exp);
947}
948
949static void
950nfsd4_secinfo_no_name_release(union nfsd4_op_u *u)
951{
952	if (u->secinfo_no_name.sin_exp)
953		exp_put(u->secinfo_no_name.sin_exp);
954}
955
956static __be32
957nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
958	      union nfsd4_op_u *u)
959{
960	struct nfsd4_setattr *setattr = &u->setattr;
961	__be32 status = nfs_ok;
962	int err;
963
964	if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
965		status = nfs4_preprocess_stateid_op(rqstp, cstate,
966				&cstate->current_fh, &setattr->sa_stateid,
967				WR_STATE, NULL, NULL);
968		if (status) {
969			dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
970			return status;
971		}
972	}
973	err = fh_want_write(&cstate->current_fh);
974	if (err)
975		return nfserrno(err);
976	status = nfs_ok;
977
978	status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
979				    nfsd_attrmask);
980	if (status)
981		goto out;
982
983	if (setattr->sa_acl != NULL)
984		status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
985					    setattr->sa_acl);
986	if (status)
987		goto out;
988	if (setattr->sa_label.len)
989		status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
990				&setattr->sa_label);
991	if (status)
992		goto out;
993	status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
994				0, (time64_t)0);
995out:
996	fh_drop_write(&cstate->current_fh);
997	return status;
998}
999
1000static __be32
1001nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1002	    union nfsd4_op_u *u)
1003{
1004	struct nfsd4_write *write = &u->write;
1005	stateid_t *stateid = &write->wr_stateid;
1006	struct nfsd_file *nf = NULL;
1007	__be32 status = nfs_ok;
1008	unsigned long cnt;
1009	int nvecs;
1010
1011	if (write->wr_offset > (u64)OFFSET_MAX ||
1012	    write->wr_offset + write->wr_buflen > (u64)OFFSET_MAX)
1013		return nfserr_fbig;
1014
1015	cnt = write->wr_buflen;
1016	trace_nfsd_write_start(rqstp, &cstate->current_fh,
1017			       write->wr_offset, cnt);
1018	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1019						stateid, WR_STATE, &nf, NULL);
1020	if (status) {
1021		dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1022		return status;
1023	}
1024
1025	write->wr_how_written = write->wr_stable_how;
1026
1027	nvecs = svc_fill_write_vector(rqstp, write->wr_pagelist,
1028				      &write->wr_head, write->wr_buflen);
1029	WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1030
1031	status = nfsd_vfs_write(rqstp, &cstate->current_fh, nf,
1032				write->wr_offset, rqstp->rq_vec, nvecs, &cnt,
1033				write->wr_how_written,
1034				(__be32 *)write->wr_verifier.data);
1035	nfsd_file_put(nf);
1036
1037	write->wr_bytes_written = cnt;
1038	trace_nfsd_write_done(rqstp, &cstate->current_fh,
1039			      write->wr_offset, cnt);
1040	return status;
1041}
1042
1043static __be32
1044nfsd4_verify_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1045		  stateid_t *src_stateid, struct nfsd_file **src,
1046		  stateid_t *dst_stateid, struct nfsd_file **dst)
1047{
1048	__be32 status;
1049
1050	if (!cstate->save_fh.fh_dentry)
1051		return nfserr_nofilehandle;
1052
1053	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->save_fh,
1054					    src_stateid, RD_STATE, src, NULL);
1055	if (status) {
1056		dprintk("NFSD: %s: couldn't process src stateid!\n", __func__);
1057		goto out;
1058	}
1059
1060	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1061					    dst_stateid, WR_STATE, dst, NULL);
1062	if (status) {
1063		dprintk("NFSD: %s: couldn't process dst stateid!\n", __func__);
1064		goto out_put_src;
1065	}
1066
1067	/* fix up for NFS-specific error code */
1068	if (!S_ISREG(file_inode((*src)->nf_file)->i_mode) ||
1069	    !S_ISREG(file_inode((*dst)->nf_file)->i_mode)) {
1070		status = nfserr_wrong_type;
1071		goto out_put_dst;
1072	}
1073
1074out:
1075	return status;
1076out_put_dst:
1077	nfsd_file_put(*dst);
1078	*dst = NULL;
1079out_put_src:
1080	nfsd_file_put(*src);
1081	*src = NULL;
1082	goto out;
1083}
1084
1085static __be32
1086nfsd4_clone(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1087		union nfsd4_op_u *u)
1088{
1089	struct nfsd4_clone *clone = &u->clone;
1090	struct nfsd_file *src, *dst;
1091	__be32 status;
1092
1093	status = nfsd4_verify_copy(rqstp, cstate, &clone->cl_src_stateid, &src,
1094				   &clone->cl_dst_stateid, &dst);
1095	if (status)
1096		goto out;
1097
1098	status = nfsd4_clone_file_range(src, clone->cl_src_pos,
1099			dst, clone->cl_dst_pos, clone->cl_count,
1100			EX_ISSYNC(cstate->current_fh.fh_export));
1101
1102	nfsd_file_put(dst);
1103	nfsd_file_put(src);
1104out:
1105	return status;
1106}
1107
1108void nfs4_put_copy(struct nfsd4_copy *copy)
1109{
1110	if (!refcount_dec_and_test(&copy->refcount))
1111		return;
1112	kfree(copy);
1113}
1114
1115static bool
1116check_and_set_stop_copy(struct nfsd4_copy *copy)
1117{
1118	bool value;
1119
1120	spin_lock(&copy->cp_clp->async_lock);
1121	value = copy->stopped;
1122	if (!copy->stopped)
1123		copy->stopped = true;
1124	spin_unlock(&copy->cp_clp->async_lock);
1125	return value;
1126}
1127
1128static void nfsd4_stop_copy(struct nfsd4_copy *copy)
1129{
1130	/* only 1 thread should stop the copy */
1131	if (!check_and_set_stop_copy(copy))
1132		kthread_stop(copy->copy_task);
1133	nfs4_put_copy(copy);
1134}
1135
1136static struct nfsd4_copy *nfsd4_get_copy(struct nfs4_client *clp)
1137{
1138	struct nfsd4_copy *copy = NULL;
1139
1140	spin_lock(&clp->async_lock);
1141	if (!list_empty(&clp->async_copies)) {
1142		copy = list_first_entry(&clp->async_copies, struct nfsd4_copy,
1143					copies);
1144		refcount_inc(&copy->refcount);
1145	}
1146	spin_unlock(&clp->async_lock);
1147	return copy;
1148}
1149
1150void nfsd4_shutdown_copy(struct nfs4_client *clp)
1151{
1152	struct nfsd4_copy *copy;
1153
1154	while ((copy = nfsd4_get_copy(clp)) != NULL)
1155		nfsd4_stop_copy(copy);
1156}
1157#ifdef CONFIG_NFSD_V4_2_INTER_SSC
1158
1159extern struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1160				   struct nfs_fh *src_fh,
1161				   nfs4_stateid *stateid);
1162extern void nfs42_ssc_close(struct file *filep);
1163
1164extern void nfs_sb_deactive(struct super_block *sb);
1165
1166#define NFSD42_INTERSSC_MOUNTOPS "vers=4.2,addr=%s,sec=sys"
1167
1168/*
1169 * Support one copy source server for now.
1170 */
1171static __be32
1172nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp,
1173		       struct vfsmount **mount)
1174{
1175	struct file_system_type *type;
1176	struct vfsmount *ss_mnt;
1177	struct nfs42_netaddr *naddr;
1178	struct sockaddr_storage tmp_addr;
1179	size_t tmp_addrlen, match_netid_len = 3;
1180	char *startsep = "", *endsep = "", *match_netid = "tcp";
1181	char *ipaddr, *dev_name, *raw_data;
1182	int len, raw_len;
1183	__be32 status = nfserr_inval;
1184
1185	naddr = &nss->u.nl4_addr;
1186	tmp_addrlen = rpc_uaddr2sockaddr(SVC_NET(rqstp), naddr->addr,
1187					 naddr->addr_len,
1188					 (struct sockaddr *)&tmp_addr,
1189					 sizeof(tmp_addr));
1190	if (tmp_addrlen == 0)
1191		goto out_err;
1192
1193	if (tmp_addr.ss_family == AF_INET6) {
1194		startsep = "[";
1195		endsep = "]";
1196		match_netid = "tcp6";
1197		match_netid_len = 4;
1198	}
1199
1200	if (naddr->netid_len != match_netid_len ||
1201		strncmp(naddr->netid, match_netid, naddr->netid_len))
1202		goto out_err;
1203
1204	/* Construct the raw data for the vfs_kern_mount call */
1205	len = RPC_MAX_ADDRBUFLEN + 1;
1206	ipaddr = kzalloc(len, GFP_KERNEL);
1207	if (!ipaddr)
1208		goto out_err;
1209
1210	rpc_ntop((struct sockaddr *)&tmp_addr, ipaddr, len);
1211
1212	/* 2 for ipv6 endsep and startsep. 3 for ":/" and trailing '/0'*/
1213
1214	raw_len = strlen(NFSD42_INTERSSC_MOUNTOPS) + strlen(ipaddr);
1215	raw_data = kzalloc(raw_len, GFP_KERNEL);
1216	if (!raw_data)
1217		goto out_free_ipaddr;
1218
1219	snprintf(raw_data, raw_len, NFSD42_INTERSSC_MOUNTOPS, ipaddr);
1220
1221	status = nfserr_nodev;
1222	type = get_fs_type("nfs");
1223	if (!type)
1224		goto out_free_rawdata;
1225
1226	/* Set the server:<export> for the vfs_kern_mount call */
1227	dev_name = kzalloc(len + 5, GFP_KERNEL);
1228	if (!dev_name)
1229		goto out_free_rawdata;
1230	snprintf(dev_name, len + 5, "%s%s%s:/", startsep, ipaddr, endsep);
1231
1232	/* Use an 'internal' mount: SB_KERNMOUNT -> MNT_INTERNAL */
1233	ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data);
1234	module_put(type->owner);
1235	if (IS_ERR(ss_mnt))
1236		goto out_free_devname;
1237
1238	status = 0;
1239	*mount = ss_mnt;
1240
1241out_free_devname:
1242	kfree(dev_name);
1243out_free_rawdata:
1244	kfree(raw_data);
1245out_free_ipaddr:
1246	kfree(ipaddr);
1247out_err:
1248	return status;
1249}
1250
1251/*
1252 * Verify COPY destination stateid.
1253 *
1254 * Connect to the source server with NFSv4.1.
1255 * Create the source struct file for nfsd_copy_range.
1256 * Called with COPY cstate:
1257 *    SAVED_FH: source filehandle
1258 *    CURRENT_FH: destination filehandle
1259 */
1260static __be32
1261nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1262		      struct nfsd4_compound_state *cstate,
1263		      struct nfsd4_copy *copy, struct vfsmount **mount)
1264{
1265	struct svc_fh *s_fh = NULL;
1266	stateid_t *s_stid = &copy->cp_src_stateid;
1267	__be32 status = nfserr_inval;
1268
1269	/* Verify the destination stateid and set dst struct file*/
1270	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1271					    &copy->cp_dst_stateid,
1272					    WR_STATE, &copy->nf_dst, NULL);
1273	if (status)
1274		goto out;
1275
1276	status = nfsd4_interssc_connect(&copy->cp_src, rqstp, mount);
1277	if (status)
1278		goto out;
1279
1280	s_fh = &cstate->save_fh;
1281
1282	copy->c_fh.size = s_fh->fh_handle.fh_size;
1283	memcpy(copy->c_fh.data, &s_fh->fh_handle.fh_base, copy->c_fh.size);
1284	copy->stateid.seqid = cpu_to_be32(s_stid->si_generation);
1285	memcpy(copy->stateid.other, (void *)&s_stid->si_opaque,
1286	       sizeof(stateid_opaque_t));
1287
1288	status = 0;
1289out:
1290	return status;
1291}
1292
1293static void
1294nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1295			struct nfsd_file *dst)
1296{
1297	nfs42_ssc_close(src->nf_file);
1298	fput(src->nf_file);
1299	nfsd_file_put(dst);
1300	mntput(ss_mnt);
1301}
1302
1303#else /* CONFIG_NFSD_V4_2_INTER_SSC */
1304
1305static __be32
1306nfsd4_setup_inter_ssc(struct svc_rqst *rqstp,
1307		      struct nfsd4_compound_state *cstate,
1308		      struct nfsd4_copy *copy,
1309		      struct vfsmount **mount)
1310{
1311	*mount = NULL;
1312	return nfserr_inval;
1313}
1314
1315static void
1316nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src,
1317			struct nfsd_file *dst)
1318{
1319}
1320
1321static struct file *nfs42_ssc_open(struct vfsmount *ss_mnt,
1322				   struct nfs_fh *src_fh,
1323				   nfs4_stateid *stateid)
1324{
1325	return NULL;
1326}
1327#endif /* CONFIG_NFSD_V4_2_INTER_SSC */
1328
1329static __be32
1330nfsd4_setup_intra_ssc(struct svc_rqst *rqstp,
1331		      struct nfsd4_compound_state *cstate,
1332		      struct nfsd4_copy *copy)
1333{
1334	return nfsd4_verify_copy(rqstp, cstate, &copy->cp_src_stateid,
1335				 &copy->nf_src, &copy->cp_dst_stateid,
1336				 &copy->nf_dst);
1337}
1338
1339static void
1340nfsd4_cleanup_intra_ssc(struct nfsd_file *src, struct nfsd_file *dst)
1341{
1342	nfsd_file_put(src);
1343	nfsd_file_put(dst);
1344}
1345
1346static void nfsd4_cb_offload_release(struct nfsd4_callback *cb)
1347{
1348	struct nfsd4_copy *copy = container_of(cb, struct nfsd4_copy, cp_cb);
1349
1350	nfs4_put_copy(copy);
1351}
1352
1353static int nfsd4_cb_offload_done(struct nfsd4_callback *cb,
1354				 struct rpc_task *task)
1355{
1356	return 1;
1357}
1358
1359static const struct nfsd4_callback_ops nfsd4_cb_offload_ops = {
1360	.release = nfsd4_cb_offload_release,
1361	.done = nfsd4_cb_offload_done
1362};
1363
1364static void nfsd4_init_copy_res(struct nfsd4_copy *copy, bool sync)
1365{
1366	copy->cp_res.wr_stable_how = NFS_UNSTABLE;
1367	copy->cp_synchronous = sync;
1368	gen_boot_verifier(&copy->cp_res.wr_verifier, copy->cp_clp->net);
1369}
1370
1371static ssize_t _nfsd_copy_file_range(struct nfsd4_copy *copy)
1372{
1373	struct file *dst = copy->nf_dst->nf_file;
1374	struct file *src = copy->nf_src->nf_file;
1375	ssize_t bytes_copied = 0;
1376	size_t bytes_total = copy->cp_count;
1377	u64 src_pos = copy->cp_src_pos;
1378	u64 dst_pos = copy->cp_dst_pos;
1379
1380	do {
1381		if (kthread_should_stop())
1382			break;
1383		bytes_copied = nfsd_copy_file_range(src, src_pos, dst, dst_pos,
1384						    bytes_total);
1385		if (bytes_copied <= 0)
1386			break;
1387		bytes_total -= bytes_copied;
1388		copy->cp_res.wr_bytes_written += bytes_copied;
1389		src_pos += bytes_copied;
1390		dst_pos += bytes_copied;
1391	} while (bytes_total > 0 && !copy->cp_synchronous);
1392	return bytes_copied;
1393}
1394
1395static __be32 nfsd4_do_copy(struct nfsd4_copy *copy, bool sync)
1396{
1397	__be32 status;
1398	ssize_t bytes;
1399
1400	bytes = _nfsd_copy_file_range(copy);
1401	/* for async copy, we ignore the error, client can always retry
1402	 * to get the error
1403	 */
1404	if (bytes < 0 && !copy->cp_res.wr_bytes_written)
1405		status = nfserrno(bytes);
1406	else {
1407		nfsd4_init_copy_res(copy, sync);
1408		status = nfs_ok;
1409	}
1410
1411	if (!copy->cp_intra) /* Inter server SSC */
1412		nfsd4_cleanup_inter_ssc(copy->ss_mnt, copy->nf_src,
1413					copy->nf_dst);
1414	else
1415		nfsd4_cleanup_intra_ssc(copy->nf_src, copy->nf_dst);
1416
1417	return status;
1418}
1419
1420static void dup_copy_fields(struct nfsd4_copy *src, struct nfsd4_copy *dst)
1421{
1422	dst->cp_src_pos = src->cp_src_pos;
1423	dst->cp_dst_pos = src->cp_dst_pos;
1424	dst->cp_count = src->cp_count;
1425	dst->cp_synchronous = src->cp_synchronous;
1426	memcpy(&dst->cp_res, &src->cp_res, sizeof(src->cp_res));
1427	memcpy(&dst->fh, &src->fh, sizeof(src->fh));
1428	dst->cp_clp = src->cp_clp;
1429	dst->nf_dst = nfsd_file_get(src->nf_dst);
1430	dst->cp_intra = src->cp_intra;
1431	if (src->cp_intra) /* for inter, file_src doesn't exist yet */
1432		dst->nf_src = nfsd_file_get(src->nf_src);
1433
1434	memcpy(&dst->cp_stateid, &src->cp_stateid, sizeof(src->cp_stateid));
1435	memcpy(&dst->cp_src, &src->cp_src, sizeof(struct nl4_server));
1436	memcpy(&dst->stateid, &src->stateid, sizeof(src->stateid));
1437	memcpy(&dst->c_fh, &src->c_fh, sizeof(src->c_fh));
1438	dst->ss_mnt = src->ss_mnt;
1439}
1440
1441static void cleanup_async_copy(struct nfsd4_copy *copy)
1442{
1443	nfs4_free_copy_state(copy);
1444	nfsd_file_put(copy->nf_dst);
1445	if (copy->cp_intra)
1446		nfsd_file_put(copy->nf_src);
1447	spin_lock(&copy->cp_clp->async_lock);
1448	list_del(&copy->copies);
1449	spin_unlock(&copy->cp_clp->async_lock);
1450	nfs4_put_copy(copy);
1451}
1452
1453static int nfsd4_do_async_copy(void *data)
1454{
1455	struct nfsd4_copy *copy = (struct nfsd4_copy *)data;
1456	struct nfsd4_copy *cb_copy;
1457
1458	if (!copy->cp_intra) { /* Inter server SSC */
1459		copy->nf_src = kzalloc(sizeof(struct nfsd_file), GFP_KERNEL);
1460		if (!copy->nf_src) {
1461			copy->nfserr = nfserr_serverfault;
1462			/* ss_mnt will be unmounted by the laundromat */
1463			goto do_callback;
1464		}
1465		copy->nf_src->nf_file = nfs42_ssc_open(copy->ss_mnt, &copy->c_fh,
1466					      &copy->stateid);
1467		if (IS_ERR(copy->nf_src->nf_file)) {
1468			copy->nfserr = nfserr_offload_denied;
1469			/* ss_mnt will be unmounted by the laundromat */
1470			goto do_callback;
1471		}
1472	}
1473
1474	copy->nfserr = nfsd4_do_copy(copy, 0);
1475do_callback:
1476	cb_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1477	if (!cb_copy)
1478		goto out;
1479	refcount_set(&cb_copy->refcount, 1);
1480	memcpy(&cb_copy->cp_res, &copy->cp_res, sizeof(copy->cp_res));
1481	cb_copy->cp_clp = copy->cp_clp;
1482	cb_copy->nfserr = copy->nfserr;
1483	memcpy(&cb_copy->fh, &copy->fh, sizeof(copy->fh));
1484	nfsd4_init_cb(&cb_copy->cp_cb, cb_copy->cp_clp,
1485			&nfsd4_cb_offload_ops, NFSPROC4_CLNT_CB_OFFLOAD);
1486	nfsd4_run_cb(&cb_copy->cp_cb);
1487out:
1488	if (!copy->cp_intra)
1489		kfree(copy->nf_src);
1490	cleanup_async_copy(copy);
1491	return 0;
1492}
1493
1494static __be32
1495nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1496		union nfsd4_op_u *u)
1497{
1498	struct nfsd4_copy *copy = &u->copy;
1499	__be32 status;
1500	struct nfsd4_copy *async_copy = NULL;
1501
1502	if (!copy->cp_intra) { /* Inter server SSC */
1503		if (!inter_copy_offload_enable || copy->cp_synchronous) {
1504			status = nfserr_notsupp;
1505			goto out;
1506		}
1507		status = nfsd4_setup_inter_ssc(rqstp, cstate, copy,
1508				&copy->ss_mnt);
1509		if (status)
1510			return nfserr_offload_denied;
1511	} else {
1512		status = nfsd4_setup_intra_ssc(rqstp, cstate, copy);
1513		if (status)
1514			return status;
1515	}
1516
1517	copy->cp_clp = cstate->clp;
1518	memcpy(&copy->fh, &cstate->current_fh.fh_handle,
1519		sizeof(struct knfsd_fh));
1520	if (!copy->cp_synchronous) {
1521		struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1522
1523		status = nfserrno(-ENOMEM);
1524		async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
1525		if (!async_copy)
1526			goto out_err;
1527		if (!nfs4_init_copy_state(nn, copy))
1528			goto out_err;
1529		refcount_set(&async_copy->refcount, 1);
1530		memcpy(&copy->cp_res.cb_stateid, &copy->cp_stateid.stid,
1531			sizeof(copy->cp_res.cb_stateid));
1532		dup_copy_fields(copy, async_copy);
1533		async_copy->copy_task = kthread_create(nfsd4_do_async_copy,
1534				async_copy, "%s", "copy thread");
1535		if (IS_ERR(async_copy->copy_task))
1536			goto out_err;
1537		spin_lock(&async_copy->cp_clp->async_lock);
1538		list_add(&async_copy->copies,
1539				&async_copy->cp_clp->async_copies);
1540		spin_unlock(&async_copy->cp_clp->async_lock);
1541		wake_up_process(async_copy->copy_task);
1542		status = nfs_ok;
1543	} else {
1544		status = nfsd4_do_copy(copy, 1);
1545	}
1546out:
1547	return status;
1548out_err:
1549	if (async_copy)
1550		cleanup_async_copy(async_copy);
1551	status = nfserrno(-ENOMEM);
1552	/*
1553	 * source's vfsmount of inter-copy will be unmounted
1554	 * by the laundromat
1555	 */
1556	goto out;
1557}
1558
1559struct nfsd4_copy *
1560find_async_copy(struct nfs4_client *clp, stateid_t *stateid)
1561{
1562	struct nfsd4_copy *copy;
1563
1564	spin_lock(&clp->async_lock);
1565	list_for_each_entry(copy, &clp->async_copies, copies) {
1566		if (memcmp(&copy->cp_stateid.stid, stateid, NFS4_STATEID_SIZE))
1567			continue;
1568		refcount_inc(&copy->refcount);
1569		spin_unlock(&clp->async_lock);
1570		return copy;
1571	}
1572	spin_unlock(&clp->async_lock);
1573	return NULL;
1574}
1575
1576static __be32
1577nfsd4_offload_cancel(struct svc_rqst *rqstp,
1578		     struct nfsd4_compound_state *cstate,
1579		     union nfsd4_op_u *u)
1580{
1581	struct nfsd4_offload_status *os = &u->offload_status;
1582	struct nfsd4_copy *copy;
1583	struct nfs4_client *clp = cstate->clp;
1584
1585	copy = find_async_copy(clp, &os->stateid);
1586	if (!copy) {
1587		struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1588
1589		return manage_cpntf_state(nn, &os->stateid, clp, NULL);
1590	} else
1591		nfsd4_stop_copy(copy);
1592
1593	return nfs_ok;
1594}
1595
1596static __be32
1597nfsd4_copy_notify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1598		  union nfsd4_op_u *u)
1599{
1600	struct nfsd4_copy_notify *cn = &u->copy_notify;
1601	__be32 status;
1602	struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1603	struct nfs4_stid *stid;
1604	struct nfs4_cpntf_state *cps;
1605	struct nfs4_client *clp = cstate->clp;
1606
1607	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1608					&cn->cpn_src_stateid, RD_STATE, NULL,
1609					&stid);
1610	if (status)
1611		return status;
1612
1613	cn->cpn_sec = nn->nfsd4_lease;
1614	cn->cpn_nsec = 0;
1615
1616	status = nfserrno(-ENOMEM);
1617	cps = nfs4_alloc_init_cpntf_state(nn, stid);
1618	if (!cps)
1619		goto out;
1620	memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.stid, sizeof(stateid_t));
1621	memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t));
1622	memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t));
1623
1624	/* For now, only return one server address in cpn_src, the
1625	 * address used by the client to connect to this server.
1626	 */
1627	cn->cpn_src.nl4_type = NL4_NETADDR;
1628	status = nfsd4_set_netaddr((struct sockaddr *)&rqstp->rq_daddr,
1629				 &cn->cpn_src.u.nl4_addr);
1630	WARN_ON_ONCE(status);
1631	if (status) {
1632		nfs4_put_cpntf_state(nn, cps);
1633		goto out;
1634	}
1635out:
1636	nfs4_put_stid(stid);
1637	return status;
1638}
1639
1640static __be32
1641nfsd4_fallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1642		struct nfsd4_fallocate *fallocate, int flags)
1643{
1644	__be32 status;
1645	struct nfsd_file *nf;
1646
1647	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1648					    &fallocate->falloc_stateid,
1649					    WR_STATE, &nf, NULL);
1650	if (status != nfs_ok) {
1651		dprintk("NFSD: nfsd4_fallocate: couldn't process stateid!\n");
1652		return status;
1653	}
1654
1655	status = nfsd4_vfs_fallocate(rqstp, &cstate->current_fh, nf->nf_file,
1656				     fallocate->falloc_offset,
1657				     fallocate->falloc_length,
1658				     flags);
1659	nfsd_file_put(nf);
1660	return status;
1661}
1662static __be32
1663nfsd4_offload_status(struct svc_rqst *rqstp,
1664		     struct nfsd4_compound_state *cstate,
1665		     union nfsd4_op_u *u)
1666{
1667	struct nfsd4_offload_status *os = &u->offload_status;
1668	__be32 status = 0;
1669	struct nfsd4_copy *copy;
1670	struct nfs4_client *clp = cstate->clp;
1671
1672	copy = find_async_copy(clp, &os->stateid);
1673	if (copy) {
1674		os->count = copy->cp_res.wr_bytes_written;
1675		nfs4_put_copy(copy);
1676	} else
1677		status = nfserr_bad_stateid;
1678
1679	return status;
1680}
1681
1682static __be32
1683nfsd4_allocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1684	       union nfsd4_op_u *u)
1685{
1686	return nfsd4_fallocate(rqstp, cstate, &u->allocate, 0);
1687}
1688
1689static __be32
1690nfsd4_deallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1691		 union nfsd4_op_u *u)
1692{
1693	return nfsd4_fallocate(rqstp, cstate, &u->deallocate,
1694			       FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE);
1695}
1696
1697static __be32
1698nfsd4_seek(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1699	   union nfsd4_op_u *u)
1700{
1701	struct nfsd4_seek *seek = &u->seek;
1702	int whence;
1703	__be32 status;
1704	struct nfsd_file *nf;
1705
1706	status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh,
1707					    &seek->seek_stateid,
1708					    RD_STATE, &nf, NULL);
1709	if (status) {
1710		dprintk("NFSD: nfsd4_seek: couldn't process stateid!\n");
1711		return status;
1712	}
1713
1714	switch (seek->seek_whence) {
1715	case NFS4_CONTENT_DATA:
1716		whence = SEEK_DATA;
1717		break;
1718	case NFS4_CONTENT_HOLE:
1719		whence = SEEK_HOLE;
1720		break;
1721	default:
1722		status = nfserr_union_notsupp;
1723		goto out;
1724	}
1725
1726	/*
1727	 * Note:  This call does change file->f_pos, but nothing in NFSD
1728	 *        should ever file->f_pos.
1729	 */
1730	seek->seek_pos = vfs_llseek(nf->nf_file, seek->seek_offset, whence);
1731	if (seek->seek_pos < 0)
1732		status = nfserrno(seek->seek_pos);
1733	else if (seek->seek_pos >= i_size_read(file_inode(nf->nf_file)))
1734		seek->seek_eof = true;
1735
1736out:
1737	nfsd_file_put(nf);
1738	return status;
1739}
1740
1741/* This routine never returns NFS_OK!  If there are no other errors, it
1742 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1743 * attributes matched.  VERIFY is implemented by mapping NFSERR_SAME
1744 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1745 */
1746static __be32
1747_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1748	     struct nfsd4_verify *verify)
1749{
1750	__be32 *buf, *p;
1751	int count;
1752	__be32 status;
1753
1754	status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
1755	if (status)
1756		return status;
1757
1758	status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1759	if (status)
1760		return status;
1761
1762	if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1763	    || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1764		return nfserr_inval;
1765	if (verify->ve_attrlen & 3)
1766		return nfserr_inval;
1767
1768	/* count in words:
1769	 *   bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1770	 */
1771	count = 4 + (verify->ve_attrlen >> 2);
1772	buf = kmalloc(count << 2, GFP_KERNEL);
1773	if (!buf)
1774		return nfserr_jukebox;
1775
1776	p = buf;
1777	status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh,
1778				    cstate->current_fh.fh_export,
1779				    cstate->current_fh.fh_dentry,
1780				    verify->ve_bmval,
1781				    rqstp, 0);
1782	/*
1783	 * If nfsd4_encode_fattr() ran out of space, assume that's because
1784	 * the attributes are longer (hence different) than those given:
1785	 */
1786	if (status == nfserr_resource)
1787		status = nfserr_not_same;
1788	if (status)
1789		goto out_kfree;
1790
1791	/* skip bitmap */
1792	p = buf + 1 + ntohl(buf[0]);
1793	status = nfserr_not_same;
1794	if (ntohl(*p++) != verify->ve_attrlen)
1795		goto out_kfree;
1796	if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1797		status = nfserr_same;
1798
1799out_kfree:
1800	kfree(buf);
1801	return status;
1802}
1803
1804static __be32
1805nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1806	      union nfsd4_op_u *u)
1807{
1808	__be32 status;
1809
1810	status = _nfsd4_verify(rqstp, cstate, &u->verify);
1811	return status == nfserr_not_same ? nfs_ok : status;
1812}
1813
1814static __be32
1815nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1816	     union nfsd4_op_u *u)
1817{
1818	__be32 status;
1819
1820	status = _nfsd4_verify(rqstp, cstate, &u->nverify);
1821	return status == nfserr_same ? nfs_ok : status;
1822}
1823
1824#ifdef CONFIG_NFSD_PNFS
1825static const struct nfsd4_layout_ops *
1826nfsd4_layout_verify(struct svc_export *exp, unsigned int layout_type)
1827{
1828	if (!exp->ex_layout_types) {
1829		dprintk("%s: export does not support pNFS\n", __func__);
1830		return NULL;
1831	}
1832
1833	if (layout_type >= LAYOUT_TYPE_MAX ||
1834	    !(exp->ex_layout_types & (1 << layout_type))) {
1835		dprintk("%s: layout type %d not supported\n",
1836			__func__, layout_type);
1837		return NULL;
1838	}
1839
1840	return nfsd4_layout_ops[layout_type];
1841}
1842
1843static __be32
1844nfsd4_getdeviceinfo(struct svc_rqst *rqstp,
1845		struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
1846{
1847	struct nfsd4_getdeviceinfo *gdp = &u->getdeviceinfo;
1848	const struct nfsd4_layout_ops *ops;
1849	struct nfsd4_deviceid_map *map;
1850	struct svc_export *exp;
1851	__be32 nfserr;
1852
1853	dprintk("%s: layout_type %u dev_id [0x%llx:0x%x] maxcnt %u\n",
1854	       __func__,
1855	       gdp->gd_layout_type,
1856	       gdp->gd_devid.fsid_idx, gdp->gd_devid.generation,
1857	       gdp->gd_maxcount);
1858
1859	map = nfsd4_find_devid_map(gdp->gd_devid.fsid_idx);
1860	if (!map) {
1861		dprintk("%s: couldn't find device ID to export mapping!\n",
1862			__func__);
1863		return nfserr_noent;
1864	}
1865
1866	exp = rqst_exp_find(rqstp, map->fsid_type, map->fsid);
1867	if (IS_ERR(exp)) {
1868		dprintk("%s: could not find device id\n", __func__);
1869		return nfserr_noent;
1870	}
1871
1872	nfserr = nfserr_layoutunavailable;
1873	ops = nfsd4_layout_verify(exp, gdp->gd_layout_type);
1874	if (!ops)
1875		goto out;
1876
1877	nfserr = nfs_ok;
1878	if (gdp->gd_maxcount != 0) {
1879		nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb,
1880				rqstp, cstate->session->se_client, gdp);
1881	}
1882
1883	gdp->gd_notify_types &= ops->notify_types;
1884out:
1885	exp_put(exp);
1886	return nfserr;
1887}
1888
1889static void
1890nfsd4_getdeviceinfo_release(union nfsd4_op_u *u)
1891{
1892	kfree(u->getdeviceinfo.gd_device);
1893}
1894
1895static __be32
1896nfsd4_layoutget(struct svc_rqst *rqstp,
1897		struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
1898{
1899	struct nfsd4_layoutget *lgp = &u->layoutget;
1900	struct svc_fh *current_fh = &cstate->current_fh;
1901	const struct nfsd4_layout_ops *ops;
1902	struct nfs4_layout_stateid *ls;
1903	__be32 nfserr;
1904	int accmode = NFSD_MAY_READ_IF_EXEC;
1905
1906	switch (lgp->lg_seg.iomode) {
1907	case IOMODE_READ:
1908		accmode |= NFSD_MAY_READ;
1909		break;
1910	case IOMODE_RW:
1911		accmode |= NFSD_MAY_READ | NFSD_MAY_WRITE;
1912		break;
1913	default:
1914		dprintk("%s: invalid iomode %d\n",
1915			__func__, lgp->lg_seg.iomode);
1916		nfserr = nfserr_badiomode;
1917		goto out;
1918	}
1919
1920	nfserr = fh_verify(rqstp, current_fh, 0, accmode);
1921	if (nfserr)
1922		goto out;
1923
1924	nfserr = nfserr_layoutunavailable;
1925	ops = nfsd4_layout_verify(current_fh->fh_export, lgp->lg_layout_type);
1926	if (!ops)
1927		goto out;
1928
1929	/*
1930	 * Verify minlength and range as per RFC5661:
1931	 *  o  If loga_length is less than loga_minlength,
1932	 *     the metadata server MUST return NFS4ERR_INVAL.
1933	 *  o  If the sum of loga_offset and loga_minlength exceeds
1934	 *     NFS4_UINT64_MAX, and loga_minlength is not
1935	 *     NFS4_UINT64_MAX, the error NFS4ERR_INVAL MUST result.
1936	 *  o  If the sum of loga_offset and loga_length exceeds
1937	 *     NFS4_UINT64_MAX, and loga_length is not NFS4_UINT64_MAX,
1938	 *     the error NFS4ERR_INVAL MUST result.
1939	 */
1940	nfserr = nfserr_inval;
1941	if (lgp->lg_seg.length < lgp->lg_minlength ||
1942	    (lgp->lg_minlength != NFS4_MAX_UINT64 &&
1943	     lgp->lg_minlength > NFS4_MAX_UINT64 - lgp->lg_seg.offset) ||
1944	    (lgp->lg_seg.length != NFS4_MAX_UINT64 &&
1945	     lgp->lg_seg.length > NFS4_MAX_UINT64 - lgp->lg_seg.offset))
1946		goto out;
1947	if (lgp->lg_seg.length == 0)
1948		goto out;
1949
1950	nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lgp->lg_sid,
1951						true, lgp->lg_layout_type, &ls);
1952	if (nfserr) {
1953		trace_nfsd_layout_get_lookup_fail(&lgp->lg_sid);
1954		goto out;
1955	}
1956
1957	nfserr = nfserr_recallconflict;
1958	if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls))
1959		goto out_put_stid;
1960
1961	nfserr = ops->proc_layoutget(d_inode(current_fh->fh_dentry),
1962				     current_fh, lgp);
1963	if (nfserr)
1964		goto out_put_stid;
1965
1966	nfserr = nfsd4_insert_layout(lgp, ls);
1967
1968out_put_stid:
1969	mutex_unlock(&ls->ls_mutex);
1970	nfs4_put_stid(&ls->ls_stid);
1971out:
1972	return nfserr;
1973}
1974
1975static void
1976nfsd4_layoutget_release(union nfsd4_op_u *u)
1977{
1978	kfree(u->layoutget.lg_content);
1979}
1980
1981static __be32
1982nfsd4_layoutcommit(struct svc_rqst *rqstp,
1983		struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
1984{
1985	struct nfsd4_layoutcommit *lcp = &u->layoutcommit;
1986	const struct nfsd4_layout_seg *seg = &lcp->lc_seg;
1987	struct svc_fh *current_fh = &cstate->current_fh;
1988	const struct nfsd4_layout_ops *ops;
1989	loff_t new_size = lcp->lc_last_wr + 1;
1990	struct inode *inode;
1991	struct nfs4_layout_stateid *ls;
1992	__be32 nfserr;
1993
1994	nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE);
1995	if (nfserr)
1996		goto out;
1997
1998	nfserr = nfserr_layoutunavailable;
1999	ops = nfsd4_layout_verify(current_fh->fh_export, lcp->lc_layout_type);
2000	if (!ops)
2001		goto out;
2002	inode = d_inode(current_fh->fh_dentry);
2003
2004	nfserr = nfserr_inval;
2005	if (new_size <= seg->offset) {
2006		dprintk("pnfsd: last write before layout segment\n");
2007		goto out;
2008	}
2009	if (new_size > seg->offset + seg->length) {
2010		dprintk("pnfsd: last write beyond layout segment\n");
2011		goto out;
2012	}
2013	if (!lcp->lc_newoffset && new_size > i_size_read(inode)) {
2014		dprintk("pnfsd: layoutcommit beyond EOF\n");
2015		goto out;
2016	}
2017
2018	nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lcp->lc_sid,
2019						false, lcp->lc_layout_type,
2020						&ls);
2021	if (nfserr) {
2022		trace_nfsd_layout_commit_lookup_fail(&lcp->lc_sid);
2023		/* fixup error code as per RFC5661 */
2024		if (nfserr == nfserr_bad_stateid)
2025			nfserr = nfserr_badlayout;
2026		goto out;
2027	}
2028
2029	/* LAYOUTCOMMIT does not require any serialization */
2030	mutex_unlock(&ls->ls_mutex);
2031
2032	if (new_size > i_size_read(inode)) {
2033		lcp->lc_size_chg = 1;
2034		lcp->lc_newsize = new_size;
2035	} else {
2036		lcp->lc_size_chg = 0;
2037	}
2038
2039	nfserr = ops->proc_layoutcommit(inode, lcp);
2040	nfs4_put_stid(&ls->ls_stid);
2041out:
2042	return nfserr;
2043}
2044
2045static __be32
2046nfsd4_layoutreturn(struct svc_rqst *rqstp,
2047		struct nfsd4_compound_state *cstate, union nfsd4_op_u *u)
2048{
2049	struct nfsd4_layoutreturn *lrp = &u->layoutreturn;
2050	struct svc_fh *current_fh = &cstate->current_fh;
2051	__be32 nfserr;
2052
2053	nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_NOP);
2054	if (nfserr)
2055		goto out;
2056
2057	nfserr = nfserr_layoutunavailable;
2058	if (!nfsd4_layout_verify(current_fh->fh_export, lrp->lr_layout_type))
2059		goto out;
2060
2061	switch (lrp->lr_seg.iomode) {
2062	case IOMODE_READ:
2063	case IOMODE_RW:
2064	case IOMODE_ANY:
2065		break;
2066	default:
2067		dprintk("%s: invalid iomode %d\n", __func__,
2068			lrp->lr_seg.iomode);
2069		nfserr = nfserr_inval;
2070		goto out;
2071	}
2072
2073	switch (lrp->lr_return_type) {
2074	case RETURN_FILE:
2075		nfserr = nfsd4_return_file_layouts(rqstp, cstate, lrp);
2076		break;
2077	case RETURN_FSID:
2078	case RETURN_ALL:
2079		nfserr = nfsd4_return_client_layouts(rqstp, cstate, lrp);
2080		break;
2081	default:
2082		dprintk("%s: invalid return_type %d\n", __func__,
2083			lrp->lr_return_type);
2084		nfserr = nfserr_inval;
2085		break;
2086	}
2087out:
2088	return nfserr;
2089}
2090#endif /* CONFIG_NFSD_PNFS */
2091
2092static __be32
2093nfsd4_getxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2094	       union nfsd4_op_u *u)
2095{
2096	struct nfsd4_getxattr *getxattr = &u->getxattr;
2097
2098	return nfsd_getxattr(rqstp, &cstate->current_fh,
2099			     getxattr->getxa_name, &getxattr->getxa_buf,
2100			     &getxattr->getxa_len);
2101}
2102
2103static __be32
2104nfsd4_setxattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2105	   union nfsd4_op_u *u)
2106{
2107	struct nfsd4_setxattr *setxattr = &u->setxattr;
2108	__be32 ret;
2109
2110	if (opens_in_grace(SVC_NET(rqstp)))
2111		return nfserr_grace;
2112
2113	ret = nfsd_setxattr(rqstp, &cstate->current_fh, setxattr->setxa_name,
2114			    setxattr->setxa_buf, setxattr->setxa_len,
2115			    setxattr->setxa_flags);
2116
2117	if (!ret)
2118		set_change_info(&setxattr->setxa_cinfo, &cstate->current_fh);
2119
2120	return ret;
2121}
2122
2123static __be32
2124nfsd4_listxattrs(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2125	   union nfsd4_op_u *u)
2126{
2127	/*
2128	 * Get the entire list, then copy out only the user attributes
2129	 * in the encode function.
2130	 */
2131	return nfsd_listxattr(rqstp, &cstate->current_fh,
2132			     &u->listxattrs.lsxa_buf, &u->listxattrs.lsxa_len);
2133}
2134
2135static __be32
2136nfsd4_removexattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2137	   union nfsd4_op_u *u)
2138{
2139	struct nfsd4_removexattr *removexattr = &u->removexattr;
2140	__be32 ret;
2141
2142	if (opens_in_grace(SVC_NET(rqstp)))
2143		return nfserr_grace;
2144
2145	ret = nfsd_removexattr(rqstp, &cstate->current_fh,
2146	    removexattr->rmxa_name);
2147
2148	if (!ret)
2149		set_change_info(&removexattr->rmxa_cinfo, &cstate->current_fh);
2150
2151	return ret;
2152}
2153
2154/*
2155 * NULL call.
2156 */
2157static __be32
2158nfsd4_proc_null(struct svc_rqst *rqstp)
2159{
2160	return rpc_success;
2161}
2162
2163static inline void nfsd4_increment_op_stats(u32 opnum)
2164{
2165	if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
2166		nfsdstats.nfs4_opcount[opnum]++;
2167}
2168
2169static const struct nfsd4_operation nfsd4_ops[];
2170
2171static const char *nfsd4_op_name(unsigned opnum);
2172
2173/*
2174 * Enforce NFSv4.1 COMPOUND ordering rules:
2175 *
2176 * Also note, enforced elsewhere:
2177 *	- SEQUENCE other than as first op results in
2178 *	  NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
2179 *	- BIND_CONN_TO_SESSION must be the only op in its compound.
2180 *	  (Enforced in nfsd4_bind_conn_to_session().)
2181 *	- DESTROY_SESSION must be the final operation in a compound, if
2182 *	  sessionid's in SEQUENCE and DESTROY_SESSION are the same.
2183 *	  (Enforced in nfsd4_destroy_session().)
2184 */
2185static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
2186{
2187	struct nfsd4_op *first_op = &args->ops[0];
2188
2189	/* These ordering requirements don't apply to NFSv4.0: */
2190	if (args->minorversion == 0)
2191		return nfs_ok;
2192	/* This is weird, but OK, not our problem: */
2193	if (args->opcnt == 0)
2194		return nfs_ok;
2195	if (first_op->status == nfserr_op_illegal)
2196		return nfs_ok;
2197	if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
2198		return nfserr_op_not_in_session;
2199	if (first_op->opnum == OP_SEQUENCE)
2200		return nfs_ok;
2201	/*
2202	 * So first_op is something allowed outside a session, like
2203	 * EXCHANGE_ID; but then it has to be the only op in the
2204	 * compound:
2205	 */
2206	if (args->opcnt != 1)
2207		return nfserr_not_only_op;
2208	return nfs_ok;
2209}
2210
2211const struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
2212{
2213	return &nfsd4_ops[op->opnum];
2214}
2215
2216bool nfsd4_cache_this_op(struct nfsd4_op *op)
2217{
2218	if (op->opnum == OP_ILLEGAL)
2219		return false;
2220	return OPDESC(op)->op_flags & OP_CACHEME;
2221}
2222
2223static bool need_wrongsec_check(struct svc_rqst *rqstp)
2224{
2225	struct nfsd4_compoundres *resp = rqstp->rq_resp;
2226	struct nfsd4_compoundargs *argp = rqstp->rq_argp;
2227	struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
2228	struct nfsd4_op *next = &argp->ops[resp->opcnt];
2229	const struct nfsd4_operation *thisd = OPDESC(this);
2230	const struct nfsd4_operation *nextd;
2231
2232	/*
2233	 * Most ops check wronsec on our own; only the putfh-like ops
2234	 * have special rules.
2235	 */
2236	if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
2237		return false;
2238	/*
2239	 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
2240	 * put-filehandle operation if we're not going to use the
2241	 * result:
2242	 */
2243	if (argp->opcnt == resp->opcnt)
2244		return false;
2245	if (next->opnum == OP_ILLEGAL)
2246		return false;
2247	nextd = OPDESC(next);
2248	/*
2249	 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
2250	 * errors themselves as necessary; others should check for them
2251	 * now:
2252	 */
2253	return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
2254}
2255
2256static void svcxdr_init_encode(struct svc_rqst *rqstp,
2257			       struct nfsd4_compoundres *resp)
2258{
2259	struct xdr_stream *xdr = &resp->xdr;
2260	struct xdr_buf *buf = &rqstp->rq_res;
2261	struct kvec *head = buf->head;
2262
2263	xdr->buf = buf;
2264	xdr->iov = head;
2265	xdr->p   = head->iov_base + head->iov_len;
2266	xdr->end = head->iov_base + PAGE_SIZE - rqstp->rq_auth_slack;
2267	/* Tail and page_len should be zero at this point: */
2268	buf->len = buf->head[0].iov_len;
2269	xdr->scratch.iov_len = 0;
2270	xdr->page_ptr = buf->pages - 1;
2271	buf->buflen = PAGE_SIZE * (1 + rqstp->rq_page_end - buf->pages)
2272		- rqstp->rq_auth_slack;
2273}
2274
2275#ifdef CONFIG_NFSD_V4_2_INTER_SSC
2276static void
2277check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2278{
2279	struct nfsd4_op	*op, *current_op = NULL, *saved_op = NULL;
2280	struct nfsd4_copy *copy;
2281	struct nfsd4_putfh *putfh;
2282	int i;
2283
2284	/* traverse all operation and if it's a COPY compound, mark the
2285	 * source filehandle to skip verification
2286	 */
2287	for (i = 0; i < args->opcnt; i++) {
2288		op = &args->ops[i];
2289		if (op->opnum == OP_PUTFH)
2290			current_op = op;
2291		else if (op->opnum == OP_SAVEFH)
2292			saved_op = current_op;
2293		else if (op->opnum == OP_RESTOREFH)
2294			current_op = saved_op;
2295		else if (op->opnum == OP_COPY) {
2296			copy = (struct nfsd4_copy *)&op->u;
2297			if (!saved_op) {
2298				op->status = nfserr_nofilehandle;
2299				return;
2300			}
2301			putfh = (struct nfsd4_putfh *)&saved_op->u;
2302			if (!copy->cp_intra)
2303				putfh->no_verify = true;
2304		}
2305	}
2306}
2307#else
2308static void
2309check_if_stalefh_allowed(struct nfsd4_compoundargs *args)
2310{
2311}
2312#endif
2313
2314/*
2315 * COMPOUND call.
2316 */
2317static __be32
2318nfsd4_proc_compound(struct svc_rqst *rqstp)
2319{
2320	struct nfsd4_compoundargs *args = rqstp->rq_argp;
2321	struct nfsd4_compoundres *resp = rqstp->rq_resp;
2322	struct nfsd4_op	*op;
2323	struct nfsd4_compound_state *cstate = &resp->cstate;
2324	struct svc_fh *current_fh = &cstate->current_fh;
2325	struct svc_fh *save_fh = &cstate->save_fh;
2326	struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2327	__be32		status;
2328
2329	svcxdr_init_encode(rqstp, resp);
2330	resp->tagp = resp->xdr.p;
2331	/* reserve space for: taglen, tag, and opcnt */
2332	xdr_reserve_space(&resp->xdr, 8 + args->taglen);
2333	resp->taglen = args->taglen;
2334	resp->tag = args->tag;
2335	resp->rqstp = rqstp;
2336	cstate->minorversion = args->minorversion;
2337	fh_init(current_fh, NFS4_FHSIZE);
2338	fh_init(save_fh, NFS4_FHSIZE);
2339	/*
2340	 * Don't use the deferral mechanism for NFSv4; compounds make it
2341	 * too hard to avoid non-idempotency problems.
2342	 */
2343	clear_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
2344
2345	/*
2346	 * According to RFC3010, this takes precedence over all other errors.
2347	 */
2348	status = nfserr_minor_vers_mismatch;
2349	if (nfsd_minorversion(nn, args->minorversion, NFSD_TEST) <= 0)
2350		goto out;
2351	status = nfserr_resource;
2352	if (args->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
2353		goto out;
2354
2355	status = nfs41_check_op_ordering(args);
2356	if (status) {
2357		op = &args->ops[0];
2358		op->status = status;
2359		resp->opcnt = 1;
2360		goto encode_op;
2361	}
2362	check_if_stalefh_allowed(args);
2363
2364	rqstp->rq_lease_breaker = (void **)&cstate->clp;
2365
2366	trace_nfsd_compound(rqstp, args->opcnt);
2367	while (!status && resp->opcnt < args->opcnt) {
2368		op = &args->ops[resp->opcnt++];
2369
2370		/*
2371		 * The XDR decode routines may have pre-set op->status;
2372		 * for example, if there is a miscellaneous XDR error
2373		 * it will be set to nfserr_bad_xdr.
2374		 */
2375		if (op->status) {
2376			if (op->opnum == OP_OPEN)
2377				op->status = nfsd4_open_omfg(rqstp, cstate, op);
2378			goto encode_op;
2379		}
2380		if (!current_fh->fh_dentry &&
2381				!HAS_FH_FLAG(current_fh, NFSD4_FH_FOREIGN)) {
2382			if (!(op->opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
2383				op->status = nfserr_nofilehandle;
2384				goto encode_op;
2385			}
2386		} else if (current_fh->fh_export &&
2387			   current_fh->fh_export->ex_fslocs.migrated &&
2388			  !(op->opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
2389			op->status = nfserr_moved;
2390			goto encode_op;
2391		}
2392
2393		fh_clear_wcc(current_fh);
2394
2395		/* If op is non-idempotent */
2396		if (op->opdesc->op_flags & OP_MODIFIES_SOMETHING) {
2397			/*
2398			 * Don't execute this op if we couldn't encode a
2399			 * succesful reply:
2400			 */
2401			u32 plen = op->opdesc->op_rsize_bop(rqstp, op);
2402			/*
2403			 * Plus if there's another operation, make sure
2404			 * we'll have space to at least encode an error:
2405			 */
2406			if (resp->opcnt < args->opcnt)
2407				plen += COMPOUND_ERR_SLACK_SPACE;
2408			op->status = nfsd4_check_resp_size(resp, plen);
2409		}
2410
2411		if (op->status)
2412			goto encode_op;
2413
2414		if (op->opdesc->op_get_currentstateid)
2415			op->opdesc->op_get_currentstateid(cstate, &op->u);
2416		op->status = op->opdesc->op_func(rqstp, cstate, &op->u);
2417
2418		/* Only from SEQUENCE */
2419		if (cstate->status == nfserr_replay_cache) {
2420			dprintk("%s NFS4.1 replay from cache\n", __func__);
2421			status = op->status;
2422			goto out;
2423		}
2424		if (!op->status) {
2425			if (op->opdesc->op_set_currentstateid)
2426				op->opdesc->op_set_currentstateid(cstate, &op->u);
2427
2428			if (op->opdesc->op_flags & OP_CLEAR_STATEID)
2429				clear_current_stateid(cstate);
2430
2431			if (current_fh->fh_export &&
2432					need_wrongsec_check(rqstp))
2433				op->status = check_nfsd_access(current_fh->fh_export, rqstp);
2434		}
2435encode_op:
2436		if (op->status == nfserr_replay_me) {
2437			op->replay = &cstate->replay_owner->so_replay;
2438			nfsd4_encode_replay(&resp->xdr, op);
2439			status = op->status = op->replay->rp_status;
2440		} else {
2441			nfsd4_encode_operation(resp, op);
2442			status = op->status;
2443		}
2444
2445		trace_nfsd_compound_status(args->opcnt, resp->opcnt, status,
2446					   nfsd4_op_name(op->opnum));
2447
2448		nfsd4_cstate_clear_replay(cstate);
2449		nfsd4_increment_op_stats(op->opnum);
2450	}
2451
2452	fh_put(current_fh);
2453	fh_put(save_fh);
2454	BUG_ON(cstate->replay_owner);
2455out:
2456	cstate->status = status;
2457	/* Reset deferral mechanism for RPC deferrals */
2458	set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags);
2459	return rpc_success;
2460}
2461
2462#define op_encode_hdr_size		(2)
2463#define op_encode_stateid_maxsz		(XDR_QUADLEN(NFS4_STATEID_SIZE))
2464#define op_encode_verifier_maxsz	(XDR_QUADLEN(NFS4_VERIFIER_SIZE))
2465#define op_encode_change_info_maxsz	(5)
2466#define nfs4_fattr_bitmap_maxsz		(4)
2467
2468/* We'll fall back on returning no lockowner if run out of space: */
2469#define op_encode_lockowner_maxsz	(0)
2470#define op_encode_lock_denied_maxsz	(8 + op_encode_lockowner_maxsz)
2471
2472#define nfs4_owner_maxsz		(1 + XDR_QUADLEN(IDMAP_NAMESZ))
2473
2474#define op_encode_ace_maxsz		(3 + nfs4_owner_maxsz)
2475#define op_encode_delegation_maxsz	(1 + op_encode_stateid_maxsz + 1 + \
2476					 op_encode_ace_maxsz)
2477
2478#define op_encode_channel_attrs_maxsz	(6 + 1 + 1)
2479
2480static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2481{
2482	return (op_encode_hdr_size) * sizeof(__be32);
2483}
2484
2485static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2486{
2487	return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
2488}
2489
2490static inline u32 nfsd4_access_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2491{
2492	/* ac_supported, ac_resp_access */
2493	return (op_encode_hdr_size + 2)* sizeof(__be32);
2494}
2495
2496static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2497{
2498	return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
2499}
2500
2501static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2502{
2503	return (op_encode_hdr_size + op_encode_change_info_maxsz
2504		+ nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2505}
2506
2507/*
2508 * Note since this is an idempotent operation we won't insist on failing
2509 * the op prematurely if the estimate is too large.  We may turn off splice
2510 * reads unnecessarily.
2511 */
2512static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp,
2513				      struct nfsd4_op *op)
2514{
2515	u32 *bmap = op->u.getattr.ga_bmval;
2516	u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
2517	u32 ret = 0;
2518
2519	if (bmap0 & FATTR4_WORD0_ACL)
2520		return svc_max_payload(rqstp);
2521	if (bmap0 & FATTR4_WORD0_FS_LOCATIONS)
2522		return svc_max_payload(rqstp);
2523
2524	if (bmap1 & FATTR4_WORD1_OWNER) {
2525		ret += IDMAP_NAMESZ + 4;
2526		bmap1 &= ~FATTR4_WORD1_OWNER;
2527	}
2528	if (bmap1 & FATTR4_WORD1_OWNER_GROUP) {
2529		ret += IDMAP_NAMESZ + 4;
2530		bmap1 &= ~FATTR4_WORD1_OWNER_GROUP;
2531	}
2532	if (bmap0 & FATTR4_WORD0_FILEHANDLE) {
2533		ret += NFS4_FHSIZE + 4;
2534		bmap0 &= ~FATTR4_WORD0_FILEHANDLE;
2535	}
2536	if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) {
2537		ret += NFS4_MAXLABELLEN + 12;
2538		bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2539	}
2540	/*
2541	 * Largest of remaining attributes are 16 bytes (e.g.,
2542	 * supported_attributes)
2543	 */
2544	ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2));
2545	/* bitmask, length */
2546	ret += 20;
2547	return ret;
2548}
2549
2550static inline u32 nfsd4_getfh_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2551{
2552	return (op_encode_hdr_size + 1) * sizeof(__be32) + NFS4_FHSIZE;
2553}
2554
2555static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2556{
2557	return (op_encode_hdr_size + op_encode_change_info_maxsz)
2558		* sizeof(__be32);
2559}
2560
2561static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2562{
2563	return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
2564		* sizeof(__be32);
2565}
2566
2567static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2568{
2569	return (op_encode_hdr_size + op_encode_stateid_maxsz
2570		+ op_encode_change_info_maxsz + 1
2571		+ nfs4_fattr_bitmap_maxsz
2572		+ op_encode_delegation_maxsz) * sizeof(__be32);
2573}
2574
2575static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2576{
2577	u32 maxcount = 0, rlen = 0;
2578
2579	maxcount = svc_max_payload(rqstp);
2580	rlen = min(op->u.read.rd_length, maxcount);
2581
2582	return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2583}
2584
2585static inline u32 nfsd4_read_plus_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2586{
2587	u32 maxcount = svc_max_payload(rqstp);
2588	u32 rlen = min(op->u.read.rd_length, maxcount);
2589	/*
2590	 * If we detect that the file changed during hole encoding, then we
2591	 * recover by encoding the remaining reply as data. This means we need
2592	 * to set aside enough room to encode two data segments.
2593	 */
2594	u32 seg_len = 2 * (1 + 2 + 1);
2595
2596	return (op_encode_hdr_size + 2 + seg_len + XDR_QUADLEN(rlen)) * sizeof(__be32);
2597}
2598
2599static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2600{
2601	u32 maxcount = 0, rlen = 0;
2602
2603	maxcount = svc_max_payload(rqstp);
2604	rlen = min(op->u.readdir.rd_maxcount, maxcount);
2605
2606	return (op_encode_hdr_size + op_encode_verifier_maxsz +
2607		XDR_QUADLEN(rlen)) * sizeof(__be32);
2608}
2609
2610static inline u32 nfsd4_readlink_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2611{
2612	return (op_encode_hdr_size + 1) * sizeof(__be32) + PAGE_SIZE;
2613}
2614
2615static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2616{
2617	return (op_encode_hdr_size + op_encode_change_info_maxsz)
2618		* sizeof(__be32);
2619}
2620
2621static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2622{
2623	return (op_encode_hdr_size + op_encode_change_info_maxsz
2624		+ op_encode_change_info_maxsz) * sizeof(__be32);
2625}
2626
2627static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp,
2628				       struct nfsd4_op *op)
2629{
2630	return (op_encode_hdr_size
2631		+ XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5) * sizeof(__be32);
2632}
2633
2634static inline u32 nfsd4_test_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2635{
2636	return (op_encode_hdr_size + 1 + op->u.test_stateid.ts_num_ids)
2637		* sizeof(__be32);
2638}
2639
2640static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2641{
2642	return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
2643}
2644
2645static inline u32 nfsd4_secinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2646{
2647	return (op_encode_hdr_size + RPC_AUTH_MAXFLAVOR *
2648		(4 + XDR_QUADLEN(GSS_OID_MAX_LEN))) * sizeof(__be32);
2649}
2650
2651static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2652{
2653	return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) *
2654								sizeof(__be32);
2655}
2656
2657static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2658{
2659	return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32);
2660}
2661
2662static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2663{
2664	return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
2665		1 + 1 + /* eir_flags, spr_how */\
2666		4 + /* spo_must_enforce & _allow with bitmap */\
2667		2 + /*eir_server_owner.so_minor_id */\
2668		/* eir_server_owner.so_major_id<> */\
2669		XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2670		/* eir_server_scope<> */\
2671		XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
2672		1 + /* eir_server_impl_id array length */\
2673		0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
2674}
2675
2676static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2677{
2678	return (op_encode_hdr_size + \
2679		XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
2680		2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
2681}
2682
2683static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2684{
2685	return (op_encode_hdr_size + \
2686		XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
2687		2 + /* csr_sequence, csr_flags */\
2688		op_encode_channel_attrs_maxsz + \
2689		op_encode_channel_attrs_maxsz) * sizeof(__be32);
2690}
2691
2692static inline u32 nfsd4_copy_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2693{
2694	return (op_encode_hdr_size +
2695		1 /* wr_callback */ +
2696		op_encode_stateid_maxsz /* wr_callback */ +
2697		2 /* wr_count */ +
2698		1 /* wr_committed */ +
2699		op_encode_verifier_maxsz +
2700		1 /* cr_consecutive */ +
2701		1 /* cr_synchronous */) * sizeof(__be32);
2702}
2703
2704static inline u32 nfsd4_offload_status_rsize(struct svc_rqst *rqstp,
2705					     struct nfsd4_op *op)
2706{
2707	return (op_encode_hdr_size +
2708		2 /* osr_count */ +
2709		1 /* osr_complete<1> optional 0 for now */) * sizeof(__be32);
2710}
2711
2712static inline u32 nfsd4_copy_notify_rsize(struct svc_rqst *rqstp,
2713					struct nfsd4_op *op)
2714{
2715	return (op_encode_hdr_size +
2716		3 /* cnr_lease_time */ +
2717		1 /* We support one cnr_source_server */ +
2718		1 /* cnr_stateid seq */ +
2719		op_encode_stateid_maxsz /* cnr_stateid */ +
2720		1 /* num cnr_source_server*/ +
2721		1 /* nl4_type */ +
2722		1 /* nl4 size */ +
2723		XDR_QUADLEN(NFS4_OPAQUE_LIMIT) /*nl4_loc + nl4_loc_sz */)
2724		* sizeof(__be32);
2725}
2726
2727#ifdef CONFIG_NFSD_PNFS
2728static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2729{
2730	u32 maxcount = 0, rlen = 0;
2731
2732	maxcount = svc_max_payload(rqstp);
2733	rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount);
2734
2735	return (op_encode_hdr_size +
2736		1 /* gd_layout_type*/ +
2737		XDR_QUADLEN(rlen) +
2738		2 /* gd_notify_types */) * sizeof(__be32);
2739}
2740
2741/*
2742 * At this stage we don't really know what layout driver will handle the request,
2743 * so we need to define an arbitrary upper bound here.
2744 */
2745#define MAX_LAYOUT_SIZE		128
2746static inline u32 nfsd4_layoutget_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2747{
2748	return (op_encode_hdr_size +
2749		1 /* logr_return_on_close */ +
2750		op_encode_stateid_maxsz +
2751		1 /* nr of layouts */ +
2752		MAX_LAYOUT_SIZE) * sizeof(__be32);
2753}
2754
2755static inline u32 nfsd4_layoutcommit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2756{
2757	return (op_encode_hdr_size +
2758		1 /* locr_newsize */ +
2759		2 /* ns_size */) * sizeof(__be32);
2760}
2761
2762static inline u32 nfsd4_layoutreturn_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2763{
2764	return (op_encode_hdr_size +
2765		1 /* lrs_stateid */ +
2766		op_encode_stateid_maxsz) * sizeof(__be32);
2767}
2768#endif /* CONFIG_NFSD_PNFS */
2769
2770
2771static inline u32 nfsd4_seek_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
2772{
2773	return (op_encode_hdr_size + 3) * sizeof(__be32);
2774}
2775
2776static inline u32 nfsd4_getxattr_rsize(struct svc_rqst *rqstp,
2777				       struct nfsd4_op *op)
2778{
2779	u32 maxcount, rlen;
2780
2781	maxcount = svc_max_payload(rqstp);
2782	rlen = min_t(u32, XATTR_SIZE_MAX, maxcount);
2783
2784	return (op_encode_hdr_size + 1 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2785}
2786
2787static inline u32 nfsd4_setxattr_rsize(struct svc_rqst *rqstp,
2788				       struct nfsd4_op *op)
2789{
2790	return (op_encode_hdr_size + op_encode_change_info_maxsz)
2791		* sizeof(__be32);
2792}
2793static inline u32 nfsd4_listxattrs_rsize(struct svc_rqst *rqstp,
2794					 struct nfsd4_op *op)
2795{
2796	u32 maxcount, rlen;
2797
2798	maxcount = svc_max_payload(rqstp);
2799	rlen = min(op->u.listxattrs.lsxa_maxcount, maxcount);
2800
2801	return (op_encode_hdr_size + 4 + XDR_QUADLEN(rlen)) * sizeof(__be32);
2802}
2803
2804static inline u32 nfsd4_removexattr_rsize(struct svc_rqst *rqstp,
2805					  struct nfsd4_op *op)
2806{
2807	return (op_encode_hdr_size + op_encode_change_info_maxsz)
2808		* sizeof(__be32);
2809}
2810
2811
2812static const struct nfsd4_operation nfsd4_ops[] = {
2813	[OP_ACCESS] = {
2814		.op_func = nfsd4_access,
2815		.op_name = "OP_ACCESS",
2816		.op_rsize_bop = nfsd4_access_rsize,
2817	},
2818	[OP_CLOSE] = {
2819		.op_func = nfsd4_close,
2820		.op_flags = OP_MODIFIES_SOMETHING,
2821		.op_name = "OP_CLOSE",
2822		.op_rsize_bop = nfsd4_status_stateid_rsize,
2823		.op_get_currentstateid = nfsd4_get_closestateid,
2824		.op_set_currentstateid = nfsd4_set_closestateid,
2825	},
2826	[OP_COMMIT] = {
2827		.op_func = nfsd4_commit,
2828		.op_flags = OP_MODIFIES_SOMETHING,
2829		.op_name = "OP_COMMIT",
2830		.op_rsize_bop = nfsd4_commit_rsize,
2831	},
2832	[OP_CREATE] = {
2833		.op_func = nfsd4_create,
2834		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
2835		.op_name = "OP_CREATE",
2836		.op_rsize_bop = nfsd4_create_rsize,
2837	},
2838	[OP_DELEGRETURN] = {
2839		.op_func = nfsd4_delegreturn,
2840		.op_flags = OP_MODIFIES_SOMETHING,
2841		.op_name = "OP_DELEGRETURN",
2842		.op_rsize_bop = nfsd4_only_status_rsize,
2843		.op_get_currentstateid = nfsd4_get_delegreturnstateid,
2844	},
2845	[OP_GETATTR] = {
2846		.op_func = nfsd4_getattr,
2847		.op_flags = ALLOWED_ON_ABSENT_FS,
2848		.op_rsize_bop = nfsd4_getattr_rsize,
2849		.op_name = "OP_GETATTR",
2850	},
2851	[OP_GETFH] = {
2852		.op_func = nfsd4_getfh,
2853		.op_name = "OP_GETFH",
2854		.op_rsize_bop = nfsd4_getfh_rsize,
2855	},
2856	[OP_LINK] = {
2857		.op_func = nfsd4_link,
2858		.op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
2859				| OP_CACHEME,
2860		.op_name = "OP_LINK",
2861		.op_rsize_bop = nfsd4_link_rsize,
2862	},
2863	[OP_LOCK] = {
2864		.op_func = nfsd4_lock,
2865		.op_flags = OP_MODIFIES_SOMETHING |
2866				OP_NONTRIVIAL_ERROR_ENCODE,
2867		.op_name = "OP_LOCK",
2868		.op_rsize_bop = nfsd4_lock_rsize,
2869		.op_set_currentstateid = nfsd4_set_lockstateid,
2870	},
2871	[OP_LOCKT] = {
2872		.op_func = nfsd4_lockt,
2873		.op_flags = OP_NONTRIVIAL_ERROR_ENCODE,
2874		.op_name = "OP_LOCKT",
2875		.op_rsize_bop = nfsd4_lock_rsize,
2876	},
2877	[OP_LOCKU] = {
2878		.op_func = nfsd4_locku,
2879		.op_flags = OP_MODIFIES_SOMETHING,
2880		.op_name = "OP_LOCKU",
2881		.op_rsize_bop = nfsd4_status_stateid_rsize,
2882		.op_get_currentstateid = nfsd4_get_lockustateid,
2883	},
2884	[OP_LOOKUP] = {
2885		.op_func = nfsd4_lookup,
2886		.op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
2887		.op_name = "OP_LOOKUP",
2888		.op_rsize_bop = nfsd4_only_status_rsize,
2889	},
2890	[OP_LOOKUPP] = {
2891		.op_func = nfsd4_lookupp,
2892		.op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
2893		.op_name = "OP_LOOKUPP",
2894		.op_rsize_bop = nfsd4_only_status_rsize,
2895	},
2896	[OP_NVERIFY] = {
2897		.op_func = nfsd4_nverify,
2898		.op_name = "OP_NVERIFY",
2899		.op_rsize_bop = nfsd4_only_status_rsize,
2900	},
2901	[OP_OPEN] = {
2902		.op_func = nfsd4_open,
2903		.op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
2904		.op_name = "OP_OPEN",
2905		.op_rsize_bop = nfsd4_open_rsize,
2906		.op_set_currentstateid = nfsd4_set_openstateid,
2907	},
2908	[OP_OPEN_CONFIRM] = {
2909		.op_func = nfsd4_open_confirm,
2910		.op_flags = OP_MODIFIES_SOMETHING,
2911		.op_name = "OP_OPEN_CONFIRM",
2912		.op_rsize_bop = nfsd4_status_stateid_rsize,
2913	},
2914	[OP_OPEN_DOWNGRADE] = {
2915		.op_func = nfsd4_open_downgrade,
2916		.op_flags = OP_MODIFIES_SOMETHING,
2917		.op_name = "OP_OPEN_DOWNGRADE",
2918		.op_rsize_bop = nfsd4_status_stateid_rsize,
2919		.op_get_currentstateid = nfsd4_get_opendowngradestateid,
2920		.op_set_currentstateid = nfsd4_set_opendowngradestateid,
2921	},
2922	[OP_PUTFH] = {
2923		.op_func = nfsd4_putfh,
2924		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2925				| OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
2926		.op_name = "OP_PUTFH",
2927		.op_rsize_bop = nfsd4_only_status_rsize,
2928	},
2929	[OP_PUTPUBFH] = {
2930		.op_func = nfsd4_putrootfh,
2931		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2932				| OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
2933		.op_name = "OP_PUTPUBFH",
2934		.op_rsize_bop = nfsd4_only_status_rsize,
2935	},
2936	[OP_PUTROOTFH] = {
2937		.op_func = nfsd4_putrootfh,
2938		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2939				| OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
2940		.op_name = "OP_PUTROOTFH",
2941		.op_rsize_bop = nfsd4_only_status_rsize,
2942	},
2943	[OP_READ] = {
2944		.op_func = nfsd4_read,
2945		.op_release = nfsd4_read_release,
2946		.op_name = "OP_READ",
2947		.op_rsize_bop = nfsd4_read_rsize,
2948		.op_get_currentstateid = nfsd4_get_readstateid,
2949	},
2950	[OP_READDIR] = {
2951		.op_func = nfsd4_readdir,
2952		.op_name = "OP_READDIR",
2953		.op_rsize_bop = nfsd4_readdir_rsize,
2954	},
2955	[OP_READLINK] = {
2956		.op_func = nfsd4_readlink,
2957		.op_name = "OP_READLINK",
2958		.op_rsize_bop = nfsd4_readlink_rsize,
2959	},
2960	[OP_REMOVE] = {
2961		.op_func = nfsd4_remove,
2962		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
2963		.op_name = "OP_REMOVE",
2964		.op_rsize_bop = nfsd4_remove_rsize,
2965	},
2966	[OP_RENAME] = {
2967		.op_func = nfsd4_rename,
2968		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
2969		.op_name = "OP_RENAME",
2970		.op_rsize_bop = nfsd4_rename_rsize,
2971	},
2972	[OP_RENEW] = {
2973		.op_func = nfsd4_renew,
2974		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2975				| OP_MODIFIES_SOMETHING,
2976		.op_name = "OP_RENEW",
2977		.op_rsize_bop = nfsd4_only_status_rsize,
2978
2979	},
2980	[OP_RESTOREFH] = {
2981		.op_func = nfsd4_restorefh,
2982		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
2983				| OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
2984		.op_name = "OP_RESTOREFH",
2985		.op_rsize_bop = nfsd4_only_status_rsize,
2986	},
2987	[OP_SAVEFH] = {
2988		.op_func = nfsd4_savefh,
2989		.op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
2990		.op_name = "OP_SAVEFH",
2991		.op_rsize_bop = nfsd4_only_status_rsize,
2992	},
2993	[OP_SECINFO] = {
2994		.op_func = nfsd4_secinfo,
2995		.op_release = nfsd4_secinfo_release,
2996		.op_flags = OP_HANDLES_WRONGSEC,
2997		.op_name = "OP_SECINFO",
2998		.op_rsize_bop = nfsd4_secinfo_rsize,
2999	},
3000	[OP_SETATTR] = {
3001		.op_func = nfsd4_setattr,
3002		.op_name = "OP_SETATTR",
3003		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME
3004				| OP_NONTRIVIAL_ERROR_ENCODE,
3005		.op_rsize_bop = nfsd4_setattr_rsize,
3006		.op_get_currentstateid = nfsd4_get_setattrstateid,
3007	},
3008	[OP_SETCLIENTID] = {
3009		.op_func = nfsd4_setclientid,
3010		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3011				| OP_MODIFIES_SOMETHING | OP_CACHEME
3012				| OP_NONTRIVIAL_ERROR_ENCODE,
3013		.op_name = "OP_SETCLIENTID",
3014		.op_rsize_bop = nfsd4_setclientid_rsize,
3015	},
3016	[OP_SETCLIENTID_CONFIRM] = {
3017		.op_func = nfsd4_setclientid_confirm,
3018		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3019				| OP_MODIFIES_SOMETHING | OP_CACHEME,
3020		.op_name = "OP_SETCLIENTID_CONFIRM",
3021		.op_rsize_bop = nfsd4_only_status_rsize,
3022	},
3023	[OP_VERIFY] = {
3024		.op_func = nfsd4_verify,
3025		.op_name = "OP_VERIFY",
3026		.op_rsize_bop = nfsd4_only_status_rsize,
3027	},
3028	[OP_WRITE] = {
3029		.op_func = nfsd4_write,
3030		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3031		.op_name = "OP_WRITE",
3032		.op_rsize_bop = nfsd4_write_rsize,
3033		.op_get_currentstateid = nfsd4_get_writestateid,
3034	},
3035	[OP_RELEASE_LOCKOWNER] = {
3036		.op_func = nfsd4_release_lockowner,
3037		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
3038				| OP_MODIFIES_SOMETHING,
3039		.op_name = "OP_RELEASE_LOCKOWNER",
3040		.op_rsize_bop = nfsd4_only_status_rsize,
3041	},
3042
3043	/* NFSv4.1 operations */
3044	[OP_EXCHANGE_ID] = {
3045		.op_func = nfsd4_exchange_id,
3046		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3047				| OP_MODIFIES_SOMETHING,
3048		.op_name = "OP_EXCHANGE_ID",
3049		.op_rsize_bop = nfsd4_exchange_id_rsize,
3050	},
3051	[OP_BACKCHANNEL_CTL] = {
3052		.op_func = nfsd4_backchannel_ctl,
3053		.op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
3054		.op_name = "OP_BACKCHANNEL_CTL",
3055		.op_rsize_bop = nfsd4_only_status_rsize,
3056	},
3057	[OP_BIND_CONN_TO_SESSION] = {
3058		.op_func = nfsd4_bind_conn_to_session,
3059		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3060				| OP_MODIFIES_SOMETHING,
3061		.op_name = "OP_BIND_CONN_TO_SESSION",
3062		.op_rsize_bop = nfsd4_bind_conn_to_session_rsize,
3063	},
3064	[OP_CREATE_SESSION] = {
3065		.op_func = nfsd4_create_session,
3066		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3067				| OP_MODIFIES_SOMETHING,
3068		.op_name = "OP_CREATE_SESSION",
3069		.op_rsize_bop = nfsd4_create_session_rsize,
3070	},
3071	[OP_DESTROY_SESSION] = {
3072		.op_func = nfsd4_destroy_session,
3073		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3074				| OP_MODIFIES_SOMETHING,
3075		.op_name = "OP_DESTROY_SESSION",
3076		.op_rsize_bop = nfsd4_only_status_rsize,
3077	},
3078	[OP_SEQUENCE] = {
3079		.op_func = nfsd4_sequence,
3080		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
3081		.op_name = "OP_SEQUENCE",
3082		.op_rsize_bop = nfsd4_sequence_rsize,
3083	},
3084	[OP_DESTROY_CLIENTID] = {
3085		.op_func = nfsd4_destroy_clientid,
3086		.op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
3087				| OP_MODIFIES_SOMETHING,
3088		.op_name = "OP_DESTROY_CLIENTID",
3089		.op_rsize_bop = nfsd4_only_status_rsize,
3090	},
3091	[OP_RECLAIM_COMPLETE] = {
3092		.op_func = nfsd4_reclaim_complete,
3093		.op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
3094		.op_name = "OP_RECLAIM_COMPLETE",
3095		.op_rsize_bop = nfsd4_only_status_rsize,
3096	},
3097	[OP_SECINFO_NO_NAME] = {
3098		.op_func = nfsd4_secinfo_no_name,
3099		.op_release = nfsd4_secinfo_no_name_release,
3100		.op_flags = OP_HANDLES_WRONGSEC,
3101		.op_name = "OP_SECINFO_NO_NAME",
3102		.op_rsize_bop = nfsd4_secinfo_rsize,
3103	},
3104	[OP_TEST_STATEID] = {
3105		.op_func = nfsd4_test_stateid,
3106		.op_flags = ALLOWED_WITHOUT_FH,
3107		.op_name = "OP_TEST_STATEID",
3108		.op_rsize_bop = nfsd4_test_stateid_rsize,
3109	},
3110	[OP_FREE_STATEID] = {
3111		.op_func = nfsd4_free_stateid,
3112		.op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
3113		.op_name = "OP_FREE_STATEID",
3114		.op_get_currentstateid = nfsd4_get_freestateid,
3115		.op_rsize_bop = nfsd4_only_status_rsize,
3116	},
3117#ifdef CONFIG_NFSD_PNFS
3118	[OP_GETDEVICEINFO] = {
3119		.op_func = nfsd4_getdeviceinfo,
3120		.op_release = nfsd4_getdeviceinfo_release,
3121		.op_flags = ALLOWED_WITHOUT_FH,
3122		.op_name = "OP_GETDEVICEINFO",
3123		.op_rsize_bop = nfsd4_getdeviceinfo_rsize,
3124	},
3125	[OP_LAYOUTGET] = {
3126		.op_func = nfsd4_layoutget,
3127		.op_release = nfsd4_layoutget_release,
3128		.op_flags = OP_MODIFIES_SOMETHING,
3129		.op_name = "OP_LAYOUTGET",
3130		.op_rsize_bop = nfsd4_layoutget_rsize,
3131	},
3132	[OP_LAYOUTCOMMIT] = {
3133		.op_func = nfsd4_layoutcommit,
3134		.op_flags = OP_MODIFIES_SOMETHING,
3135		.op_name = "OP_LAYOUTCOMMIT",
3136		.op_rsize_bop = nfsd4_layoutcommit_rsize,
3137	},
3138	[OP_LAYOUTRETURN] = {
3139		.op_func = nfsd4_layoutreturn,
3140		.op_flags = OP_MODIFIES_SOMETHING,
3141		.op_name = "OP_LAYOUTRETURN",
3142		.op_rsize_bop = nfsd4_layoutreturn_rsize,
3143	},
3144#endif /* CONFIG_NFSD_PNFS */
3145
3146	/* NFSv4.2 operations */
3147	[OP_ALLOCATE] = {
3148		.op_func = nfsd4_allocate,
3149		.op_flags = OP_MODIFIES_SOMETHING,
3150		.op_name = "OP_ALLOCATE",
3151		.op_rsize_bop = nfsd4_only_status_rsize,
3152	},
3153	[OP_DEALLOCATE] = {
3154		.op_func = nfsd4_deallocate,
3155		.op_flags = OP_MODIFIES_SOMETHING,
3156		.op_name = "OP_DEALLOCATE",
3157		.op_rsize_bop = nfsd4_only_status_rsize,
3158	},
3159	[OP_CLONE] = {
3160		.op_func = nfsd4_clone,
3161		.op_flags = OP_MODIFIES_SOMETHING,
3162		.op_name = "OP_CLONE",
3163		.op_rsize_bop = nfsd4_only_status_rsize,
3164	},
3165	[OP_COPY] = {
3166		.op_func = nfsd4_copy,
3167		.op_flags = OP_MODIFIES_SOMETHING,
3168		.op_name = "OP_COPY",
3169		.op_rsize_bop = nfsd4_copy_rsize,
3170	},
3171	[OP_READ_PLUS] = {
3172		.op_func = nfsd4_read,
3173		.op_release = nfsd4_read_release,
3174		.op_name = "OP_READ_PLUS",
3175		.op_rsize_bop = nfsd4_read_plus_rsize,
3176		.op_get_currentstateid = nfsd4_get_readstateid,
3177	},
3178	[OP_SEEK] = {
3179		.op_func = nfsd4_seek,
3180		.op_name = "OP_SEEK",
3181		.op_rsize_bop = nfsd4_seek_rsize,
3182	},
3183	[OP_OFFLOAD_STATUS] = {
3184		.op_func = nfsd4_offload_status,
3185		.op_name = "OP_OFFLOAD_STATUS",
3186		.op_rsize_bop = nfsd4_offload_status_rsize,
3187	},
3188	[OP_OFFLOAD_CANCEL] = {
3189		.op_func = nfsd4_offload_cancel,
3190		.op_flags = OP_MODIFIES_SOMETHING,
3191		.op_name = "OP_OFFLOAD_CANCEL",
3192		.op_rsize_bop = nfsd4_only_status_rsize,
3193	},
3194	[OP_COPY_NOTIFY] = {
3195		.op_func = nfsd4_copy_notify,
3196		.op_flags = OP_MODIFIES_SOMETHING,
3197		.op_name = "OP_COPY_NOTIFY",
3198		.op_rsize_bop = nfsd4_copy_notify_rsize,
3199	},
3200	[OP_GETXATTR] = {
3201		.op_func = nfsd4_getxattr,
3202		.op_name = "OP_GETXATTR",
3203		.op_rsize_bop = nfsd4_getxattr_rsize,
3204	},
3205	[OP_SETXATTR] = {
3206		.op_func = nfsd4_setxattr,
3207		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3208		.op_name = "OP_SETXATTR",
3209		.op_rsize_bop = nfsd4_setxattr_rsize,
3210	},
3211	[OP_LISTXATTRS] = {
3212		.op_func = nfsd4_listxattrs,
3213		.op_name = "OP_LISTXATTRS",
3214		.op_rsize_bop = nfsd4_listxattrs_rsize,
3215	},
3216	[OP_REMOVEXATTR] = {
3217		.op_func = nfsd4_removexattr,
3218		.op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
3219		.op_name = "OP_REMOVEXATTR",
3220		.op_rsize_bop = nfsd4_removexattr_rsize,
3221	},
3222};
3223
3224/**
3225 * nfsd4_spo_must_allow - Determine if the compound op contains an
3226 * operation that is allowed to be sent with machine credentials
3227 *
3228 * @rqstp: a pointer to the struct svc_rqst
3229 *
3230 * Checks to see if the compound contains a spo_must_allow op
3231 * and confirms that it was sent with the proper machine creds.
3232 */
3233
3234bool nfsd4_spo_must_allow(struct svc_rqst *rqstp)
3235{
3236	struct nfsd4_compoundres *resp = rqstp->rq_resp;
3237	struct nfsd4_compoundargs *argp = rqstp->rq_argp;
3238	struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
3239	struct nfsd4_compound_state *cstate = &resp->cstate;
3240	struct nfs4_op_map *allow = &cstate->clp->cl_spo_must_allow;
3241	u32 opiter;
3242
3243	if (!cstate->minorversion)
3244		return false;
3245
3246	if (cstate->spo_must_allowed)
3247		return true;
3248
3249	opiter = resp->opcnt;
3250	while (opiter < argp->opcnt) {
3251		this = &argp->ops[opiter++];
3252		if (test_bit(this->opnum, allow->u.longs) &&
3253			cstate->clp->cl_mach_cred &&
3254			nfsd4_mach_creds_match(cstate->clp, rqstp)) {
3255			cstate->spo_must_allowed = true;
3256			return true;
3257		}
3258	}
3259	cstate->spo_must_allowed = false;
3260	return false;
3261}
3262
3263int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op)
3264{
3265	if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
3266		return op_encode_hdr_size * sizeof(__be32);
3267
3268	BUG_ON(OPDESC(op)->op_rsize_bop == NULL);
3269	return OPDESC(op)->op_rsize_bop(rqstp, op);
3270}
3271
3272void warn_on_nonidempotent_op(struct nfsd4_op *op)
3273{
3274	if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) {
3275		pr_err("unable to encode reply to nonidempotent op %d (%s)\n",
3276			op->opnum, nfsd4_op_name(op->opnum));
3277		WARN_ON_ONCE(1);
3278	}
3279}
3280
3281static const char *nfsd4_op_name(unsigned opnum)
3282{
3283	if (opnum < ARRAY_SIZE(nfsd4_ops))
3284		return nfsd4_ops[opnum].op_name;
3285	return "unknown_operation";
3286}
3287
3288#define nfsd4_voidres			nfsd4_voidargs
3289struct nfsd4_voidargs { int dummy; };
3290
3291static const struct svc_procedure nfsd_procedures4[2] = {
3292	[NFSPROC4_NULL] = {
3293		.pc_func = nfsd4_proc_null,
3294		.pc_decode = nfs4svc_decode_voidarg,
3295		.pc_encode = nfs4svc_encode_voidres,
3296		.pc_argsize = sizeof(struct nfsd4_voidargs),
3297		.pc_ressize = sizeof(struct nfsd4_voidres),
3298		.pc_cachetype = RC_NOCACHE,
3299		.pc_xdrressize = 1,
3300	},
3301	[NFSPROC4_COMPOUND] = {
3302		.pc_func = nfsd4_proc_compound,
3303		.pc_decode = nfs4svc_decode_compoundargs,
3304		.pc_encode = nfs4svc_encode_compoundres,
3305		.pc_argsize = sizeof(struct nfsd4_compoundargs),
3306		.pc_ressize = sizeof(struct nfsd4_compoundres),
3307		.pc_release = nfsd4_release_compoundargs,
3308		.pc_cachetype = RC_NOCACHE,
3309		.pc_xdrressize = NFSD_BUFSIZE/4,
3310	},
3311};
3312
3313static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures4)];
3314const struct svc_version nfsd_version4 = {
3315	.vs_vers		= 4,
3316	.vs_nproc		= 2,
3317	.vs_proc		= nfsd_procedures4,
3318	.vs_count		= nfsd_count3,
3319	.vs_dispatch		= nfsd_dispatch,
3320	.vs_xdrsize		= NFS4_SVC_XDRSIZE,
3321	.vs_rpcb_optnl		= true,
3322	.vs_need_cong_ctrl	= true,
3323};
3324
3325/*
3326 * Local variables:
3327 *  c-basic-offset: 8
3328 * End:
3329 */
3330