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/nfsd_idmap.h>
48 #include <linux/nfs4_acl.h>
49 #include <linux/sunrpc/svcauth_gss.h>
54 #define NFSDDBG_FACILITY NFSDDBG_XDR
57 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
58 * directory in order to indicate to the client that a filesystem boundary is present
59 * We use a fixed fsid for a referral
61 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
62 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
65 check_filename(char *str
, int len
, __be32 err
)
71 if (isdotent(str
, len
))
73 for (i
= 0; i
< len
; i
++)
87 dprintk("NFSD: xdr error (%s:%d)\n", \
88 __FILE__, __LINE__); \
89 status = nfserr_bad_xdr; \
92 #define READ32(x) (x) = ntohl(*p++)
93 #define READ64(x) do { \
94 (x) = (u64)ntohl(*p++) << 32; \
97 #define READTIME(x) do { \
102 #define READMEM(x,nbytes) do { \
104 p += XDR_QUADLEN(nbytes); \
106 #define SAVEMEM(x,nbytes) do { \
107 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
108 savemem(argp, p, nbytes) : \
110 dprintk("NFSD: xdr error (%s:%d)\n", \
111 __FILE__, __LINE__); \
114 p += XDR_QUADLEN(nbytes); \
116 #define COPYMEM(x,nbytes) do { \
117 memcpy((x), p, nbytes); \
118 p += XDR_QUADLEN(nbytes); \
121 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
122 #define READ_BUF(nbytes) do { \
123 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
125 argp->p += XDR_QUADLEN(nbytes); \
126 } else if (!(p = read_buf(argp, nbytes))) { \
127 dprintk("NFSD: xdr error (%s:%d)\n", \
128 __FILE__, __LINE__); \
133 static __be32
*read_buf(struct nfsd4_compoundargs
*argp
, u32 nbytes
)
135 /* We want more bytes than seem to be available.
136 * Maybe we need a new page, maybe we have just run out
138 unsigned int avail
= (char *)argp
->end
- (char *)argp
->p
;
140 if (avail
+ argp
->pagelen
< nbytes
)
142 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
144 /* ok, we can do it with the current plus the next page */
145 if (nbytes
<= sizeof(argp
->tmp
))
149 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
155 * The following memcpy is safe because read_buf is always
156 * called with nbytes > avail, and the two cases above both
157 * guarantee p points to at least nbytes bytes.
159 memcpy(p
, argp
->p
, avail
);
160 /* step to next page */
161 argp
->p
= page_address(argp
->pagelist
[0]);
163 if (argp
->pagelen
< PAGE_SIZE
) {
164 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
167 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
168 argp
->pagelen
-= PAGE_SIZE
;
170 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
171 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
175 static int zero_clientid(clientid_t
*clid
)
177 return (clid
->cl_boot
== 0) && (clid
->cl_id
== 0);
181 defer_free(struct nfsd4_compoundargs
*argp
,
182 void (*release
)(const void *), void *p
)
186 tb
= kmalloc(sizeof(*tb
), GFP_KERNEL
);
190 tb
->release
= release
;
191 tb
->next
= argp
->to_free
;
196 static char *savemem(struct nfsd4_compoundargs
*argp
, __be32
*p
, int nbytes
)
198 if (p
== argp
->tmp
) {
199 p
= kmalloc(nbytes
, GFP_KERNEL
);
202 memcpy(p
, argp
->tmp
, nbytes
);
204 BUG_ON(p
!= argp
->tmpp
);
207 if (defer_free(argp
, kfree
, p
)) {
215 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
229 READ_BUF(bmlen
<< 2);
241 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
,
242 struct iattr
*iattr
, struct nfs4_acl
**acl
)
244 int expected_len
, len
= 0;
251 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
255 READ32(expected_len
);
257 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
260 READ64(iattr
->ia_size
);
261 iattr
->ia_valid
|= ATTR_SIZE
;
263 if (bmval
[0] & FATTR4_WORD0_ACL
) {
265 struct nfs4_ace
*ace
;
267 READ_BUF(4); len
+= 4;
270 if (nace
> NFS4_ACL_MAX
)
271 return nfserr_resource
;
273 *acl
= nfs4_acl_new(nace
);
278 defer_free(argp
, kfree
, *acl
);
280 (*acl
)->naces
= nace
;
281 for (ace
= (*acl
)->aces
; ace
< (*acl
)->aces
+ nace
; ace
++) {
282 READ_BUF(16); len
+= 16;
285 READ32(ace
->access_mask
);
288 len
+= XDR_QUADLEN(dummy32
) << 2;
289 READMEM(buf
, dummy32
);
290 ace
->whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
292 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
294 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
295 host_err
= nfsd_map_name_to_gid(argp
->rqstp
,
296 buf
, dummy32
, &ace
->who
);
298 host_err
= nfsd_map_name_to_uid(argp
->rqstp
,
299 buf
, dummy32
, &ace
->who
);
305 if (bmval
[1] & FATTR4_WORD1_MODE
) {
308 READ32(iattr
->ia_mode
);
309 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
310 iattr
->ia_valid
|= ATTR_MODE
;
312 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
317 len
+= (XDR_QUADLEN(dummy32
) << 2);
318 READMEM(buf
, dummy32
);
319 if ((host_err
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
321 iattr
->ia_valid
|= ATTR_UID
;
323 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
328 len
+= (XDR_QUADLEN(dummy32
) << 2);
329 READMEM(buf
, dummy32
);
330 if ((host_err
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
332 iattr
->ia_valid
|= ATTR_GID
;
334 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
339 case NFS4_SET_TO_CLIENT_TIME
:
340 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
341 all 32 bits of 'nseconds'. */
347 READ32(iattr
->ia_atime
.tv_sec
);
348 READ32(iattr
->ia_atime
.tv_nsec
);
349 if (iattr
->ia_atime
.tv_nsec
>= (u32
)1000000000)
351 iattr
->ia_valid
|= (ATTR_ATIME
| ATTR_ATIME_SET
);
353 case NFS4_SET_TO_SERVER_TIME
:
354 iattr
->ia_valid
|= ATTR_ATIME
;
360 if (bmval
[1] & FATTR4_WORD1_TIME_MODIFY_SET
) {
365 case NFS4_SET_TO_CLIENT_TIME
:
366 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
367 all 32 bits of 'nseconds'. */
373 READ32(iattr
->ia_mtime
.tv_sec
);
374 READ32(iattr
->ia_mtime
.tv_nsec
);
375 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
377 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
379 case NFS4_SET_TO_SERVER_TIME
:
380 iattr
->ia_valid
|= ATTR_MTIME
;
386 if (bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
387 || bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
388 || bmval
[2] & ~NFSD_WRITEABLE_ATTRS_WORD2
)
389 READ_BUF(expected_len
- len
);
390 else if (len
!= expected_len
)
396 status
= nfserrno(host_err
);
401 nfsd4_decode_stateid(struct nfsd4_compoundargs
*argp
, stateid_t
*sid
)
405 READ_BUF(sizeof(stateid_t
));
406 READ32(sid
->si_generation
);
407 COPYMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
413 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
418 READ32(access
->ac_req_access
);
424 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
428 close
->cl_stateowner
= NULL
;
430 READ32(close
->cl_seqid
);
431 return nfsd4_decode_stateid(argp
, &close
->cl_stateid
);
438 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
443 READ64(commit
->co_offset
);
444 READ32(commit
->co_count
);
450 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
455 READ32(create
->cr_type
);
456 switch (create
->cr_type
) {
459 READ32(create
->cr_linklen
);
460 READ_BUF(create
->cr_linklen
);
461 SAVEMEM(create
->cr_linkname
, create
->cr_linklen
);
466 READ32(create
->cr_specdata1
);
467 READ32(create
->cr_specdata2
);
477 READ32(create
->cr_namelen
);
478 READ_BUF(create
->cr_namelen
);
479 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
480 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
, nfserr_inval
)))
483 status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
,
492 nfsd4_decode_delegreturn(struct nfsd4_compoundargs
*argp
, struct nfsd4_delegreturn
*dr
)
494 return nfsd4_decode_stateid(argp
, &dr
->dr_stateid
);
498 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
500 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
504 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
509 READ32(link
->li_namelen
);
510 READ_BUF(link
->li_namelen
);
511 SAVEMEM(link
->li_name
, link
->li_namelen
);
512 if ((status
= check_filename(link
->li_name
, link
->li_namelen
, nfserr_inval
)))
519 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
523 lock
->lk_replay_owner
= NULL
;
525 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
528 READ32(lock
->lk_type
);
529 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
531 READ32(lock
->lk_reclaim
);
532 READ64(lock
->lk_offset
);
533 READ64(lock
->lk_length
);
534 READ32(lock
->lk_is_new
);
536 if (lock
->lk_is_new
) {
538 READ32(lock
->lk_new_open_seqid
);
539 status
= nfsd4_decode_stateid(argp
, &lock
->lk_new_open_stateid
);
542 READ_BUF(8 + sizeof(clientid_t
));
543 READ32(lock
->lk_new_lock_seqid
);
544 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
545 READ32(lock
->lk_new_owner
.len
);
546 READ_BUF(lock
->lk_new_owner
.len
);
547 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
549 status
= nfsd4_decode_stateid(argp
, &lock
->lk_old_lock_stateid
);
553 READ32(lock
->lk_old_lock_seqid
);
560 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
565 READ32(lockt
->lt_type
);
566 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
568 READ64(lockt
->lt_offset
);
569 READ64(lockt
->lt_length
);
570 COPYMEM(&lockt
->lt_clientid
, 8);
571 READ32(lockt
->lt_owner
.len
);
572 READ_BUF(lockt
->lt_owner
.len
);
573 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
575 if (argp
->minorversion
&& !zero_clientid(&lockt
->lt_clientid
))
581 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
585 locku
->lu_stateowner
= NULL
;
587 READ32(locku
->lu_type
);
588 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
590 READ32(locku
->lu_seqid
);
591 status
= nfsd4_decode_stateid(argp
, &locku
->lu_stateid
);
595 READ64(locku
->lu_offset
);
596 READ64(locku
->lu_length
);
602 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
607 READ32(lookup
->lo_len
);
608 READ_BUF(lookup
->lo_len
);
609 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
610 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
, nfserr_noent
)))
617 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
621 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
622 open
->op_iattr
.ia_valid
= 0;
623 open
->op_stateowner
= NULL
;
625 /* seqid, share_access, share_deny, clientid, ownerlen */
626 READ_BUF(16 + sizeof(clientid_t
));
627 READ32(open
->op_seqid
);
628 READ32(open
->op_share_access
);
629 READ32(open
->op_share_deny
);
630 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
631 READ32(open
->op_owner
.len
);
633 /* owner, open_flag */
634 READ_BUF(open
->op_owner
.len
+ 4);
635 SAVEMEM(open
->op_owner
.data
, open
->op_owner
.len
);
636 READ32(open
->op_create
);
637 switch (open
->op_create
) {
638 case NFS4_OPEN_NOCREATE
:
640 case NFS4_OPEN_CREATE
:
642 READ32(open
->op_createmode
);
643 switch (open
->op_createmode
) {
644 case NFS4_CREATE_UNCHECKED
:
645 case NFS4_CREATE_GUARDED
:
646 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
647 &open
->op_iattr
, &open
->op_acl
);
651 case NFS4_CREATE_EXCLUSIVE
:
653 COPYMEM(open
->op_verf
.data
, 8);
655 case NFS4_CREATE_EXCLUSIVE4_1
:
656 if (argp
->minorversion
< 1)
659 COPYMEM(open
->op_verf
.data
, 8);
660 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
661 &open
->op_iattr
, &open
->op_acl
);
675 READ32(open
->op_claim_type
);
676 switch (open
->op_claim_type
) {
677 case NFS4_OPEN_CLAIM_NULL
:
678 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
680 READ32(open
->op_fname
.len
);
681 READ_BUF(open
->op_fname
.len
);
682 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
683 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
686 case NFS4_OPEN_CLAIM_PREVIOUS
:
688 READ32(open
->op_delegate_type
);
690 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
691 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
695 READ32(open
->op_fname
.len
);
696 READ_BUF(open
->op_fname
.len
);
697 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
698 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
709 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
713 open_conf
->oc_stateowner
= NULL
;
714 status
= nfsd4_decode_stateid(argp
, &open_conf
->oc_req_stateid
);
718 READ32(open_conf
->oc_seqid
);
724 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
728 open_down
->od_stateowner
= NULL
;
729 status
= nfsd4_decode_stateid(argp
, &open_down
->od_stateid
);
733 READ32(open_down
->od_seqid
);
734 READ32(open_down
->od_share_access
);
735 READ32(open_down
->od_share_deny
);
741 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
746 READ32(putfh
->pf_fhlen
);
747 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
749 READ_BUF(putfh
->pf_fhlen
);
750 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
756 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
760 status
= nfsd4_decode_stateid(argp
, &read
->rd_stateid
);
764 READ64(read
->rd_offset
);
765 READ32(read
->rd_length
);
771 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
776 READ64(readdir
->rd_cookie
);
777 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
778 READ32(readdir
->rd_dircount
); /* just in case you needed a useless field... */
779 READ32(readdir
->rd_maxcount
);
780 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
787 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
792 READ32(remove
->rm_namelen
);
793 READ_BUF(remove
->rm_namelen
);
794 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
795 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
, nfserr_noent
)))
802 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
807 READ32(rename
->rn_snamelen
);
808 READ_BUF(rename
->rn_snamelen
+ 4);
809 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
810 READ32(rename
->rn_tnamelen
);
811 READ_BUF(rename
->rn_tnamelen
);
812 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
813 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
, nfserr_noent
)))
815 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
, nfserr_inval
)))
822 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
826 READ_BUF(sizeof(clientid_t
));
827 COPYMEM(clientid
, sizeof(clientid_t
));
833 nfsd4_decode_secinfo(struct nfsd4_compoundargs
*argp
,
834 struct nfsd4_secinfo
*secinfo
)
839 READ32(secinfo
->si_namelen
);
840 READ_BUF(secinfo
->si_namelen
);
841 SAVEMEM(secinfo
->si_name
, secinfo
->si_namelen
);
842 status
= check_filename(secinfo
->si_name
, secinfo
->si_namelen
,
850 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
854 status
= nfsd4_decode_stateid(argp
, &setattr
->sa_stateid
);
857 return nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
,
862 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
867 COPYMEM(setclientid
->se_verf
.data
, 8);
868 READ32(setclientid
->se_namelen
);
870 READ_BUF(setclientid
->se_namelen
+ 8);
871 SAVEMEM(setclientid
->se_name
, setclientid
->se_namelen
);
872 READ32(setclientid
->se_callback_prog
);
873 READ32(setclientid
->se_callback_netid_len
);
875 READ_BUF(setclientid
->se_callback_netid_len
+ 4);
876 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
877 READ32(setclientid
->se_callback_addr_len
);
879 READ_BUF(setclientid
->se_callback_addr_len
+ 4);
880 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
881 READ32(setclientid
->se_callback_ident
);
887 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
891 READ_BUF(8 + sizeof(nfs4_verifier
));
892 COPYMEM(&scd_c
->sc_clientid
, 8);
893 COPYMEM(&scd_c
->sc_confirm
, sizeof(nfs4_verifier
));
898 /* Also used for NVERIFY */
900 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
903 struct nfsd4_compoundargs save
= {
906 .rqstp
= argp
->rqstp
,
909 struct iattr ve_iattr
; /* request */
910 struct nfs4_acl
*ve_acl
; /* request */
914 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
917 /* For convenience's sake, we compare raw xdr'd attributes in
918 * nfsd4_proc_verify; however we still decode here just to return
919 * correct error in case of bad xdr. */
921 status
= nfsd4_decode_fattr(ve_bmval
, &ve_iattr
, &ve_acl
);
922 if (status
== nfserr_inval
) {
923 status
= nfserrno(status
);
928 READ32(verify
->ve_attrlen
);
929 READ_BUF(verify
->ve_attrlen
);
930 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
936 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
943 status
= nfsd4_decode_stateid(argp
, &write
->wr_stateid
);
947 READ64(write
->wr_offset
);
948 READ32(write
->wr_stable_how
);
949 if (write
->wr_stable_how
> 2)
951 READ32(write
->wr_buflen
);
953 /* Sorry .. no magic macros for this.. *
954 * READ_BUF(write->wr_buflen);
955 * SAVEMEM(write->wr_buf, write->wr_buflen);
957 avail
= (char*)argp
->end
- (char*)argp
->p
;
958 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
959 dprintk("NFSD: xdr error (%s:%d)\n",
963 argp
->rqstp
->rq_vec
[0].iov_base
= p
;
964 argp
->rqstp
->rq_vec
[0].iov_len
= avail
;
966 len
= write
->wr_buflen
;
967 while (len
> argp
->rqstp
->rq_vec
[v
].iov_len
) {
968 len
-= argp
->rqstp
->rq_vec
[v
].iov_len
;
970 argp
->rqstp
->rq_vec
[v
].iov_base
= page_address(argp
->pagelist
[0]);
972 if (argp
->pagelen
>= PAGE_SIZE
) {
973 argp
->rqstp
->rq_vec
[v
].iov_len
= PAGE_SIZE
;
974 argp
->pagelen
-= PAGE_SIZE
;
976 argp
->rqstp
->rq_vec
[v
].iov_len
= argp
->pagelen
;
977 argp
->pagelen
-= len
;
980 argp
->end
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ argp
->rqstp
->rq_vec
[v
].iov_len
);
981 argp
->p
= (__be32
*) (argp
->rqstp
->rq_vec
[v
].iov_base
+ (XDR_QUADLEN(len
) << 2));
982 argp
->rqstp
->rq_vec
[v
].iov_len
= len
;
983 write
->wr_vlen
= v
+1;
989 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
994 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
995 READ32(rlockowner
->rl_owner
.len
);
996 READ_BUF(rlockowner
->rl_owner
.len
);
997 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
999 if (argp
->minorversion
&& !zero_clientid(&rlockowner
->rl_clientid
))
1000 return nfserr_inval
;
1005 nfsd4_decode_exchange_id(struct nfsd4_compoundargs
*argp
,
1006 struct nfsd4_exchange_id
*exid
)
1011 READ_BUF(NFS4_VERIFIER_SIZE
);
1012 COPYMEM(exid
->verifier
.data
, NFS4_VERIFIER_SIZE
);
1015 READ32(exid
->clname
.len
);
1017 READ_BUF(exid
->clname
.len
);
1018 SAVEMEM(exid
->clname
.data
, exid
->clname
.len
);
1021 READ32(exid
->flags
);
1023 /* Ignore state_protect4_a */
1025 READ32(exid
->spa_how
);
1026 switch (exid
->spa_how
) {
1030 /* spo_must_enforce */
1033 READ_BUF(dummy
* 4);
1036 /* spo_must_allow */
1039 READ_BUF(dummy
* 4);
1046 READ_BUF(dummy
* 4);
1051 READ_BUF(dummy
* 4);
1054 /* ssp_hash_algs<> */
1058 p
+= XDR_QUADLEN(dummy
);
1060 /* ssp_encr_algs<> */
1064 p
+= XDR_QUADLEN(dummy
);
1066 /* ssp_window and ssp_num_gss_handles */
1075 /* Ignore Implementation ID */
1076 READ_BUF(4); /* nfs_impl_id4 array length */
1087 p
+= XDR_QUADLEN(dummy
);
1093 p
+= XDR_QUADLEN(dummy
);
1103 nfsd4_decode_create_session(struct nfsd4_compoundargs
*argp
,
1104 struct nfsd4_create_session
*sess
)
1114 COPYMEM(&sess
->clientid
, 8);
1115 READ32(sess
->seqid
);
1116 READ32(sess
->flags
);
1118 /* Fore channel attrs */
1120 READ32(dummy
); /* headerpadsz is always 0 */
1121 READ32(sess
->fore_channel
.maxreq_sz
);
1122 READ32(sess
->fore_channel
.maxresp_sz
);
1123 READ32(sess
->fore_channel
.maxresp_cached
);
1124 READ32(sess
->fore_channel
.maxops
);
1125 READ32(sess
->fore_channel
.maxreqs
);
1126 READ32(sess
->fore_channel
.nr_rdma_attrs
);
1127 if (sess
->fore_channel
.nr_rdma_attrs
== 1) {
1129 READ32(sess
->fore_channel
.rdma_attrs
);
1130 } else if (sess
->fore_channel
.nr_rdma_attrs
> 1) {
1131 dprintk("Too many fore channel attr bitmaps!\n");
1135 /* Back channel attrs */
1137 READ32(dummy
); /* headerpadsz is always 0 */
1138 READ32(sess
->back_channel
.maxreq_sz
);
1139 READ32(sess
->back_channel
.maxresp_sz
);
1140 READ32(sess
->back_channel
.maxresp_cached
);
1141 READ32(sess
->back_channel
.maxops
);
1142 READ32(sess
->back_channel
.maxreqs
);
1143 READ32(sess
->back_channel
.nr_rdma_attrs
);
1144 if (sess
->back_channel
.nr_rdma_attrs
== 1) {
1146 READ32(sess
->back_channel
.rdma_attrs
);
1147 } else if (sess
->back_channel
.nr_rdma_attrs
> 1) {
1148 dprintk("Too many back channel attr bitmaps!\n");
1153 READ32(sess
->callback_prog
);
1155 /* callback_sec_params4 */
1156 READ32(nr_secflavs
);
1157 for (i
= 0; i
< nr_secflavs
; ++i
) {
1162 /* Nothing to read */
1172 SAVEMEM(machine_name
, dummy
);
1182 READ_BUF(dummy
* 4);
1183 for (i
= 0; i
< dummy
; ++i
)
1187 dprintk("RPC_AUTH_GSS callback secflavor "
1188 "not supported!\n");
1192 /* gcbp_handle_from_server */
1195 p
+= XDR_QUADLEN(dummy
);
1196 /* gcbp_handle_from_client */
1200 p
+= XDR_QUADLEN(dummy
);
1203 dprintk("Illegal callback secflavor\n");
1204 return nfserr_inval
;
1211 nfsd4_decode_destroy_session(struct nfsd4_compoundargs
*argp
,
1212 struct nfsd4_destroy_session
*destroy_session
)
1215 READ_BUF(NFS4_MAX_SESSIONID_LEN
);
1216 COPYMEM(destroy_session
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1222 nfsd4_decode_sequence(struct nfsd4_compoundargs
*argp
,
1223 struct nfsd4_sequence
*seq
)
1227 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 16);
1228 COPYMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1230 READ32(seq
->slotid
);
1231 READ32(seq
->maxslots
);
1232 READ32(seq
->cachethis
);
1237 static __be32
nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs
*argp
, struct nfsd4_reclaim_complete
*rc
)
1242 READ32(rc
->rca_one_fs
);
1248 nfsd4_decode_noop(struct nfsd4_compoundargs
*argp
, void *p
)
1254 nfsd4_decode_notsupp(struct nfsd4_compoundargs
*argp
, void *p
)
1256 return nfserr_notsupp
;
1259 typedef __be32(*nfsd4_dec
)(struct nfsd4_compoundargs
*argp
, void *);
1261 static nfsd4_dec nfsd4_dec_ops
[] = {
1262 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1263 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1264 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1265 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1266 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1267 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1268 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1269 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1270 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1271 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1272 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1273 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1274 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1275 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1276 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1277 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1278 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1279 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_open_confirm
,
1280 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1281 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1282 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1283 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1284 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1285 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1286 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1287 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1288 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1289 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_renew
,
1290 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1291 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1292 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1293 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1294 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_setclientid
,
1295 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_setclientid_confirm
,
1296 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1297 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1298 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_release_lockowner
,
1301 static nfsd4_dec nfsd41_dec_ops
[] = {
1302 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1303 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1304 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1305 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1306 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1307 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1308 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1309 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1310 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1311 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1312 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1313 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1314 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1315 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1316 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1317 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1318 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1319 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1320 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1321 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1322 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1323 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1324 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1325 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1326 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1327 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1328 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1329 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1330 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1331 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1332 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1333 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1334 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1335 [OP_SETCLIENTID_CONFIRM
]= (nfsd4_dec
)nfsd4_decode_notsupp
,
1336 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1337 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1338 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1340 /* new operations for NFSv4.1 */
1341 [OP_BACKCHANNEL_CTL
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1342 [OP_BIND_CONN_TO_SESSION
]= (nfsd4_dec
)nfsd4_decode_notsupp
,
1343 [OP_EXCHANGE_ID
] = (nfsd4_dec
)nfsd4_decode_exchange_id
,
1344 [OP_CREATE_SESSION
] = (nfsd4_dec
)nfsd4_decode_create_session
,
1345 [OP_DESTROY_SESSION
] = (nfsd4_dec
)nfsd4_decode_destroy_session
,
1346 [OP_FREE_STATEID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1347 [OP_GET_DIR_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1348 [OP_GETDEVICEINFO
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1349 [OP_GETDEVICELIST
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1350 [OP_LAYOUTCOMMIT
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1351 [OP_LAYOUTGET
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1352 [OP_LAYOUTRETURN
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1353 [OP_SECINFO_NO_NAME
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1354 [OP_SEQUENCE
] = (nfsd4_dec
)nfsd4_decode_sequence
,
1355 [OP_SET_SSV
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1356 [OP_TEST_STATEID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1357 [OP_WANT_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1358 [OP_DESTROY_CLIENTID
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1359 [OP_RECLAIM_COMPLETE
] = (nfsd4_dec
)nfsd4_decode_reclaim_complete
,
1362 struct nfsd4_minorversion_ops
{
1363 nfsd4_dec
*decoders
;
1367 static struct nfsd4_minorversion_ops nfsd4_minorversion
[] = {
1368 [0] = { nfsd4_dec_ops
, ARRAY_SIZE(nfsd4_dec_ops
) },
1369 [1] = { nfsd41_dec_ops
, ARRAY_SIZE(nfsd41_dec_ops
) },
1373 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1376 struct nfsd4_op
*op
;
1377 struct nfsd4_minorversion_ops
*ops
;
1381 * XXX: According to spec, we should check the tag
1382 * for UTF-8 compliance. I'm postponing this for
1383 * now because it seems that some clients do use
1387 READ32(argp
->taglen
);
1388 READ_BUF(argp
->taglen
+ 8);
1389 SAVEMEM(argp
->tag
, argp
->taglen
);
1390 READ32(argp
->minorversion
);
1391 READ32(argp
->opcnt
);
1393 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1395 if (argp
->opcnt
> 100)
1398 if (argp
->opcnt
> ARRAY_SIZE(argp
->iops
)) {
1399 argp
->ops
= kmalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1401 argp
->ops
= argp
->iops
;
1402 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1407 if (argp
->minorversion
>= ARRAY_SIZE(nfsd4_minorversion
))
1410 ops
= &nfsd4_minorversion
[argp
->minorversion
];
1411 for (i
= 0; i
< argp
->opcnt
; i
++) {
1416 * We can't use READ_BUF() here because we need to handle
1417 * a missing opcode as an OP_WRITE + 1. So we need to check
1418 * to see if we're truly at the end of our buffer or if there
1419 * is another page we need to flip to.
1422 if (argp
->p
== argp
->end
) {
1423 if (argp
->pagelen
< 4) {
1424 /* There isn't an opcode still on the wire */
1425 op
->opnum
= OP_WRITE
+ 1;
1426 op
->status
= nfserr_bad_xdr
;
1432 * False alarm. We just hit a page boundary, but there
1433 * is still data available. Move pointer across page
1434 * boundary. *snip from READ_BUF*
1436 argp
->p
= page_address(argp
->pagelist
[0]);
1438 if (argp
->pagelen
< PAGE_SIZE
) {
1439 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
1442 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
1443 argp
->pagelen
-= PAGE_SIZE
;
1446 op
->opnum
= ntohl(*argp
->p
++);
1448 if (op
->opnum
>= FIRST_NFS4_OP
&& op
->opnum
<= LAST_NFS4_OP
)
1449 op
->status
= ops
->decoders
[op
->opnum
](argp
, &op
->u
);
1451 op
->opnum
= OP_ILLEGAL
;
1452 op
->status
= nfserr_op_illegal
;
1464 #define WRITE32(n) *p++ = htonl(n)
1465 #define WRITE64(n) do { \
1466 *p++ = htonl((u32)((n) >> 32)); \
1467 *p++ = htonl((u32)(n)); \
1469 #define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
1470 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1471 memcpy(p, ptr, nbytes); \
1472 p += XDR_QUADLEN(nbytes); \
1475 static void write32(__be32
**p
, u32 n
)
1480 static void write64(__be32
**p
, u64 n
)
1482 write32(p
, (u32
)(n
>> 32));
1486 static void write_change(__be32
**p
, struct kstat
*stat
, struct inode
*inode
)
1488 if (IS_I_VERSION(inode
)) {
1489 write64(p
, inode
->i_version
);
1491 write32(p
, stat
->ctime
.tv_sec
);
1492 write32(p
, stat
->ctime
.tv_nsec
);
1496 static void write_cinfo(__be32
**p
, struct nfsd4_change_info
*c
)
1498 write32(p
, c
->atomic
);
1499 if (c
->change_supported
) {
1500 write64(p
, c
->before_change
);
1501 write64(p
, c
->after_change
);
1503 write32(p
, c
->before_ctime_sec
);
1504 write32(p
, c
->before_ctime_nsec
);
1505 write32(p
, c
->after_ctime_sec
);
1506 write32(p
, c
->after_ctime_nsec
);
1510 #define RESERVE_SPACE(nbytes) do { \
1512 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1514 #define ADJUST_ARGS() resp->p = p
1517 * Header routine to setup seqid operation replay cache
1519 #define ENCODE_SEQID_OP_HEAD \
1525 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1526 * is where sequence id's are incremented, and the replay cache is filled.
1527 * Note that we increment sequence id's here, at the last moment, so we're sure
1528 * we know whether the error to be returned is a sequence id mutating error.
1531 #define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1532 if (seqid_mutating_err(nfserr) && stateowner) { \
1533 stateowner->so_seqid++; \
1534 stateowner->so_replay.rp_status = nfserr; \
1535 stateowner->so_replay.rp_buflen = \
1536 (((char *)(resp)->p - (char *)save)); \
1537 memcpy(stateowner->so_replay.rp_buf, save, \
1538 stateowner->so_replay.rp_buflen); \
1541 /* Encode as an array of strings the string given with components
1544 static __be32
nfsd4_encode_components(char sep
, char *components
,
1545 __be32
**pp
, int *buflen
)
1549 int strlen
, count
=0;
1552 dprintk("nfsd4_encode_components(%s)\n", components
);
1553 if ((*buflen
-= 4) < 0)
1554 return nfserr_resource
;
1555 WRITE32(0); /* We will fill this in with @count later */
1556 end
= str
= components
;
1558 for (; *end
&& (*end
!= sep
); end
++)
1559 ; /* Point to end of component */
1562 if ((*buflen
-= ((XDR_QUADLEN(strlen
) << 2) + 4)) < 0)
1563 return nfserr_resource
;
1565 WRITEMEM(str
, strlen
);
1579 * encode a location element of a fs_locations structure
1581 static __be32
nfsd4_encode_fs_location4(struct nfsd4_fs_location
*location
,
1582 __be32
**pp
, int *buflen
)
1587 status
= nfsd4_encode_components(':', location
->hosts
, &p
, buflen
);
1590 status
= nfsd4_encode_components('/', location
->path
, &p
, buflen
);
1598 * Return the path to an export point in the pseudo filesystem namespace
1599 * Returned string is safe to use as long as the caller holds a reference
1602 static char *nfsd4_path(struct svc_rqst
*rqstp
, struct svc_export
*exp
, __be32
*stat
)
1604 struct svc_fh tmp_fh
;
1605 char *path
= NULL
, *rootpath
;
1608 fh_init(&tmp_fh
, NFS4_FHSIZE
);
1609 *stat
= exp_pseudoroot(rqstp
, &tmp_fh
);
1612 rootpath
= tmp_fh
.fh_export
->ex_pathname
;
1614 path
= exp
->ex_pathname
;
1616 rootlen
= strlen(rootpath
);
1617 if (strncmp(path
, rootpath
, rootlen
)) {
1618 dprintk("nfsd: fs_locations failed;"
1619 "%s is not contained in %s\n", path
, rootpath
);
1620 *stat
= nfserr_notsupp
;
1631 * encode a fs_locations structure
1633 static __be32
nfsd4_encode_fs_locations(struct svc_rqst
*rqstp
,
1634 struct svc_export
*exp
,
1635 __be32
**pp
, int *buflen
)
1640 struct nfsd4_fs_locations
*fslocs
= &exp
->ex_fslocs
;
1641 char *root
= nfsd4_path(rqstp
, exp
, &status
);
1645 status
= nfsd4_encode_components('/', root
, &p
, buflen
);
1648 if ((*buflen
-= 4) < 0)
1649 return nfserr_resource
;
1650 WRITE32(fslocs
->locations_count
);
1651 for (i
=0; i
<fslocs
->locations_count
; i
++) {
1652 status
= nfsd4_encode_fs_location4(&fslocs
->locations
[i
],
1661 static u32 nfs4_ftypes
[16] = {
1662 NF4BAD
, NF4FIFO
, NF4CHR
, NF4BAD
,
1663 NF4DIR
, NF4BAD
, NF4BLK
, NF4BAD
,
1664 NF4REG
, NF4BAD
, NF4LNK
, NF4BAD
,
1665 NF4SOCK
, NF4BAD
, NF4LNK
, NF4BAD
,
1669 nfsd4_encode_name(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1670 __be32
**p
, int *buflen
)
1674 if (*buflen
< (XDR_QUADLEN(IDMAP_NAMESZ
) << 2) + 4)
1675 return nfserr_resource
;
1676 if (whotype
!= NFS4_ACL_WHO_NAMED
)
1677 status
= nfs4_acl_write_who(whotype
, (u8
*)(*p
+ 1));
1679 status
= nfsd_map_gid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1681 status
= nfsd_map_uid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1683 return nfserrno(status
);
1684 *p
= xdr_encode_opaque(*p
, NULL
, status
);
1685 *buflen
-= (XDR_QUADLEN(status
) << 2) + 4;
1686 BUG_ON(*buflen
< 0);
1690 static inline __be32
1691 nfsd4_encode_user(struct svc_rqst
*rqstp
, uid_t uid
, __be32
**p
, int *buflen
)
1693 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, uid
, 0, p
, buflen
);
1696 static inline __be32
1697 nfsd4_encode_group(struct svc_rqst
*rqstp
, uid_t gid
, __be32
**p
, int *buflen
)
1699 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, gid
, 1, p
, buflen
);
1702 static inline __be32
1703 nfsd4_encode_aclname(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1704 __be32
**p
, int *buflen
)
1706 return nfsd4_encode_name(rqstp
, whotype
, id
, group
, p
, buflen
);
1709 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1710 FATTR4_WORD0_RDATTR_ERROR)
1711 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1713 static __be32
fattr_handle_absent_fs(u32
*bmval0
, u32
*bmval1
, u32
*rdattr_err
)
1715 /* As per referral draft: */
1716 if (*bmval0
& ~WORD0_ABSENT_FS_ATTRS
||
1717 *bmval1
& ~WORD1_ABSENT_FS_ATTRS
) {
1718 if (*bmval0
& FATTR4_WORD0_RDATTR_ERROR
||
1719 *bmval0
& FATTR4_WORD0_FS_LOCATIONS
)
1720 *rdattr_err
= NFSERR_MOVED
;
1722 return nfserr_moved
;
1724 *bmval0
&= WORD0_ABSENT_FS_ATTRS
;
1725 *bmval1
&= WORD1_ABSENT_FS_ATTRS
;
1730 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1733 * @countp is the buffer size in _words_; upon successful return this becomes
1734 * replaced with the number of words written.
1737 nfsd4_encode_fattr(struct svc_fh
*fhp
, struct svc_export
*exp
,
1738 struct dentry
*dentry
, __be32
*buffer
, int *countp
, u32
*bmval
,
1739 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
1741 u32 bmval0
= bmval
[0];
1742 u32 bmval1
= bmval
[1];
1743 u32 bmval2
= bmval
[2];
1745 struct svc_fh tempfh
;
1746 struct kstatfs statfs
;
1747 int buflen
= *countp
<< 2;
1756 struct nfs4_acl
*acl
= NULL
;
1757 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
1758 u32 minorversion
= resp
->cstate
.minorversion
;
1759 struct path path
= {
1760 .mnt
= exp
->ex_path
.mnt
,
1764 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
1765 BUG_ON(bmval0
& ~nfsd_suppattrs0(minorversion
));
1766 BUG_ON(bmval1
& ~nfsd_suppattrs1(minorversion
));
1767 BUG_ON(bmval2
& ~nfsd_suppattrs2(minorversion
));
1769 if (exp
->ex_fslocs
.migrated
) {
1771 status
= fattr_handle_absent_fs(&bmval0
, &bmval1
, &rdattr_err
);
1776 err
= vfs_getattr(exp
->ex_path
.mnt
, dentry
, &stat
);
1779 if ((bmval0
& (FATTR4_WORD0_FILES_FREE
| FATTR4_WORD0_FILES_TOTAL
|
1780 FATTR4_WORD0_MAXNAME
)) ||
1781 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
1782 FATTR4_WORD1_SPACE_TOTAL
))) {
1783 err
= vfs_statfs(&path
, &statfs
);
1787 if ((bmval0
& (FATTR4_WORD0_FILEHANDLE
| FATTR4_WORD0_FSID
)) && !fhp
) {
1788 fh_init(&tempfh
, NFS4_FHSIZE
);
1789 status
= fh_compose(&tempfh
, exp
, dentry
, NULL
);
1794 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
1795 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
1796 err
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
1797 aclsupport
= (err
== 0);
1798 if (bmval0
& FATTR4_WORD0_ACL
) {
1799 if (err
== -EOPNOTSUPP
)
1800 bmval0
&= ~FATTR4_WORD0_ACL
;
1801 else if (err
== -EINVAL
) {
1802 status
= nfserr_attrnotsupp
;
1804 } else if (err
!= 0)
1808 if ((buflen
-= 16) < 0)
1811 if (unlikely(bmval2
)) {
1816 } else if (likely(bmval1
)) {
1824 attrlenp
= p
++; /* to be backfilled later */
1826 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
1827 u32 word0
= nfsd_suppattrs0(minorversion
);
1828 u32 word1
= nfsd_suppattrs1(minorversion
);
1829 u32 word2
= nfsd_suppattrs2(minorversion
);
1831 if ((buflen
-= 12) < 0)
1834 word0
&= ~FATTR4_WORD0_ACL
;
1846 if (bmval0
& FATTR4_WORD0_TYPE
) {
1847 if ((buflen
-= 4) < 0)
1849 dummy
= nfs4_ftypes
[(stat
.mode
& S_IFMT
) >> 12];
1850 if (dummy
== NF4BAD
)
1851 goto out_serverfault
;
1854 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
1855 if ((buflen
-= 4) < 0)
1857 if (exp
->ex_flags
& NFSEXP_NOSUBTREECHECK
)
1858 WRITE32(NFS4_FH_PERSISTENT
);
1860 WRITE32(NFS4_FH_PERSISTENT
|NFS4_FH_VOL_RENAME
);
1862 if (bmval0
& FATTR4_WORD0_CHANGE
) {
1863 if ((buflen
-= 8) < 0)
1865 write_change(&p
, &stat
, dentry
->d_inode
);
1867 if (bmval0
& FATTR4_WORD0_SIZE
) {
1868 if ((buflen
-= 8) < 0)
1872 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
1873 if ((buflen
-= 4) < 0)
1877 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
1878 if ((buflen
-= 4) < 0)
1882 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
1883 if ((buflen
-= 4) < 0)
1887 if (bmval0
& FATTR4_WORD0_FSID
) {
1888 if ((buflen
-= 16) < 0)
1890 if (exp
->ex_fslocs
.migrated
) {
1891 WRITE64(NFS4_REFERRAL_FSID_MAJOR
);
1892 WRITE64(NFS4_REFERRAL_FSID_MINOR
);
1893 } else switch(fsid_source(fhp
)) {
1894 case FSIDSOURCE_FSID
:
1895 WRITE64((u64
)exp
->ex_fsid
);
1898 case FSIDSOURCE_DEV
:
1900 WRITE32(MAJOR(stat
.dev
));
1902 WRITE32(MINOR(stat
.dev
));
1904 case FSIDSOURCE_UUID
:
1905 WRITEMEM(exp
->ex_uuid
, 16);
1909 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
1910 if ((buflen
-= 4) < 0)
1914 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
1915 if ((buflen
-= 4) < 0)
1917 WRITE32(nfsd4_lease
);
1919 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
1920 if ((buflen
-= 4) < 0)
1922 WRITE32(rdattr_err
);
1924 if (bmval0
& FATTR4_WORD0_ACL
) {
1925 struct nfs4_ace
*ace
;
1928 if ((buflen
-= 4) < 0)
1934 if ((buflen
-= 4) < 0)
1936 WRITE32(acl
->naces
);
1938 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
1939 if ((buflen
-= 4*3) < 0)
1943 WRITE32(ace
->access_mask
& NFS4_ACE_MASK_ALL
);
1944 status
= nfsd4_encode_aclname(rqstp
, ace
->whotype
,
1945 ace
->who
, ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
,
1947 if (status
== nfserr_resource
)
1954 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
1955 if ((buflen
-= 4) < 0)
1957 WRITE32(aclsupport
?
1958 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
1960 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
1961 if ((buflen
-= 4) < 0)
1965 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
1966 if ((buflen
-= 4) < 0)
1970 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
1971 if ((buflen
-= 4) < 0)
1975 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
1976 if ((buflen
-= 4) < 0)
1980 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
1981 buflen
-= (XDR_QUADLEN(fhp
->fh_handle
.fh_size
) << 2) + 4;
1984 WRITE32(fhp
->fh_handle
.fh_size
);
1985 WRITEMEM(&fhp
->fh_handle
.fh_base
, fhp
->fh_handle
.fh_size
);
1987 if (bmval0
& FATTR4_WORD0_FILEID
) {
1988 if ((buflen
-= 8) < 0)
1992 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
1993 if ((buflen
-= 8) < 0)
1995 WRITE64((u64
) statfs
.f_ffree
);
1997 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
1998 if ((buflen
-= 8) < 0)
2000 WRITE64((u64
) statfs
.f_ffree
);
2002 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
2003 if ((buflen
-= 8) < 0)
2005 WRITE64((u64
) statfs
.f_files
);
2007 if (bmval0
& FATTR4_WORD0_FS_LOCATIONS
) {
2008 status
= nfsd4_encode_fs_locations(rqstp
, exp
, &p
, &buflen
);
2009 if (status
== nfserr_resource
)
2014 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
2015 if ((buflen
-= 4) < 0)
2019 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
2020 if ((buflen
-= 8) < 0)
2024 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
2025 if ((buflen
-= 4) < 0)
2029 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
2030 if ((buflen
-= 4) < 0)
2032 WRITE32(statfs
.f_namelen
);
2034 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
2035 if ((buflen
-= 8) < 0)
2037 WRITE64((u64
) svc_max_payload(rqstp
));
2039 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
2040 if ((buflen
-= 8) < 0)
2042 WRITE64((u64
) svc_max_payload(rqstp
));
2044 if (bmval1
& FATTR4_WORD1_MODE
) {
2045 if ((buflen
-= 4) < 0)
2047 WRITE32(stat
.mode
& S_IALLUGO
);
2049 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
2050 if ((buflen
-= 4) < 0)
2054 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
2055 if ((buflen
-= 4) < 0)
2057 WRITE32(stat
.nlink
);
2059 if (bmval1
& FATTR4_WORD1_OWNER
) {
2060 status
= nfsd4_encode_user(rqstp
, stat
.uid
, &p
, &buflen
);
2061 if (status
== nfserr_resource
)
2066 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
2067 status
= nfsd4_encode_group(rqstp
, stat
.gid
, &p
, &buflen
);
2068 if (status
== nfserr_resource
)
2073 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
2074 if ((buflen
-= 8) < 0)
2076 WRITE32((u32
) MAJOR(stat
.rdev
));
2077 WRITE32((u32
) MINOR(stat
.rdev
));
2079 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
2080 if ((buflen
-= 8) < 0)
2082 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
2085 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
2086 if ((buflen
-= 8) < 0)
2088 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
2091 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
2092 if ((buflen
-= 8) < 0)
2094 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
2097 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
2098 if ((buflen
-= 8) < 0)
2100 dummy64
= (u64
)stat
.blocks
<< 9;
2103 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
2104 if ((buflen
-= 12) < 0)
2107 WRITE32(stat
.atime
.tv_sec
);
2108 WRITE32(stat
.atime
.tv_nsec
);
2110 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
2111 if ((buflen
-= 12) < 0)
2117 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
2118 if ((buflen
-= 12) < 0)
2121 WRITE32(stat
.ctime
.tv_sec
);
2122 WRITE32(stat
.ctime
.tv_nsec
);
2124 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
2125 if ((buflen
-= 12) < 0)
2128 WRITE32(stat
.mtime
.tv_sec
);
2129 WRITE32(stat
.mtime
.tv_nsec
);
2131 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
2132 if ((buflen
-= 8) < 0)
2135 * Get parent's attributes if not ignoring crossmount
2136 * and this is the root of a cross-mounted filesystem.
2138 if (ignore_crossmnt
== 0 &&
2139 dentry
== exp
->ex_path
.mnt
->mnt_root
) {
2140 struct path path
= exp
->ex_path
;
2142 while (follow_up(&path
)) {
2143 if (path
.dentry
!= path
.mnt
->mnt_root
)
2146 err
= vfs_getattr(path
.mnt
, path
.dentry
, &stat
);
2153 if (bmval2
& FATTR4_WORD2_SUPPATTR_EXCLCREAT
) {
2155 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0
);
2156 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1
);
2157 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2
);
2160 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2161 *countp
= p
- buffer
;
2170 status
= nfserrno(err
);
2174 status
= nfserr_resource
;
2177 status
= nfserr_serverfault
;
2181 static inline int attributes_need_mount(u32
*bmval
)
2183 if (bmval
[0] & ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_LEASE_TIME
))
2185 if (bmval
[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID
)
2191 nfsd4_encode_dirent_fattr(struct nfsd4_readdir
*cd
,
2192 const char *name
, int namlen
, __be32
*p
, int *buflen
)
2194 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
2195 struct dentry
*dentry
;
2197 int ignore_crossmnt
= 0;
2199 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
2201 return nfserrno(PTR_ERR(dentry
));
2202 if (!dentry
->d_inode
) {
2204 * nfsd_buffered_readdir drops the i_mutex between
2205 * readdir and calling this callback, leaving a window
2206 * where this directory entry could have gone away.
2209 return nfserr_noent
;
2214 * In the case of a mountpoint, the client may be asking for
2215 * attributes that are only properties of the underlying filesystem
2216 * as opposed to the cross-mounted file system. In such a case,
2217 * we will not follow the cross mount and will fill the attribtutes
2218 * directly from the mountpoint dentry.
2220 if (nfsd_mountpoint(dentry
, exp
)) {
2223 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
)
2224 && !attributes_need_mount(cd
->rd_bmval
)) {
2225 ignore_crossmnt
= 1;
2229 * Why the heck aren't we just using nfsd_lookup??
2230 * Different "."/".." handling? Something else?
2231 * At least, add a comment here to explain....
2233 err
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
, &exp
);
2235 nfserr
= nfserrno(err
);
2238 nfserr
= check_nfsd_access(exp
, cd
->rd_rqstp
);
2244 nfserr
= nfsd4_encode_fattr(NULL
, exp
, dentry
, p
, buflen
, cd
->rd_bmval
,
2245 cd
->rd_rqstp
, ignore_crossmnt
);
2253 nfsd4_encode_rdattr_error(__be32
*p
, int buflen
, __be32 nfserr
)
2260 *p
++ = htonl(FATTR4_WORD0_RDATTR_ERROR
); /* bmval0 */
2261 *p
++ = htonl(0); /* bmval1 */
2264 *p
++ = nfserr
; /* no htonl */
2265 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
2270 nfsd4_encode_dirent(void *ccdv
, const char *name
, int namlen
,
2271 loff_t offset
, u64 ino
, unsigned int d_type
)
2273 struct readdir_cd
*ccd
= ccdv
;
2274 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
2276 __be32
*p
= cd
->buffer
;
2278 __be32 nfserr
= nfserr_toosmall
;
2280 /* In nfsv4, "." and ".." never make it onto the wire.. */
2281 if (name
&& isdotent(name
, namlen
)) {
2282 cd
->common
.err
= nfs_ok
;
2287 xdr_encode_hyper(cd
->offset
, (u64
) offset
);
2289 buflen
= cd
->buflen
- 4 - XDR_QUADLEN(namlen
);
2293 *p
++ = xdr_one
; /* mark entry present */
2295 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
2296 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
2298 nfserr
= nfsd4_encode_dirent_fattr(cd
, name
, namlen
, p
, &buflen
);
2303 case nfserr_resource
:
2304 nfserr
= nfserr_toosmall
;
2312 * If the client requested the RDATTR_ERROR attribute,
2313 * we stuff the error code into this attribute
2314 * and continue. If this attribute was not requested,
2315 * then in accordance with the spec, we fail the
2316 * entire READDIR operation(!)
2318 if (!(cd
->rd_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
))
2320 p
= nfsd4_encode_rdattr_error(p
, buflen
, nfserr
);
2322 nfserr
= nfserr_toosmall
;
2326 cd
->buflen
-= (p
- cd
->buffer
);
2328 cd
->offset
= cookiep
;
2330 cd
->common
.err
= nfs_ok
;
2333 cd
->common
.err
= nfserr
;
2338 nfsd4_encode_stateid(struct nfsd4_compoundres
*resp
, stateid_t
*sid
)
2342 RESERVE_SPACE(sizeof(stateid_t
));
2343 WRITE32(sid
->si_generation
);
2344 WRITEMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
2349 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_access
*access
)
2355 WRITE32(access
->ac_supported
);
2356 WRITE32(access
->ac_resp_access
);
2363 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_close
*close
)
2365 ENCODE_SEQID_OP_HEAD
;
2368 nfsd4_encode_stateid(resp
, &close
->cl_stateid
);
2370 ENCODE_SEQID_OP_TAIL(close
->cl_stateowner
);
2376 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_commit
*commit
)
2382 WRITEMEM(commit
->co_verf
.data
, 8);
2389 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_create
*create
)
2395 write_cinfo(&p
, &create
->cr_cinfo
);
2397 WRITE32(create
->cr_bmval
[0]);
2398 WRITE32(create
->cr_bmval
[1]);
2405 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_getattr
*getattr
)
2407 struct svc_fh
*fhp
= getattr
->ga_fhp
;
2413 buflen
= resp
->end
- resp
->p
- (COMPOUND_ERR_SLACK_SPACE
>> 2);
2414 nfserr
= nfsd4_encode_fattr(fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
2415 resp
->p
, &buflen
, getattr
->ga_bmval
,
2423 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct svc_fh
**fhpp
)
2425 struct svc_fh
*fhp
= *fhpp
;
2430 len
= fhp
->fh_handle
.fh_size
;
2431 RESERVE_SPACE(len
+ 4);
2433 WRITEMEM(&fhp
->fh_handle
.fh_base
, len
);
2440 * Including all fields other than the name, a LOCK4denied structure requires
2441 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2444 nfsd4_encode_lock_denied(struct nfsd4_compoundres
*resp
, struct nfsd4_lock_denied
*ld
)
2448 RESERVE_SPACE(32 + XDR_LEN(ld
->ld_sop
? ld
->ld_sop
->so_owner
.len
: 0));
2449 WRITE64(ld
->ld_start
);
2450 WRITE64(ld
->ld_length
);
2451 WRITE32(ld
->ld_type
);
2453 WRITEMEM(&ld
->ld_clientid
, 8);
2454 WRITE32(ld
->ld_sop
->so_owner
.len
);
2455 WRITEMEM(ld
->ld_sop
->so_owner
.data
, ld
->ld_sop
->so_owner
.len
);
2456 kref_put(&ld
->ld_sop
->so_ref
, nfs4_free_stateowner
);
2457 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2458 WRITE64((u64
)0); /* clientid */
2459 WRITE32(0); /* length of owner name */
2465 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lock
*lock
)
2467 ENCODE_SEQID_OP_HEAD
;
2470 nfsd4_encode_stateid(resp
, &lock
->lk_resp_stateid
);
2471 else if (nfserr
== nfserr_denied
)
2472 nfsd4_encode_lock_denied(resp
, &lock
->lk_denied
);
2474 ENCODE_SEQID_OP_TAIL(lock
->lk_replay_owner
);
2479 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lockt
*lockt
)
2481 if (nfserr
== nfserr_denied
)
2482 nfsd4_encode_lock_denied(resp
, &lockt
->lt_denied
);
2487 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_locku
*locku
)
2489 ENCODE_SEQID_OP_HEAD
;
2492 nfsd4_encode_stateid(resp
, &locku
->lu_stateid
);
2494 ENCODE_SEQID_OP_TAIL(locku
->lu_stateowner
);
2500 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_link
*link
)
2506 write_cinfo(&p
, &link
->li_cinfo
);
2514 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open
*open
)
2517 ENCODE_SEQID_OP_HEAD
;
2522 nfsd4_encode_stateid(resp
, &open
->op_stateid
);
2524 write_cinfo(&p
, &open
->op_cinfo
);
2525 WRITE32(open
->op_rflags
);
2527 WRITE32(open
->op_bmval
[0]);
2528 WRITE32(open
->op_bmval
[1]);
2529 WRITE32(open
->op_delegate_type
);
2532 switch (open
->op_delegate_type
) {
2533 case NFS4_OPEN_DELEGATE_NONE
:
2535 case NFS4_OPEN_DELEGATE_READ
:
2536 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2538 WRITE32(open
->op_recall
);
2541 * TODO: ACE's in delegations
2543 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2546 WRITE32(0); /* XXX: is NULL principal ok? */
2549 case NFS4_OPEN_DELEGATE_WRITE
:
2550 nfsd4_encode_stateid(resp
, &open
->op_delegate_stateid
);
2555 * TODO: space_limit's in delegations
2557 WRITE32(NFS4_LIMIT_SIZE
);
2562 * TODO: ACE's in delegations
2564 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2567 WRITE32(0); /* XXX: is NULL principal ok? */
2573 /* XXX save filehandle here */
2575 ENCODE_SEQID_OP_TAIL(open
->op_stateowner
);
2580 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_confirm
*oc
)
2582 ENCODE_SEQID_OP_HEAD
;
2585 nfsd4_encode_stateid(resp
, &oc
->oc_resp_stateid
);
2587 ENCODE_SEQID_OP_TAIL(oc
->oc_stateowner
);
2592 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_downgrade
*od
)
2594 ENCODE_SEQID_OP_HEAD
;
2597 nfsd4_encode_stateid(resp
, &od
->od_stateid
);
2599 ENCODE_SEQID_OP_TAIL(od
->od_stateowner
);
2604 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
2605 struct nfsd4_read
*read
)
2609 unsigned long maxcount
;
2615 if (resp
->xbuf
->page_len
)
2616 return nfserr_resource
;
2618 RESERVE_SPACE(8); /* eof flag and byte count */
2620 maxcount
= svc_max_payload(resp
->rqstp
);
2621 if (maxcount
> read
->rd_length
)
2622 maxcount
= read
->rd_length
;
2627 pn
= resp
->rqstp
->rq_resused
++;
2628 resp
->rqstp
->rq_vec
[v
].iov_base
=
2629 page_address(resp
->rqstp
->rq_respages
[pn
]);
2630 resp
->rqstp
->rq_vec
[v
].iov_len
=
2631 len
< PAGE_SIZE
? len
: PAGE_SIZE
;
2637 nfserr
= nfsd_read_file(read
->rd_rqstp
, read
->rd_fhp
, read
->rd_filp
,
2638 read
->rd_offset
, resp
->rqstp
->rq_vec
, read
->rd_vlen
,
2641 if (nfserr
== nfserr_symlink
)
2642 nfserr
= nfserr_inval
;
2645 eof
= (read
->rd_offset
+ maxcount
>=
2646 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
2651 resp
->xbuf
->head
[0].iov_len
= (char*)p
2652 - (char*)resp
->xbuf
->head
[0].iov_base
;
2653 resp
->xbuf
->page_len
= maxcount
;
2655 /* Use rest of head for padding and remaining ops: */
2656 resp
->xbuf
->tail
[0].iov_base
= p
;
2657 resp
->xbuf
->tail
[0].iov_len
= 0;
2661 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2662 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2669 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readlink
*readlink
)
2677 if (resp
->xbuf
->page_len
)
2678 return nfserr_resource
;
2680 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
2682 maxcount
= PAGE_SIZE
;
2686 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2687 * if they would overflow the buffer. Is this kosher in NFSv4? If
2688 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2689 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2691 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
, page
, &maxcount
);
2692 if (nfserr
== nfserr_isdir
)
2693 return nfserr_inval
;
2699 resp
->xbuf
->head
[0].iov_len
= (char*)p
2700 - (char*)resp
->xbuf
->head
[0].iov_base
;
2701 resp
->xbuf
->page_len
= maxcount
;
2703 /* Use rest of head for padding and remaining ops: */
2704 resp
->xbuf
->tail
[0].iov_base
= p
;
2705 resp
->xbuf
->tail
[0].iov_len
= 0;
2709 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2710 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2717 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readdir
*readdir
)
2721 __be32
*page
, *savep
, *tailbase
;
2726 if (resp
->xbuf
->page_len
)
2727 return nfserr_resource
;
2729 RESERVE_SPACE(8); /* verifier */
2732 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2736 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
2739 maxcount
= PAGE_SIZE
;
2740 if (maxcount
> readdir
->rd_maxcount
)
2741 maxcount
= readdir
->rd_maxcount
;
2744 * Convert from bytes to words, account for the two words already
2745 * written, make sure to leave two words at the end for the next
2746 * pointer and eof field.
2748 maxcount
= (maxcount
>> 2) - 4;
2750 nfserr
= nfserr_toosmall
;
2754 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
++]);
2755 readdir
->common
.err
= 0;
2756 readdir
->buflen
= maxcount
;
2757 readdir
->buffer
= page
;
2758 readdir
->offset
= NULL
;
2760 offset
= readdir
->rd_cookie
;
2761 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
2763 &readdir
->common
, nfsd4_encode_dirent
);
2764 if (nfserr
== nfs_ok
&&
2765 readdir
->common
.err
== nfserr_toosmall
&&
2766 readdir
->buffer
== page
)
2767 nfserr
= nfserr_toosmall
;
2768 if (nfserr
== nfserr_symlink
)
2769 nfserr
= nfserr_notdir
;
2773 if (readdir
->offset
)
2774 xdr_encode_hyper(readdir
->offset
, offset
);
2776 p
= readdir
->buffer
;
2777 *p
++ = 0; /* no more entries */
2778 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
2779 resp
->xbuf
->page_len
= ((char*)p
) - (char*)page_address(
2780 resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2782 /* Use rest of head for padding and remaining ops: */
2783 resp
->xbuf
->tail
[0].iov_base
= tailbase
;
2784 resp
->xbuf
->tail
[0].iov_len
= 0;
2785 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
2786 resp
->end
= resp
->p
+ (PAGE_SIZE
- resp
->xbuf
->head
[0].iov_len
)/4;
2796 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_remove
*remove
)
2802 write_cinfo(&p
, &remove
->rm_cinfo
);
2809 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_rename
*rename
)
2815 write_cinfo(&p
, &rename
->rn_sinfo
);
2816 write_cinfo(&p
, &rename
->rn_tinfo
);
2823 nfsd4_encode_secinfo(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
2824 struct nfsd4_secinfo
*secinfo
)
2827 struct svc_export
*exp
= secinfo
->si_exp
;
2829 struct exp_flavor_info
*flavs
;
2830 struct exp_flavor_info def_flavs
[2];
2835 if (exp
->ex_nflavors
) {
2836 flavs
= exp
->ex_flavors
;
2837 nflavs
= exp
->ex_nflavors
;
2838 } else { /* Handling of some defaults in absence of real secinfo: */
2840 if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_UNIX
) {
2842 flavs
[0].pseudoflavor
= RPC_AUTH_UNIX
;
2843 flavs
[1].pseudoflavor
= RPC_AUTH_NULL
;
2844 } else if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_GSS
) {
2846 flavs
[0].pseudoflavor
2847 = svcauth_gss_flavor(exp
->ex_client
);
2850 flavs
[0].pseudoflavor
2851 = exp
->ex_client
->flavour
->flavour
;
2858 for (i
= 0; i
< nflavs
; i
++) {
2859 u32 flav
= flavs
[i
].pseudoflavor
;
2860 struct gss_api_mech
*gm
= gss_mech_get_by_pseudoflavor(flav
);
2864 WRITE32(RPC_AUTH_GSS
);
2866 RESERVE_SPACE(4 + gm
->gm_oid
.len
);
2867 WRITE32(gm
->gm_oid
.len
);
2868 WRITEMEM(gm
->gm_oid
.data
, gm
->gm_oid
.len
);
2871 WRITE32(0); /* qop */
2874 WRITE32(gss_pseudoflavor_to_service(gm
, flav
));
2890 * The SETATTR encode routine is special -- it always encodes a bitmap,
2891 * regardless of the error status.
2894 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setattr
*setattr
)
2906 WRITE32(setattr
->sa_bmval
[0]);
2907 WRITE32(setattr
->sa_bmval
[1]);
2914 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setclientid
*scd
)
2919 RESERVE_SPACE(8 + sizeof(nfs4_verifier
));
2920 WRITEMEM(&scd
->se_clientid
, 8);
2921 WRITEMEM(&scd
->se_confirm
, sizeof(nfs4_verifier
));
2924 else if (nfserr
== nfserr_clid_inuse
) {
2934 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_write
*write
)
2940 WRITE32(write
->wr_bytes_written
);
2941 WRITE32(write
->wr_how_written
);
2942 WRITEMEM(write
->wr_verifier
.data
, 8);
2949 nfsd4_encode_exchange_id(struct nfsd4_compoundres
*resp
, int nfserr
,
2950 struct nfsd4_exchange_id
*exid
)
2956 int server_scope_sz
;
2957 uint64_t minor_id
= 0;
2962 major_id
= utsname()->nodename
;
2963 major_id_sz
= strlen(major_id
);
2964 server_scope
= utsname()->nodename
;
2965 server_scope_sz
= strlen(server_scope
);
2968 8 /* eir_clientid */ +
2969 4 /* eir_sequenceid */ +
2971 4 /* spr_how (SP4_NONE) */ +
2972 8 /* so_minor_id */ +
2973 4 /* so_major_id.len */ +
2974 (XDR_QUADLEN(major_id_sz
) * 4) +
2975 4 /* eir_server_scope.len */ +
2976 (XDR_QUADLEN(server_scope_sz
) * 4) +
2977 4 /* eir_server_impl_id.count (0) */);
2979 WRITEMEM(&exid
->clientid
, 8);
2980 WRITE32(exid
->seqid
);
2981 WRITE32(exid
->flags
);
2983 /* state_protect4_r. Currently only support SP4_NONE */
2984 BUG_ON(exid
->spa_how
!= SP4_NONE
);
2985 WRITE32(exid
->spa_how
);
2987 /* The server_owner struct */
2988 WRITE64(minor_id
); /* Minor id */
2990 WRITE32(major_id_sz
);
2991 WRITEMEM(major_id
, major_id_sz
);
2994 WRITE32(server_scope_sz
);
2995 WRITEMEM(server_scope
, server_scope_sz
);
2997 /* Implementation id */
2998 WRITE32(0); /* zero length nfs_impl_id4 array */
3004 nfsd4_encode_create_session(struct nfsd4_compoundres
*resp
, int nfserr
,
3005 struct nfsd4_create_session
*sess
)
3013 WRITEMEM(sess
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
3014 WRITE32(sess
->seqid
);
3015 WRITE32(sess
->flags
);
3019 WRITE32(0); /* headerpadsz */
3020 WRITE32(sess
->fore_channel
.maxreq_sz
);
3021 WRITE32(sess
->fore_channel
.maxresp_sz
);
3022 WRITE32(sess
->fore_channel
.maxresp_cached
);
3023 WRITE32(sess
->fore_channel
.maxops
);
3024 WRITE32(sess
->fore_channel
.maxreqs
);
3025 WRITE32(sess
->fore_channel
.nr_rdma_attrs
);
3028 if (sess
->fore_channel
.nr_rdma_attrs
) {
3030 WRITE32(sess
->fore_channel
.rdma_attrs
);
3035 WRITE32(0); /* headerpadsz */
3036 WRITE32(sess
->back_channel
.maxreq_sz
);
3037 WRITE32(sess
->back_channel
.maxresp_sz
);
3038 WRITE32(sess
->back_channel
.maxresp_cached
);
3039 WRITE32(sess
->back_channel
.maxops
);
3040 WRITE32(sess
->back_channel
.maxreqs
);
3041 WRITE32(sess
->back_channel
.nr_rdma_attrs
);
3044 if (sess
->back_channel
.nr_rdma_attrs
) {
3046 WRITE32(sess
->back_channel
.rdma_attrs
);
3053 nfsd4_encode_destroy_session(struct nfsd4_compoundres
*resp
, int nfserr
,
3054 struct nfsd4_destroy_session
*destroy_session
)
3060 nfsd4_encode_sequence(struct nfsd4_compoundres
*resp
, int nfserr
,
3061 struct nfsd4_sequence
*seq
)
3068 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN
+ 20);
3069 WRITEMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
3070 WRITE32(seq
->seqid
);
3071 WRITE32(seq
->slotid
);
3072 WRITE32(seq
->maxslots
);
3075 * target_maxslots = maxslots
3078 WRITE32(seq
->maxslots
);
3082 resp
->cstate
.datap
= p
; /* DRC cache data pointer */
3087 nfsd4_encode_noop(struct nfsd4_compoundres
*resp
, __be32 nfserr
, void *p
)
3092 typedef __be32(* nfsd4_enc
)(struct nfsd4_compoundres
*, __be32
, void *);
3095 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3096 * since we don't need to filter out obsolete ops as this is
3097 * done in the decoding phase.
3099 static nfsd4_enc nfsd4_enc_ops
[] = {
3100 [OP_ACCESS
] = (nfsd4_enc
)nfsd4_encode_access
,
3101 [OP_CLOSE
] = (nfsd4_enc
)nfsd4_encode_close
,
3102 [OP_COMMIT
] = (nfsd4_enc
)nfsd4_encode_commit
,
3103 [OP_CREATE
] = (nfsd4_enc
)nfsd4_encode_create
,
3104 [OP_DELEGPURGE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3105 [OP_DELEGRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3106 [OP_GETATTR
] = (nfsd4_enc
)nfsd4_encode_getattr
,
3107 [OP_GETFH
] = (nfsd4_enc
)nfsd4_encode_getfh
,
3108 [OP_LINK
] = (nfsd4_enc
)nfsd4_encode_link
,
3109 [OP_LOCK
] = (nfsd4_enc
)nfsd4_encode_lock
,
3110 [OP_LOCKT
] = (nfsd4_enc
)nfsd4_encode_lockt
,
3111 [OP_LOCKU
] = (nfsd4_enc
)nfsd4_encode_locku
,
3112 [OP_LOOKUP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3113 [OP_LOOKUPP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3114 [OP_NVERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3115 [OP_OPEN
] = (nfsd4_enc
)nfsd4_encode_open
,
3116 [OP_OPENATTR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3117 [OP_OPEN_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_open_confirm
,
3118 [OP_OPEN_DOWNGRADE
] = (nfsd4_enc
)nfsd4_encode_open_downgrade
,
3119 [OP_PUTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3120 [OP_PUTPUBFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3121 [OP_PUTROOTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3122 [OP_READ
] = (nfsd4_enc
)nfsd4_encode_read
,
3123 [OP_READDIR
] = (nfsd4_enc
)nfsd4_encode_readdir
,
3124 [OP_READLINK
] = (nfsd4_enc
)nfsd4_encode_readlink
,
3125 [OP_REMOVE
] = (nfsd4_enc
)nfsd4_encode_remove
,
3126 [OP_RENAME
] = (nfsd4_enc
)nfsd4_encode_rename
,
3127 [OP_RENEW
] = (nfsd4_enc
)nfsd4_encode_noop
,
3128 [OP_RESTOREFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3129 [OP_SAVEFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3130 [OP_SECINFO
] = (nfsd4_enc
)nfsd4_encode_secinfo
,
3131 [OP_SETATTR
] = (nfsd4_enc
)nfsd4_encode_setattr
,
3132 [OP_SETCLIENTID
] = (nfsd4_enc
)nfsd4_encode_setclientid
,
3133 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_noop
,
3134 [OP_VERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3135 [OP_WRITE
] = (nfsd4_enc
)nfsd4_encode_write
,
3136 [OP_RELEASE_LOCKOWNER
] = (nfsd4_enc
)nfsd4_encode_noop
,
3138 /* NFSv4.1 operations */
3139 [OP_BACKCHANNEL_CTL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3140 [OP_BIND_CONN_TO_SESSION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3141 [OP_EXCHANGE_ID
] = (nfsd4_enc
)nfsd4_encode_exchange_id
,
3142 [OP_CREATE_SESSION
] = (nfsd4_enc
)nfsd4_encode_create_session
,
3143 [OP_DESTROY_SESSION
] = (nfsd4_enc
)nfsd4_encode_destroy_session
,
3144 [OP_FREE_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3145 [OP_GET_DIR_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3146 [OP_GETDEVICEINFO
] = (nfsd4_enc
)nfsd4_encode_noop
,
3147 [OP_GETDEVICELIST
] = (nfsd4_enc
)nfsd4_encode_noop
,
3148 [OP_LAYOUTCOMMIT
] = (nfsd4_enc
)nfsd4_encode_noop
,
3149 [OP_LAYOUTGET
] = (nfsd4_enc
)nfsd4_encode_noop
,
3150 [OP_LAYOUTRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3151 [OP_SECINFO_NO_NAME
] = (nfsd4_enc
)nfsd4_encode_noop
,
3152 [OP_SEQUENCE
] = (nfsd4_enc
)nfsd4_encode_sequence
,
3153 [OP_SET_SSV
] = (nfsd4_enc
)nfsd4_encode_noop
,
3154 [OP_TEST_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3155 [OP_WANT_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3156 [OP_DESTROY_CLIENTID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3157 [OP_RECLAIM_COMPLETE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3161 * Calculate the total amount of memory that the compound response has taken
3162 * after encoding the current operation.
3164 * pad: add on 8 bytes for the next operation's op_code and status so that
3165 * there is room to cache a failure on the next operation.
3167 * Compare this length to the session se_fmaxresp_cached.
3169 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3170 * will be at least a page and will therefore hold the xdr_buf head.
3172 static int nfsd4_check_drc_limit(struct nfsd4_compoundres
*resp
)
3175 struct xdr_buf
*xb
= &resp
->rqstp
->rq_res
;
3176 struct nfsd4_compoundargs
*args
= resp
->rqstp
->rq_argp
;
3177 struct nfsd4_session
*session
= NULL
;
3178 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3179 u32 length
, tlen
= 0, pad
= 8;
3181 if (!nfsd4_has_session(&resp
->cstate
))
3184 session
= resp
->cstate
.session
;
3185 if (session
== NULL
|| slot
->sl_cachethis
== 0)
3188 if (resp
->opcnt
>= args
->opcnt
)
3189 pad
= 0; /* this is the last operation */
3191 if (xb
->page_len
== 0) {
3192 length
= (char *)resp
->p
- (char *)xb
->head
[0].iov_base
+ pad
;
3194 if (xb
->tail
[0].iov_base
&& xb
->tail
[0].iov_len
> 0)
3195 tlen
= (char *)resp
->p
- (char *)xb
->tail
[0].iov_base
;
3197 length
= xb
->head
[0].iov_len
+ xb
->page_len
+ tlen
+ pad
;
3199 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__
,
3200 length
, xb
->page_len
, tlen
, pad
);
3202 if (length
<= session
->se_fchannel
.maxresp_cached
)
3205 return nfserr_rep_too_big_to_cache
;
3209 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3216 statp
= p
++; /* to be backfilled at the end */
3219 if (op
->opnum
== OP_ILLEGAL
)
3221 BUG_ON(op
->opnum
< 0 || op
->opnum
>= ARRAY_SIZE(nfsd4_enc_ops
) ||
3222 !nfsd4_enc_ops
[op
->opnum
]);
3223 op
->status
= nfsd4_enc_ops
[op
->opnum
](resp
, op
->status
, &op
->u
);
3224 /* nfsd4_check_drc_limit guarantees enough room for error status */
3225 if (!op
->status
&& nfsd4_check_drc_limit(resp
))
3226 op
->status
= nfserr_rep_too_big_to_cache
;
3229 * Note: We write the status directly, instead of using WRITE32(),
3230 * since it is already in network byte order.
3232 *statp
= op
->status
;
3236 * Encode the reply stored in the stateowner reply cache
3238 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3239 * previously sent already encoded operation.
3241 * called with nfs4_lock_state() held
3244 nfsd4_encode_replay(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3247 struct nfs4_replay
*rp
= op
->replay
;
3253 *p
++ = rp
->rp_status
; /* already xdr'ed */
3256 RESERVE_SPACE(rp
->rp_buflen
);
3257 WRITEMEM(rp
->rp_buf
, rp
->rp_buflen
);
3262 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
3264 return xdr_ressize_check(rqstp
, p
);
3267 void nfsd4_release_compoundargs(struct nfsd4_compoundargs
*args
)
3269 if (args
->ops
!= args
->iops
) {
3271 args
->ops
= args
->iops
;
3275 while (args
->to_free
) {
3276 struct tmpbuf
*tb
= args
->to_free
;
3277 args
->to_free
= tb
->next
;
3278 tb
->release(tb
->buf
);
3284 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundargs
*args
)
3289 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
3290 args
->pagelist
= rqstp
->rq_arg
.pages
;
3291 args
->pagelen
= rqstp
->rq_arg
.page_len
;
3293 args
->to_free
= NULL
;
3294 args
->ops
= args
->iops
;
3295 args
->rqstp
= rqstp
;
3297 status
= nfsd4_decode_compound(args
);
3299 nfsd4_release_compoundargs(args
);
3305 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundres
*resp
)
3308 * All that remains is to write the tag and operation count...
3310 struct nfsd4_compound_state
*cs
= &resp
->cstate
;
3313 *p
++ = htonl(resp
->taglen
);
3314 memcpy(p
, resp
->tag
, resp
->taglen
);
3315 p
+= XDR_QUADLEN(resp
->taglen
);
3316 *p
++ = htonl(resp
->opcnt
);
3318 if (rqstp
->rq_res
.page_len
)
3319 iov
= &rqstp
->rq_res
.tail
[0];
3321 iov
= &rqstp
->rq_res
.head
[0];
3322 iov
->iov_len
= ((char*)resp
->p
) - (char*)iov
->iov_base
;
3323 BUG_ON(iov
->iov_len
> PAGE_SIZE
);
3324 if (nfsd4_has_session(cs
)) {
3325 if (cs
->status
!= nfserr_replay_cache
) {
3326 nfsd4_store_cache_entry(resp
);
3327 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__
);
3328 cs
->slot
->sl_inuse
= false;
3330 /* Renew the clientid on success and on replay */
3331 release_session_client(cs
->session
);
3332 nfsd4_put_session(cs
->session
);