nfsd: Always use lookup_clientid() in nfsd4_process_open1
[linux-2.6-block.git] / fs / nfsd / nfs4proc.c
CommitLineData
1da177e4 1/*
1da177e4
LT
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.
1da177e4 34 */
7e06b7f9 35#include <linux/file.h>
5a0e3ad6 36#include <linux/slab.h>
1da177e4 37
58e7b33a 38#include "idmap.h"
9a74af21
BH
39#include "cache.h"
40#include "xdr4.h"
0a3adade 41#include "vfs.h"
8b70484c 42#include "current_stateid.h"
3320fef1 43#include "netns.h"
4ac7249e 44#include "acl.h"
1da177e4 45
18032ca0
DQ
46#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
47#include <linux/security.h>
48
49static inline void
50nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
51{
52 struct inode *inode = resfh->fh_dentry->d_inode;
53 int status;
54
55 mutex_lock(&inode->i_mutex);
56 status = security_inode_setsecctx(resfh->fh_dentry,
57 label->data, label->len);
58 mutex_unlock(&inode->i_mutex);
59
60 if (status)
61 /*
62 * XXX: We should really fail the whole open, but we may
63 * already have created a new file, so it may be too
64 * late. For now this seems the least of evils:
65 */
66 bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
67
68 return;
69}
70#else
71static inline void
72nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
73{ }
74#endif
75
1da177e4
LT
76#define NFSDDBG_FACILITY NFSDDBG_PROC
77
3c8e0316
YZ
78static u32 nfsd_attrmask[] = {
79 NFSD_WRITEABLE_ATTRS_WORD0,
80 NFSD_WRITEABLE_ATTRS_WORD1,
81 NFSD_WRITEABLE_ATTRS_WORD2
82};
83
84static u32 nfsd41_ex_attrmask[] = {
85 NFSD_SUPPATTR_EXCLCREAT_WORD0,
86 NFSD_SUPPATTR_EXCLCREAT_WORD1,
87 NFSD_SUPPATTR_EXCLCREAT_WORD2
88};
89
90static __be32
91check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
92 u32 *bmval, u32 *writable)
93{
94 struct dentry *dentry = cstate->current_fh.fh_dentry;
3c8e0316
YZ
95
96 /*
97 * Check about attributes are supported by the NFSv4 server or not.
98 * According to spec, unsupported attributes return ERR_ATTRNOTSUPP.
99 */
100 if ((bmval[0] & ~nfsd_suppattrs0(cstate->minorversion)) ||
101 (bmval[1] & ~nfsd_suppattrs1(cstate->minorversion)) ||
102 (bmval[2] & ~nfsd_suppattrs2(cstate->minorversion)))
103 return nfserr_attrnotsupp;
104
105 /*
a06b1261 106 * Check FATTR4_WORD0_ACL can be supported
3c8e0316
YZ
107 * in current environment or not.
108 */
109 if (bmval[0] & FATTR4_WORD0_ACL) {
110 if (!IS_POSIXACL(dentry->d_inode))
111 return nfserr_attrnotsupp;
112 }
3c8e0316
YZ
113
114 /*
115 * According to spec, read-only attributes return ERR_INVAL.
116 */
117 if (writable) {
118 if ((bmval[0] & ~writable[0]) || (bmval[1] & ~writable[1]) ||
119 (bmval[2] & ~writable[2]))
120 return nfserr_inval;
121 }
122
123 return nfs_ok;
124}
125
126static __be32
127nfsd4_check_open_attributes(struct svc_rqst *rqstp,
128 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
129{
130 __be32 status = nfs_ok;
131
132 if (open->op_create == NFS4_OPEN_CREATE) {
133 if (open->op_createmode == NFS4_CREATE_UNCHECKED
134 || open->op_createmode == NFS4_CREATE_GUARDED)
135 status = check_attr_support(rqstp, cstate,
136 open->op_bmval, nfsd_attrmask);
137 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
138 status = check_attr_support(rqstp, cstate,
139 open->op_bmval, nfsd41_ex_attrmask);
140 }
141
142 return status;
143}
144
9208faf2
YZ
145static int
146is_create_with_attrs(struct nfsd4_open *open)
147{
148 return open->op_create == NFS4_OPEN_CREATE
149 && (open->op_createmode == NFS4_CREATE_UNCHECKED
150 || open->op_createmode == NFS4_CREATE_GUARDED
151 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
152}
153
154/*
155 * if error occurs when setting the acl, just clear the acl bit
156 * in the returned attr bitmap.
157 */
158static void
159do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
160 struct nfs4_acl *acl, u32 *bmval)
161{
162 __be32 status;
163
164 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
165 if (status)
166 /*
167 * We should probably fail the whole open at this point,
168 * but we've already created the file, so it's too late;
169 * So this seems the least of evils:
170 */
171 bmval[0] &= ~FATTR4_WORD0_ACL;
172}
173
1da177e4
LT
174static inline void
175fh_dup2(struct svc_fh *dst, struct svc_fh *src)
176{
177 fh_put(dst);
178 dget(src->fh_dentry);
179 if (src->fh_export)
bf18f163 180 exp_get(src->fh_export);
1da177e4
LT
181 *dst = *src;
182}
183
b37ad28b 184static __be32
dc730e17 185do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
1da177e4 186{
b37ad28b 187 __be32 status;
1da177e4
LT
188
189 if (open->op_truncate &&
190 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
191 return nfserr_inval;
192
a043226b
BF
193 accmode |= NFSD_MAY_READ_IF_EXEC;
194
1da177e4 195 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
8837abca 196 accmode |= NFSD_MAY_READ;
9801d8a3 197 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
8837abca 198 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
57ecb34f 199 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
8837abca 200 accmode |= NFSD_MAY_WRITE;
1da177e4
LT
201
202 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
203
204 return status;
205}
206
aadab6c6
BF
207static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
208{
209 umode_t mode = fh->fh_dentry->d_inode->i_mode;
210
211 if (S_ISREG(mode))
212 return nfs_ok;
213 if (S_ISDIR(mode))
214 return nfserr_isdir;
215 /*
216 * Using err_symlink as our catch-all case may look odd; but
217 * there's no other obvious error for this case in 4.0, and we
218 * happen to know that it will cause the linux v4 client to do
219 * the right thing on attempts to open something other than a
220 * regular file.
221 */
222 return nfserr_symlink;
223}
224
bbc9c36c
BF
225static void nfsd4_set_open_owner_reply_cache(struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh *resfh)
226{
227 if (nfsd4_has_session(cstate))
228 return;
229 fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
230 &resfh->fh_handle);
231}
232
b37ad28b 233static __be32
c0e6bee4 234do_open_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh **resfh)
1da177e4 235{
bbc9c36c 236 struct svc_fh *current_fh = &cstate->current_fh;
7007c90f 237 int accmode;
b37ad28b 238 __be32 status;
1da177e4 239
c0e6bee4
BF
240 *resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
241 if (!*resfh)
59deeb9e 242 return nfserr_jukebox;
c0e6bee4 243 fh_init(*resfh, NFS4_FHSIZE);
1da177e4
LT
244 open->op_truncate = 0;
245
246 if (open->op_create) {
79fb54ab
BH
247 /* FIXME: check session persistence and pnfs flags.
248 * The nfsv4.1 spec requires the following semantics:
249 *
250 * Persistent | pNFS | Server REQUIRED | Client Allowed
251 * Reply Cache | server | |
252 * -------------+--------+-----------------+--------------------
253 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
254 * | | | (SHOULD)
255 * | | and EXCLUSIVE4 | or EXCLUSIVE4
256 * | | | (SHOULD NOT)
257 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
258 * yes | no | GUARDED4 | GUARDED4
259 * yes | yes | GUARDED4 | GUARDED4
260 */
261
1da177e4
LT
262 /*
263 * Note: create modes (UNCHECKED,GUARDED...) are the same
ac6721a1 264 * in NFSv4 as in v3 except EXCLUSIVE4_1.
1da177e4 265 */
ac6721a1 266 status = do_nfsd_create(rqstp, current_fh, open->op_fname.data,
1da177e4 267 open->op_fname.len, &open->op_iattr,
c0e6bee4 268 *resfh, open->op_createmode,
749997e5 269 (u32 *)open->op_verf.data,
856121b2 270 &open->op_truncate, &open->op_created);
749997e5 271
18032ca0 272 if (!status && open->op_label.len)
c0e6bee4 273 nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval);
18032ca0 274
99f88726
BF
275 /*
276 * Following rfc 3530 14.2.16, use the returned bitmask
277 * to indicate which attributes we used to store the
278 * verifier:
749997e5
JL
279 */
280 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
99f88726 281 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
9dc4e6c4 282 FATTR4_WORD1_TIME_MODIFY);
4335723e
BF
283 } else
284 /*
285 * Note this may exit with the parent still locked.
286 * We will hold the lock until nfsd4_open's final
287 * lookup, to prevent renames or unlinks until we've had
288 * a chance to an acquire a delegation if appropriate.
289 */
1da177e4 290 status = nfsd_lookup(rqstp, current_fh,
c0e6bee4 291 open->op_fname.data, open->op_fname.len, *resfh);
9dc4e6c4
BF
292 if (status)
293 goto out;
c0e6bee4 294 status = nfsd_check_obj_isreg(*resfh);
af85852d
BF
295 if (status)
296 goto out;
1da177e4 297
9208faf2 298 if (is_create_with_attrs(open) && open->op_acl != NULL)
c0e6bee4 299 do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval);
9208faf2 300
c0e6bee4 301 nfsd4_set_open_owner_reply_cache(cstate, open, *resfh);
7007c90f 302 accmode = NFSD_MAY_NOP;
89f6c336
BF
303 if (open->op_created ||
304 open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
7007c90f 305 accmode |= NFSD_MAY_OWNER_OVERRIDE;
c0e6bee4 306 status = do_open_permission(rqstp, *resfh, open, accmode);
41fd1e42 307 set_change_info(&open->op_cinfo, current_fh);
af85852d 308out:
1da177e4
LT
309 return status;
310}
311
b37ad28b 312static __be32
bbc9c36c 313do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
1da177e4 314{
bbc9c36c 315 struct svc_fh *current_fh = &cstate->current_fh;
b37ad28b 316 __be32 status;
9f415eb2 317 int accmode = 0;
1da177e4 318
1da177e4
LT
319 /* We don't know the target directory, and therefore can not
320 * set the change info
321 */
322
323 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
324
bbc9c36c 325 nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
1da177e4
LT
326
327 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
328 (open->op_iattr.ia_size == 0);
9f415eb2
BF
329 /*
330 * In the delegation case, the client is telling us about an
331 * open that it *already* performed locally, some time ago. We
332 * should let it succeed now if possible.
333 *
334 * In the case of a CLAIM_FH open, on the other hand, the client
335 * may be counting on us to enforce permissions (the Linux 4.1
336 * client uses this for normal opens, for example).
337 */
338 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
339 accmode = NFSD_MAY_OWNER_OVERRIDE;
1da177e4 340
9f415eb2 341 status = do_open_permission(rqstp, current_fh, open, accmode);
1da177e4
LT
342
343 return status;
344}
345
60adfc50
AA
346static void
347copy_clientid(clientid_t *clid, struct nfsd4_session *session)
348{
349 struct nfsd4_sessionid *sid =
350 (struct nfsd4_sessionid *)session->se_sessionid.data;
351
352 clid->cl_boot = sid->clientid.cl_boot;
353 clid->cl_id = sid->clientid.cl_id;
354}
1da177e4 355
7191155b 356static __be32
ca364317 357nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 358 struct nfsd4_open *open)
1da177e4 359{
b37ad28b 360 __be32 status;
c0e6bee4 361 struct svc_fh *resfh = NULL;
6668958f 362 struct nfsd4_compoundres *resp;
3320fef1
SK
363 struct net *net = SVC_NET(rqstp);
364 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
6668958f 365
fe0750e5 366 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
1da177e4 367 (int)open->op_fname.len, open->op_fname.data,
fe0750e5 368 open->op_openowner);
1da177e4 369
1da177e4
LT
370 /* This check required by spec. */
371 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
372 return nfserr_inval;
373
856121b2 374 open->op_created = 0;
ab1350b2
MJ
375 /*
376 * RFC5661 18.51.3
377 * Before RECLAIM_COMPLETE done, server should deny new lock
378 */
379 if (nfsd4_has_session(cstate) &&
a52d726b
JL
380 !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
381 &cstate->session->se_client->cl_flags) &&
ab1350b2
MJ
382 open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
383 return nfserr_grace;
384
60adfc50
AA
385 if (nfsd4_has_session(cstate))
386 copy_clientid(&open->op_clientid, cstate->session);
387
1da177e4
LT
388 nfs4_lock_state();
389
390 /* check seqid for replay. set nfs4_owner */
6668958f 391 resp = rqstp->rq_resp;
3320fef1 392 status = nfsd4_process_open1(&resp->cstate, open, nn);
a90b061c 393 if (status == nfserr_replay_me) {
fe0750e5 394 struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
ca364317 395 fh_put(&cstate->current_fh);
a4773c08
BF
396 fh_copy_shallow(&cstate->current_fh.fh_handle,
397 &rp->rp_openfh);
8837abca 398 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
1da177e4
LT
399 if (status)
400 dprintk("nfsd4_open: replay failed"
401 " restoring previous filehandle\n");
402 else
a90b061c 403 status = nfserr_replay_me;
1da177e4
LT
404 }
405 if (status)
406 goto out;
9d313b17
BF
407 if (open->op_xdr_error) {
408 status = open->op_xdr_error;
409 goto out;
410 }
fb553c0f 411
3c8e0316
YZ
412 status = nfsd4_check_open_attributes(rqstp, cstate, open);
413 if (status)
414 goto out;
415
fb553c0f
BF
416 /* Openowner is now set, so sequence id will get bumped. Now we need
417 * these checks before we do any creates: */
cbd0d51a 418 status = nfserr_grace;
3320fef1 419 if (locks_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
cbd0d51a
BF
420 goto out;
421 status = nfserr_no_grace;
3320fef1 422 if (!locks_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
cbd0d51a 423 goto out;
fb553c0f 424
1da177e4 425 switch (open->op_claim_type) {
0dd3c192 426 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1da177e4 427 case NFS4_OPEN_CLAIM_NULL:
c0e6bee4 428 status = do_open_lookup(rqstp, cstate, open, &resfh);
1da177e4
LT
429 if (status)
430 goto out;
431 break;
432 case NFS4_OPEN_CLAIM_PREVIOUS:
3320fef1
SK
433 status = nfs4_check_open_reclaim(&open->op_clientid,
434 cstate->minorversion,
435 nn);
0cf99b91
MJ
436 if (status)
437 goto out;
ba5378b6 438 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
8b289b2c
BF
439 case NFS4_OPEN_CLAIM_FH:
440 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
bbc9c36c 441 status = do_open_fhandle(rqstp, cstate, open);
1da177e4
LT
442 if (status)
443 goto out;
c0e6bee4 444 resfh = &cstate->current_fh;
1da177e4 445 break;
8b289b2c 446 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1da177e4 447 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
2fdada03 448 dprintk("NFSD: unsupported OPEN claim type %d\n",
1da177e4
LT
449 open->op_claim_type);
450 status = nfserr_notsupp;
451 goto out;
452 default:
2fdada03 453 dprintk("NFSD: Invalid OPEN claim type %d\n",
1da177e4
LT
454 open->op_claim_type);
455 status = nfserr_inval;
456 goto out;
457 }
458 /*
459 * nfsd4_process_open2() does the actual opening of the file. If
460 * successful, it (1) truncates the file if open->op_truncate was
461 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
462 */
c0e6bee4 463 status = nfsd4_process_open2(rqstp, resfh, open);
856121b2 464 WARN_ON(status && open->op_created);
1da177e4 465out:
c0e6bee4
BF
466 if (resfh && resfh != &cstate->current_fh) {
467 fh_dup2(&cstate->current_fh, resfh);
468 fh_put(resfh);
469 kfree(resfh);
470 }
d29b20cd 471 nfsd4_cleanup_open_state(open, status);
3d74e6a5 472 if (open->op_openowner && !nfsd4_has_session(cstate))
fe0750e5 473 cstate->replay_owner = &open->op_openowner->oo_owner;
9411b1d4
BF
474 nfsd4_bump_seqid(cstate, status);
475 if (!cstate->replay_owner)
5ec094c1 476 nfs4_unlock_state();
1da177e4
LT
477 return status;
478}
479
9d313b17
BF
480/*
481 * OPEN is the only seqid-mutating operation whose decoding can fail
482 * with a seqid-mutating error (specifically, decoding of user names in
483 * the attributes). Therefore we have to do some processing to look up
484 * the stateowner so that we can bump the seqid.
485 */
486static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
487{
488 struct nfsd4_open *open = (struct nfsd4_open *)&op->u;
489
490 if (!seqid_mutating_err(ntohl(op->status)))
491 return op->status;
492 if (nfsd4_has_session(cstate))
493 return op->status;
494 open->op_xdr_error = op->status;
495 return nfsd4_open(rqstp, cstate, open);
496}
497
1da177e4
LT
498/*
499 * filehandle-manipulating ops.
500 */
7191155b 501static __be32
b591480b
BF
502nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
503 struct svc_fh **getfh)
1da177e4 504{
ca364317 505 if (!cstate->current_fh.fh_dentry)
1da177e4
LT
506 return nfserr_nofilehandle;
507
ca364317 508 *getfh = &cstate->current_fh;
1da177e4
LT
509 return nfs_ok;
510}
511
7191155b 512static __be32
ca364317
BF
513nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
514 struct nfsd4_putfh *putfh)
1da177e4 515{
ca364317
BF
516 fh_put(&cstate->current_fh);
517 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
518 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
519 putfh->pf_fhlen);
68d93184 520 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
1da177e4
LT
521}
522
7191155b 523static __be32
b591480b
BF
524nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
525 void *arg)
1da177e4 526{
b37ad28b 527 __be32 status;
1da177e4 528
ca364317 529 fh_put(&cstate->current_fh);
df547efb 530 status = exp_pseudoroot(rqstp, &cstate->current_fh);
1da177e4
LT
531 return status;
532}
533
7191155b 534static __be32
b591480b
BF
535nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
536 void *arg)
1da177e4 537{
ca364317 538 if (!cstate->save_fh.fh_dentry)
1da177e4
LT
539 return nfserr_restorefh;
540
ca364317 541 fh_dup2(&cstate->current_fh, &cstate->save_fh);
37c593c5
TM
542 if (HAS_STATE_ID(cstate, SAVED_STATE_ID_FLAG)) {
543 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
544 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
545 }
1da177e4
LT
546 return nfs_ok;
547}
548
7191155b 549static __be32
b591480b
BF
550nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
551 void *arg)
1da177e4 552{
ca364317 553 if (!cstate->current_fh.fh_dentry)
1da177e4
LT
554 return nfserr_nofilehandle;
555
ca364317 556 fh_dup2(&cstate->save_fh, &cstate->current_fh);
37c593c5
TM
557 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG)) {
558 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
559 SET_STATE_ID(cstate, SAVED_STATE_ID_FLAG);
560 }
1da177e4
LT
561 return nfs_ok;
562}
563
564/*
565 * misc nfsv4 ops
566 */
7191155b 567static __be32
ca364317
BF
568nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
569 struct nfsd4_access *access)
1da177e4
LT
570{
571 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
572 return nfserr_inval;
573
574 access->ac_resp_access = access->ac_req_access;
ca364317
BF
575 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
576 &access->ac_supported);
1da177e4
LT
577}
578
b9c0ef85 579static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
ab4684d1
CL
580{
581 __be32 verf[2];
b9c0ef85 582 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
ab4684d1 583
f419992c
JL
584 /*
585 * This is opaque to client, so no need to byte-swap. Use
586 * __force to keep sparse happy
587 */
588 verf[0] = (__force __be32)nn->nfssvc_boot.tv_sec;
589 verf[1] = (__force __be32)nn->nfssvc_boot.tv_usec;
ab4684d1
CL
590 memcpy(verifier->data, verf, sizeof(verifier->data));
591}
592
7191155b 593static __be32
ca364317
BF
594nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
595 struct nfsd4_commit *commit)
1da177e4 596{
b9c0ef85 597 gen_boot_verifier(&commit->co_verf, SVC_NET(rqstp));
75c096f7 598 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
ca364317 599 commit->co_count);
1da177e4
LT
600}
601
b37ad28b 602static __be32
ca364317
BF
603nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
604 struct nfsd4_create *create)
1da177e4
LT
605{
606 struct svc_fh resfh;
b37ad28b 607 __be32 status;
1da177e4
LT
608 dev_t rdev;
609
610 fh_init(&resfh, NFS4_FHSIZE);
611
8837abca
MS
612 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
613 NFSD_MAY_CREATE);
1da177e4
LT
614 if (status)
615 return status;
616
3c8e0316
YZ
617 status = check_attr_support(rqstp, cstate, create->cr_bmval,
618 nfsd_attrmask);
619 if (status)
620 return status;
621
1da177e4
LT
622 switch (create->cr_type) {
623 case NF4LNK:
ca364317
BF
624 status = nfsd_symlink(rqstp, &cstate->current_fh,
625 create->cr_name, create->cr_namelen,
1e444f5b 626 create->cr_data, &resfh);
1da177e4
LT
627 break;
628
629 case NF4BLK:
630 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
631 if (MAJOR(rdev) != create->cr_specdata1 ||
632 MINOR(rdev) != create->cr_specdata2)
633 return nfserr_inval;
ca364317
BF
634 status = nfsd_create(rqstp, &cstate->current_fh,
635 create->cr_name, create->cr_namelen,
636 &create->cr_iattr, S_IFBLK, rdev, &resfh);
1da177e4
LT
637 break;
638
639 case NF4CHR:
640 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
641 if (MAJOR(rdev) != create->cr_specdata1 ||
642 MINOR(rdev) != create->cr_specdata2)
643 return nfserr_inval;
ca364317
BF
644 status = nfsd_create(rqstp, &cstate->current_fh,
645 create->cr_name, create->cr_namelen,
646 &create->cr_iattr,S_IFCHR, rdev, &resfh);
1da177e4
LT
647 break;
648
649 case NF4SOCK:
ca364317
BF
650 status = nfsd_create(rqstp, &cstate->current_fh,
651 create->cr_name, create->cr_namelen,
652 &create->cr_iattr, S_IFSOCK, 0, &resfh);
1da177e4
LT
653 break;
654
655 case NF4FIFO:
ca364317
BF
656 status = nfsd_create(rqstp, &cstate->current_fh,
657 create->cr_name, create->cr_namelen,
658 &create->cr_iattr, S_IFIFO, 0, &resfh);
1da177e4
LT
659 break;
660
661 case NF4DIR:
662 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
ca364317
BF
663 status = nfsd_create(rqstp, &cstate->current_fh,
664 create->cr_name, create->cr_namelen,
665 &create->cr_iattr, S_IFDIR, 0, &resfh);
1da177e4
LT
666 break;
667
668 default:
669 status = nfserr_badtype;
670 }
671
9208faf2
YZ
672 if (status)
673 goto out;
1da177e4 674
18032ca0
DQ
675 if (create->cr_label.len)
676 nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
677
9208faf2
YZ
678 if (create->cr_acl != NULL)
679 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
680 create->cr_bmval);
681
682 fh_unlock(&cstate->current_fh);
683 set_change_info(&create->cr_cinfo, &cstate->current_fh);
684 fh_dup2(&cstate->current_fh, &resfh);
685out:
1da177e4
LT
686 fh_put(&resfh);
687 return status;
688}
689
7191155b 690static __be32
ca364317
BF
691nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
692 struct nfsd4_getattr *getattr)
1da177e4 693{
b37ad28b 694 __be32 status;
1da177e4 695
8837abca 696 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
1da177e4
LT
697 if (status)
698 return status;
699
700 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
701 return nfserr_inval;
702
7e705706
AA
703 getattr->ga_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
704 getattr->ga_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
705 getattr->ga_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
1da177e4 706
ca364317 707 getattr->ga_fhp = &cstate->current_fh;
1da177e4
LT
708 return nfs_ok;
709}
710
7191155b 711static __be32
ca364317
BF
712nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
713 struct nfsd4_link *link)
1da177e4 714{
b37ad28b 715 __be32 status = nfserr_nofilehandle;
1da177e4 716
ca364317 717 if (!cstate->save_fh.fh_dentry)
1da177e4 718 return status;
ca364317
BF
719 status = nfsd_link(rqstp, &cstate->current_fh,
720 link->li_name, link->li_namelen, &cstate->save_fh);
1da177e4 721 if (!status)
ca364317 722 set_change_info(&link->li_cinfo, &cstate->current_fh);
1da177e4
LT
723 return status;
724}
725
0ff7ab46 726static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
1da177e4
LT
727{
728 struct svc_fh tmp_fh;
b37ad28b 729 __be32 ret;
1da177e4
LT
730
731 fh_init(&tmp_fh, NFS4_FHSIZE);
df547efb
BF
732 ret = exp_pseudoroot(rqstp, &tmp_fh);
733 if (ret)
1da177e4 734 return ret;
0ff7ab46 735 if (tmp_fh.fh_dentry == fh->fh_dentry) {
1da177e4
LT
736 fh_put(&tmp_fh);
737 return nfserr_noent;
738 }
739 fh_put(&tmp_fh);
0ff7ab46
BF
740 return nfsd_lookup(rqstp, fh, "..", 2, fh);
741}
742
743static __be32
744nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
745 void *arg)
746{
747 return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
1da177e4
LT
748}
749
7191155b 750static __be32
ca364317
BF
751nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
752 struct nfsd4_lookup *lookup)
1da177e4 753{
ca364317
BF
754 return nfsd_lookup(rqstp, &cstate->current_fh,
755 lookup->lo_name, lookup->lo_len,
756 &cstate->current_fh);
1da177e4
LT
757}
758
7191155b 759static __be32
ca364317
BF
760nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
761 struct nfsd4_read *read)
1da177e4 762{
b37ad28b 763 __be32 status;
1da177e4
LT
764
765 /* no need to check permission - this will be done in nfsd_read() */
766
7e06b7f9 767 read->rd_filp = NULL;
1da177e4
LT
768 if (read->rd_offset >= OFFSET_MAX)
769 return nfserr_inval;
770
9b3234b9
BF
771 /*
772 * If we do a zero copy read, then a client will see read data
773 * that reflects the state of the file *after* performing the
774 * following compound.
775 *
776 * To ensure proper ordering, we therefore turn off zero copy if
777 * the client wants us to do more in this compound:
778 */
779 if (!nfsd4_last_compound_op(rqstp))
780 rqstp->rq_splice_ok = false;
781
1da177e4 782 /* check stateid */
5ccb0066
SK
783 if ((status = nfs4_preprocess_stateid_op(SVC_NET(rqstp),
784 cstate, &read->rd_stateid,
dd453dfd 785 RD_STATE, &read->rd_filp))) {
1da177e4
LT
786 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
787 goto out;
788 }
789 status = nfs_ok;
790out:
1da177e4 791 read->rd_rqstp = rqstp;
ca364317 792 read->rd_fhp = &cstate->current_fh;
1da177e4
LT
793 return status;
794}
795
7191155b 796static __be32
ca364317
BF
797nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
798 struct nfsd4_readdir *readdir)
1da177e4
LT
799{
800 u64 cookie = readdir->rd_cookie;
801 static const nfs4_verifier zeroverf;
802
803 /* no need to check permission - this will be done in nfsd_readdir() */
804
805 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
806 return nfserr_inval;
807
7e705706
AA
808 readdir->rd_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
809 readdir->rd_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
810 readdir->rd_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
1da177e4 811
832023bf 812 if ((cookie == 1) || (cookie == 2) ||
1da177e4
LT
813 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
814 return nfserr_bad_cookie;
815
816 readdir->rd_rqstp = rqstp;
ca364317 817 readdir->rd_fhp = &cstate->current_fh;
1da177e4
LT
818 return nfs_ok;
819}
820
7191155b 821static __be32
ca364317
BF
822nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
823 struct nfsd4_readlink *readlink)
1da177e4
LT
824{
825 readlink->rl_rqstp = rqstp;
ca364317 826 readlink->rl_fhp = &cstate->current_fh;
1da177e4
LT
827 return nfs_ok;
828}
829
7191155b 830static __be32
ca364317
BF
831nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
832 struct nfsd4_remove *remove)
1da177e4 833{
b37ad28b 834 __be32 status;
1da177e4 835
5ccb0066 836 if (locks_in_grace(SVC_NET(rqstp)))
c815afc7 837 return nfserr_grace;
ca364317
BF
838 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
839 remove->rm_name, remove->rm_namelen);
1da177e4 840 if (!status) {
ca364317
BF
841 fh_unlock(&cstate->current_fh);
842 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
1da177e4
LT
843 }
844 return status;
845}
846
7191155b 847static __be32
ca364317
BF
848nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
849 struct nfsd4_rename *rename)
1da177e4 850{
b37ad28b 851 __be32 status = nfserr_nofilehandle;
1da177e4 852
ca364317 853 if (!cstate->save_fh.fh_dentry)
1da177e4 854 return status;
5ccb0066
SK
855 if (locks_in_grace(SVC_NET(rqstp)) &&
856 !(cstate->save_fh.fh_export->ex_flags & NFSEXP_NOSUBTREECHECK))
c815afc7 857 return nfserr_grace;
ca364317
BF
858 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
859 rename->rn_snamelen, &cstate->current_fh,
1da177e4 860 rename->rn_tname, rename->rn_tnamelen);
2a6cf944
BF
861 if (status)
862 return status;
863 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
864 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
865 return nfs_ok;
1da177e4
LT
866}
867
dcb488a3
AA
868static __be32
869nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
870 struct nfsd4_secinfo *secinfo)
871{
872 struct svc_fh resfh;
873 struct svc_export *exp;
874 struct dentry *dentry;
875 __be32 err;
876
877 fh_init(&resfh, NFS4_FHSIZE);
29a78a3e
BF
878 err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
879 if (err)
880 return err;
dcb488a3
AA
881 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
882 secinfo->si_name, secinfo->si_namelen,
883 &exp, &dentry);
884 if (err)
885 return err;
886 if (dentry->d_inode == NULL) {
887 exp_put(exp);
888 err = nfserr_noent;
889 } else
890 secinfo->si_exp = exp;
891 dput(dentry);
56560b9a
BF
892 if (cstate->minorversion)
893 /* See rfc 5661 section 2.6.3.1.1.8 */
894 fh_put(&cstate->current_fh);
dcb488a3
AA
895 return err;
896}
897
04f4ad16
BF
898static __be32
899nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
900 struct nfsd4_secinfo_no_name *sin)
901{
902 __be32 err;
903
904 switch (sin->sin_style) {
905 case NFS4_SECINFO_STYLE4_CURRENT_FH:
906 break;
907 case NFS4_SECINFO_STYLE4_PARENT:
908 err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
909 if (err)
910 return err;
911 break;
912 default:
913 return nfserr_inval;
914 }
bf18f163
KM
915
916 sin->sin_exp = exp_get(cstate->current_fh.fh_export);
04f4ad16
BF
917 fh_put(&cstate->current_fh);
918 return nfs_ok;
919}
920
7191155b 921static __be32
ca364317
BF
922nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
923 struct nfsd4_setattr *setattr)
1da177e4 924{
b37ad28b 925 __be32 status = nfs_ok;
96f6f985 926 int err;
1da177e4 927
1da177e4 928 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
5ccb0066 929 status = nfs4_preprocess_stateid_op(SVC_NET(rqstp), cstate,
6150ef0d 930 &setattr->sa_stateid, WR_STATE, NULL);
375c5547 931 if (status) {
3e3b4800 932 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
375c5547
BF
933 return status;
934 }
1da177e4 935 }
96f6f985
AV
936 err = fh_want_write(&cstate->current_fh);
937 if (err)
938 return nfserrno(err);
1da177e4 939 status = nfs_ok;
3c8e0316
YZ
940
941 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
942 nfsd_attrmask);
943 if (status)
944 goto out;
945
1da177e4 946 if (setattr->sa_acl != NULL)
ca364317
BF
947 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
948 setattr->sa_acl);
1da177e4 949 if (status)
18f335af 950 goto out;
18032ca0
DQ
951 if (setattr->sa_label.len)
952 status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
953 &setattr->sa_label);
954 if (status)
955 goto out;
ca364317 956 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
1da177e4 957 0, (time_t)0);
18f335af 958out:
bad0dcff 959 fh_drop_write(&cstate->current_fh);
1da177e4
LT
960 return status;
961}
962
ffe1137b
BF
963static int fill_in_write_vector(struct kvec *vec, struct nfsd4_write *write)
964{
965 int i = 1;
966 int buflen = write->wr_buflen;
967
968 vec[0].iov_base = write->wr_head.iov_base;
969 vec[0].iov_len = min_t(int, buflen, write->wr_head.iov_len);
970 buflen -= vec[0].iov_len;
971
972 while (buflen) {
973 vec[i].iov_base = page_address(write->wr_pagelist[i - 1]);
974 vec[i].iov_len = min_t(int, PAGE_SIZE, buflen);
975 buflen -= vec[i].iov_len;
976 i++;
977 }
978 return i;
979}
980
7191155b 981static __be32
ca364317
BF
982nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
983 struct nfsd4_write *write)
1da177e4
LT
984{
985 stateid_t *stateid = &write->wr_stateid;
986 struct file *filp = NULL;
b37ad28b 987 __be32 status = nfs_ok;
31dec253 988 unsigned long cnt;
ffe1137b 989 int nvecs;
1da177e4
LT
990
991 /* no need to check permission - this will be done in nfsd_write() */
992
993 if (write->wr_offset >= OFFSET_MAX)
994 return nfserr_inval;
995
5ccb0066
SK
996 status = nfs4_preprocess_stateid_op(SVC_NET(rqstp),
997 cstate, stateid, WR_STATE, &filp);
375c5547
BF
998 if (status) {
999 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1000 return status;
1001 }
1002
31dec253 1003 cnt = write->wr_buflen;
1da177e4 1004 write->wr_how_written = write->wr_stable_how;
b9c0ef85 1005 gen_boot_verifier(&write->wr_verifier, SVC_NET(rqstp));
1da177e4 1006
ffe1137b
BF
1007 nvecs = fill_in_write_vector(rqstp->rq_vec, write);
1008 WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1009
ca364317 1010 status = nfsd_write(rqstp, &cstate->current_fh, filp,
ffe1137b 1011 write->wr_offset, rqstp->rq_vec, nvecs,
31dec253 1012 &cnt, &write->wr_how_written);
7e06b7f9
N
1013 if (filp)
1014 fput(filp);
1da177e4 1015
31dec253
DS
1016 write->wr_bytes_written = cnt;
1017
1da177e4 1018 return status;
1da177e4
LT
1019}
1020
1021/* This routine never returns NFS_OK! If there are no other errors, it
1022 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1023 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
1024 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1025 */
b37ad28b 1026static __be32
c954e2a5 1027_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
ca364317 1028 struct nfsd4_verify *verify)
1da177e4 1029{
2ebbc012 1030 __be32 *buf, *p;
1da177e4 1031 int count;
b37ad28b 1032 __be32 status;
1da177e4 1033
8837abca 1034 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
1da177e4
LT
1035 if (status)
1036 return status;
1037
3c8e0316
YZ
1038 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1039 if (status)
1040 return status;
1041
1da177e4
LT
1042 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1043 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1044 return nfserr_inval;
1045 if (verify->ve_attrlen & 3)
1046 return nfserr_inval;
1047
1048 /* count in words:
1049 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1050 */
1051 count = 4 + (verify->ve_attrlen >> 2);
1052 buf = kmalloc(count << 2, GFP_KERNEL);
1053 if (!buf)
3e772463 1054 return nfserr_jukebox;
1da177e4 1055
84822d0b 1056 p = buf;
d5184658 1057 status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh,
ca364317 1058 cstate->current_fh.fh_export,
d5184658
BF
1059 cstate->current_fh.fh_dentry,
1060 verify->ve_bmval,
406a7ea9 1061 rqstp, 0);
41ae6e71
BF
1062 /*
1063 * If nfsd4_encode_fattr() ran out of space, assume that's because
1064 * the attributes are longer (hence different) than those given:
1065 */
84822d0b 1066 if (status == nfserr_resource)
1da177e4
LT
1067 status = nfserr_not_same;
1068 if (status)
1069 goto out_kfree;
1070
95ec28cd
BH
1071 /* skip bitmap */
1072 p = buf + 1 + ntohl(buf[0]);
1da177e4
LT
1073 status = nfserr_not_same;
1074 if (ntohl(*p++) != verify->ve_attrlen)
1075 goto out_kfree;
1076 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1077 status = nfserr_same;
1078
1079out_kfree:
1080 kfree(buf);
1081 return status;
1082}
1083
c954e2a5
BF
1084static __be32
1085nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1086 struct nfsd4_verify *verify)
1087{
1088 __be32 status;
1089
1090 status = _nfsd4_verify(rqstp, cstate, verify);
1091 return status == nfserr_not_same ? nfs_ok : status;
1092}
1093
1094static __be32
1095nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1096 struct nfsd4_verify *verify)
1097{
1098 __be32 status;
1099
1100 status = _nfsd4_verify(rqstp, cstate, verify);
1101 return status == nfserr_same ? nfs_ok : status;
1102}
1103
1da177e4
LT
1104/*
1105 * NULL call.
1106 */
7111c66e 1107static __be32
1da177e4
LT
1108nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
1109{
1110 return nfs_ok;
1111}
1112
e2b20950
SA
1113static inline void nfsd4_increment_op_stats(u32 opnum)
1114{
1115 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
1116 nfsdstats.nfs4_opcount[opnum]++;
1117}
1118
b591480b
BF
1119typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
1120 void *);
58e7b33a 1121typedef u32(*nfsd4op_rsize)(struct svc_rqst *, struct nfsd4_op *op);
8b70484c
TM
1122typedef void(*stateid_setter)(struct nfsd4_compound_state *, void *);
1123typedef void(*stateid_getter)(struct nfsd4_compound_state *, void *);
58e7b33a 1124
f9bb94c4
AA
1125enum nfsd4_op_flags {
1126 ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */
5ece3caf
MJ
1127 ALLOWED_ON_ABSENT_FS = 1 << 1, /* ops processed on absent fs */
1128 ALLOWED_AS_FIRST_OP = 1 << 2, /* ops reqired first in compound */
68d93184
BF
1129 /* For rfc 5661 section 2.6.3.1.1: */
1130 OP_HANDLES_WRONGSEC = 1 << 3,
1131 OP_IS_PUTFH_LIKE = 1 << 4,
1091006c 1132 /*
c856694e
BF
1133 * These are the ops whose result size we estimate before
1134 * encoding, to avoid performing an op then not being able to
1135 * respond or cache a response. This includes writes and setattrs
1136 * as well as the operations usually called "nonidempotent":
1137 */
1138 OP_MODIFIES_SOMETHING = 1 << 5,
1139 /*
1140 * Cache compounds containing these ops in the xid-based drc:
1091006c
BF
1141 * We use the DRC for compounds containing non-idempotent
1142 * operations, *except* those that are 4.1-specific (since
1143 * sessions provide their own EOS), and except for stateful
1144 * operations other than setclientid and setclientid_confirm
1145 * (since sequence numbers provide EOS for open, lock, etc in
1146 * the v4.0 case).
1147 */
c856694e 1148 OP_CACHEME = 1 << 6,
8b70484c
TM
1149 /*
1150 * These are ops which clear current state id.
1151 */
1152 OP_CLEAR_STATEID = 1 << 7,
c856694e
BF
1153};
1154
1155struct nfsd4_operation {
1156 nfsd4op_func op_func;
1157 u32 op_flags;
1158 char *op_name;
58e7b33a
MJ
1159 /* Try to get response size before operation */
1160 nfsd4op_rsize op_rsize_bop;
24ff99c6
BS
1161 stateid_getter op_get_currentstateid;
1162 stateid_setter op_set_currentstateid;
b591480b
BF
1163};
1164
1165static struct nfsd4_operation nfsd4_ops[];
1166
f1c7f79b 1167static const char *nfsd4_op_name(unsigned opnum);
b001a1b6 1168
f9bb94c4 1169/*
57716355 1170 * Enforce NFSv4.1 COMPOUND ordering rules:
f9bb94c4 1171 *
57716355
BF
1172 * Also note, enforced elsewhere:
1173 * - SEQUENCE other than as first op results in
1174 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
1d1bc8f2
BF
1175 * - BIND_CONN_TO_SESSION must be the only op in its compound.
1176 * (Enforced in nfsd4_bind_conn_to_session().)
57716355
BF
1177 * - DESTROY_SESSION must be the final operation in a compound, if
1178 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
1179 * (Enforced in nfsd4_destroy_session().)
f9bb94c4 1180 */
57716355 1181static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
f9bb94c4 1182{
57716355
BF
1183 struct nfsd4_op *op = &args->ops[0];
1184
1185 /* These ordering requirements don't apply to NFSv4.0: */
1186 if (args->minorversion == 0)
1187 return nfs_ok;
1188 /* This is weird, but OK, not our problem: */
1189 if (args->opcnt == 0)
1190 return nfs_ok;
1191 if (op->status == nfserr_op_illegal)
1192 return nfs_ok;
1193 if (!(nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
1194 return nfserr_op_not_in_session;
1195 if (op->opnum == OP_SEQUENCE)
1196 return nfs_ok;
1197 if (args->opcnt != 1)
1198 return nfserr_not_only_op;
1199 return nfs_ok;
f9bb94c4
AA
1200}
1201
22b03214
BF
1202static inline struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
1203{
1204 return &nfsd4_ops[op->opnum];
1205}
1206
1091006c
BF
1207bool nfsd4_cache_this_op(struct nfsd4_op *op)
1208{
e372ba60
BF
1209 if (op->opnum == OP_ILLEGAL)
1210 return false;
c856694e 1211 return OPDESC(op)->op_flags & OP_CACHEME;
1091006c
BF
1212}
1213
68d93184
BF
1214static bool need_wrongsec_check(struct svc_rqst *rqstp)
1215{
1216 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1217 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1218 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
1219 struct nfsd4_op *next = &argp->ops[resp->opcnt];
1220 struct nfsd4_operation *thisd;
1221 struct nfsd4_operation *nextd;
1222
1223 thisd = OPDESC(this);
1224 /*
1225 * Most ops check wronsec on our own; only the putfh-like ops
1226 * have special rules.
1227 */
1228 if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
1229 return false;
1230 /*
1231 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
1232 * put-filehandle operation if we're not going to use the
1233 * result:
1234 */
1235 if (argp->opcnt == resp->opcnt)
1236 return false;
1237
1238 nextd = OPDESC(next);
1239 /*
1240 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
1241 * errors themselves as necessary; others should check for them
1242 * now:
1243 */
1244 return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
1245}
1246
2d124dfa
BF
1247static void svcxdr_init_encode(struct svc_rqst *rqstp,
1248 struct nfsd4_compoundres *resp)
1249{
1250 struct xdr_stream *xdr = &resp->xdr;
1251 struct xdr_buf *buf = &rqstp->rq_res;
1252 struct kvec *head = buf->head;
1253
1254 xdr->buf = buf;
ddd1ea56 1255 xdr->iov = head;
2d124dfa 1256 xdr->p = head->iov_base + head->iov_len;
a5cddc88 1257 xdr->end = head->iov_base + PAGE_SIZE - rqstp->rq_auth_slack;
6ac90391
BF
1258 /* Tail and page_len should be zero at this point: */
1259 buf->len = buf->head[0].iov_len;
2825a7f9 1260 xdr->scratch.iov_len = 0;
05638dc7 1261 xdr->page_ptr = buf->pages - 1;
2825a7f9 1262 buf->buflen = PAGE_SIZE * (1 + rqstp->rq_page_end - buf->pages)
a5cddc88 1263 - rqstp->rq_auth_slack;
2d124dfa
BF
1264}
1265
1da177e4
LT
1266/*
1267 * COMPOUND call.
1268 */
7111c66e 1269static __be32
1da177e4
LT
1270nfsd4_proc_compound(struct svc_rqst *rqstp,
1271 struct nfsd4_compoundargs *args,
1272 struct nfsd4_compoundres *resp)
1273{
1274 struct nfsd4_op *op;
b591480b 1275 struct nfsd4_operation *opdesc;
e354d571 1276 struct nfsd4_compound_state *cstate = &resp->cstate;
4daeed25
KM
1277 struct svc_fh *current_fh = &cstate->current_fh;
1278 struct svc_fh *save_fh = &cstate->save_fh;
b37ad28b 1279 __be32 status;
1da177e4 1280
2d124dfa 1281 svcxdr_init_encode(rqstp, resp);
4aea24b2 1282 resp->tagp = resp->xdr.p;
1da177e4 1283 /* reserve space for: taglen, tag, and opcnt */
d3f627c8 1284 xdr_reserve_space(&resp->xdr, 8 + args->taglen);
1da177e4
LT
1285 resp->taglen = args->taglen;
1286 resp->tag = args->tag;
1da177e4 1287 resp->rqstp = rqstp;
4daeed25 1288 cstate->minorversion = args->minorversion;
4daeed25
KM
1289 fh_init(current_fh, NFS4_FHSIZE);
1290 fh_init(save_fh, NFS4_FHSIZE);
8ff30fa4
N
1291 /*
1292 * Don't use the deferral mechanism for NFSv4; compounds make it
1293 * too hard to avoid non-idempotency problems.
1294 */
f15a5cf9 1295 rqstp->rq_usedeferral = false;
1da177e4
LT
1296
1297 /*
1298 * According to RFC3010, this takes precedence over all other errors.
1299 */
1300 status = nfserr_minor_vers_mismatch;
35f7a14f 1301 if (nfsd_minorversion(args->minorversion, NFSD_TEST) <= 0)
1da177e4
LT
1302 goto out;
1303
57716355
BF
1304 status = nfs41_check_op_ordering(args);
1305 if (status) {
f9bb94c4 1306 op = &args->ops[0];
57716355 1307 op->status = status;
f9bb94c4
AA
1308 goto encode_op;
1309 }
1310
1da177e4
LT
1311 while (!status && resp->opcnt < args->opcnt) {
1312 op = &args->ops[resp->opcnt++];
1313
b001a1b6
BH
1314 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
1315 resp->opcnt, args->opcnt, op->opnum,
1316 nfsd4_op_name(op->opnum));
1da177e4
LT
1317 /*
1318 * The XDR decode routines may have pre-set op->status;
1319 * for example, if there is a miscellaneous XDR error
1320 * it will be set to nfserr_bad_xdr.
1321 */
9d313b17
BF
1322 if (op->status) {
1323 if (op->opnum == OP_OPEN)
1324 op->status = nfsd4_open_omfg(rqstp, cstate, op);
1da177e4 1325 goto encode_op;
9d313b17 1326 }
1da177e4 1327
22b03214 1328 opdesc = OPDESC(op);
b591480b 1329
4daeed25 1330 if (!current_fh->fh_dentry) {
27d630ec 1331 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
42ca0993
BF
1332 op->status = nfserr_nofilehandle;
1333 goto encode_op;
1334 }
4daeed25 1335 } else if (current_fh->fh_export->ex_fslocs.migrated &&
eeac294e 1336 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
42ca0993 1337 op->status = nfserr_moved;
1da177e4
LT
1338 goto encode_op;
1339 }
b591480b 1340
2336745e
KM
1341 fh_clear_wcc(current_fh);
1342
58e7b33a
MJ
1343 /* If op is non-idempotent */
1344 if (opdesc->op_flags & OP_MODIFIES_SOMETHING) {
4c69d585 1345 /*
a8095f7e
BF
1346 * Don't execute this op if we couldn't encode a
1347 * succesful reply:
1348 */
1349 u32 plen = opdesc->op_rsize_bop(rqstp, op);
1350 /*
1351 * Plus if there's another operation, make sure
4c69d585
BF
1352 * we'll have space to at least encode an error:
1353 */
1354 if (resp->opcnt < args->opcnt)
1355 plen += COMPOUND_ERR_SLACK_SPACE;
58e7b33a
MJ
1356 op->status = nfsd4_check_resp_size(resp, plen);
1357 }
1358
1359 if (op->status)
1360 goto encode_op;
1361
b600de7a
BF
1362 if (opdesc->op_get_currentstateid)
1363 opdesc->op_get_currentstateid(cstate, &op->u);
1364 op->status = opdesc->op_func(rqstp, cstate, &op->u);
1da177e4 1365
8b70484c
TM
1366 if (!op->status) {
1367 if (opdesc->op_set_currentstateid)
1368 opdesc->op_set_currentstateid(cstate, &op->u);
1369
1370 if (opdesc->op_flags & OP_CLEAR_STATEID)
37c593c5 1371 clear_current_stateid(cstate);
8b70484c
TM
1372
1373 if (need_wrongsec_check(rqstp))
4daeed25 1374 op->status = check_nfsd_access(current_fh->fh_export, rqstp);
8b70484c 1375 }
68d93184 1376
1da177e4 1377encode_op:
49557cc7 1378 /* Only from SEQUENCE */
4daeed25 1379 if (cstate->status == nfserr_replay_cache) {
da3846a2 1380 dprintk("%s NFS4.1 replay from cache\n", __func__);
abfabf8c 1381 status = op->status;
da3846a2
AA
1382 goto out;
1383 }
a90b061c 1384 if (op->status == nfserr_replay_me) {
a4f1706a 1385 op->replay = &cstate->replay_owner->so_replay;
d0a381dd 1386 nfsd4_encode_replay(&resp->xdr, op);
1da177e4
LT
1387 status = op->status = op->replay->rp_status;
1388 } else {
1389 nfsd4_encode_operation(resp, op);
1390 status = op->status;
1391 }
0407717d
BH
1392
1393 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
1394 args->ops, args->opcnt, resp->opcnt, op->opnum,
1395 be32_to_cpu(status));
1396
a4f1706a 1397 if (cstate->replay_owner) {
5ec094c1 1398 nfs4_unlock_state();
a4f1706a 1399 cstate->replay_owner = NULL;
1da177e4 1400 }
7e06b7f9
N
1401 /* XXX Ugh, we need to get rid of this kind of special case: */
1402 if (op->opnum == OP_READ && op->u.read.rd_filp)
1403 fput(op->u.read.rd_filp);
e2b20950
SA
1404
1405 nfsd4_increment_op_stats(op->opnum);
1da177e4
LT
1406 }
1407
4daeed25
KM
1408 cstate->status = status;
1409 fh_put(current_fh);
1410 fh_put(save_fh);
1411 BUG_ON(cstate->replay_owner);
1da177e4 1412out:
2f425878 1413 /* Reset deferral mechanism for RPC deferrals */
f15a5cf9 1414 rqstp->rq_usedeferral = true;
3b12cd98 1415 dprintk("nfsv4 compound returned %d\n", ntohl(status));
1da177e4
LT
1416 return status;
1417}
1418
58e7b33a
MJ
1419#define op_encode_hdr_size (2)
1420#define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
1421#define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
1422#define op_encode_change_info_maxsz (5)
1423#define nfs4_fattr_bitmap_maxsz (4)
1424
8c7424cf
BF
1425/* We'll fall back on returning no lockowner if run out of space: */
1426#define op_encode_lockowner_maxsz (0)
58e7b33a
MJ
1427#define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
1428
1429#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1430
1431#define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
1432#define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
1433 op_encode_ace_maxsz)
1434
1435#define op_encode_channel_attrs_maxsz (6 + 1 + 1)
1436
1437static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1438{
1439 return (op_encode_hdr_size) * sizeof(__be32);
1440}
1441
1442static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1443{
1444 return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
1445}
1446
1447static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1448{
1449 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
1450}
1451
1452static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1453{
1454 return (op_encode_hdr_size + op_encode_change_info_maxsz
1455 + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
1456}
1457
b86cef60
BF
1458/*
1459 * Note since this is an idempotent operation we won't insist on failing
1460 * the op prematurely if the estimate is too large. We may turn off splice
1461 * reads unnecessarily.
1462 */
1463static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp,
1464 struct nfsd4_op *op)
1465{
1466 u32 *bmap = op->u.getattr.ga_bmval;
1467 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2];
1468 u32 ret = 0;
1469
1470 if (bmap0 & FATTR4_WORD0_ACL)
1471 return svc_max_payload(rqstp);
1472 if (bmap0 & FATTR4_WORD0_FS_LOCATIONS)
1473 return svc_max_payload(rqstp);
1474
1475 if (bmap1 & FATTR4_WORD1_OWNER) {
1476 ret += IDMAP_NAMESZ + 4;
1477 bmap1 &= ~FATTR4_WORD1_OWNER;
1478 }
1479 if (bmap1 & FATTR4_WORD1_OWNER_GROUP) {
1480 ret += IDMAP_NAMESZ + 4;
1481 bmap1 &= ~FATTR4_WORD1_OWNER_GROUP;
1482 }
1483 if (bmap0 & FATTR4_WORD0_FILEHANDLE) {
1484 ret += NFS4_FHSIZE + 4;
1485 bmap0 &= ~FATTR4_WORD0_FILEHANDLE;
1486 }
1487 if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) {
1488 ret += NFSD4_MAX_SEC_LABEL_LEN + 12;
1489 bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL;
1490 }
1491 /*
1492 * Largest of remaining attributes are 16 bytes (e.g.,
1493 * supported_attributes)
1494 */
1495 ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2));
1496 /* bitmask, length */
1497 ret += 20;
1498 return ret;
1499}
1500
58e7b33a
MJ
1501static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1502{
1503 return (op_encode_hdr_size + op_encode_change_info_maxsz)
1504 * sizeof(__be32);
1505}
1506
1507static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1508{
1509 return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
1510 * sizeof(__be32);
1511}
1512
1513static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1514{
1515 return (op_encode_hdr_size + op_encode_stateid_maxsz
1516 + op_encode_change_info_maxsz + 1
1517 + nfs4_fattr_bitmap_maxsz
1518 + op_encode_delegation_maxsz) * sizeof(__be32);
1519}
1520
1521static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1522{
1523 u32 maxcount = 0, rlen = 0;
1524
1525 maxcount = svc_max_payload(rqstp);
3c7aa15d 1526 rlen = min(op->u.read.rd_length, maxcount);
58e7b33a 1527
622f560e 1528 return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32);
58e7b33a
MJ
1529}
1530
1531static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1532{
3c7aa15d 1533 u32 maxcount = 0, rlen = 0;
58e7b33a 1534
3c7aa15d
KM
1535 maxcount = svc_max_payload(rqstp);
1536 rlen = min(op->u.readdir.rd_maxcount, maxcount);
58e7b33a 1537
561f0ed4
BF
1538 return (op_encode_hdr_size + op_encode_verifier_maxsz +
1539 XDR_QUADLEN(rlen)) * sizeof(__be32);
58e7b33a
MJ
1540}
1541
1542static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1543{
1544 return (op_encode_hdr_size + op_encode_change_info_maxsz)
1545 * sizeof(__be32);
1546}
1547
1548static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1549{
1550 return (op_encode_hdr_size + op_encode_change_info_maxsz
1551 + op_encode_change_info_maxsz) * sizeof(__be32);
1552}
1553
ccae70a9
BF
1554static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp,
1555 struct nfsd4_op *op)
1556{
1557 return NFS4_MAX_SESSIONID_LEN + 20;
1558}
1559
58e7b33a
MJ
1560static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1561{
1562 return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
1563}
1564
1565static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1566{
480efaee
BF
1567 return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) *
1568 sizeof(__be32);
58e7b33a
MJ
1569}
1570
1571static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1572{
f34e432b 1573 return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32);
58e7b33a
MJ
1574}
1575
1576static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1577{
1578 return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
a8bb84bc
KM
1579 1 + 1 + /* eir_flags, spr_how */\
1580 4 + /* spo_must_enforce & _allow with bitmap */\
58e7b33a
MJ
1581 2 + /*eir_server_owner.so_minor_id */\
1582 /* eir_server_owner.so_major_id<> */\
1583 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
1584 /* eir_server_scope<> */\
1585 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
1586 1 + /* eir_server_impl_id array length */\
1587 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
1588}
1589
1590static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1591{
1592 return (op_encode_hdr_size + \
1593 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
1594 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
1595}
1596
1597static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1598{
1599 return (op_encode_hdr_size + \
1600 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
1601 2 + /* csr_sequence, csr_flags */\
1602 op_encode_channel_attrs_maxsz + \
1603 op_encode_channel_attrs_maxsz) * sizeof(__be32);
1604}
1605
20766016 1606static struct nfsd4_operation nfsd4_ops[] = {
b591480b
BF
1607 [OP_ACCESS] = {
1608 .op_func = (nfsd4op_func)nfsd4_access,
b001a1b6 1609 .op_name = "OP_ACCESS",
b591480b
BF
1610 },
1611 [OP_CLOSE] = {
1612 .op_func = (nfsd4op_func)nfsd4_close,
58e7b33a 1613 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1614 .op_name = "OP_CLOSE",
58e7b33a 1615 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
8b70484c
TM
1616 .op_get_currentstateid = (stateid_getter)nfsd4_get_closestateid,
1617 .op_set_currentstateid = (stateid_setter)nfsd4_set_closestateid,
b591480b
BF
1618 },
1619 [OP_COMMIT] = {
1620 .op_func = (nfsd4op_func)nfsd4_commit,
58e7b33a 1621 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1622 .op_name = "OP_COMMIT",
58e7b33a 1623 .op_rsize_bop = (nfsd4op_rsize)nfsd4_commit_rsize,
b591480b
BF
1624 },
1625 [OP_CREATE] = {
1626 .op_func = (nfsd4op_func)nfsd4_create,
d1471053 1627 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
b001a1b6 1628 .op_name = "OP_CREATE",
58e7b33a 1629 .op_rsize_bop = (nfsd4op_rsize)nfsd4_create_rsize,
b591480b
BF
1630 },
1631 [OP_DELEGRETURN] = {
1632 .op_func = (nfsd4op_func)nfsd4_delegreturn,
58e7b33a 1633 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1634 .op_name = "OP_DELEGRETURN",
58e7b33a 1635 .op_rsize_bop = nfsd4_only_status_rsize,
9428fe1a 1636 .op_get_currentstateid = (stateid_getter)nfsd4_get_delegreturnstateid,
b591480b
BF
1637 },
1638 [OP_GETATTR] = {
1639 .op_func = (nfsd4op_func)nfsd4_getattr,
eeac294e 1640 .op_flags = ALLOWED_ON_ABSENT_FS,
b86cef60 1641 .op_rsize_bop = nfsd4_getattr_rsize,
b001a1b6 1642 .op_name = "OP_GETATTR",
b591480b
BF
1643 },
1644 [OP_GETFH] = {
1645 .op_func = (nfsd4op_func)nfsd4_getfh,
b001a1b6 1646 .op_name = "OP_GETFH",
b591480b
BF
1647 },
1648 [OP_LINK] = {
1649 .op_func = (nfsd4op_func)nfsd4_link,
c856694e
BF
1650 .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
1651 | OP_CACHEME,
b001a1b6 1652 .op_name = "OP_LINK",
58e7b33a 1653 .op_rsize_bop = (nfsd4op_rsize)nfsd4_link_rsize,
b591480b
BF
1654 },
1655 [OP_LOCK] = {
1656 .op_func = (nfsd4op_func)nfsd4_lock,
58e7b33a 1657 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1658 .op_name = "OP_LOCK",
58e7b33a 1659 .op_rsize_bop = (nfsd4op_rsize)nfsd4_lock_rsize,
62cd4a59 1660 .op_set_currentstateid = (stateid_setter)nfsd4_set_lockstateid,
b591480b
BF
1661 },
1662 [OP_LOCKT] = {
1663 .op_func = (nfsd4op_func)nfsd4_lockt,
b001a1b6 1664 .op_name = "OP_LOCKT",
b591480b
BF
1665 },
1666 [OP_LOCKU] = {
1667 .op_func = (nfsd4op_func)nfsd4_locku,
58e7b33a 1668 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1669 .op_name = "OP_LOCKU",
58e7b33a 1670 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
62cd4a59 1671 .op_get_currentstateid = (stateid_getter)nfsd4_get_lockustateid,
b591480b
BF
1672 },
1673 [OP_LOOKUP] = {
1674 .op_func = (nfsd4op_func)nfsd4_lookup,
d1471053 1675 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
b001a1b6 1676 .op_name = "OP_LOOKUP",
b591480b
BF
1677 },
1678 [OP_LOOKUPP] = {
1679 .op_func = (nfsd4op_func)nfsd4_lookupp,
d1471053 1680 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
b001a1b6 1681 .op_name = "OP_LOOKUPP",
b591480b
BF
1682 },
1683 [OP_NVERIFY] = {
1684 .op_func = (nfsd4op_func)nfsd4_nverify,
b001a1b6 1685 .op_name = "OP_NVERIFY",
b591480b
BF
1686 },
1687 [OP_OPEN] = {
1688 .op_func = (nfsd4op_func)nfsd4_open,
58e7b33a 1689 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
b001a1b6 1690 .op_name = "OP_OPEN",
58e7b33a 1691 .op_rsize_bop = (nfsd4op_rsize)nfsd4_open_rsize,
8b70484c 1692 .op_set_currentstateid = (stateid_setter)nfsd4_set_openstateid,
b591480b
BF
1693 },
1694 [OP_OPEN_CONFIRM] = {
1695 .op_func = (nfsd4op_func)nfsd4_open_confirm,
58e7b33a 1696 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1697 .op_name = "OP_OPEN_CONFIRM",
58e7b33a 1698 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
b591480b
BF
1699 },
1700 [OP_OPEN_DOWNGRADE] = {
1701 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
58e7b33a 1702 .op_flags = OP_MODIFIES_SOMETHING,
b001a1b6 1703 .op_name = "OP_OPEN_DOWNGRADE",
58e7b33a 1704 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
9428fe1a
TM
1705 .op_get_currentstateid = (stateid_getter)nfsd4_get_opendowngradestateid,
1706 .op_set_currentstateid = (stateid_setter)nfsd4_set_opendowngradestateid,
b591480b
BF
1707 },
1708 [OP_PUTFH] = {
1709 .op_func = (nfsd4op_func)nfsd4_putfh,
68d93184 1710 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
5b648699 1711 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
b001a1b6 1712 .op_name = "OP_PUTFH",
58e7b33a 1713 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b 1714 },
eeac294e 1715 [OP_PUTPUBFH] = {
a1c8c4d1 1716 .op_func = (nfsd4op_func)nfsd4_putrootfh,
68d93184 1717 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
5b648699 1718 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
b001a1b6 1719 .op_name = "OP_PUTPUBFH",
58e7b33a 1720 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
eeac294e 1721 },
b591480b
BF
1722 [OP_PUTROOTFH] = {
1723 .op_func = (nfsd4op_func)nfsd4_putrootfh,
68d93184 1724 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
5b648699 1725 | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID,
b001a1b6 1726 .op_name = "OP_PUTROOTFH",
58e7b33a 1727 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b
BF
1728 },
1729 [OP_READ] = {
1730 .op_func = (nfsd4op_func)nfsd4_read,
b001a1b6 1731 .op_name = "OP_READ",
58e7b33a 1732 .op_rsize_bop = (nfsd4op_rsize)nfsd4_read_rsize,
30813e27 1733 .op_get_currentstateid = (stateid_getter)nfsd4_get_readstateid,
b591480b
BF
1734 },
1735 [OP_READDIR] = {
1736 .op_func = (nfsd4op_func)nfsd4_readdir,
b001a1b6 1737 .op_name = "OP_READDIR",
58e7b33a 1738 .op_rsize_bop = (nfsd4op_rsize)nfsd4_readdir_rsize,
b591480b
BF
1739 },
1740 [OP_READLINK] = {
1741 .op_func = (nfsd4op_func)nfsd4_readlink,
b001a1b6 1742 .op_name = "OP_READLINK",
b591480b
BF
1743 },
1744 [OP_REMOVE] = {
1745 .op_func = (nfsd4op_func)nfsd4_remove,
c856694e 1746 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
b001a1b6 1747 .op_name = "OP_REMOVE",
58e7b33a 1748 .op_rsize_bop = (nfsd4op_rsize)nfsd4_remove_rsize,
b591480b
BF
1749 },
1750 [OP_RENAME] = {
1751 .op_func = (nfsd4op_func)nfsd4_rename,
c856694e 1752 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
58e7b33a 1753 .op_name = "OP_RENAME",
58e7b33a 1754 .op_rsize_bop = (nfsd4op_rsize)nfsd4_rename_rsize,
b591480b
BF
1755 },
1756 [OP_RENEW] = {
1757 .op_func = (nfsd4op_func)nfsd4_renew,
58e7b33a
MJ
1758 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
1759 | OP_MODIFIES_SOMETHING,
b001a1b6 1760 .op_name = "OP_RENEW",
58e7b33a
MJ
1761 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
1762
b591480b
BF
1763 },
1764 [OP_RESTOREFH] = {
1765 .op_func = (nfsd4op_func)nfsd4_restorefh,
68d93184 1766 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
58e7b33a 1767 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
b001a1b6 1768 .op_name = "OP_RESTOREFH",
58e7b33a 1769 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b
BF
1770 },
1771 [OP_SAVEFH] = {
1772 .op_func = (nfsd4op_func)nfsd4_savefh,
58e7b33a 1773 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
b001a1b6 1774 .op_name = "OP_SAVEFH",
58e7b33a 1775 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b 1776 },
dcb488a3
AA
1777 [OP_SECINFO] = {
1778 .op_func = (nfsd4op_func)nfsd4_secinfo,
68d93184 1779 .op_flags = OP_HANDLES_WRONGSEC,
b001a1b6 1780 .op_name = "OP_SECINFO",
dcb488a3 1781 },
b591480b
BF
1782 [OP_SETATTR] = {
1783 .op_func = (nfsd4op_func)nfsd4_setattr,
b001a1b6 1784 .op_name = "OP_SETATTR",
c856694e 1785 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
58e7b33a 1786 .op_rsize_bop = (nfsd4op_rsize)nfsd4_setattr_rsize,
1e97b519 1787 .op_get_currentstateid = (stateid_getter)nfsd4_get_setattrstateid,
b591480b
BF
1788 },
1789 [OP_SETCLIENTID] = {
1790 .op_func = (nfsd4op_func)nfsd4_setclientid,
58e7b33a 1791 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
c856694e 1792 | OP_MODIFIES_SOMETHING | OP_CACHEME,
b001a1b6 1793 .op_name = "OP_SETCLIENTID",
58e7b33a 1794 .op_rsize_bop = (nfsd4op_rsize)nfsd4_setclientid_rsize,
b591480b
BF
1795 },
1796 [OP_SETCLIENTID_CONFIRM] = {
1797 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
58e7b33a 1798 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
c856694e 1799 | OP_MODIFIES_SOMETHING | OP_CACHEME,
b001a1b6 1800 .op_name = "OP_SETCLIENTID_CONFIRM",
58e7b33a 1801 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b
BF
1802 },
1803 [OP_VERIFY] = {
1804 .op_func = (nfsd4op_func)nfsd4_verify,
b001a1b6 1805 .op_name = "OP_VERIFY",
b591480b
BF
1806 },
1807 [OP_WRITE] = {
1808 .op_func = (nfsd4op_func)nfsd4_write,
c856694e 1809 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
b001a1b6 1810 .op_name = "OP_WRITE",
58e7b33a 1811 .op_rsize_bop = (nfsd4op_rsize)nfsd4_write_rsize,
30813e27 1812 .op_get_currentstateid = (stateid_getter)nfsd4_get_writestateid,
b591480b
BF
1813 },
1814 [OP_RELEASE_LOCKOWNER] = {
1815 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
58e7b33a
MJ
1816 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
1817 | OP_MODIFIES_SOMETHING,
b001a1b6 1818 .op_name = "OP_RELEASE_LOCKOWNER",
58e7b33a 1819 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
b591480b 1820 },
069b6ad4
AA
1821
1822 /* NFSv4.1 operations */
1823 [OP_EXCHANGE_ID] = {
1824 .op_func = (nfsd4op_func)nfsd4_exchange_id,
58e7b33a
MJ
1825 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1826 | OP_MODIFIES_SOMETHING,
069b6ad4 1827 .op_name = "OP_EXCHANGE_ID",
58e7b33a 1828 .op_rsize_bop = (nfsd4op_rsize)nfsd4_exchange_id_rsize,
069b6ad4 1829 },
cb73a9f4
BF
1830 [OP_BACKCHANNEL_CTL] = {
1831 .op_func = (nfsd4op_func)nfsd4_backchannel_ctl,
1832 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
1833 .op_name = "OP_BACKCHANNEL_CTL",
1834 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
1835 },
1d1bc8f2
BF
1836 [OP_BIND_CONN_TO_SESSION] = {
1837 .op_func = (nfsd4op_func)nfsd4_bind_conn_to_session,
58e7b33a
MJ
1838 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1839 | OP_MODIFIES_SOMETHING,
1d1bc8f2 1840 .op_name = "OP_BIND_CONN_TO_SESSION",
58e7b33a 1841 .op_rsize_bop = (nfsd4op_rsize)nfsd4_bind_conn_to_session_rsize,
1d1bc8f2 1842 },
069b6ad4
AA
1843 [OP_CREATE_SESSION] = {
1844 .op_func = (nfsd4op_func)nfsd4_create_session,
58e7b33a
MJ
1845 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1846 | OP_MODIFIES_SOMETHING,
069b6ad4 1847 .op_name = "OP_CREATE_SESSION",
58e7b33a 1848 .op_rsize_bop = (nfsd4op_rsize)nfsd4_create_session_rsize,
069b6ad4
AA
1849 },
1850 [OP_DESTROY_SESSION] = {
1851 .op_func = (nfsd4op_func)nfsd4_destroy_session,
58e7b33a
MJ
1852 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1853 | OP_MODIFIES_SOMETHING,
069b6ad4 1854 .op_name = "OP_DESTROY_SESSION",
58e7b33a 1855 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
069b6ad4
AA
1856 },
1857 [OP_SEQUENCE] = {
1858 .op_func = (nfsd4op_func)nfsd4_sequence,
f9bb94c4 1859 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
069b6ad4
AA
1860 .op_name = "OP_SEQUENCE",
1861 },
094b5d74 1862 [OP_DESTROY_CLIENTID] = {
345c2842 1863 .op_func = (nfsd4op_func)nfsd4_destroy_clientid,
58e7b33a
MJ
1864 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1865 | OP_MODIFIES_SOMETHING,
094b5d74 1866 .op_name = "OP_DESTROY_CLIENTID",
58e7b33a 1867 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
094b5d74 1868 },
4dc6ec00
BF
1869 [OP_RECLAIM_COMPLETE] = {
1870 .op_func = (nfsd4op_func)nfsd4_reclaim_complete,
58e7b33a 1871 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
4dc6ec00 1872 .op_name = "OP_RECLAIM_COMPLETE",
58e7b33a 1873 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
4dc6ec00 1874 },
04f4ad16
BF
1875 [OP_SECINFO_NO_NAME] = {
1876 .op_func = (nfsd4op_func)nfsd4_secinfo_no_name,
68d93184 1877 .op_flags = OP_HANDLES_WRONGSEC,
04f4ad16
BF
1878 .op_name = "OP_SECINFO_NO_NAME",
1879 },
17456804
BS
1880 [OP_TEST_STATEID] = {
1881 .op_func = (nfsd4op_func)nfsd4_test_stateid,
1882 .op_flags = ALLOWED_WITHOUT_FH,
1883 .op_name = "OP_TEST_STATEID",
1884 },
e1ca12df
BS
1885 [OP_FREE_STATEID] = {
1886 .op_func = (nfsd4op_func)nfsd4_free_stateid,
58e7b33a 1887 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
e1ca12df 1888 .op_name = "OP_FREE_STATEID",
a1dc6955 1889 .op_get_currentstateid = (stateid_getter)nfsd4_get_freestateid,
58e7b33a 1890 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
e1ca12df 1891 },
b591480b
BF
1892};
1893
4f0cefbf
BF
1894int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op)
1895{
1896 struct nfsd4_operation *opdesc;
1897 nfsd4op_rsize estimator;
1898
1899 if (op->opnum == OP_ILLEGAL)
1900 return op_encode_hdr_size * sizeof(__be32);
1901 opdesc = OPDESC(op);
1902 estimator = opdesc->op_rsize_bop;
1903 return estimator ? estimator(rqstp, op) : PAGE_SIZE;
1904}
1905
07d1f802
BF
1906void warn_on_nonidempotent_op(struct nfsd4_op *op)
1907{
1908 if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) {
1909 pr_err("unable to encode reply to nonidempotent op %d (%s)\n",
1910 op->opnum, nfsd4_op_name(op->opnum));
1911 WARN_ON_ONCE(1);
1912 }
1913}
1914
f1c7f79b 1915static const char *nfsd4_op_name(unsigned opnum)
b001a1b6
BH
1916{
1917 if (opnum < ARRAY_SIZE(nfsd4_ops))
1918 return nfsd4_ops[opnum].op_name;
1919 return "unknown_operation";
1920}
1921
1da177e4 1922#define nfsd4_voidres nfsd4_voidargs
1da177e4
LT
1923struct nfsd4_voidargs { int dummy; };
1924
1da177e4 1925static struct svc_procedure nfsd_procedures4[2] = {
0a93a47f
YZ
1926 [NFSPROC4_NULL] = {
1927 .pc_func = (svc_procfunc) nfsd4_proc_null,
1928 .pc_encode = (kxdrproc_t) nfs4svc_encode_voidres,
1929 .pc_argsize = sizeof(struct nfsd4_voidargs),
1930 .pc_ressize = sizeof(struct nfsd4_voidres),
1931 .pc_cachetype = RC_NOCACHE,
1932 .pc_xdrressize = 1,
1933 },
1934 [NFSPROC4_COMPOUND] = {
1935 .pc_func = (svc_procfunc) nfsd4_proc_compound,
1936 .pc_decode = (kxdrproc_t) nfs4svc_decode_compoundargs,
1937 .pc_encode = (kxdrproc_t) nfs4svc_encode_compoundres,
1938 .pc_argsize = sizeof(struct nfsd4_compoundargs),
1939 .pc_ressize = sizeof(struct nfsd4_compoundres),
3e98abff 1940 .pc_release = nfsd4_release_compoundargs,
0a93a47f
YZ
1941 .pc_cachetype = RC_NOCACHE,
1942 .pc_xdrressize = NFSD_BUFSIZE/4,
1943 },
1da177e4
LT
1944};
1945
1946struct svc_version nfsd_version4 = {
1947 .vs_vers = 4,
1948 .vs_nproc = 2,
1949 .vs_proc = nfsd_procedures4,
1950 .vs_dispatch = nfsd_dispatch,
1951 .vs_xdrsize = NFS4_SVC_XDRSIZE,
7e55b59b 1952 .vs_rpcb_optnl = 1,
1da177e4
LT
1953};
1954
1955/*
1956 * Local variables:
1957 * c-basic-offset: 8
1958 * End:
1959 */