2 * Server-side XDR 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 * TODO: Neil Brown made the following observation: We currently
36 * initially reserve NFSD_BUFSIZE space on the transmit queue and
37 * never release any of that until the request is complete.
38 * It would be good to calculate a new maximum response size while
39 * decoding the COMPOUND, and call svc_reserve with this number
40 * at the end of nfs4svc_decode_compoundargs.
43 #include <linux/slab.h>
44 #include <linux/namei.h>
45 #include <linux/statfs.h>
46 #include <linux/utsname.h>
47 #include <linux/pagemap.h>
48 #include <linux/sunrpc/svcauth_gss.h>
58 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
59 #include <linux/security.h>
63 #define NFSDDBG_FACILITY NFSDDBG_XDR
66 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
67 * directory in order to indicate to the client that a filesystem boundary is present
68 * We use a fixed fsid for a referral
70 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
71 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
74 check_filename(char *str
, int len
)
80 if (isdotent(str
, len
))
81 return nfserr_badname
;
82 for (i
= 0; i
< len
; i
++)
84 return nfserr_badname
;
96 dprintk("NFSD: xdr error (%s:%d)\n", \
97 __FILE__, __LINE__); \
98 status = nfserr_bad_xdr; \
101 #define READMEM(x,nbytes) do { \
103 p += XDR_QUADLEN(nbytes); \
105 #define SAVEMEM(x,nbytes) do { \
106 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
107 savemem(argp, p, nbytes) : \
109 dprintk("NFSD: xdr error (%s:%d)\n", \
110 __FILE__, __LINE__); \
113 p += XDR_QUADLEN(nbytes); \
115 #define COPYMEM(x,nbytes) do { \
116 memcpy((x), p, nbytes); \
117 p += XDR_QUADLEN(nbytes); \
120 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
121 #define READ_BUF(nbytes) do { \
122 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
124 argp->p += XDR_QUADLEN(nbytes); \
125 } else if (!(p = read_buf(argp, nbytes))) { \
126 dprintk("NFSD: xdr error (%s:%d)\n", \
127 __FILE__, __LINE__); \
132 static void next_decode_page(struct nfsd4_compoundargs
*argp
)
134 argp
->p
= page_address(argp
->pagelist
[0]);
136 if (argp
->pagelen
< PAGE_SIZE
) {
137 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
140 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
141 argp
->pagelen
-= PAGE_SIZE
;
145 static __be32
*read_buf(struct nfsd4_compoundargs
*argp
, u32 nbytes
)
147 /* We want more bytes than seem to be available.
148 * Maybe we need a new page, maybe we have just run out
150 unsigned int avail
= (char *)argp
->end
- (char *)argp
->p
;
152 if (avail
+ argp
->pagelen
< nbytes
)
154 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
156 /* ok, we can do it with the current plus the next page */
157 if (nbytes
<= sizeof(argp
->tmp
))
161 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
167 * The following memcpy is safe because read_buf is always
168 * called with nbytes > avail, and the two cases above both
169 * guarantee p points to at least nbytes bytes.
171 memcpy(p
, argp
->p
, avail
);
172 next_decode_page(argp
);
173 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
174 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
178 static int zero_clientid(clientid_t
*clid
)
180 return (clid
->cl_boot
== 0) && (clid
->cl_id
== 0);
184 * defer_free - mark an allocation as deferred freed
185 * @argp: NFSv4 compound argument structure to be freed with
186 * @release: release callback to free @p, typically kfree()
187 * @p: pointer to be freed
189 * Marks @p to be freed when processing the compound operation
190 * described in @argp finishes.
193 defer_free(struct nfsd4_compoundargs
*argp
,
194 void (*release
)(const void *), void *p
)
198 tb
= kmalloc(sizeof(*tb
), GFP_KERNEL
);
202 tb
->release
= release
;
203 tb
->next
= argp
->to_free
;
209 * savemem - duplicate a chunk of memory for later processing
210 * @argp: NFSv4 compound argument structure to be freed with
211 * @p: pointer to be duplicated
212 * @nbytes: length to be duplicated
214 * Returns a pointer to a copy of @nbytes bytes of memory at @p
215 * that are preserved until processing of the NFSv4 compound
216 * operation described by @argp finishes.
218 static char *savemem(struct nfsd4_compoundargs
*argp
, __be32
*p
, int nbytes
)
220 if (p
== argp
->tmp
) {
221 p
= kmemdup(argp
->tmp
, nbytes
, GFP_KERNEL
);
225 BUG_ON(p
!= argp
->tmpp
);
228 if (defer_free(argp
, kfree
, p
)) {
236 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
246 bmlen
= be32_to_cpup(p
++);
250 READ_BUF(bmlen
<< 2);
252 bmval
[0] = be32_to_cpup(p
++);
254 bmval
[1] = be32_to_cpup(p
++);
256 bmval
[2] = be32_to_cpup(p
++);
262 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
,
263 struct iattr
*iattr
, struct nfs4_acl
**acl
,
264 struct xdr_netobj
*label
)
266 int expected_len
, len
= 0;
273 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
277 expected_len
= be32_to_cpup(p
++);
279 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
282 p
= xdr_decode_hyper(p
, &iattr
->ia_size
);
283 iattr
->ia_valid
|= ATTR_SIZE
;
285 if (bmval
[0] & FATTR4_WORD0_ACL
) {
287 struct nfs4_ace
*ace
;
289 READ_BUF(4); len
+= 4;
290 nace
= be32_to_cpup(p
++);
292 if (nace
> NFS4_ACL_MAX
)
295 *acl
= nfs4_acl_new(nace
);
297 return nfserr_jukebox
;
299 defer_free(argp
, kfree
, *acl
);
301 (*acl
)->naces
= nace
;
302 for (ace
= (*acl
)->aces
; ace
< (*acl
)->aces
+ nace
; ace
++) {
303 READ_BUF(16); len
+= 16;
304 ace
->type
= be32_to_cpup(p
++);
305 ace
->flag
= be32_to_cpup(p
++);
306 ace
->access_mask
= be32_to_cpup(p
++);
307 dummy32
= be32_to_cpup(p
++);
309 len
+= XDR_QUADLEN(dummy32
) << 2;
310 READMEM(buf
, dummy32
);
311 ace
->whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
313 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
315 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
316 status
= nfsd_map_name_to_gid(argp
->rqstp
,
317 buf
, dummy32
, &ace
->who_gid
);
319 status
= nfsd_map_name_to_uid(argp
->rqstp
,
320 buf
, dummy32
, &ace
->who_uid
);
326 if (bmval
[1] & FATTR4_WORD1_MODE
) {
329 iattr
->ia_mode
= be32_to_cpup(p
++);
330 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
331 iattr
->ia_valid
|= ATTR_MODE
;
333 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
336 dummy32
= be32_to_cpup(p
++);
338 len
+= (XDR_QUADLEN(dummy32
) << 2);
339 READMEM(buf
, dummy32
);
340 if ((status
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
342 iattr
->ia_valid
|= ATTR_UID
;
344 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
347 dummy32
= be32_to_cpup(p
++);
349 len
+= (XDR_QUADLEN(dummy32
) << 2);
350 READMEM(buf
, dummy32
);
351 if ((status
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
353 iattr
->ia_valid
|= ATTR_GID
;
355 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
358 dummy32
= be32_to_cpup(p
++);
360 case NFS4_SET_TO_CLIENT_TIME
:
361 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
362 all 32 bits of 'nseconds'. */
365 p
= xdr_decode_hyper(p
, &sec
);
366 iattr
->ia_atime
.tv_sec
= (time_t)sec
;
367 iattr
->ia_atime
.tv_nsec
= be32_to_cpup(p
++);
368 if (iattr
->ia_atime
.tv_nsec
>= (u32
)1000000000)
370 iattr
->ia_valid
|= (ATTR_ATIME
| ATTR_ATIME_SET
);
372 case NFS4_SET_TO_SERVER_TIME
:
373 iattr
->ia_valid
|= ATTR_ATIME
;
379 if (bmval
[1] & FATTR4_WORD1_TIME_MODIFY_SET
) {
382 dummy32
= be32_to_cpup(p
++);
384 case NFS4_SET_TO_CLIENT_TIME
:
385 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
386 all 32 bits of 'nseconds'. */
389 p
= xdr_decode_hyper(p
, &sec
);
390 iattr
->ia_mtime
.tv_sec
= sec
;
391 iattr
->ia_mtime
.tv_nsec
= be32_to_cpup(p
++);
392 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
394 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
396 case NFS4_SET_TO_SERVER_TIME
:
397 iattr
->ia_valid
|= ATTR_MTIME
;
405 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
406 if (bmval
[2] & FATTR4_WORD2_SECURITY_LABEL
) {
409 dummy32
= be32_to_cpup(p
++); /* lfs: we don't use it */
412 dummy32
= be32_to_cpup(p
++); /* pi: we don't use it either */
415 dummy32
= be32_to_cpup(p
++);
417 if (dummy32
> NFSD4_MAX_SEC_LABEL_LEN
)
418 return nfserr_badlabel
;
419 len
+= (XDR_QUADLEN(dummy32
) << 2);
420 READMEM(buf
, dummy32
);
421 label
->data
= kzalloc(dummy32
+ 1, GFP_KERNEL
);
423 return nfserr_jukebox
;
424 label
->len
= dummy32
;
425 defer_free(argp
, kfree
, label
->data
);
426 memcpy(label
->data
, buf
, dummy32
);
430 if (bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
431 || bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
432 || bmval
[2] & ~NFSD_WRITEABLE_ATTRS_WORD2
)
433 READ_BUF(expected_len
- len
);
434 else if (len
!= expected_len
)
441 nfsd4_decode_stateid(struct nfsd4_compoundargs
*argp
, stateid_t
*sid
)
445 READ_BUF(sizeof(stateid_t
));
446 sid
->si_generation
= be32_to_cpup(p
++);
447 COPYMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
453 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
458 access
->ac_req_access
= be32_to_cpup(p
++);
463 static __be32
nfsd4_decode_cb_sec(struct nfsd4_compoundargs
*argp
, struct nfsd4_cb_sec
*cbs
)
471 /* callback_sec_params4 */
473 nr_secflavs
= be32_to_cpup(p
++);
475 cbs
->flavor
= (u32
)(-1);
477 /* Is this legal? Be generous, take it to mean AUTH_NONE: */
479 for (i
= 0; i
< nr_secflavs
; ++i
) {
481 dummy
= be32_to_cpup(p
++);
484 /* Nothing to read */
485 if (cbs
->flavor
== (u32
)(-1))
486 cbs
->flavor
= RPC_AUTH_NULL
;
491 dummy
= be32_to_cpup(p
++);
494 dummy
= be32_to_cpup(p
++);
496 SAVEMEM(machine_name
, dummy
);
500 uid
= be32_to_cpup(p
++);
501 gid
= be32_to_cpup(p
++);
505 dummy
= be32_to_cpup(p
++);
507 if (cbs
->flavor
== (u32
)(-1)) {
508 kuid_t kuid
= make_kuid(&init_user_ns
, uid
);
509 kgid_t kgid
= make_kgid(&init_user_ns
, gid
);
510 if (uid_valid(kuid
) && gid_valid(kgid
)) {
513 cbs
->flavor
= RPC_AUTH_UNIX
;
515 dprintk("RPC_AUTH_UNIX with invalid"
516 "uid or gid ignoring!\n");
521 dprintk("RPC_AUTH_GSS callback secflavor "
525 dummy
= be32_to_cpup(p
++);
526 /* gcbp_handle_from_server */
527 dummy
= be32_to_cpup(p
++);
529 p
+= XDR_QUADLEN(dummy
);
530 /* gcbp_handle_from_client */
532 dummy
= be32_to_cpup(p
++);
536 dprintk("Illegal callback secflavor\n");
543 static __be32
nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs
*argp
, struct nfsd4_backchannel_ctl
*bc
)
548 bc
->bc_cb_program
= be32_to_cpup(p
++);
549 nfsd4_decode_cb_sec(argp
, &bc
->bc_cb_sec
);
554 static __be32
nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs
*argp
, struct nfsd4_bind_conn_to_session
*bcts
)
558 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 8);
559 COPYMEM(bcts
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
560 bcts
->dir
= be32_to_cpup(p
++);
561 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
562 * could help us figure out we should be using it. */
567 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
572 close
->cl_seqid
= be32_to_cpup(p
++);
573 return nfsd4_decode_stateid(argp
, &close
->cl_stateid
);
580 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
585 p
= xdr_decode_hyper(p
, &commit
->co_offset
);
586 commit
->co_count
= be32_to_cpup(p
++);
592 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
597 create
->cr_type
= be32_to_cpup(p
++);
598 switch (create
->cr_type
) {
601 create
->cr_linklen
= be32_to_cpup(p
++);
602 READ_BUF(create
->cr_linklen
);
603 SAVEMEM(create
->cr_linkname
, create
->cr_linklen
);
608 create
->cr_specdata1
= be32_to_cpup(p
++);
609 create
->cr_specdata2
= be32_to_cpup(p
++);
619 create
->cr_namelen
= be32_to_cpup(p
++);
620 READ_BUF(create
->cr_namelen
);
621 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
622 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
)))
625 status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
,
626 &create
->cr_acl
, &create
->cr_label
);
634 nfsd4_decode_delegreturn(struct nfsd4_compoundargs
*argp
, struct nfsd4_delegreturn
*dr
)
636 return nfsd4_decode_stateid(argp
, &dr
->dr_stateid
);
640 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
642 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
646 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
651 link
->li_namelen
= be32_to_cpup(p
++);
652 READ_BUF(link
->li_namelen
);
653 SAVEMEM(link
->li_name
, link
->li_namelen
);
654 if ((status
= check_filename(link
->li_name
, link
->li_namelen
)))
661 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
666 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
669 lock
->lk_type
= be32_to_cpup(p
++);
670 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
672 lock
->lk_reclaim
= be32_to_cpup(p
++);
673 p
= xdr_decode_hyper(p
, &lock
->lk_offset
);
674 p
= xdr_decode_hyper(p
, &lock
->lk_length
);
675 lock
->lk_is_new
= be32_to_cpup(p
++);
677 if (lock
->lk_is_new
) {
679 lock
->lk_new_open_seqid
= be32_to_cpup(p
++);
680 status
= nfsd4_decode_stateid(argp
, &lock
->lk_new_open_stateid
);
683 READ_BUF(8 + sizeof(clientid_t
));
684 lock
->lk_new_lock_seqid
= be32_to_cpup(p
++);
685 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
686 lock
->lk_new_owner
.len
= be32_to_cpup(p
++);
687 READ_BUF(lock
->lk_new_owner
.len
);
688 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
690 status
= nfsd4_decode_stateid(argp
, &lock
->lk_old_lock_stateid
);
694 lock
->lk_old_lock_seqid
= be32_to_cpup(p
++);
701 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
706 lockt
->lt_type
= be32_to_cpup(p
++);
707 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
709 p
= xdr_decode_hyper(p
, &lockt
->lt_offset
);
710 p
= xdr_decode_hyper(p
, &lockt
->lt_length
);
711 COPYMEM(&lockt
->lt_clientid
, 8);
712 lockt
->lt_owner
.len
= be32_to_cpup(p
++);
713 READ_BUF(lockt
->lt_owner
.len
);
714 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
720 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
725 locku
->lu_type
= be32_to_cpup(p
++);
726 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
728 locku
->lu_seqid
= be32_to_cpup(p
++);
729 status
= nfsd4_decode_stateid(argp
, &locku
->lu_stateid
);
733 p
= xdr_decode_hyper(p
, &locku
->lu_offset
);
734 p
= xdr_decode_hyper(p
, &locku
->lu_length
);
740 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
745 lookup
->lo_len
= be32_to_cpup(p
++);
746 READ_BUF(lookup
->lo_len
);
747 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
748 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
)))
754 static __be32
nfsd4_decode_share_access(struct nfsd4_compoundargs
*argp
, u32
*share_access
, u32
*deleg_want
, u32
*deleg_when
)
760 w
= be32_to_cpup(p
++);
761 *share_access
= w
& NFS4_SHARE_ACCESS_MASK
;
762 *deleg_want
= w
& NFS4_SHARE_WANT_MASK
;
764 *deleg_when
= w
& NFS4_SHARE_WHEN_MASK
;
766 switch (w
& NFS4_SHARE_ACCESS_MASK
) {
767 case NFS4_SHARE_ACCESS_READ
:
768 case NFS4_SHARE_ACCESS_WRITE
:
769 case NFS4_SHARE_ACCESS_BOTH
:
772 return nfserr_bad_xdr
;
774 w
&= ~NFS4_SHARE_ACCESS_MASK
;
777 if (!argp
->minorversion
)
778 return nfserr_bad_xdr
;
779 switch (w
& NFS4_SHARE_WANT_MASK
) {
780 case NFS4_SHARE_WANT_NO_PREFERENCE
:
781 case NFS4_SHARE_WANT_READ_DELEG
:
782 case NFS4_SHARE_WANT_WRITE_DELEG
:
783 case NFS4_SHARE_WANT_ANY_DELEG
:
784 case NFS4_SHARE_WANT_NO_DELEG
:
785 case NFS4_SHARE_WANT_CANCEL
:
788 return nfserr_bad_xdr
;
790 w
&= ~NFS4_SHARE_WANT_MASK
;
794 if (!deleg_when
) /* open_downgrade */
797 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
:
798 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
:
799 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
|
800 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
):
804 return nfserr_bad_xdr
;
807 static __be32
nfsd4_decode_share_deny(struct nfsd4_compoundargs
*argp
, u32
*x
)
812 *x
= be32_to_cpup(p
++);
813 /* Note: unlinke access bits, deny bits may be zero. */
814 if (*x
& ~NFS4_SHARE_DENY_BOTH
)
815 return nfserr_bad_xdr
;
818 return nfserr_bad_xdr
;
821 static __be32
nfsd4_decode_opaque(struct nfsd4_compoundargs
*argp
, struct xdr_netobj
*o
)
826 o
->len
= be32_to_cpup(p
++);
828 if (o
->len
== 0 || o
->len
> NFS4_OPAQUE_LIMIT
)
829 return nfserr_bad_xdr
;
832 SAVEMEM(o
->data
, o
->len
);
835 return nfserr_bad_xdr
;
839 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
844 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
845 open
->op_iattr
.ia_valid
= 0;
846 open
->op_openowner
= NULL
;
848 open
->op_xdr_error
= 0;
849 /* seqid, share_access, share_deny, clientid, ownerlen */
851 open
->op_seqid
= be32_to_cpup(p
++);
852 /* decode, yet ignore deleg_when until supported */
853 status
= nfsd4_decode_share_access(argp
, &open
->op_share_access
,
854 &open
->op_deleg_want
, &dummy
);
857 status
= nfsd4_decode_share_deny(argp
, &open
->op_share_deny
);
860 READ_BUF(sizeof(clientid_t
));
861 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
862 status
= nfsd4_decode_opaque(argp
, &open
->op_owner
);
866 open
->op_create
= be32_to_cpup(p
++);
867 switch (open
->op_create
) {
868 case NFS4_OPEN_NOCREATE
:
870 case NFS4_OPEN_CREATE
:
872 open
->op_createmode
= be32_to_cpup(p
++);
873 switch (open
->op_createmode
) {
874 case NFS4_CREATE_UNCHECKED
:
875 case NFS4_CREATE_GUARDED
:
876 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
877 &open
->op_iattr
, &open
->op_acl
, &open
->op_label
);
881 case NFS4_CREATE_EXCLUSIVE
:
882 READ_BUF(NFS4_VERIFIER_SIZE
);
883 COPYMEM(open
->op_verf
.data
, NFS4_VERIFIER_SIZE
);
885 case NFS4_CREATE_EXCLUSIVE4_1
:
886 if (argp
->minorversion
< 1)
888 READ_BUF(NFS4_VERIFIER_SIZE
);
889 COPYMEM(open
->op_verf
.data
, NFS4_VERIFIER_SIZE
);
890 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
891 &open
->op_iattr
, &open
->op_acl
, &open
->op_label
);
905 open
->op_claim_type
= be32_to_cpup(p
++);
906 switch (open
->op_claim_type
) {
907 case NFS4_OPEN_CLAIM_NULL
:
908 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
910 open
->op_fname
.len
= be32_to_cpup(p
++);
911 READ_BUF(open
->op_fname
.len
);
912 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
913 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
)))
916 case NFS4_OPEN_CLAIM_PREVIOUS
:
918 open
->op_delegate_type
= be32_to_cpup(p
++);
920 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
921 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
925 open
->op_fname
.len
= be32_to_cpup(p
++);
926 READ_BUF(open
->op_fname
.len
);
927 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
928 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
)))
931 case NFS4_OPEN_CLAIM_FH
:
932 case NFS4_OPEN_CLAIM_DELEG_PREV_FH
:
933 if (argp
->minorversion
< 1)
937 case NFS4_OPEN_CLAIM_DELEG_CUR_FH
:
938 if (argp
->minorversion
< 1)
940 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
952 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
956 if (argp
->minorversion
>= 1)
957 return nfserr_notsupp
;
959 status
= nfsd4_decode_stateid(argp
, &open_conf
->oc_req_stateid
);
963 open_conf
->oc_seqid
= be32_to_cpup(p
++);
969 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
973 status
= nfsd4_decode_stateid(argp
, &open_down
->od_stateid
);
977 open_down
->od_seqid
= be32_to_cpup(p
++);
978 status
= nfsd4_decode_share_access(argp
, &open_down
->od_share_access
,
979 &open_down
->od_deleg_want
, NULL
);
982 status
= nfsd4_decode_share_deny(argp
, &open_down
->od_share_deny
);
989 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
994 putfh
->pf_fhlen
= be32_to_cpup(p
++);
995 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
997 READ_BUF(putfh
->pf_fhlen
);
998 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
1004 nfsd4_decode_putpubfh(struct nfsd4_compoundargs
*argp
, void *p
)
1006 if (argp
->minorversion
== 0)
1008 return nfserr_notsupp
;
1012 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
1016 status
= nfsd4_decode_stateid(argp
, &read
->rd_stateid
);
1020 p
= xdr_decode_hyper(p
, &read
->rd_offset
);
1021 read
->rd_length
= be32_to_cpup(p
++);
1027 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
1032 p
= xdr_decode_hyper(p
, &readdir
->rd_cookie
);
1033 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
1034 readdir
->rd_dircount
= be32_to_cpup(p
++);
1035 readdir
->rd_maxcount
= be32_to_cpup(p
++);
1036 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
1043 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
1048 remove
->rm_namelen
= be32_to_cpup(p
++);
1049 READ_BUF(remove
->rm_namelen
);
1050 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
1051 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
)))
1058 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
1063 rename
->rn_snamelen
= be32_to_cpup(p
++);
1064 READ_BUF(rename
->rn_snamelen
+ 4);
1065 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
1066 rename
->rn_tnamelen
= be32_to_cpup(p
++);
1067 READ_BUF(rename
->rn_tnamelen
);
1068 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
1069 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
)))
1071 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
)))
1078 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
1082 if (argp
->minorversion
>= 1)
1083 return nfserr_notsupp
;
1085 READ_BUF(sizeof(clientid_t
));
1086 COPYMEM(clientid
, sizeof(clientid_t
));
1092 nfsd4_decode_secinfo(struct nfsd4_compoundargs
*argp
,
1093 struct nfsd4_secinfo
*secinfo
)
1098 secinfo
->si_namelen
= be32_to_cpup(p
++);
1099 READ_BUF(secinfo
->si_namelen
);
1100 SAVEMEM(secinfo
->si_name
, secinfo
->si_namelen
);
1101 status
= check_filename(secinfo
->si_name
, secinfo
->si_namelen
);
1108 nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs
*argp
,
1109 struct nfsd4_secinfo_no_name
*sin
)
1114 sin
->sin_style
= be32_to_cpup(p
++);
1119 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
1123 status
= nfsd4_decode_stateid(argp
, &setattr
->sa_stateid
);
1126 return nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
,
1127 &setattr
->sa_acl
, &setattr
->sa_label
);
1131 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
1135 if (argp
->minorversion
>= 1)
1136 return nfserr_notsupp
;
1138 READ_BUF(NFS4_VERIFIER_SIZE
);
1139 COPYMEM(setclientid
->se_verf
.data
, NFS4_VERIFIER_SIZE
);
1141 status
= nfsd4_decode_opaque(argp
, &setclientid
->se_name
);
1143 return nfserr_bad_xdr
;
1145 setclientid
->se_callback_prog
= be32_to_cpup(p
++);
1146 setclientid
->se_callback_netid_len
= be32_to_cpup(p
++);
1148 READ_BUF(setclientid
->se_callback_netid_len
+ 4);
1149 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
1150 setclientid
->se_callback_addr_len
= be32_to_cpup(p
++);
1152 READ_BUF(setclientid
->se_callback_addr_len
+ 4);
1153 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
1154 setclientid
->se_callback_ident
= be32_to_cpup(p
++);
1160 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
1164 if (argp
->minorversion
>= 1)
1165 return nfserr_notsupp
;
1167 READ_BUF(8 + NFS4_VERIFIER_SIZE
);
1168 COPYMEM(&scd_c
->sc_clientid
, 8);
1169 COPYMEM(&scd_c
->sc_confirm
, NFS4_VERIFIER_SIZE
);
1174 /* Also used for NVERIFY */
1176 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
1180 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
1183 /* For convenience's sake, we compare raw xdr'd attributes in
1184 * nfsd4_proc_verify */
1187 verify
->ve_attrlen
= be32_to_cpup(p
++);
1188 READ_BUF(verify
->ve_attrlen
);
1189 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
1195 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
1201 status
= nfsd4_decode_stateid(argp
, &write
->wr_stateid
);
1205 p
= xdr_decode_hyper(p
, &write
->wr_offset
);
1206 write
->wr_stable_how
= be32_to_cpup(p
++);
1207 if (write
->wr_stable_how
> 2)
1209 write
->wr_buflen
= be32_to_cpup(p
++);
1211 /* Sorry .. no magic macros for this.. *
1212 * READ_BUF(write->wr_buflen);
1213 * SAVEMEM(write->wr_buf, write->wr_buflen);
1215 avail
= (char*)argp
->end
- (char*)argp
->p
;
1216 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
1217 dprintk("NFSD: xdr error (%s:%d)\n",
1218 __FILE__
, __LINE__
);
1221 write
->wr_head
.iov_base
= p
;
1222 write
->wr_head
.iov_len
= avail
;
1223 write
->wr_pagelist
= argp
->pagelist
;
1225 len
= XDR_QUADLEN(write
->wr_buflen
) << 2;
1231 pages
= len
>> PAGE_SHIFT
;
1232 argp
->pagelist
+= pages
;
1233 argp
->pagelen
-= pages
* PAGE_SIZE
;
1234 len
-= pages
* PAGE_SIZE
;
1236 argp
->p
= (__be32
*)page_address(argp
->pagelist
[0]);
1238 argp
->end
= argp
->p
+ XDR_QUADLEN(PAGE_SIZE
);
1240 argp
->p
+= XDR_QUADLEN(len
);
1246 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
1250 if (argp
->minorversion
>= 1)
1251 return nfserr_notsupp
;
1254 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
1255 rlockowner
->rl_owner
.len
= be32_to_cpup(p
++);
1256 READ_BUF(rlockowner
->rl_owner
.len
);
1257 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
1259 if (argp
->minorversion
&& !zero_clientid(&rlockowner
->rl_clientid
))
1260 return nfserr_inval
;
1265 nfsd4_decode_exchange_id(struct nfsd4_compoundargs
*argp
,
1266 struct nfsd4_exchange_id
*exid
)
1271 READ_BUF(NFS4_VERIFIER_SIZE
);
1272 COPYMEM(exid
->verifier
.data
, NFS4_VERIFIER_SIZE
);
1274 status
= nfsd4_decode_opaque(argp
, &exid
->clname
);
1276 return nfserr_bad_xdr
;
1279 exid
->flags
= be32_to_cpup(p
++);
1281 /* Ignore state_protect4_a */
1283 exid
->spa_how
= be32_to_cpup(p
++);
1284 switch (exid
->spa_how
) {
1288 /* spo_must_enforce */
1290 dummy
= be32_to_cpup(p
++);
1291 READ_BUF(dummy
* 4);
1294 /* spo_must_allow */
1296 dummy
= be32_to_cpup(p
++);
1297 READ_BUF(dummy
* 4);
1303 dummy
= be32_to_cpup(p
++);
1304 READ_BUF(dummy
* 4);
1308 dummy
= be32_to_cpup(p
++);
1309 READ_BUF(dummy
* 4);
1312 /* ssp_hash_algs<> */
1314 tmp
= be32_to_cpup(p
++);
1317 dummy
= be32_to_cpup(p
++);
1319 p
+= XDR_QUADLEN(dummy
);
1322 /* ssp_encr_algs<> */
1324 tmp
= be32_to_cpup(p
++);
1327 dummy
= be32_to_cpup(p
++);
1329 p
+= XDR_QUADLEN(dummy
);
1332 /* ssp_window and ssp_num_gss_handles */
1334 dummy
= be32_to_cpup(p
++);
1335 dummy
= be32_to_cpup(p
++);
1341 /* Ignore Implementation ID */
1342 READ_BUF(4); /* nfs_impl_id4 array length */
1343 dummy
= be32_to_cpup(p
++);
1351 dummy
= be32_to_cpup(p
++);
1353 p
+= XDR_QUADLEN(dummy
);
1357 dummy
= be32_to_cpup(p
++);
1359 p
+= XDR_QUADLEN(dummy
);
1369 nfsd4_decode_create_session(struct nfsd4_compoundargs
*argp
,
1370 struct nfsd4_create_session
*sess
)
1376 COPYMEM(&sess
->clientid
, 8);
1377 sess
->seqid
= be32_to_cpup(p
++);
1378 sess
->flags
= be32_to_cpup(p
++);
1380 /* Fore channel attrs */
1382 dummy
= be32_to_cpup(p
++); /* headerpadsz is always 0 */
1383 sess
->fore_channel
.maxreq_sz
= be32_to_cpup(p
++);
1384 sess
->fore_channel
.maxresp_sz
= be32_to_cpup(p
++);
1385 sess
->fore_channel
.maxresp_cached
= be32_to_cpup(p
++);
1386 sess
->fore_channel
.maxops
= be32_to_cpup(p
++);
1387 sess
->fore_channel
.maxreqs
= be32_to_cpup(p
++);
1388 sess
->fore_channel
.nr_rdma_attrs
= be32_to_cpup(p
++);
1389 if (sess
->fore_channel
.nr_rdma_attrs
== 1) {
1391 sess
->fore_channel
.rdma_attrs
= be32_to_cpup(p
++);
1392 } else if (sess
->fore_channel
.nr_rdma_attrs
> 1) {
1393 dprintk("Too many fore channel attr bitmaps!\n");
1397 /* Back channel attrs */
1399 dummy
= be32_to_cpup(p
++); /* headerpadsz is always 0 */
1400 sess
->back_channel
.maxreq_sz
= be32_to_cpup(p
++);
1401 sess
->back_channel
.maxresp_sz
= be32_to_cpup(p
++);
1402 sess
->back_channel
.maxresp_cached
= be32_to_cpup(p
++);
1403 sess
->back_channel
.maxops
= be32_to_cpup(p
++);
1404 sess
->back_channel
.maxreqs
= be32_to_cpup(p
++);
1405 sess
->back_channel
.nr_rdma_attrs
= be32_to_cpup(p
++);
1406 if (sess
->back_channel
.nr_rdma_attrs
== 1) {
1408 sess
->back_channel
.rdma_attrs
= be32_to_cpup(p
++);
1409 } else if (sess
->back_channel
.nr_rdma_attrs
> 1) {
1410 dprintk("Too many back channel attr bitmaps!\n");
1415 sess
->callback_prog
= be32_to_cpup(p
++);
1416 nfsd4_decode_cb_sec(argp
, &sess
->cb_sec
);
1421 nfsd4_decode_destroy_session(struct nfsd4_compoundargs
*argp
,
1422 struct nfsd4_destroy_session
*destroy_session
)
1425 READ_BUF(NFS4_MAX_SESSIONID_LEN
);
1426 COPYMEM(destroy_session
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1432 nfsd4_decode_free_stateid(struct nfsd4_compoundargs
*argp
,
1433 struct nfsd4_free_stateid
*free_stateid
)
1437 READ_BUF(sizeof(stateid_t
));
1438 free_stateid
->fr_stateid
.si_generation
= be32_to_cpup(p
++);
1439 COPYMEM(&free_stateid
->fr_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
1445 nfsd4_decode_sequence(struct nfsd4_compoundargs
*argp
,
1446 struct nfsd4_sequence
*seq
)
1450 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 16);
1451 COPYMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1452 seq
->seqid
= be32_to_cpup(p
++);
1453 seq
->slotid
= be32_to_cpup(p
++);
1454 seq
->maxslots
= be32_to_cpup(p
++);
1455 seq
->cachethis
= be32_to_cpup(p
++);
1461 nfsd4_decode_test_stateid(struct nfsd4_compoundargs
*argp
, struct nfsd4_test_stateid
*test_stateid
)
1465 struct nfsd4_test_stateid_id
*stateid
;
1468 test_stateid
->ts_num_ids
= ntohl(*p
++);
1470 INIT_LIST_HEAD(&test_stateid
->ts_stateid_list
);
1472 for (i
= 0; i
< test_stateid
->ts_num_ids
; i
++) {
1473 stateid
= kmalloc(sizeof(struct nfsd4_test_stateid_id
), GFP_KERNEL
);
1475 status
= nfserrno(-ENOMEM
);
1479 defer_free(argp
, kfree
, stateid
);
1480 INIT_LIST_HEAD(&stateid
->ts_id_list
);
1481 list_add_tail(&stateid
->ts_id_list
, &test_stateid
->ts_stateid_list
);
1483 status
= nfsd4_decode_stateid(argp
, &stateid
->ts_id_stateid
);
1492 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__
, __LINE__
);
1493 status
= nfserr_bad_xdr
;
1497 static __be32
nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_destroy_clientid
*dc
)
1502 COPYMEM(&dc
->clientid
, 8);
1507 static __be32
nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs
*argp
, struct nfsd4_reclaim_complete
*rc
)
1512 rc
->rca_one_fs
= be32_to_cpup(p
++);
1518 nfsd4_decode_noop(struct nfsd4_compoundargs
*argp
, void *p
)
1524 nfsd4_decode_notsupp(struct nfsd4_compoundargs
*argp
, void *p
)
1526 return nfserr_notsupp
;
1529 typedef __be32(*nfsd4_dec
)(struct nfsd4_compoundargs
*argp
, void *);
1531 static nfsd4_dec nfsd4_dec_ops
[] = {
1532 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1533 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1534 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1535 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1536 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1537 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1538 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1539 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1540 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1541 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1542 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1543 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1544 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1545 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1546 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1547 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1548 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1549 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_open_confirm
,
1550 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1551 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1552 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_putpubfh
,
1553 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1554 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1555 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1556 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1557 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1558 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1559 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_renew
,
1560 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1561 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1562 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1563 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1564 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_setclientid
,
1565 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_setclientid_confirm
,
1566 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1567 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1568 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_release_lockowner
,
1570 /* new operations for NFSv4.1 */
1571 [OP_BACKCHANNEL_CTL
] = (nfsd4_dec
)nfsd4_decode_backchannel_ctl
,
1572 [OP_BIND_CONN_TO_SESSION
]= (nfsd4_dec
)nfsd4_decode_bind_conn_to_session
,
1573 [OP_EXCHANGE_ID
] = (nfsd4_dec
)nfsd4_decode_exchange_id
,
1574 [OP_CREATE_SESSION
] = (nfsd4_dec
)nfsd4_decode_create_session
,
1575 [OP_DESTROY_SESSION
] = (nfsd4_dec
)nfsd4_decode_destroy_session
,
1576 [OP_FREE_STATEID
] = (nfsd4_dec
)nfsd4_decode_free_stateid
,
1577 [OP_GET_DIR_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1578 [OP_GETDEVICEINFO
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1579 [OP_GETDEVICELIST
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1580 [OP_LAYOUTCOMMIT
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1581 [OP_LAYOUTGET
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1582 [OP_LAYOUTRETURN
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1583 [OP_SECINFO_NO_NAME
] = (nfsd4_dec
)nfsd4_decode_secinfo_no_name
,
1584 [OP_SEQUENCE
] = (nfsd4_dec
)nfsd4_decode_sequence
,
1585 [OP_SET_SSV
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1586 [OP_TEST_STATEID
] = (nfsd4_dec
)nfsd4_decode_test_stateid
,
1587 [OP_WANT_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1588 [OP_DESTROY_CLIENTID
] = (nfsd4_dec
)nfsd4_decode_destroy_clientid
,
1589 [OP_RECLAIM_COMPLETE
] = (nfsd4_dec
)nfsd4_decode_reclaim_complete
,
1593 nfsd4_opnum_in_range(struct nfsd4_compoundargs
*argp
, struct nfsd4_op
*op
)
1595 if (op
->opnum
< FIRST_NFS4_OP
)
1597 else if (argp
->minorversion
== 0 && op
->opnum
> LAST_NFS40_OP
)
1599 else if (argp
->minorversion
== 1 && op
->opnum
> LAST_NFS41_OP
)
1601 else if (argp
->minorversion
== 2 && op
->opnum
> LAST_NFS42_OP
)
1607 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1610 struct nfsd4_op
*op
;
1611 bool cachethis
= false;
1612 int auth_slack
= argp
->rqstp
->rq_auth_slack
;
1613 int max_reply
= auth_slack
+ 8; /* opcnt, status */
1619 argp
->taglen
= be32_to_cpup(p
++);
1620 READ_BUF(argp
->taglen
+ 8);
1621 SAVEMEM(argp
->tag
, argp
->taglen
);
1622 argp
->minorversion
= be32_to_cpup(p
++);
1623 argp
->opcnt
= be32_to_cpup(p
++);
1624 max_reply
+= 4 + (XDR_QUADLEN(argp
->taglen
) << 2);
1626 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1628 if (argp
->opcnt
> 100)
1631 if (argp
->opcnt
> ARRAY_SIZE(argp
->iops
)) {
1632 argp
->ops
= kmalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1634 argp
->ops
= argp
->iops
;
1635 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1640 if (argp
->minorversion
> NFSD_SUPPORTED_MINOR_VERSION
)
1643 for (i
= 0; i
< argp
->opcnt
; i
++) {
1648 op
->opnum
= be32_to_cpup(p
++);
1650 if (nfsd4_opnum_in_range(argp
, op
))
1651 op
->status
= nfsd4_dec_ops
[op
->opnum
](argp
, &op
->u
);
1653 op
->opnum
= OP_ILLEGAL
;
1654 op
->status
= nfserr_op_illegal
;
1657 * We'll try to cache the result in the DRC if any one
1658 * op in the compound wants to be cached:
1660 cachethis
|= nfsd4_cache_this_op(op
);
1662 if (op
->opnum
== OP_READ
) {
1664 readbytes
+= nfsd4_max_reply(argp
->rqstp
, op
);
1666 max_reply
+= nfsd4_max_reply(argp
->rqstp
, op
);
1673 /* Sessions make the DRC unnecessary: */
1674 if (argp
->minorversion
)
1676 svc_reserve(argp
->rqstp
, max_reply
+ readbytes
);
1677 argp
->rqstp
->rq_cachetype
= cachethis
? RC_REPLBUFF
: RC_NOCACHE
;
1679 if (readcount
> 1 || max_reply
> PAGE_SIZE
- auth_slack
)
1680 argp
->rqstp
->rq_splice_ok
= false;
1685 static __be32
*encode_change(__be32
*p
, struct kstat
*stat
, struct inode
*inode
)
1687 if (IS_I_VERSION(inode
)) {
1688 p
= xdr_encode_hyper(p
, inode
->i_version
);
1690 *p
++ = cpu_to_be32(stat
->ctime
.tv_sec
);
1691 *p
++ = cpu_to_be32(stat
->ctime
.tv_nsec
);
1696 static __be32
*encode_cinfo(__be32
*p
, struct nfsd4_change_info
*c
)
1698 *p
++ = cpu_to_be32(c
->atomic
);
1699 if (c
->change_supported
) {
1700 p
= xdr_encode_hyper(p
, c
->before_change
);
1701 p
= xdr_encode_hyper(p
, c
->after_change
);
1703 *p
++ = cpu_to_be32(c
->before_ctime_sec
);
1704 *p
++ = cpu_to_be32(c
->before_ctime_nsec
);
1705 *p
++ = cpu_to_be32(c
->after_ctime_sec
);
1706 *p
++ = cpu_to_be32(c
->after_ctime_nsec
);
1711 /* Encode as an array of strings the string given with components
1712 * separated @sep, escaped with esc_enter and esc_exit.
1714 static __be32
nfsd4_encode_components_esc(struct xdr_stream
*xdr
, char sep
,
1715 char *components
, char esc_enter
,
1721 int strlen
, count
=0;
1722 char *str
, *end
, *next
;
1724 dprintk("nfsd4_encode_components(%s)\n", components
);
1726 pathlen_offset
= xdr
->buf
->len
;
1727 p
= xdr_reserve_space(xdr
, 4);
1729 return nfserr_resource
;
1730 p
++; /* We will fill this in with @count later */
1732 end
= str
= components
;
1734 bool found_esc
= false;
1736 /* try to parse as esc_start, ..., esc_end, sep */
1737 if (*str
== esc_enter
) {
1738 for (; *end
&& (*end
!= esc_exit
); end
++)
1739 /* find esc_exit or end of string */;
1741 if (*end
&& (!*next
|| *next
== sep
)) {
1748 for (; *end
&& (*end
!= sep
); end
++)
1749 /* find sep or end of string */;
1753 p
= xdr_reserve_space(xdr
, strlen
+ 4);
1755 return nfserr_resource
;
1756 p
= xdr_encode_opaque(p
, str
, strlen
);
1763 pathlen
= htonl(xdr
->buf
->len
- pathlen_offset
);
1764 write_bytes_to_xdr_buf(xdr
->buf
, pathlen_offset
, &pathlen
, 4);
1768 /* Encode as an array of strings the string given with components
1771 static __be32
nfsd4_encode_components(struct xdr_stream
*xdr
, char sep
,
1774 return nfsd4_encode_components_esc(xdr
, sep
, components
, 0, 0);
1778 * encode a location element of a fs_locations structure
1780 static __be32
nfsd4_encode_fs_location4(struct xdr_stream
*xdr
,
1781 struct nfsd4_fs_location
*location
)
1785 status
= nfsd4_encode_components_esc(xdr
, ':', location
->hosts
,
1789 status
= nfsd4_encode_components(xdr
, '/', location
->path
);
1796 * Encode a path in RFC3530 'pathname4' format
1798 static __be32
nfsd4_encode_path(struct xdr_stream
*xdr
,
1799 const struct path
*root
,
1800 const struct path
*path
)
1802 struct path cur
= *path
;
1804 struct dentry
**components
= NULL
;
1805 unsigned int ncomponents
= 0;
1806 __be32 err
= nfserr_jukebox
;
1808 dprintk("nfsd4_encode_components(");
1811 /* First walk the path up to the nfsd root, and store the
1812 * dentries/path components in an array.
1815 if (cur
.dentry
== root
->dentry
&& cur
.mnt
== root
->mnt
)
1817 if (cur
.dentry
== cur
.mnt
->mnt_root
) {
1818 if (follow_up(&cur
))
1822 if ((ncomponents
& 15) == 0) {
1823 struct dentry
**new;
1824 new = krealloc(components
,
1825 sizeof(*new) * (ncomponents
+ 16),
1831 components
[ncomponents
++] = cur
.dentry
;
1832 cur
.dentry
= dget_parent(cur
.dentry
);
1834 err
= nfserr_resource
;
1835 p
= xdr_reserve_space(xdr
, 4);
1838 *p
++ = cpu_to_be32(ncomponents
);
1840 while (ncomponents
) {
1841 struct dentry
*dentry
= components
[ncomponents
- 1];
1844 spin_lock(&dentry
->d_lock
);
1845 len
= dentry
->d_name
.len
;
1846 p
= xdr_reserve_space(xdr
, len
+ 4);
1848 spin_unlock(&dentry
->d_lock
);
1851 p
= xdr_encode_opaque(p
, dentry
->d_name
.name
, len
);
1852 dprintk("/%s", dentry
->d_name
.name
);
1853 spin_unlock(&dentry
->d_lock
);
1862 dput(components
[--ncomponents
]);
1868 static __be32
nfsd4_encode_fsloc_fsroot(struct xdr_stream
*xdr
,
1869 struct svc_rqst
*rqstp
, const struct path
*path
)
1871 struct svc_export
*exp_ps
;
1874 exp_ps
= rqst_find_fsidzero_export(rqstp
);
1876 return nfserrno(PTR_ERR(exp_ps
));
1877 res
= nfsd4_encode_path(xdr
, &exp_ps
->ex_path
, path
);
1883 * encode a fs_locations structure
1885 static __be32
nfsd4_encode_fs_locations(struct xdr_stream
*xdr
,
1886 struct svc_rqst
*rqstp
, struct svc_export
*exp
)
1891 struct nfsd4_fs_locations
*fslocs
= &exp
->ex_fslocs
;
1893 status
= nfsd4_encode_fsloc_fsroot(xdr
, rqstp
, &exp
->ex_path
);
1896 p
= xdr_reserve_space(xdr
, 4);
1898 return nfserr_resource
;
1899 *p
++ = cpu_to_be32(fslocs
->locations_count
);
1900 for (i
=0; i
<fslocs
->locations_count
; i
++) {
1901 status
= nfsd4_encode_fs_location4(xdr
, &fslocs
->locations
[i
]);
1908 static u32
nfs4_file_type(umode_t mode
)
1910 switch (mode
& S_IFMT
) {
1911 case S_IFIFO
: return NF4FIFO
;
1912 case S_IFCHR
: return NF4CHR
;
1913 case S_IFDIR
: return NF4DIR
;
1914 case S_IFBLK
: return NF4BLK
;
1915 case S_IFLNK
: return NF4LNK
;
1916 case S_IFREG
: return NF4REG
;
1917 case S_IFSOCK
: return NF4SOCK
;
1918 default: return NF4BAD
;
1922 static inline __be32
1923 nfsd4_encode_aclname(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
1924 struct nfs4_ace
*ace
)
1926 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
1927 return nfs4_acl_write_who(xdr
, ace
->whotype
);
1928 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
1929 return nfsd4_encode_group(xdr
, rqstp
, ace
->who_gid
);
1931 return nfsd4_encode_user(xdr
, rqstp
, ace
->who_uid
);
1934 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1935 FATTR4_WORD0_RDATTR_ERROR)
1936 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1938 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
1939 static inline __be32
1940 nfsd4_encode_security_label(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
1941 void *context
, int len
)
1945 p
= xdr_reserve_space(xdr
, len
+ 4 + 4 + 4);
1947 return nfserr_resource
;
1950 * For now we use a 0 here to indicate the null translation; in
1951 * the future we may place a call to translation code here.
1953 *p
++ = cpu_to_be32(0); /* lfs */
1954 *p
++ = cpu_to_be32(0); /* pi */
1955 p
= xdr_encode_opaque(p
, context
, len
);
1959 static inline __be32
1960 nfsd4_encode_security_label(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
1961 void *context
, int len
)
1965 static __be32
fattr_handle_absent_fs(u32
*bmval0
, u32
*bmval1
, u32
*rdattr_err
)
1967 /* As per referral draft: */
1968 if (*bmval0
& ~WORD0_ABSENT_FS_ATTRS
||
1969 *bmval1
& ~WORD1_ABSENT_FS_ATTRS
) {
1970 if (*bmval0
& FATTR4_WORD0_RDATTR_ERROR
||
1971 *bmval0
& FATTR4_WORD0_FS_LOCATIONS
)
1972 *rdattr_err
= NFSERR_MOVED
;
1974 return nfserr_moved
;
1976 *bmval0
&= WORD0_ABSENT_FS_ATTRS
;
1977 *bmval1
&= WORD1_ABSENT_FS_ATTRS
;
1982 static int get_parent_attributes(struct svc_export
*exp
, struct kstat
*stat
)
1984 struct path path
= exp
->ex_path
;
1988 while (follow_up(&path
)) {
1989 if (path
.dentry
!= path
.mnt
->mnt_root
)
1992 err
= vfs_getattr(&path
, stat
);
1998 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2002 nfsd4_encode_fattr(struct xdr_stream
*xdr
, struct svc_fh
*fhp
,
2003 struct svc_export
*exp
,
2004 struct dentry
*dentry
, u32
*bmval
,
2005 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
2007 u32 bmval0
= bmval
[0];
2008 u32 bmval1
= bmval
[1];
2009 u32 bmval2
= bmval
[2];
2011 struct svc_fh
*tempfh
= NULL
;
2012 struct kstatfs statfs
;
2014 int starting_len
= xdr
->buf
->len
;
2023 struct nfs4_acl
*acl
= NULL
;
2024 void *context
= NULL
;
2026 bool contextsupport
= false;
2027 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
2028 u32 minorversion
= resp
->cstate
.minorversion
;
2029 struct path path
= {
2030 .mnt
= exp
->ex_path
.mnt
,
2033 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2035 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
2036 BUG_ON(bmval0
& ~nfsd_suppattrs0(minorversion
));
2037 BUG_ON(bmval1
& ~nfsd_suppattrs1(minorversion
));
2038 BUG_ON(bmval2
& ~nfsd_suppattrs2(minorversion
));
2040 if (exp
->ex_fslocs
.migrated
) {
2042 status
= fattr_handle_absent_fs(&bmval0
, &bmval1
, &rdattr_err
);
2047 err
= vfs_getattr(&path
, &stat
);
2050 if ((bmval0
& (FATTR4_WORD0_FILES_AVAIL
| FATTR4_WORD0_FILES_FREE
|
2051 FATTR4_WORD0_FILES_TOTAL
| FATTR4_WORD0_MAXNAME
)) ||
2052 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
2053 FATTR4_WORD1_SPACE_TOTAL
))) {
2054 err
= vfs_statfs(&path
, &statfs
);
2058 if ((bmval0
& (FATTR4_WORD0_FILEHANDLE
| FATTR4_WORD0_FSID
)) && !fhp
) {
2059 tempfh
= kmalloc(sizeof(struct svc_fh
), GFP_KERNEL
);
2060 status
= nfserr_jukebox
;
2063 fh_init(tempfh
, NFS4_FHSIZE
);
2064 status
= fh_compose(tempfh
, exp
, dentry
, NULL
);
2069 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
2070 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
2071 err
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
2072 aclsupport
= (err
== 0);
2073 if (bmval0
& FATTR4_WORD0_ACL
) {
2074 if (err
== -EOPNOTSUPP
)
2075 bmval0
&= ~FATTR4_WORD0_ACL
;
2076 else if (err
== -EINVAL
) {
2077 status
= nfserr_attrnotsupp
;
2079 } else if (err
!= 0)
2084 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2085 if ((bmval
[2] & FATTR4_WORD2_SECURITY_LABEL
) ||
2086 bmval
[0] & FATTR4_WORD0_SUPPORTED_ATTRS
) {
2087 err
= security_inode_getsecctx(dentry
->d_inode
,
2088 &context
, &contextlen
);
2089 contextsupport
= (err
== 0);
2090 if (bmval2
& FATTR4_WORD2_SECURITY_LABEL
) {
2091 if (err
== -EOPNOTSUPP
)
2092 bmval2
&= ~FATTR4_WORD2_SECURITY_LABEL
;
2097 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2100 p
= xdr_reserve_space(xdr
, 16);
2103 *p
++ = cpu_to_be32(3);
2104 *p
++ = cpu_to_be32(bmval0
);
2105 *p
++ = cpu_to_be32(bmval1
);
2106 *p
++ = cpu_to_be32(bmval2
);
2107 } else if (bmval1
) {
2108 p
= xdr_reserve_space(xdr
, 12);
2111 *p
++ = cpu_to_be32(2);
2112 *p
++ = cpu_to_be32(bmval0
);
2113 *p
++ = cpu_to_be32(bmval1
);
2115 p
= xdr_reserve_space(xdr
, 8);
2118 *p
++ = cpu_to_be32(1);
2119 *p
++ = cpu_to_be32(bmval0
);
2122 attrlen_offset
= xdr
->buf
->len
;
2123 p
= xdr_reserve_space(xdr
, 4);
2126 p
++; /* to be backfilled later */
2128 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
2129 u32 word0
= nfsd_suppattrs0(minorversion
);
2130 u32 word1
= nfsd_suppattrs1(minorversion
);
2131 u32 word2
= nfsd_suppattrs2(minorversion
);
2134 word0
&= ~FATTR4_WORD0_ACL
;
2135 if (!contextsupport
)
2136 word2
&= ~FATTR4_WORD2_SECURITY_LABEL
;
2138 p
= xdr_reserve_space(xdr
, 12);
2141 *p
++ = cpu_to_be32(2);
2142 *p
++ = cpu_to_be32(word0
);
2143 *p
++ = cpu_to_be32(word1
);
2145 p
= xdr_reserve_space(xdr
, 16);
2148 *p
++ = cpu_to_be32(3);
2149 *p
++ = cpu_to_be32(word0
);
2150 *p
++ = cpu_to_be32(word1
);
2151 *p
++ = cpu_to_be32(word2
);
2154 if (bmval0
& FATTR4_WORD0_TYPE
) {
2155 p
= xdr_reserve_space(xdr
, 4);
2158 dummy
= nfs4_file_type(stat
.mode
);
2159 if (dummy
== NF4BAD
) {
2160 status
= nfserr_serverfault
;
2163 *p
++ = cpu_to_be32(dummy
);
2165 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
2166 p
= xdr_reserve_space(xdr
, 4);
2169 if (exp
->ex_flags
& NFSEXP_NOSUBTREECHECK
)
2170 *p
++ = cpu_to_be32(NFS4_FH_PERSISTENT
);
2172 *p
++ = cpu_to_be32(NFS4_FH_PERSISTENT
|
2173 NFS4_FH_VOL_RENAME
);
2175 if (bmval0
& FATTR4_WORD0_CHANGE
) {
2176 p
= xdr_reserve_space(xdr
, 8);
2179 p
= encode_change(p
, &stat
, dentry
->d_inode
);
2181 if (bmval0
& FATTR4_WORD0_SIZE
) {
2182 p
= xdr_reserve_space(xdr
, 8);
2185 p
= xdr_encode_hyper(p
, stat
.size
);
2187 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
2188 p
= xdr_reserve_space(xdr
, 4);
2191 *p
++ = cpu_to_be32(1);
2193 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
2194 p
= xdr_reserve_space(xdr
, 4);
2197 *p
++ = cpu_to_be32(1);
2199 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
2200 p
= xdr_reserve_space(xdr
, 4);
2203 *p
++ = cpu_to_be32(0);
2205 if (bmval0
& FATTR4_WORD0_FSID
) {
2206 p
= xdr_reserve_space(xdr
, 16);
2209 if (exp
->ex_fslocs
.migrated
) {
2210 p
= xdr_encode_hyper(p
, NFS4_REFERRAL_FSID_MAJOR
);
2211 p
= xdr_encode_hyper(p
, NFS4_REFERRAL_FSID_MINOR
);
2212 } else switch(fsid_source(fhp
)) {
2213 case FSIDSOURCE_FSID
:
2214 p
= xdr_encode_hyper(p
, (u64
)exp
->ex_fsid
);
2215 p
= xdr_encode_hyper(p
, (u64
)0);
2217 case FSIDSOURCE_DEV
:
2218 *p
++ = cpu_to_be32(0);
2219 *p
++ = cpu_to_be32(MAJOR(stat
.dev
));
2220 *p
++ = cpu_to_be32(0);
2221 *p
++ = cpu_to_be32(MINOR(stat
.dev
));
2223 case FSIDSOURCE_UUID
:
2224 p
= xdr_encode_opaque_fixed(p
, exp
->ex_uuid
,
2229 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
2230 p
= xdr_reserve_space(xdr
, 4);
2233 *p
++ = cpu_to_be32(0);
2235 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
2236 p
= xdr_reserve_space(xdr
, 4);
2239 *p
++ = cpu_to_be32(nn
->nfsd4_lease
);
2241 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
2242 p
= xdr_reserve_space(xdr
, 4);
2245 *p
++ = cpu_to_be32(rdattr_err
);
2247 if (bmval0
& FATTR4_WORD0_ACL
) {
2248 struct nfs4_ace
*ace
;
2251 p
= xdr_reserve_space(xdr
, 4);
2255 *p
++ = cpu_to_be32(0);
2258 p
= xdr_reserve_space(xdr
, 4);
2261 *p
++ = cpu_to_be32(acl
->naces
);
2263 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
2264 p
= xdr_reserve_space(xdr
, 4*3);
2267 *p
++ = cpu_to_be32(ace
->type
);
2268 *p
++ = cpu_to_be32(ace
->flag
);
2269 *p
++ = cpu_to_be32(ace
->access_mask
&
2271 status
= nfsd4_encode_aclname(xdr
, rqstp
, ace
);
2277 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
2278 p
= xdr_reserve_space(xdr
, 4);
2281 *p
++ = cpu_to_be32(aclsupport
?
2282 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
2284 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
2285 p
= xdr_reserve_space(xdr
, 4);
2288 *p
++ = cpu_to_be32(1);
2290 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
2291 p
= xdr_reserve_space(xdr
, 4);
2294 *p
++ = cpu_to_be32(0);
2296 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
2297 p
= xdr_reserve_space(xdr
, 4);
2300 *p
++ = cpu_to_be32(1);
2302 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
2303 p
= xdr_reserve_space(xdr
, 4);
2306 *p
++ = cpu_to_be32(1);
2308 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
2309 p
= xdr_reserve_space(xdr
, fhp
->fh_handle
.fh_size
+ 4);
2312 p
= xdr_encode_opaque(p
, &fhp
->fh_handle
.fh_base
,
2313 fhp
->fh_handle
.fh_size
);
2315 if (bmval0
& FATTR4_WORD0_FILEID
) {
2316 p
= xdr_reserve_space(xdr
, 8);
2319 p
= xdr_encode_hyper(p
, stat
.ino
);
2321 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
2322 p
= xdr_reserve_space(xdr
, 8);
2325 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_ffree
);
2327 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
2328 p
= xdr_reserve_space(xdr
, 8);
2331 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_ffree
);
2333 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
2334 p
= xdr_reserve_space(xdr
, 8);
2337 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_files
);
2339 if (bmval0
& FATTR4_WORD0_FS_LOCATIONS
) {
2340 status
= nfsd4_encode_fs_locations(xdr
, rqstp
, exp
);
2344 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
2345 p
= xdr_reserve_space(xdr
, 4);
2348 *p
++ = cpu_to_be32(1);
2350 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
2351 p
= xdr_reserve_space(xdr
, 8);
2354 p
= xdr_encode_hyper(p
, exp
->ex_path
.mnt
->mnt_sb
->s_maxbytes
);
2356 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
2357 p
= xdr_reserve_space(xdr
, 4);
2360 *p
++ = cpu_to_be32(255);
2362 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
2363 p
= xdr_reserve_space(xdr
, 4);
2366 *p
++ = cpu_to_be32(statfs
.f_namelen
);
2368 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
2369 p
= xdr_reserve_space(xdr
, 8);
2372 p
= xdr_encode_hyper(p
, (u64
) svc_max_payload(rqstp
));
2374 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
2375 p
= xdr_reserve_space(xdr
, 8);
2378 p
= xdr_encode_hyper(p
, (u64
) svc_max_payload(rqstp
));
2380 if (bmval1
& FATTR4_WORD1_MODE
) {
2381 p
= xdr_reserve_space(xdr
, 4);
2384 *p
++ = cpu_to_be32(stat
.mode
& S_IALLUGO
);
2386 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
2387 p
= xdr_reserve_space(xdr
, 4);
2390 *p
++ = cpu_to_be32(1);
2392 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
2393 p
= xdr_reserve_space(xdr
, 4);
2396 *p
++ = cpu_to_be32(stat
.nlink
);
2398 if (bmval1
& FATTR4_WORD1_OWNER
) {
2399 status
= nfsd4_encode_user(xdr
, rqstp
, stat
.uid
);
2403 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
2404 status
= nfsd4_encode_group(xdr
, rqstp
, stat
.gid
);
2408 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
2409 p
= xdr_reserve_space(xdr
, 8);
2412 *p
++ = cpu_to_be32((u32
) MAJOR(stat
.rdev
));
2413 *p
++ = cpu_to_be32((u32
) MINOR(stat
.rdev
));
2415 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
2416 p
= xdr_reserve_space(xdr
, 8);
2419 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
2420 p
= xdr_encode_hyper(p
, dummy64
);
2422 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
2423 p
= xdr_reserve_space(xdr
, 8);
2426 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
2427 p
= xdr_encode_hyper(p
, dummy64
);
2429 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
2430 p
= xdr_reserve_space(xdr
, 8);
2433 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
2434 p
= xdr_encode_hyper(p
, dummy64
);
2436 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
2437 p
= xdr_reserve_space(xdr
, 8);
2440 dummy64
= (u64
)stat
.blocks
<< 9;
2441 p
= xdr_encode_hyper(p
, dummy64
);
2443 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
2444 p
= xdr_reserve_space(xdr
, 12);
2447 p
= xdr_encode_hyper(p
, (s64
)stat
.atime
.tv_sec
);
2448 *p
++ = cpu_to_be32(stat
.atime
.tv_nsec
);
2450 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
2451 p
= xdr_reserve_space(xdr
, 12);
2454 *p
++ = cpu_to_be32(0);
2455 *p
++ = cpu_to_be32(1);
2456 *p
++ = cpu_to_be32(0);
2458 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
2459 p
= xdr_reserve_space(xdr
, 12);
2462 p
= xdr_encode_hyper(p
, (s64
)stat
.ctime
.tv_sec
);
2463 *p
++ = cpu_to_be32(stat
.ctime
.tv_nsec
);
2465 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
2466 p
= xdr_reserve_space(xdr
, 12);
2469 p
= xdr_encode_hyper(p
, (s64
)stat
.mtime
.tv_sec
);
2470 *p
++ = cpu_to_be32(stat
.mtime
.tv_nsec
);
2472 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
2473 p
= xdr_reserve_space(xdr
, 8);
2477 * Get parent's attributes if not ignoring crossmount
2478 * and this is the root of a cross-mounted filesystem.
2480 if (ignore_crossmnt
== 0 &&
2481 dentry
== exp
->ex_path
.mnt
->mnt_root
)
2482 get_parent_attributes(exp
, &stat
);
2483 p
= xdr_encode_hyper(p
, stat
.ino
);
2485 if (bmval2
& FATTR4_WORD2_SECURITY_LABEL
) {
2486 status
= nfsd4_encode_security_label(xdr
, rqstp
, context
,
2491 if (bmval2
& FATTR4_WORD2_SUPPATTR_EXCLCREAT
) {
2492 p
= xdr_reserve_space(xdr
, 16);
2495 *p
++ = cpu_to_be32(3);
2496 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD0
);
2497 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD1
);
2498 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD2
);
2501 attrlen
= htonl(xdr
->buf
->len
- attrlen_offset
- 4);
2502 write_bytes_to_xdr_buf(xdr
->buf
, attrlen_offset
, &attrlen
, 4);
2506 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2508 security_release_secctx(context
, contextlen
);
2509 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2516 xdr_truncate_encode(xdr
, starting_len
);
2519 status
= nfserrno(err
);
2522 status
= nfserr_resource
;
2526 static void svcxdr_init_encode_from_buffer(struct xdr_stream
*xdr
,
2527 struct xdr_buf
*buf
, __be32
*p
, int bytes
)
2529 xdr
->scratch
.iov_len
= 0;
2530 memset(buf
, 0, sizeof(struct xdr_buf
));
2531 buf
->head
[0].iov_base
= p
;
2532 buf
->head
[0].iov_len
= 0;
2535 xdr
->iov
= buf
->head
;
2537 xdr
->end
= (void *)p
+ bytes
;
2538 buf
->buflen
= bytes
;
2541 __be32
nfsd4_encode_fattr_to_buf(__be32
**p
, int words
,
2542 struct svc_fh
*fhp
, struct svc_export
*exp
,
2543 struct dentry
*dentry
, u32
*bmval
,
2544 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
2546 struct xdr_buf dummy
;
2547 struct xdr_stream xdr
;
2550 svcxdr_init_encode_from_buffer(&xdr
, &dummy
, *p
, words
<< 2);
2551 ret
= nfsd4_encode_fattr(&xdr
, fhp
, exp
, dentry
, bmval
, rqstp
,
2557 static inline int attributes_need_mount(u32
*bmval
)
2559 if (bmval
[0] & ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_LEASE_TIME
))
2561 if (bmval
[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID
)
2567 nfsd4_encode_dirent_fattr(struct xdr_stream
*xdr
, struct nfsd4_readdir
*cd
,
2568 const char *name
, int namlen
)
2570 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
2571 struct dentry
*dentry
;
2573 int ignore_crossmnt
= 0;
2575 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
2577 return nfserrno(PTR_ERR(dentry
));
2578 if (!dentry
->d_inode
) {
2580 * nfsd_buffered_readdir drops the i_mutex between
2581 * readdir and calling this callback, leaving a window
2582 * where this directory entry could have gone away.
2585 return nfserr_noent
;
2590 * In the case of a mountpoint, the client may be asking for
2591 * attributes that are only properties of the underlying filesystem
2592 * as opposed to the cross-mounted file system. In such a case,
2593 * we will not follow the cross mount and will fill the attribtutes
2594 * directly from the mountpoint dentry.
2596 if (nfsd_mountpoint(dentry
, exp
)) {
2599 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
)
2600 && !attributes_need_mount(cd
->rd_bmval
)) {
2601 ignore_crossmnt
= 1;
2605 * Why the heck aren't we just using nfsd_lookup??
2606 * Different "."/".." handling? Something else?
2607 * At least, add a comment here to explain....
2609 err
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
, &exp
);
2611 nfserr
= nfserrno(err
);
2614 nfserr
= check_nfsd_access(exp
, cd
->rd_rqstp
);
2620 nfserr
= nfsd4_encode_fattr(xdr
, NULL
, exp
, dentry
, cd
->rd_bmval
,
2621 cd
->rd_rqstp
, ignore_crossmnt
);
2629 nfsd4_encode_rdattr_error(struct xdr_stream
*xdr
, __be32 nfserr
)
2633 p
= xdr_reserve_space(xdr
, 6);
2637 *p
++ = htonl(FATTR4_WORD0_RDATTR_ERROR
); /* bmval0 */
2638 *p
++ = htonl(0); /* bmval1 */
2640 *p
++ = htonl(4); /* attribute length */
2641 *p
++ = nfserr
; /* no htonl */
2646 nfsd4_encode_dirent(void *ccdv
, const char *name
, int namlen
,
2647 loff_t offset
, u64 ino
, unsigned int d_type
)
2649 struct readdir_cd
*ccd
= ccdv
;
2650 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
2651 struct xdr_stream
*xdr
= cd
->xdr
;
2652 int start_offset
= xdr
->buf
->len
;
2655 __be32 nfserr
= nfserr_toosmall
;
2659 /* In nfsv4, "." and ".." never make it onto the wire.. */
2660 if (name
&& isdotent(name
, namlen
)) {
2661 cd
->common
.err
= nfs_ok
;
2665 if (cd
->cookie_offset
) {
2666 wire_offset
= cpu_to_be64(offset
);
2667 write_bytes_to_xdr_buf(xdr
->buf
, cd
->cookie_offset
,
2671 p
= xdr_reserve_space(xdr
, 4);
2674 *p
++ = xdr_one
; /* mark entry present */
2675 cookie_offset
= xdr
->buf
->len
;
2676 p
= xdr_reserve_space(xdr
, 3*4 + namlen
);
2679 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
2680 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
2682 nfserr
= nfsd4_encode_dirent_fattr(xdr
, cd
, name
, namlen
);
2686 case nfserr_resource
:
2687 nfserr
= nfserr_toosmall
;
2690 xdr_truncate_encode(xdr
, start_offset
);
2694 * If the client requested the RDATTR_ERROR attribute,
2695 * we stuff the error code into this attribute
2696 * and continue. If this attribute was not requested,
2697 * then in accordance with the spec, we fail the
2698 * entire READDIR operation(!)
2700 if (!(cd
->rd_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
))
2702 p
= nfsd4_encode_rdattr_error(xdr
, nfserr
);
2704 nfserr
= nfserr_toosmall
;
2708 nfserr
= nfserr_toosmall
;
2709 entry_bytes
= xdr
->buf
->len
- start_offset
;
2710 if (entry_bytes
> cd
->rd_maxcount
)
2712 cd
->rd_maxcount
-= entry_bytes
;
2713 if (!cd
->rd_dircount
)
2716 cd
->cookie_offset
= cookie_offset
;
2718 cd
->common
.err
= nfs_ok
;
2721 xdr_truncate_encode(xdr
, start_offset
);
2722 cd
->common
.err
= nfserr
;
2727 nfsd4_encode_stateid(struct xdr_stream
*xdr
, stateid_t
*sid
)
2731 p
= xdr_reserve_space(xdr
, sizeof(stateid_t
));
2733 return nfserr_resource
;
2734 *p
++ = cpu_to_be32(sid
->si_generation
);
2735 p
= xdr_encode_opaque_fixed(p
, &sid
->si_opaque
,
2736 sizeof(stateid_opaque_t
));
2741 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_access
*access
)
2743 struct xdr_stream
*xdr
= &resp
->xdr
;
2747 p
= xdr_reserve_space(xdr
, 8);
2749 return nfserr_resource
;
2750 *p
++ = cpu_to_be32(access
->ac_supported
);
2751 *p
++ = cpu_to_be32(access
->ac_resp_access
);
2756 static __be32
nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_bind_conn_to_session
*bcts
)
2758 struct xdr_stream
*xdr
= &resp
->xdr
;
2762 p
= xdr_reserve_space(xdr
, NFS4_MAX_SESSIONID_LEN
+ 8);
2764 return nfserr_resource
;
2765 p
= xdr_encode_opaque_fixed(p
, bcts
->sessionid
.data
,
2766 NFS4_MAX_SESSIONID_LEN
);
2767 *p
++ = cpu_to_be32(bcts
->dir
);
2768 /* Sorry, we do not yet support RDMA over 4.1: */
2769 *p
++ = cpu_to_be32(0);
2775 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_close
*close
)
2777 struct xdr_stream
*xdr
= &resp
->xdr
;
2780 nfserr
= nfsd4_encode_stateid(xdr
, &close
->cl_stateid
);
2787 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_commit
*commit
)
2789 struct xdr_stream
*xdr
= &resp
->xdr
;
2793 p
= xdr_reserve_space(xdr
, NFS4_VERIFIER_SIZE
);
2795 return nfserr_resource
;
2796 p
= xdr_encode_opaque_fixed(p
, commit
->co_verf
.data
,
2797 NFS4_VERIFIER_SIZE
);
2803 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_create
*create
)
2805 struct xdr_stream
*xdr
= &resp
->xdr
;
2809 p
= xdr_reserve_space(xdr
, 32);
2811 return nfserr_resource
;
2812 p
= encode_cinfo(p
, &create
->cr_cinfo
);
2813 *p
++ = cpu_to_be32(2);
2814 *p
++ = cpu_to_be32(create
->cr_bmval
[0]);
2815 *p
++ = cpu_to_be32(create
->cr_bmval
[1]);
2821 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_getattr
*getattr
)
2823 struct svc_fh
*fhp
= getattr
->ga_fhp
;
2824 struct xdr_stream
*xdr
= &resp
->xdr
;
2829 nfserr
= nfsd4_encode_fattr(xdr
, fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
2836 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct svc_fh
**fhpp
)
2838 struct xdr_stream
*xdr
= &resp
->xdr
;
2839 struct svc_fh
*fhp
= *fhpp
;
2844 len
= fhp
->fh_handle
.fh_size
;
2845 p
= xdr_reserve_space(xdr
, len
+ 4);
2847 return nfserr_resource
;
2848 p
= xdr_encode_opaque(p
, &fhp
->fh_handle
.fh_base
, len
);
2854 * Including all fields other than the name, a LOCK4denied structure requires
2855 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2858 nfsd4_encode_lock_denied(struct xdr_stream
*xdr
, struct nfsd4_lock_denied
*ld
)
2860 struct xdr_netobj
*conf
= &ld
->ld_owner
;
2864 p
= xdr_reserve_space(xdr
, 32 + XDR_LEN(conf
->len
));
2867 * Don't fail to return the result just because we can't
2868 * return the conflicting open:
2875 return nfserr_resource
;
2877 p
= xdr_encode_hyper(p
, ld
->ld_start
);
2878 p
= xdr_encode_hyper(p
, ld
->ld_length
);
2879 *p
++ = cpu_to_be32(ld
->ld_type
);
2881 p
= xdr_encode_opaque_fixed(p
, &ld
->ld_clientid
, 8);
2882 p
= xdr_encode_opaque(p
, conf
->data
, conf
->len
);
2883 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2884 p
= xdr_encode_hyper(p
, (u64
)0); /* clientid */
2885 *p
++ = cpu_to_be32(0); /* length of owner name */
2887 return nfserr_denied
;
2891 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lock
*lock
)
2893 struct xdr_stream
*xdr
= &resp
->xdr
;
2896 nfserr
= nfsd4_encode_stateid(xdr
, &lock
->lk_resp_stateid
);
2897 else if (nfserr
== nfserr_denied
)
2898 nfserr
= nfsd4_encode_lock_denied(xdr
, &lock
->lk_denied
);
2899 kfree(lock
->lk_denied
.ld_owner
.data
);
2904 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lockt
*lockt
)
2906 struct xdr_stream
*xdr
= &resp
->xdr
;
2908 if (nfserr
== nfserr_denied
)
2909 nfsd4_encode_lock_denied(xdr
, &lockt
->lt_denied
);
2914 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_locku
*locku
)
2916 struct xdr_stream
*xdr
= &resp
->xdr
;
2919 nfserr
= nfsd4_encode_stateid(xdr
, &locku
->lu_stateid
);
2926 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_link
*link
)
2928 struct xdr_stream
*xdr
= &resp
->xdr
;
2932 p
= xdr_reserve_space(xdr
, 20);
2934 return nfserr_resource
;
2935 p
= encode_cinfo(p
, &link
->li_cinfo
);
2942 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open
*open
)
2944 struct xdr_stream
*xdr
= &resp
->xdr
;
2950 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_stateid
);
2953 p
= xdr_reserve_space(xdr
, 40);
2955 return nfserr_resource
;
2956 p
= encode_cinfo(p
, &open
->op_cinfo
);
2957 *p
++ = cpu_to_be32(open
->op_rflags
);
2958 *p
++ = cpu_to_be32(2);
2959 *p
++ = cpu_to_be32(open
->op_bmval
[0]);
2960 *p
++ = cpu_to_be32(open
->op_bmval
[1]);
2961 *p
++ = cpu_to_be32(open
->op_delegate_type
);
2963 switch (open
->op_delegate_type
) {
2964 case NFS4_OPEN_DELEGATE_NONE
:
2966 case NFS4_OPEN_DELEGATE_READ
:
2967 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_delegate_stateid
);
2970 p
= xdr_reserve_space(xdr
, 20);
2972 return nfserr_resource
;
2973 *p
++ = cpu_to_be32(open
->op_recall
);
2976 * TODO: ACE's in delegations
2978 *p
++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2979 *p
++ = cpu_to_be32(0);
2980 *p
++ = cpu_to_be32(0);
2981 *p
++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
2983 case NFS4_OPEN_DELEGATE_WRITE
:
2984 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_delegate_stateid
);
2987 p
= xdr_reserve_space(xdr
, 32);
2989 return nfserr_resource
;
2990 *p
++ = cpu_to_be32(0);
2993 * TODO: space_limit's in delegations
2995 *p
++ = cpu_to_be32(NFS4_LIMIT_SIZE
);
2996 *p
++ = cpu_to_be32(~(u32
)0);
2997 *p
++ = cpu_to_be32(~(u32
)0);
3000 * TODO: ACE's in delegations
3002 *p
++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
3003 *p
++ = cpu_to_be32(0);
3004 *p
++ = cpu_to_be32(0);
3005 *p
++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
3007 case NFS4_OPEN_DELEGATE_NONE_EXT
: /* 4.1 */
3008 switch (open
->op_why_no_deleg
) {
3009 case WND4_CONTENTION
:
3011 p
= xdr_reserve_space(xdr
, 8);
3013 return nfserr_resource
;
3014 *p
++ = cpu_to_be32(open
->op_why_no_deleg
);
3015 /* deleg signaling not supported yet: */
3016 *p
++ = cpu_to_be32(0);
3019 p
= xdr_reserve_space(xdr
, 4);
3021 return nfserr_resource
;
3022 *p
++ = cpu_to_be32(open
->op_why_no_deleg
);
3028 /* XXX save filehandle here */
3034 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_confirm
*oc
)
3036 struct xdr_stream
*xdr
= &resp
->xdr
;
3039 nfserr
= nfsd4_encode_stateid(xdr
, &oc
->oc_resp_stateid
);
3045 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_downgrade
*od
)
3047 struct xdr_stream
*xdr
= &resp
->xdr
;
3050 nfserr
= nfsd4_encode_stateid(xdr
, &od
->od_stateid
);
3055 static __be32
nfsd4_encode_splice_read(
3056 struct nfsd4_compoundres
*resp
,
3057 struct nfsd4_read
*read
,
3058 struct file
*file
, unsigned long maxcount
)
3060 struct xdr_stream
*xdr
= &resp
->xdr
;
3061 struct xdr_buf
*buf
= xdr
->buf
;
3065 __be32
*p
= xdr
->p
- 2;
3068 * Don't inline pages unless we know there's room for eof,
3069 * count, and possible padding:
3071 if (xdr
->end
- xdr
->p
< 3)
3072 return nfserr_resource
;
3074 nfserr
= nfsd_splice_read(read
->rd_rqstp
, file
,
3075 read
->rd_offset
, &maxcount
);
3078 * nfsd_splice_actor may have already messed with the
3079 * page length; reset it so as not to confuse
3080 * xdr_truncate_encode:
3086 eof
= (read
->rd_offset
+ maxcount
>=
3087 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
3089 *(p
++) = htonl(eof
);
3090 *(p
++) = htonl(maxcount
);
3092 buf
->page_len
= maxcount
;
3093 buf
->len
+= maxcount
;
3094 xdr
->page_ptr
+= (maxcount
+ PAGE_SIZE
- 1) / PAGE_SIZE
;
3096 /* Use rest of head for padding and remaining ops: */
3097 buf
->tail
[0].iov_base
= xdr
->p
;
3098 buf
->tail
[0].iov_len
= 0;
3099 xdr
->iov
= buf
->tail
;
3101 int pad
= 4 - (maxcount
&3);
3105 buf
->tail
[0].iov_base
+= maxcount
&3;
3106 buf
->tail
[0].iov_len
= pad
;
3110 space_left
= min_t(int, (void *)xdr
->end
- (void *)xdr
->p
,
3111 buf
->buflen
- buf
->len
);
3112 buf
->buflen
= buf
->len
+ space_left
;
3113 xdr
->end
= (__be32
*)((void *)xdr
->end
+ space_left
);
3118 static __be32
nfsd4_encode_readv(struct nfsd4_compoundres
*resp
,
3119 struct nfsd4_read
*read
,
3120 struct file
*file
, unsigned long maxcount
)
3122 struct xdr_stream
*xdr
= &resp
->xdr
;
3125 int starting_len
= xdr
->buf
->len
- 8;
3137 thislen
= (void *)xdr
->end
- (void *)xdr
->p
;
3140 p
= xdr_reserve_space(xdr
, (thislen
+3)&~3);
3142 resp
->rqstp
->rq_vec
[v
].iov_base
= p
;
3143 resp
->rqstp
->rq_vec
[v
].iov_len
= thislen
;
3148 thislen
= min_t(long, len
, PAGE_SIZE
);
3149 p
= xdr_reserve_space(xdr
, (thislen
+3)&~3);
3151 resp
->rqstp
->rq_vec
[v
].iov_base
= p
;
3152 resp
->rqstp
->rq_vec
[v
].iov_len
= thislen
;
3158 nfserr
= nfsd_readv(file
, read
->rd_offset
, resp
->rqstp
->rq_vec
,
3159 read
->rd_vlen
, &maxcount
);
3162 xdr_truncate_encode(xdr
, starting_len
+ 8 + ((maxcount
+3)&~3));
3164 eof
= (read
->rd_offset
+ maxcount
>=
3165 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
3168 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
, &tmp
, 4);
3169 tmp
= htonl(maxcount
);
3170 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
+ 4, &tmp
, 4);
3172 pad
= (maxcount
&3) ? 4 - (maxcount
&3) : 0;
3173 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
+ 8 + maxcount
,
3180 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3181 struct nfsd4_read
*read
)
3183 unsigned long maxcount
;
3184 struct xdr_stream
*xdr
= &resp
->xdr
;
3185 struct file
*file
= read
->rd_filp
;
3186 int starting_len
= xdr
->buf
->len
;
3194 p
= xdr_reserve_space(xdr
, 8); /* eof flag and byte count */
3196 WARN_ON_ONCE(resp
->rqstp
->rq_splice_ok
);
3197 return nfserr_resource
;
3199 if (resp
->xdr
.buf
->page_len
&& resp
->rqstp
->rq_splice_ok
) {
3201 return nfserr_resource
;
3203 xdr_commit_encode(xdr
);
3205 maxcount
= svc_max_payload(resp
->rqstp
);
3206 if (maxcount
> xdr
->buf
->buflen
- xdr
->buf
->len
)
3207 maxcount
= xdr
->buf
->buflen
- xdr
->buf
->len
;
3208 if (maxcount
> read
->rd_length
)
3209 maxcount
= read
->rd_length
;
3211 if (!read
->rd_filp
) {
3212 err
= nfsd_get_tmp_read_open(resp
->rqstp
, read
->rd_fhp
,
3218 if (file
->f_op
->splice_read
&& resp
->rqstp
->rq_splice_ok
)
3219 err
= nfsd4_encode_splice_read(resp
, read
, file
, maxcount
);
3221 err
= nfsd4_encode_readv(resp
, read
, file
, maxcount
);
3224 nfsd_put_tmp_read_open(file
, ra
);
3228 xdr_truncate_encode(xdr
, starting_len
);
3233 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readlink
*readlink
)
3238 struct xdr_stream
*xdr
= &resp
->xdr
;
3239 int length_offset
= xdr
->buf
->len
;
3245 p
= xdr_reserve_space(xdr
, 4);
3247 return nfserr_resource
;
3248 maxcount
= PAGE_SIZE
;
3250 p
= xdr_reserve_space(xdr
, maxcount
);
3252 return nfserr_resource
;
3254 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3255 * if they would overflow the buffer. Is this kosher in NFSv4? If
3256 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3257 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3259 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
,
3260 (char *)p
, &maxcount
);
3261 if (nfserr
== nfserr_isdir
)
3262 nfserr
= nfserr_inval
;
3264 xdr_truncate_encode(xdr
, length_offset
);
3268 wire_count
= htonl(maxcount
);
3269 write_bytes_to_xdr_buf(xdr
->buf
, length_offset
, &wire_count
, 4);
3270 xdr_truncate_encode(xdr
, length_offset
+ 4 + maxcount
);
3272 write_bytes_to_xdr_buf(xdr
->buf
, length_offset
+ 4 + maxcount
,
3273 &zero
, 4 - (maxcount
&3));
3278 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readdir
*readdir
)
3284 struct xdr_stream
*xdr
= &resp
->xdr
;
3285 int starting_len
= xdr
->buf
->len
;
3291 p
= xdr_reserve_space(xdr
, NFS4_VERIFIER_SIZE
);
3293 return nfserr_resource
;
3295 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3296 *p
++ = cpu_to_be32(0);
3297 *p
++ = cpu_to_be32(0);
3298 resp
->xdr
.buf
->head
[0].iov_len
= ((char *)resp
->xdr
.p
)
3299 - (char *)resp
->xdr
.buf
->head
[0].iov_base
;
3302 * Number of bytes left for directory entries allowing for the
3303 * final 8 bytes of the readdir and a following failed op:
3305 bytes_left
= xdr
->buf
->buflen
- xdr
->buf
->len
3306 - COMPOUND_ERR_SLACK_SPACE
- 8;
3307 if (bytes_left
< 0) {
3308 nfserr
= nfserr_resource
;
3311 maxcount
= min_t(u32
, readdir
->rd_maxcount
, INT_MAX
);
3313 * Note the rfc defines rd_maxcount as the size of the
3314 * READDIR4resok structure, which includes the verifier above
3315 * and the 8 bytes encoded at the end of this function:
3317 if (maxcount
< 16) {
3318 nfserr
= nfserr_toosmall
;
3321 maxcount
= min_t(int, maxcount
-16, bytes_left
);
3324 readdir
->rd_maxcount
= maxcount
;
3325 readdir
->common
.err
= 0;
3326 readdir
->cookie_offset
= 0;
3328 offset
= readdir
->rd_cookie
;
3329 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
3331 &readdir
->common
, nfsd4_encode_dirent
);
3332 if (nfserr
== nfs_ok
&&
3333 readdir
->common
.err
== nfserr_toosmall
&&
3334 xdr
->buf
->len
== starting_len
+ 8) {
3335 /* nothing encoded; which limit did we hit?: */
3336 if (maxcount
- 16 < bytes_left
)
3337 /* It was the fault of rd_maxcount: */
3338 nfserr
= nfserr_toosmall
;
3340 /* We ran out of buffer space: */
3341 nfserr
= nfserr_resource
;
3346 if (readdir
->cookie_offset
) {
3347 wire_offset
= cpu_to_be64(offset
);
3348 write_bytes_to_xdr_buf(xdr
->buf
, readdir
->cookie_offset
,
3352 p
= xdr_reserve_space(xdr
, 8);
3357 *p
++ = 0; /* no more entries */
3358 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
3362 xdr_truncate_encode(xdr
, starting_len
);
3367 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_remove
*remove
)
3369 struct xdr_stream
*xdr
= &resp
->xdr
;
3373 p
= xdr_reserve_space(xdr
, 20);
3375 return nfserr_resource
;
3376 p
= encode_cinfo(p
, &remove
->rm_cinfo
);
3382 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_rename
*rename
)
3384 struct xdr_stream
*xdr
= &resp
->xdr
;
3388 p
= xdr_reserve_space(xdr
, 40);
3390 return nfserr_resource
;
3391 p
= encode_cinfo(p
, &rename
->rn_sinfo
);
3392 p
= encode_cinfo(p
, &rename
->rn_tinfo
);
3398 nfsd4_do_encode_secinfo(struct xdr_stream
*xdr
,
3399 __be32 nfserr
, struct svc_export
*exp
)
3401 u32 i
, nflavs
, supported
;
3402 struct exp_flavor_info
*flavs
;
3403 struct exp_flavor_info def_flavs
[2];
3404 __be32
*p
, *flavorsp
;
3405 static bool report
= true;
3409 nfserr
= nfserr_resource
;
3410 if (exp
->ex_nflavors
) {
3411 flavs
= exp
->ex_flavors
;
3412 nflavs
= exp
->ex_nflavors
;
3413 } else { /* Handling of some defaults in absence of real secinfo: */
3415 if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_UNIX
) {
3417 flavs
[0].pseudoflavor
= RPC_AUTH_UNIX
;
3418 flavs
[1].pseudoflavor
= RPC_AUTH_NULL
;
3419 } else if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_GSS
) {
3421 flavs
[0].pseudoflavor
3422 = svcauth_gss_flavor(exp
->ex_client
);
3425 flavs
[0].pseudoflavor
3426 = exp
->ex_client
->flavour
->flavour
;
3431 p
= xdr_reserve_space(xdr
, 4);
3434 flavorsp
= p
++; /* to be backfilled later */
3436 for (i
= 0; i
< nflavs
; i
++) {
3437 rpc_authflavor_t pf
= flavs
[i
].pseudoflavor
;
3438 struct rpcsec_gss_info info
;
3440 if (rpcauth_get_gssinfo(pf
, &info
) == 0) {
3442 p
= xdr_reserve_space(xdr
, 4 + 4 +
3443 XDR_LEN(info
.oid
.len
) + 4 + 4);
3446 *p
++ = cpu_to_be32(RPC_AUTH_GSS
);
3447 p
= xdr_encode_opaque(p
, info
.oid
.data
, info
.oid
.len
);
3448 *p
++ = cpu_to_be32(info
.qop
);
3449 *p
++ = cpu_to_be32(info
.service
);
3450 } else if (pf
< RPC_AUTH_MAXFLAVOR
) {
3452 p
= xdr_reserve_space(xdr
, 4);
3455 *p
++ = cpu_to_be32(pf
);
3458 pr_warn("NFS: SECINFO: security flavor %u "
3459 "is not supported\n", pf
);
3463 if (nflavs
!= supported
)
3465 *flavorsp
= htonl(supported
);
3474 nfsd4_encode_secinfo(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3475 struct nfsd4_secinfo
*secinfo
)
3477 struct xdr_stream
*xdr
= &resp
->xdr
;
3479 return nfsd4_do_encode_secinfo(xdr
, nfserr
, secinfo
->si_exp
);
3483 nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3484 struct nfsd4_secinfo_no_name
*secinfo
)
3486 struct xdr_stream
*xdr
= &resp
->xdr
;
3488 return nfsd4_do_encode_secinfo(xdr
, nfserr
, secinfo
->sin_exp
);
3492 * The SETATTR encode routine is special -- it always encodes a bitmap,
3493 * regardless of the error status.
3496 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setattr
*setattr
)
3498 struct xdr_stream
*xdr
= &resp
->xdr
;
3501 p
= xdr_reserve_space(xdr
, 16);
3503 return nfserr_resource
;
3505 *p
++ = cpu_to_be32(3);
3506 *p
++ = cpu_to_be32(0);
3507 *p
++ = cpu_to_be32(0);
3508 *p
++ = cpu_to_be32(0);
3511 *p
++ = cpu_to_be32(3);
3512 *p
++ = cpu_to_be32(setattr
->sa_bmval
[0]);
3513 *p
++ = cpu_to_be32(setattr
->sa_bmval
[1]);
3514 *p
++ = cpu_to_be32(setattr
->sa_bmval
[2]);
3520 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setclientid
*scd
)
3522 struct xdr_stream
*xdr
= &resp
->xdr
;
3526 p
= xdr_reserve_space(xdr
, 8 + NFS4_VERIFIER_SIZE
);
3528 return nfserr_resource
;
3529 p
= xdr_encode_opaque_fixed(p
, &scd
->se_clientid
, 8);
3530 p
= xdr_encode_opaque_fixed(p
, &scd
->se_confirm
,
3531 NFS4_VERIFIER_SIZE
);
3533 else if (nfserr
== nfserr_clid_inuse
) {
3534 p
= xdr_reserve_space(xdr
, 8);
3536 return nfserr_resource
;
3537 *p
++ = cpu_to_be32(0);
3538 *p
++ = cpu_to_be32(0);
3544 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_write
*write
)
3546 struct xdr_stream
*xdr
= &resp
->xdr
;
3550 p
= xdr_reserve_space(xdr
, 16);
3552 return nfserr_resource
;
3553 *p
++ = cpu_to_be32(write
->wr_bytes_written
);
3554 *p
++ = cpu_to_be32(write
->wr_how_written
);
3555 p
= xdr_encode_opaque_fixed(p
, write
->wr_verifier
.data
,
3556 NFS4_VERIFIER_SIZE
);
3561 static const u32 nfs4_minimal_spo_must_enforce
[2] = {
3562 [1] = 1 << (OP_BIND_CONN_TO_SESSION
- 32) |
3563 1 << (OP_EXCHANGE_ID
- 32) |
3564 1 << (OP_CREATE_SESSION
- 32) |
3565 1 << (OP_DESTROY_SESSION
- 32) |
3566 1 << (OP_DESTROY_CLIENTID
- 32)
3570 nfsd4_encode_exchange_id(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3571 struct nfsd4_exchange_id
*exid
)
3573 struct xdr_stream
*xdr
= &resp
->xdr
;
3578 int server_scope_sz
;
3579 uint64_t minor_id
= 0;
3584 major_id
= utsname()->nodename
;
3585 major_id_sz
= strlen(major_id
);
3586 server_scope
= utsname()->nodename
;
3587 server_scope_sz
= strlen(server_scope
);
3589 p
= xdr_reserve_space(xdr
,
3590 8 /* eir_clientid */ +
3591 4 /* eir_sequenceid */ +
3595 return nfserr_resource
;
3597 p
= xdr_encode_opaque_fixed(p
, &exid
->clientid
, 8);
3598 *p
++ = cpu_to_be32(exid
->seqid
);
3599 *p
++ = cpu_to_be32(exid
->flags
);
3601 *p
++ = cpu_to_be32(exid
->spa_how
);
3603 switch (exid
->spa_how
) {
3607 /* spo_must_enforce, spo_must_allow */
3608 p
= xdr_reserve_space(xdr
, 16);
3610 return nfserr_resource
;
3612 /* spo_must_enforce bitmap: */
3613 *p
++ = cpu_to_be32(2);
3614 *p
++ = cpu_to_be32(nfs4_minimal_spo_must_enforce
[0]);
3615 *p
++ = cpu_to_be32(nfs4_minimal_spo_must_enforce
[1]);
3616 /* empty spo_must_allow bitmap: */
3617 *p
++ = cpu_to_be32(0);
3624 p
= xdr_reserve_space(xdr
,
3625 8 /* so_minor_id */ +
3626 4 /* so_major_id.len */ +
3627 (XDR_QUADLEN(major_id_sz
) * 4) +
3628 4 /* eir_server_scope.len */ +
3629 (XDR_QUADLEN(server_scope_sz
) * 4) +
3630 4 /* eir_server_impl_id.count (0) */);
3632 return nfserr_resource
;
3634 /* The server_owner struct */
3635 p
= xdr_encode_hyper(p
, minor_id
); /* Minor id */
3637 p
= xdr_encode_opaque(p
, major_id
, major_id_sz
);
3640 p
= xdr_encode_opaque(p
, server_scope
, server_scope_sz
);
3642 /* Implementation id */
3643 *p
++ = cpu_to_be32(0); /* zero length nfs_impl_id4 array */
3648 nfsd4_encode_create_session(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3649 struct nfsd4_create_session
*sess
)
3651 struct xdr_stream
*xdr
= &resp
->xdr
;
3657 p
= xdr_reserve_space(xdr
, 24);
3659 return nfserr_resource
;
3660 p
= xdr_encode_opaque_fixed(p
, sess
->sessionid
.data
,
3661 NFS4_MAX_SESSIONID_LEN
);
3662 *p
++ = cpu_to_be32(sess
->seqid
);
3663 *p
++ = cpu_to_be32(sess
->flags
);
3665 p
= xdr_reserve_space(xdr
, 28);
3667 return nfserr_resource
;
3668 *p
++ = cpu_to_be32(0); /* headerpadsz */
3669 *p
++ = cpu_to_be32(sess
->fore_channel
.maxreq_sz
);
3670 *p
++ = cpu_to_be32(sess
->fore_channel
.maxresp_sz
);
3671 *p
++ = cpu_to_be32(sess
->fore_channel
.maxresp_cached
);
3672 *p
++ = cpu_to_be32(sess
->fore_channel
.maxops
);
3673 *p
++ = cpu_to_be32(sess
->fore_channel
.maxreqs
);
3674 *p
++ = cpu_to_be32(sess
->fore_channel
.nr_rdma_attrs
);
3676 if (sess
->fore_channel
.nr_rdma_attrs
) {
3677 p
= xdr_reserve_space(xdr
, 4);
3679 return nfserr_resource
;
3680 *p
++ = cpu_to_be32(sess
->fore_channel
.rdma_attrs
);
3683 p
= xdr_reserve_space(xdr
, 28);
3685 return nfserr_resource
;
3686 *p
++ = cpu_to_be32(0); /* headerpadsz */
3687 *p
++ = cpu_to_be32(sess
->back_channel
.maxreq_sz
);
3688 *p
++ = cpu_to_be32(sess
->back_channel
.maxresp_sz
);
3689 *p
++ = cpu_to_be32(sess
->back_channel
.maxresp_cached
);
3690 *p
++ = cpu_to_be32(sess
->back_channel
.maxops
);
3691 *p
++ = cpu_to_be32(sess
->back_channel
.maxreqs
);
3692 *p
++ = cpu_to_be32(sess
->back_channel
.nr_rdma_attrs
);
3694 if (sess
->back_channel
.nr_rdma_attrs
) {
3695 p
= xdr_reserve_space(xdr
, 4);
3697 return nfserr_resource
;
3698 *p
++ = cpu_to_be32(sess
->back_channel
.rdma_attrs
);
3704 nfsd4_encode_sequence(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3705 struct nfsd4_sequence
*seq
)
3707 struct xdr_stream
*xdr
= &resp
->xdr
;
3713 p
= xdr_reserve_space(xdr
, NFS4_MAX_SESSIONID_LEN
+ 20);
3715 return nfserr_resource
;
3716 p
= xdr_encode_opaque_fixed(p
, seq
->sessionid
.data
,
3717 NFS4_MAX_SESSIONID_LEN
);
3718 *p
++ = cpu_to_be32(seq
->seqid
);
3719 *p
++ = cpu_to_be32(seq
->slotid
);
3720 /* Note slotid's are numbered from zero: */
3721 *p
++ = cpu_to_be32(seq
->maxslots
- 1); /* sr_highest_slotid */
3722 *p
++ = cpu_to_be32(seq
->maxslots
- 1); /* sr_target_highest_slotid */
3723 *p
++ = cpu_to_be32(seq
->status_flags
);
3725 resp
->cstate
.data_offset
= xdr
->buf
->len
; /* DRC cache data pointer */
3730 nfsd4_encode_test_stateid(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3731 struct nfsd4_test_stateid
*test_stateid
)
3733 struct xdr_stream
*xdr
= &resp
->xdr
;
3734 struct nfsd4_test_stateid_id
*stateid
, *next
;
3740 p
= xdr_reserve_space(xdr
, 4 + (4 * test_stateid
->ts_num_ids
));
3742 return nfserr_resource
;
3743 *p
++ = htonl(test_stateid
->ts_num_ids
);
3745 list_for_each_entry_safe(stateid
, next
, &test_stateid
->ts_stateid_list
, ts_id_list
) {
3746 *p
++ = stateid
->ts_id_status
;
3753 nfsd4_encode_noop(struct nfsd4_compoundres
*resp
, __be32 nfserr
, void *p
)
3758 typedef __be32(* nfsd4_enc
)(struct nfsd4_compoundres
*, __be32
, void *);
3761 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3762 * since we don't need to filter out obsolete ops as this is
3763 * done in the decoding phase.
3765 static nfsd4_enc nfsd4_enc_ops
[] = {
3766 [OP_ACCESS
] = (nfsd4_enc
)nfsd4_encode_access
,
3767 [OP_CLOSE
] = (nfsd4_enc
)nfsd4_encode_close
,
3768 [OP_COMMIT
] = (nfsd4_enc
)nfsd4_encode_commit
,
3769 [OP_CREATE
] = (nfsd4_enc
)nfsd4_encode_create
,
3770 [OP_DELEGPURGE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3771 [OP_DELEGRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3772 [OP_GETATTR
] = (nfsd4_enc
)nfsd4_encode_getattr
,
3773 [OP_GETFH
] = (nfsd4_enc
)nfsd4_encode_getfh
,
3774 [OP_LINK
] = (nfsd4_enc
)nfsd4_encode_link
,
3775 [OP_LOCK
] = (nfsd4_enc
)nfsd4_encode_lock
,
3776 [OP_LOCKT
] = (nfsd4_enc
)nfsd4_encode_lockt
,
3777 [OP_LOCKU
] = (nfsd4_enc
)nfsd4_encode_locku
,
3778 [OP_LOOKUP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3779 [OP_LOOKUPP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3780 [OP_NVERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3781 [OP_OPEN
] = (nfsd4_enc
)nfsd4_encode_open
,
3782 [OP_OPENATTR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3783 [OP_OPEN_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_open_confirm
,
3784 [OP_OPEN_DOWNGRADE
] = (nfsd4_enc
)nfsd4_encode_open_downgrade
,
3785 [OP_PUTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3786 [OP_PUTPUBFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3787 [OP_PUTROOTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3788 [OP_READ
] = (nfsd4_enc
)nfsd4_encode_read
,
3789 [OP_READDIR
] = (nfsd4_enc
)nfsd4_encode_readdir
,
3790 [OP_READLINK
] = (nfsd4_enc
)nfsd4_encode_readlink
,
3791 [OP_REMOVE
] = (nfsd4_enc
)nfsd4_encode_remove
,
3792 [OP_RENAME
] = (nfsd4_enc
)nfsd4_encode_rename
,
3793 [OP_RENEW
] = (nfsd4_enc
)nfsd4_encode_noop
,
3794 [OP_RESTOREFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3795 [OP_SAVEFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3796 [OP_SECINFO
] = (nfsd4_enc
)nfsd4_encode_secinfo
,
3797 [OP_SETATTR
] = (nfsd4_enc
)nfsd4_encode_setattr
,
3798 [OP_SETCLIENTID
] = (nfsd4_enc
)nfsd4_encode_setclientid
,
3799 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_noop
,
3800 [OP_VERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3801 [OP_WRITE
] = (nfsd4_enc
)nfsd4_encode_write
,
3802 [OP_RELEASE_LOCKOWNER
] = (nfsd4_enc
)nfsd4_encode_noop
,
3804 /* NFSv4.1 operations */
3805 [OP_BACKCHANNEL_CTL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3806 [OP_BIND_CONN_TO_SESSION
] = (nfsd4_enc
)nfsd4_encode_bind_conn_to_session
,
3807 [OP_EXCHANGE_ID
] = (nfsd4_enc
)nfsd4_encode_exchange_id
,
3808 [OP_CREATE_SESSION
] = (nfsd4_enc
)nfsd4_encode_create_session
,
3809 [OP_DESTROY_SESSION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3810 [OP_FREE_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3811 [OP_GET_DIR_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3812 [OP_GETDEVICEINFO
] = (nfsd4_enc
)nfsd4_encode_noop
,
3813 [OP_GETDEVICELIST
] = (nfsd4_enc
)nfsd4_encode_noop
,
3814 [OP_LAYOUTCOMMIT
] = (nfsd4_enc
)nfsd4_encode_noop
,
3815 [OP_LAYOUTGET
] = (nfsd4_enc
)nfsd4_encode_noop
,
3816 [OP_LAYOUTRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3817 [OP_SECINFO_NO_NAME
] = (nfsd4_enc
)nfsd4_encode_secinfo_no_name
,
3818 [OP_SEQUENCE
] = (nfsd4_enc
)nfsd4_encode_sequence
,
3819 [OP_SET_SSV
] = (nfsd4_enc
)nfsd4_encode_noop
,
3820 [OP_TEST_STATEID
] = (nfsd4_enc
)nfsd4_encode_test_stateid
,
3821 [OP_WANT_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3822 [OP_DESTROY_CLIENTID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3823 [OP_RECLAIM_COMPLETE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3827 * Calculate whether we still have space to encode repsize bytes.
3828 * There are two considerations:
3829 * - For NFS versions >=4.1, the size of the reply must stay within
3831 * - For all NFS versions, we must stay within limited preallocated
3834 * This is called before the operation is processed, so can only provide
3835 * an upper estimate. For some nonidempotent operations (such as
3836 * getattr), it's not necessarily a problem if that estimate is wrong,
3837 * as we can fail it after processing without significant side effects.
3839 __be32
nfsd4_check_resp_size(struct nfsd4_compoundres
*resp
, u32 respsize
)
3841 struct xdr_buf
*buf
= &resp
->rqstp
->rq_res
;
3842 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3844 if (buf
->len
+ respsize
<= buf
->buflen
)
3846 if (!nfsd4_has_session(&resp
->cstate
))
3847 return nfserr_resource
;
3848 if (slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
) {
3850 return nfserr_rep_too_big_to_cache
;
3852 return nfserr_rep_too_big
;
3856 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3858 struct xdr_stream
*xdr
= &resp
->xdr
;
3859 struct nfs4_stateowner
*so
= resp
->cstate
.replay_owner
;
3860 struct svc_rqst
*rqstp
= resp
->rqstp
;
3861 int post_err_offset
;
3865 p
= xdr_reserve_space(xdr
, 8);
3870 *p
++ = cpu_to_be32(op
->opnum
);
3871 post_err_offset
= xdr
->buf
->len
;
3873 if (op
->opnum
== OP_ILLEGAL
)
3875 BUG_ON(op
->opnum
< 0 || op
->opnum
>= ARRAY_SIZE(nfsd4_enc_ops
) ||
3876 !nfsd4_enc_ops
[op
->opnum
]);
3877 encoder
= nfsd4_enc_ops
[op
->opnum
];
3878 op
->status
= encoder(resp
, op
->status
, &op
->u
);
3879 xdr_commit_encode(xdr
);
3881 /* nfsd4_check_resp_size guarantees enough room for error status */
3883 int space_needed
= 0;
3884 if (!nfsd4_last_compound_op(rqstp
))
3885 space_needed
= COMPOUND_ERR_SLACK_SPACE
;
3886 op
->status
= nfsd4_check_resp_size(resp
, space_needed
);
3888 if (op
->status
== nfserr_resource
&& nfsd4_has_session(&resp
->cstate
)) {
3889 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3891 if (slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
)
3892 op
->status
= nfserr_rep_too_big_to_cache
;
3894 op
->status
= nfserr_rep_too_big
;
3896 if (op
->status
== nfserr_resource
||
3897 op
->status
== nfserr_rep_too_big
||
3898 op
->status
== nfserr_rep_too_big_to_cache
) {
3900 * The operation may have already been encoded or
3901 * partially encoded. No op returns anything additional
3902 * in the case of one of these three errors, so we can
3903 * just truncate back to after the status. But it's a
3904 * bug if we had to do this on a non-idempotent op:
3906 warn_on_nonidempotent_op(op
);
3907 xdr_truncate_encode(xdr
, post_err_offset
);
3910 int len
= xdr
->buf
->len
- post_err_offset
;
3912 so
->so_replay
.rp_status
= op
->status
;
3913 so
->so_replay
.rp_buflen
= len
;
3914 read_bytes_from_xdr_buf(xdr
->buf
, post_err_offset
,
3915 so
->so_replay
.rp_buf
, len
);
3918 /* Note that op->status is already in network byte order: */
3919 write_bytes_to_xdr_buf(xdr
->buf
, post_err_offset
- 4, &op
->status
, 4);
3923 * Encode the reply stored in the stateowner reply cache
3925 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3926 * previously sent already encoded operation.
3928 * called with nfs4_lock_state() held
3931 nfsd4_encode_replay(struct xdr_stream
*xdr
, struct nfsd4_op
*op
)
3934 struct nfs4_replay
*rp
= op
->replay
;
3938 p
= xdr_reserve_space(xdr
, 8 + rp
->rp_buflen
);
3943 *p
++ = cpu_to_be32(op
->opnum
);
3944 *p
++ = rp
->rp_status
; /* already xdr'ed */
3946 p
= xdr_encode_opaque_fixed(p
, rp
->rp_buf
, rp
->rp_buflen
);
3950 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
3952 return xdr_ressize_check(rqstp
, p
);
3955 int nfsd4_release_compoundargs(void *rq
, __be32
*p
, void *resp
)
3957 struct svc_rqst
*rqstp
= rq
;
3958 struct nfsd4_compoundargs
*args
= rqstp
->rq_argp
;
3960 if (args
->ops
!= args
->iops
) {
3962 args
->ops
= args
->iops
;
3966 while (args
->to_free
) {
3967 struct tmpbuf
*tb
= args
->to_free
;
3968 args
->to_free
= tb
->next
;
3969 tb
->release(tb
->buf
);
3976 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundargs
*args
)
3978 if (rqstp
->rq_arg
.head
[0].iov_len
% 4) {
3979 /* client is nuts */
3980 dprintk("%s: compound not properly padded! (peeraddr=%pISc xid=0x%x)",
3981 __func__
, svc_addr(rqstp
), be32_to_cpu(rqstp
->rq_xid
));
3985 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
3986 args
->pagelist
= rqstp
->rq_arg
.pages
;
3987 args
->pagelen
= rqstp
->rq_arg
.page_len
;
3989 args
->to_free
= NULL
;
3990 args
->ops
= args
->iops
;
3991 args
->rqstp
= rqstp
;
3993 return !nfsd4_decode_compound(args
);
3997 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundres
*resp
)
4000 * All that remains is to write the tag and operation count...
4002 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
4003 struct xdr_buf
*buf
= resp
->xdr
.buf
;
4005 WARN_ON_ONCE(buf
->len
!= buf
->head
[0].iov_len
+ buf
->page_len
+
4006 buf
->tail
[0].iov_len
);
4008 rqstp
->rq_next_page
= resp
->xdr
.page_ptr
+ 1;
4011 *p
++ = htonl(resp
->taglen
);
4012 memcpy(p
, resp
->tag
, resp
->taglen
);
4013 p
+= XDR_QUADLEN(resp
->taglen
);
4014 *p
++ = htonl(resp
->opcnt
);
4016 if (nfsd4_has_session(cs
)) {
4017 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
4018 struct nfs4_client
*clp
= cs
->session
->se_client
;
4019 if (cs
->status
!= nfserr_replay_cache
) {
4020 nfsd4_store_cache_entry(resp
);
4021 cs
->slot
->sl_flags
&= ~NFSD4_SLOT_INUSE
;
4023 /* Renew the clientid on success and on replay */
4024 spin_lock(&nn
->client_lock
);
4025 nfsd4_put_session(cs
->session
);
4026 spin_unlock(&nn
->client_lock
);
4027 put_client_renew(clp
);