2 * Server-side procedures for NFSv4.
4 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <andros@umich.edu>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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.
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.
35 #include <linux/file.h>
36 #include <linux/slab.h>
43 #define NFSDDBG_FACILITY NFSDDBG_PROC
45 static u32 nfsd_attrmask
[] = {
46 NFSD_WRITEABLE_ATTRS_WORD0
,
47 NFSD_WRITEABLE_ATTRS_WORD1
,
48 NFSD_WRITEABLE_ATTRS_WORD2
51 static u32 nfsd41_ex_attrmask
[] = {
52 NFSD_SUPPATTR_EXCLCREAT_WORD0
,
53 NFSD_SUPPATTR_EXCLCREAT_WORD1
,
54 NFSD_SUPPATTR_EXCLCREAT_WORD2
58 check_attr_support(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
59 u32
*bmval
, u32
*writable
)
61 struct dentry
*dentry
= cstate
->current_fh
.fh_dentry
;
64 * Check about attributes are supported by the NFSv4 server or not.
65 * According to spec, unsupported attributes return ERR_ATTRNOTSUPP.
67 if ((bmval
[0] & ~nfsd_suppattrs0(cstate
->minorversion
)) ||
68 (bmval
[1] & ~nfsd_suppattrs1(cstate
->minorversion
)) ||
69 (bmval
[2] & ~nfsd_suppattrs2(cstate
->minorversion
)))
70 return nfserr_attrnotsupp
;
73 * Check FATTR4_WORD0_ACL can be supported
74 * in current environment or not.
76 if (bmval
[0] & FATTR4_WORD0_ACL
) {
77 if (!IS_POSIXACL(dentry
->d_inode
))
78 return nfserr_attrnotsupp
;
82 * According to spec, read-only attributes return ERR_INVAL.
85 if ((bmval
[0] & ~writable
[0]) || (bmval
[1] & ~writable
[1]) ||
86 (bmval
[2] & ~writable
[2]))
94 nfsd4_check_open_attributes(struct svc_rqst
*rqstp
,
95 struct nfsd4_compound_state
*cstate
, struct nfsd4_open
*open
)
97 __be32 status
= nfs_ok
;
99 if (open
->op_create
== NFS4_OPEN_CREATE
) {
100 if (open
->op_createmode
== NFS4_CREATE_UNCHECKED
101 || open
->op_createmode
== NFS4_CREATE_GUARDED
)
102 status
= check_attr_support(rqstp
, cstate
,
103 open
->op_bmval
, nfsd_attrmask
);
104 else if (open
->op_createmode
== NFS4_CREATE_EXCLUSIVE4_1
)
105 status
= check_attr_support(rqstp
, cstate
,
106 open
->op_bmval
, nfsd41_ex_attrmask
);
113 is_create_with_attrs(struct nfsd4_open
*open
)
115 return open
->op_create
== NFS4_OPEN_CREATE
116 && (open
->op_createmode
== NFS4_CREATE_UNCHECKED
117 || open
->op_createmode
== NFS4_CREATE_GUARDED
118 || open
->op_createmode
== NFS4_CREATE_EXCLUSIVE4_1
);
122 * if error occurs when setting the acl, just clear the acl bit
123 * in the returned attr bitmap.
126 do_set_nfs4_acl(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
127 struct nfs4_acl
*acl
, u32
*bmval
)
131 status
= nfsd4_set_nfs4_acl(rqstp
, fhp
, acl
);
134 * We should probably fail the whole open at this point,
135 * but we've already created the file, so it's too late;
136 * So this seems the least of evils:
138 bmval
[0] &= ~FATTR4_WORD0_ACL
;
142 fh_dup2(struct svc_fh
*dst
, struct svc_fh
*src
)
145 dget(src
->fh_dentry
);
147 cache_get(&src
->fh_export
->h
);
152 do_open_permission(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
, int accmode
)
156 if (open
->op_truncate
&&
157 !(open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
))
160 accmode
|= NFSD_MAY_READ_IF_EXEC
;
162 if (open
->op_share_access
& NFS4_SHARE_ACCESS_READ
)
163 accmode
|= NFSD_MAY_READ
;
164 if (open
->op_share_access
& NFS4_SHARE_ACCESS_WRITE
)
165 accmode
|= (NFSD_MAY_WRITE
| NFSD_MAY_TRUNC
);
166 if (open
->op_share_deny
& NFS4_SHARE_DENY_READ
)
167 accmode
|= NFSD_MAY_WRITE
;
169 status
= fh_verify(rqstp
, current_fh
, S_IFREG
, accmode
);
174 static __be32
nfsd_check_obj_isreg(struct svc_fh
*fh
)
176 umode_t mode
= fh
->fh_dentry
->d_inode
->i_mode
;
183 * Using err_symlink as our catch-all case may look odd; but
184 * there's no other obvious error for this case in 4.0, and we
185 * happen to know that it will cause the linux v4 client to do
186 * the right thing on attempts to open something other than a
189 return nfserr_symlink
;
193 do_open_lookup(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
199 fh_init(&resfh
, NFS4_FHSIZE
);
200 open
->op_truncate
= 0;
202 if (open
->op_create
) {
203 /* FIXME: check session persistence and pnfs flags.
204 * The nfsv4.1 spec requires the following semantics:
206 * Persistent | pNFS | Server REQUIRED | Client Allowed
207 * Reply Cache | server | |
208 * -------------+--------+-----------------+--------------------
209 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
211 * | | and EXCLUSIVE4 | or EXCLUSIVE4
213 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
214 * yes | no | GUARDED4 | GUARDED4
215 * yes | yes | GUARDED4 | GUARDED4
219 * Note: create modes (UNCHECKED,GUARDED...) are the same
220 * in NFSv4 as in v3 except EXCLUSIVE4_1.
222 status
= do_nfsd_create(rqstp
, current_fh
, open
->op_fname
.data
,
223 open
->op_fname
.len
, &open
->op_iattr
,
224 &resfh
, open
->op_createmode
,
225 (u32
*)open
->op_verf
.data
,
226 &open
->op_truncate
, &open
->op_created
);
229 * Following rfc 3530 14.2.16, use the returned bitmask
230 * to indicate which attributes we used to store the
233 if (open
->op_createmode
== NFS4_CREATE_EXCLUSIVE
&& status
== 0)
234 open
->op_bmval
[1] = (FATTR4_WORD1_TIME_ACCESS
|
235 FATTR4_WORD1_TIME_MODIFY
);
237 status
= nfsd_lookup(rqstp
, current_fh
,
238 open
->op_fname
.data
, open
->op_fname
.len
, &resfh
);
239 fh_unlock(current_fh
);
243 status
= nfsd_check_obj_isreg(&resfh
);
247 if (is_create_with_attrs(open
) && open
->op_acl
!= NULL
)
248 do_set_nfs4_acl(rqstp
, &resfh
, open
->op_acl
, open
->op_bmval
);
250 set_change_info(&open
->op_cinfo
, current_fh
);
251 fh_dup2(current_fh
, &resfh
);
253 /* set reply cache */
254 fh_copy_shallow(&open
->op_openowner
->oo_owner
.so_replay
.rp_openfh
,
256 accmode
= NFSD_MAY_NOP
;
257 if (open
->op_created
)
258 accmode
|= NFSD_MAY_OWNER_OVERRIDE
;
259 status
= do_open_permission(rqstp
, current_fh
, open
, accmode
);
267 do_open_fhandle(struct svc_rqst
*rqstp
, struct svc_fh
*current_fh
, struct nfsd4_open
*open
)
272 /* Only reclaims from previously confirmed clients are valid */
273 if ((status
= nfs4_check_open_reclaim(&open
->op_clientid
)))
276 /* We don't know the target directory, and therefore can not
277 * set the change info
280 memset(&open
->op_cinfo
, 0, sizeof(struct nfsd4_change_info
));
282 /* set replay cache */
283 fh_copy_shallow(&open
->op_openowner
->oo_owner
.so_replay
.rp_openfh
,
284 ¤t_fh
->fh_handle
);
286 open
->op_truncate
= (open
->op_iattr
.ia_valid
& ATTR_SIZE
) &&
287 (open
->op_iattr
.ia_size
== 0);
289 * In the delegation case, the client is telling us about an
290 * open that it *already* performed locally, some time ago. We
291 * should let it succeed now if possible.
293 * In the case of a CLAIM_FH open, on the other hand, the client
294 * may be counting on us to enforce permissions (the Linux 4.1
295 * client uses this for normal opens, for example).
297 if (open
->op_claim_type
== NFS4_OPEN_CLAIM_DELEG_CUR_FH
)
298 accmode
= NFSD_MAY_OWNER_OVERRIDE
;
300 status
= do_open_permission(rqstp
, current_fh
, open
, accmode
);
306 copy_clientid(clientid_t
*clid
, struct nfsd4_session
*session
)
308 struct nfsd4_sessionid
*sid
=
309 (struct nfsd4_sessionid
*)session
->se_sessionid
.data
;
311 clid
->cl_boot
= sid
->clientid
.cl_boot
;
312 clid
->cl_id
= sid
->clientid
.cl_id
;
316 nfsd4_open(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
317 struct nfsd4_open
*open
)
320 struct nfsd4_compoundres
*resp
;
322 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
323 (int)open
->op_fname
.len
, open
->op_fname
.data
,
326 /* This check required by spec. */
327 if (open
->op_create
&& open
->op_claim_type
!= NFS4_OPEN_CLAIM_NULL
)
330 /* We don't yet support WANT bits: */
331 open
->op_share_access
&= NFS4_SHARE_ACCESS_MASK
;
333 open
->op_created
= 0;
336 * Before RECLAIM_COMPLETE done, server should deny new lock
338 if (nfsd4_has_session(cstate
) &&
339 !cstate
->session
->se_client
->cl_firststate
&&
340 open
->op_claim_type
!= NFS4_OPEN_CLAIM_PREVIOUS
)
343 if (nfsd4_has_session(cstate
))
344 copy_clientid(&open
->op_clientid
, cstate
->session
);
348 /* check seqid for replay. set nfs4_owner */
349 resp
= rqstp
->rq_resp
;
350 status
= nfsd4_process_open1(&resp
->cstate
, open
);
351 if (status
== nfserr_replay_me
) {
352 struct nfs4_replay
*rp
= &open
->op_openowner
->oo_owner
.so_replay
;
353 fh_put(&cstate
->current_fh
);
354 fh_copy_shallow(&cstate
->current_fh
.fh_handle
,
356 status
= fh_verify(rqstp
, &cstate
->current_fh
, 0, NFSD_MAY_NOP
);
358 dprintk("nfsd4_open: replay failed"
359 " restoring previous filehandle\n");
361 status
= nfserr_replay_me
;
366 status
= nfsd4_check_open_attributes(rqstp
, cstate
, open
);
370 /* Openowner is now set, so sequence id will get bumped. Now we need
371 * these checks before we do any creates: */
372 status
= nfserr_grace
;
373 if (locks_in_grace() && open
->op_claim_type
!= NFS4_OPEN_CLAIM_PREVIOUS
)
375 status
= nfserr_no_grace
;
376 if (!locks_in_grace() && open
->op_claim_type
== NFS4_OPEN_CLAIM_PREVIOUS
)
379 switch (open
->op_claim_type
) {
380 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
381 case NFS4_OPEN_CLAIM_NULL
:
382 status
= do_open_lookup(rqstp
, &cstate
->current_fh
,
387 case NFS4_OPEN_CLAIM_PREVIOUS
:
388 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
389 case NFS4_OPEN_CLAIM_FH
:
390 case NFS4_OPEN_CLAIM_DELEG_CUR_FH
:
391 status
= do_open_fhandle(rqstp
, &cstate
->current_fh
,
396 case NFS4_OPEN_CLAIM_DELEG_PREV_FH
:
397 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
398 open
->op_openowner
->oo_flags
|= NFS4_OO_CONFIRMED
;
399 dprintk("NFSD: unsupported OPEN claim type %d\n",
400 open
->op_claim_type
);
401 status
= nfserr_notsupp
;
404 dprintk("NFSD: Invalid OPEN claim type %d\n",
405 open
->op_claim_type
);
406 status
= nfserr_inval
;
410 * nfsd4_process_open2() does the actual opening of the file. If
411 * successful, it (1) truncates the file if open->op_truncate was
412 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
414 status
= nfsd4_process_open2(rqstp
, &cstate
->current_fh
, open
);
415 WARN_ON(status
&& open
->op_created
);
417 nfsd4_cleanup_open_state(open
, status
);
418 if (open
->op_openowner
)
419 cstate
->replay_owner
= &open
->op_openowner
->oo_owner
;
426 * filehandle-manipulating ops.
429 nfsd4_getfh(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
430 struct svc_fh
**getfh
)
432 if (!cstate
->current_fh
.fh_dentry
)
433 return nfserr_nofilehandle
;
435 *getfh
= &cstate
->current_fh
;
440 nfsd4_putfh(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
441 struct nfsd4_putfh
*putfh
)
443 fh_put(&cstate
->current_fh
);
444 cstate
->current_fh
.fh_handle
.fh_size
= putfh
->pf_fhlen
;
445 memcpy(&cstate
->current_fh
.fh_handle
.fh_base
, putfh
->pf_fhval
,
447 return fh_verify(rqstp
, &cstate
->current_fh
, 0, NFSD_MAY_BYPASS_GSS
);
451 nfsd4_putrootfh(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
456 fh_put(&cstate
->current_fh
);
457 status
= exp_pseudoroot(rqstp
, &cstate
->current_fh
);
462 nfsd4_restorefh(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
465 if (!cstate
->save_fh
.fh_dentry
)
466 return nfserr_restorefh
;
468 fh_dup2(&cstate
->current_fh
, &cstate
->save_fh
);
473 nfsd4_savefh(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
476 if (!cstate
->current_fh
.fh_dentry
)
477 return nfserr_nofilehandle
;
479 fh_dup2(&cstate
->save_fh
, &cstate
->current_fh
);
487 nfsd4_access(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
488 struct nfsd4_access
*access
)
490 if (access
->ac_req_access
& ~NFS3_ACCESS_FULL
)
493 access
->ac_resp_access
= access
->ac_req_access
;
494 return nfsd_access(rqstp
, &cstate
->current_fh
, &access
->ac_resp_access
,
495 &access
->ac_supported
);
499 nfsd4_commit(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
500 struct nfsd4_commit
*commit
)
502 u32
*p
= (u32
*)commit
->co_verf
.data
;
503 *p
++ = nfssvc_boot
.tv_sec
;
504 *p
++ = nfssvc_boot
.tv_usec
;
506 return nfsd_commit(rqstp
, &cstate
->current_fh
, commit
->co_offset
,
511 nfsd4_create(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
512 struct nfsd4_create
*create
)
518 fh_init(&resfh
, NFS4_FHSIZE
);
520 status
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFDIR
,
525 status
= check_attr_support(rqstp
, cstate
, create
->cr_bmval
,
530 switch (create
->cr_type
) {
532 /* ugh! we have to null-terminate the linktext, or
533 * vfs_symlink() will choke. it is always safe to
534 * null-terminate by brute force, since at worst we
535 * will overwrite the first byte of the create namelen
536 * in the XDR buffer, which has already been extracted
539 create
->cr_linkname
[create
->cr_linklen
] = 0;
541 status
= nfsd_symlink(rqstp
, &cstate
->current_fh
,
542 create
->cr_name
, create
->cr_namelen
,
543 create
->cr_linkname
, create
->cr_linklen
,
544 &resfh
, &create
->cr_iattr
);
548 rdev
= MKDEV(create
->cr_specdata1
, create
->cr_specdata2
);
549 if (MAJOR(rdev
) != create
->cr_specdata1
||
550 MINOR(rdev
) != create
->cr_specdata2
)
552 status
= nfsd_create(rqstp
, &cstate
->current_fh
,
553 create
->cr_name
, create
->cr_namelen
,
554 &create
->cr_iattr
, S_IFBLK
, rdev
, &resfh
);
558 rdev
= MKDEV(create
->cr_specdata1
, create
->cr_specdata2
);
559 if (MAJOR(rdev
) != create
->cr_specdata1
||
560 MINOR(rdev
) != create
->cr_specdata2
)
562 status
= nfsd_create(rqstp
, &cstate
->current_fh
,
563 create
->cr_name
, create
->cr_namelen
,
564 &create
->cr_iattr
,S_IFCHR
, rdev
, &resfh
);
568 status
= nfsd_create(rqstp
, &cstate
->current_fh
,
569 create
->cr_name
, create
->cr_namelen
,
570 &create
->cr_iattr
, S_IFSOCK
, 0, &resfh
);
574 status
= nfsd_create(rqstp
, &cstate
->current_fh
,
575 create
->cr_name
, create
->cr_namelen
,
576 &create
->cr_iattr
, S_IFIFO
, 0, &resfh
);
580 create
->cr_iattr
.ia_valid
&= ~ATTR_SIZE
;
581 status
= nfsd_create(rqstp
, &cstate
->current_fh
,
582 create
->cr_name
, create
->cr_namelen
,
583 &create
->cr_iattr
, S_IFDIR
, 0, &resfh
);
587 status
= nfserr_badtype
;
593 if (create
->cr_acl
!= NULL
)
594 do_set_nfs4_acl(rqstp
, &resfh
, create
->cr_acl
,
597 fh_unlock(&cstate
->current_fh
);
598 set_change_info(&create
->cr_cinfo
, &cstate
->current_fh
);
599 fh_dup2(&cstate
->current_fh
, &resfh
);
606 nfsd4_getattr(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
607 struct nfsd4_getattr
*getattr
)
611 status
= fh_verify(rqstp
, &cstate
->current_fh
, 0, NFSD_MAY_NOP
);
615 if (getattr
->ga_bmval
[1] & NFSD_WRITEONLY_ATTRS_WORD1
)
618 getattr
->ga_bmval
[0] &= nfsd_suppattrs0(cstate
->minorversion
);
619 getattr
->ga_bmval
[1] &= nfsd_suppattrs1(cstate
->minorversion
);
620 getattr
->ga_bmval
[2] &= nfsd_suppattrs2(cstate
->minorversion
);
622 getattr
->ga_fhp
= &cstate
->current_fh
;
627 nfsd4_link(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
628 struct nfsd4_link
*link
)
630 __be32 status
= nfserr_nofilehandle
;
632 if (!cstate
->save_fh
.fh_dentry
)
634 status
= nfsd_link(rqstp
, &cstate
->current_fh
,
635 link
->li_name
, link
->li_namelen
, &cstate
->save_fh
);
637 set_change_info(&link
->li_cinfo
, &cstate
->current_fh
);
641 static __be32
nfsd4_do_lookupp(struct svc_rqst
*rqstp
, struct svc_fh
*fh
)
643 struct svc_fh tmp_fh
;
646 fh_init(&tmp_fh
, NFS4_FHSIZE
);
647 ret
= exp_pseudoroot(rqstp
, &tmp_fh
);
650 if (tmp_fh
.fh_dentry
== fh
->fh_dentry
) {
655 return nfsd_lookup(rqstp
, fh
, "..", 2, fh
);
659 nfsd4_lookupp(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
662 return nfsd4_do_lookupp(rqstp
, &cstate
->current_fh
);
666 nfsd4_lookup(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
667 struct nfsd4_lookup
*lookup
)
669 return nfsd_lookup(rqstp
, &cstate
->current_fh
,
670 lookup
->lo_name
, lookup
->lo_len
,
671 &cstate
->current_fh
);
675 nfsd4_read(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
676 struct nfsd4_read
*read
)
680 /* no need to check permission - this will be done in nfsd_read() */
682 read
->rd_filp
= NULL
;
683 if (read
->rd_offset
>= OFFSET_MAX
)
688 if ((status
= nfs4_preprocess_stateid_op(cstate
, &read
->rd_stateid
,
689 RD_STATE
, &read
->rd_filp
))) {
690 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
694 get_file(read
->rd_filp
);
698 read
->rd_rqstp
= rqstp
;
699 read
->rd_fhp
= &cstate
->current_fh
;
704 nfsd4_readdir(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
705 struct nfsd4_readdir
*readdir
)
707 u64 cookie
= readdir
->rd_cookie
;
708 static const nfs4_verifier zeroverf
;
710 /* no need to check permission - this will be done in nfsd_readdir() */
712 if (readdir
->rd_bmval
[1] & NFSD_WRITEONLY_ATTRS_WORD1
)
715 readdir
->rd_bmval
[0] &= nfsd_suppattrs0(cstate
->minorversion
);
716 readdir
->rd_bmval
[1] &= nfsd_suppattrs1(cstate
->minorversion
);
717 readdir
->rd_bmval
[2] &= nfsd_suppattrs2(cstate
->minorversion
);
719 if ((cookie
== 1) || (cookie
== 2) ||
720 (cookie
== 0 && memcmp(readdir
->rd_verf
.data
, zeroverf
.data
, NFS4_VERIFIER_SIZE
)))
721 return nfserr_bad_cookie
;
723 readdir
->rd_rqstp
= rqstp
;
724 readdir
->rd_fhp
= &cstate
->current_fh
;
729 nfsd4_readlink(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
730 struct nfsd4_readlink
*readlink
)
732 readlink
->rl_rqstp
= rqstp
;
733 readlink
->rl_fhp
= &cstate
->current_fh
;
738 nfsd4_remove(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
739 struct nfsd4_remove
*remove
)
743 if (locks_in_grace())
745 status
= nfsd_unlink(rqstp
, &cstate
->current_fh
, 0,
746 remove
->rm_name
, remove
->rm_namelen
);
748 fh_unlock(&cstate
->current_fh
);
749 set_change_info(&remove
->rm_cinfo
, &cstate
->current_fh
);
755 nfsd4_rename(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
756 struct nfsd4_rename
*rename
)
758 __be32 status
= nfserr_nofilehandle
;
760 if (!cstate
->save_fh
.fh_dentry
)
762 if (locks_in_grace() && !(cstate
->save_fh
.fh_export
->ex_flags
763 & NFSEXP_NOSUBTREECHECK
))
765 status
= nfsd_rename(rqstp
, &cstate
->save_fh
, rename
->rn_sname
,
766 rename
->rn_snamelen
, &cstate
->current_fh
,
767 rename
->rn_tname
, rename
->rn_tnamelen
);
769 /* the underlying filesystem returns different error's than required
770 * by NFSv4. both save_fh and current_fh have been verified.. */
771 if (status
== nfserr_isdir
)
772 status
= nfserr_exist
;
773 else if ((status
== nfserr_notdir
) &&
774 (S_ISDIR(cstate
->save_fh
.fh_dentry
->d_inode
->i_mode
) &&
775 S_ISDIR(cstate
->current_fh
.fh_dentry
->d_inode
->i_mode
)))
776 status
= nfserr_exist
;
779 set_change_info(&rename
->rn_sinfo
, &cstate
->current_fh
);
780 set_change_info(&rename
->rn_tinfo
, &cstate
->save_fh
);
786 nfsd4_secinfo(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
787 struct nfsd4_secinfo
*secinfo
)
790 struct svc_export
*exp
;
791 struct dentry
*dentry
;
794 fh_init(&resfh
, NFS4_FHSIZE
);
795 err
= fh_verify(rqstp
, &cstate
->current_fh
, S_IFDIR
, NFSD_MAY_EXEC
);
798 err
= nfsd_lookup_dentry(rqstp
, &cstate
->current_fh
,
799 secinfo
->si_name
, secinfo
->si_namelen
,
803 if (dentry
->d_inode
== NULL
) {
807 secinfo
->si_exp
= exp
;
809 if (cstate
->minorversion
)
810 /* See rfc 5661 section 2.6.3.1.1.8 */
811 fh_put(&cstate
->current_fh
);
816 nfsd4_secinfo_no_name(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
817 struct nfsd4_secinfo_no_name
*sin
)
821 switch (sin
->sin_style
) {
822 case NFS4_SECINFO_STYLE4_CURRENT_FH
:
824 case NFS4_SECINFO_STYLE4_PARENT
:
825 err
= nfsd4_do_lookupp(rqstp
, &cstate
->current_fh
);
832 exp_get(cstate
->current_fh
.fh_export
);
833 sin
->sin_exp
= cstate
->current_fh
.fh_export
;
834 fh_put(&cstate
->current_fh
);
839 nfsd4_setattr(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
840 struct nfsd4_setattr
*setattr
)
842 __be32 status
= nfs_ok
;
845 if (setattr
->sa_iattr
.ia_valid
& ATTR_SIZE
) {
847 status
= nfs4_preprocess_stateid_op(cstate
,
848 &setattr
->sa_stateid
, WR_STATE
, NULL
);
851 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
855 err
= mnt_want_write(cstate
->current_fh
.fh_export
->ex_path
.mnt
);
857 return nfserrno(err
);
860 status
= check_attr_support(rqstp
, cstate
, setattr
->sa_bmval
,
865 if (setattr
->sa_acl
!= NULL
)
866 status
= nfsd4_set_nfs4_acl(rqstp
, &cstate
->current_fh
,
870 status
= nfsd_setattr(rqstp
, &cstate
->current_fh
, &setattr
->sa_iattr
,
873 mnt_drop_write(cstate
->current_fh
.fh_export
->ex_path
.mnt
);
878 nfsd4_write(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
879 struct nfsd4_write
*write
)
881 stateid_t
*stateid
= &write
->wr_stateid
;
882 struct file
*filp
= NULL
;
884 __be32 status
= nfs_ok
;
887 /* no need to check permission - this will be done in nfsd_write() */
889 if (write
->wr_offset
>= OFFSET_MAX
)
893 status
= nfs4_preprocess_stateid_op(cstate
, stateid
, WR_STATE
, &filp
);
896 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
903 cnt
= write
->wr_buflen
;
904 write
->wr_how_written
= write
->wr_stable_how
;
905 p
= (u32
*)write
->wr_verifier
.data
;
906 *p
++ = nfssvc_boot
.tv_sec
;
907 *p
++ = nfssvc_boot
.tv_usec
;
909 status
= nfsd_write(rqstp
, &cstate
->current_fh
, filp
,
910 write
->wr_offset
, rqstp
->rq_vec
, write
->wr_vlen
,
911 &cnt
, &write
->wr_how_written
);
915 write
->wr_bytes_written
= cnt
;
920 /* This routine never returns NFS_OK! If there are no other errors, it
921 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
922 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
923 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
926 _nfsd4_verify(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
927 struct nfsd4_verify
*verify
)
933 status
= fh_verify(rqstp
, &cstate
->current_fh
, 0, NFSD_MAY_NOP
);
937 status
= check_attr_support(rqstp
, cstate
, verify
->ve_bmval
, NULL
);
941 if ((verify
->ve_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
)
942 || (verify
->ve_bmval
[1] & NFSD_WRITEONLY_ATTRS_WORD1
))
944 if (verify
->ve_attrlen
& 3)
948 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
950 count
= 4 + (verify
->ve_attrlen
>> 2);
951 buf
= kmalloc(count
<< 2, GFP_KERNEL
);
953 return nfserr_jukebox
;
955 status
= nfsd4_encode_fattr(&cstate
->current_fh
,
956 cstate
->current_fh
.fh_export
,
957 cstate
->current_fh
.fh_dentry
, buf
,
958 &count
, verify
->ve_bmval
,
961 /* this means that nfsd4_encode_fattr() ran out of space */
962 if (status
== nfserr_resource
&& count
== 0)
963 status
= nfserr_not_same
;
968 p
= buf
+ 1 + ntohl(buf
[0]);
969 status
= nfserr_not_same
;
970 if (ntohl(*p
++) != verify
->ve_attrlen
)
972 if (!memcmp(p
, verify
->ve_attrval
, verify
->ve_attrlen
))
973 status
= nfserr_same
;
981 nfsd4_nverify(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
982 struct nfsd4_verify
*verify
)
986 status
= _nfsd4_verify(rqstp
, cstate
, verify
);
987 return status
== nfserr_not_same
? nfs_ok
: status
;
991 nfsd4_verify(struct svc_rqst
*rqstp
, struct nfsd4_compound_state
*cstate
,
992 struct nfsd4_verify
*verify
)
996 status
= _nfsd4_verify(rqstp
, cstate
, verify
);
997 return status
== nfserr_same
? nfs_ok
: status
;
1004 nfsd4_proc_null(struct svc_rqst
*rqstp
, void *argp
, void *resp
)
1009 static inline void nfsd4_increment_op_stats(u32 opnum
)
1011 if (opnum
>= FIRST_NFS4_OP
&& opnum
<= LAST_NFS4_OP
)
1012 nfsdstats
.nfs4_opcount
[opnum
]++;
1015 typedef __be32(*nfsd4op_func
)(struct svc_rqst
*, struct nfsd4_compound_state
*,
1017 typedef u32(*nfsd4op_rsize
)(struct svc_rqst
*, struct nfsd4_op
*op
);
1019 enum nfsd4_op_flags
{
1020 ALLOWED_WITHOUT_FH
= 1 << 0, /* No current filehandle required */
1021 ALLOWED_ON_ABSENT_FS
= 1 << 1, /* ops processed on absent fs */
1022 ALLOWED_AS_FIRST_OP
= 1 << 2, /* ops reqired first in compound */
1023 /* For rfc 5661 section 2.6.3.1.1: */
1024 OP_HANDLES_WRONGSEC
= 1 << 3,
1025 OP_IS_PUTFH_LIKE
= 1 << 4,
1027 * These are the ops whose result size we estimate before
1028 * encoding, to avoid performing an op then not being able to
1029 * respond or cache a response. This includes writes and setattrs
1030 * as well as the operations usually called "nonidempotent":
1032 OP_MODIFIES_SOMETHING
= 1 << 5,
1034 * Cache compounds containing these ops in the xid-based drc:
1035 * We use the DRC for compounds containing non-idempotent
1036 * operations, *except* those that are 4.1-specific (since
1037 * sessions provide their own EOS), and except for stateful
1038 * operations other than setclientid and setclientid_confirm
1039 * (since sequence numbers provide EOS for open, lock, etc in
1042 OP_CACHEME
= 1 << 6,
1045 struct nfsd4_operation
{
1046 nfsd4op_func op_func
;
1049 /* Try to get response size before operation */
1050 nfsd4op_rsize op_rsize_bop
;
1053 static struct nfsd4_operation nfsd4_ops
[];
1055 static const char *nfsd4_op_name(unsigned opnum
);
1058 * Enforce NFSv4.1 COMPOUND ordering rules:
1060 * Also note, enforced elsewhere:
1061 * - SEQUENCE other than as first op results in
1062 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
1063 * - BIND_CONN_TO_SESSION must be the only op in its compound.
1064 * (Enforced in nfsd4_bind_conn_to_session().)
1065 * - DESTROY_SESSION must be the final operation in a compound, if
1066 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
1067 * (Enforced in nfsd4_destroy_session().)
1069 static __be32
nfs41_check_op_ordering(struct nfsd4_compoundargs
*args
)
1071 struct nfsd4_op
*op
= &args
->ops
[0];
1073 /* These ordering requirements don't apply to NFSv4.0: */
1074 if (args
->minorversion
== 0)
1076 /* This is weird, but OK, not our problem: */
1077 if (args
->opcnt
== 0)
1079 if (op
->status
== nfserr_op_illegal
)
1081 if (!(nfsd4_ops
[op
->opnum
].op_flags
& ALLOWED_AS_FIRST_OP
))
1082 return nfserr_op_not_in_session
;
1083 if (op
->opnum
== OP_SEQUENCE
)
1085 if (args
->opcnt
!= 1)
1086 return nfserr_not_only_op
;
1090 static inline struct nfsd4_operation
*OPDESC(struct nfsd4_op
*op
)
1092 return &nfsd4_ops
[op
->opnum
];
1095 bool nfsd4_cache_this_op(struct nfsd4_op
*op
)
1097 return OPDESC(op
)->op_flags
& OP_CACHEME
;
1100 static bool need_wrongsec_check(struct svc_rqst
*rqstp
)
1102 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
1103 struct nfsd4_compoundargs
*argp
= rqstp
->rq_argp
;
1104 struct nfsd4_op
*this = &argp
->ops
[resp
->opcnt
- 1];
1105 struct nfsd4_op
*next
= &argp
->ops
[resp
->opcnt
];
1106 struct nfsd4_operation
*thisd
;
1107 struct nfsd4_operation
*nextd
;
1109 thisd
= OPDESC(this);
1111 * Most ops check wronsec on our own; only the putfh-like ops
1112 * have special rules.
1114 if (!(thisd
->op_flags
& OP_IS_PUTFH_LIKE
))
1117 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
1118 * put-filehandle operation if we're not going to use the
1121 if (argp
->opcnt
== resp
->opcnt
)
1124 nextd
= OPDESC(next
);
1126 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
1127 * errors themselves as necessary; others should check for them
1130 return !(nextd
->op_flags
& OP_HANDLES_WRONGSEC
);
1137 nfsd4_proc_compound(struct svc_rqst
*rqstp
,
1138 struct nfsd4_compoundargs
*args
,
1139 struct nfsd4_compoundres
*resp
)
1141 struct nfsd4_op
*op
;
1142 struct nfsd4_operation
*opdesc
;
1143 struct nfsd4_compound_state
*cstate
= &resp
->cstate
;
1148 resp
->xbuf
= &rqstp
->rq_res
;
1149 resp
->p
= rqstp
->rq_res
.head
[0].iov_base
+
1150 rqstp
->rq_res
.head
[0].iov_len
;
1151 resp
->tagp
= resp
->p
;
1152 /* reserve space for: taglen, tag, and opcnt */
1153 resp
->p
+= 2 + XDR_QUADLEN(args
->taglen
);
1154 resp
->end
= rqstp
->rq_res
.head
[0].iov_base
+ PAGE_SIZE
;
1155 resp
->taglen
= args
->taglen
;
1156 resp
->tag
= args
->tag
;
1158 resp
->rqstp
= rqstp
;
1159 resp
->cstate
.minorversion
= args
->minorversion
;
1160 resp
->cstate
.replay_owner
= NULL
;
1161 resp
->cstate
.session
= NULL
;
1162 fh_init(&resp
->cstate
.current_fh
, NFS4_FHSIZE
);
1163 fh_init(&resp
->cstate
.save_fh
, NFS4_FHSIZE
);
1165 * Don't use the deferral mechanism for NFSv4; compounds make it
1166 * too hard to avoid non-idempotency problems.
1168 rqstp
->rq_usedeferral
= 0;
1171 * According to RFC3010, this takes precedence over all other errors.
1173 status
= nfserr_minor_vers_mismatch
;
1174 if (args
->minorversion
> nfsd_supported_minorversion
)
1177 status
= nfs41_check_op_ordering(args
);
1180 op
->status
= status
;
1184 while (!status
&& resp
->opcnt
< args
->opcnt
) {
1185 op
= &args
->ops
[resp
->opcnt
++];
1187 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
1188 resp
->opcnt
, args
->opcnt
, op
->opnum
,
1189 nfsd4_op_name(op
->opnum
));
1191 * The XDR decode routines may have pre-set op->status;
1192 * for example, if there is a miscellaneous XDR error
1193 * it will be set to nfserr_bad_xdr.
1198 /* We must be able to encode a successful response to
1199 * this operation, with enough room left over to encode a
1200 * failed response to the next operation. If we don't
1201 * have enough room, fail with ERR_RESOURCE.
1203 slack_bytes
= (char *)resp
->end
- (char *)resp
->p
;
1204 if (slack_bytes
< COMPOUND_SLACK_SPACE
1205 + COMPOUND_ERR_SLACK_SPACE
) {
1206 BUG_ON(slack_bytes
< COMPOUND_ERR_SLACK_SPACE
);
1207 op
->status
= nfserr_resource
;
1211 opdesc
= OPDESC(op
);
1213 if (!cstate
->current_fh
.fh_dentry
) {
1214 if (!(opdesc
->op_flags
& ALLOWED_WITHOUT_FH
)) {
1215 op
->status
= nfserr_nofilehandle
;
1218 } else if (cstate
->current_fh
.fh_export
->ex_fslocs
.migrated
&&
1219 !(opdesc
->op_flags
& ALLOWED_ON_ABSENT_FS
)) {
1220 op
->status
= nfserr_moved
;
1224 /* If op is non-idempotent */
1225 if (opdesc
->op_flags
& OP_MODIFIES_SOMETHING
) {
1226 plen
= opdesc
->op_rsize_bop(rqstp
, op
);
1228 * If there's still another operation, make sure
1229 * we'll have space to at least encode an error:
1231 if (resp
->opcnt
< args
->opcnt
)
1232 plen
+= COMPOUND_ERR_SLACK_SPACE
;
1233 op
->status
= nfsd4_check_resp_size(resp
, plen
);
1239 if (opdesc
->op_func
)
1240 op
->status
= opdesc
->op_func(rqstp
, cstate
, &op
->u
);
1242 BUG_ON(op
->status
== nfs_ok
);
1244 if (!op
->status
&& need_wrongsec_check(rqstp
))
1245 op
->status
= check_nfsd_access(cstate
->current_fh
.fh_export
, rqstp
);
1248 /* Only from SEQUENCE */
1249 if (resp
->cstate
.status
== nfserr_replay_cache
) {
1250 dprintk("%s NFS4.1 replay from cache\n", __func__
);
1251 status
= op
->status
;
1254 if (op
->status
== nfserr_replay_me
) {
1255 op
->replay
= &cstate
->replay_owner
->so_replay
;
1256 nfsd4_encode_replay(resp
, op
);
1257 status
= op
->status
= op
->replay
->rp_status
;
1259 nfsd4_encode_operation(resp
, op
);
1260 status
= op
->status
;
1263 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
1264 args
->ops
, args
->opcnt
, resp
->opcnt
, op
->opnum
,
1265 be32_to_cpu(status
));
1267 if (cstate
->replay_owner
) {
1268 nfs4_unlock_state();
1269 cstate
->replay_owner
= NULL
;
1271 /* XXX Ugh, we need to get rid of this kind of special case: */
1272 if (op
->opnum
== OP_READ
&& op
->u
.read
.rd_filp
)
1273 fput(op
->u
.read
.rd_filp
);
1275 nfsd4_increment_op_stats(op
->opnum
);
1278 resp
->cstate
.status
= status
;
1279 fh_put(&resp
->cstate
.current_fh
);
1280 fh_put(&resp
->cstate
.save_fh
);
1281 BUG_ON(resp
->cstate
.replay_owner
);
1283 /* Reset deferral mechanism for RPC deferrals */
1284 rqstp
->rq_usedeferral
= 1;
1285 dprintk("nfsv4 compound returned %d\n", ntohl(status
));
1289 #define op_encode_hdr_size (2)
1290 #define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
1291 #define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
1292 #define op_encode_change_info_maxsz (5)
1293 #define nfs4_fattr_bitmap_maxsz (4)
1295 #define op_encode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1296 #define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
1298 #define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1300 #define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
1301 #define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
1302 op_encode_ace_maxsz)
1304 #define op_encode_channel_attrs_maxsz (6 + 1 + 1)
1306 static inline u32
nfsd4_only_status_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1308 return (op_encode_hdr_size
) * sizeof(__be32
);
1311 static inline u32
nfsd4_status_stateid_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1313 return (op_encode_hdr_size
+ op_encode_stateid_maxsz
)* sizeof(__be32
);
1316 static inline u32
nfsd4_commit_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1318 return (op_encode_hdr_size
+ op_encode_verifier_maxsz
) * sizeof(__be32
);
1321 static inline u32
nfsd4_create_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1323 return (op_encode_hdr_size
+ op_encode_change_info_maxsz
1324 + nfs4_fattr_bitmap_maxsz
) * sizeof(__be32
);
1327 static inline u32
nfsd4_link_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1329 return (op_encode_hdr_size
+ op_encode_change_info_maxsz
)
1333 static inline u32
nfsd4_lock_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1335 return (op_encode_hdr_size
+ op_encode_lock_denied_maxsz
)
1339 static inline u32
nfsd4_open_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1341 return (op_encode_hdr_size
+ op_encode_stateid_maxsz
1342 + op_encode_change_info_maxsz
+ 1
1343 + nfs4_fattr_bitmap_maxsz
1344 + op_encode_delegation_maxsz
) * sizeof(__be32
);
1347 static inline u32
nfsd4_read_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1349 u32 maxcount
= 0, rlen
= 0;
1351 maxcount
= svc_max_payload(rqstp
);
1352 rlen
= op
->u
.read
.rd_length
;
1354 if (rlen
> maxcount
)
1357 return (op_encode_hdr_size
+ 2) * sizeof(__be32
) + rlen
;
1360 static inline u32
nfsd4_readdir_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1362 u32 rlen
= op
->u
.readdir
.rd_maxcount
;
1364 if (rlen
> PAGE_SIZE
)
1367 return (op_encode_hdr_size
+ op_encode_verifier_maxsz
)
1368 * sizeof(__be32
) + rlen
;
1371 static inline u32
nfsd4_remove_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1373 return (op_encode_hdr_size
+ op_encode_change_info_maxsz
)
1377 static inline u32
nfsd4_rename_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1379 return (op_encode_hdr_size
+ op_encode_change_info_maxsz
1380 + op_encode_change_info_maxsz
) * sizeof(__be32
);
1383 static inline u32
nfsd4_setattr_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1385 return (op_encode_hdr_size
+ nfs4_fattr_bitmap_maxsz
) * sizeof(__be32
);
1388 static inline u32
nfsd4_setclientid_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1390 return (op_encode_hdr_size
+ 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE
)) *
1394 static inline u32
nfsd4_write_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1396 return (op_encode_hdr_size
+ op_encode_verifier_maxsz
) * sizeof(__be32
);
1399 static inline u32
nfsd4_exchange_id_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1401 return (op_encode_hdr_size
+ 2 + 1 + /* eir_clientid, eir_sequenceid */\
1402 1 + 1 + 0 + /* eir_flags, spr_how, SP4_NONE (for now) */\
1403 2 + /*eir_server_owner.so_minor_id */\
1404 /* eir_server_owner.so_major_id<> */\
1405 XDR_QUADLEN(NFS4_OPAQUE_LIMIT
) + 1 +\
1406 /* eir_server_scope<> */\
1407 XDR_QUADLEN(NFS4_OPAQUE_LIMIT
) + 1 +\
1408 1 + /* eir_server_impl_id array length */\
1409 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32
);
1412 static inline u32
nfsd4_bind_conn_to_session_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1414 return (op_encode_hdr_size
+ \
1415 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN
) + /* bctsr_sessid */\
1416 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32
);
1419 static inline u32
nfsd4_create_session_rsize(struct svc_rqst
*rqstp
, struct nfsd4_op
*op
)
1421 return (op_encode_hdr_size
+ \
1422 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN
) + /* sessionid */\
1423 2 + /* csr_sequence, csr_flags */\
1424 op_encode_channel_attrs_maxsz
+ \
1425 op_encode_channel_attrs_maxsz
) * sizeof(__be32
);
1428 static struct nfsd4_operation nfsd4_ops
[] = {
1430 .op_func
= (nfsd4op_func
)nfsd4_access
,
1431 .op_name
= "OP_ACCESS",
1434 .op_func
= (nfsd4op_func
)nfsd4_close
,
1435 .op_flags
= OP_MODIFIES_SOMETHING
,
1436 .op_name
= "OP_CLOSE",
1437 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_status_stateid_rsize
,
1440 .op_func
= (nfsd4op_func
)nfsd4_commit
,
1441 .op_flags
= OP_MODIFIES_SOMETHING
,
1442 .op_name
= "OP_COMMIT",
1443 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_commit_rsize
,
1446 .op_func
= (nfsd4op_func
)nfsd4_create
,
1447 .op_flags
= OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1448 .op_name
= "OP_CREATE",
1449 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_create_rsize
,
1451 [OP_DELEGRETURN
] = {
1452 .op_func
= (nfsd4op_func
)nfsd4_delegreturn
,
1453 .op_flags
= OP_MODIFIES_SOMETHING
,
1454 .op_name
= "OP_DELEGRETURN",
1455 .op_rsize_bop
= nfsd4_only_status_rsize
,
1458 .op_func
= (nfsd4op_func
)nfsd4_getattr
,
1459 .op_flags
= ALLOWED_ON_ABSENT_FS
,
1460 .op_name
= "OP_GETATTR",
1463 .op_func
= (nfsd4op_func
)nfsd4_getfh
,
1464 .op_name
= "OP_GETFH",
1467 .op_func
= (nfsd4op_func
)nfsd4_link
,
1468 .op_flags
= ALLOWED_ON_ABSENT_FS
| OP_MODIFIES_SOMETHING
1470 .op_name
= "OP_LINK",
1471 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_link_rsize
,
1474 .op_func
= (nfsd4op_func
)nfsd4_lock
,
1475 .op_flags
= OP_MODIFIES_SOMETHING
,
1476 .op_name
= "OP_LOCK",
1477 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_lock_rsize
,
1480 .op_func
= (nfsd4op_func
)nfsd4_lockt
,
1481 .op_name
= "OP_LOCKT",
1484 .op_func
= (nfsd4op_func
)nfsd4_locku
,
1485 .op_flags
= OP_MODIFIES_SOMETHING
,
1486 .op_name
= "OP_LOCKU",
1487 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_status_stateid_rsize
,
1490 .op_func
= (nfsd4op_func
)nfsd4_lookup
,
1491 .op_flags
= OP_HANDLES_WRONGSEC
,
1492 .op_name
= "OP_LOOKUP",
1495 .op_func
= (nfsd4op_func
)nfsd4_lookupp
,
1496 .op_flags
= OP_HANDLES_WRONGSEC
,
1497 .op_name
= "OP_LOOKUPP",
1500 .op_func
= (nfsd4op_func
)nfsd4_nverify
,
1501 .op_name
= "OP_NVERIFY",
1504 .op_func
= (nfsd4op_func
)nfsd4_open
,
1505 .op_flags
= OP_HANDLES_WRONGSEC
| OP_MODIFIES_SOMETHING
,
1506 .op_name
= "OP_OPEN",
1507 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_open_rsize
,
1509 [OP_OPEN_CONFIRM
] = {
1510 .op_func
= (nfsd4op_func
)nfsd4_open_confirm
,
1511 .op_flags
= OP_MODIFIES_SOMETHING
,
1512 .op_name
= "OP_OPEN_CONFIRM",
1513 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_status_stateid_rsize
,
1515 [OP_OPEN_DOWNGRADE
] = {
1516 .op_func
= (nfsd4op_func
)nfsd4_open_downgrade
,
1517 .op_flags
= OP_MODIFIES_SOMETHING
,
1518 .op_name
= "OP_OPEN_DOWNGRADE",
1519 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_status_stateid_rsize
,
1522 .op_func
= (nfsd4op_func
)nfsd4_putfh
,
1523 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1524 | OP_IS_PUTFH_LIKE
| OP_MODIFIES_SOMETHING
,
1525 .op_name
= "OP_PUTFH",
1526 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1529 .op_func
= (nfsd4op_func
)nfsd4_putrootfh
,
1530 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1531 | OP_IS_PUTFH_LIKE
| OP_MODIFIES_SOMETHING
,
1532 .op_name
= "OP_PUTPUBFH",
1533 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1536 .op_func
= (nfsd4op_func
)nfsd4_putrootfh
,
1537 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1538 | OP_IS_PUTFH_LIKE
| OP_MODIFIES_SOMETHING
,
1539 .op_name
= "OP_PUTROOTFH",
1540 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1543 .op_func
= (nfsd4op_func
)nfsd4_read
,
1544 .op_flags
= OP_MODIFIES_SOMETHING
,
1545 .op_name
= "OP_READ",
1546 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_read_rsize
,
1549 .op_func
= (nfsd4op_func
)nfsd4_readdir
,
1550 .op_flags
= OP_MODIFIES_SOMETHING
,
1551 .op_name
= "OP_READDIR",
1552 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_readdir_rsize
,
1555 .op_func
= (nfsd4op_func
)nfsd4_readlink
,
1556 .op_name
= "OP_READLINK",
1559 .op_func
= (nfsd4op_func
)nfsd4_remove
,
1560 .op_flags
= OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1561 .op_name
= "OP_REMOVE",
1562 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_remove_rsize
,
1565 .op_func
= (nfsd4op_func
)nfsd4_rename
,
1566 .op_flags
= OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1567 .op_name
= "OP_RENAME",
1568 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_rename_rsize
,
1571 .op_func
= (nfsd4op_func
)nfsd4_renew
,
1572 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1573 | OP_MODIFIES_SOMETHING
,
1574 .op_name
= "OP_RENEW",
1575 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1579 .op_func
= (nfsd4op_func
)nfsd4_restorefh
,
1580 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1581 | OP_IS_PUTFH_LIKE
| OP_MODIFIES_SOMETHING
,
1582 .op_name
= "OP_RESTOREFH",
1583 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1586 .op_func
= (nfsd4op_func
)nfsd4_savefh
,
1587 .op_flags
= OP_HANDLES_WRONGSEC
| OP_MODIFIES_SOMETHING
,
1588 .op_name
= "OP_SAVEFH",
1589 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1592 .op_func
= (nfsd4op_func
)nfsd4_secinfo
,
1593 .op_flags
= OP_HANDLES_WRONGSEC
,
1594 .op_name
= "OP_SECINFO",
1597 .op_func
= (nfsd4op_func
)nfsd4_setattr
,
1598 .op_name
= "OP_SETATTR",
1599 .op_flags
= OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1600 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_setattr_rsize
,
1602 [OP_SETCLIENTID
] = {
1603 .op_func
= (nfsd4op_func
)nfsd4_setclientid
,
1604 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1605 | OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1606 .op_name
= "OP_SETCLIENTID",
1607 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_setclientid_rsize
,
1609 [OP_SETCLIENTID_CONFIRM
] = {
1610 .op_func
= (nfsd4op_func
)nfsd4_setclientid_confirm
,
1611 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1612 | OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1613 .op_name
= "OP_SETCLIENTID_CONFIRM",
1614 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1617 .op_func
= (nfsd4op_func
)nfsd4_verify
,
1618 .op_name
= "OP_VERIFY",
1621 .op_func
= (nfsd4op_func
)nfsd4_write
,
1622 .op_flags
= OP_MODIFIES_SOMETHING
| OP_CACHEME
,
1623 .op_name
= "OP_WRITE",
1624 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_write_rsize
,
1626 [OP_RELEASE_LOCKOWNER
] = {
1627 .op_func
= (nfsd4op_func
)nfsd4_release_lockowner
,
1628 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_ON_ABSENT_FS
1629 | OP_MODIFIES_SOMETHING
,
1630 .op_name
= "OP_RELEASE_LOCKOWNER",
1631 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1634 /* NFSv4.1 operations */
1635 [OP_EXCHANGE_ID
] = {
1636 .op_func
= (nfsd4op_func
)nfsd4_exchange_id
,
1637 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
1638 | OP_MODIFIES_SOMETHING
,
1639 .op_name
= "OP_EXCHANGE_ID",
1640 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_exchange_id_rsize
,
1642 [OP_BIND_CONN_TO_SESSION
] = {
1643 .op_func
= (nfsd4op_func
)nfsd4_bind_conn_to_session
,
1644 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
1645 | OP_MODIFIES_SOMETHING
,
1646 .op_name
= "OP_BIND_CONN_TO_SESSION",
1647 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_bind_conn_to_session_rsize
,
1649 [OP_CREATE_SESSION
] = {
1650 .op_func
= (nfsd4op_func
)nfsd4_create_session
,
1651 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
1652 | OP_MODIFIES_SOMETHING
,
1653 .op_name
= "OP_CREATE_SESSION",
1654 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_create_session_rsize
,
1656 [OP_DESTROY_SESSION
] = {
1657 .op_func
= (nfsd4op_func
)nfsd4_destroy_session
,
1658 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
1659 | OP_MODIFIES_SOMETHING
,
1660 .op_name
= "OP_DESTROY_SESSION",
1661 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1664 .op_func
= (nfsd4op_func
)nfsd4_sequence
,
1665 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
,
1666 .op_name
= "OP_SEQUENCE",
1668 [OP_DESTROY_CLIENTID
] = {
1669 .op_func
= (nfsd4op_func
)nfsd4_destroy_clientid
,
1670 .op_flags
= ALLOWED_WITHOUT_FH
| ALLOWED_AS_FIRST_OP
1671 | OP_MODIFIES_SOMETHING
,
1672 .op_name
= "OP_DESTROY_CLIENTID",
1673 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1675 [OP_RECLAIM_COMPLETE
] = {
1676 .op_func
= (nfsd4op_func
)nfsd4_reclaim_complete
,
1677 .op_flags
= ALLOWED_WITHOUT_FH
| OP_MODIFIES_SOMETHING
,
1678 .op_name
= "OP_RECLAIM_COMPLETE",
1679 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1681 [OP_SECINFO_NO_NAME
] = {
1682 .op_func
= (nfsd4op_func
)nfsd4_secinfo_no_name
,
1683 .op_flags
= OP_HANDLES_WRONGSEC
,
1684 .op_name
= "OP_SECINFO_NO_NAME",
1686 [OP_TEST_STATEID
] = {
1687 .op_func
= (nfsd4op_func
)nfsd4_test_stateid
,
1688 .op_flags
= ALLOWED_WITHOUT_FH
,
1689 .op_name
= "OP_TEST_STATEID",
1691 [OP_FREE_STATEID
] = {
1692 .op_func
= (nfsd4op_func
)nfsd4_free_stateid
,
1693 .op_flags
= ALLOWED_WITHOUT_FH
| OP_MODIFIES_SOMETHING
,
1694 .op_name
= "OP_FREE_STATEID",
1695 .op_rsize_bop
= (nfsd4op_rsize
)nfsd4_only_status_rsize
,
1699 static const char *nfsd4_op_name(unsigned opnum
)
1701 if (opnum
< ARRAY_SIZE(nfsd4_ops
))
1702 return nfsd4_ops
[opnum
].op_name
;
1703 return "unknown_operation";
1706 #define nfsd4_voidres nfsd4_voidargs
1707 struct nfsd4_voidargs
{ int dummy
; };
1709 static struct svc_procedure nfsd_procedures4
[2] = {
1711 .pc_func
= (svc_procfunc
) nfsd4_proc_null
,
1712 .pc_encode
= (kxdrproc_t
) nfs4svc_encode_voidres
,
1713 .pc_argsize
= sizeof(struct nfsd4_voidargs
),
1714 .pc_ressize
= sizeof(struct nfsd4_voidres
),
1715 .pc_cachetype
= RC_NOCACHE
,
1718 [NFSPROC4_COMPOUND
] = {
1719 .pc_func
= (svc_procfunc
) nfsd4_proc_compound
,
1720 .pc_decode
= (kxdrproc_t
) nfs4svc_decode_compoundargs
,
1721 .pc_encode
= (kxdrproc_t
) nfs4svc_encode_compoundres
,
1722 .pc_argsize
= sizeof(struct nfsd4_compoundargs
),
1723 .pc_ressize
= sizeof(struct nfsd4_compoundres
),
1724 .pc_release
= nfsd4_release_compoundargs
,
1725 .pc_cachetype
= RC_NOCACHE
,
1726 .pc_xdrressize
= NFSD_BUFSIZE
/4,
1730 struct svc_version nfsd_version4
= {
1733 .vs_proc
= nfsd_procedures4
,
1734 .vs_dispatch
= nfsd_dispatch
,
1735 .vs_xdrsize
= NFS4_SVC_XDRSIZE
,