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/param.h>
44 #include <linux/smp.h>
46 #include <linux/namei.h>
47 #include <linux/vfs.h>
48 #include <linux/utsname.h>
49 #include <linux/sunrpc/xdr.h>
50 #include <linux/sunrpc/svc.h>
51 #include <linux/sunrpc/clnt.h>
52 #include <linux/nfsd/nfsd.h>
53 #include <linux/nfsd/state.h>
54 #include <linux/nfsd/xdr4.h>
55 #include <linux/nfsd_idmap.h>
56 #include <linux/nfs4.h>
57 #include <linux/nfs4_acl.h>
58 #include <linux/sunrpc/gss_api.h>
59 #include <linux/sunrpc/svcauth_gss.h>
61 #define NFSDDBG_FACILITY NFSDDBG_XDR
64 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
65 * directory in order to indicate to the client that a filesystem boundary is present
66 * We use a fixed fsid for a referral
68 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
69 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
72 check_filename(char *str
, int len
, __be32 err
)
78 if (isdotent(str
, len
))
80 for (i
= 0; i
< len
; i
++)
94 dprintk("NFSD: xdr error (%s:%d)\n", \
95 __FILE__, __LINE__); \
96 status = nfserr_bad_xdr; \
99 #define READ32(x) (x) = ntohl(*p++)
100 #define READ64(x) do { \
101 (x) = (u64)ntohl(*p++) << 32; \
102 (x) |= ntohl(*p++); \
104 #define READTIME(x) do { \
109 #define READMEM(x,nbytes) do { \
111 p += XDR_QUADLEN(nbytes); \
113 #define SAVEMEM(x,nbytes) do { \
114 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
115 savemem(argp, p, nbytes) : \
117 dprintk("NFSD: xdr error (%s:%d)\n", \
118 __FILE__, __LINE__); \
121 p += XDR_QUADLEN(nbytes); \
123 #define COPYMEM(x,nbytes) do { \
124 memcpy((x), p, nbytes); \
125 p += XDR_QUADLEN(nbytes); \
128 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
129 #define READ_BUF(nbytes) do { \
130 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
132 argp->p += XDR_QUADLEN(nbytes); \
133 } else if (!(p = read_buf(argp, nbytes))) { \
134 dprintk("NFSD: xdr error (%s:%d)\n", \
135 __FILE__, __LINE__); \
140 static __be32
*read_buf(struct nfsd4_compoundargs
*argp
, u32 nbytes
)
142 /* We want more bytes than seem to be available.
143 * Maybe we need a new page, maybe we have just run out
145 unsigned int avail
= (char *)argp
->end
- (char *)argp
->p
;
147 if (avail
+ argp
->pagelen
< nbytes
)
149 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
151 /* ok, we can do it with the current plus the next page */
152 if (nbytes
<= sizeof(argp
->tmp
))
156 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
162 * The following memcpy is safe because read_buf is always
163 * called with nbytes > avail, and the two cases above both
164 * guarantee p points to at least nbytes bytes.
166 memcpy(p
, argp
->p
, avail
);
167 /* step to next page */
168 argp
->p
= page_address(argp
->pagelist
[0]);
170 if (argp
->pagelen
< PAGE_SIZE
) {
171 argp
->end
= p
+ (argp
->pagelen
>>2);
174 argp
->end
= p
+ (PAGE_SIZE
>>2);
175 argp
->pagelen
-= PAGE_SIZE
;
177 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
178 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
182 static int zero_clientid(clientid_t
*clid
)
184 return (clid
->cl_boot
== 0) && (clid
->cl_id
== 0);
188 defer_free(struct nfsd4_compoundargs
*argp
,
189 void (*release
)(const void *), void *p
)
193 tb
= kmalloc(sizeof(*tb
), GFP_KERNEL
);
197 tb
->release
= release
;
198 tb
->next
= argp
->to_free
;
203 static char *savemem(struct nfsd4_compoundargs
*argp
, __be32
*p
, int nbytes
)
205 if (p
== argp
->tmp
) {
206 p
= kmalloc(nbytes
, GFP_KERNEL
);
209 memcpy(p
, argp
->tmp
, nbytes
);
211 BUG_ON(p
!= argp
->tmpp
);
214 if (defer_free(argp
, kfree
, p
)) {
222 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
236 READ_BUF(bmlen
<< 2);
248 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
,
249 struct iattr
*iattr
, struct nfs4_acl
**acl
)
251 int expected_len
, len
= 0;
258 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
262 READ32(expected_len
);
264 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
267 READ64(iattr
->ia_size
);
268 iattr
->ia_valid
|= ATTR_SIZE
;
270 if (bmval
[0] & FATTR4_WORD0_ACL
) {
272 struct nfs4_ace
*ace
;
274 READ_BUF(4); len
+= 4;
277 if (nace
> NFS4_ACL_MAX
)
278 return nfserr_resource
;
280 *acl
= nfs4_acl_new(nace
);
285 defer_free(argp
, kfree
, *acl
);
287 (*acl
)->naces
= nace
;
288 for (ace
= (*acl
)->aces
; ace
< (*acl
)->aces
+ nace
; ace
++) {
289 READ_BUF(16); len
+= 16;
292 READ32(ace
->access_mask
);
295 len
+= XDR_QUADLEN(dummy32
) << 2;
296 READMEM(buf
, dummy32
);
297 ace
->whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
299 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
301 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
302 host_err
= nfsd_map_name_to_gid(argp
->rqstp
,
303 buf
, dummy32
, &ace
->who
);
305 host_err
= nfsd_map_name_to_uid(argp
->rqstp
,
306 buf
, dummy32
, &ace
->who
);
312 if (bmval
[1] & FATTR4_WORD1_MODE
) {
315 READ32(iattr
->ia_mode
);
316 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
317 iattr
->ia_valid
|= ATTR_MODE
;
319 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
324 len
+= (XDR_QUADLEN(dummy32
) << 2);
325 READMEM(buf
, dummy32
);
326 if ((host_err
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
328 iattr
->ia_valid
|= ATTR_UID
;
330 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
335 len
+= (XDR_QUADLEN(dummy32
) << 2);
336 READMEM(buf
, dummy32
);
337 if ((host_err
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
339 iattr
->ia_valid
|= ATTR_GID
;
341 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
346 case NFS4_SET_TO_CLIENT_TIME
:
347 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
348 all 32 bits of 'nseconds'. */
354 READ32(iattr
->ia_atime
.tv_sec
);
355 READ32(iattr
->ia_atime
.tv_nsec
);
356 if (iattr
->ia_atime
.tv_nsec
>= (u32
)1000000000)
358 iattr
->ia_valid
|= (ATTR_ATIME
| ATTR_ATIME_SET
);
360 case NFS4_SET_TO_SERVER_TIME
:
361 iattr
->ia_valid
|= ATTR_ATIME
;
367 if (bmval
[1] & FATTR4_WORD1_TIME_MODIFY_SET
) {
372 case NFS4_SET_TO_CLIENT_TIME
:
373 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
374 all 32 bits of 'nseconds'. */
380 READ32(iattr
->ia_mtime
.tv_sec
);
381 READ32(iattr
->ia_mtime
.tv_nsec
);
382 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
384 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
386 case NFS4_SET_TO_SERVER_TIME
:
387 iattr
->ia_valid
|= ATTR_MTIME
;
393 if (bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
394 || bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
395 || bmval
[2] & ~NFSD_WRITEABLE_ATTRS_WORD2
)
396 READ_BUF(expected_len
- len
);
397 else if (len
!= expected_len
)
403 status
= nfserrno(host_err
);
408 nfsd4_decode_stateid(struct nfsd4_compoundargs
*argp
, stateid_t
*sid
)
412 READ_BUF(sizeof(stateid_t
));
413 READ32(sid
->si_generation
);
414 COPYMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
420 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
425 READ32(access
->ac_req_access
);
431 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
435 close
->cl_stateowner
= NULL
;
437 READ32(close
->cl_seqid
);
438 return nfsd4_decode_stateid(argp
, &close
->cl_stateid
);
445 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
450 READ64(commit
->co_offset
);
451 READ32(commit
->co_count
);
457 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
462 READ32(create
->cr_type
);
463 switch (create
->cr_type
) {
466 READ32(create
->cr_linklen
);
467 READ_BUF(create
->cr_linklen
);
468 SAVEMEM(create
->cr_linkname
, create
->cr_linklen
);
473 READ32(create
->cr_specdata1
);
474 READ32(create
->cr_specdata2
);
484 READ32(create
->cr_namelen
);
485 READ_BUF(create
->cr_namelen
);
486 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
487 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
, nfserr_inval
)))
490 status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
,
499 nfsd4_decode_delegreturn(struct nfsd4_compoundargs
*argp
, struct nfsd4_delegreturn
*dr
)
501 return nfsd4_decode_stateid(argp
, &dr
->dr_stateid
);
505 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
507 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
511 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
516 READ32(link
->li_namelen
);
517 READ_BUF(link
->li_namelen
);
518 SAVEMEM(link
->li_name
, link
->li_namelen
);
519 if ((status
= check_filename(link
->li_name
, link
->li_namelen
, nfserr_inval
)))
526 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
530 lock
->lk_replay_owner
= NULL
;
532 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
535 READ32(lock
->lk_type
);
536 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
538 READ32(lock
->lk_reclaim
);
539 READ64(lock
->lk_offset
);
540 READ64(lock
->lk_length
);
541 READ32(lock
->lk_is_new
);
543 if (lock
->lk_is_new
) {
545 READ32(lock
->lk_new_open_seqid
);
546 status
= nfsd4_decode_stateid(argp
, &lock
->lk_new_open_stateid
);
549 READ_BUF(8 + sizeof(clientid_t
));
550 READ32(lock
->lk_new_lock_seqid
);
551 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
552 READ32(lock
->lk_new_owner
.len
);
553 READ_BUF(lock
->lk_new_owner
.len
);
554 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
556 status
= nfsd4_decode_stateid(argp
, &lock
->lk_old_lock_stateid
);
560 READ32(lock
->lk_old_lock_seqid
);
567 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
572 READ32(lockt
->lt_type
);
573 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
575 READ64(lockt
->lt_offset
);
576 READ64(lockt
->lt_length
);
577 COPYMEM(&lockt
->lt_clientid
, 8);
578 READ32(lockt
->lt_owner
.len
);
579 READ_BUF(lockt
->lt_owner
.len
);
580 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
582 if (argp
->minorversion
&& !zero_clientid(&lockt
->lt_clientid
))
588 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
592 locku
->lu_stateowner
= NULL
;
594 READ32(locku
->lu_type
);
595 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
597 READ32(locku
->lu_seqid
);
598 status
= nfsd4_decode_stateid(argp
, &locku
->lu_stateid
);
602 READ64(locku
->lu_offset
);
603 READ64(locku
->lu_length
);
609 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
614 READ32(lookup
->lo_len
);
615 READ_BUF(lookup
->lo_len
);
616 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
617 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
, nfserr_noent
)))
624 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
628 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
629 open
->op_iattr
.ia_valid
= 0;
630 open
->op_stateowner
= NULL
;
632 /* seqid, share_access, share_deny, clientid, ownerlen */
633 READ_BUF(16 + sizeof(clientid_t
));
634 READ32(open
->op_seqid
);
635 READ32(open
->op_share_access
);
636 READ32(open
->op_share_deny
);
637 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
638 READ32(open
->op_owner
.len
);
640 /* owner, open_flag */
641 READ_BUF(open
->op_owner
.len
+ 4);
642 SAVEMEM(open
->op_owner
.data
, open
->op_owner
.len
);
643 READ32(open
->op_create
);
644 switch (open
->op_create
) {
645 case NFS4_OPEN_NOCREATE
:
647 case NFS4_OPEN_CREATE
:
649 READ32(open
->op_createmode
);
650 switch (open
->op_createmode
) {
651 case NFS4_CREATE_UNCHECKED
:
652 case NFS4_CREATE_GUARDED
:
653 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
654 &open
->op_iattr
, &open
->op_acl
);
658 case NFS4_CREATE_EXCLUSIVE
:
660 COPYMEM(open
->op_verf
.data
, 8);
662 case NFS4_CREATE_EXCLUSIVE4_1
:
663 if (argp
->minorversion
< 1)
666 COPYMEM(open
->op_verf
.data
, 8);
667 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
668 &open
->op_iattr
, &open
->op_acl
);
682 READ32(open
->op_claim_type
);
683 switch (open
->op_claim_type
) {
684 case NFS4_OPEN_CLAIM_NULL
:
685 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
687 READ32(open
->op_fname
.len
);
688 READ_BUF(open
->op_fname
.len
);
689 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
690 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
693 case NFS4_OPEN_CLAIM_PREVIOUS
:
695 READ32(open
->op_delegate_type
);
697 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
698 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
702 READ32(open
->op_fname
.len
);
703 READ_BUF(open
->op_fname
.len
);
704 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
705 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
716 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
720 open_conf
->oc_stateowner
= NULL
;
721 status
= nfsd4_decode_stateid(argp
, &open_conf
->oc_req_stateid
);
725 READ32(open_conf
->oc_seqid
);
731 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
735 open_down
->od_stateowner
= NULL
;
736 status
= nfsd4_decode_stateid(argp
, &open_down
->od_stateid
);
740 READ32(open_down
->od_seqid
);
741 READ32(open_down
->od_share_access
);
742 READ32(open_down
->od_share_deny
);
748 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
753 READ32(putfh
->pf_fhlen
);
754 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
756 READ_BUF(putfh
->pf_fhlen
);
757 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
763 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
767 status
= nfsd4_decode_stateid(argp
, &read
->rd_stateid
);
771 READ64(read
->rd_offset
);
772 READ32(read
->rd_length
);
778 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
783 READ64(readdir
->rd_cookie
);
784 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
785 READ32(readdir
->rd_dircount
); /* just in case you needed a useless field... */
786 READ32(readdir
->rd_maxcount
);
787 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
794 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
799 READ32(remove
->rm_namelen
);
800 READ_BUF(remove
->rm_namelen
);
801 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
802 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
, nfserr_noent
)))
809 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
814 READ32(rename
->rn_snamelen
);
815 READ_BUF(rename
->rn_snamelen
+ 4);
816 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
817 READ32(rename
->rn_tnamelen
);
818 READ_BUF(rename
->rn_tnamelen
);
819 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
820 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
, nfserr_noent
)))
822 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
, nfserr_inval
)))
829 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
833 READ_BUF(sizeof(clientid_t
));
834 COPYMEM(clientid
, sizeof(clientid_t
));
840 nfsd4_decode_secinfo(struct nfsd4_compoundargs
*argp
,
841 struct nfsd4_secinfo
*secinfo
)
846 READ32(secinfo
->si_namelen
);
847 READ_BUF(secinfo
->si_namelen
);
848 SAVEMEM(secinfo
->si_name
, secinfo
->si_namelen
);
849 status
= check_filename(secinfo
->si_name
, secinfo
->si_namelen
,
857 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
861 status
= nfsd4_decode_stateid(argp
, &setattr
->sa_stateid
);
864 return nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
,
869 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
874 COPYMEM(setclientid
->se_verf
.data
, 8);
875 READ32(setclientid
->se_namelen
);
877 READ_BUF(setclientid
->se_namelen
+ 8);
878 SAVEMEM(setclientid
->se_name
, setclientid
->se_namelen
);
879 READ32(setclientid
->se_callback_prog
);
880 READ32(setclientid
->se_callback_netid_len
);
882 READ_BUF(setclientid
->se_callback_netid_len
+ 4);
883 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
884 READ32(setclientid
->se_callback_addr_len
);
886 READ_BUF(setclientid
->se_callback_addr_len
+ 4);
887 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
888 READ32(setclientid
->se_callback_ident
);
894 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
898 READ_BUF(8 + sizeof(nfs4_verifier
));
899 COPYMEM(&scd_c
->sc_clientid
, 8);
900 COPYMEM(&scd_c
->sc_confirm
, sizeof(nfs4_verifier
));
905 /* Also used for NVERIFY */
907 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
910 struct nfsd4_compoundargs save
= {
913 .rqstp
= argp
->rqstp
,
916 struct iattr ve_iattr
; /* request */
917 struct nfs4_acl
*ve_acl
; /* request */
921 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
924 /* For convenience's sake, we compare raw xdr'd attributes in
925 * nfsd4_proc_verify; however we still decode here just to return
926 * correct error in case of bad xdr. */
928 status
= nfsd4_decode_fattr(ve_bmval
, &ve_iattr
, &ve_acl
);
929 if (status
== nfserr_inval
) {
930 status
= nfserrno(status
);
935 READ32(verify
->ve_attrlen
);
936 READ_BUF(verify
->ve_attrlen
);
937 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
943 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
950 status
= nfsd4_decode_stateid(argp
, &write
->wr_stateid
);
954 READ64(write
->wr_offset
);
955 READ32(write
->wr_stable_how
);
956 if (write
->wr_stable_how
> 2)
958 READ32(write
->wr_buflen
);
960 /* Sorry .. no magic macros for this.. *
961 * READ_BUF(write->wr_buflen);
962 * SAVEMEM(write->wr_buf, write->wr_buflen);
964 avail
= (char*)argp
->end
- (char*)argp
->p
;
965 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
966 dprintk("NFSD: xdr error (%s:%d)\n",
970 argp
->rqstp
->rq_vec
[0].iov_base
= p
;
971 argp
->rqstp
->rq_vec
[0].iov_len
= avail
;
973 len
= write
->wr_buflen
;
974 while (len
> argp
->rqstp
->rq_vec
[v
].iov_len
) {
975 len
-= argp
->rqstp
->rq_vec
[v
].iov_len
;
977 argp
->rqstp
->rq_vec
[v
].iov_base
= page_address(argp
->pagelist
[0]);
979 if (argp
->pagelen
>= PAGE_SIZE
) {
980 argp
->rqstp
->rq_vec
[v
].iov_len
= PAGE_SIZE
;
981 argp
->pagelen
-= PAGE_SIZE
;
983 argp
->rqstp
->rq_vec
[v
].iov_len
= argp
->pagelen
;
984 argp
->pagelen
-= len
;
987 argp
->end
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ argp
->rqstp
->rq_vec
[v
].iov_len
);
988 argp
->p
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ (XDR_QUADLEN(len
) << 2));
989 argp
->rqstp
->rq_vec
[v
].iov_len
= len
;
990 write
->wr_vlen
= v
+1;
996 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
1001 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
1002 READ32(rlockowner
->rl_owner
.len
);
1003 READ_BUF(rlockowner
->rl_owner
.len
);
1004 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
1006 if (argp
->minorversion
&& !zero_clientid(&rlockowner
->rl_clientid
))
1007 return nfserr_inval
;
1012 nfsd4_decode_exchange_id(struct nfsd4_compoundargs
*argp
,
1013 struct nfsd4_exchange_id
*exid
)
1018 READ_BUF(NFS4_VERIFIER_SIZE
);
1019 COPYMEM(exid
->verifier
.data
, NFS4_VERIFIER_SIZE
);
1022 READ32(exid
->clname
.len
);
1024 READ_BUF(exid
->clname
.len
);
1025 SAVEMEM(exid
->clname
.data
, exid
->clname
.len
);
1028 READ32(exid
->flags
);
1030 /* Ignore state_protect4_a */
1032 READ32(exid
->spa_how
);
1033 switch (exid
->spa_how
) {
1037 /* spo_must_enforce */
1040 READ_BUF(dummy
* 4);
1043 /* spo_must_allow */
1046 READ_BUF(dummy
* 4);
1053 READ_BUF(dummy
* 4);
1058 READ_BUF(dummy
* 4);
1061 /* ssp_hash_algs<> */
1065 p
+= XDR_QUADLEN(dummy
);
1067 /* ssp_encr_algs<> */
1071 p
+= XDR_QUADLEN(dummy
);
1073 /* ssp_window and ssp_num_gss_handles */
1082 /* Ignore Implementation ID */
1083 READ_BUF(4); /* nfs_impl_id4 array length */
1094 p
+= XDR_QUADLEN(dummy
);
1100 p
+= XDR_QUADLEN(dummy
);
1110 nfsd4_decode_create_session(struct nfsd4_compoundargs
*argp
,
1111 struct nfsd4_create_session
*sess
)
1121 COPYMEM(&sess
->clientid
, 8);
1122 READ32(sess
->seqid
);
1123 READ32(sess
->flags
);
1125 /* Fore channel attrs */
1127 READ32(dummy
); /* headerpadsz is always 0 */
1128 READ32(sess
->fore_channel
.maxreq_sz
);
1129 READ32(sess
->fore_channel
.maxresp_sz
);
1130 READ32(sess
->fore_channel
.maxresp_cached
);
1131 READ32(sess
->fore_channel
.maxops
);
1132 READ32(sess
->fore_channel
.maxreqs
);
1133 READ32(sess
->fore_channel
.nr_rdma_attrs
);
1134 if (sess
->fore_channel
.nr_rdma_attrs
== 1) {
1136 READ32(sess
->fore_channel
.rdma_attrs
);
1137 } else if (sess
->fore_channel
.nr_rdma_attrs
> 1) {
1138 dprintk("Too many fore channel attr bitmaps!\n");
1142 /* Back channel attrs */
1144 READ32(dummy
); /* headerpadsz is always 0 */
1145 READ32(sess
->back_channel
.maxreq_sz
);
1146 READ32(sess
->back_channel
.maxresp_sz
);
1147 READ32(sess
->back_channel
.maxresp_cached
);
1148 READ32(sess
->back_channel
.maxops
);
1149 READ32(sess
->back_channel
.maxreqs
);
1150 READ32(sess
->back_channel
.nr_rdma_attrs
);
1151 if (sess
->back_channel
.nr_rdma_attrs
== 1) {
1153 READ32(sess
->back_channel
.rdma_attrs
);
1154 } else if (sess
->back_channel
.nr_rdma_attrs
> 1) {
1155 dprintk("Too many back channel attr bitmaps!\n");
1160 READ32(sess
->callback_prog
);
1162 /* callback_sec_params4 */
1163 READ32(nr_secflavs
);
1164 for (i
= 0; i
< nr_secflavs
; ++i
) {
1169 /* Nothing to read */
1179 SAVEMEM(machine_name
, dummy
);
1189 READ_BUF(dummy
* 4);
1190 for (i
= 0; i
< dummy
; ++i
)
1194 dprintk("RPC_AUTH_GSS callback secflavor "
1195 "not supported!\n");
1199 /* gcbp_handle_from_server */
1202 p
+= XDR_QUADLEN(dummy
);
1203 /* gcbp_handle_from_client */
1207 p
+= XDR_QUADLEN(dummy
);
1210 dprintk("Illegal callback secflavor\n");
1211 return nfserr_inval
;
1218 nfsd4_decode_destroy_session(struct nfsd4_compoundargs
*argp
,
1219 struct nfsd4_destroy_session
*destroy_session
)
1222 READ_BUF(NFS4_MAX_SESSIONID_LEN
);
1223 COPYMEM(destroy_session
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1229 nfsd4_decode_sequence(struct nfsd4_compoundargs
*argp
,
1230 struct nfsd4_sequence
*seq
)
1234 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 16);
1235 COPYMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1237 READ32(seq
->slotid
);
1238 READ32(seq
->maxslots
);
1239 READ32(seq
->cachethis
);
1245 nfsd4_decode_noop(struct nfsd4_compoundargs
*argp
, void *p
)
1251 nfsd4_decode_notsupp(struct nfsd4_compoundargs
*argp
, void *p
)
1253 return nfserr_notsupp
;
1256 typedef __be32(*nfsd4_dec
)(struct nfsd4_compoundargs
*argp
, void *);
1258 static nfsd4_dec nfsd4_dec_ops
[] = {
1259 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1260 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1261 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1262 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1263 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1264 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1265 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1266 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1267 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1268 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1269 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1270 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1271 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1272 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1273 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1274 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1275 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1276 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_open_confirm
,
1277 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1278 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1279 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1280 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1281 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1282 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1283 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1284 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1285 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1286 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_renew
,
1287 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1288 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1289 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1290 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1291 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_setclientid
,
1292 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_setclientid_confirm
,
1293 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1294 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1295 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_release_lockowner
,
1298 static nfsd4_dec nfsd41_dec_ops
[] = {
1299 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1300 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1301 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1302 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1303 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1304 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1305 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1306 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1307 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1308 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1309 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1310 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1311 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1312 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1313 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1314 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1315 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1316 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1317 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1318 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1319 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1320 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1321 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1322 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1323 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1324 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1325 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1326 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1327 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1328 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1329 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1330 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1331 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1332 [OP_SETCLIENTID_CONFIRM
]= (nfsd4_dec
)nfsd4_decode_notsupp
,
1333 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1334 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1335 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1337 /* new operations for NFSv4.1 */
1338 [OP_BACKCHANNEL_CTL
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1339 [OP_BIND_CONN_TO_SESSION
]= (nfsd4_dec
)nfsd4_decode_notsupp
,
1340 [OP_EXCHANGE_ID
] = (nfsd4_dec
)nfsd4_decode_exchange_id
,
1341 [OP_CREATE_SESSION
] = (nfsd4_dec
)nfsd4_decode_create_session
,
1342 [OP_DESTROY_SESSION
] = (nfsd4_dec
)nfsd4_decode_destroy_session
,
1343 [OP_FREE_STATEID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1344 [OP_GET_DIR_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1345 [OP_GETDEVICEINFO
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1346 [OP_GETDEVICELIST
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1347 [OP_LAYOUTCOMMIT
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1348 [OP_LAYOUTGET
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1349 [OP_LAYOUTRETURN
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1350 [OP_SECINFO_NO_NAME
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1351 [OP_SEQUENCE
] = (nfsd4_dec
)nfsd4_decode_sequence
,
1352 [OP_SET_SSV
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1353 [OP_TEST_STATEID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1354 [OP_WANT_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1355 [OP_DESTROY_CLIENTID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1356 [OP_RECLAIM_COMPLETE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1359 struct nfsd4_minorversion_ops
{
1360 nfsd4_dec
*decoders
;
1364 static struct nfsd4_minorversion_ops nfsd4_minorversion
[] = {
1365 [0] = { nfsd4_dec_ops
, ARRAY_SIZE(nfsd4_dec_ops
) },
1366 [1] = { nfsd41_dec_ops
, ARRAY_SIZE(nfsd41_dec_ops
) },
1370 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1373 struct nfsd4_op
*op
;
1374 struct nfsd4_minorversion_ops
*ops
;
1378 * XXX: According to spec, we should check the tag
1379 * for UTF-8 compliance. I'm postponing this for
1380 * now because it seems that some clients do use
1384 READ32(argp
->taglen
);
1385 READ_BUF(argp
->taglen
+ 8);
1386 SAVEMEM(argp
->tag
, argp
->taglen
);
1387 READ32(argp
->minorversion
);
1388 READ32(argp
->opcnt
);
1390 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1392 if (argp
->opcnt
> 100)
1395 if (argp
->opcnt
> ARRAY_SIZE(argp
->iops
)) {
1396 argp
->ops
= kmalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1398 argp
->ops
= argp
->iops
;
1399 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1404 if (argp
->minorversion
>= ARRAY_SIZE(nfsd4_minorversion
))
1407 ops
= &nfsd4_minorversion
[argp
->minorversion
];
1408 for (i
= 0; i
< argp
->opcnt
; i
++) {
1413 * We can't use READ_BUF() here because we need to handle
1414 * a missing opcode as an OP_WRITE + 1. So we need to check
1415 * to see if we're truly at the end of our buffer or if there
1416 * is another page we need to flip to.
1419 if (argp
->p
== argp
->end
) {
1420 if (argp
->pagelen
< 4) {
1421 /* There isn't an opcode still on the wire */
1422 op
->opnum
= OP_WRITE
+ 1;
1423 op
->status
= nfserr_bad_xdr
;
1429 * False alarm. We just hit a page boundary, but there
1430 * is still data available. Move pointer across page
1431 * boundary. *snip from READ_BUF*
1433 argp
->p
= page_address(argp
->pagelist
[0]);
1435 if (argp
->pagelen
< PAGE_SIZE
) {
1436 argp
->end
= p
+ (argp
->pagelen
>>2);
1439 argp
->end
= p
+ (PAGE_SIZE
>>2);
1440 argp
->pagelen
-= PAGE_SIZE
;
1443 op
->opnum
= ntohl(*argp
->p
++);
1445 if (op
->opnum
>= OP_ACCESS
&& op
->opnum
< ops
->nops
)
1446 op
->status
= ops
->decoders
[op
->opnum
](argp
, &op
->u
);
1448 op
->opnum
= OP_ILLEGAL
;
1449 op
->status
= nfserr_op_illegal
;
1461 #define WRITE32(n) *p++ = htonl(n)
1462 #define WRITE64(n) do { \
1463 *p++ = htonl((u32)((n) >> 32)); \
1464 *p++ = htonl((u32)(n)); \
1466 #define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
1467 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1468 memcpy(p, ptr, nbytes); \
1469 p += XDR_QUADLEN(nbytes); \
1472 static void write32(__be32
**p
, u32 n
)
1477 static void write64(__be32
**p
, u64 n
)
1479 write32(p
, (u32
)(n
>> 32));
1483 static void write_change(__be32
**p
, struct kstat
*stat
, struct inode
*inode
)
1485 if (IS_I_VERSION(inode
)) {
1486 write64(p
, inode
->i_version
);
1488 write32(p
, stat
->ctime
.tv_sec
);
1489 write32(p
, stat
->ctime
.tv_nsec
);
1493 static void write_cinfo(__be32
**p
, struct nfsd4_change_info
*c
)
1495 write32(p
, c
->atomic
);
1496 if (c
->change_supported
) {
1497 write64(p
, c
->before_change
);
1498 write64(p
, c
->after_change
);
1500 write32(p
, c
->before_ctime_sec
);
1501 write32(p
, c
->before_ctime_nsec
);
1502 write32(p
, c
->after_ctime_sec
);
1503 write32(p
, c
->after_ctime_nsec
);
1507 #define RESERVE_SPACE(nbytes) do { \
1509 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1511 #define ADJUST_ARGS() resp->p = p
1514 * Header routine to setup seqid operation replay cache
1516 #define ENCODE_SEQID_OP_HEAD \
1522 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1523 * is where sequence id's are incremented, and the replay cache is filled.
1524 * Note that we increment sequence id's here, at the last moment, so we're sure
1525 * we know whether the error to be returned is a sequence id mutating error.
1528 #define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1529 if (seqid_mutating_err(nfserr) && stateowner) { \
1530 stateowner->so_seqid++; \
1531 stateowner->so_replay.rp_status = nfserr; \
1532 stateowner->so_replay.rp_buflen = \
1533 (((char *)(resp)->p - (char *)save)); \
1534 memcpy(stateowner->so_replay.rp_buf, save, \
1535 stateowner->so_replay.rp_buflen); \
1538 /* Encode as an array of strings the string given with components
1541 static __be32
nfsd4_encode_components(char sep
, char *components
,
1542 __be32
**pp
, int *buflen
)
1546 int strlen
, count
=0;
1549 dprintk("nfsd4_encode_components(%s)\n", components
);
1550 if ((*buflen
-= 4) < 0)
1551 return nfserr_resource
;
1552 WRITE32(0); /* We will fill this in with @count later */
1553 end
= str
= components
;
1555 for (; *end
&& (*end
!= sep
); end
++)
1556 ; /* Point to end of component */
1559 if ((*buflen
-= ((XDR_QUADLEN(strlen
) << 2) + 4)) < 0)
1560 return nfserr_resource
;
1562 WRITEMEM(str
, strlen
);
1576 * encode a location element of a fs_locations structure
1578 static __be32
nfsd4_encode_fs_location4(struct nfsd4_fs_location
*location
,
1579 __be32
**pp
, int *buflen
)
1584 status
= nfsd4_encode_components(':', location
->hosts
, &p
, buflen
);
1587 status
= nfsd4_encode_components('/', location
->path
, &p
, buflen
);
1595 * Return the path to an export point in the pseudo filesystem namespace
1596 * Returned string is safe to use as long as the caller holds a reference
1599 static char *nfsd4_path(struct svc_rqst
*rqstp
, struct svc_export
*exp
, __be32
*stat
)
1601 struct svc_fh tmp_fh
;
1602 char *path
= NULL
, *rootpath
;
1605 fh_init(&tmp_fh
, NFS4_FHSIZE
);
1606 *stat
= exp_pseudoroot(rqstp
, &tmp_fh
);
1609 rootpath
= tmp_fh
.fh_export
->ex_pathname
;
1611 path
= exp
->ex_pathname
;
1613 rootlen
= strlen(rootpath
);
1614 if (strncmp(path
, rootpath
, rootlen
)) {
1615 dprintk("nfsd: fs_locations failed;"
1616 "%s is not contained in %s\n", path
, rootpath
);
1617 *stat
= nfserr_notsupp
;
1628 * encode a fs_locations structure
1630 static __be32
nfsd4_encode_fs_locations(struct svc_rqst
*rqstp
,
1631 struct svc_export
*exp
,
1632 __be32
**pp
, int *buflen
)
1637 struct nfsd4_fs_locations
*fslocs
= &exp
->ex_fslocs
;
1638 char *root
= nfsd4_path(rqstp
, exp
, &status
);
1642 status
= nfsd4_encode_components('/', root
, &p
, buflen
);
1645 if ((*buflen
-= 4) < 0)
1646 return nfserr_resource
;
1647 WRITE32(fslocs
->locations_count
);
1648 for (i
=0; i
<fslocs
->locations_count
; i
++) {
1649 status
= nfsd4_encode_fs_location4(&fslocs
->locations
[i
],
1658 static u32 nfs4_ftypes
[16] = {
1659 NF4BAD
, NF4FIFO
, NF4CHR
, NF4BAD
,
1660 NF4DIR
, NF4BAD
, NF4BLK
, NF4BAD
,
1661 NF4REG
, NF4BAD
, NF4LNK
, NF4BAD
,
1662 NF4SOCK
, NF4BAD
, NF4LNK
, NF4BAD
,
1666 nfsd4_encode_name(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1667 __be32
**p
, int *buflen
)
1671 if (*buflen
< (XDR_QUADLEN(IDMAP_NAMESZ
) << 2) + 4)
1672 return nfserr_resource
;
1673 if (whotype
!= NFS4_ACL_WHO_NAMED
)
1674 status
= nfs4_acl_write_who(whotype
, (u8
*)(*p
+ 1));
1676 status
= nfsd_map_gid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1678 status
= nfsd_map_uid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1680 return nfserrno(status
);
1681 *p
= xdr_encode_opaque(*p
, NULL
, status
);
1682 *buflen
-= (XDR_QUADLEN(status
) << 2) + 4;
1683 BUG_ON(*buflen
< 0);
1687 static inline __be32
1688 nfsd4_encode_user(struct svc_rqst
*rqstp
, uid_t uid
, __be32
**p
, int *buflen
)
1690 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, uid
, 0, p
, buflen
);
1693 static inline __be32
1694 nfsd4_encode_group(struct svc_rqst
*rqstp
, uid_t gid
, __be32
**p
, int *buflen
)
1696 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, gid
, 1, p
, buflen
);
1699 static inline __be32
1700 nfsd4_encode_aclname(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1701 __be32
**p
, int *buflen
)
1703 return nfsd4_encode_name(rqstp
, whotype
, id
, group
, p
, buflen
);
1706 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1707 FATTR4_WORD0_RDATTR_ERROR)
1708 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1710 static __be32
fattr_handle_absent_fs(u32
*bmval0
, u32
*bmval1
, u32
*rdattr_err
)
1712 /* As per referral draft: */
1713 if (*bmval0
& ~WORD0_ABSENT_FS_ATTRS
||
1714 *bmval1
& ~WORD1_ABSENT_FS_ATTRS
) {
1715 if (*bmval0
& FATTR4_WORD0_RDATTR_ERROR
||
1716 *bmval0
& FATTR4_WORD0_FS_LOCATIONS
)
1717 *rdattr_err
= NFSERR_MOVED
;
1719 return nfserr_moved
;
1721 *bmval0
&= WORD0_ABSENT_FS_ATTRS
;
1722 *bmval1
&= WORD1_ABSENT_FS_ATTRS
;
1727 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1730 * @countp is the buffer size in _words_; upon successful return this becomes
1731 * replaced with the number of words written.
1734 nfsd4_encode_fattr(struct svc_fh
*fhp
, struct svc_export
*exp
,
1735 struct dentry
*dentry
, __be32
*buffer
, int *countp
, u32
*bmval
,
1736 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
1738 u32 bmval0
= bmval
[0];
1739 u32 bmval1
= bmval
[1];
1740 u32 bmval2
= bmval
[2];
1742 struct svc_fh tempfh
;
1743 struct kstatfs statfs
;
1744 int buflen
= *countp
<< 2;
1753 struct nfs4_acl
*acl
= NULL
;
1754 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
1755 u32 minorversion
= resp
->cstate
.minorversion
;
1757 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
1758 BUG_ON(bmval0
& ~nfsd_suppattrs0(minorversion
));
1759 BUG_ON(bmval1
& ~nfsd_suppattrs1(minorversion
));
1760 BUG_ON(bmval2
& ~nfsd_suppattrs2(minorversion
));
1762 if (exp
->ex_fslocs
.migrated
) {
1764 status
= fattr_handle_absent_fs(&bmval0
, &bmval1
, &rdattr_err
);
1769 err
= vfs_getattr(exp
->ex_path
.mnt
, dentry
, &stat
);
1772 if ((bmval0
& (FATTR4_WORD0_FILES_FREE
| FATTR4_WORD0_FILES_TOTAL
|
1773 FATTR4_WORD0_MAXNAME
)) ||
1774 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
1775 FATTR4_WORD1_SPACE_TOTAL
))) {
1776 err
= vfs_statfs(dentry
, &statfs
);
1780 if ((bmval0
& (FATTR4_WORD0_FILEHANDLE
| FATTR4_WORD0_FSID
)) && !fhp
) {
1781 fh_init(&tempfh
, NFS4_FHSIZE
);
1782 status
= fh_compose(&tempfh
, exp
, dentry
, NULL
);
1787 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
1788 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
1789 err
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
1790 aclsupport
= (err
== 0);
1791 if (bmval0
& FATTR4_WORD0_ACL
) {
1792 if (err
== -EOPNOTSUPP
)
1793 bmval0
&= ~FATTR4_WORD0_ACL
;
1794 else if (err
== -EINVAL
) {
1795 status
= nfserr_attrnotsupp
;
1797 } else if (err
!= 0)
1801 if ((buflen
-= 16) < 0)
1804 if (unlikely(bmval2
)) {
1809 } else if (likely(bmval1
)) {
1817 attrlenp
= p
++; /* to be backfilled later */
1819 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
1820 u32 word0
= nfsd_suppattrs0(minorversion
);
1821 u32 word1
= nfsd_suppattrs1(minorversion
);
1822 u32 word2
= nfsd_suppattrs2(minorversion
);
1824 if ((buflen
-= 12) < 0)
1827 word0
&= ~FATTR4_WORD0_ACL
;
1839 if (bmval0
& FATTR4_WORD0_TYPE
) {
1840 if ((buflen
-= 4) < 0)
1842 dummy
= nfs4_ftypes
[(stat
.mode
& S_IFMT
) >> 12];
1843 if (dummy
== NF4BAD
)
1844 goto out_serverfault
;
1847 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
1848 if ((buflen
-= 4) < 0)
1850 if (exp
->ex_flags
& NFSEXP_NOSUBTREECHECK
)
1851 WRITE32(NFS4_FH_PERSISTENT
);
1853 WRITE32(NFS4_FH_PERSISTENT
|NFS4_FH_VOL_RENAME
);
1855 if (bmval0
& FATTR4_WORD0_CHANGE
) {
1856 if ((buflen
-= 8) < 0)
1858 write_change(&p
, &stat
, dentry
->d_inode
);
1860 if (bmval0
& FATTR4_WORD0_SIZE
) {
1861 if ((buflen
-= 8) < 0)
1865 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
1866 if ((buflen
-= 4) < 0)
1870 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
1871 if ((buflen
-= 4) < 0)
1875 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
1876 if ((buflen
-= 4) < 0)
1880 if (bmval0
& FATTR4_WORD0_FSID
) {
1881 if ((buflen
-= 16) < 0)
1883 if (exp
->ex_fslocs
.migrated
) {
1884 WRITE64(NFS4_REFERRAL_FSID_MAJOR
);
1885 WRITE64(NFS4_REFERRAL_FSID_MINOR
);
1886 } else switch(fsid_source(fhp
)) {
1887 case FSIDSOURCE_FSID
:
1888 WRITE64((u64
)exp
->ex_fsid
);
1891 case FSIDSOURCE_DEV
:
1893 WRITE32(MAJOR(stat
.dev
));
1895 WRITE32(MINOR(stat
.dev
));
1897 case FSIDSOURCE_UUID
:
1898 WRITEMEM(exp
->ex_uuid
, 16);
1902 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
1903 if ((buflen
-= 4) < 0)
1907 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
1908 if ((buflen
-= 4) < 0)
1910 WRITE32(NFSD_LEASE_TIME
);
1912 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
1913 if ((buflen
-= 4) < 0)
1915 WRITE32(rdattr_err
);
1917 if (bmval0
& FATTR4_WORD0_ACL
) {
1918 struct nfs4_ace
*ace
;
1921 if ((buflen
-= 4) < 0)
1927 if ((buflen
-= 4) < 0)
1929 WRITE32(acl
->naces
);
1931 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
1932 if ((buflen
-= 4*3) < 0)
1936 WRITE32(ace
->access_mask
& NFS4_ACE_MASK_ALL
);
1937 status
= nfsd4_encode_aclname(rqstp
, ace
->whotype
,
1938 ace
->who
, ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
,
1940 if (status
== nfserr_resource
)
1947 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
1948 if ((buflen
-= 4) < 0)
1950 WRITE32(aclsupport
?
1951 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
1953 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
1954 if ((buflen
-= 4) < 0)
1958 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
1959 if ((buflen
-= 4) < 0)
1963 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
1964 if ((buflen
-= 4) < 0)
1968 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
1969 if ((buflen
-= 4) < 0)
1973 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
1974 buflen
-= (XDR_QUADLEN(fhp
->fh_handle
.fh_size
) << 2) + 4;
1977 WRITE32(fhp
->fh_handle
.fh_size
);
1978 WRITEMEM(&fhp
->fh_handle
.fh_base
, fhp
->fh_handle
.fh_size
);
1980 if (bmval0
& FATTR4_WORD0_FILEID
) {
1981 if ((buflen
-= 8) < 0)
1985 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
1986 if ((buflen
-= 8) < 0)
1988 WRITE64((u64
) statfs
.f_ffree
);
1990 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
1991 if ((buflen
-= 8) < 0)
1993 WRITE64((u64
) statfs
.f_ffree
);
1995 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
1996 if ((buflen
-= 8) < 0)
1998 WRITE64((u64
) statfs
.f_files
);
2000 if (bmval0
& FATTR4_WORD0_FS_LOCATIONS
) {
2001 status
= nfsd4_encode_fs_locations(rqstp
, exp
, &p
, &buflen
);
2002 if (status
== nfserr_resource
)
2007 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
2008 if ((buflen
-= 4) < 0)
2012 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
2013 if ((buflen
-= 8) < 0)
2017 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
2018 if ((buflen
-= 4) < 0)
2022 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
2023 if ((buflen
-= 4) < 0)
2025 WRITE32(statfs
.f_namelen
);
2027 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
2028 if ((buflen
-= 8) < 0)
2030 WRITE64((u64
) svc_max_payload(rqstp
));
2032 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
2033 if ((buflen
-= 8) < 0)
2035 WRITE64((u64
) svc_max_payload(rqstp
));
2037 if (bmval1
& FATTR4_WORD1_MODE
) {
2038 if ((buflen
-= 4) < 0)
2040 WRITE32(stat
.mode
& S_IALLUGO
);
2042 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
2043 if ((buflen
-= 4) < 0)
2047 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
2048 if ((buflen
-= 4) < 0)
2050 WRITE32(stat
.nlink
);
2052 if (bmval1
& FATTR4_WORD1_OWNER
) {
2053 status
= nfsd4_encode_user(rqstp
, stat
.uid
, &p
, &buflen
);
2054 if (status
== nfserr_resource
)
2059 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
2060 status
= nfsd4_encode_group(rqstp
, stat
.gid
, &p
, &buflen
);
2061 if (status
== nfserr_resource
)
2066 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
2067 if ((buflen
-= 8) < 0)
2069 WRITE32((u32
) MAJOR(stat
.rdev
));
2070 WRITE32((u32
) MINOR(stat
.rdev
));
2072 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
2073 if ((buflen
-= 8) < 0)
2075 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
2078 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
2079 if ((buflen
-= 8) < 0)
2081 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
2084 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
2085 if ((buflen
-= 8) < 0)
2087 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
2090 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
2091 if ((buflen
-= 8) < 0)
2093 dummy64
= (u64
)stat
.blocks
<< 9;
2096 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
2097 if ((buflen
-= 12) < 0)
2100 WRITE32(stat
.atime
.tv_sec
);
2101 WRITE32(stat
.atime
.tv_nsec
);
2103 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
2104 if ((buflen
-= 12) < 0)
2110 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
2111 if ((buflen
-= 12) < 0)
2114 WRITE32(stat
.ctime
.tv_sec
);
2115 WRITE32(stat
.ctime
.tv_nsec
);
2117 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
2118 if ((buflen
-= 12) < 0)
2121 WRITE32(stat
.mtime
.tv_sec
);
2122 WRITE32(stat
.mtime
.tv_nsec
);
2124 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
2125 if ((buflen
-= 8) < 0)
2128 * Get parent's attributes if not ignoring crossmount
2129 * and this is the root of a cross-mounted filesystem.
2131 if (ignore_crossmnt
== 0 &&
2132 exp
->ex_path
.mnt
->mnt_root
->d_inode
== dentry
->d_inode
) {
2133 err
= vfs_getattr(exp
->ex_path
.mnt
->mnt_parent
,
2134 exp
->ex_path
.mnt
->mnt_mountpoint
, &stat
);
2140 if (bmval2
& FATTR4_WORD2_SUPPATTR_EXCLCREAT
) {
2142 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0
);
2143 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1
);
2144 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2
);
2147 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2148 *countp
= p
- buffer
;
2157 status
= nfserrno(err
);
2161 status
= nfserr_resource
;
2164 status
= nfserr_serverfault
;
2168 static inline int attributes_need_mount(u32
*bmval
)
2170 if (bmval
[0] & ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_LEASE_TIME
))
2172 if (bmval
[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID
)
2178 nfsd4_encode_dirent_fattr(struct nfsd4_readdir
*cd
,
2179 const char *name
, int namlen
, __be32
*p
, int *buflen
)
2181 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
2182 struct dentry
*dentry
;
2184 int ignore_crossmnt
= 0;
2186 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
2188 return nfserrno(PTR_ERR(dentry
));
2189 if (!dentry
->d_inode
) {
2191 * nfsd_buffered_readdir drops the i_mutex between
2192 * readdir and calling this callback, leaving a window
2193 * where this directory entry could have gone away.
2196 return nfserr_noent
;
2201 * In the case of a mountpoint, the client may be asking for
2202 * attributes that are only properties of the underlying filesystem
2203 * as opposed to the cross-mounted file system. In such a case,
2204 * we will not follow the cross mount and will fill the attribtutes
2205 * directly from the mountpoint dentry.
2207 if (d_mountpoint(dentry
) && !attributes_need_mount(cd
->rd_bmval
))
2208 ignore_crossmnt
= 1;
2209 else if (d_mountpoint(dentry
)) {
2213 * Why the heck aren't we just using nfsd_lookup??
2214 * Different "."/".." handling? Something else?
2215 * At least, add a comment here to explain....
2217 err
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
, &exp
);
2219 nfserr
= nfserrno(err
);
2222 nfserr
= check_nfsd_access(exp
, cd
->rd_rqstp
);
2227 nfserr
= nfsd4_encode_fattr(NULL
, exp
, dentry
, p
, buflen
, cd
->rd_bmval
,
2228 cd
->rd_rqstp
, ignore_crossmnt
);
2236 nfsd4_encode_rdattr_error(__be32
*p
, int buflen
, __be32 nfserr
)
2243 *p
++ = htonl(FATTR4_WORD0_RDATTR_ERROR
); /* bmval0 */
2244 *p
++ = htonl(0); /* bmval1 */
2247 *p
++ = nfserr
; /* no htonl */
2248 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2253 nfsd4_encode_dirent(void *ccdv
, const char *name
, int namlen
,
2254 loff_t offset
, u64 ino
, unsigned int d_type
)
2256 struct readdir_cd
*ccd
= ccdv
;
2257 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
2259 __be32
*p
= cd
->buffer
;
2261 __be32 nfserr
= nfserr_toosmall
;
2263 /* In nfsv4, "." and ".." never make it onto the wire.. */
2264 if (name
&& isdotent(name
, namlen
)) {
2265 cd
->common
.err
= nfs_ok
;
2270 xdr_encode_hyper(cd
->offset
, (u64
) offset
);
2272 buflen
= cd
->buflen
- 4 - XDR_QUADLEN(namlen
);
2276 *p
++ = xdr_one
; /* mark entry present */
2278 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
2279 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
2281 nfserr
= nfsd4_encode_dirent_fattr(cd
, name
, namlen
, p
, &buflen
);
2286 case nfserr_resource
:
2287 nfserr
= nfserr_toosmall
;
2295 * If the client requested the RDATTR_ERROR attribute,
2296 * we stuff the error code into this attribute
2297 * and continue. If this attribute was not requested,
2298 * then in accordance with the spec, we fail the
2299 * entire READDIR operation(!)
2301 if (!(cd
->rd_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
))
2303 p
= nfsd4_encode_rdattr_error(p
, buflen
, nfserr
);
2305 nfserr
= nfserr_toosmall
;
2309 cd
->buflen
-= (p
- cd
->buffer
);
2311 cd
->offset
= cookiep
;
2313 cd
->common
.err
= nfs_ok
;
2316 cd
->common
.err
= nfserr
;
2321 nfsd4_encode_stateid(struct nfsd4_compoundres
*resp
, stateid_t
*sid
)
2325 RESERVE_SPACE(sizeof(stateid_t
));
2326 WRITE32(sid
->si_generation
);
2327 WRITEMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
2332 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_access
*access
)
2338 WRITE32(access
->ac_supported
);
2339 WRITE32(access
->ac_resp_access
);
2346 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_close
*close
)
2348 ENCODE_SEQID_OP_HEAD
;
2351 nfsd4_encode_stateid(resp
, &close
->cl_stateid
);
2353 ENCODE_SEQID_OP_TAIL(close
->cl_stateowner
);
2359 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_commit
*commit
)
2365 WRITEMEM(commit
->co_verf
.data
, 8);
2372 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_create
*create
)
2378 write_cinfo(&p
, &create
->cr_cinfo
);
2380 WRITE32(create
->cr_bmval
[0]);
2381 WRITE32(create
->cr_bmval
[1]);
2388 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_getattr
*getattr
)
2390 struct svc_fh
*fhp
= getattr
->ga_fhp
;
2396 buflen
= resp
->end
- resp
->p
- (COMPOUND_ERR_SLACK_SPACE
>> 2);
2397 nfserr
= nfsd4_encode_fattr(fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
2398 resp
->p
, &buflen
, getattr
->ga_bmval
,
2406 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct svc_fh
**fhpp
)
2408 struct svc_fh
*fhp
= *fhpp
;
2413 len
= fhp
->fh_handle
.fh_size
;
2414 RESERVE_SPACE(len
+ 4);
2416 WRITEMEM(&fhp
->fh_handle
.fh_base
, len
);
2423 * Including all fields other than the name, a LOCK4denied structure requires
2424 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2427 nfsd4_encode_lock_denied(struct nfsd4_compoundres
*resp
, struct nfsd4_lock_denied
*ld
)
2431 RESERVE_SPACE(32 + XDR_LEN(ld
->ld_sop
? ld
->ld_sop
->so_owner
.len
: 0));
2432 WRITE64(ld
->ld_start
);
2433 WRITE64(ld
->ld_length
);
2434 WRITE32(ld
->ld_type
);
2436 WRITEMEM(&ld
->ld_clientid
, 8);
2437 WRITE32(ld
->ld_sop
->so_owner
.len
);
2438 WRITEMEM(ld
->ld_sop
->so_owner
.data
, ld
->ld_sop
->so_owner
.len
);
2439 kref_put(&ld
->ld_sop
->so_ref
, nfs4_free_stateowner
);
2440 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2441 WRITE64((u64
)0); /* clientid */
2442 WRITE32(0); /* length of owner name */
2448 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lock
*lock
)
2450 ENCODE_SEQID_OP_HEAD
;
2453 nfsd4_encode_stateid(resp
, &lock
->lk_resp_stateid
);
2454 else if (nfserr
== nfserr_denied
)
2455 nfsd4_encode_lock_denied(resp
, &lock
->lk_denied
);
2457 ENCODE_SEQID_OP_TAIL(lock
->lk_replay_owner
);
2462 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lockt
*lockt
)
2464 if (nfserr
== nfserr_denied
)
2465 nfsd4_encode_lock_denied(resp
, &lockt
->lt_denied
);
2470 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_locku
*locku
)
2472 ENCODE_SEQID_OP_HEAD
;
2475 nfsd4_encode_stateid(resp
, &locku
->lu_stateid
);
2477 ENCODE_SEQID_OP_TAIL(locku
->lu_stateowner
);
2483 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_link
*link
)
2489 write_cinfo(&p
, &link
->li_cinfo
);
2497 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open
*open
)
2500 ENCODE_SEQID_OP_HEAD
;
2505 nfsd4_encode_stateid(resp
, &open
->op_stateid
);
2507 write_cinfo(&p
, &open
->op_cinfo
);
2508 WRITE32(open
->op_rflags
);
2510 WRITE32(open
->op_bmval
[0]);
2511 WRITE32(open
->op_bmval
[1]);
2512 WRITE32(open
->op_delegate_type
);
2515 switch (open
->op_delegate_type
) {
2516 case NFS4_OPEN_DELEGATE_NONE
:
2518 case NFS4_OPEN_DELEGATE_READ
:
2519 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2521 WRITE32(open
->op_recall
);
2524 * TODO: ACE's in delegations
2526 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2529 WRITE32(0); /* XXX: is NULL principal ok? */
2532 case NFS4_OPEN_DELEGATE_WRITE
:
2533 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2538 * TODO: space_limit's in delegations
2540 WRITE32(NFS4_LIMIT_SIZE
);
2545 * TODO: ACE's in delegations
2547 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2550 WRITE32(0); /* XXX: is NULL principal ok? */
2556 /* XXX save filehandle here */
2558 ENCODE_SEQID_OP_TAIL(open
->op_stateowner
);
2563 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_confirm
*oc
)
2565 ENCODE_SEQID_OP_HEAD
;
2568 nfsd4_encode_stateid(resp
, &oc
->oc_resp_stateid
);
2570 ENCODE_SEQID_OP_TAIL(oc
->oc_stateowner
);
2575 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_downgrade
*od
)
2577 ENCODE_SEQID_OP_HEAD
;
2580 nfsd4_encode_stateid(resp
, &od
->od_stateid
);
2582 ENCODE_SEQID_OP_TAIL(od
->od_stateowner
);
2587 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
2588 struct nfsd4_read
*read
)
2592 unsigned long maxcount
;
2598 if (resp
->xbuf
->page_len
)
2599 return nfserr_resource
;
2601 RESERVE_SPACE(8); /* eof flag and byte count */
2603 maxcount
= svc_max_payload(resp
->rqstp
);
2604 if (maxcount
> read
->rd_length
)
2605 maxcount
= read
->rd_length
;
2610 pn
= resp
->rqstp
->rq_resused
++;
2611 resp
->rqstp
->rq_vec
[v
].iov_base
=
2612 page_address(resp
->rqstp
->rq_respages
[pn
]);
2613 resp
->rqstp
->rq_vec
[v
].iov_len
=
2614 len
< PAGE_SIZE
? len
: PAGE_SIZE
;
2620 nfserr
= nfsd_read(read
->rd_rqstp
, read
->rd_fhp
, read
->rd_filp
,
2621 read
->rd_offset
, resp
->rqstp
->rq_vec
, read
->rd_vlen
,
2624 if (nfserr
== nfserr_symlink
)
2625 nfserr
= nfserr_inval
;
2628 eof
= (read
->rd_offset
+ maxcount
>=
2629 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
2634 resp
->xbuf
->head
[0].iov_len
= (char*)p
2635 - (char*)resp
->xbuf
->head
[0].iov_base
;
2636 resp
->xbuf
->page_len
= maxcount
;
2638 /* Use rest of head for padding and remaining ops: */
2639 resp
->xbuf
->tail
[0].iov_base
= p
;
2640 resp
->xbuf
->tail
[0].iov_len
= 0;
2644 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2645 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2652 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readlink
*readlink
)
2660 if (resp
->xbuf
->page_len
)
2661 return nfserr_resource
;
2663 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
2665 maxcount
= PAGE_SIZE
;
2669 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2670 * if they would overflow the buffer. Is this kosher in NFSv4? If
2671 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2672 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2674 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
, page
, &maxcount
);
2675 if (nfserr
== nfserr_isdir
)
2676 return nfserr_inval
;
2682 resp
->xbuf
->head
[0].iov_len
= (char*)p
2683 - (char*)resp
->xbuf
->head
[0].iov_base
;
2684 resp
->xbuf
->page_len
= maxcount
;
2686 /* Use rest of head for padding and remaining ops: */
2687 resp
->xbuf
->tail
[0].iov_base
= p
;
2688 resp
->xbuf
->tail
[0].iov_len
= 0;
2692 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2693 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2700 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readdir
*readdir
)
2704 __be32
*page
, *savep
, *tailbase
;
2709 if (resp
->xbuf
->page_len
)
2710 return nfserr_resource
;
2712 RESERVE_SPACE(8); /* verifier */
2715 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2719 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
2722 maxcount
= PAGE_SIZE
;
2723 if (maxcount
> readdir
->rd_maxcount
)
2724 maxcount
= readdir
->rd_maxcount
;
2727 * Convert from bytes to words, account for the two words already
2728 * written, make sure to leave two words at the end for the next
2729 * pointer and eof field.
2731 maxcount
= (maxcount
>> 2) - 4;
2733 nfserr
= nfserr_toosmall
;
2737 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
2738 readdir
->common
.err
= 0;
2739 readdir
->buflen
= maxcount
;
2740 readdir
->buffer
= page
;
2741 readdir
->offset
= NULL
;
2743 offset
= readdir
->rd_cookie
;
2744 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
2746 &readdir
->common
, nfsd4_encode_dirent
);
2747 if (nfserr
== nfs_ok
&&
2748 readdir
->common
.err
== nfserr_toosmall
&&
2749 readdir
->buffer
== page
)
2750 nfserr
= nfserr_toosmall
;
2751 if (nfserr
== nfserr_symlink
)
2752 nfserr
= nfserr_notdir
;
2756 if (readdir
->offset
)
2757 xdr_encode_hyper(readdir
->offset
, offset
);
2759 p
= readdir
->buffer
;
2760 *p
++ = 0; /* no more entries */
2761 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
2762 resp
->xbuf
->page_len
= ((char*)p
) - (char*)page_address(
2763 resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2765 /* Use rest of head for padding and remaining ops: */
2766 resp
->xbuf
->tail
[0].iov_base
= tailbase
;
2767 resp
->xbuf
->tail
[0].iov_len
= 0;
2768 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
2769 resp
->end
= resp
->p
+ (PAGE_SIZE
- resp
->xbuf
->head
[0].iov_len
)/4;
2779 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_remove
*remove
)
2785 write_cinfo(&p
, &remove
->rm_cinfo
);
2792 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_rename
*rename
)
2798 write_cinfo(&p
, &rename
->rn_sinfo
);
2799 write_cinfo(&p
, &rename
->rn_tinfo
);
2806 nfsd4_encode_secinfo(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
2807 struct nfsd4_secinfo
*secinfo
)
2810 struct svc_export
*exp
= secinfo
->si_exp
;
2812 struct exp_flavor_info
*flavs
;
2813 struct exp_flavor_info def_flavs
[2];
2818 if (exp
->ex_nflavors
) {
2819 flavs
= exp
->ex_flavors
;
2820 nflavs
= exp
->ex_nflavors
;
2821 } else { /* Handling of some defaults in absence of real secinfo: */
2823 if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_UNIX
) {
2825 flavs
[0].pseudoflavor
= RPC_AUTH_UNIX
;
2826 flavs
[1].pseudoflavor
= RPC_AUTH_NULL
;
2827 } else if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_GSS
) {
2829 flavs
[0].pseudoflavor
2830 = svcauth_gss_flavor(exp
->ex_client
);
2833 flavs
[0].pseudoflavor
2834 = exp
->ex_client
->flavour
->flavour
;
2841 for (i
= 0; i
< nflavs
; i
++) {
2842 u32 flav
= flavs
[i
].pseudoflavor
;
2843 struct gss_api_mech
*gm
= gss_mech_get_by_pseudoflavor(flav
);
2847 WRITE32(RPC_AUTH_GSS
);
2849 RESERVE_SPACE(4 + gm
->gm_oid
.len
);
2850 WRITE32(gm
->gm_oid
.len
);
2851 WRITEMEM(gm
->gm_oid
.data
, gm
->gm_oid
.len
);
2854 WRITE32(0); /* qop */
2857 WRITE32(gss_pseudoflavor_to_service(gm
, flav
));
2873 * The SETATTR encode routine is special -- it always encodes a bitmap,
2874 * regardless of the error status.
2877 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setattr
*setattr
)
2889 WRITE32(setattr
->sa_bmval
[0]);
2890 WRITE32(setattr
->sa_bmval
[1]);
2897 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setclientid
*scd
)
2902 RESERVE_SPACE(8 + sizeof(nfs4_verifier
));
2903 WRITEMEM(&scd
->se_clientid
, 8);
2904 WRITEMEM(&scd
->se_confirm
, sizeof(nfs4_verifier
));
2907 else if (nfserr
== nfserr_clid_inuse
) {
2917 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_write
*write
)
2923 WRITE32(write
->wr_bytes_written
);
2924 WRITE32(write
->wr_how_written
);
2925 WRITEMEM(write
->wr_verifier
.data
, 8);
2932 nfsd4_encode_exchange_id(struct nfsd4_compoundres
*resp
, int nfserr
,
2933 struct nfsd4_exchange_id
*exid
)
2939 int server_scope_sz
;
2940 uint64_t minor_id
= 0;
2945 major_id
= utsname()->nodename
;
2946 major_id_sz
= strlen(major_id
);
2947 server_scope
= utsname()->nodename
;
2948 server_scope_sz
= strlen(server_scope
);
2951 8 /* eir_clientid */ +
2952 4 /* eir_sequenceid */ +
2954 4 /* spr_how (SP4_NONE) */ +
2955 8 /* so_minor_id */ +
2956 4 /* so_major_id.len */ +
2957 (XDR_QUADLEN(major_id_sz
) * 4) +
2958 4 /* eir_server_scope.len */ +
2959 (XDR_QUADLEN(server_scope_sz
) * 4) +
2960 4 /* eir_server_impl_id.count (0) */);
2962 WRITEMEM(&exid
->clientid
, 8);
2963 WRITE32(exid
->seqid
);
2964 WRITE32(exid
->flags
);
2966 /* state_protect4_r. Currently only support SP4_NONE */
2967 BUG_ON(exid
->spa_how
!= SP4_NONE
);
2968 WRITE32(exid
->spa_how
);
2970 /* The server_owner struct */
2971 WRITE64(minor_id
); /* Minor id */
2973 WRITE32(major_id_sz
);
2974 WRITEMEM(major_id
, major_id_sz
);
2977 WRITE32(server_scope_sz
);
2978 WRITEMEM(server_scope
, server_scope_sz
);
2980 /* Implementation id */
2981 WRITE32(0); /* zero length nfs_impl_id4 array */
2987 nfsd4_encode_create_session(struct nfsd4_compoundres
*resp
, int nfserr
,
2988 struct nfsd4_create_session
*sess
)
2996 WRITEMEM(sess
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
2997 WRITE32(sess
->seqid
);
2998 WRITE32(sess
->flags
);
3002 WRITE32(0); /* headerpadsz */
3003 WRITE32(sess
->fore_channel
.maxreq_sz
);
3004 WRITE32(sess
->fore_channel
.maxresp_sz
);
3005 WRITE32(sess
->fore_channel
.maxresp_cached
);
3006 WRITE32(sess
->fore_channel
.maxops
);
3007 WRITE32(sess
->fore_channel
.maxreqs
);
3008 WRITE32(sess
->fore_channel
.nr_rdma_attrs
);
3011 if (sess
->fore_channel
.nr_rdma_attrs
) {
3013 WRITE32(sess
->fore_channel
.rdma_attrs
);
3018 WRITE32(0); /* headerpadsz */
3019 WRITE32(sess
->back_channel
.maxreq_sz
);
3020 WRITE32(sess
->back_channel
.maxresp_sz
);
3021 WRITE32(sess
->back_channel
.maxresp_cached
);
3022 WRITE32(sess
->back_channel
.maxops
);
3023 WRITE32(sess
->back_channel
.maxreqs
);
3024 WRITE32(sess
->back_channel
.nr_rdma_attrs
);
3027 if (sess
->back_channel
.nr_rdma_attrs
) {
3029 WRITE32(sess
->back_channel
.rdma_attrs
);
3036 nfsd4_encode_destroy_session(struct nfsd4_compoundres
*resp
, int nfserr
,
3037 struct nfsd4_destroy_session
*destroy_session
)
3043 nfsd4_encode_sequence(struct nfsd4_compoundres
*resp
, int nfserr
,
3044 struct nfsd4_sequence
*seq
)
3051 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN
+ 20);
3052 WRITEMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
3053 WRITE32(seq
->seqid
);
3054 WRITE32(seq
->slotid
);
3055 WRITE32(seq
->maxslots
);
3058 * target_maxslots = maxslots
3061 WRITE32(seq
->maxslots
);
3065 resp
->cstate
.datap
= p
; /* DRC cache data pointer */
3070 nfsd4_encode_noop(struct nfsd4_compoundres
*resp
, __be32 nfserr
, void *p
)
3075 typedef __be32(* nfsd4_enc
)(struct nfsd4_compoundres
*, __be32
, void *);
3078 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3079 * since we don't need to filter out obsolete ops as this is
3080 * done in the decoding phase.
3082 static nfsd4_enc nfsd4_enc_ops
[] = {
3083 [OP_ACCESS
] = (nfsd4_enc
)nfsd4_encode_access
,
3084 [OP_CLOSE
] = (nfsd4_enc
)nfsd4_encode_close
,
3085 [OP_COMMIT
] = (nfsd4_enc
)nfsd4_encode_commit
,
3086 [OP_CREATE
] = (nfsd4_enc
)nfsd4_encode_create
,
3087 [OP_DELEGPURGE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3088 [OP_DELEGRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3089 [OP_GETATTR
] = (nfsd4_enc
)nfsd4_encode_getattr
,
3090 [OP_GETFH
] = (nfsd4_enc
)nfsd4_encode_getfh
,
3091 [OP_LINK
] = (nfsd4_enc
)nfsd4_encode_link
,
3092 [OP_LOCK
] = (nfsd4_enc
)nfsd4_encode_lock
,
3093 [OP_LOCKT
] = (nfsd4_enc
)nfsd4_encode_lockt
,
3094 [OP_LOCKU
] = (nfsd4_enc
)nfsd4_encode_locku
,
3095 [OP_LOOKUP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3096 [OP_LOOKUPP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3097 [OP_NVERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3098 [OP_OPEN
] = (nfsd4_enc
)nfsd4_encode_open
,
3099 [OP_OPENATTR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3100 [OP_OPEN_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_open_confirm
,
3101 [OP_OPEN_DOWNGRADE
] = (nfsd4_enc
)nfsd4_encode_open_downgrade
,
3102 [OP_PUTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3103 [OP_PUTPUBFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3104 [OP_PUTROOTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3105 [OP_READ
] = (nfsd4_enc
)nfsd4_encode_read
,
3106 [OP_READDIR
] = (nfsd4_enc
)nfsd4_encode_readdir
,
3107 [OP_READLINK
] = (nfsd4_enc
)nfsd4_encode_readlink
,
3108 [OP_REMOVE
] = (nfsd4_enc
)nfsd4_encode_remove
,
3109 [OP_RENAME
] = (nfsd4_enc
)nfsd4_encode_rename
,
3110 [OP_RENEW
] = (nfsd4_enc
)nfsd4_encode_noop
,
3111 [OP_RESTOREFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3112 [OP_SAVEFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3113 [OP_SECINFO
] = (nfsd4_enc
)nfsd4_encode_secinfo
,
3114 [OP_SETATTR
] = (nfsd4_enc
)nfsd4_encode_setattr
,
3115 [OP_SETCLIENTID
] = (nfsd4_enc
)nfsd4_encode_setclientid
,
3116 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_noop
,
3117 [OP_VERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3118 [OP_WRITE
] = (nfsd4_enc
)nfsd4_encode_write
,
3119 [OP_RELEASE_LOCKOWNER
] = (nfsd4_enc
)nfsd4_encode_noop
,
3121 /* NFSv4.1 operations */
3122 [OP_BACKCHANNEL_CTL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3123 [OP_BIND_CONN_TO_SESSION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3124 [OP_EXCHANGE_ID
] = (nfsd4_enc
)nfsd4_encode_exchange_id
,
3125 [OP_CREATE_SESSION
] = (nfsd4_enc
)nfsd4_encode_create_session
,
3126 [OP_DESTROY_SESSION
] = (nfsd4_enc
)nfsd4_encode_destroy_session
,
3127 [OP_FREE_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3128 [OP_GET_DIR_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3129 [OP_GETDEVICEINFO
] = (nfsd4_enc
)nfsd4_encode_noop
,
3130 [OP_GETDEVICELIST
] = (nfsd4_enc
)nfsd4_encode_noop
,
3131 [OP_LAYOUTCOMMIT
] = (nfsd4_enc
)nfsd4_encode_noop
,
3132 [OP_LAYOUTGET
] = (nfsd4_enc
)nfsd4_encode_noop
,
3133 [OP_LAYOUTRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3134 [OP_SECINFO_NO_NAME
] = (nfsd4_enc
)nfsd4_encode_noop
,
3135 [OP_SEQUENCE
] = (nfsd4_enc
)nfsd4_encode_sequence
,
3136 [OP_SET_SSV
] = (nfsd4_enc
)nfsd4_encode_noop
,
3137 [OP_TEST_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3138 [OP_WANT_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3139 [OP_DESTROY_CLIENTID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3140 [OP_RECLAIM_COMPLETE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3144 * Calculate the total amount of memory that the compound response has taken
3145 * after encoding the current operation.
3147 * pad: add on 8 bytes for the next operation's op_code and status so that
3148 * there is room to cache a failure on the next operation.
3150 * Compare this length to the session se_fmaxresp_cached.
3152 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3153 * will be at least a page and will therefore hold the xdr_buf head.
3155 static int nfsd4_check_drc_limit(struct nfsd4_compoundres
*resp
)
3158 struct xdr_buf
*xb
= &resp
->rqstp
->rq_res
;
3159 struct nfsd4_compoundargs
*args
= resp
->rqstp
->rq_argp
;
3160 struct nfsd4_session
*session
= NULL
;
3161 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3162 u32 length
, tlen
= 0, pad
= 8;
3164 if (!nfsd4_has_session(&resp
->cstate
))
3167 session
= resp
->cstate
.session
;
3168 if (session
== NULL
|| slot
->sl_cachethis
== 0)
3171 if (resp
->opcnt
>= args
->opcnt
)
3172 pad
= 0; /* this is the last operation */
3174 if (xb
->page_len
== 0) {
3175 length
= (char *)resp
->p
- (char *)xb
->head
[0].iov_base
+ pad
;
3177 if (xb
->tail
[0].iov_base
&& xb
->tail
[0].iov_len
> 0)
3178 tlen
= (char *)resp
->p
- (char *)xb
->tail
[0].iov_base
;
3180 length
= xb
->head
[0].iov_len
+ xb
->page_len
+ tlen
+ pad
;
3182 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__
,
3183 length
, xb
->page_len
, tlen
, pad
);
3185 if (length
<= session
->se_fchannel
.maxresp_cached
)
3188 return nfserr_rep_too_big_to_cache
;
3192 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3199 statp
= p
++; /* to be backfilled at the end */
3202 if (op
->opnum
== OP_ILLEGAL
)
3204 BUG_ON(op
->opnum
< 0 || op
->opnum
>= ARRAY_SIZE(nfsd4_enc_ops
) ||
3205 !nfsd4_enc_ops
[op
->opnum
]);
3206 op
->status
= nfsd4_enc_ops
[op
->opnum
](resp
, op
->status
, &op
->u
);
3207 /* nfsd4_check_drc_limit guarantees enough room for error status */
3208 if (!op
->status
&& nfsd4_check_drc_limit(resp
))
3209 op
->status
= nfserr_rep_too_big_to_cache
;
3212 * Note: We write the status directly, instead of using WRITE32(),
3213 * since it is already in network byte order.
3215 *statp
= op
->status
;
3219 * Encode the reply stored in the stateowner reply cache
3221 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3222 * previously sent already encoded operation.
3224 * called with nfs4_lock_state() held
3227 nfsd4_encode_replay(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3230 struct nfs4_replay
*rp
= op
->replay
;
3236 *p
++ = rp
->rp_status
; /* already xdr'ed */
3239 RESERVE_SPACE(rp
->rp_buflen
);
3240 WRITEMEM(rp
->rp_buf
, rp
->rp_buflen
);
3245 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
3247 return xdr_ressize_check(rqstp
, p
);
3250 void nfsd4_release_compoundargs(struct nfsd4_compoundargs
*args
)
3252 if (args
->ops
!= args
->iops
) {
3254 args
->ops
= args
->iops
;
3258 while (args
->to_free
) {
3259 struct tmpbuf
*tb
= args
->to_free
;
3260 args
->to_free
= tb
->next
;
3261 tb
->release(tb
->buf
);
3267 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundargs
*args
)
3272 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
3273 args
->pagelist
= rqstp
->rq_arg
.pages
;
3274 args
->pagelen
= rqstp
->rq_arg
.page_len
;
3276 args
->to_free
= NULL
;
3277 args
->ops
= args
->iops
;
3278 args
->rqstp
= rqstp
;
3280 status
= nfsd4_decode_compound(args
);
3282 nfsd4_release_compoundargs(args
);
3288 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundres
*resp
)
3291 * All that remains is to write the tag and operation count...
3293 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
3296 *p
++ = htonl(resp
->taglen
);
3297 memcpy(p
, resp
->tag
, resp
->taglen
);
3298 p
+= XDR_QUADLEN(resp
->taglen
);
3299 *p
++ = htonl(resp
->opcnt
);
3301 if (rqstp
->rq_res
.page_len
)
3302 iov
= &rqstp
->rq_res
.tail
[0];
3304 iov
= &rqstp
->rq_res
.head
[0];
3305 iov
->iov_len
= ((char*)resp
->p
) - (char*)iov
->iov_base
;
3306 BUG_ON(iov
->iov_len
> PAGE_SIZE
);
3307 if (nfsd4_has_session(cs
) && cs
->status
!= nfserr_replay_cache
) {
3308 nfsd4_store_cache_entry(resp
);
3309 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__
);
3310 resp
->cstate
.slot
->sl_inuse
= false;
3311 nfsd4_put_session(resp
->cstate
.session
);