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>
57 #define NFSDDBG_FACILITY NFSDDBG_XDR
60 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
61 * directory in order to indicate to the client that a filesystem boundary is present
62 * We use a fixed fsid for a referral
64 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
65 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
68 check_filename(char *str
, int len
, __be32 err
)
74 if (isdotent(str
, len
))
76 for (i
= 0; i
< len
; i
++)
90 dprintk("NFSD: xdr error (%s:%d)\n", \
91 __FILE__, __LINE__); \
92 status = nfserr_bad_xdr; \
95 #define READ32(x) (x) = ntohl(*p++)
96 #define READ64(x) do { \
97 (x) = (u64)ntohl(*p++) << 32; \
100 #define READTIME(x) do { \
105 #define READMEM(x,nbytes) do { \
107 p += XDR_QUADLEN(nbytes); \
109 #define SAVEMEM(x,nbytes) do { \
110 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
111 savemem(argp, p, nbytes) : \
113 dprintk("NFSD: xdr error (%s:%d)\n", \
114 __FILE__, __LINE__); \
117 p += XDR_QUADLEN(nbytes); \
119 #define COPYMEM(x,nbytes) do { \
120 memcpy((x), p, nbytes); \
121 p += XDR_QUADLEN(nbytes); \
124 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
125 #define READ_BUF(nbytes) do { \
126 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
128 argp->p += XDR_QUADLEN(nbytes); \
129 } else if (!(p = read_buf(argp, nbytes))) { \
130 dprintk("NFSD: xdr error (%s:%d)\n", \
131 __FILE__, __LINE__); \
136 static void save_buf(struct nfsd4_compoundargs
*argp
, struct nfsd4_saved_compoundargs
*savep
)
139 savep
->end
= argp
->end
;
140 savep
->pagelen
= argp
->pagelen
;
141 savep
->pagelist
= argp
->pagelist
;
144 static void restore_buf(struct nfsd4_compoundargs
*argp
, struct nfsd4_saved_compoundargs
*savep
)
147 argp
->end
= savep
->end
;
148 argp
->pagelen
= savep
->pagelen
;
149 argp
->pagelist
= savep
->pagelist
;
152 static __be32
*read_buf(struct nfsd4_compoundargs
*argp
, u32 nbytes
)
154 /* We want more bytes than seem to be available.
155 * Maybe we need a new page, maybe we have just run out
157 unsigned int avail
= (char *)argp
->end
- (char *)argp
->p
;
159 if (avail
+ argp
->pagelen
< nbytes
)
161 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
163 /* ok, we can do it with the current plus the next page */
164 if (nbytes
<= sizeof(argp
->tmp
))
168 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
174 * The following memcpy is safe because read_buf is always
175 * called with nbytes > avail, and the two cases above both
176 * guarantee p points to at least nbytes bytes.
178 memcpy(p
, argp
->p
, avail
);
179 /* step to next page */
180 argp
->p
= page_address(argp
->pagelist
[0]);
182 if (argp
->pagelen
< PAGE_SIZE
) {
183 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
186 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
187 argp
->pagelen
-= PAGE_SIZE
;
189 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
190 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
194 static int zero_clientid(clientid_t
*clid
)
196 return (clid
->cl_boot
== 0) && (clid
->cl_id
== 0);
200 defer_free(struct nfsd4_compoundargs
*argp
,
201 void (*release
)(const void *), void *p
)
205 tb
= kmalloc(sizeof(*tb
), GFP_KERNEL
);
209 tb
->release
= release
;
210 tb
->next
= argp
->to_free
;
215 static char *savemem(struct nfsd4_compoundargs
*argp
, __be32
*p
, int nbytes
)
217 if (p
== argp
->tmp
) {
218 p
= kmalloc(nbytes
, GFP_KERNEL
);
221 memcpy(p
, argp
->tmp
, nbytes
);
223 BUG_ON(p
!= argp
->tmpp
);
226 if (defer_free(argp
, kfree
, p
)) {
234 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
248 READ_BUF(bmlen
<< 2);
260 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
,
261 struct iattr
*iattr
, struct nfs4_acl
**acl
)
263 int expected_len
, len
= 0;
270 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
274 READ32(expected_len
);
276 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
279 READ64(iattr
->ia_size
);
280 iattr
->ia_valid
|= ATTR_SIZE
;
282 if (bmval
[0] & FATTR4_WORD0_ACL
) {
284 struct nfs4_ace
*ace
;
286 READ_BUF(4); len
+= 4;
289 if (nace
> NFS4_ACL_MAX
)
290 return nfserr_resource
;
292 *acl
= nfs4_acl_new(nace
);
297 defer_free(argp
, kfree
, *acl
);
299 (*acl
)->naces
= nace
;
300 for (ace
= (*acl
)->aces
; ace
< (*acl
)->aces
+ nace
; ace
++) {
301 READ_BUF(16); len
+= 16;
304 READ32(ace
->access_mask
);
307 len
+= XDR_QUADLEN(dummy32
) << 2;
308 READMEM(buf
, dummy32
);
309 ace
->whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
311 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
313 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
314 status
= nfsd_map_name_to_gid(argp
->rqstp
,
315 buf
, dummy32
, &ace
->who
);
317 status
= nfsd_map_name_to_uid(argp
->rqstp
,
318 buf
, dummy32
, &ace
->who
);
324 if (bmval
[1] & FATTR4_WORD1_MODE
) {
327 READ32(iattr
->ia_mode
);
328 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
329 iattr
->ia_valid
|= ATTR_MODE
;
331 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
336 len
+= (XDR_QUADLEN(dummy32
) << 2);
337 READMEM(buf
, dummy32
);
338 if ((status
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
340 iattr
->ia_valid
|= ATTR_UID
;
342 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
347 len
+= (XDR_QUADLEN(dummy32
) << 2);
348 READMEM(buf
, dummy32
);
349 if ((status
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
351 iattr
->ia_valid
|= ATTR_GID
;
353 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
358 case NFS4_SET_TO_CLIENT_TIME
:
359 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
360 all 32 bits of 'nseconds'. */
366 READ32(iattr
->ia_atime
.tv_sec
);
367 READ32(iattr
->ia_atime
.tv_nsec
);
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
) {
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'. */
392 READ32(iattr
->ia_mtime
.tv_sec
);
393 READ32(iattr
->ia_mtime
.tv_nsec
);
394 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
396 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
398 case NFS4_SET_TO_SERVER_TIME
:
399 iattr
->ia_valid
|= ATTR_MTIME
;
405 if (bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
406 || bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
407 || bmval
[2] & ~NFSD_WRITEABLE_ATTRS_WORD2
)
408 READ_BUF(expected_len
- len
);
409 else if (len
!= expected_len
)
415 status
= nfserrno(host_err
);
420 nfsd4_decode_stateid(struct nfsd4_compoundargs
*argp
, stateid_t
*sid
)
424 READ_BUF(sizeof(stateid_t
));
425 READ32(sid
->si_generation
);
426 COPYMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
432 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
437 READ32(access
->ac_req_access
);
442 static __be32
nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs
*argp
, struct nfsd4_bind_conn_to_session
*bcts
)
446 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 8);
447 COPYMEM(bcts
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
449 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
450 * could help us figure out we should be using it. */
455 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
460 READ32(close
->cl_seqid
);
461 return nfsd4_decode_stateid(argp
, &close
->cl_stateid
);
468 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
473 READ64(commit
->co_offset
);
474 READ32(commit
->co_count
);
480 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
485 READ32(create
->cr_type
);
486 switch (create
->cr_type
) {
489 READ32(create
->cr_linklen
);
490 READ_BUF(create
->cr_linklen
);
491 SAVEMEM(create
->cr_linkname
, create
->cr_linklen
);
496 READ32(create
->cr_specdata1
);
497 READ32(create
->cr_specdata2
);
507 READ32(create
->cr_namelen
);
508 READ_BUF(create
->cr_namelen
);
509 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
510 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
, nfserr_inval
)))
513 status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
,
522 nfsd4_decode_delegreturn(struct nfsd4_compoundargs
*argp
, struct nfsd4_delegreturn
*dr
)
524 return nfsd4_decode_stateid(argp
, &dr
->dr_stateid
);
528 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
530 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
534 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
539 READ32(link
->li_namelen
);
540 READ_BUF(link
->li_namelen
);
541 SAVEMEM(link
->li_name
, link
->li_namelen
);
542 if ((status
= check_filename(link
->li_name
, link
->li_namelen
, nfserr_inval
)))
549 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
554 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
557 READ32(lock
->lk_type
);
558 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
560 READ32(lock
->lk_reclaim
);
561 READ64(lock
->lk_offset
);
562 READ64(lock
->lk_length
);
563 READ32(lock
->lk_is_new
);
565 if (lock
->lk_is_new
) {
567 READ32(lock
->lk_new_open_seqid
);
568 status
= nfsd4_decode_stateid(argp
, &lock
->lk_new_open_stateid
);
571 READ_BUF(8 + sizeof(clientid_t
));
572 READ32(lock
->lk_new_lock_seqid
);
573 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
574 READ32(lock
->lk_new_owner
.len
);
575 READ_BUF(lock
->lk_new_owner
.len
);
576 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
578 status
= nfsd4_decode_stateid(argp
, &lock
->lk_old_lock_stateid
);
582 READ32(lock
->lk_old_lock_seqid
);
589 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
594 READ32(lockt
->lt_type
);
595 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
597 READ64(lockt
->lt_offset
);
598 READ64(lockt
->lt_length
);
599 COPYMEM(&lockt
->lt_clientid
, 8);
600 READ32(lockt
->lt_owner
.len
);
601 READ_BUF(lockt
->lt_owner
.len
);
602 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
608 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
613 READ32(locku
->lu_type
);
614 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
616 READ32(locku
->lu_seqid
);
617 status
= nfsd4_decode_stateid(argp
, &locku
->lu_stateid
);
621 READ64(locku
->lu_offset
);
622 READ64(locku
->lu_length
);
628 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
633 READ32(lookup
->lo_len
);
634 READ_BUF(lookup
->lo_len
);
635 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
636 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
, nfserr_noent
)))
642 static __be32
nfsd4_decode_share_access(struct nfsd4_compoundargs
*argp
, u32
*x
)
650 switch (w
& NFS4_SHARE_ACCESS_MASK
) {
651 case NFS4_SHARE_ACCESS_READ
:
652 case NFS4_SHARE_ACCESS_WRITE
:
653 case NFS4_SHARE_ACCESS_BOTH
:
656 return nfserr_bad_xdr
;
658 w
&= ~NFS4_SHARE_ACCESS_MASK
;
661 if (!argp
->minorversion
)
662 return nfserr_bad_xdr
;
663 switch (w
& NFS4_SHARE_WANT_MASK
) {
664 case NFS4_SHARE_WANT_NO_PREFERENCE
:
665 case NFS4_SHARE_WANT_READ_DELEG
:
666 case NFS4_SHARE_WANT_WRITE_DELEG
:
667 case NFS4_SHARE_WANT_ANY_DELEG
:
668 case NFS4_SHARE_WANT_NO_DELEG
:
669 case NFS4_SHARE_WANT_CANCEL
:
672 return nfserr_bad_xdr
;
674 w
&= ~NFS4_SHARE_WANT_MASK
;
678 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
:
679 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
:
680 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
|
681 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
):
685 return nfserr_bad_xdr
;
688 static __be32
nfsd4_decode_share_deny(struct nfsd4_compoundargs
*argp
, u32
*x
)
694 /* Note: unlinke access bits, deny bits may be zero. */
695 if (*x
& ~NFS4_SHARE_DENY_BOTH
)
696 return nfserr_bad_xdr
;
699 return nfserr_bad_xdr
;
702 static __be32
nfsd4_decode_opaque(struct nfsd4_compoundargs
*argp
, struct xdr_netobj
*o
)
709 if (o
->len
== 0 || o
->len
> NFS4_OPAQUE_LIMIT
)
710 return nfserr_bad_xdr
;
713 SAVEMEM(o
->data
, o
->len
);
716 return nfserr_bad_xdr
;
720 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
724 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
725 open
->op_iattr
.ia_valid
= 0;
726 open
->op_openowner
= NULL
;
728 /* seqid, share_access, share_deny, clientid, ownerlen */
730 READ32(open
->op_seqid
);
731 status
= nfsd4_decode_share_access(argp
, &open
->op_share_access
);
734 status
= nfsd4_decode_share_deny(argp
, &open
->op_share_deny
);
737 READ_BUF(sizeof(clientid_t
));
738 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
739 status
= nfsd4_decode_opaque(argp
, &open
->op_owner
);
743 READ32(open
->op_create
);
744 switch (open
->op_create
) {
745 case NFS4_OPEN_NOCREATE
:
747 case NFS4_OPEN_CREATE
:
749 READ32(open
->op_createmode
);
750 switch (open
->op_createmode
) {
751 case NFS4_CREATE_UNCHECKED
:
752 case NFS4_CREATE_GUARDED
:
753 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
754 &open
->op_iattr
, &open
->op_acl
);
758 case NFS4_CREATE_EXCLUSIVE
:
760 COPYMEM(open
->op_verf
.data
, 8);
762 case NFS4_CREATE_EXCLUSIVE4_1
:
763 if (argp
->minorversion
< 1)
766 COPYMEM(open
->op_verf
.data
, 8);
767 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
768 &open
->op_iattr
, &open
->op_acl
);
782 READ32(open
->op_claim_type
);
783 switch (open
->op_claim_type
) {
784 case NFS4_OPEN_CLAIM_NULL
:
785 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
787 READ32(open
->op_fname
.len
);
788 READ_BUF(open
->op_fname
.len
);
789 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
790 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
793 case NFS4_OPEN_CLAIM_PREVIOUS
:
795 READ32(open
->op_delegate_type
);
797 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
798 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
802 READ32(open
->op_fname
.len
);
803 READ_BUF(open
->op_fname
.len
);
804 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
805 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
808 case NFS4_OPEN_CLAIM_FH
:
809 case NFS4_OPEN_CLAIM_DELEG_PREV_FH
:
810 if (argp
->minorversion
< 1)
814 case NFS4_OPEN_CLAIM_DELEG_CUR_FH
:
815 if (argp
->minorversion
< 1)
817 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
829 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
833 status
= nfsd4_decode_stateid(argp
, &open_conf
->oc_req_stateid
);
837 READ32(open_conf
->oc_seqid
);
843 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
847 status
= nfsd4_decode_stateid(argp
, &open_down
->od_stateid
);
851 READ32(open_down
->od_seqid
);
852 status
= nfsd4_decode_share_access(argp
, &open_down
->od_share_access
);
855 status
= nfsd4_decode_share_deny(argp
, &open_down
->od_share_deny
);
862 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
867 READ32(putfh
->pf_fhlen
);
868 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
870 READ_BUF(putfh
->pf_fhlen
);
871 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
877 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
881 status
= nfsd4_decode_stateid(argp
, &read
->rd_stateid
);
885 READ64(read
->rd_offset
);
886 READ32(read
->rd_length
);
892 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
897 READ64(readdir
->rd_cookie
);
898 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
899 READ32(readdir
->rd_dircount
); /* just in case you needed a useless field... */
900 READ32(readdir
->rd_maxcount
);
901 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
908 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
913 READ32(remove
->rm_namelen
);
914 READ_BUF(remove
->rm_namelen
);
915 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
916 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
, nfserr_noent
)))
923 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
928 READ32(rename
->rn_snamelen
);
929 READ_BUF(rename
->rn_snamelen
+ 4);
930 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
931 READ32(rename
->rn_tnamelen
);
932 READ_BUF(rename
->rn_tnamelen
);
933 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
934 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
, nfserr_noent
)))
936 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
, nfserr_inval
)))
943 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
947 READ_BUF(sizeof(clientid_t
));
948 COPYMEM(clientid
, sizeof(clientid_t
));
954 nfsd4_decode_secinfo(struct nfsd4_compoundargs
*argp
,
955 struct nfsd4_secinfo
*secinfo
)
960 READ32(secinfo
->si_namelen
);
961 READ_BUF(secinfo
->si_namelen
);
962 SAVEMEM(secinfo
->si_name
, secinfo
->si_namelen
);
963 status
= check_filename(secinfo
->si_name
, secinfo
->si_namelen
,
971 nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs
*argp
,
972 struct nfsd4_secinfo_no_name
*sin
)
977 READ32(sin
->sin_style
);
982 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
986 status
= nfsd4_decode_stateid(argp
, &setattr
->sa_stateid
);
989 return nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
,
994 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
999 COPYMEM(setclientid
->se_verf
.data
, 8);
1001 status
= nfsd4_decode_opaque(argp
, &setclientid
->se_name
);
1003 return nfserr_bad_xdr
;
1005 READ32(setclientid
->se_callback_prog
);
1006 READ32(setclientid
->se_callback_netid_len
);
1008 READ_BUF(setclientid
->se_callback_netid_len
+ 4);
1009 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
1010 READ32(setclientid
->se_callback_addr_len
);
1012 READ_BUF(setclientid
->se_callback_addr_len
+ 4);
1013 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
1014 READ32(setclientid
->se_callback_ident
);
1020 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
1024 READ_BUF(8 + sizeof(nfs4_verifier
));
1025 COPYMEM(&scd_c
->sc_clientid
, 8);
1026 COPYMEM(&scd_c
->sc_confirm
, sizeof(nfs4_verifier
));
1031 /* Also used for NVERIFY */
1033 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
1036 struct nfsd4_compoundargs save
= {
1039 .rqstp
= argp
->rqstp
,
1042 struct iattr ve_iattr
; /* request */
1043 struct nfs4_acl
*ve_acl
; /* request */
1047 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
1050 /* For convenience's sake, we compare raw xdr'd attributes in
1051 * nfsd4_proc_verify; however we still decode here just to return
1052 * correct error in case of bad xdr. */
1054 status
= nfsd4_decode_fattr(ve_bmval
, &ve_iattr
, &ve_acl
);
1055 if (status
== nfserr_inval
) {
1056 status
= nfserrno(status
);
1061 READ32(verify
->ve_attrlen
);
1062 READ_BUF(verify
->ve_attrlen
);
1063 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
1069 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
1076 status
= nfsd4_decode_stateid(argp
, &write
->wr_stateid
);
1080 READ64(write
->wr_offset
);
1081 READ32(write
->wr_stable_how
);
1082 if (write
->wr_stable_how
> 2)
1084 READ32(write
->wr_buflen
);
1086 /* Sorry .. no magic macros for this.. *
1087 * READ_BUF(write->wr_buflen);
1088 * SAVEMEM(write->wr_buf, write->wr_buflen);
1090 avail
= (char*)argp
->end
- (char*)argp
->p
;
1091 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
1092 dprintk("NFSD: xdr error (%s:%d)\n",
1093 __FILE__
, __LINE__
);
1096 argp
->rqstp
->rq_vec
[0].iov_base
= p
;
1097 argp
->rqstp
->rq_vec
[0].iov_len
= avail
;
1099 len
= write
->wr_buflen
;
1100 while (len
> argp
->rqstp
->rq_vec
[v
].iov_len
) {
1101 len
-= argp
->rqstp
->rq_vec
[v
].iov_len
;
1103 argp
->rqstp
->rq_vec
[v
].iov_base
= page_address(argp
->pagelist
[0]);
1105 if (argp
->pagelen
>= PAGE_SIZE
) {
1106 argp
->rqstp
->rq_vec
[v
].iov_len
= PAGE_SIZE
;
1107 argp
->pagelen
-= PAGE_SIZE
;
1109 argp
->rqstp
->rq_vec
[v
].iov_len
= argp
->pagelen
;
1110 argp
->pagelen
-= len
;
1113 argp
->end
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ argp
->rqstp
->rq_vec
[v
].iov_len
);
1114 argp
->p
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ (XDR_QUADLEN(len
) << 2));
1115 argp
->rqstp
->rq_vec
[v
].iov_len
= len
;
1116 write
->wr_vlen
= v
+1;
1122 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
1127 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
1128 READ32(rlockowner
->rl_owner
.len
);
1129 READ_BUF(rlockowner
->rl_owner
.len
);
1130 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
1132 if (argp
->minorversion
&& !zero_clientid(&rlockowner
->rl_clientid
))
1133 return nfserr_inval
;
1138 nfsd4_decode_exchange_id(struct nfsd4_compoundargs
*argp
,
1139 struct nfsd4_exchange_id
*exid
)
1144 READ_BUF(NFS4_VERIFIER_SIZE
);
1145 COPYMEM(exid
->verifier
.data
, NFS4_VERIFIER_SIZE
);
1147 status
= nfsd4_decode_opaque(argp
, &exid
->clname
);
1149 return nfserr_bad_xdr
;
1152 READ32(exid
->flags
);
1154 /* Ignore state_protect4_a */
1156 READ32(exid
->spa_how
);
1157 switch (exid
->spa_how
) {
1161 /* spo_must_enforce */
1164 READ_BUF(dummy
* 4);
1167 /* spo_must_allow */
1170 READ_BUF(dummy
* 4);
1177 READ_BUF(dummy
* 4);
1182 READ_BUF(dummy
* 4);
1185 /* ssp_hash_algs<> */
1192 p
+= XDR_QUADLEN(dummy
);
1195 /* ssp_encr_algs<> */
1202 p
+= XDR_QUADLEN(dummy
);
1205 /* ssp_window and ssp_num_gss_handles */
1214 /* Ignore Implementation ID */
1215 READ_BUF(4); /* nfs_impl_id4 array length */
1226 p
+= XDR_QUADLEN(dummy
);
1232 p
+= XDR_QUADLEN(dummy
);
1242 nfsd4_decode_create_session(struct nfsd4_compoundargs
*argp
,
1243 struct nfsd4_create_session
*sess
)
1253 COPYMEM(&sess
->clientid
, 8);
1254 READ32(sess
->seqid
);
1255 READ32(sess
->flags
);
1257 /* Fore channel attrs */
1259 READ32(dummy
); /* headerpadsz is always 0 */
1260 READ32(sess
->fore_channel
.maxreq_sz
);
1261 READ32(sess
->fore_channel
.maxresp_sz
);
1262 READ32(sess
->fore_channel
.maxresp_cached
);
1263 READ32(sess
->fore_channel
.maxops
);
1264 READ32(sess
->fore_channel
.maxreqs
);
1265 READ32(sess
->fore_channel
.nr_rdma_attrs
);
1266 if (sess
->fore_channel
.nr_rdma_attrs
== 1) {
1268 READ32(sess
->fore_channel
.rdma_attrs
);
1269 } else if (sess
->fore_channel
.nr_rdma_attrs
> 1) {
1270 dprintk("Too many fore channel attr bitmaps!\n");
1274 /* Back channel attrs */
1276 READ32(dummy
); /* headerpadsz is always 0 */
1277 READ32(sess
->back_channel
.maxreq_sz
);
1278 READ32(sess
->back_channel
.maxresp_sz
);
1279 READ32(sess
->back_channel
.maxresp_cached
);
1280 READ32(sess
->back_channel
.maxops
);
1281 READ32(sess
->back_channel
.maxreqs
);
1282 READ32(sess
->back_channel
.nr_rdma_attrs
);
1283 if (sess
->back_channel
.nr_rdma_attrs
== 1) {
1285 READ32(sess
->back_channel
.rdma_attrs
);
1286 } else if (sess
->back_channel
.nr_rdma_attrs
> 1) {
1287 dprintk("Too many back channel attr bitmaps!\n");
1292 READ32(sess
->callback_prog
);
1294 /* callback_sec_params4 */
1295 READ32(nr_secflavs
);
1296 for (i
= 0; i
< nr_secflavs
; ++i
) {
1301 /* Nothing to read */
1311 SAVEMEM(machine_name
, dummy
);
1321 READ_BUF(dummy
* 4);
1324 dprintk("RPC_AUTH_GSS callback secflavor "
1325 "not supported!\n");
1329 /* gcbp_handle_from_server */
1332 p
+= XDR_QUADLEN(dummy
);
1333 /* gcbp_handle_from_client */
1339 dprintk("Illegal callback secflavor\n");
1340 return nfserr_inval
;
1347 nfsd4_decode_destroy_session(struct nfsd4_compoundargs
*argp
,
1348 struct nfsd4_destroy_session
*destroy_session
)
1351 READ_BUF(NFS4_MAX_SESSIONID_LEN
);
1352 COPYMEM(destroy_session
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1358 nfsd4_decode_free_stateid(struct nfsd4_compoundargs
*argp
,
1359 struct nfsd4_free_stateid
*free_stateid
)
1363 READ_BUF(sizeof(stateid_t
));
1364 READ32(free_stateid
->fr_stateid
.si_generation
);
1365 COPYMEM(&free_stateid
->fr_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
1371 nfsd4_decode_sequence(struct nfsd4_compoundargs
*argp
,
1372 struct nfsd4_sequence
*seq
)
1376 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 16);
1377 COPYMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1379 READ32(seq
->slotid
);
1380 READ32(seq
->maxslots
);
1381 READ32(seq
->cachethis
);
1387 nfsd4_decode_test_stateid(struct nfsd4_compoundargs
*argp
, struct nfsd4_test_stateid
*test_stateid
)
1389 unsigned int nbytes
;
1396 test_stateid
->ts_num_ids
= ntohl(*p
++);
1398 nbytes
= test_stateid
->ts_num_ids
* sizeof(stateid_t
);
1399 if (nbytes
> (u32
)((char *)argp
->end
- (char *)argp
->p
))
1402 test_stateid
->ts_saved_args
= argp
;
1403 save_buf(argp
, &test_stateid
->ts_savedp
);
1405 for (i
= 0; i
< test_stateid
->ts_num_ids
; i
++) {
1406 status
= nfsd4_decode_stateid(argp
, &si
);
1415 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__
, __LINE__
);
1416 status
= nfserr_bad_xdr
;
1420 static __be32
nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_destroy_clientid
*dc
)
1425 COPYMEM(&dc
->clientid
, 8);
1430 static __be32
nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs
*argp
, struct nfsd4_reclaim_complete
*rc
)
1435 READ32(rc
->rca_one_fs
);
1441 nfsd4_decode_noop(struct nfsd4_compoundargs
*argp
, void *p
)
1447 nfsd4_decode_notsupp(struct nfsd4_compoundargs
*argp
, void *p
)
1449 return nfserr_notsupp
;
1452 typedef __be32(*nfsd4_dec
)(struct nfsd4_compoundargs
*argp
, void *);
1454 static nfsd4_dec nfsd4_dec_ops
[] = {
1455 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1456 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1457 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1458 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1459 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1460 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1461 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1462 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1463 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1464 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1465 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1466 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1467 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1468 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1469 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1470 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1471 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1472 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_open_confirm
,
1473 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1474 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1475 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1476 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1477 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1478 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1479 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1480 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1481 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1482 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_renew
,
1483 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1484 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1485 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1486 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1487 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_setclientid
,
1488 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_setclientid_confirm
,
1489 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1490 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1491 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_release_lockowner
,
1494 static nfsd4_dec nfsd41_dec_ops
[] = {
1495 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1496 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1497 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1498 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1499 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1500 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1501 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1502 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1503 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1504 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1505 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1506 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1507 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1508 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1509 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1510 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1511 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1512 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1513 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1514 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1515 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1516 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1517 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1518 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1519 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1520 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1521 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1522 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1523 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1524 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1525 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1526 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1527 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1528 [OP_SETCLIENTID_CONFIRM
]= (nfsd4_dec
)nfsd4_decode_notsupp
,
1529 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1530 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1531 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1533 /* new operations for NFSv4.1 */
1534 [OP_BACKCHANNEL_CTL
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1535 [OP_BIND_CONN_TO_SESSION
]= (nfsd4_dec
)nfsd4_decode_bind_conn_to_session
,
1536 [OP_EXCHANGE_ID
] = (nfsd4_dec
)nfsd4_decode_exchange_id
,
1537 [OP_CREATE_SESSION
] = (nfsd4_dec
)nfsd4_decode_create_session
,
1538 [OP_DESTROY_SESSION
] = (nfsd4_dec
)nfsd4_decode_destroy_session
,
1539 [OP_FREE_STATEID
] = (nfsd4_dec
)nfsd4_decode_free_stateid
,
1540 [OP_GET_DIR_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1541 [OP_GETDEVICEINFO
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1542 [OP_GETDEVICELIST
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1543 [OP_LAYOUTCOMMIT
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1544 [OP_LAYOUTGET
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1545 [OP_LAYOUTRETURN
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1546 [OP_SECINFO_NO_NAME
] = (nfsd4_dec
)nfsd4_decode_secinfo_no_name
,
1547 [OP_SEQUENCE
] = (nfsd4_dec
)nfsd4_decode_sequence
,
1548 [OP_SET_SSV
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1549 [OP_TEST_STATEID
] = (nfsd4_dec
)nfsd4_decode_test_stateid
,
1550 [OP_WANT_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1551 [OP_DESTROY_CLIENTID
] = (nfsd4_dec
)nfsd4_decode_destroy_clientid
,
1552 [OP_RECLAIM_COMPLETE
] = (nfsd4_dec
)nfsd4_decode_reclaim_complete
,
1555 struct nfsd4_minorversion_ops
{
1556 nfsd4_dec
*decoders
;
1560 static struct nfsd4_minorversion_ops nfsd4_minorversion
[] = {
1561 [0] = { nfsd4_dec_ops
, ARRAY_SIZE(nfsd4_dec_ops
) },
1562 [1] = { nfsd41_dec_ops
, ARRAY_SIZE(nfsd41_dec_ops
) },
1566 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1569 struct nfsd4_op
*op
;
1570 struct nfsd4_minorversion_ops
*ops
;
1571 bool cachethis
= false;
1575 * XXX: According to spec, we should check the tag
1576 * for UTF-8 compliance. I'm postponing this for
1577 * now because it seems that some clients do use
1581 READ32(argp
->taglen
);
1582 READ_BUF(argp
->taglen
+ 8);
1583 SAVEMEM(argp
->tag
, argp
->taglen
);
1584 READ32(argp
->minorversion
);
1585 READ32(argp
->opcnt
);
1587 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1589 if (argp
->opcnt
> 100)
1592 if (argp
->opcnt
> ARRAY_SIZE(argp
->iops
)) {
1593 argp
->ops
= kmalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1595 argp
->ops
= argp
->iops
;
1596 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1601 if (argp
->minorversion
>= ARRAY_SIZE(nfsd4_minorversion
))
1604 ops
= &nfsd4_minorversion
[argp
->minorversion
];
1605 for (i
= 0; i
< argp
->opcnt
; i
++) {
1610 * We can't use READ_BUF() here because we need to handle
1611 * a missing opcode as an OP_WRITE + 1. So we need to check
1612 * to see if we're truly at the end of our buffer or if there
1613 * is another page we need to flip to.
1616 if (argp
->p
== argp
->end
) {
1617 if (argp
->pagelen
< 4) {
1618 /* There isn't an opcode still on the wire */
1619 op
->opnum
= OP_WRITE
+ 1;
1620 op
->status
= nfserr_bad_xdr
;
1626 * False alarm. We just hit a page boundary, but there
1627 * is still data available. Move pointer across page
1628 * boundary. *snip from READ_BUF*
1630 argp
->p
= page_address(argp
->pagelist
[0]);
1632 if (argp
->pagelen
< PAGE_SIZE
) {
1633 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
1636 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
1637 argp
->pagelen
-= PAGE_SIZE
;
1640 op
->opnum
= ntohl(*argp
->p
++);
1642 if (op
->opnum
>= FIRST_NFS4_OP
&& op
->opnum
<= LAST_NFS4_OP
)
1643 op
->status
= ops
->decoders
[op
->opnum
](argp
, &op
->u
);
1645 op
->opnum
= OP_ILLEGAL
;
1646 op
->status
= nfserr_op_illegal
;
1654 * We'll try to cache the result in the DRC if any one
1655 * op in the compound wants to be cached:
1657 cachethis
|= nfsd4_cache_this_op(op
);
1659 /* Sessions make the DRC unnecessary: */
1660 if (argp
->minorversion
)
1662 argp
->rqstp
->rq_cachetype
= cachethis
? RC_REPLBUFF
: RC_NOCACHE
;
1667 #define WRITE32(n) *p++ = htonl(n)
1668 #define WRITE64(n) do { \
1669 *p++ = htonl((u32)((n) >> 32)); \
1670 *p++ = htonl((u32)(n)); \
1672 #define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
1673 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1674 memcpy(p, ptr, nbytes); \
1675 p += XDR_QUADLEN(nbytes); \
1678 static void write32(__be32
**p
, u32 n
)
1683 static void write64(__be32
**p
, u64 n
)
1685 write32(p
, (u32
)(n
>> 32));
1689 static void write_change(__be32
**p
, struct kstat
*stat
, struct inode
*inode
)
1691 if (IS_I_VERSION(inode
)) {
1692 write64(p
, inode
->i_version
);
1694 write32(p
, stat
->ctime
.tv_sec
);
1695 write32(p
, stat
->ctime
.tv_nsec
);
1699 static void write_cinfo(__be32
**p
, struct nfsd4_change_info
*c
)
1701 write32(p
, c
->atomic
);
1702 if (c
->change_supported
) {
1703 write64(p
, c
->before_change
);
1704 write64(p
, c
->after_change
);
1706 write32(p
, c
->before_ctime_sec
);
1707 write32(p
, c
->before_ctime_nsec
);
1708 write32(p
, c
->after_ctime_sec
);
1709 write32(p
, c
->after_ctime_nsec
);
1713 #define RESERVE_SPACE(nbytes) do { \
1715 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1717 #define ADJUST_ARGS() resp->p = p
1720 * Header routine to setup seqid operation replay cache
1722 #define ENCODE_SEQID_OP_HEAD \
1728 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1729 * is where sequence id's are incremented, and the replay cache is filled.
1730 * Note that we increment sequence id's here, at the last moment, so we're sure
1731 * we know whether the error to be returned is a sequence id mutating error.
1734 static void encode_seqid_op_tail(struct nfsd4_compoundres
*resp
, __be32
*save
, __be32 nfserr
)
1736 struct nfs4_stateowner
*stateowner
= resp
->cstate
.replay_owner
;
1738 if (seqid_mutating_err(ntohl(nfserr
)) && stateowner
) {
1739 stateowner
->so_seqid
++;
1740 stateowner
->so_replay
.rp_status
= nfserr
;
1741 stateowner
->so_replay
.rp_buflen
=
1742 (char *)resp
->p
- (char *)save
;
1743 memcpy(stateowner
->so_replay
.rp_buf
, save
,
1744 stateowner
->so_replay
.rp_buflen
);
1745 nfsd4_purge_closed_stateid(stateowner
);
1749 /* Encode as an array of strings the string given with components
1752 static __be32
nfsd4_encode_components(char sep
, char *components
,
1753 __be32
**pp
, int *buflen
)
1757 int strlen
, count
=0;
1760 dprintk("nfsd4_encode_components(%s)\n", components
);
1761 if ((*buflen
-= 4) < 0)
1762 return nfserr_resource
;
1763 WRITE32(0); /* We will fill this in with @count later */
1764 end
= str
= components
;
1766 for (; *end
&& (*end
!= sep
); end
++)
1767 ; /* Point to end of component */
1770 if ((*buflen
-= ((XDR_QUADLEN(strlen
) << 2) + 4)) < 0)
1771 return nfserr_resource
;
1773 WRITEMEM(str
, strlen
);
1787 * encode a location element of a fs_locations structure
1789 static __be32
nfsd4_encode_fs_location4(struct nfsd4_fs_location
*location
,
1790 __be32
**pp
, int *buflen
)
1795 status
= nfsd4_encode_components(':', location
->hosts
, &p
, buflen
);
1798 status
= nfsd4_encode_components('/', location
->path
, &p
, buflen
);
1806 * Encode a path in RFC3530 'pathname4' format
1808 static __be32
nfsd4_encode_path(const struct path
*root
,
1809 const struct path
*path
, __be32
**pp
, int *buflen
)
1813 .dentry
= path
->dentry
,
1816 struct dentry
**components
= NULL
;
1817 unsigned int ncomponents
= 0;
1818 __be32 err
= nfserr_jukebox
;
1820 dprintk("nfsd4_encode_components(");
1823 /* First walk the path up to the nfsd root, and store the
1824 * dentries/path components in an array.
1827 if (cur
.dentry
== root
->dentry
&& cur
.mnt
== root
->mnt
)
1829 if (cur
.dentry
== cur
.mnt
->mnt_root
) {
1830 if (follow_up(&cur
))
1834 if ((ncomponents
& 15) == 0) {
1835 struct dentry
**new;
1836 new = krealloc(components
,
1837 sizeof(*new) * (ncomponents
+ 16),
1843 components
[ncomponents
++] = cur
.dentry
;
1844 cur
.dentry
= dget_parent(cur
.dentry
);
1850 WRITE32(ncomponents
);
1852 while (ncomponents
) {
1853 struct dentry
*dentry
= components
[ncomponents
- 1];
1854 unsigned int len
= dentry
->d_name
.len
;
1856 *buflen
-= 4 + (XDR_QUADLEN(len
) << 2);
1860 WRITEMEM(dentry
->d_name
.name
, len
);
1861 dprintk("/%s", dentry
->d_name
.name
);
1871 dput(components
[--ncomponents
]);
1877 static __be32
nfsd4_encode_fsloc_fsroot(struct svc_rqst
*rqstp
,
1878 const struct path
*path
, __be32
**pp
, int *buflen
)
1880 struct svc_export
*exp_ps
;
1883 exp_ps
= rqst_find_fsidzero_export(rqstp
);
1885 return nfserrno(PTR_ERR(exp_ps
));
1886 res
= nfsd4_encode_path(&exp_ps
->ex_path
, path
, pp
, buflen
);
1892 * encode a fs_locations structure
1894 static __be32
nfsd4_encode_fs_locations(struct svc_rqst
*rqstp
,
1895 struct svc_export
*exp
,
1896 __be32
**pp
, int *buflen
)
1901 struct nfsd4_fs_locations
*fslocs
= &exp
->ex_fslocs
;
1903 status
= nfsd4_encode_fsloc_fsroot(rqstp
, &exp
->ex_path
, &p
, buflen
);
1906 if ((*buflen
-= 4) < 0)
1907 return nfserr_resource
;
1908 WRITE32(fslocs
->locations_count
);
1909 for (i
=0; i
<fslocs
->locations_count
; i
++) {
1910 status
= nfsd4_encode_fs_location4(&fslocs
->locations
[i
],
1919 static u32
nfs4_file_type(umode_t mode
)
1921 switch (mode
& S_IFMT
) {
1922 case S_IFIFO
: return NF4FIFO
;
1923 case S_IFCHR
: return NF4CHR
;
1924 case S_IFDIR
: return NF4DIR
;
1925 case S_IFBLK
: return NF4BLK
;
1926 case S_IFLNK
: return NF4LNK
;
1927 case S_IFREG
: return NF4REG
;
1928 case S_IFSOCK
: return NF4SOCK
;
1929 default: return NF4BAD
;
1934 nfsd4_encode_name(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1935 __be32
**p
, int *buflen
)
1939 if (*buflen
< (XDR_QUADLEN(IDMAP_NAMESZ
) << 2) + 4)
1940 return nfserr_resource
;
1941 if (whotype
!= NFS4_ACL_WHO_NAMED
)
1942 status
= nfs4_acl_write_who(whotype
, (u8
*)(*p
+ 1));
1944 status
= nfsd_map_gid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1946 status
= nfsd_map_uid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1948 return nfserrno(status
);
1949 *p
= xdr_encode_opaque(*p
, NULL
, status
);
1950 *buflen
-= (XDR_QUADLEN(status
) << 2) + 4;
1951 BUG_ON(*buflen
< 0);
1955 static inline __be32
1956 nfsd4_encode_user(struct svc_rqst
*rqstp
, uid_t uid
, __be32
**p
, int *buflen
)
1958 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, uid
, 0, p
, buflen
);
1961 static inline __be32
1962 nfsd4_encode_group(struct svc_rqst
*rqstp
, uid_t gid
, __be32
**p
, int *buflen
)
1964 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, gid
, 1, p
, buflen
);
1967 static inline __be32
1968 nfsd4_encode_aclname(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1969 __be32
**p
, int *buflen
)
1971 return nfsd4_encode_name(rqstp
, whotype
, id
, group
, p
, buflen
);
1974 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1975 FATTR4_WORD0_RDATTR_ERROR)
1976 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1978 static __be32
fattr_handle_absent_fs(u32
*bmval0
, u32
*bmval1
, u32
*rdattr_err
)
1980 /* As per referral draft: */
1981 if (*bmval0
& ~WORD0_ABSENT_FS_ATTRS
||
1982 *bmval1
& ~WORD1_ABSENT_FS_ATTRS
) {
1983 if (*bmval0
& FATTR4_WORD0_RDATTR_ERROR
||
1984 *bmval0
& FATTR4_WORD0_FS_LOCATIONS
)
1985 *rdattr_err
= NFSERR_MOVED
;
1987 return nfserr_moved
;
1989 *bmval0
&= WORD0_ABSENT_FS_ATTRS
;
1990 *bmval1
&= WORD1_ABSENT_FS_ATTRS
;
1995 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1998 * @countp is the buffer size in _words_; upon successful return this becomes
1999 * replaced with the number of words written.
2002 nfsd4_encode_fattr(struct svc_fh
*fhp
, struct svc_export
*exp
,
2003 struct dentry
*dentry
, __be32
*buffer
, int *countp
, u32
*bmval
,
2004 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
2006 u32 bmval0
= bmval
[0];
2007 u32 bmval1
= bmval
[1];
2008 u32 bmval2
= bmval
[2];
2010 struct svc_fh tempfh
;
2011 struct kstatfs statfs
;
2012 int buflen
= *countp
<< 2;
2021 struct nfs4_acl
*acl
= NULL
;
2022 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
2023 u32 minorversion
= resp
->cstate
.minorversion
;
2024 struct path path
= {
2025 .mnt
= exp
->ex_path
.mnt
,
2029 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
2030 BUG_ON(bmval0
& ~nfsd_suppattrs0(minorversion
));
2031 BUG_ON(bmval1
& ~nfsd_suppattrs1(minorversion
));
2032 BUG_ON(bmval2
& ~nfsd_suppattrs2(minorversion
));
2034 if (exp
->ex_fslocs
.migrated
) {
2036 status
= fattr_handle_absent_fs(&bmval0
, &bmval1
, &rdattr_err
);
2041 err
= vfs_getattr(exp
->ex_path
.mnt
, dentry
, &stat
);
2044 if ((bmval0
& (FATTR4_WORD0_FILES_FREE
| FATTR4_WORD0_FILES_TOTAL
|
2045 FATTR4_WORD0_MAXNAME
)) ||
2046 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
2047 FATTR4_WORD1_SPACE_TOTAL
))) {
2048 err
= vfs_statfs(&path
, &statfs
);
2052 if ((bmval0
& (FATTR4_WORD0_FILEHANDLE
| FATTR4_WORD0_FSID
)) && !fhp
) {
2053 fh_init(&tempfh
, NFS4_FHSIZE
);
2054 status
= fh_compose(&tempfh
, exp
, dentry
, NULL
);
2059 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
2060 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
2061 err
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
2062 aclsupport
= (err
== 0);
2063 if (bmval0
& FATTR4_WORD0_ACL
) {
2064 if (err
== -EOPNOTSUPP
)
2065 bmval0
&= ~FATTR4_WORD0_ACL
;
2066 else if (err
== -EINVAL
) {
2067 status
= nfserr_attrnotsupp
;
2069 } else if (err
!= 0)
2075 if ((buflen
-= 16) < 0)
2081 } else if (bmval1
) {
2082 if ((buflen
-= 12) < 0)
2088 if ((buflen
-= 8) < 0)
2093 attrlenp
= p
++; /* to be backfilled later */
2095 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
2096 u32 word0
= nfsd_suppattrs0(minorversion
);
2097 u32 word1
= nfsd_suppattrs1(minorversion
);
2098 u32 word2
= nfsd_suppattrs2(minorversion
);
2101 word0
&= ~FATTR4_WORD0_ACL
;
2103 if ((buflen
-= 12) < 0)
2109 if ((buflen
-= 16) < 0)
2117 if (bmval0
& FATTR4_WORD0_TYPE
) {
2118 if ((buflen
-= 4) < 0)
2120 dummy
= nfs4_file_type(stat
.mode
);
2121 if (dummy
== NF4BAD
)
2122 goto out_serverfault
;
2125 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
2126 if ((buflen
-= 4) < 0)
2128 if (exp
->ex_flags
& NFSEXP_NOSUBTREECHECK
)
2129 WRITE32(NFS4_FH_PERSISTENT
);
2131 WRITE32(NFS4_FH_PERSISTENT
|NFS4_FH_VOL_RENAME
);
2133 if (bmval0
& FATTR4_WORD0_CHANGE
) {
2134 if ((buflen
-= 8) < 0)
2136 write_change(&p
, &stat
, dentry
->d_inode
);
2138 if (bmval0
& FATTR4_WORD0_SIZE
) {
2139 if ((buflen
-= 8) < 0)
2143 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
2144 if ((buflen
-= 4) < 0)
2148 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
2149 if ((buflen
-= 4) < 0)
2153 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
2154 if ((buflen
-= 4) < 0)
2158 if (bmval0
& FATTR4_WORD0_FSID
) {
2159 if ((buflen
-= 16) < 0)
2161 if (exp
->ex_fslocs
.migrated
) {
2162 WRITE64(NFS4_REFERRAL_FSID_MAJOR
);
2163 WRITE64(NFS4_REFERRAL_FSID_MINOR
);
2164 } else switch(fsid_source(fhp
)) {
2165 case FSIDSOURCE_FSID
:
2166 WRITE64((u64
)exp
->ex_fsid
);
2169 case FSIDSOURCE_DEV
:
2171 WRITE32(MAJOR(stat
.dev
));
2173 WRITE32(MINOR(stat
.dev
));
2175 case FSIDSOURCE_UUID
:
2176 WRITEMEM(exp
->ex_uuid
, 16);
2180 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
2181 if ((buflen
-= 4) < 0)
2185 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
2186 if ((buflen
-= 4) < 0)
2188 WRITE32(nfsd4_lease
);
2190 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
2191 if ((buflen
-= 4) < 0)
2193 WRITE32(rdattr_err
);
2195 if (bmval0
& FATTR4_WORD0_ACL
) {
2196 struct nfs4_ace
*ace
;
2199 if ((buflen
-= 4) < 0)
2205 if ((buflen
-= 4) < 0)
2207 WRITE32(acl
->naces
);
2209 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
2210 if ((buflen
-= 4*3) < 0)
2214 WRITE32(ace
->access_mask
& NFS4_ACE_MASK_ALL
);
2215 status
= nfsd4_encode_aclname(rqstp
, ace
->whotype
,
2216 ace
->who
, ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
,
2218 if (status
== nfserr_resource
)
2225 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
2226 if ((buflen
-= 4) < 0)
2228 WRITE32(aclsupport
?
2229 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
2231 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
2232 if ((buflen
-= 4) < 0)
2236 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
2237 if ((buflen
-= 4) < 0)
2241 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
2242 if ((buflen
-= 4) < 0)
2246 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
2247 if ((buflen
-= 4) < 0)
2251 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
2252 buflen
-= (XDR_QUADLEN(fhp
->fh_handle
.fh_size
) << 2) + 4;
2255 WRITE32(fhp
->fh_handle
.fh_size
);
2256 WRITEMEM(&fhp
->fh_handle
.fh_base
, fhp
->fh_handle
.fh_size
);
2258 if (bmval0
& FATTR4_WORD0_FILEID
) {
2259 if ((buflen
-= 8) < 0)
2263 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
2264 if ((buflen
-= 8) < 0)
2266 WRITE64((u64
) statfs
.f_ffree
);
2268 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
2269 if ((buflen
-= 8) < 0)
2271 WRITE64((u64
) statfs
.f_ffree
);
2273 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
2274 if ((buflen
-= 8) < 0)
2276 WRITE64((u64
) statfs
.f_files
);
2278 if (bmval0
& FATTR4_WORD0_FS_LOCATIONS
) {
2279 status
= nfsd4_encode_fs_locations(rqstp
, exp
, &p
, &buflen
);
2280 if (status
== nfserr_resource
)
2285 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
2286 if ((buflen
-= 4) < 0)
2290 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
2291 if ((buflen
-= 8) < 0)
2295 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
2296 if ((buflen
-= 4) < 0)
2300 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
2301 if ((buflen
-= 4) < 0)
2303 WRITE32(statfs
.f_namelen
);
2305 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
2306 if ((buflen
-= 8) < 0)
2308 WRITE64((u64
) svc_max_payload(rqstp
));
2310 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
2311 if ((buflen
-= 8) < 0)
2313 WRITE64((u64
) svc_max_payload(rqstp
));
2315 if (bmval1
& FATTR4_WORD1_MODE
) {
2316 if ((buflen
-= 4) < 0)
2318 WRITE32(stat
.mode
& S_IALLUGO
);
2320 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
2321 if ((buflen
-= 4) < 0)
2325 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
2326 if ((buflen
-= 4) < 0)
2328 WRITE32(stat
.nlink
);
2330 if (bmval1
& FATTR4_WORD1_OWNER
) {
2331 status
= nfsd4_encode_user(rqstp
, stat
.uid
, &p
, &buflen
);
2332 if (status
== nfserr_resource
)
2337 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
2338 status
= nfsd4_encode_group(rqstp
, stat
.gid
, &p
, &buflen
);
2339 if (status
== nfserr_resource
)
2344 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
2345 if ((buflen
-= 8) < 0)
2347 WRITE32((u32
) MAJOR(stat
.rdev
));
2348 WRITE32((u32
) MINOR(stat
.rdev
));
2350 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
2351 if ((buflen
-= 8) < 0)
2353 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
2356 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
2357 if ((buflen
-= 8) < 0)
2359 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
2362 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
2363 if ((buflen
-= 8) < 0)
2365 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
2368 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
2369 if ((buflen
-= 8) < 0)
2371 dummy64
= (u64
)stat
.blocks
<< 9;
2374 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
2375 if ((buflen
-= 12) < 0)
2378 WRITE32(stat
.atime
.tv_sec
);
2379 WRITE32(stat
.atime
.tv_nsec
);
2381 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
2382 if ((buflen
-= 12) < 0)
2388 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
2389 if ((buflen
-= 12) < 0)
2392 WRITE32(stat
.ctime
.tv_sec
);
2393 WRITE32(stat
.ctime
.tv_nsec
);
2395 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
2396 if ((buflen
-= 12) < 0)
2399 WRITE32(stat
.mtime
.tv_sec
);
2400 WRITE32(stat
.mtime
.tv_nsec
);
2402 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
2403 if ((buflen
-= 8) < 0)
2406 * Get parent's attributes if not ignoring crossmount
2407 * and this is the root of a cross-mounted filesystem.
2409 if (ignore_crossmnt
== 0 &&
2410 dentry
== exp
->ex_path
.mnt
->mnt_root
) {
2411 struct path path
= exp
->ex_path
;
2413 while (follow_up(&path
)) {
2414 if (path
.dentry
!= path
.mnt
->mnt_root
)
2417 err
= vfs_getattr(path
.mnt
, path
.dentry
, &stat
);
2424 if (bmval2
& FATTR4_WORD2_SUPPATTR_EXCLCREAT
) {
2426 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0
);
2427 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1
);
2428 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2
);
2431 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2432 *countp
= p
- buffer
;
2441 status
= nfserrno(err
);
2445 status
= nfserr_resource
;
2448 status
= nfserr_serverfault
;
2452 static inline int attributes_need_mount(u32
*bmval
)
2454 if (bmval
[0] & ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_LEASE_TIME
))
2456 if (bmval
[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID
)
2462 nfsd4_encode_dirent_fattr(struct nfsd4_readdir
*cd
,
2463 const char *name
, int namlen
, __be32
*p
, int *buflen
)
2465 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
2466 struct dentry
*dentry
;
2468 int ignore_crossmnt
= 0;
2470 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
2472 return nfserrno(PTR_ERR(dentry
));
2473 if (!dentry
->d_inode
) {
2475 * nfsd_buffered_readdir drops the i_mutex between
2476 * readdir and calling this callback, leaving a window
2477 * where this directory entry could have gone away.
2480 return nfserr_noent
;
2485 * In the case of a mountpoint, the client may be asking for
2486 * attributes that are only properties of the underlying filesystem
2487 * as opposed to the cross-mounted file system. In such a case,
2488 * we will not follow the cross mount and will fill the attribtutes
2489 * directly from the mountpoint dentry.
2491 if (nfsd_mountpoint(dentry
, exp
)) {
2494 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
)
2495 && !attributes_need_mount(cd
->rd_bmval
)) {
2496 ignore_crossmnt
= 1;
2500 * Why the heck aren't we just using nfsd_lookup??
2501 * Different "."/".." handling? Something else?
2502 * At least, add a comment here to explain....
2504 err
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
, &exp
);
2506 nfserr
= nfserrno(err
);
2509 nfserr
= check_nfsd_access(exp
, cd
->rd_rqstp
);
2515 nfserr
= nfsd4_encode_fattr(NULL
, exp
, dentry
, p
, buflen
, cd
->rd_bmval
,
2516 cd
->rd_rqstp
, ignore_crossmnt
);
2524 nfsd4_encode_rdattr_error(__be32
*p
, int buflen
, __be32 nfserr
)
2531 *p
++ = htonl(FATTR4_WORD0_RDATTR_ERROR
); /* bmval0 */
2532 *p
++ = htonl(0); /* bmval1 */
2535 *p
++ = nfserr
; /* no htonl */
2536 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2541 nfsd4_encode_dirent(void *ccdv
, const char *name
, int namlen
,
2542 loff_t offset
, u64 ino
, unsigned int d_type
)
2544 struct readdir_cd
*ccd
= ccdv
;
2545 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
2547 __be32
*p
= cd
->buffer
;
2549 __be32 nfserr
= nfserr_toosmall
;
2551 /* In nfsv4, "." and ".." never make it onto the wire.. */
2552 if (name
&& isdotent(name
, namlen
)) {
2553 cd
->common
.err
= nfs_ok
;
2558 xdr_encode_hyper(cd
->offset
, (u64
) offset
);
2560 buflen
= cd
->buflen
- 4 - XDR_QUADLEN(namlen
);
2564 *p
++ = xdr_one
; /* mark entry present */
2566 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
2567 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
2569 nfserr
= nfsd4_encode_dirent_fattr(cd
, name
, namlen
, p
, &buflen
);
2574 case nfserr_resource
:
2575 nfserr
= nfserr_toosmall
;
2581 * If the client requested the RDATTR_ERROR attribute,
2582 * we stuff the error code into this attribute
2583 * and continue. If this attribute was not requested,
2584 * then in accordance with the spec, we fail the
2585 * entire READDIR operation(!)
2587 if (!(cd
->rd_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
))
2589 p
= nfsd4_encode_rdattr_error(p
, buflen
, nfserr
);
2591 nfserr
= nfserr_toosmall
;
2595 cd
->buflen
-= (p
- cd
->buffer
);
2597 cd
->offset
= cookiep
;
2599 cd
->common
.err
= nfs_ok
;
2602 cd
->common
.err
= nfserr
;
2607 nfsd4_encode_stateid(struct nfsd4_compoundres
*resp
, stateid_t
*sid
)
2611 RESERVE_SPACE(sizeof(stateid_t
));
2612 WRITE32(sid
->si_generation
);
2613 WRITEMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
2618 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_access
*access
)
2624 WRITE32(access
->ac_supported
);
2625 WRITE32(access
->ac_resp_access
);
2631 static __be32
nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_bind_conn_to_session
*bcts
)
2636 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN
+ 8);
2637 WRITEMEM(bcts
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
2647 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_close
*close
)
2649 ENCODE_SEQID_OP_HEAD
;
2652 nfsd4_encode_stateid(resp
, &close
->cl_stateid
);
2654 encode_seqid_op_tail(resp
, save
, nfserr
);
2660 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_commit
*commit
)
2666 WRITEMEM(commit
->co_verf
.data
, 8);
2673 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_create
*create
)
2679 write_cinfo(&p
, &create
->cr_cinfo
);
2681 WRITE32(create
->cr_bmval
[0]);
2682 WRITE32(create
->cr_bmval
[1]);
2689 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_getattr
*getattr
)
2691 struct svc_fh
*fhp
= getattr
->ga_fhp
;
2697 buflen
= resp
->end
- resp
->p
- (COMPOUND_ERR_SLACK_SPACE
>> 2);
2698 nfserr
= nfsd4_encode_fattr(fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
2699 resp
->p
, &buflen
, getattr
->ga_bmval
,
2707 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct svc_fh
**fhpp
)
2709 struct svc_fh
*fhp
= *fhpp
;
2714 len
= fhp
->fh_handle
.fh_size
;
2715 RESERVE_SPACE(len
+ 4);
2717 WRITEMEM(&fhp
->fh_handle
.fh_base
, len
);
2724 * Including all fields other than the name, a LOCK4denied structure requires
2725 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2728 nfsd4_encode_lock_denied(struct nfsd4_compoundres
*resp
, struct nfsd4_lock_denied
*ld
)
2730 struct xdr_netobj
*conf
= &ld
->ld_owner
;
2733 RESERVE_SPACE(32 + XDR_LEN(conf
->len
));
2734 WRITE64(ld
->ld_start
);
2735 WRITE64(ld
->ld_length
);
2736 WRITE32(ld
->ld_type
);
2738 WRITEMEM(&ld
->ld_clientid
, 8);
2740 WRITEMEM(conf
->data
, conf
->len
);
2742 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2743 WRITE64((u64
)0); /* clientid */
2744 WRITE32(0); /* length of owner name */
2750 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lock
*lock
)
2752 ENCODE_SEQID_OP_HEAD
;
2755 nfsd4_encode_stateid(resp
, &lock
->lk_resp_stateid
);
2756 else if (nfserr
== nfserr_denied
)
2757 nfsd4_encode_lock_denied(resp
, &lock
->lk_denied
);
2759 encode_seqid_op_tail(resp
, save
, nfserr
);
2764 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lockt
*lockt
)
2766 if (nfserr
== nfserr_denied
)
2767 nfsd4_encode_lock_denied(resp
, &lockt
->lt_denied
);
2772 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_locku
*locku
)
2774 ENCODE_SEQID_OP_HEAD
;
2777 nfsd4_encode_stateid(resp
, &locku
->lu_stateid
);
2779 encode_seqid_op_tail(resp
, save
, nfserr
);
2785 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_link
*link
)
2791 write_cinfo(&p
, &link
->li_cinfo
);
2799 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open
*open
)
2802 ENCODE_SEQID_OP_HEAD
;
2807 nfsd4_encode_stateid(resp
, &open
->op_stateid
);
2809 write_cinfo(&p
, &open
->op_cinfo
);
2810 WRITE32(open
->op_rflags
);
2812 WRITE32(open
->op_bmval
[0]);
2813 WRITE32(open
->op_bmval
[1]);
2814 WRITE32(open
->op_delegate_type
);
2817 switch (open
->op_delegate_type
) {
2818 case NFS4_OPEN_DELEGATE_NONE
:
2820 case NFS4_OPEN_DELEGATE_READ
:
2821 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2823 WRITE32(open
->op_recall
);
2826 * TODO: ACE's in delegations
2828 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2831 WRITE32(0); /* XXX: is NULL principal ok? */
2834 case NFS4_OPEN_DELEGATE_WRITE
:
2835 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2840 * TODO: space_limit's in delegations
2842 WRITE32(NFS4_LIMIT_SIZE
);
2847 * TODO: ACE's in delegations
2849 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2852 WRITE32(0); /* XXX: is NULL principal ok? */
2858 /* XXX save filehandle here */
2860 encode_seqid_op_tail(resp
, save
, nfserr
);
2865 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_confirm
*oc
)
2867 ENCODE_SEQID_OP_HEAD
;
2870 nfsd4_encode_stateid(resp
, &oc
->oc_resp_stateid
);
2872 encode_seqid_op_tail(resp
, save
, nfserr
);
2877 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_downgrade
*od
)
2879 ENCODE_SEQID_OP_HEAD
;
2882 nfsd4_encode_stateid(resp
, &od
->od_stateid
);
2884 encode_seqid_op_tail(resp
, save
, nfserr
);
2889 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
2890 struct nfsd4_read
*read
)
2894 unsigned long maxcount
;
2900 if (resp
->xbuf
->page_len
)
2901 return nfserr_resource
;
2903 RESERVE_SPACE(8); /* eof flag and byte count */
2905 maxcount
= svc_max_payload(resp
->rqstp
);
2906 if (maxcount
> read
->rd_length
)
2907 maxcount
= read
->rd_length
;
2912 pn
= resp
->rqstp
->rq_resused
++;
2913 resp
->rqstp
->rq_vec
[v
].iov_base
=
2914 page_address(resp
->rqstp
->rq_respages
[pn
]);
2915 resp
->rqstp
->rq_vec
[v
].iov_len
=
2916 len
< PAGE_SIZE
? len
: PAGE_SIZE
;
2922 nfserr
= nfsd_read_file(read
->rd_rqstp
, read
->rd_fhp
, read
->rd_filp
,
2923 read
->rd_offset
, resp
->rqstp
->rq_vec
, read
->rd_vlen
,
2928 eof
= (read
->rd_offset
+ maxcount
>=
2929 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
2934 resp
->xbuf
->head
[0].iov_len
= (char*)p
2935 - (char*)resp
->xbuf
->head
[0].iov_base
;
2936 resp
->xbuf
->page_len
= maxcount
;
2938 /* Use rest of head for padding and remaining ops: */
2939 resp
->xbuf
->tail
[0].iov_base
= p
;
2940 resp
->xbuf
->tail
[0].iov_len
= 0;
2944 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2945 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2952 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readlink
*readlink
)
2960 if (resp
->xbuf
->page_len
)
2961 return nfserr_resource
;
2963 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
2965 maxcount
= PAGE_SIZE
;
2969 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2970 * if they would overflow the buffer. Is this kosher in NFSv4? If
2971 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2972 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2974 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
, page
, &maxcount
);
2975 if (nfserr
== nfserr_isdir
)
2976 return nfserr_inval
;
2982 resp
->xbuf
->head
[0].iov_len
= (char*)p
2983 - (char*)resp
->xbuf
->head
[0].iov_base
;
2984 resp
->xbuf
->page_len
= maxcount
;
2986 /* Use rest of head for padding and remaining ops: */
2987 resp
->xbuf
->tail
[0].iov_base
= p
;
2988 resp
->xbuf
->tail
[0].iov_len
= 0;
2992 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2993 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
3000 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readdir
*readdir
)
3004 __be32
*page
, *savep
, *tailbase
;
3009 if (resp
->xbuf
->page_len
)
3010 return nfserr_resource
;
3012 RESERVE_SPACE(8); /* verifier */
3015 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3019 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
3022 maxcount
= PAGE_SIZE
;
3023 if (maxcount
> readdir
->rd_maxcount
)
3024 maxcount
= readdir
->rd_maxcount
;
3027 * Convert from bytes to words, account for the two words already
3028 * written, make sure to leave two words at the end for the next
3029 * pointer and eof field.
3031 maxcount
= (maxcount
>> 2) - 4;
3033 nfserr
= nfserr_toosmall
;
3037 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
3038 readdir
->common
.err
= 0;
3039 readdir
->buflen
= maxcount
;
3040 readdir
->buffer
= page
;
3041 readdir
->offset
= NULL
;
3043 offset
= readdir
->rd_cookie
;
3044 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
3046 &readdir
->common
, nfsd4_encode_dirent
);
3047 if (nfserr
== nfs_ok
&&
3048 readdir
->common
.err
== nfserr_toosmall
&&
3049 readdir
->buffer
== page
)
3050 nfserr
= nfserr_toosmall
;
3054 if (readdir
->offset
)
3055 xdr_encode_hyper(readdir
->offset
, offset
);
3057 p
= readdir
->buffer
;
3058 *p
++ = 0; /* no more entries */
3059 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
3060 resp
->xbuf
->page_len
= ((char*)p
) - (char*)page_address(
3061 resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
3063 /* Use rest of head for padding and remaining ops: */
3064 resp
->xbuf
->tail
[0].iov_base
= tailbase
;
3065 resp
->xbuf
->tail
[0].iov_len
= 0;
3066 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
3067 resp
->end
= resp
->p
+ (PAGE_SIZE
- resp
->xbuf
->head
[0].iov_len
)/4;
3077 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_remove
*remove
)
3083 write_cinfo(&p
, &remove
->rm_cinfo
);
3090 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_rename
*rename
)
3096 write_cinfo(&p
, &rename
->rn_sinfo
);
3097 write_cinfo(&p
, &rename
->rn_tinfo
);
3104 nfsd4_do_encode_secinfo(struct nfsd4_compoundres
*resp
,
3105 __be32 nfserr
,struct svc_export
*exp
)
3109 struct exp_flavor_info
*flavs
;
3110 struct exp_flavor_info def_flavs
[2];
3115 if (exp
->ex_nflavors
) {
3116 flavs
= exp
->ex_flavors
;
3117 nflavs
= exp
->ex_nflavors
;
3118 } else { /* Handling of some defaults in absence of real secinfo: */
3120 if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_UNIX
) {
3122 flavs
[0].pseudoflavor
= RPC_AUTH_UNIX
;
3123 flavs
[1].pseudoflavor
= RPC_AUTH_NULL
;
3124 } else if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_GSS
) {
3126 flavs
[0].pseudoflavor
3127 = svcauth_gss_flavor(exp
->ex_client
);
3130 flavs
[0].pseudoflavor
3131 = exp
->ex_client
->flavour
->flavour
;
3138 for (i
= 0; i
< nflavs
; i
++) {
3139 u32 flav
= flavs
[i
].pseudoflavor
;
3140 struct gss_api_mech
*gm
= gss_mech_get_by_pseudoflavor(flav
);
3144 WRITE32(RPC_AUTH_GSS
);
3146 RESERVE_SPACE(4 + gm
->gm_oid
.len
);
3147 WRITE32(gm
->gm_oid
.len
);
3148 WRITEMEM(gm
->gm_oid
.data
, gm
->gm_oid
.len
);
3151 WRITE32(0); /* qop */
3154 WRITE32(gss_pseudoflavor_to_service(gm
, flav
));
3170 nfsd4_encode_secinfo(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3171 struct nfsd4_secinfo
*secinfo
)
3173 return nfsd4_do_encode_secinfo(resp
, nfserr
, secinfo
->si_exp
);
3177 nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3178 struct nfsd4_secinfo_no_name
*secinfo
)
3180 return nfsd4_do_encode_secinfo(resp
, nfserr
, secinfo
->sin_exp
);
3184 * The SETATTR encode routine is special -- it always encodes a bitmap,
3185 * regardless of the error status.
3188 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setattr
*setattr
)
3200 WRITE32(setattr
->sa_bmval
[0]);
3201 WRITE32(setattr
->sa_bmval
[1]);
3208 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setclientid
*scd
)
3213 RESERVE_SPACE(8 + sizeof(nfs4_verifier
));
3214 WRITEMEM(&scd
->se_clientid
, 8);
3215 WRITEMEM(&scd
->se_confirm
, sizeof(nfs4_verifier
));
3218 else if (nfserr
== nfserr_clid_inuse
) {
3228 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_write
*write
)
3234 WRITE32(write
->wr_bytes_written
);
3235 WRITE32(write
->wr_how_written
);
3236 WRITEMEM(write
->wr_verifier
.data
, 8);
3243 nfsd4_encode_exchange_id(struct nfsd4_compoundres
*resp
, int nfserr
,
3244 struct nfsd4_exchange_id
*exid
)
3250 int server_scope_sz
;
3251 uint64_t minor_id
= 0;
3256 major_id
= utsname()->nodename
;
3257 major_id_sz
= strlen(major_id
);
3258 server_scope
= utsname()->nodename
;
3259 server_scope_sz
= strlen(server_scope
);
3262 8 /* eir_clientid */ +
3263 4 /* eir_sequenceid */ +
3265 4 /* spr_how (SP4_NONE) */ +
3266 8 /* so_minor_id */ +
3267 4 /* so_major_id.len */ +
3268 (XDR_QUADLEN(major_id_sz
) * 4) +
3269 4 /* eir_server_scope.len */ +
3270 (XDR_QUADLEN(server_scope_sz
) * 4) +
3271 4 /* eir_server_impl_id.count (0) */);
3273 WRITEMEM(&exid
->clientid
, 8);
3274 WRITE32(exid
->seqid
);
3275 WRITE32(exid
->flags
);
3277 /* state_protect4_r. Currently only support SP4_NONE */
3278 BUG_ON(exid
->spa_how
!= SP4_NONE
);
3279 WRITE32(exid
->spa_how
);
3281 /* The server_owner struct */
3282 WRITE64(minor_id
); /* Minor id */
3284 WRITE32(major_id_sz
);
3285 WRITEMEM(major_id
, major_id_sz
);
3288 WRITE32(server_scope_sz
);
3289 WRITEMEM(server_scope
, server_scope_sz
);
3291 /* Implementation id */
3292 WRITE32(0); /* zero length nfs_impl_id4 array */
3298 nfsd4_encode_create_session(struct nfsd4_compoundres
*resp
, int nfserr
,
3299 struct nfsd4_create_session
*sess
)
3307 WRITEMEM(sess
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
3308 WRITE32(sess
->seqid
);
3309 WRITE32(sess
->flags
);
3313 WRITE32(0); /* headerpadsz */
3314 WRITE32(sess
->fore_channel
.maxreq_sz
);
3315 WRITE32(sess
->fore_channel
.maxresp_sz
);
3316 WRITE32(sess
->fore_channel
.maxresp_cached
);
3317 WRITE32(sess
->fore_channel
.maxops
);
3318 WRITE32(sess
->fore_channel
.maxreqs
);
3319 WRITE32(sess
->fore_channel
.nr_rdma_attrs
);
3322 if (sess
->fore_channel
.nr_rdma_attrs
) {
3324 WRITE32(sess
->fore_channel
.rdma_attrs
);
3329 WRITE32(0); /* headerpadsz */
3330 WRITE32(sess
->back_channel
.maxreq_sz
);
3331 WRITE32(sess
->back_channel
.maxresp_sz
);
3332 WRITE32(sess
->back_channel
.maxresp_cached
);
3333 WRITE32(sess
->back_channel
.maxops
);
3334 WRITE32(sess
->back_channel
.maxreqs
);
3335 WRITE32(sess
->back_channel
.nr_rdma_attrs
);
3338 if (sess
->back_channel
.nr_rdma_attrs
) {
3340 WRITE32(sess
->back_channel
.rdma_attrs
);
3347 nfsd4_encode_destroy_session(struct nfsd4_compoundres
*resp
, int nfserr
,
3348 struct nfsd4_destroy_session
*destroy_session
)
3354 nfsd4_encode_free_stateid(struct nfsd4_compoundres
*resp
, int nfserr
,
3355 struct nfsd4_free_stateid
*free_stateid
)
3369 nfsd4_encode_sequence(struct nfsd4_compoundres
*resp
, int nfserr
,
3370 struct nfsd4_sequence
*seq
)
3377 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN
+ 20);
3378 WRITEMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
3379 WRITE32(seq
->seqid
);
3380 WRITE32(seq
->slotid
);
3381 /* Note slotid's are numbered from zero: */
3382 WRITE32(seq
->maxslots
- 1); /* sr_highest_slotid */
3383 WRITE32(seq
->maxslots
- 1); /* sr_target_highest_slotid */
3384 WRITE32(seq
->status_flags
);
3387 resp
->cstate
.datap
= p
; /* DRC cache data pointer */
3392 nfsd4_encode_test_stateid(struct nfsd4_compoundres
*resp
, int nfserr
,
3393 struct nfsd4_test_stateid
*test_stateid
)
3395 struct nfsd4_compoundargs
*argp
;
3396 struct nfs4_client
*cl
= resp
->cstate
.session
->se_client
;
3402 restore_buf(test_stateid
->ts_saved_args
, &test_stateid
->ts_savedp
);
3403 argp
= test_stateid
->ts_saved_args
;
3406 *p
++ = htonl(test_stateid
->ts_num_ids
);
3410 for (i
= 0; i
< test_stateid
->ts_num_ids
; i
++) {
3411 nfsd4_decode_stateid(argp
, &si
);
3412 valid
= nfs4_validate_stateid(cl
, &si
);
3414 *p
++ = htonl(valid
);
3417 nfs4_unlock_state();
3423 nfsd4_encode_noop(struct nfsd4_compoundres
*resp
, __be32 nfserr
, void *p
)
3428 typedef __be32(* nfsd4_enc
)(struct nfsd4_compoundres
*, __be32
, void *);
3431 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3432 * since we don't need to filter out obsolete ops as this is
3433 * done in the decoding phase.
3435 static nfsd4_enc nfsd4_enc_ops
[] = {
3436 [OP_ACCESS
] = (nfsd4_enc
)nfsd4_encode_access
,
3437 [OP_CLOSE
] = (nfsd4_enc
)nfsd4_encode_close
,
3438 [OP_COMMIT
] = (nfsd4_enc
)nfsd4_encode_commit
,
3439 [OP_CREATE
] = (nfsd4_enc
)nfsd4_encode_create
,
3440 [OP_DELEGPURGE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3441 [OP_DELEGRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3442 [OP_GETATTR
] = (nfsd4_enc
)nfsd4_encode_getattr
,
3443 [OP_GETFH
] = (nfsd4_enc
)nfsd4_encode_getfh
,
3444 [OP_LINK
] = (nfsd4_enc
)nfsd4_encode_link
,
3445 [OP_LOCK
] = (nfsd4_enc
)nfsd4_encode_lock
,
3446 [OP_LOCKT
] = (nfsd4_enc
)nfsd4_encode_lockt
,
3447 [OP_LOCKU
] = (nfsd4_enc
)nfsd4_encode_locku
,
3448 [OP_LOOKUP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3449 [OP_LOOKUPP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3450 [OP_NVERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3451 [OP_OPEN
] = (nfsd4_enc
)nfsd4_encode_open
,
3452 [OP_OPENATTR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3453 [OP_OPEN_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_open_confirm
,
3454 [OP_OPEN_DOWNGRADE
] = (nfsd4_enc
)nfsd4_encode_open_downgrade
,
3455 [OP_PUTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3456 [OP_PUTPUBFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3457 [OP_PUTROOTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3458 [OP_READ
] = (nfsd4_enc
)nfsd4_encode_read
,
3459 [OP_READDIR
] = (nfsd4_enc
)nfsd4_encode_readdir
,
3460 [OP_READLINK
] = (nfsd4_enc
)nfsd4_encode_readlink
,
3461 [OP_REMOVE
] = (nfsd4_enc
)nfsd4_encode_remove
,
3462 [OP_RENAME
] = (nfsd4_enc
)nfsd4_encode_rename
,
3463 [OP_RENEW
] = (nfsd4_enc
)nfsd4_encode_noop
,
3464 [OP_RESTOREFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3465 [OP_SAVEFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3466 [OP_SECINFO
] = (nfsd4_enc
)nfsd4_encode_secinfo
,
3467 [OP_SETATTR
] = (nfsd4_enc
)nfsd4_encode_setattr
,
3468 [OP_SETCLIENTID
] = (nfsd4_enc
)nfsd4_encode_setclientid
,
3469 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_noop
,
3470 [OP_VERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3471 [OP_WRITE
] = (nfsd4_enc
)nfsd4_encode_write
,
3472 [OP_RELEASE_LOCKOWNER
] = (nfsd4_enc
)nfsd4_encode_noop
,
3474 /* NFSv4.1 operations */
3475 [OP_BACKCHANNEL_CTL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3476 [OP_BIND_CONN_TO_SESSION
] = (nfsd4_enc
)nfsd4_encode_bind_conn_to_session
,
3477 [OP_EXCHANGE_ID
] = (nfsd4_enc
)nfsd4_encode_exchange_id
,
3478 [OP_CREATE_SESSION
] = (nfsd4_enc
)nfsd4_encode_create_session
,
3479 [OP_DESTROY_SESSION
] = (nfsd4_enc
)nfsd4_encode_destroy_session
,
3480 [OP_FREE_STATEID
] = (nfsd4_enc
)nfsd4_encode_free_stateid
,
3481 [OP_GET_DIR_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3482 [OP_GETDEVICEINFO
] = (nfsd4_enc
)nfsd4_encode_noop
,
3483 [OP_GETDEVICELIST
] = (nfsd4_enc
)nfsd4_encode_noop
,
3484 [OP_LAYOUTCOMMIT
] = (nfsd4_enc
)nfsd4_encode_noop
,
3485 [OP_LAYOUTGET
] = (nfsd4_enc
)nfsd4_encode_noop
,
3486 [OP_LAYOUTRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3487 [OP_SECINFO_NO_NAME
] = (nfsd4_enc
)nfsd4_encode_secinfo_no_name
,
3488 [OP_SEQUENCE
] = (nfsd4_enc
)nfsd4_encode_sequence
,
3489 [OP_SET_SSV
] = (nfsd4_enc
)nfsd4_encode_noop
,
3490 [OP_TEST_STATEID
] = (nfsd4_enc
)nfsd4_encode_test_stateid
,
3491 [OP_WANT_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3492 [OP_DESTROY_CLIENTID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3493 [OP_RECLAIM_COMPLETE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3497 * Calculate the total amount of memory that the compound response has taken
3498 * after encoding the current operation with pad.
3500 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3501 * which was specified at nfsd4_operation, else pad is zero.
3503 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
3505 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3506 * will be at least a page and will therefore hold the xdr_buf head.
3508 int nfsd4_check_resp_size(struct nfsd4_compoundres
*resp
, u32 pad
)
3510 struct xdr_buf
*xb
= &resp
->rqstp
->rq_res
;
3511 struct nfsd4_session
*session
= NULL
;
3512 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3513 u32 length
, tlen
= 0;
3515 if (!nfsd4_has_session(&resp
->cstate
))
3518 session
= resp
->cstate
.session
;
3519 if (session
== NULL
)
3522 if (xb
->page_len
== 0) {
3523 length
= (char *)resp
->p
- (char *)xb
->head
[0].iov_base
+ pad
;
3525 if (xb
->tail
[0].iov_base
&& xb
->tail
[0].iov_len
> 0)
3526 tlen
= (char *)resp
->p
- (char *)xb
->tail
[0].iov_base
;
3528 length
= xb
->head
[0].iov_len
+ xb
->page_len
+ tlen
+ pad
;
3530 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__
,
3531 length
, xb
->page_len
, tlen
, pad
);
3533 if (length
> session
->se_fchannel
.maxresp_sz
)
3534 return nfserr_rep_too_big
;
3536 if (slot
->sl_cachethis
== 1 &&
3537 length
> session
->se_fchannel
.maxresp_cached
)
3538 return nfserr_rep_too_big_to_cache
;
3544 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3551 statp
= p
++; /* to be backfilled at the end */
3554 if (op
->opnum
== OP_ILLEGAL
)
3556 BUG_ON(op
->opnum
< 0 || op
->opnum
>= ARRAY_SIZE(nfsd4_enc_ops
) ||
3557 !nfsd4_enc_ops
[op
->opnum
]);
3558 op
->status
= nfsd4_enc_ops
[op
->opnum
](resp
, op
->status
, &op
->u
);
3559 /* nfsd4_check_drc_limit guarantees enough room for error status */
3561 op
->status
= nfsd4_check_resp_size(resp
, 0);
3564 * Note: We write the status directly, instead of using WRITE32(),
3565 * since it is already in network byte order.
3567 *statp
= op
->status
;
3571 * Encode the reply stored in the stateowner reply cache
3573 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3574 * previously sent already encoded operation.
3576 * called with nfs4_lock_state() held
3579 nfsd4_encode_replay(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3582 struct nfs4_replay
*rp
= op
->replay
;
3588 *p
++ = rp
->rp_status
; /* already xdr'ed */
3591 RESERVE_SPACE(rp
->rp_buflen
);
3592 WRITEMEM(rp
->rp_buf
, rp
->rp_buflen
);
3597 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
3599 return xdr_ressize_check(rqstp
, p
);
3602 int nfsd4_release_compoundargs(void *rq
, __be32
*p
, void *resp
)
3604 struct svc_rqst
*rqstp
= rq
;
3605 struct nfsd4_compoundargs
*args
= rqstp
->rq_argp
;
3607 if (args
->ops
!= args
->iops
) {
3609 args
->ops
= args
->iops
;
3613 while (args
->to_free
) {
3614 struct tmpbuf
*tb
= args
->to_free
;
3615 args
->to_free
= tb
->next
;
3616 tb
->release(tb
->buf
);
3623 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundargs
*args
)
3626 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
3627 args
->pagelist
= rqstp
->rq_arg
.pages
;
3628 args
->pagelen
= rqstp
->rq_arg
.page_len
;
3630 args
->to_free
= NULL
;
3631 args
->ops
= args
->iops
;
3632 args
->rqstp
= rqstp
;
3634 return !nfsd4_decode_compound(args
);
3638 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundres
*resp
)
3641 * All that remains is to write the tag and operation count...
3643 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
3646 *p
++ = htonl(resp
->taglen
);
3647 memcpy(p
, resp
->tag
, resp
->taglen
);
3648 p
+= XDR_QUADLEN(resp
->taglen
);
3649 *p
++ = htonl(resp
->opcnt
);
3651 if (rqstp
->rq_res
.page_len
)
3652 iov
= &rqstp
->rq_res
.tail
[0];
3654 iov
= &rqstp
->rq_res
.head
[0];
3655 iov
->iov_len
= ((char*)resp
->p
) - (char*)iov
->iov_base
;
3656 BUG_ON(iov
->iov_len
> PAGE_SIZE
);
3657 if (nfsd4_has_session(cs
)) {
3658 if (cs
->status
!= nfserr_replay_cache
) {
3659 nfsd4_store_cache_entry(resp
);
3660 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__
);
3661 cs
->slot
->sl_inuse
= false;
3663 /* Renew the clientid on success and on replay */
3664 release_session_client(cs
->session
);
3665 nfsd4_put_session(cs
->session
);