4 * Server-side XDR for NFSv4
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 * TODO: Neil Brown made the following observation: We currently
38 * initially reserve NFSD_BUFSIZE space on the transmit queue and
39 * never release any of that until the request is complete.
40 * It would be good to calculate a new maximum response size while
41 * decoding the COMPOUND, and call svc_reserve with this number
42 * at the end of nfs4svc_decode_compoundargs.
45 #include <linux/param.h>
46 #include <linux/smp.h>
47 #include <linux/smp_lock.h>
49 #include <linux/namei.h>
50 #include <linux/vfs.h>
51 #include <linux/sunrpc/xdr.h>
52 #include <linux/sunrpc/svc.h>
53 #include <linux/sunrpc/clnt.h>
54 #include <linux/nfsd/nfsd.h>
55 #include <linux/nfsd/state.h>
56 #include <linux/nfsd/xdr4.h>
57 #include <linux/nfsd_idmap.h>
58 #include <linux/nfs4.h>
59 #include <linux/nfs4_acl.h>
61 #define NFSDDBG_FACILITY NFSDDBG_XDR
63 static const char utf8_byte_len
[256] = {
64 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
65 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
66 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
67 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
68 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
69 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
70 0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
71 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4,5,5,5,5,6,6,0,0
75 is_legal_utf8_sequence(unsigned char *source
, int length
)
80 if (length
==1) return 1;
82 /* Check for overlong sequence, and check second byte */
85 case 0xE0: /* 3 bytes */
86 if ( c
< 0xA0 ) return 0;
88 case 0xF0: /* 4 bytes */
89 if ( c
< 0x90 ) return 0;
91 case 0xF8: /* 5 bytes */
92 if ( c
< 0xC8 ) return 0;
94 case 0xFC: /* 6 bytes */
95 if ( c
< 0x84 ) return 0;
98 if ( (c
& 0xC0) != 0x80) return 0;
101 /* Check that trailing bytes look like 10xxxxxx */
102 for (ptr
= source
++ + length
- 1; ptr
>source
; ptr
--)
103 if ( ((*ptr
) & 0xC0) != 0x80 ) return 0;
107 /* This does some screening on disallowed unicode characters. It is NOT
111 is_allowed_utf8_char(unsigned char *source
, int length
)
113 /* We assume length and source point to a valid utf8 sequence */
116 /* Disallow F0000 and up (in utf8, F3B08080) */
117 if (*source
> 0xF3 ) return 0;
121 if (c
>= 0xB0) return 0;
123 /* Disallow D800-F8FF (in utf8, EDA080-EFA3BF */
125 if (c
>= 0xA0) return 0;
131 if (c
<= 0xA3) return 0;
132 /* Disallow FFF9-FFFF (EFBFB9-EFBFBF) */
134 /* Don't need to check <=0xBF, since valid utf8 */
135 if ( *(source
+2) >= 0xB9) return 0;
141 /* This routine should really check to see that the proper stringprep
142 * mappings have been applied. Instead, we do a simple screen of some
143 * of the more obvious illegal values by calling is_allowed_utf8_char.
144 * This will allow many illegal strings through, but if a client behaves,
145 * it will get full functionality. The other option (apart from full
146 * stringprep checking) is to limit everything to an easily handled subset,
147 * such as 7-bit ascii.
149 * Note - currently calling routines ignore return value except as boolean.
152 check_utf8(char *str
, int len
)
154 unsigned char *chunk
, *sourceend
;
158 sourceend
= str
+ len
;
160 while (chunk
< sourceend
) {
161 chunklen
= utf8_byte_len
[*chunk
];
164 if (chunk
+ chunklen
> sourceend
)
166 if (!is_legal_utf8_sequence(chunk
, chunklen
))
168 if (!is_allowed_utf8_char(chunk
, chunklen
))
170 if ( (chunklen
==1) && (!*chunk
) )
171 return nfserr_inval
; /* Disallow embedded nulls */
179 check_filename(char *str
, int len
, int err
)
185 if (isdotent(str
, len
))
187 for (i
= 0; i
< len
; i
++)
190 return check_utf8(str
, len
);
194 * START OF "GENERIC" DECODE ROUTINES.
195 * These may look a little ugly since they are imported from a "generic"
196 * set of XDR encode/decode routines which are intended to be shared by
197 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
199 * If the pain of reading these is too great, it should be a straightforward
200 * task to translate them into Linux-specific versions which are more
201 * consistent with the style used in NFSv2/v3...
203 #define DECODE_HEAD \
206 #define DECODE_TAIL \
211 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
212 status = nfserr_bad_xdr; \
215 #define READ32(x) (x) = ntohl(*p++)
216 #define READ64(x) do { \
217 (x) = (u64)ntohl(*p++) << 32; \
218 (x) |= ntohl(*p++); \
220 #define READTIME(x) do { \
225 #define READMEM(x,nbytes) do { \
227 p += XDR_QUADLEN(nbytes); \
229 #define SAVEMEM(x,nbytes) do { \
230 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
231 savemem(argp, p, nbytes) : \
233 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
236 p += XDR_QUADLEN(nbytes); \
238 #define COPYMEM(x,nbytes) do { \
239 memcpy((x), p, nbytes); \
240 p += XDR_QUADLEN(nbytes); \
243 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
244 #define READ_BUF(nbytes) do { \
245 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
247 argp->p += XDR_QUADLEN(nbytes); \
248 } else if (!(p = read_buf(argp, nbytes))) { \
249 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
254 u32
*read_buf(struct nfsd4_compoundargs
*argp
, int nbytes
)
256 /* We want more bytes than seem to be available.
257 * Maybe we need a new page, maybe we have just run out
259 int avail
= (char*)argp
->end
- (char*)argp
->p
;
261 if (avail
+ argp
->pagelen
< nbytes
)
263 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
265 /* ok, we can do it with the current plus the next page */
266 if (nbytes
<= sizeof(argp
->tmp
))
271 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
276 memcpy(p
, argp
->p
, avail
);
277 /* step to next page */
278 argp
->p
= page_address(argp
->pagelist
[0]);
280 if (argp
->pagelen
< PAGE_SIZE
) {
281 argp
->end
= p
+ (argp
->pagelen
>>2);
284 argp
->end
= p
+ (PAGE_SIZE
>>2);
285 argp
->pagelen
-= PAGE_SIZE
;
287 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
288 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
293 defer_free(struct nfsd4_compoundargs
*argp
,
294 void (*release
)(const void *), void *p
)
298 tb
= kmalloc(sizeof(*tb
), GFP_KERNEL
);
302 tb
->release
= release
;
303 tb
->next
= argp
->to_free
;
308 char *savemem(struct nfsd4_compoundargs
*argp
, u32
*p
, int nbytes
)
311 if (p
== argp
->tmp
) {
312 new = kmalloc(nbytes
, GFP_KERNEL
);
313 if (!new) return NULL
;
315 memcpy(p
, argp
->tmp
, nbytes
);
321 if (defer_free(argp
, kfree
, p
)) {
330 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
343 READ_BUF(bmlen
<< 2);
353 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
, struct iattr
*iattr
,
354 struct nfs4_acl
**acl
)
356 int expected_len
, len
= 0;
362 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
366 * According to spec, unsupported attributes return ERR_NOTSUPP;
367 * read-only attributes return ERR_INVAL.
369 if ((bmval
[0] & ~NFSD_SUPPORTED_ATTRS_WORD0
) || (bmval
[1] & ~NFSD_SUPPORTED_ATTRS_WORD1
))
370 return nfserr_attrnotsupp
;
371 if ((bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
) || (bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
))
375 READ32(expected_len
);
377 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
380 READ64(iattr
->ia_size
);
381 iattr
->ia_valid
|= ATTR_SIZE
;
383 if (bmval
[0] & FATTR4_WORD0_ACL
) {
387 READ_BUF(4); len
+= 4;
390 *acl
= nfs4_acl_new();
395 defer_free(argp
, (void (*)(const void *))nfs4_acl_free
, *acl
);
397 for (i
= 0; i
< nace
; i
++) {
398 READ_BUF(16); len
+= 16;
401 READ32(ace
.access_mask
);
404 len
+= XDR_QUADLEN(dummy32
) << 2;
405 READMEM(buf
, dummy32
);
406 if (check_utf8(buf
, dummy32
))
408 ace
.whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
410 if (ace
.whotype
!= NFS4_ACL_WHO_NAMED
)
412 else if (ace
.flag
& NFS4_ACE_IDENTIFIER_GROUP
)
413 status
= nfsd_map_name_to_gid(argp
->rqstp
,
414 buf
, dummy32
, &ace
.who
);
416 status
= nfsd_map_name_to_uid(argp
->rqstp
,
417 buf
, dummy32
, &ace
.who
);
420 if (nfs4_acl_add_ace(*acl
, ace
.type
, ace
.flag
,
421 ace
.access_mask
, ace
.whotype
, ace
.who
) != 0) {
428 if (bmval
[1] & FATTR4_WORD1_MODE
) {
431 READ32(iattr
->ia_mode
);
432 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
433 iattr
->ia_valid
|= ATTR_MODE
;
435 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
440 len
+= (XDR_QUADLEN(dummy32
) << 2);
441 READMEM(buf
, dummy32
);
442 if (check_utf8(buf
, dummy32
))
444 if ((status
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
446 iattr
->ia_valid
|= ATTR_UID
;
448 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
453 len
+= (XDR_QUADLEN(dummy32
) << 2);
454 READMEM(buf
, dummy32
);
455 if (check_utf8(buf
, dummy32
))
457 if ((status
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
459 iattr
->ia_valid
|= ATTR_GID
;
461 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
466 case NFS4_SET_TO_CLIENT_TIME
:
467 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
468 all 32 bits of 'nseconds'. */
474 READ32(iattr
->ia_atime
.tv_sec
);
475 READ32(iattr
->ia_atime
.tv_nsec
);
476 if (iattr
->ia_atime
.tv_nsec
>= (u32
)1000000000)
478 iattr
->ia_valid
|= (ATTR_ATIME
| ATTR_ATIME_SET
);
480 case NFS4_SET_TO_SERVER_TIME
:
481 iattr
->ia_valid
|= ATTR_ATIME
;
487 if (bmval
[1] & FATTR4_WORD1_TIME_METADATA
) {
488 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
489 all 32 bits of 'nseconds'. */
495 READ32(iattr
->ia_ctime
.tv_sec
);
496 READ32(iattr
->ia_ctime
.tv_nsec
);
497 if (iattr
->ia_ctime
.tv_nsec
>= (u32
)1000000000)
499 iattr
->ia_valid
|= ATTR_CTIME
;
501 if (bmval
[1] & FATTR4_WORD1_TIME_MODIFY_SET
) {
506 case NFS4_SET_TO_CLIENT_TIME
:
507 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
508 all 32 bits of 'nseconds'. */
514 READ32(iattr
->ia_mtime
.tv_sec
);
515 READ32(iattr
->ia_mtime
.tv_nsec
);
516 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
518 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
520 case NFS4_SET_TO_SERVER_TIME
:
521 iattr
->ia_valid
|= ATTR_MTIME
;
527 if (len
!= expected_len
)
533 status
= nfserrno(status
);
538 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
543 READ32(access
->ac_req_access
);
548 #define NFS4_STATE_NOT_LOCKED ((void *)-1)
551 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
555 close
->cl_stateowner
= NFS4_STATE_NOT_LOCKED
;
556 READ_BUF(4 + sizeof(stateid_t
));
557 READ32(close
->cl_seqid
);
558 READ32(close
->cl_stateid
.si_generation
);
559 COPYMEM(&close
->cl_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
566 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
571 READ64(commit
->co_offset
);
572 READ32(commit
->co_count
);
578 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
583 READ32(create
->cr_type
);
584 switch (create
->cr_type
) {
587 READ32(create
->cr_linklen
);
588 READ_BUF(create
->cr_linklen
);
589 SAVEMEM(create
->cr_linkname
, create
->cr_linklen
);
590 if (check_utf8(create
->cr_linkname
, create
->cr_linklen
))
596 READ32(create
->cr_specdata1
);
597 READ32(create
->cr_specdata2
);
607 READ32(create
->cr_namelen
);
608 READ_BUF(create
->cr_namelen
);
609 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
610 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
, nfserr_inval
)))
613 if ((status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
, &create
->cr_acl
)))
620 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
622 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
626 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
631 READ32(link
->li_namelen
);
632 READ_BUF(link
->li_namelen
);
633 SAVEMEM(link
->li_name
, link
->li_namelen
);
634 if ((status
= check_filename(link
->li_name
, link
->li_namelen
, nfserr_inval
)))
641 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
645 lock
->lk_stateowner
= NFS4_STATE_NOT_LOCKED
;
647 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
650 READ32(lock
->lk_type
);
651 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
653 READ32(lock
->lk_reclaim
);
654 READ64(lock
->lk_offset
);
655 READ64(lock
->lk_length
);
656 READ32(lock
->lk_is_new
);
658 if (lock
->lk_is_new
) {
660 READ32(lock
->lk_new_open_seqid
);
661 READ32(lock
->lk_new_open_stateid
.si_generation
);
663 COPYMEM(&lock
->lk_new_open_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
664 READ32(lock
->lk_new_lock_seqid
);
665 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
666 READ32(lock
->lk_new_owner
.len
);
667 READ_BUF(lock
->lk_new_owner
.len
);
668 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
671 READ32(lock
->lk_old_lock_stateid
.si_generation
);
672 COPYMEM(&lock
->lk_old_lock_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
673 READ32(lock
->lk_old_lock_seqid
);
680 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
685 READ32(lockt
->lt_type
);
686 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
688 READ64(lockt
->lt_offset
);
689 READ64(lockt
->lt_length
);
690 COPYMEM(&lockt
->lt_clientid
, 8);
691 READ32(lockt
->lt_owner
.len
);
692 READ_BUF(lockt
->lt_owner
.len
);
693 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
699 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
703 locku
->lu_stateowner
= NFS4_STATE_NOT_LOCKED
;
704 READ_BUF(24 + sizeof(stateid_t
));
705 READ32(locku
->lu_type
);
706 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
708 READ32(locku
->lu_seqid
);
709 READ32(locku
->lu_stateid
.si_generation
);
710 COPYMEM(&locku
->lu_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
711 READ64(locku
->lu_offset
);
712 READ64(locku
->lu_length
);
718 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
723 READ32(lookup
->lo_len
);
724 READ_BUF(lookup
->lo_len
);
725 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
726 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
, nfserr_noent
)))
733 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
737 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
738 open
->op_iattr
.ia_valid
= 0;
739 open
->op_stateowner
= NFS4_STATE_NOT_LOCKED
;
741 /* seqid, share_access, share_deny, clientid, ownerlen */
742 READ_BUF(16 + sizeof(clientid_t
));
743 READ32(open
->op_seqid
);
744 READ32(open
->op_share_access
);
745 READ32(open
->op_share_deny
);
746 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
747 READ32(open
->op_owner
.len
);
749 /* owner, open_flag */
750 READ_BUF(open
->op_owner
.len
+ 4);
751 SAVEMEM(open
->op_owner
.data
, open
->op_owner
.len
);
752 READ32(open
->op_create
);
753 switch (open
->op_create
) {
754 case NFS4_OPEN_NOCREATE
:
756 case NFS4_OPEN_CREATE
:
758 READ32(open
->op_createmode
);
759 switch (open
->op_createmode
) {
760 case NFS4_CREATE_UNCHECKED
:
761 case NFS4_CREATE_GUARDED
:
762 if ((status
= nfsd4_decode_fattr(argp
, open
->op_bmval
, &open
->op_iattr
, &open
->op_acl
)))
765 case NFS4_CREATE_EXCLUSIVE
:
767 COPYMEM(open
->op_verf
.data
, 8);
779 READ32(open
->op_claim_type
);
780 switch (open
->op_claim_type
) {
781 case NFS4_OPEN_CLAIM_NULL
:
782 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
784 READ32(open
->op_fname
.len
);
785 READ_BUF(open
->op_fname
.len
);
786 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
787 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
790 case NFS4_OPEN_CLAIM_PREVIOUS
:
792 READ32(open
->op_delegate_type
);
794 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
795 READ_BUF(sizeof(delegation_stateid_t
) + 4);
796 COPYMEM(&open
->op_delegate_stateid
, sizeof(delegation_stateid_t
));
797 READ32(open
->op_fname
.len
);
798 READ_BUF(open
->op_fname
.len
);
799 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
800 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
, nfserr_inval
)))
811 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
815 open_conf
->oc_stateowner
= NFS4_STATE_NOT_LOCKED
;
816 READ_BUF(4 + sizeof(stateid_t
));
817 READ32(open_conf
->oc_req_stateid
.si_generation
);
818 COPYMEM(&open_conf
->oc_req_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
819 READ32(open_conf
->oc_seqid
);
825 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
829 open_down
->od_stateowner
= NFS4_STATE_NOT_LOCKED
;
830 READ_BUF(4 + sizeof(stateid_t
));
831 READ32(open_down
->od_stateid
.si_generation
);
832 COPYMEM(&open_down
->od_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
833 READ32(open_down
->od_seqid
);
834 READ32(open_down
->od_share_access
);
835 READ32(open_down
->od_share_deny
);
841 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
846 READ32(putfh
->pf_fhlen
);
847 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
849 READ_BUF(putfh
->pf_fhlen
);
850 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
856 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
860 READ_BUF(sizeof(stateid_t
) + 12);
861 READ32(read
->rd_stateid
.si_generation
);
862 COPYMEM(&read
->rd_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
863 READ64(read
->rd_offset
);
864 READ32(read
->rd_length
);
870 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
875 READ64(readdir
->rd_cookie
);
876 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
877 READ32(readdir
->rd_dircount
); /* just in case you needed a useless field... */
878 READ32(readdir
->rd_maxcount
);
879 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
886 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
891 READ32(remove
->rm_namelen
);
892 READ_BUF(remove
->rm_namelen
);
893 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
894 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
, nfserr_noent
)))
901 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
906 READ32(rename
->rn_snamelen
);
907 READ_BUF(rename
->rn_snamelen
+ 4);
908 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
909 READ32(rename
->rn_tnamelen
);
910 READ_BUF(rename
->rn_tnamelen
);
911 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
912 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
, nfserr_noent
)))
914 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
, nfserr_inval
)))
921 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
925 READ_BUF(sizeof(clientid_t
));
926 COPYMEM(clientid
, sizeof(clientid_t
));
932 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
936 READ_BUF(sizeof(stateid_t
));
937 READ32(setattr
->sa_stateid
.si_generation
);
938 COPYMEM(&setattr
->sa_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
939 if ((status
= nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
, &setattr
->sa_acl
)))
946 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
951 COPYMEM(setclientid
->se_verf
.data
, 8);
952 READ32(setclientid
->se_namelen
);
954 READ_BUF(setclientid
->se_namelen
+ 8);
955 SAVEMEM(setclientid
->se_name
, setclientid
->se_namelen
);
956 READ32(setclientid
->se_callback_prog
);
957 READ32(setclientid
->se_callback_netid_len
);
959 READ_BUF(setclientid
->se_callback_netid_len
+ 4);
960 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
961 READ32(setclientid
->se_callback_addr_len
);
963 READ_BUF(setclientid
->se_callback_addr_len
+ 4);
964 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
965 READ32(setclientid
->se_callback_ident
);
971 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
975 READ_BUF(8 + sizeof(nfs4_verifier
));
976 COPYMEM(&scd_c
->sc_clientid
, 8);
977 COPYMEM(&scd_c
->sc_confirm
, sizeof(nfs4_verifier
));
982 /* Also used for NVERIFY */
984 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
987 struct nfsd4_compoundargs save
= {
990 .rqstp
= argp
->rqstp
,
993 struct iattr ve_iattr
; /* request */
994 struct nfs4_acl
*ve_acl
; /* request */
998 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
1001 /* For convenience's sake, we compare raw xdr'd attributes in
1002 * nfsd4_proc_verify; however we still decode here just to return
1003 * correct error in case of bad xdr. */
1005 status
= nfsd4_decode_fattr(ve_bmval
, &ve_iattr
, &ve_acl
);
1006 if (status
== nfserr_inval
) {
1007 status
= nfserrno(status
);
1012 READ32(verify
->ve_attrlen
);
1013 READ_BUF(verify
->ve_attrlen
);
1014 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
1020 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
1027 READ_BUF(sizeof(stateid_opaque_t
) + 20);
1028 READ32(write
->wr_stateid
.si_generation
);
1029 COPYMEM(&write
->wr_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
1030 READ64(write
->wr_offset
);
1031 READ32(write
->wr_stable_how
);
1032 if (write
->wr_stable_how
> 2)
1034 READ32(write
->wr_buflen
);
1036 /* Sorry .. no magic macros for this.. *
1037 * READ_BUF(write->wr_buflen);
1038 * SAVEMEM(write->wr_buf, write->wr_buflen);
1040 avail
= (char*)argp
->end
- (char*)argp
->p
;
1041 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
1042 printk(KERN_NOTICE
"xdr error! (%s:%d)\n", __FILE__
, __LINE__
);
1045 write
->wr_vec
[0].iov_base
= p
;
1046 write
->wr_vec
[0].iov_len
= avail
;
1048 len
= write
->wr_buflen
;
1049 while (len
> write
->wr_vec
[v
].iov_len
) {
1050 len
-= write
->wr_vec
[v
].iov_len
;
1052 write
->wr_vec
[v
].iov_base
= page_address(argp
->pagelist
[0]);
1054 if (argp
->pagelen
>= PAGE_SIZE
) {
1055 write
->wr_vec
[v
].iov_len
= PAGE_SIZE
;
1056 argp
->pagelen
-= PAGE_SIZE
;
1058 write
->wr_vec
[v
].iov_len
= argp
->pagelen
;
1059 argp
->pagelen
-= len
;
1062 argp
->end
= (u32
*) (write
->wr_vec
[v
].iov_base
+ write
->wr_vec
[v
].iov_len
);
1063 argp
->p
= (u32
*) (write
->wr_vec
[v
].iov_base
+ (XDR_QUADLEN(len
) << 2));
1064 write
->wr_vec
[v
].iov_len
= len
;
1065 write
->wr_vlen
= v
+1;
1071 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
1076 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
1077 READ32(rlockowner
->rl_owner
.len
);
1078 READ_BUF(rlockowner
->rl_owner
.len
);
1079 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
1085 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1088 struct nfsd4_op
*op
;
1092 * XXX: According to spec, we should check the tag
1093 * for UTF-8 compliance. I'm postponing this for
1094 * now because it seems that some clients do use
1098 READ32(argp
->taglen
);
1099 READ_BUF(argp
->taglen
+ 8);
1100 SAVEMEM(argp
->tag
, argp
->taglen
);
1101 READ32(argp
->minorversion
);
1102 READ32(argp
->opcnt
);
1104 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1106 if (argp
->opcnt
> 100)
1109 if (argp
->opcnt
> sizeof(argp
->iops
)/sizeof(argp
->iops
[0])) {
1110 argp
->ops
= kmalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1112 argp
->ops
= argp
->iops
;
1113 printk(KERN_INFO
"nfsd: couldn't allocate room for COMPOUND\n");
1118 for (i
= 0; i
< argp
->opcnt
; i
++) {
1123 * We can't use READ_BUF() here because we need to handle
1124 * a missing opcode as an OP_WRITE + 1. So we need to check
1125 * to see if we're truly at the end of our buffer or if there
1126 * is another page we need to flip to.
1129 if (argp
->p
== argp
->end
) {
1130 if (argp
->pagelen
< 4) {
1131 /* There isn't an opcode still on the wire */
1132 op
->opnum
= OP_WRITE
+ 1;
1133 op
->status
= nfserr_bad_xdr
;
1139 * False alarm. We just hit a page boundary, but there
1140 * is still data available. Move pointer across page
1141 * boundary. *snip from READ_BUF*
1143 argp
->p
= page_address(argp
->pagelist
[0]);
1145 if (argp
->pagelen
< PAGE_SIZE
) {
1146 argp
->end
= p
+ (argp
->pagelen
>>2);
1149 argp
->end
= p
+ (PAGE_SIZE
>>2);
1150 argp
->pagelen
-= PAGE_SIZE
;
1153 op
->opnum
= ntohl(*argp
->p
++);
1155 switch (op
->opnum
) {
1156 case 2: /* Reserved operation */
1157 op
->opnum
= OP_ILLEGAL
;
1158 if (argp
->minorversion
== 0)
1159 op
->status
= nfserr_op_illegal
;
1161 op
->status
= nfserr_minor_vers_mismatch
;
1164 op
->status
= nfsd4_decode_access(argp
, &op
->u
.access
);
1167 op
->status
= nfsd4_decode_close(argp
, &op
->u
.close
);
1170 op
->status
= nfsd4_decode_commit(argp
, &op
->u
.commit
);
1173 op
->status
= nfsd4_decode_create(argp
, &op
->u
.create
);
1176 op
->status
= nfsd4_decode_getattr(argp
, &op
->u
.getattr
);
1179 op
->status
= nfs_ok
;
1182 op
->status
= nfsd4_decode_link(argp
, &op
->u
.link
);
1185 op
->status
= nfsd4_decode_lock(argp
, &op
->u
.lock
);
1188 op
->status
= nfsd4_decode_lockt(argp
, &op
->u
.lockt
);
1191 op
->status
= nfsd4_decode_locku(argp
, &op
->u
.locku
);
1194 op
->status
= nfsd4_decode_lookup(argp
, &op
->u
.lookup
);
1197 op
->status
= nfs_ok
;
1200 op
->status
= nfsd4_decode_verify(argp
, &op
->u
.nverify
);
1203 op
->status
= nfsd4_decode_open(argp
, &op
->u
.open
);
1205 case OP_OPEN_CONFIRM
:
1206 op
->status
= nfsd4_decode_open_confirm(argp
, &op
->u
.open_confirm
);
1208 case OP_OPEN_DOWNGRADE
:
1209 op
->status
= nfsd4_decode_open_downgrade(argp
, &op
->u
.open_downgrade
);
1212 op
->status
= nfsd4_decode_putfh(argp
, &op
->u
.putfh
);
1215 op
->status
= nfs_ok
;
1218 op
->status
= nfsd4_decode_read(argp
, &op
->u
.read
);
1221 op
->status
= nfsd4_decode_readdir(argp
, &op
->u
.readdir
);
1224 op
->status
= nfs_ok
;
1227 op
->status
= nfsd4_decode_remove(argp
, &op
->u
.remove
);
1230 op
->status
= nfsd4_decode_rename(argp
, &op
->u
.rename
);
1233 op
->status
= nfs_ok
;
1236 op
->status
= nfsd4_decode_renew(argp
, &op
->u
.renew
);
1239 op
->status
= nfs_ok
;
1242 op
->status
= nfsd4_decode_setattr(argp
, &op
->u
.setattr
);
1244 case OP_SETCLIENTID
:
1245 op
->status
= nfsd4_decode_setclientid(argp
, &op
->u
.setclientid
);
1247 case OP_SETCLIENTID_CONFIRM
:
1248 op
->status
= nfsd4_decode_setclientid_confirm(argp
, &op
->u
.setclientid_confirm
);
1251 op
->status
= nfsd4_decode_verify(argp
, &op
->u
.verify
);
1254 op
->status
= nfsd4_decode_write(argp
, &op
->u
.write
);
1256 case OP_RELEASE_LOCKOWNER
:
1257 op
->status
= nfsd4_decode_release_lockowner(argp
, &op
->u
.release_lockowner
);
1260 op
->opnum
= OP_ILLEGAL
;
1261 op
->status
= nfserr_op_illegal
;
1274 * END OF "GENERIC" DECODE ROUTINES.
1278 * START OF "GENERIC" ENCODE ROUTINES.
1279 * These may look a little ugly since they are imported from a "generic"
1280 * set of XDR encode/decode routines which are intended to be shared by
1281 * all of our NFSv4 implementations (OpenBSD, MacOS X...).
1283 * If the pain of reading these is too great, it should be a straightforward
1284 * task to translate them into Linux-specific versions which are more
1285 * consistent with the style used in NFSv2/v3...
1287 #define ENCODE_HEAD u32 *p
1289 #define WRITE32(n) *p++ = htonl(n)
1290 #define WRITE64(n) do { \
1291 *p++ = htonl((u32)((n) >> 32)); \
1292 *p++ = htonl((u32)(n)); \
1294 #define WRITEMEM(ptr,nbytes) do { \
1295 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1296 memcpy(p, ptr, nbytes); \
1297 p += XDR_QUADLEN(nbytes); \
1299 #define WRITECINFO(c) do { \
1300 *p++ = htonl(c.atomic); \
1301 *p++ = htonl(c.before_ctime_sec); \
1302 *p++ = htonl(c.before_ctime_nsec); \
1303 *p++ = htonl(c.after_ctime_sec); \
1304 *p++ = htonl(c.after_ctime_nsec); \
1307 #define RESERVE_SPACE(nbytes) do { \
1309 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1311 #define ADJUST_ARGS() resp->p = p
1314 * Header routine to setup seqid operation replay cache
1316 #define ENCODE_SEQID_OP_HEAD \
1323 * Routine for encoding the result of a
1324 * "seqid-mutating" NFSv4 operation. This is
1325 * where seqids are incremented, and the
1326 * replay cache is filled.
1329 #define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1330 if (seqid_mutating_err(nfserr) && stateowner \
1331 && (stateowner != NFS4_STATE_NOT_LOCKED)) { \
1332 if (stateowner->so_confirmed) \
1333 stateowner->so_seqid++; \
1334 stateowner->so_replay.rp_status = nfserr; \
1335 stateowner->so_replay.rp_buflen = \
1336 (((char *)(resp)->p - (char *)save)); \
1337 memcpy(stateowner->so_replay.rp_buf, save, \
1338 stateowner->so_replay.rp_buflen); \
1340 if (stateowner != NFS4_STATE_NOT_LOCKED) \
1341 nfs4_unlock_state(); \
1345 static u32 nfs4_ftypes
[16] = {
1346 NF4BAD
, NF4FIFO
, NF4CHR
, NF4BAD
,
1347 NF4DIR
, NF4BAD
, NF4BLK
, NF4BAD
,
1348 NF4REG
, NF4BAD
, NF4LNK
, NF4BAD
,
1349 NF4SOCK
, NF4BAD
, NF4LNK
, NF4BAD
,
1353 nfsd4_encode_name(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1354 u32
**p
, int *buflen
)
1358 if (*buflen
< (XDR_QUADLEN(IDMAP_NAMESZ
) << 2) + 4)
1359 return nfserr_resource
;
1360 if (whotype
!= NFS4_ACL_WHO_NAMED
)
1361 status
= nfs4_acl_write_who(whotype
, (u8
*)(*p
+ 1));
1363 status
= nfsd_map_gid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1365 status
= nfsd_map_uid_to_name(rqstp
, id
, (u8
*)(*p
+ 1));
1367 return nfserrno(status
);
1368 *p
= xdr_encode_opaque(*p
, NULL
, status
);
1369 *buflen
-= (XDR_QUADLEN(status
) << 2) + 4;
1370 BUG_ON(*buflen
< 0);
1375 nfsd4_encode_user(struct svc_rqst
*rqstp
, uid_t uid
, u32
**p
, int *buflen
)
1377 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, uid
, 0, p
, buflen
);
1381 nfsd4_encode_group(struct svc_rqst
*rqstp
, uid_t gid
, u32
**p
, int *buflen
)
1383 return nfsd4_encode_name(rqstp
, NFS4_ACL_WHO_NAMED
, gid
, 1, p
, buflen
);
1387 nfsd4_encode_aclname(struct svc_rqst
*rqstp
, int whotype
, uid_t id
, int group
,
1388 u32
**p
, int *buflen
)
1390 return nfsd4_encode_name(rqstp
, whotype
, id
, group
, p
, buflen
);
1395 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1398 * @countp is the buffer size in _words_; upon successful return this becomes
1399 * replaced with the number of words written.
1402 nfsd4_encode_fattr(struct svc_fh
*fhp
, struct svc_export
*exp
,
1403 struct dentry
*dentry
, u32
*buffer
, int *countp
, u32
*bmval
,
1404 struct svc_rqst
*rqstp
)
1406 u32 bmval0
= bmval
[0];
1407 u32 bmval1
= bmval
[1];
1409 struct svc_fh tempfh
;
1410 struct kstatfs statfs
;
1411 int buflen
= *countp
<< 2;
1418 struct nfs4_acl
*acl
= NULL
;
1420 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
1421 BUG_ON(bmval0
& ~NFSD_SUPPORTED_ATTRS_WORD0
);
1422 BUG_ON(bmval1
& ~NFSD_SUPPORTED_ATTRS_WORD1
);
1424 status
= vfs_getattr(exp
->ex_mnt
, dentry
, &stat
);
1427 if ((bmval0
& (FATTR4_WORD0_FILES_FREE
| FATTR4_WORD0_FILES_TOTAL
)) ||
1428 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
1429 FATTR4_WORD1_SPACE_TOTAL
))) {
1430 status
= vfs_statfs(dentry
->d_inode
->i_sb
, &statfs
);
1434 if ((bmval0
& FATTR4_WORD0_FILEHANDLE
) && !fhp
) {
1435 fh_init(&tempfh
, NFS4_FHSIZE
);
1436 status
= fh_compose(&tempfh
, exp
, dentry
, NULL
);
1441 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
1442 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
1443 status
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
1444 aclsupport
= (status
== 0);
1445 if (bmval0
& FATTR4_WORD0_ACL
) {
1446 if (status
== -EOPNOTSUPP
)
1447 bmval0
&= ~FATTR4_WORD0_ACL
;
1448 else if (status
!= 0)
1452 if ((buflen
-= 16) < 0)
1458 attrlenp
= p
++; /* to be backfilled later */
1460 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
1461 if ((buflen
-= 12) < 0)
1464 WRITE32(aclsupport
?
1465 NFSD_SUPPORTED_ATTRS_WORD0
:
1466 NFSD_SUPPORTED_ATTRS_WORD0
& ~FATTR4_WORD0_ACL
);
1467 WRITE32(NFSD_SUPPORTED_ATTRS_WORD1
);
1469 if (bmval0
& FATTR4_WORD0_TYPE
) {
1470 if ((buflen
-= 4) < 0)
1472 dummy
= nfs4_ftypes
[(stat
.mode
& S_IFMT
) >> 12];
1473 if (dummy
== NF4BAD
)
1474 goto out_serverfault
;
1477 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
1478 if ((buflen
-= 4) < 0)
1480 WRITE32( NFS4_FH_NOEXPIRE_WITH_OPEN
| NFS4_FH_VOL_RENAME
);
1482 if (bmval0
& FATTR4_WORD0_CHANGE
) {
1484 * Note: This _must_ be consistent with the scheme for writing
1485 * change_info, so any changes made here must be reflected there
1486 * as well. (See xdr4.h:set_change_info() and the WRITECINFO()
1489 if ((buflen
-= 8) < 0)
1491 WRITE32(stat
.ctime
.tv_sec
);
1492 WRITE32(stat
.ctime
.tv_nsec
);
1494 if (bmval0
& FATTR4_WORD0_SIZE
) {
1495 if ((buflen
-= 8) < 0)
1499 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
1500 if ((buflen
-= 4) < 0)
1504 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
1505 if ((buflen
-= 4) < 0)
1509 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
1510 if ((buflen
-= 4) < 0)
1514 if (bmval0
& FATTR4_WORD0_FSID
) {
1515 if ((buflen
-= 16) < 0)
1518 WRITE32(MAJOR(stat
.dev
));
1520 WRITE32(MINOR(stat
.dev
));
1522 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
1523 if ((buflen
-= 4) < 0)
1527 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
1528 if ((buflen
-= 4) < 0)
1530 WRITE32(NFSD_LEASE_TIME
);
1532 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
1533 if ((buflen
-= 4) < 0)
1537 if (bmval0
& FATTR4_WORD0_ACL
) {
1538 struct nfs4_ace
*ace
;
1539 struct list_head
*h
;
1542 if ((buflen
-= 4) < 0)
1548 if ((buflen
-= 4) < 0)
1550 WRITE32(acl
->naces
);
1552 list_for_each(h
, &acl
->ace_head
) {
1553 ace
= list_entry(h
, struct nfs4_ace
, l_ace
);
1555 if ((buflen
-= 4*3) < 0)
1559 WRITE32(ace
->access_mask
& NFS4_ACE_MASK_ALL
);
1560 status
= nfsd4_encode_aclname(rqstp
, ace
->whotype
,
1561 ace
->who
, ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
,
1563 if (status
== nfserr_resource
)
1570 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
1571 if ((buflen
-= 4) < 0)
1573 WRITE32(aclsupport
?
1574 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
1576 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
1577 if ((buflen
-= 4) < 0)
1581 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
1582 if ((buflen
-= 4) < 0)
1586 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
1587 if ((buflen
-= 4) < 0)
1591 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
1592 if ((buflen
-= 4) < 0)
1596 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
1597 buflen
-= (XDR_QUADLEN(fhp
->fh_handle
.fh_size
) << 2) + 4;
1600 WRITE32(fhp
->fh_handle
.fh_size
);
1601 WRITEMEM(&fhp
->fh_handle
.fh_base
, fhp
->fh_handle
.fh_size
);
1603 if (bmval0
& FATTR4_WORD0_FILEID
) {
1604 if ((buflen
-= 8) < 0)
1606 WRITE64((u64
) stat
.ino
);
1608 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
1609 if ((buflen
-= 8) < 0)
1611 WRITE64((u64
) statfs
.f_ffree
);
1613 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
1614 if ((buflen
-= 8) < 0)
1616 WRITE64((u64
) statfs
.f_ffree
);
1618 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
1619 if ((buflen
-= 8) < 0)
1621 WRITE64((u64
) statfs
.f_files
);
1623 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
1624 if ((buflen
-= 4) < 0)
1628 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
1629 if ((buflen
-= 8) < 0)
1633 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
1634 if ((buflen
-= 4) < 0)
1638 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
1639 if ((buflen
-= 4) < 0)
1643 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
1644 if ((buflen
-= 8) < 0)
1646 WRITE64((u64
) NFSSVC_MAXBLKSIZE
);
1648 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
1649 if ((buflen
-= 8) < 0)
1651 WRITE64((u64
) NFSSVC_MAXBLKSIZE
);
1653 if (bmval1
& FATTR4_WORD1_MODE
) {
1654 if ((buflen
-= 4) < 0)
1656 WRITE32(stat
.mode
& S_IALLUGO
);
1658 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
1659 if ((buflen
-= 4) < 0)
1663 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
1664 if ((buflen
-= 4) < 0)
1666 WRITE32(stat
.nlink
);
1668 if (bmval1
& FATTR4_WORD1_OWNER
) {
1669 status
= nfsd4_encode_user(rqstp
, stat
.uid
, &p
, &buflen
);
1670 if (status
== nfserr_resource
)
1675 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
1676 status
= nfsd4_encode_group(rqstp
, stat
.gid
, &p
, &buflen
);
1677 if (status
== nfserr_resource
)
1682 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
1683 if ((buflen
-= 8) < 0)
1685 WRITE32((u32
) MAJOR(stat
.rdev
));
1686 WRITE32((u32
) MINOR(stat
.rdev
));
1688 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
1689 if ((buflen
-= 8) < 0)
1691 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
1694 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
1695 if ((buflen
-= 8) < 0)
1697 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
1700 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
1701 if ((buflen
-= 8) < 0)
1703 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
1706 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
1707 if ((buflen
-= 8) < 0)
1709 dummy64
= (u64
)stat
.blocks
<< 9;
1712 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
1713 if ((buflen
-= 12) < 0)
1716 WRITE32(stat
.atime
.tv_sec
);
1717 WRITE32(stat
.atime
.tv_nsec
);
1719 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
1720 if ((buflen
-= 12) < 0)
1726 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
1727 if ((buflen
-= 12) < 0)
1730 WRITE32(stat
.ctime
.tv_sec
);
1731 WRITE32(stat
.ctime
.tv_nsec
);
1733 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
1734 if ((buflen
-= 12) < 0)
1737 WRITE32(stat
.mtime
.tv_sec
);
1738 WRITE32(stat
.mtime
.tv_nsec
);
1740 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
1741 struct dentry
*mnt_pnt
, *mnt_root
;
1743 if ((buflen
-= 8) < 0)
1745 mnt_root
= exp
->ex_mnt
->mnt_root
;
1746 if (mnt_root
->d_inode
== dentry
->d_inode
) {
1747 mnt_pnt
= exp
->ex_mnt
->mnt_mountpoint
;
1748 WRITE64((u64
) mnt_pnt
->d_inode
->i_ino
);
1750 WRITE64((u64
) stat
.ino
);
1752 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
1753 *countp
= p
- buffer
;
1762 status
= nfserrno(status
);
1766 status
= nfserr_resource
;
1769 status
= nfserr_serverfault
;
1774 nfsd4_encode_dirent(struct readdir_cd
*ccd
, const char *name
, int namlen
,
1775 loff_t offset
, ino_t ino
, unsigned int d_type
)
1777 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
1779 u32
*p
= cd
->buffer
;
1781 struct dentry
*dentry
;
1782 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
1786 /* In nfsv4, "." and ".." never make it onto the wire.. */
1787 if (name
&& isdotent(name
, namlen
)) {
1788 cd
->common
.err
= nfs_ok
;
1793 xdr_encode_hyper(cd
->offset
, (u64
) offset
);
1795 buflen
= cd
->buflen
- 4 - XDR_QUADLEN(namlen
);
1799 *p
++ = xdr_one
; /* mark entry present */
1800 cd
->offset
= p
; /* remember pointer */
1801 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
1802 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
1805 * Now we come to the ugly part: writing the fattr for this entry.
1807 bmval0
= cd
->rd_bmval
[0];
1808 bmval1
= cd
->rd_bmval
[1];
1809 if ((bmval0
& ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_FILEID
)) || bmval1
) {
1811 * "Heavyweight" case: we have no choice except to
1812 * call nfsd4_encode_fattr().
1814 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
1815 if (IS_ERR(dentry
)) {
1816 nfserr
= nfserrno(PTR_ERR(dentry
));
1821 if (d_mountpoint(dentry
)) {
1822 if ((nfserr
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
,
1825 * -EAGAIN is the only error returned from
1826 * nfsd_cross_mnt() and it indicates that an
1827 * up-call has been initiated to fill in the export
1828 * options on exp. When the answer comes back,
1829 * this call will be retried.
1833 nfserr
= nfserr_dropit
;
1839 nfserr
= nfsd4_encode_fattr(NULL
, exp
,
1840 dentry
, p
, &buflen
, cd
->rd_bmval
,
1848 if (nfserr
== nfserr_resource
)
1853 * If we get here, we experienced a miscellaneous
1854 * failure while writing the attributes. If the
1855 * client requested the RDATTR_ERROR attribute,
1856 * we stuff the error code into this attribute
1857 * and continue. If this attribute was not requested,
1858 * then in accordance with the spec, we fail the
1859 * entire READDIR operation(!)
1861 if (!(bmval0
& FATTR4_WORD0_RDATTR_ERROR
)) {
1862 cd
->common
.err
= nfserr
;
1866 bmval0
= FATTR4_WORD0_RDATTR_ERROR
;
1868 /* falling through here will do the right thing... */
1872 * In the common "lightweight" case, we avoid
1873 * the overhead of nfsd4_encode_fattr() by assembling
1874 * a small fattr by hand.
1879 *p
++ = htonl(bmval0
);
1880 *p
++ = htonl(bmval1
);
1883 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
)
1884 *p
++ = nfserr
; /* no htonl */
1885 if (bmval0
& FATTR4_WORD0_FILEID
)
1886 p
= xdr_encode_hyper(p
, (u64
)ino
);
1887 *attrlenp
= htonl((char *)p
- (char *)attrlenp
- 4);
1890 cd
->buflen
-= (p
- cd
->buffer
);
1892 cd
->common
.err
= nfs_ok
;
1896 cd
->common
.err
= nfserr_toosmall
;
1901 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_access
*access
)
1907 WRITE32(access
->ac_supported
);
1908 WRITE32(access
->ac_resp_access
);
1914 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_close
*close
)
1916 ENCODE_SEQID_OP_HEAD
;
1919 RESERVE_SPACE(sizeof(stateid_t
));
1920 WRITE32(close
->cl_stateid
.si_generation
);
1921 WRITEMEM(&close
->cl_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
1924 ENCODE_SEQID_OP_TAIL(close
->cl_stateowner
);
1929 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_commit
*commit
)
1935 WRITEMEM(commit
->co_verf
.data
, 8);
1941 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_create
*create
)
1947 WRITECINFO(create
->cr_cinfo
);
1949 WRITE32(create
->cr_bmval
[0]);
1950 WRITE32(create
->cr_bmval
[1]);
1956 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_getattr
*getattr
)
1958 struct svc_fh
*fhp
= getattr
->ga_fhp
;
1964 buflen
= resp
->end
- resp
->p
- (COMPOUND_ERR_SLACK_SPACE
>> 2);
1965 nfserr
= nfsd4_encode_fattr(fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
1966 resp
->p
, &buflen
, getattr
->ga_bmval
,
1975 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, int nfserr
, struct svc_fh
*fhp
)
1981 len
= fhp
->fh_handle
.fh_size
;
1982 RESERVE_SPACE(len
+ 4);
1984 WRITEMEM(&fhp
->fh_handle
.fh_base
, len
);
1990 * Including all fields other than the name, a LOCK4denied structure requires
1991 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
1994 nfsd4_encode_lock_denied(struct nfsd4_compoundres
*resp
, struct nfsd4_lock_denied
*ld
)
1998 RESERVE_SPACE(32 + XDR_LEN(ld
->ld_sop
->so_owner
.len
));
1999 WRITE64(ld
->ld_start
);
2000 WRITE64(ld
->ld_length
);
2001 WRITE32(ld
->ld_type
);
2002 WRITEMEM(&ld
->ld_sop
->so_client
->cl_clientid
, 8);
2003 WRITE32(ld
->ld_sop
->so_owner
.len
);
2004 WRITEMEM(ld
->ld_sop
->so_owner
.data
, ld
->ld_sop
->so_owner
.len
);
2009 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_lock
*lock
)
2012 ENCODE_SEQID_OP_HEAD
;
2015 RESERVE_SPACE(4 + sizeof(stateid_t
));
2016 WRITE32(lock
->lk_resp_stateid
.si_generation
);
2017 WRITEMEM(&lock
->lk_resp_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
2019 } else if (nfserr
== nfserr_denied
)
2020 nfsd4_encode_lock_denied(resp
, &lock
->lk_denied
);
2022 ENCODE_SEQID_OP_TAIL(lock
->lk_stateowner
);
2026 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_lockt
*lockt
)
2028 if (nfserr
== nfserr_denied
)
2029 nfsd4_encode_lock_denied(resp
, &lockt
->lt_denied
);
2033 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_locku
*locku
)
2035 ENCODE_SEQID_OP_HEAD
;
2038 RESERVE_SPACE(sizeof(stateid_t
));
2039 WRITE32(locku
->lu_stateid
.si_generation
);
2040 WRITEMEM(&locku
->lu_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
2044 ENCODE_SEQID_OP_TAIL(locku
->lu_stateowner
);
2049 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_link
*link
)
2055 WRITECINFO(link
->li_cinfo
);
2062 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_open
*open
)
2064 ENCODE_SEQID_OP_HEAD
;
2069 RESERVE_SPACE(36 + sizeof(stateid_t
));
2070 WRITE32(open
->op_stateid
.si_generation
);
2071 WRITEMEM(&open
->op_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
2072 WRITECINFO(open
->op_cinfo
);
2073 WRITE32(open
->op_rflags
);
2075 WRITE32(open
->op_bmval
[0]);
2076 WRITE32(open
->op_bmval
[1]);
2077 WRITE32(open
->op_delegate_type
);
2080 switch (open
->op_delegate_type
) {
2081 case NFS4_OPEN_DELEGATE_NONE
:
2083 case NFS4_OPEN_DELEGATE_READ
:
2084 RESERVE_SPACE(20 + sizeof(delegation_stateid_t
));
2085 WRITEMEM(&open
->op_delegate_stateid
, sizeof(delegation_stateid_t
));
2089 * TODO: ACE's in delegations
2091 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2094 WRITE32(0); /* XXX: is NULL principal ok? */
2097 case NFS4_OPEN_DELEGATE_WRITE
:
2098 RESERVE_SPACE(32 + sizeof(delegation_stateid_t
));
2099 WRITEMEM(&open
->op_delegate_stateid
, sizeof(delegation_stateid_t
));
2103 * TODO: space_limit's in delegations
2105 WRITE32(NFS4_LIMIT_SIZE
);
2110 * TODO: ACE's in delegations
2112 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
2115 WRITE32(0); /* XXX: is NULL principal ok? */
2121 /* XXX save filehandle here */
2123 ENCODE_SEQID_OP_TAIL(open
->op_stateowner
);
2127 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_open_confirm
*oc
)
2129 ENCODE_SEQID_OP_HEAD
;
2132 RESERVE_SPACE(sizeof(stateid_t
));
2133 WRITE32(oc
->oc_resp_stateid
.si_generation
);
2134 WRITEMEM(&oc
->oc_resp_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
2138 ENCODE_SEQID_OP_TAIL(oc
->oc_stateowner
);
2142 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_open_downgrade
*od
)
2144 ENCODE_SEQID_OP_HEAD
;
2147 RESERVE_SPACE(sizeof(stateid_t
));
2148 WRITE32(od
->od_stateid
.si_generation
);
2149 WRITEMEM(&od
->od_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
2153 ENCODE_SEQID_OP_TAIL(od
->od_stateowner
);
2157 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_read
*read
)
2161 unsigned long maxcount
;
2167 if (resp
->xbuf
->page_len
)
2168 return nfserr_resource
;
2170 RESERVE_SPACE(8); /* eof flag and byte count */
2172 maxcount
= NFSSVC_MAXBLKSIZE
;
2173 if (maxcount
> read
->rd_length
)
2174 maxcount
= read
->rd_length
;
2179 pn
= resp
->rqstp
->rq_resused
;
2180 svc_take_page(resp
->rqstp
);
2181 read
->rd_iov
[v
].iov_base
= page_address(resp
->rqstp
->rq_respages
[pn
]);
2182 read
->rd_iov
[v
].iov_len
= len
< PAGE_SIZE
? len
: PAGE_SIZE
;
2188 nfserr
= nfsd_read(read
->rd_rqstp
, read
->rd_fhp
,
2190 read
->rd_iov
, read
->rd_vlen
,
2192 if (nfserr
== nfserr_symlink
)
2193 nfserr
= nfserr_inval
;
2196 eof
= (read
->rd_offset
+ maxcount
>= read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
2201 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
2203 resp
->xbuf
->page_len
= maxcount
;
2205 /* read zero bytes -> don't set up tail */
2209 /* set up page for remaining responses */
2210 svc_take_page(resp
->rqstp
);
2211 resp
->xbuf
->tail
[0].iov_base
=
2212 page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2213 resp
->rqstp
->rq_restailpage
= resp
->rqstp
->rq_resused
-1;
2214 resp
->xbuf
->tail
[0].iov_len
= 0;
2215 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
2216 resp
->end
= resp
->p
+ PAGE_SIZE
/4;
2220 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2221 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2227 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_readlink
*readlink
)
2235 if (resp
->xbuf
->page_len
)
2236 return nfserr_resource
;
2238 svc_take_page(resp
->rqstp
);
2239 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2241 maxcount
= PAGE_SIZE
;
2245 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2246 * if they would overflow the buffer. Is this kosher in NFSv4? If
2247 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2248 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2250 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
, page
, &maxcount
);
2251 if (nfserr
== nfserr_isdir
)
2252 return nfserr_inval
;
2258 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
2260 svc_take_page(resp
->rqstp
);
2261 resp
->xbuf
->tail
[0].iov_base
=
2262 page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2263 resp
->rqstp
->rq_restailpage
= resp
->rqstp
->rq_resused
-1;
2264 resp
->xbuf
->tail
[0].iov_len
= 0;
2265 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
2266 resp
->end
= resp
->p
+ PAGE_SIZE
/4;
2268 resp
->xbuf
->page_len
= maxcount
;
2271 resp
->xbuf
->tail
[0].iov_base
+= maxcount
&3;
2272 resp
->xbuf
->tail
[0].iov_len
= 4 - (maxcount
&3);
2278 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_readdir
*readdir
)
2287 if (resp
->xbuf
->page_len
)
2288 return nfserr_resource
;
2290 RESERVE_SPACE(8); /* verifier */
2293 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2297 resp
->xbuf
->head
[0].iov_len
= ((char*)resp
->p
) - (char*)resp
->xbuf
->head
[0].iov_base
;
2299 maxcount
= PAGE_SIZE
;
2300 if (maxcount
> readdir
->rd_maxcount
)
2301 maxcount
= readdir
->rd_maxcount
;
2304 * Convert from bytes to words, account for the two words already
2305 * written, make sure to leave two words at the end for the next
2306 * pointer and eof field.
2308 maxcount
= (maxcount
>> 2) - 4;
2310 nfserr
= nfserr_toosmall
;
2314 svc_take_page(resp
->rqstp
);
2315 page
= page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2316 readdir
->common
.err
= 0;
2317 readdir
->buflen
= maxcount
;
2318 readdir
->buffer
= page
;
2319 readdir
->offset
= NULL
;
2321 offset
= readdir
->rd_cookie
;
2322 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
2324 &readdir
->common
, nfsd4_encode_dirent
);
2325 if (nfserr
== nfs_ok
&&
2326 readdir
->common
.err
== nfserr_toosmall
&&
2327 readdir
->buffer
== page
)
2328 nfserr
= nfserr_toosmall
;
2329 if (nfserr
== nfserr_symlink
)
2330 nfserr
= nfserr_notdir
;
2334 if (readdir
->offset
)
2335 xdr_encode_hyper(readdir
->offset
, offset
);
2337 p
= readdir
->buffer
;
2338 *p
++ = 0; /* no more entries */
2339 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
2340 resp
->xbuf
->page_len
= ((char*)p
) - (char*)page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2342 /* allocate a page for the tail */
2343 svc_take_page(resp
->rqstp
);
2344 resp
->xbuf
->tail
[0].iov_base
=
2345 page_address(resp
->rqstp
->rq_respages
[resp
->rqstp
->rq_resused
-1]);
2346 resp
->rqstp
->rq_restailpage
= resp
->rqstp
->rq_resused
-1;
2347 resp
->xbuf
->tail
[0].iov_len
= 0;
2348 resp
->p
= resp
->xbuf
->tail
[0].iov_base
;
2349 resp
->end
= resp
->p
+ PAGE_SIZE
/4;
2359 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_remove
*remove
)
2365 WRITECINFO(remove
->rm_cinfo
);
2371 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_rename
*rename
)
2377 WRITECINFO(rename
->rn_sinfo
);
2378 WRITECINFO(rename
->rn_tinfo
);
2384 * The SETATTR encode routine is special -- it always encodes a bitmap,
2385 * regardless of the error status.
2388 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_setattr
*setattr
)
2400 WRITE32(setattr
->sa_bmval
[0]);
2401 WRITE32(setattr
->sa_bmval
[1]);
2407 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_setclientid
*scd
)
2412 RESERVE_SPACE(8 + sizeof(nfs4_verifier
));
2413 WRITEMEM(&scd
->se_clientid
, 8);
2414 WRITEMEM(&scd
->se_confirm
, sizeof(nfs4_verifier
));
2417 else if (nfserr
== nfserr_clid_inuse
) {
2426 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, int nfserr
, struct nfsd4_write
*write
)
2432 WRITE32(write
->wr_bytes_written
);
2433 WRITE32(write
->wr_how_written
);
2434 WRITEMEM(write
->wr_verifier
.data
, 8);
2440 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
2447 statp
= p
++; /* to be backfilled at the end */
2450 switch (op
->opnum
) {
2452 nfsd4_encode_access(resp
, op
->status
, &op
->u
.access
);
2455 nfsd4_encode_close(resp
, op
->status
, &op
->u
.close
);
2458 nfsd4_encode_commit(resp
, op
->status
, &op
->u
.commit
);
2461 nfsd4_encode_create(resp
, op
->status
, &op
->u
.create
);
2464 op
->status
= nfsd4_encode_getattr(resp
, op
->status
, &op
->u
.getattr
);
2467 nfsd4_encode_getfh(resp
, op
->status
, op
->u
.getfh
);
2470 nfsd4_encode_link(resp
, op
->status
, &op
->u
.link
);
2473 nfsd4_encode_lock(resp
, op
->status
, &op
->u
.lock
);
2476 nfsd4_encode_lockt(resp
, op
->status
, &op
->u
.lockt
);
2479 nfsd4_encode_locku(resp
, op
->status
, &op
->u
.locku
);
2488 nfsd4_encode_open(resp
, op
->status
, &op
->u
.open
);
2490 case OP_OPEN_CONFIRM
:
2491 nfsd4_encode_open_confirm(resp
, op
->status
, &op
->u
.open_confirm
);
2493 case OP_OPEN_DOWNGRADE
:
2494 nfsd4_encode_open_downgrade(resp
, op
->status
, &op
->u
.open_downgrade
);
2501 op
->status
= nfsd4_encode_read(resp
, op
->status
, &op
->u
.read
);
2504 op
->status
= nfsd4_encode_readdir(resp
, op
->status
, &op
->u
.readdir
);
2507 op
->status
= nfsd4_encode_readlink(resp
, op
->status
, &op
->u
.readlink
);
2510 nfsd4_encode_remove(resp
, op
->status
, &op
->u
.remove
);
2513 nfsd4_encode_rename(resp
, op
->status
, &op
->u
.rename
);
2522 nfsd4_encode_setattr(resp
, op
->status
, &op
->u
.setattr
);
2524 case OP_SETCLIENTID
:
2525 nfsd4_encode_setclientid(resp
, op
->status
, &op
->u
.setclientid
);
2527 case OP_SETCLIENTID_CONFIRM
:
2532 nfsd4_encode_write(resp
, op
->status
, &op
->u
.write
);
2534 case OP_RELEASE_LOCKOWNER
:
2541 * Note: We write the status directly, instead of using WRITE32(),
2542 * since it is already in network byte order.
2544 *statp
= op
->status
;
2548 * Encode the reply stored in the stateowner reply cache
2550 * XDR note: do not encode rp->rp_buflen: the buffer contains the
2551 * previously sent already encoded operation.
2553 * called with nfs4_lock_state() held
2556 nfsd4_encode_replay(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
2559 struct nfs4_replay
*rp
= op
->replay
;
2565 *p
++ = rp
->rp_status
; /* already xdr'ed */
2568 RESERVE_SPACE(rp
->rp_buflen
);
2569 WRITEMEM(rp
->rp_buf
, rp
->rp_buflen
);
2571 nfs4_unlock_state();
2575 * END OF "GENERIC" ENCODE ROUTINES.
2579 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, u32
*p
, void *dummy
)
2581 return xdr_ressize_check(rqstp
, p
);
2584 void nfsd4_release_compoundargs(struct nfsd4_compoundargs
*args
)
2586 if (args
->ops
!= args
->iops
) {
2588 args
->ops
= args
->iops
;
2594 while (args
->to_free
) {
2595 struct tmpbuf
*tb
= args
->to_free
;
2596 args
->to_free
= tb
->next
;
2597 tb
->release(tb
->buf
);
2603 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, u32
*p
, struct nfsd4_compoundargs
*args
)
2608 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
2609 args
->pagelist
= rqstp
->rq_arg
.pages
;
2610 args
->pagelen
= rqstp
->rq_arg
.page_len
;
2612 args
->to_free
= NULL
;
2613 args
->ops
= args
->iops
;
2614 args
->rqstp
= rqstp
;
2616 status
= nfsd4_decode_compound(args
);
2618 nfsd4_release_compoundargs(args
);
2624 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, u32
*p
, struct nfsd4_compoundres
*resp
)
2627 * All that remains is to write the tag and operation count...
2631 *p
++ = htonl(resp
->taglen
);
2632 memcpy(p
, resp
->tag
, resp
->taglen
);
2633 p
+= XDR_QUADLEN(resp
->taglen
);
2634 *p
++ = htonl(resp
->opcnt
);
2636 if (rqstp
->rq_res
.page_len
)
2637 iov
= &rqstp
->rq_res
.tail
[0];
2639 iov
= &rqstp
->rq_res
.head
[0];
2640 iov
->iov_len
= ((char*)resp
->p
) - (char*)iov
->iov_base
;
2641 BUG_ON(iov
->iov_len
> PAGE_SIZE
);