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.
36 #include <linux/slab.h>
37 #include <linux/namei.h>
38 #include <linux/statfs.h>
39 #include <linux/utsname.h>
40 #include <linux/pagemap.h>
41 #include <linux/sunrpc/svcauth_gss.h>
51 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
52 #include <linux/security.h>
56 #define NFSDDBG_FACILITY NFSDDBG_XDR
59 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
60 * directory in order to indicate to the client that a filesystem boundary is present
61 * We use a fixed fsid for a referral
63 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
64 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
67 check_filename(char *str
, int len
)
73 if (isdotent(str
, len
))
74 return nfserr_badname
;
75 for (i
= 0; i
< len
; i
++)
77 return nfserr_badname
;
89 dprintk("NFSD: xdr error (%s:%d)\n", \
90 __FILE__, __LINE__); \
91 status = nfserr_bad_xdr; \
94 #define READMEM(x,nbytes) do { \
96 p += XDR_QUADLEN(nbytes); \
98 #define SAVEMEM(x,nbytes) do { \
99 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
100 savemem(argp, p, nbytes) : \
102 dprintk("NFSD: xdr error (%s:%d)\n", \
103 __FILE__, __LINE__); \
106 p += XDR_QUADLEN(nbytes); \
108 #define COPYMEM(x,nbytes) do { \
109 memcpy((x), p, nbytes); \
110 p += XDR_QUADLEN(nbytes); \
113 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
114 #define READ_BUF(nbytes) do { \
115 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
117 argp->p += XDR_QUADLEN(nbytes); \
118 } else if (!(p = read_buf(argp, nbytes))) { \
119 dprintk("NFSD: xdr error (%s:%d)\n", \
120 __FILE__, __LINE__); \
125 static void next_decode_page(struct nfsd4_compoundargs
*argp
)
127 argp
->p
= page_address(argp
->pagelist
[0]);
129 if (argp
->pagelen
< PAGE_SIZE
) {
130 argp
->end
= argp
->p
+ (argp
->pagelen
>>2);
133 argp
->end
= argp
->p
+ (PAGE_SIZE
>>2);
134 argp
->pagelen
-= PAGE_SIZE
;
138 static __be32
*read_buf(struct nfsd4_compoundargs
*argp
, u32 nbytes
)
140 /* We want more bytes than seem to be available.
141 * Maybe we need a new page, maybe we have just run out
143 unsigned int avail
= (char *)argp
->end
- (char *)argp
->p
;
145 if (avail
+ argp
->pagelen
< nbytes
)
147 if (avail
+ PAGE_SIZE
< nbytes
) /* need more than a page !! */
149 /* ok, we can do it with the current plus the next page */
150 if (nbytes
<= sizeof(argp
->tmp
))
154 p
= argp
->tmpp
= kmalloc(nbytes
, GFP_KERNEL
);
160 * The following memcpy is safe because read_buf is always
161 * called with nbytes > avail, and the two cases above both
162 * guarantee p points to at least nbytes bytes.
164 memcpy(p
, argp
->p
, avail
);
165 next_decode_page(argp
);
166 memcpy(((char*)p
)+avail
, argp
->p
, (nbytes
- avail
));
167 argp
->p
+= XDR_QUADLEN(nbytes
- avail
);
171 static int zero_clientid(clientid_t
*clid
)
173 return (clid
->cl_boot
== 0) && (clid
->cl_id
== 0);
177 * svcxdr_tmpalloc - allocate memory to be freed after compound processing
178 * @argp: NFSv4 compound argument structure
179 * @p: pointer to be freed (with kfree())
181 * Marks @p to be freed when processing the compound operation
182 * described in @argp finishes.
185 svcxdr_tmpalloc(struct nfsd4_compoundargs
*argp
, u32 len
)
187 struct svcxdr_tmpbuf
*tb
;
189 tb
= kmalloc(sizeof(*tb
) + len
, GFP_KERNEL
);
192 tb
->next
= argp
->to_free
;
198 * For xdr strings that need to be passed to other kernel api's
199 * as null-terminated strings.
201 * Note null-terminating in place usually isn't safe since the
202 * buffer might end on a page boundary.
205 svcxdr_dupstr(struct nfsd4_compoundargs
*argp
, void *buf
, u32 len
)
207 char *p
= svcxdr_tmpalloc(argp
, len
+ 1);
217 * savemem - duplicate a chunk of memory for later processing
218 * @argp: NFSv4 compound argument structure to be freed with
219 * @p: pointer to be duplicated
220 * @nbytes: length to be duplicated
222 * Returns a pointer to a copy of @nbytes bytes of memory at @p
223 * that are preserved until processing of the NFSv4 compound
224 * operation described by @argp finishes.
226 static char *savemem(struct nfsd4_compoundargs
*argp
, __be32
*p
, int nbytes
)
230 ret
= svcxdr_tmpalloc(argp
, nbytes
);
233 memcpy(ret
, p
, nbytes
);
238 nfsd4_decode_bitmap(struct nfsd4_compoundargs
*argp
, u32
*bmval
)
248 bmlen
= be32_to_cpup(p
++);
252 READ_BUF(bmlen
<< 2);
254 bmval
[0] = be32_to_cpup(p
++);
256 bmval
[1] = be32_to_cpup(p
++);
258 bmval
[2] = be32_to_cpup(p
++);
264 nfsd4_decode_fattr(struct nfsd4_compoundargs
*argp
, u32
*bmval
,
265 struct iattr
*iattr
, struct nfs4_acl
**acl
,
266 struct xdr_netobj
*label
)
268 int expected_len
, len
= 0;
275 if ((status
= nfsd4_decode_bitmap(argp
, bmval
)))
279 expected_len
= be32_to_cpup(p
++);
281 if (bmval
[0] & FATTR4_WORD0_SIZE
) {
284 p
= xdr_decode_hyper(p
, &iattr
->ia_size
);
285 iattr
->ia_valid
|= ATTR_SIZE
;
287 if (bmval
[0] & FATTR4_WORD0_ACL
) {
289 struct nfs4_ace
*ace
;
291 READ_BUF(4); len
+= 4;
292 nace
= be32_to_cpup(p
++);
294 if (nace
> NFS4_ACL_MAX
)
297 *acl
= svcxdr_tmpalloc(argp
, nfs4_acl_bytes(nace
));
299 return nfserr_jukebox
;
301 (*acl
)->naces
= nace
;
302 for (ace
= (*acl
)->aces
; ace
< (*acl
)->aces
+ nace
; ace
++) {
303 READ_BUF(16); len
+= 16;
304 ace
->type
= be32_to_cpup(p
++);
305 ace
->flag
= be32_to_cpup(p
++);
306 ace
->access_mask
= be32_to_cpup(p
++);
307 dummy32
= be32_to_cpup(p
++);
309 len
+= XDR_QUADLEN(dummy32
) << 2;
310 READMEM(buf
, dummy32
);
311 ace
->whotype
= nfs4_acl_get_whotype(buf
, dummy32
);
313 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
315 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
316 status
= nfsd_map_name_to_gid(argp
->rqstp
,
317 buf
, dummy32
, &ace
->who_gid
);
319 status
= nfsd_map_name_to_uid(argp
->rqstp
,
320 buf
, dummy32
, &ace
->who_uid
);
326 if (bmval
[1] & FATTR4_WORD1_MODE
) {
329 iattr
->ia_mode
= be32_to_cpup(p
++);
330 iattr
->ia_mode
&= (S_IFMT
| S_IALLUGO
);
331 iattr
->ia_valid
|= ATTR_MODE
;
333 if (bmval
[1] & FATTR4_WORD1_OWNER
) {
336 dummy32
= be32_to_cpup(p
++);
338 len
+= (XDR_QUADLEN(dummy32
) << 2);
339 READMEM(buf
, dummy32
);
340 if ((status
= nfsd_map_name_to_uid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_uid
)))
342 iattr
->ia_valid
|= ATTR_UID
;
344 if (bmval
[1] & FATTR4_WORD1_OWNER_GROUP
) {
347 dummy32
= be32_to_cpup(p
++);
349 len
+= (XDR_QUADLEN(dummy32
) << 2);
350 READMEM(buf
, dummy32
);
351 if ((status
= nfsd_map_name_to_gid(argp
->rqstp
, buf
, dummy32
, &iattr
->ia_gid
)))
353 iattr
->ia_valid
|= ATTR_GID
;
355 if (bmval
[1] & FATTR4_WORD1_TIME_ACCESS_SET
) {
358 dummy32
= be32_to_cpup(p
++);
360 case NFS4_SET_TO_CLIENT_TIME
:
361 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
362 all 32 bits of 'nseconds'. */
365 p
= xdr_decode_hyper(p
, &sec
);
366 iattr
->ia_atime
.tv_sec
= (time_t)sec
;
367 iattr
->ia_atime
.tv_nsec
= be32_to_cpup(p
++);
368 if (iattr
->ia_atime
.tv_nsec
>= (u32
)1000000000)
370 iattr
->ia_valid
|= (ATTR_ATIME
| ATTR_ATIME_SET
);
372 case NFS4_SET_TO_SERVER_TIME
:
373 iattr
->ia_valid
|= ATTR_ATIME
;
379 if (bmval
[1] & FATTR4_WORD1_TIME_MODIFY_SET
) {
382 dummy32
= be32_to_cpup(p
++);
384 case NFS4_SET_TO_CLIENT_TIME
:
385 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
386 all 32 bits of 'nseconds'. */
389 p
= xdr_decode_hyper(p
, &sec
);
390 iattr
->ia_mtime
.tv_sec
= sec
;
391 iattr
->ia_mtime
.tv_nsec
= be32_to_cpup(p
++);
392 if (iattr
->ia_mtime
.tv_nsec
>= (u32
)1000000000)
394 iattr
->ia_valid
|= (ATTR_MTIME
| ATTR_MTIME_SET
);
396 case NFS4_SET_TO_SERVER_TIME
:
397 iattr
->ia_valid
|= ATTR_MTIME
;
405 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
406 if (bmval
[2] & FATTR4_WORD2_SECURITY_LABEL
) {
409 dummy32
= be32_to_cpup(p
++); /* lfs: we don't use it */
412 dummy32
= be32_to_cpup(p
++); /* pi: we don't use it either */
415 dummy32
= be32_to_cpup(p
++);
417 if (dummy32
> NFSD4_MAX_SEC_LABEL_LEN
)
418 return nfserr_badlabel
;
419 len
+= (XDR_QUADLEN(dummy32
) << 2);
420 READMEM(buf
, dummy32
);
421 label
->len
= dummy32
;
422 label
->data
= svcxdr_dupstr(argp
, buf
, dummy32
);
424 return nfserr_jukebox
;
428 if (bmval
[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
429 || bmval
[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
430 || bmval
[2] & ~NFSD_WRITEABLE_ATTRS_WORD2
)
431 READ_BUF(expected_len
- len
);
432 else if (len
!= expected_len
)
439 nfsd4_decode_stateid(struct nfsd4_compoundargs
*argp
, stateid_t
*sid
)
443 READ_BUF(sizeof(stateid_t
));
444 sid
->si_generation
= be32_to_cpup(p
++);
445 COPYMEM(&sid
->si_opaque
, sizeof(stateid_opaque_t
));
451 nfsd4_decode_access(struct nfsd4_compoundargs
*argp
, struct nfsd4_access
*access
)
456 access
->ac_req_access
= be32_to_cpup(p
++);
461 static __be32
nfsd4_decode_cb_sec(struct nfsd4_compoundargs
*argp
, struct nfsd4_cb_sec
*cbs
)
469 /* callback_sec_params4 */
471 nr_secflavs
= be32_to_cpup(p
++);
473 cbs
->flavor
= (u32
)(-1);
475 /* Is this legal? Be generous, take it to mean AUTH_NONE: */
477 for (i
= 0; i
< nr_secflavs
; ++i
) {
479 dummy
= be32_to_cpup(p
++);
482 /* Nothing to read */
483 if (cbs
->flavor
== (u32
)(-1))
484 cbs
->flavor
= RPC_AUTH_NULL
;
489 dummy
= be32_to_cpup(p
++);
492 dummy
= be32_to_cpup(p
++);
494 SAVEMEM(machine_name
, dummy
);
498 uid
= be32_to_cpup(p
++);
499 gid
= be32_to_cpup(p
++);
503 dummy
= be32_to_cpup(p
++);
505 if (cbs
->flavor
== (u32
)(-1)) {
506 kuid_t kuid
= make_kuid(&init_user_ns
, uid
);
507 kgid_t kgid
= make_kgid(&init_user_ns
, gid
);
508 if (uid_valid(kuid
) && gid_valid(kgid
)) {
511 cbs
->flavor
= RPC_AUTH_UNIX
;
513 dprintk("RPC_AUTH_UNIX with invalid"
514 "uid or gid ignoring!\n");
519 dprintk("RPC_AUTH_GSS callback secflavor "
523 dummy
= be32_to_cpup(p
++);
524 /* gcbp_handle_from_server */
525 dummy
= be32_to_cpup(p
++);
527 p
+= XDR_QUADLEN(dummy
);
528 /* gcbp_handle_from_client */
530 dummy
= be32_to_cpup(p
++);
534 dprintk("Illegal callback secflavor\n");
541 static __be32
nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs
*argp
, struct nfsd4_backchannel_ctl
*bc
)
546 bc
->bc_cb_program
= be32_to_cpup(p
++);
547 nfsd4_decode_cb_sec(argp
, &bc
->bc_cb_sec
);
552 static __be32
nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs
*argp
, struct nfsd4_bind_conn_to_session
*bcts
)
556 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 8);
557 COPYMEM(bcts
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
558 bcts
->dir
= be32_to_cpup(p
++);
559 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
560 * could help us figure out we should be using it. */
565 nfsd4_decode_close(struct nfsd4_compoundargs
*argp
, struct nfsd4_close
*close
)
570 close
->cl_seqid
= be32_to_cpup(p
++);
571 return nfsd4_decode_stateid(argp
, &close
->cl_stateid
);
578 nfsd4_decode_commit(struct nfsd4_compoundargs
*argp
, struct nfsd4_commit
*commit
)
583 p
= xdr_decode_hyper(p
, &commit
->co_offset
);
584 commit
->co_count
= be32_to_cpup(p
++);
590 nfsd4_decode_create(struct nfsd4_compoundargs
*argp
, struct nfsd4_create
*create
)
595 create
->cr_type
= be32_to_cpup(p
++);
596 switch (create
->cr_type
) {
599 create
->cr_datalen
= be32_to_cpup(p
++);
600 READ_BUF(create
->cr_datalen
);
601 create
->cr_data
= svcxdr_dupstr(argp
, p
, create
->cr_datalen
);
602 if (!create
->cr_data
)
603 return nfserr_jukebox
;
608 create
->cr_specdata1
= be32_to_cpup(p
++);
609 create
->cr_specdata2
= be32_to_cpup(p
++);
619 create
->cr_namelen
= be32_to_cpup(p
++);
620 READ_BUF(create
->cr_namelen
);
621 SAVEMEM(create
->cr_name
, create
->cr_namelen
);
622 if ((status
= check_filename(create
->cr_name
, create
->cr_namelen
)))
625 status
= nfsd4_decode_fattr(argp
, create
->cr_bmval
, &create
->cr_iattr
,
626 &create
->cr_acl
, &create
->cr_label
);
634 nfsd4_decode_delegreturn(struct nfsd4_compoundargs
*argp
, struct nfsd4_delegreturn
*dr
)
636 return nfsd4_decode_stateid(argp
, &dr
->dr_stateid
);
640 nfsd4_decode_getattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_getattr
*getattr
)
642 return nfsd4_decode_bitmap(argp
, getattr
->ga_bmval
);
646 nfsd4_decode_link(struct nfsd4_compoundargs
*argp
, struct nfsd4_link
*link
)
651 link
->li_namelen
= be32_to_cpup(p
++);
652 READ_BUF(link
->li_namelen
);
653 SAVEMEM(link
->li_name
, link
->li_namelen
);
654 if ((status
= check_filename(link
->li_name
, link
->li_namelen
)))
661 nfsd4_decode_lock(struct nfsd4_compoundargs
*argp
, struct nfsd4_lock
*lock
)
666 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
669 lock
->lk_type
= be32_to_cpup(p
++);
670 if ((lock
->lk_type
< NFS4_READ_LT
) || (lock
->lk_type
> NFS4_WRITEW_LT
))
672 lock
->lk_reclaim
= be32_to_cpup(p
++);
673 p
= xdr_decode_hyper(p
, &lock
->lk_offset
);
674 p
= xdr_decode_hyper(p
, &lock
->lk_length
);
675 lock
->lk_is_new
= be32_to_cpup(p
++);
677 if (lock
->lk_is_new
) {
679 lock
->lk_new_open_seqid
= be32_to_cpup(p
++);
680 status
= nfsd4_decode_stateid(argp
, &lock
->lk_new_open_stateid
);
683 READ_BUF(8 + sizeof(clientid_t
));
684 lock
->lk_new_lock_seqid
= be32_to_cpup(p
++);
685 COPYMEM(&lock
->lk_new_clientid
, sizeof(clientid_t
));
686 lock
->lk_new_owner
.len
= be32_to_cpup(p
++);
687 READ_BUF(lock
->lk_new_owner
.len
);
688 READMEM(lock
->lk_new_owner
.data
, lock
->lk_new_owner
.len
);
690 status
= nfsd4_decode_stateid(argp
, &lock
->lk_old_lock_stateid
);
694 lock
->lk_old_lock_seqid
= be32_to_cpup(p
++);
701 nfsd4_decode_lockt(struct nfsd4_compoundargs
*argp
, struct nfsd4_lockt
*lockt
)
706 lockt
->lt_type
= be32_to_cpup(p
++);
707 if((lockt
->lt_type
< NFS4_READ_LT
) || (lockt
->lt_type
> NFS4_WRITEW_LT
))
709 p
= xdr_decode_hyper(p
, &lockt
->lt_offset
);
710 p
= xdr_decode_hyper(p
, &lockt
->lt_length
);
711 COPYMEM(&lockt
->lt_clientid
, 8);
712 lockt
->lt_owner
.len
= be32_to_cpup(p
++);
713 READ_BUF(lockt
->lt_owner
.len
);
714 READMEM(lockt
->lt_owner
.data
, lockt
->lt_owner
.len
);
720 nfsd4_decode_locku(struct nfsd4_compoundargs
*argp
, struct nfsd4_locku
*locku
)
725 locku
->lu_type
= be32_to_cpup(p
++);
726 if ((locku
->lu_type
< NFS4_READ_LT
) || (locku
->lu_type
> NFS4_WRITEW_LT
))
728 locku
->lu_seqid
= be32_to_cpup(p
++);
729 status
= nfsd4_decode_stateid(argp
, &locku
->lu_stateid
);
733 p
= xdr_decode_hyper(p
, &locku
->lu_offset
);
734 p
= xdr_decode_hyper(p
, &locku
->lu_length
);
740 nfsd4_decode_lookup(struct nfsd4_compoundargs
*argp
, struct nfsd4_lookup
*lookup
)
745 lookup
->lo_len
= be32_to_cpup(p
++);
746 READ_BUF(lookup
->lo_len
);
747 SAVEMEM(lookup
->lo_name
, lookup
->lo_len
);
748 if ((status
= check_filename(lookup
->lo_name
, lookup
->lo_len
)))
754 static __be32
nfsd4_decode_share_access(struct nfsd4_compoundargs
*argp
, u32
*share_access
, u32
*deleg_want
, u32
*deleg_when
)
760 w
= be32_to_cpup(p
++);
761 *share_access
= w
& NFS4_SHARE_ACCESS_MASK
;
762 *deleg_want
= w
& NFS4_SHARE_WANT_MASK
;
764 *deleg_when
= w
& NFS4_SHARE_WHEN_MASK
;
766 switch (w
& NFS4_SHARE_ACCESS_MASK
) {
767 case NFS4_SHARE_ACCESS_READ
:
768 case NFS4_SHARE_ACCESS_WRITE
:
769 case NFS4_SHARE_ACCESS_BOTH
:
772 return nfserr_bad_xdr
;
774 w
&= ~NFS4_SHARE_ACCESS_MASK
;
777 if (!argp
->minorversion
)
778 return nfserr_bad_xdr
;
779 switch (w
& NFS4_SHARE_WANT_MASK
) {
780 case NFS4_SHARE_WANT_NO_PREFERENCE
:
781 case NFS4_SHARE_WANT_READ_DELEG
:
782 case NFS4_SHARE_WANT_WRITE_DELEG
:
783 case NFS4_SHARE_WANT_ANY_DELEG
:
784 case NFS4_SHARE_WANT_NO_DELEG
:
785 case NFS4_SHARE_WANT_CANCEL
:
788 return nfserr_bad_xdr
;
790 w
&= ~NFS4_SHARE_WANT_MASK
;
794 if (!deleg_when
) /* open_downgrade */
797 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
:
798 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
:
799 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL
|
800 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
):
804 return nfserr_bad_xdr
;
807 static __be32
nfsd4_decode_share_deny(struct nfsd4_compoundargs
*argp
, u32
*x
)
812 *x
= be32_to_cpup(p
++);
813 /* Note: unlinke access bits, deny bits may be zero. */
814 if (*x
& ~NFS4_SHARE_DENY_BOTH
)
815 return nfserr_bad_xdr
;
818 return nfserr_bad_xdr
;
821 static __be32
nfsd4_decode_opaque(struct nfsd4_compoundargs
*argp
, struct xdr_netobj
*o
)
826 o
->len
= be32_to_cpup(p
++);
828 if (o
->len
== 0 || o
->len
> NFS4_OPAQUE_LIMIT
)
829 return nfserr_bad_xdr
;
832 SAVEMEM(o
->data
, o
->len
);
835 return nfserr_bad_xdr
;
839 nfsd4_decode_open(struct nfsd4_compoundargs
*argp
, struct nfsd4_open
*open
)
844 memset(open
->op_bmval
, 0, sizeof(open
->op_bmval
));
845 open
->op_iattr
.ia_valid
= 0;
846 open
->op_openowner
= NULL
;
848 open
->op_xdr_error
= 0;
849 /* seqid, share_access, share_deny, clientid, ownerlen */
851 open
->op_seqid
= be32_to_cpup(p
++);
852 /* decode, yet ignore deleg_when until supported */
853 status
= nfsd4_decode_share_access(argp
, &open
->op_share_access
,
854 &open
->op_deleg_want
, &dummy
);
857 status
= nfsd4_decode_share_deny(argp
, &open
->op_share_deny
);
860 READ_BUF(sizeof(clientid_t
));
861 COPYMEM(&open
->op_clientid
, sizeof(clientid_t
));
862 status
= nfsd4_decode_opaque(argp
, &open
->op_owner
);
866 open
->op_create
= be32_to_cpup(p
++);
867 switch (open
->op_create
) {
868 case NFS4_OPEN_NOCREATE
:
870 case NFS4_OPEN_CREATE
:
872 open
->op_createmode
= be32_to_cpup(p
++);
873 switch (open
->op_createmode
) {
874 case NFS4_CREATE_UNCHECKED
:
875 case NFS4_CREATE_GUARDED
:
876 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
877 &open
->op_iattr
, &open
->op_acl
, &open
->op_label
);
881 case NFS4_CREATE_EXCLUSIVE
:
882 READ_BUF(NFS4_VERIFIER_SIZE
);
883 COPYMEM(open
->op_verf
.data
, NFS4_VERIFIER_SIZE
);
885 case NFS4_CREATE_EXCLUSIVE4_1
:
886 if (argp
->minorversion
< 1)
888 READ_BUF(NFS4_VERIFIER_SIZE
);
889 COPYMEM(open
->op_verf
.data
, NFS4_VERIFIER_SIZE
);
890 status
= nfsd4_decode_fattr(argp
, open
->op_bmval
,
891 &open
->op_iattr
, &open
->op_acl
, &open
->op_label
);
905 open
->op_claim_type
= be32_to_cpup(p
++);
906 switch (open
->op_claim_type
) {
907 case NFS4_OPEN_CLAIM_NULL
:
908 case NFS4_OPEN_CLAIM_DELEGATE_PREV
:
910 open
->op_fname
.len
= be32_to_cpup(p
++);
911 READ_BUF(open
->op_fname
.len
);
912 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
913 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
)))
916 case NFS4_OPEN_CLAIM_PREVIOUS
:
918 open
->op_delegate_type
= be32_to_cpup(p
++);
920 case NFS4_OPEN_CLAIM_DELEGATE_CUR
:
921 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
925 open
->op_fname
.len
= be32_to_cpup(p
++);
926 READ_BUF(open
->op_fname
.len
);
927 SAVEMEM(open
->op_fname
.data
, open
->op_fname
.len
);
928 if ((status
= check_filename(open
->op_fname
.data
, open
->op_fname
.len
)))
931 case NFS4_OPEN_CLAIM_FH
:
932 case NFS4_OPEN_CLAIM_DELEG_PREV_FH
:
933 if (argp
->minorversion
< 1)
937 case NFS4_OPEN_CLAIM_DELEG_CUR_FH
:
938 if (argp
->minorversion
< 1)
940 status
= nfsd4_decode_stateid(argp
, &open
->op_delegate_stateid
);
952 nfsd4_decode_open_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_confirm
*open_conf
)
956 if (argp
->minorversion
>= 1)
957 return nfserr_notsupp
;
959 status
= nfsd4_decode_stateid(argp
, &open_conf
->oc_req_stateid
);
963 open_conf
->oc_seqid
= be32_to_cpup(p
++);
969 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs
*argp
, struct nfsd4_open_downgrade
*open_down
)
973 status
= nfsd4_decode_stateid(argp
, &open_down
->od_stateid
);
977 open_down
->od_seqid
= be32_to_cpup(p
++);
978 status
= nfsd4_decode_share_access(argp
, &open_down
->od_share_access
,
979 &open_down
->od_deleg_want
, NULL
);
982 status
= nfsd4_decode_share_deny(argp
, &open_down
->od_share_deny
);
989 nfsd4_decode_putfh(struct nfsd4_compoundargs
*argp
, struct nfsd4_putfh
*putfh
)
994 putfh
->pf_fhlen
= be32_to_cpup(p
++);
995 if (putfh
->pf_fhlen
> NFS4_FHSIZE
)
997 READ_BUF(putfh
->pf_fhlen
);
998 SAVEMEM(putfh
->pf_fhval
, putfh
->pf_fhlen
);
1004 nfsd4_decode_putpubfh(struct nfsd4_compoundargs
*argp
, void *p
)
1006 if (argp
->minorversion
== 0)
1008 return nfserr_notsupp
;
1012 nfsd4_decode_read(struct nfsd4_compoundargs
*argp
, struct nfsd4_read
*read
)
1016 status
= nfsd4_decode_stateid(argp
, &read
->rd_stateid
);
1020 p
= xdr_decode_hyper(p
, &read
->rd_offset
);
1021 read
->rd_length
= be32_to_cpup(p
++);
1027 nfsd4_decode_readdir(struct nfsd4_compoundargs
*argp
, struct nfsd4_readdir
*readdir
)
1032 p
= xdr_decode_hyper(p
, &readdir
->rd_cookie
);
1033 COPYMEM(readdir
->rd_verf
.data
, sizeof(readdir
->rd_verf
.data
));
1034 readdir
->rd_dircount
= be32_to_cpup(p
++);
1035 readdir
->rd_maxcount
= be32_to_cpup(p
++);
1036 if ((status
= nfsd4_decode_bitmap(argp
, readdir
->rd_bmval
)))
1043 nfsd4_decode_remove(struct nfsd4_compoundargs
*argp
, struct nfsd4_remove
*remove
)
1048 remove
->rm_namelen
= be32_to_cpup(p
++);
1049 READ_BUF(remove
->rm_namelen
);
1050 SAVEMEM(remove
->rm_name
, remove
->rm_namelen
);
1051 if ((status
= check_filename(remove
->rm_name
, remove
->rm_namelen
)))
1058 nfsd4_decode_rename(struct nfsd4_compoundargs
*argp
, struct nfsd4_rename
*rename
)
1063 rename
->rn_snamelen
= be32_to_cpup(p
++);
1064 READ_BUF(rename
->rn_snamelen
);
1065 SAVEMEM(rename
->rn_sname
, rename
->rn_snamelen
);
1067 rename
->rn_tnamelen
= be32_to_cpup(p
++);
1068 READ_BUF(rename
->rn_tnamelen
);
1069 SAVEMEM(rename
->rn_tname
, rename
->rn_tnamelen
);
1070 if ((status
= check_filename(rename
->rn_sname
, rename
->rn_snamelen
)))
1072 if ((status
= check_filename(rename
->rn_tname
, rename
->rn_tnamelen
)))
1079 nfsd4_decode_renew(struct nfsd4_compoundargs
*argp
, clientid_t
*clientid
)
1083 if (argp
->minorversion
>= 1)
1084 return nfserr_notsupp
;
1086 READ_BUF(sizeof(clientid_t
));
1087 COPYMEM(clientid
, sizeof(clientid_t
));
1093 nfsd4_decode_secinfo(struct nfsd4_compoundargs
*argp
,
1094 struct nfsd4_secinfo
*secinfo
)
1099 secinfo
->si_namelen
= be32_to_cpup(p
++);
1100 READ_BUF(secinfo
->si_namelen
);
1101 SAVEMEM(secinfo
->si_name
, secinfo
->si_namelen
);
1102 status
= check_filename(secinfo
->si_name
, secinfo
->si_namelen
);
1109 nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs
*argp
,
1110 struct nfsd4_secinfo_no_name
*sin
)
1115 sin
->sin_style
= be32_to_cpup(p
++);
1120 nfsd4_decode_setattr(struct nfsd4_compoundargs
*argp
, struct nfsd4_setattr
*setattr
)
1124 status
= nfsd4_decode_stateid(argp
, &setattr
->sa_stateid
);
1127 return nfsd4_decode_fattr(argp
, setattr
->sa_bmval
, &setattr
->sa_iattr
,
1128 &setattr
->sa_acl
, &setattr
->sa_label
);
1132 nfsd4_decode_setclientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid
*setclientid
)
1136 if (argp
->minorversion
>= 1)
1137 return nfserr_notsupp
;
1139 READ_BUF(NFS4_VERIFIER_SIZE
);
1140 COPYMEM(setclientid
->se_verf
.data
, NFS4_VERIFIER_SIZE
);
1142 status
= nfsd4_decode_opaque(argp
, &setclientid
->se_name
);
1144 return nfserr_bad_xdr
;
1146 setclientid
->se_callback_prog
= be32_to_cpup(p
++);
1147 setclientid
->se_callback_netid_len
= be32_to_cpup(p
++);
1148 READ_BUF(setclientid
->se_callback_netid_len
);
1149 SAVEMEM(setclientid
->se_callback_netid_val
, setclientid
->se_callback_netid_len
);
1151 setclientid
->se_callback_addr_len
= be32_to_cpup(p
++);
1153 READ_BUF(setclientid
->se_callback_addr_len
);
1154 SAVEMEM(setclientid
->se_callback_addr_val
, setclientid
->se_callback_addr_len
);
1156 setclientid
->se_callback_ident
= be32_to_cpup(p
++);
1162 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs
*argp
, struct nfsd4_setclientid_confirm
*scd_c
)
1166 if (argp
->minorversion
>= 1)
1167 return nfserr_notsupp
;
1169 READ_BUF(8 + NFS4_VERIFIER_SIZE
);
1170 COPYMEM(&scd_c
->sc_clientid
, 8);
1171 COPYMEM(&scd_c
->sc_confirm
, NFS4_VERIFIER_SIZE
);
1176 /* Also used for NVERIFY */
1178 nfsd4_decode_verify(struct nfsd4_compoundargs
*argp
, struct nfsd4_verify
*verify
)
1182 if ((status
= nfsd4_decode_bitmap(argp
, verify
->ve_bmval
)))
1185 /* For convenience's sake, we compare raw xdr'd attributes in
1186 * nfsd4_proc_verify */
1189 verify
->ve_attrlen
= be32_to_cpup(p
++);
1190 READ_BUF(verify
->ve_attrlen
);
1191 SAVEMEM(verify
->ve_attrval
, verify
->ve_attrlen
);
1197 nfsd4_decode_write(struct nfsd4_compoundargs
*argp
, struct nfsd4_write
*write
)
1203 status
= nfsd4_decode_stateid(argp
, &write
->wr_stateid
);
1207 p
= xdr_decode_hyper(p
, &write
->wr_offset
);
1208 write
->wr_stable_how
= be32_to_cpup(p
++);
1209 if (write
->wr_stable_how
> 2)
1211 write
->wr_buflen
= be32_to_cpup(p
++);
1213 /* Sorry .. no magic macros for this.. *
1214 * READ_BUF(write->wr_buflen);
1215 * SAVEMEM(write->wr_buf, write->wr_buflen);
1217 avail
= (char*)argp
->end
- (char*)argp
->p
;
1218 if (avail
+ argp
->pagelen
< write
->wr_buflen
) {
1219 dprintk("NFSD: xdr error (%s:%d)\n",
1220 __FILE__
, __LINE__
);
1223 write
->wr_head
.iov_base
= p
;
1224 write
->wr_head
.iov_len
= avail
;
1225 write
->wr_pagelist
= argp
->pagelist
;
1227 len
= XDR_QUADLEN(write
->wr_buflen
) << 2;
1233 pages
= len
>> PAGE_SHIFT
;
1234 argp
->pagelist
+= pages
;
1235 argp
->pagelen
-= pages
* PAGE_SIZE
;
1236 len
-= pages
* PAGE_SIZE
;
1238 argp
->p
= (__be32
*)page_address(argp
->pagelist
[0]);
1240 argp
->end
= argp
->p
+ XDR_QUADLEN(PAGE_SIZE
);
1242 argp
->p
+= XDR_QUADLEN(len
);
1248 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs
*argp
, struct nfsd4_release_lockowner
*rlockowner
)
1252 if (argp
->minorversion
>= 1)
1253 return nfserr_notsupp
;
1256 COPYMEM(&rlockowner
->rl_clientid
, sizeof(clientid_t
));
1257 rlockowner
->rl_owner
.len
= be32_to_cpup(p
++);
1258 READ_BUF(rlockowner
->rl_owner
.len
);
1259 READMEM(rlockowner
->rl_owner
.data
, rlockowner
->rl_owner
.len
);
1261 if (argp
->minorversion
&& !zero_clientid(&rlockowner
->rl_clientid
))
1262 return nfserr_inval
;
1267 nfsd4_decode_exchange_id(struct nfsd4_compoundargs
*argp
,
1268 struct nfsd4_exchange_id
*exid
)
1273 READ_BUF(NFS4_VERIFIER_SIZE
);
1274 COPYMEM(exid
->verifier
.data
, NFS4_VERIFIER_SIZE
);
1276 status
= nfsd4_decode_opaque(argp
, &exid
->clname
);
1278 return nfserr_bad_xdr
;
1281 exid
->flags
= be32_to_cpup(p
++);
1283 /* Ignore state_protect4_a */
1285 exid
->spa_how
= be32_to_cpup(p
++);
1286 switch (exid
->spa_how
) {
1290 /* spo_must_enforce */
1292 dummy
= be32_to_cpup(p
++);
1293 READ_BUF(dummy
* 4);
1296 /* spo_must_allow */
1298 dummy
= be32_to_cpup(p
++);
1299 READ_BUF(dummy
* 4);
1305 dummy
= be32_to_cpup(p
++);
1306 READ_BUF(dummy
* 4);
1310 dummy
= be32_to_cpup(p
++);
1311 READ_BUF(dummy
* 4);
1314 /* ssp_hash_algs<> */
1316 tmp
= be32_to_cpup(p
++);
1319 dummy
= be32_to_cpup(p
++);
1321 p
+= XDR_QUADLEN(dummy
);
1324 /* ssp_encr_algs<> */
1326 tmp
= be32_to_cpup(p
++);
1329 dummy
= be32_to_cpup(p
++);
1331 p
+= XDR_QUADLEN(dummy
);
1334 /* ssp_window and ssp_num_gss_handles */
1336 dummy
= be32_to_cpup(p
++);
1337 dummy
= be32_to_cpup(p
++);
1343 /* Ignore Implementation ID */
1344 READ_BUF(4); /* nfs_impl_id4 array length */
1345 dummy
= be32_to_cpup(p
++);
1353 dummy
= be32_to_cpup(p
++);
1355 p
+= XDR_QUADLEN(dummy
);
1359 dummy
= be32_to_cpup(p
++);
1361 p
+= XDR_QUADLEN(dummy
);
1371 nfsd4_decode_create_session(struct nfsd4_compoundargs
*argp
,
1372 struct nfsd4_create_session
*sess
)
1378 COPYMEM(&sess
->clientid
, 8);
1379 sess
->seqid
= be32_to_cpup(p
++);
1380 sess
->flags
= be32_to_cpup(p
++);
1382 /* Fore channel attrs */
1384 dummy
= be32_to_cpup(p
++); /* headerpadsz is always 0 */
1385 sess
->fore_channel
.maxreq_sz
= be32_to_cpup(p
++);
1386 sess
->fore_channel
.maxresp_sz
= be32_to_cpup(p
++);
1387 sess
->fore_channel
.maxresp_cached
= be32_to_cpup(p
++);
1388 sess
->fore_channel
.maxops
= be32_to_cpup(p
++);
1389 sess
->fore_channel
.maxreqs
= be32_to_cpup(p
++);
1390 sess
->fore_channel
.nr_rdma_attrs
= be32_to_cpup(p
++);
1391 if (sess
->fore_channel
.nr_rdma_attrs
== 1) {
1393 sess
->fore_channel
.rdma_attrs
= be32_to_cpup(p
++);
1394 } else if (sess
->fore_channel
.nr_rdma_attrs
> 1) {
1395 dprintk("Too many fore channel attr bitmaps!\n");
1399 /* Back channel attrs */
1401 dummy
= be32_to_cpup(p
++); /* headerpadsz is always 0 */
1402 sess
->back_channel
.maxreq_sz
= be32_to_cpup(p
++);
1403 sess
->back_channel
.maxresp_sz
= be32_to_cpup(p
++);
1404 sess
->back_channel
.maxresp_cached
= be32_to_cpup(p
++);
1405 sess
->back_channel
.maxops
= be32_to_cpup(p
++);
1406 sess
->back_channel
.maxreqs
= be32_to_cpup(p
++);
1407 sess
->back_channel
.nr_rdma_attrs
= be32_to_cpup(p
++);
1408 if (sess
->back_channel
.nr_rdma_attrs
== 1) {
1410 sess
->back_channel
.rdma_attrs
= be32_to_cpup(p
++);
1411 } else if (sess
->back_channel
.nr_rdma_attrs
> 1) {
1412 dprintk("Too many back channel attr bitmaps!\n");
1417 sess
->callback_prog
= be32_to_cpup(p
++);
1418 nfsd4_decode_cb_sec(argp
, &sess
->cb_sec
);
1423 nfsd4_decode_destroy_session(struct nfsd4_compoundargs
*argp
,
1424 struct nfsd4_destroy_session
*destroy_session
)
1427 READ_BUF(NFS4_MAX_SESSIONID_LEN
);
1428 COPYMEM(destroy_session
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1434 nfsd4_decode_free_stateid(struct nfsd4_compoundargs
*argp
,
1435 struct nfsd4_free_stateid
*free_stateid
)
1439 READ_BUF(sizeof(stateid_t
));
1440 free_stateid
->fr_stateid
.si_generation
= be32_to_cpup(p
++);
1441 COPYMEM(&free_stateid
->fr_stateid
.si_opaque
, sizeof(stateid_opaque_t
));
1447 nfsd4_decode_sequence(struct nfsd4_compoundargs
*argp
,
1448 struct nfsd4_sequence
*seq
)
1452 READ_BUF(NFS4_MAX_SESSIONID_LEN
+ 16);
1453 COPYMEM(seq
->sessionid
.data
, NFS4_MAX_SESSIONID_LEN
);
1454 seq
->seqid
= be32_to_cpup(p
++);
1455 seq
->slotid
= be32_to_cpup(p
++);
1456 seq
->maxslots
= be32_to_cpup(p
++);
1457 seq
->cachethis
= be32_to_cpup(p
++);
1463 nfsd4_decode_test_stateid(struct nfsd4_compoundargs
*argp
, struct nfsd4_test_stateid
*test_stateid
)
1467 struct nfsd4_test_stateid_id
*stateid
;
1470 test_stateid
->ts_num_ids
= ntohl(*p
++);
1472 INIT_LIST_HEAD(&test_stateid
->ts_stateid_list
);
1474 for (i
= 0; i
< test_stateid
->ts_num_ids
; i
++) {
1475 stateid
= svcxdr_tmpalloc(argp
, sizeof(*stateid
));
1477 status
= nfserrno(-ENOMEM
);
1481 INIT_LIST_HEAD(&stateid
->ts_id_list
);
1482 list_add_tail(&stateid
->ts_id_list
, &test_stateid
->ts_stateid_list
);
1484 status
= nfsd4_decode_stateid(argp
, &stateid
->ts_id_stateid
);
1493 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__
, __LINE__
);
1494 status
= nfserr_bad_xdr
;
1498 static __be32
nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs
*argp
, struct nfsd4_destroy_clientid
*dc
)
1503 COPYMEM(&dc
->clientid
, 8);
1508 static __be32
nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs
*argp
, struct nfsd4_reclaim_complete
*rc
)
1513 rc
->rca_one_fs
= be32_to_cpup(p
++);
1519 nfsd4_decode_seek(struct nfsd4_compoundargs
*argp
, struct nfsd4_seek
*seek
)
1523 status
= nfsd4_decode_stateid(argp
, &seek
->seek_stateid
);
1528 p
= xdr_decode_hyper(p
, &seek
->seek_offset
);
1529 seek
->seek_whence
= be32_to_cpup(p
);
1535 nfsd4_decode_noop(struct nfsd4_compoundargs
*argp
, void *p
)
1541 nfsd4_decode_notsupp(struct nfsd4_compoundargs
*argp
, void *p
)
1543 return nfserr_notsupp
;
1546 typedef __be32(*nfsd4_dec
)(struct nfsd4_compoundargs
*argp
, void *);
1548 static nfsd4_dec nfsd4_dec_ops
[] = {
1549 [OP_ACCESS
] = (nfsd4_dec
)nfsd4_decode_access
,
1550 [OP_CLOSE
] = (nfsd4_dec
)nfsd4_decode_close
,
1551 [OP_COMMIT
] = (nfsd4_dec
)nfsd4_decode_commit
,
1552 [OP_CREATE
] = (nfsd4_dec
)nfsd4_decode_create
,
1553 [OP_DELEGPURGE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1554 [OP_DELEGRETURN
] = (nfsd4_dec
)nfsd4_decode_delegreturn
,
1555 [OP_GETATTR
] = (nfsd4_dec
)nfsd4_decode_getattr
,
1556 [OP_GETFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1557 [OP_LINK
] = (nfsd4_dec
)nfsd4_decode_link
,
1558 [OP_LOCK
] = (nfsd4_dec
)nfsd4_decode_lock
,
1559 [OP_LOCKT
] = (nfsd4_dec
)nfsd4_decode_lockt
,
1560 [OP_LOCKU
] = (nfsd4_dec
)nfsd4_decode_locku
,
1561 [OP_LOOKUP
] = (nfsd4_dec
)nfsd4_decode_lookup
,
1562 [OP_LOOKUPP
] = (nfsd4_dec
)nfsd4_decode_noop
,
1563 [OP_NVERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1564 [OP_OPEN
] = (nfsd4_dec
)nfsd4_decode_open
,
1565 [OP_OPENATTR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1566 [OP_OPEN_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_open_confirm
,
1567 [OP_OPEN_DOWNGRADE
] = (nfsd4_dec
)nfsd4_decode_open_downgrade
,
1568 [OP_PUTFH
] = (nfsd4_dec
)nfsd4_decode_putfh
,
1569 [OP_PUTPUBFH
] = (nfsd4_dec
)nfsd4_decode_putpubfh
,
1570 [OP_PUTROOTFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1571 [OP_READ
] = (nfsd4_dec
)nfsd4_decode_read
,
1572 [OP_READDIR
] = (nfsd4_dec
)nfsd4_decode_readdir
,
1573 [OP_READLINK
] = (nfsd4_dec
)nfsd4_decode_noop
,
1574 [OP_REMOVE
] = (nfsd4_dec
)nfsd4_decode_remove
,
1575 [OP_RENAME
] = (nfsd4_dec
)nfsd4_decode_rename
,
1576 [OP_RENEW
] = (nfsd4_dec
)nfsd4_decode_renew
,
1577 [OP_RESTOREFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1578 [OP_SAVEFH
] = (nfsd4_dec
)nfsd4_decode_noop
,
1579 [OP_SECINFO
] = (nfsd4_dec
)nfsd4_decode_secinfo
,
1580 [OP_SETATTR
] = (nfsd4_dec
)nfsd4_decode_setattr
,
1581 [OP_SETCLIENTID
] = (nfsd4_dec
)nfsd4_decode_setclientid
,
1582 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_dec
)nfsd4_decode_setclientid_confirm
,
1583 [OP_VERIFY
] = (nfsd4_dec
)nfsd4_decode_verify
,
1584 [OP_WRITE
] = (nfsd4_dec
)nfsd4_decode_write
,
1585 [OP_RELEASE_LOCKOWNER
] = (nfsd4_dec
)nfsd4_decode_release_lockowner
,
1587 /* new operations for NFSv4.1 */
1588 [OP_BACKCHANNEL_CTL
] = (nfsd4_dec
)nfsd4_decode_backchannel_ctl
,
1589 [OP_BIND_CONN_TO_SESSION
]= (nfsd4_dec
)nfsd4_decode_bind_conn_to_session
,
1590 [OP_EXCHANGE_ID
] = (nfsd4_dec
)nfsd4_decode_exchange_id
,
1591 [OP_CREATE_SESSION
] = (nfsd4_dec
)nfsd4_decode_create_session
,
1592 [OP_DESTROY_SESSION
] = (nfsd4_dec
)nfsd4_decode_destroy_session
,
1593 [OP_FREE_STATEID
] = (nfsd4_dec
)nfsd4_decode_free_stateid
,
1594 [OP_GET_DIR_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1595 [OP_GETDEVICEINFO
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1596 [OP_GETDEVICELIST
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1597 [OP_LAYOUTCOMMIT
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1598 [OP_LAYOUTGET
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1599 [OP_LAYOUTRETURN
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1600 [OP_SECINFO_NO_NAME
] = (nfsd4_dec
)nfsd4_decode_secinfo_no_name
,
1601 [OP_SEQUENCE
] = (nfsd4_dec
)nfsd4_decode_sequence
,
1602 [OP_SET_SSV
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1603 [OP_TEST_STATEID
] = (nfsd4_dec
)nfsd4_decode_test_stateid
,
1604 [OP_WANT_DELEGATION
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1605 [OP_DESTROY_CLIENTID
] = (nfsd4_dec
)nfsd4_decode_destroy_clientid
,
1606 [OP_RECLAIM_COMPLETE
] = (nfsd4_dec
)nfsd4_decode_reclaim_complete
,
1608 /* new operations for NFSv4.2 */
1609 [OP_ALLOCATE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1610 [OP_COPY
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1611 [OP_COPY_NOTIFY
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1612 [OP_DEALLOCATE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1613 [OP_IO_ADVISE
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1614 [OP_LAYOUTERROR
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1615 [OP_LAYOUTSTATS
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1616 [OP_OFFLOAD_CANCEL
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1617 [OP_OFFLOAD_STATUS
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1618 [OP_READ_PLUS
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1619 [OP_SEEK
] = (nfsd4_dec
)nfsd4_decode_seek
,
1620 [OP_WRITE_SAME
] = (nfsd4_dec
)nfsd4_decode_notsupp
,
1624 nfsd4_opnum_in_range(struct nfsd4_compoundargs
*argp
, struct nfsd4_op
*op
)
1626 if (op
->opnum
< FIRST_NFS4_OP
)
1628 else if (argp
->minorversion
== 0 && op
->opnum
> LAST_NFS40_OP
)
1630 else if (argp
->minorversion
== 1 && op
->opnum
> LAST_NFS41_OP
)
1632 else if (argp
->minorversion
== 2 && op
->opnum
> LAST_NFS42_OP
)
1638 nfsd4_decode_compound(struct nfsd4_compoundargs
*argp
)
1641 struct nfsd4_op
*op
;
1642 bool cachethis
= false;
1643 int auth_slack
= argp
->rqstp
->rq_auth_slack
;
1644 int max_reply
= auth_slack
+ 8; /* opcnt, status */
1650 argp
->taglen
= be32_to_cpup(p
++);
1651 READ_BUF(argp
->taglen
);
1652 SAVEMEM(argp
->tag
, argp
->taglen
);
1654 argp
->minorversion
= be32_to_cpup(p
++);
1655 argp
->opcnt
= be32_to_cpup(p
++);
1656 max_reply
+= 4 + (XDR_QUADLEN(argp
->taglen
) << 2);
1658 if (argp
->taglen
> NFSD4_MAX_TAGLEN
)
1660 if (argp
->opcnt
> 100)
1663 if (argp
->opcnt
> ARRAY_SIZE(argp
->iops
)) {
1664 argp
->ops
= kzalloc(argp
->opcnt
* sizeof(*argp
->ops
), GFP_KERNEL
);
1666 argp
->ops
= argp
->iops
;
1667 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1672 if (argp
->minorversion
> NFSD_SUPPORTED_MINOR_VERSION
)
1675 for (i
= 0; i
< argp
->opcnt
; i
++) {
1680 op
->opnum
= be32_to_cpup(p
++);
1682 if (nfsd4_opnum_in_range(argp
, op
))
1683 op
->status
= nfsd4_dec_ops
[op
->opnum
](argp
, &op
->u
);
1685 op
->opnum
= OP_ILLEGAL
;
1686 op
->status
= nfserr_op_illegal
;
1689 * We'll try to cache the result in the DRC if any one
1690 * op in the compound wants to be cached:
1692 cachethis
|= nfsd4_cache_this_op(op
);
1694 if (op
->opnum
== OP_READ
) {
1696 readbytes
+= nfsd4_max_reply(argp
->rqstp
, op
);
1698 max_reply
+= nfsd4_max_reply(argp
->rqstp
, op
);
1700 * OP_LOCK may return a conflicting lock. (Special case
1701 * because it will just skip encoding this if it runs
1702 * out of xdr buffer space, and it is the only operation
1703 * that behaves this way.)
1705 if (op
->opnum
== OP_LOCK
)
1706 max_reply
+= NFS4_OPAQUE_LIMIT
;
1713 /* Sessions make the DRC unnecessary: */
1714 if (argp
->minorversion
)
1716 svc_reserve(argp
->rqstp
, max_reply
+ readbytes
);
1717 argp
->rqstp
->rq_cachetype
= cachethis
? RC_REPLBUFF
: RC_NOCACHE
;
1719 if (readcount
> 1 || max_reply
> PAGE_SIZE
- auth_slack
)
1720 argp
->rqstp
->rq_splice_ok
= false;
1725 static __be32
*encode_change(__be32
*p
, struct kstat
*stat
, struct inode
*inode
)
1727 if (IS_I_VERSION(inode
)) {
1728 p
= xdr_encode_hyper(p
, inode
->i_version
);
1730 *p
++ = cpu_to_be32(stat
->ctime
.tv_sec
);
1731 *p
++ = cpu_to_be32(stat
->ctime
.tv_nsec
);
1736 static __be32
*encode_cinfo(__be32
*p
, struct nfsd4_change_info
*c
)
1738 *p
++ = cpu_to_be32(c
->atomic
);
1739 if (c
->change_supported
) {
1740 p
= xdr_encode_hyper(p
, c
->before_change
);
1741 p
= xdr_encode_hyper(p
, c
->after_change
);
1743 *p
++ = cpu_to_be32(c
->before_ctime_sec
);
1744 *p
++ = cpu_to_be32(c
->before_ctime_nsec
);
1745 *p
++ = cpu_to_be32(c
->after_ctime_sec
);
1746 *p
++ = cpu_to_be32(c
->after_ctime_nsec
);
1751 /* Encode as an array of strings the string given with components
1752 * separated @sep, escaped with esc_enter and esc_exit.
1754 static __be32
nfsd4_encode_components_esc(struct xdr_stream
*xdr
, char sep
,
1755 char *components
, char esc_enter
,
1761 int strlen
, count
=0;
1762 char *str
, *end
, *next
;
1764 dprintk("nfsd4_encode_components(%s)\n", components
);
1766 pathlen_offset
= xdr
->buf
->len
;
1767 p
= xdr_reserve_space(xdr
, 4);
1769 return nfserr_resource
;
1770 p
++; /* We will fill this in with @count later */
1772 end
= str
= components
;
1774 bool found_esc
= false;
1776 /* try to parse as esc_start, ..., esc_end, sep */
1777 if (*str
== esc_enter
) {
1778 for (; *end
&& (*end
!= esc_exit
); end
++)
1779 /* find esc_exit or end of string */;
1781 if (*end
&& (!*next
|| *next
== sep
)) {
1788 for (; *end
&& (*end
!= sep
); end
++)
1789 /* find sep or end of string */;
1793 p
= xdr_reserve_space(xdr
, strlen
+ 4);
1795 return nfserr_resource
;
1796 p
= xdr_encode_opaque(p
, str
, strlen
);
1806 pathlen
= htonl(count
);
1807 write_bytes_to_xdr_buf(xdr
->buf
, pathlen_offset
, &pathlen
, 4);
1811 /* Encode as an array of strings the string given with components
1814 static __be32
nfsd4_encode_components(struct xdr_stream
*xdr
, char sep
,
1817 return nfsd4_encode_components_esc(xdr
, sep
, components
, 0, 0);
1821 * encode a location element of a fs_locations structure
1823 static __be32
nfsd4_encode_fs_location4(struct xdr_stream
*xdr
,
1824 struct nfsd4_fs_location
*location
)
1828 status
= nfsd4_encode_components_esc(xdr
, ':', location
->hosts
,
1832 status
= nfsd4_encode_components(xdr
, '/', location
->path
);
1839 * Encode a path in RFC3530 'pathname4' format
1841 static __be32
nfsd4_encode_path(struct xdr_stream
*xdr
,
1842 const struct path
*root
,
1843 const struct path
*path
)
1845 struct path cur
= *path
;
1847 struct dentry
**components
= NULL
;
1848 unsigned int ncomponents
= 0;
1849 __be32 err
= nfserr_jukebox
;
1851 dprintk("nfsd4_encode_components(");
1854 /* First walk the path up to the nfsd root, and store the
1855 * dentries/path components in an array.
1858 if (cur
.dentry
== root
->dentry
&& cur
.mnt
== root
->mnt
)
1860 if (cur
.dentry
== cur
.mnt
->mnt_root
) {
1861 if (follow_up(&cur
))
1865 if ((ncomponents
& 15) == 0) {
1866 struct dentry
**new;
1867 new = krealloc(components
,
1868 sizeof(*new) * (ncomponents
+ 16),
1874 components
[ncomponents
++] = cur
.dentry
;
1875 cur
.dentry
= dget_parent(cur
.dentry
);
1877 err
= nfserr_resource
;
1878 p
= xdr_reserve_space(xdr
, 4);
1881 *p
++ = cpu_to_be32(ncomponents
);
1883 while (ncomponents
) {
1884 struct dentry
*dentry
= components
[ncomponents
- 1];
1887 spin_lock(&dentry
->d_lock
);
1888 len
= dentry
->d_name
.len
;
1889 p
= xdr_reserve_space(xdr
, len
+ 4);
1891 spin_unlock(&dentry
->d_lock
);
1894 p
= xdr_encode_opaque(p
, dentry
->d_name
.name
, len
);
1895 dprintk("/%s", dentry
->d_name
.name
);
1896 spin_unlock(&dentry
->d_lock
);
1905 dput(components
[--ncomponents
]);
1911 static __be32
nfsd4_encode_fsloc_fsroot(struct xdr_stream
*xdr
,
1912 struct svc_rqst
*rqstp
, const struct path
*path
)
1914 struct svc_export
*exp_ps
;
1917 exp_ps
= rqst_find_fsidzero_export(rqstp
);
1919 return nfserrno(PTR_ERR(exp_ps
));
1920 res
= nfsd4_encode_path(xdr
, &exp_ps
->ex_path
, path
);
1926 * encode a fs_locations structure
1928 static __be32
nfsd4_encode_fs_locations(struct xdr_stream
*xdr
,
1929 struct svc_rqst
*rqstp
, struct svc_export
*exp
)
1934 struct nfsd4_fs_locations
*fslocs
= &exp
->ex_fslocs
;
1936 status
= nfsd4_encode_fsloc_fsroot(xdr
, rqstp
, &exp
->ex_path
);
1939 p
= xdr_reserve_space(xdr
, 4);
1941 return nfserr_resource
;
1942 *p
++ = cpu_to_be32(fslocs
->locations_count
);
1943 for (i
=0; i
<fslocs
->locations_count
; i
++) {
1944 status
= nfsd4_encode_fs_location4(xdr
, &fslocs
->locations
[i
]);
1951 static u32
nfs4_file_type(umode_t mode
)
1953 switch (mode
& S_IFMT
) {
1954 case S_IFIFO
: return NF4FIFO
;
1955 case S_IFCHR
: return NF4CHR
;
1956 case S_IFDIR
: return NF4DIR
;
1957 case S_IFBLK
: return NF4BLK
;
1958 case S_IFLNK
: return NF4LNK
;
1959 case S_IFREG
: return NF4REG
;
1960 case S_IFSOCK
: return NF4SOCK
;
1961 default: return NF4BAD
;
1965 static inline __be32
1966 nfsd4_encode_aclname(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
1967 struct nfs4_ace
*ace
)
1969 if (ace
->whotype
!= NFS4_ACL_WHO_NAMED
)
1970 return nfs4_acl_write_who(xdr
, ace
->whotype
);
1971 else if (ace
->flag
& NFS4_ACE_IDENTIFIER_GROUP
)
1972 return nfsd4_encode_group(xdr
, rqstp
, ace
->who_gid
);
1974 return nfsd4_encode_user(xdr
, rqstp
, ace
->who_uid
);
1977 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1978 FATTR4_WORD0_RDATTR_ERROR)
1979 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1980 #define WORD2_ABSENT_FS_ATTRS 0
1982 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
1983 static inline __be32
1984 nfsd4_encode_security_label(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
1985 void *context
, int len
)
1989 p
= xdr_reserve_space(xdr
, len
+ 4 + 4 + 4);
1991 return nfserr_resource
;
1994 * For now we use a 0 here to indicate the null translation; in
1995 * the future we may place a call to translation code here.
1997 *p
++ = cpu_to_be32(0); /* lfs */
1998 *p
++ = cpu_to_be32(0); /* pi */
1999 p
= xdr_encode_opaque(p
, context
, len
);
2003 static inline __be32
2004 nfsd4_encode_security_label(struct xdr_stream
*xdr
, struct svc_rqst
*rqstp
,
2005 void *context
, int len
)
2009 static __be32
fattr_handle_absent_fs(u32
*bmval0
, u32
*bmval1
, u32
*bmval2
, u32
*rdattr_err
)
2011 /* As per referral draft: */
2012 if (*bmval0
& ~WORD0_ABSENT_FS_ATTRS
||
2013 *bmval1
& ~WORD1_ABSENT_FS_ATTRS
) {
2014 if (*bmval0
& FATTR4_WORD0_RDATTR_ERROR
||
2015 *bmval0
& FATTR4_WORD0_FS_LOCATIONS
)
2016 *rdattr_err
= NFSERR_MOVED
;
2018 return nfserr_moved
;
2020 *bmval0
&= WORD0_ABSENT_FS_ATTRS
;
2021 *bmval1
&= WORD1_ABSENT_FS_ATTRS
;
2022 *bmval2
&= WORD2_ABSENT_FS_ATTRS
;
2027 static int get_parent_attributes(struct svc_export
*exp
, struct kstat
*stat
)
2029 struct path path
= exp
->ex_path
;
2033 while (follow_up(&path
)) {
2034 if (path
.dentry
!= path
.mnt
->mnt_root
)
2037 err
= vfs_getattr(&path
, stat
);
2043 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2047 nfsd4_encode_fattr(struct xdr_stream
*xdr
, struct svc_fh
*fhp
,
2048 struct svc_export
*exp
,
2049 struct dentry
*dentry
, u32
*bmval
,
2050 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
2052 u32 bmval0
= bmval
[0];
2053 u32 bmval1
= bmval
[1];
2054 u32 bmval2
= bmval
[2];
2056 struct svc_fh
*tempfh
= NULL
;
2057 struct kstatfs statfs
;
2059 int starting_len
= xdr
->buf
->len
;
2068 struct nfs4_acl
*acl
= NULL
;
2069 void *context
= NULL
;
2071 bool contextsupport
= false;
2072 struct nfsd4_compoundres
*resp
= rqstp
->rq_resp
;
2073 u32 minorversion
= resp
->cstate
.minorversion
;
2074 struct path path
= {
2075 .mnt
= exp
->ex_path
.mnt
,
2078 struct nfsd_net
*nn
= net_generic(SVC_NET(rqstp
), nfsd_net_id
);
2080 BUG_ON(bmval1
& NFSD_WRITEONLY_ATTRS_WORD1
);
2081 BUG_ON(bmval0
& ~nfsd_suppattrs0(minorversion
));
2082 BUG_ON(bmval1
& ~nfsd_suppattrs1(minorversion
));
2083 BUG_ON(bmval2
& ~nfsd_suppattrs2(minorversion
));
2085 if (exp
->ex_fslocs
.migrated
) {
2086 status
= fattr_handle_absent_fs(&bmval0
, &bmval1
, &bmval2
, &rdattr_err
);
2091 err
= vfs_getattr(&path
, &stat
);
2094 if ((bmval0
& (FATTR4_WORD0_FILES_AVAIL
| FATTR4_WORD0_FILES_FREE
|
2095 FATTR4_WORD0_FILES_TOTAL
| FATTR4_WORD0_MAXNAME
)) ||
2096 (bmval1
& (FATTR4_WORD1_SPACE_AVAIL
| FATTR4_WORD1_SPACE_FREE
|
2097 FATTR4_WORD1_SPACE_TOTAL
))) {
2098 err
= vfs_statfs(&path
, &statfs
);
2102 if ((bmval0
& (FATTR4_WORD0_FILEHANDLE
| FATTR4_WORD0_FSID
)) && !fhp
) {
2103 tempfh
= kmalloc(sizeof(struct svc_fh
), GFP_KERNEL
);
2104 status
= nfserr_jukebox
;
2107 fh_init(tempfh
, NFS4_FHSIZE
);
2108 status
= fh_compose(tempfh
, exp
, dentry
, NULL
);
2113 if (bmval0
& (FATTR4_WORD0_ACL
| FATTR4_WORD0_ACLSUPPORT
2114 | FATTR4_WORD0_SUPPORTED_ATTRS
)) {
2115 err
= nfsd4_get_nfs4_acl(rqstp
, dentry
, &acl
);
2116 aclsupport
= (err
== 0);
2117 if (bmval0
& FATTR4_WORD0_ACL
) {
2118 if (err
== -EOPNOTSUPP
)
2119 bmval0
&= ~FATTR4_WORD0_ACL
;
2120 else if (err
== -EINVAL
) {
2121 status
= nfserr_attrnotsupp
;
2123 } else if (err
!= 0)
2128 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2129 if ((bmval2
& FATTR4_WORD2_SECURITY_LABEL
) ||
2130 bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
2131 err
= security_inode_getsecctx(dentry
->d_inode
,
2132 &context
, &contextlen
);
2133 contextsupport
= (err
== 0);
2134 if (bmval2
& FATTR4_WORD2_SECURITY_LABEL
) {
2135 if (err
== -EOPNOTSUPP
)
2136 bmval2
&= ~FATTR4_WORD2_SECURITY_LABEL
;
2141 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2144 p
= xdr_reserve_space(xdr
, 16);
2147 *p
++ = cpu_to_be32(3);
2148 *p
++ = cpu_to_be32(bmval0
);
2149 *p
++ = cpu_to_be32(bmval1
);
2150 *p
++ = cpu_to_be32(bmval2
);
2151 } else if (bmval1
) {
2152 p
= xdr_reserve_space(xdr
, 12);
2155 *p
++ = cpu_to_be32(2);
2156 *p
++ = cpu_to_be32(bmval0
);
2157 *p
++ = cpu_to_be32(bmval1
);
2159 p
= xdr_reserve_space(xdr
, 8);
2162 *p
++ = cpu_to_be32(1);
2163 *p
++ = cpu_to_be32(bmval0
);
2166 attrlen_offset
= xdr
->buf
->len
;
2167 p
= xdr_reserve_space(xdr
, 4);
2170 p
++; /* to be backfilled later */
2172 if (bmval0
& FATTR4_WORD0_SUPPORTED_ATTRS
) {
2173 u32 word0
= nfsd_suppattrs0(minorversion
);
2174 u32 word1
= nfsd_suppattrs1(minorversion
);
2175 u32 word2
= nfsd_suppattrs2(minorversion
);
2178 word0
&= ~FATTR4_WORD0_ACL
;
2179 if (!contextsupport
)
2180 word2
&= ~FATTR4_WORD2_SECURITY_LABEL
;
2182 p
= xdr_reserve_space(xdr
, 12);
2185 *p
++ = cpu_to_be32(2);
2186 *p
++ = cpu_to_be32(word0
);
2187 *p
++ = cpu_to_be32(word1
);
2189 p
= xdr_reserve_space(xdr
, 16);
2192 *p
++ = cpu_to_be32(3);
2193 *p
++ = cpu_to_be32(word0
);
2194 *p
++ = cpu_to_be32(word1
);
2195 *p
++ = cpu_to_be32(word2
);
2198 if (bmval0
& FATTR4_WORD0_TYPE
) {
2199 p
= xdr_reserve_space(xdr
, 4);
2202 dummy
= nfs4_file_type(stat
.mode
);
2203 if (dummy
== NF4BAD
) {
2204 status
= nfserr_serverfault
;
2207 *p
++ = cpu_to_be32(dummy
);
2209 if (bmval0
& FATTR4_WORD0_FH_EXPIRE_TYPE
) {
2210 p
= xdr_reserve_space(xdr
, 4);
2213 if (exp
->ex_flags
& NFSEXP_NOSUBTREECHECK
)
2214 *p
++ = cpu_to_be32(NFS4_FH_PERSISTENT
);
2216 *p
++ = cpu_to_be32(NFS4_FH_PERSISTENT
|
2217 NFS4_FH_VOL_RENAME
);
2219 if (bmval0
& FATTR4_WORD0_CHANGE
) {
2220 p
= xdr_reserve_space(xdr
, 8);
2223 p
= encode_change(p
, &stat
, dentry
->d_inode
);
2225 if (bmval0
& FATTR4_WORD0_SIZE
) {
2226 p
= xdr_reserve_space(xdr
, 8);
2229 p
= xdr_encode_hyper(p
, stat
.size
);
2231 if (bmval0
& FATTR4_WORD0_LINK_SUPPORT
) {
2232 p
= xdr_reserve_space(xdr
, 4);
2235 *p
++ = cpu_to_be32(1);
2237 if (bmval0
& FATTR4_WORD0_SYMLINK_SUPPORT
) {
2238 p
= xdr_reserve_space(xdr
, 4);
2241 *p
++ = cpu_to_be32(1);
2243 if (bmval0
& FATTR4_WORD0_NAMED_ATTR
) {
2244 p
= xdr_reserve_space(xdr
, 4);
2247 *p
++ = cpu_to_be32(0);
2249 if (bmval0
& FATTR4_WORD0_FSID
) {
2250 p
= xdr_reserve_space(xdr
, 16);
2253 if (exp
->ex_fslocs
.migrated
) {
2254 p
= xdr_encode_hyper(p
, NFS4_REFERRAL_FSID_MAJOR
);
2255 p
= xdr_encode_hyper(p
, NFS4_REFERRAL_FSID_MINOR
);
2256 } else switch(fsid_source(fhp
)) {
2257 case FSIDSOURCE_FSID
:
2258 p
= xdr_encode_hyper(p
, (u64
)exp
->ex_fsid
);
2259 p
= xdr_encode_hyper(p
, (u64
)0);
2261 case FSIDSOURCE_DEV
:
2262 *p
++ = cpu_to_be32(0);
2263 *p
++ = cpu_to_be32(MAJOR(stat
.dev
));
2264 *p
++ = cpu_to_be32(0);
2265 *p
++ = cpu_to_be32(MINOR(stat
.dev
));
2267 case FSIDSOURCE_UUID
:
2268 p
= xdr_encode_opaque_fixed(p
, exp
->ex_uuid
,
2273 if (bmval0
& FATTR4_WORD0_UNIQUE_HANDLES
) {
2274 p
= xdr_reserve_space(xdr
, 4);
2277 *p
++ = cpu_to_be32(0);
2279 if (bmval0
& FATTR4_WORD0_LEASE_TIME
) {
2280 p
= xdr_reserve_space(xdr
, 4);
2283 *p
++ = cpu_to_be32(nn
->nfsd4_lease
);
2285 if (bmval0
& FATTR4_WORD0_RDATTR_ERROR
) {
2286 p
= xdr_reserve_space(xdr
, 4);
2289 *p
++ = cpu_to_be32(rdattr_err
);
2291 if (bmval0
& FATTR4_WORD0_ACL
) {
2292 struct nfs4_ace
*ace
;
2295 p
= xdr_reserve_space(xdr
, 4);
2299 *p
++ = cpu_to_be32(0);
2302 p
= xdr_reserve_space(xdr
, 4);
2305 *p
++ = cpu_to_be32(acl
->naces
);
2307 for (ace
= acl
->aces
; ace
< acl
->aces
+ acl
->naces
; ace
++) {
2308 p
= xdr_reserve_space(xdr
, 4*3);
2311 *p
++ = cpu_to_be32(ace
->type
);
2312 *p
++ = cpu_to_be32(ace
->flag
);
2313 *p
++ = cpu_to_be32(ace
->access_mask
&
2315 status
= nfsd4_encode_aclname(xdr
, rqstp
, ace
);
2321 if (bmval0
& FATTR4_WORD0_ACLSUPPORT
) {
2322 p
= xdr_reserve_space(xdr
, 4);
2325 *p
++ = cpu_to_be32(aclsupport
?
2326 ACL4_SUPPORT_ALLOW_ACL
|ACL4_SUPPORT_DENY_ACL
: 0);
2328 if (bmval0
& FATTR4_WORD0_CANSETTIME
) {
2329 p
= xdr_reserve_space(xdr
, 4);
2332 *p
++ = cpu_to_be32(1);
2334 if (bmval0
& FATTR4_WORD0_CASE_INSENSITIVE
) {
2335 p
= xdr_reserve_space(xdr
, 4);
2338 *p
++ = cpu_to_be32(0);
2340 if (bmval0
& FATTR4_WORD0_CASE_PRESERVING
) {
2341 p
= xdr_reserve_space(xdr
, 4);
2344 *p
++ = cpu_to_be32(1);
2346 if (bmval0
& FATTR4_WORD0_CHOWN_RESTRICTED
) {
2347 p
= xdr_reserve_space(xdr
, 4);
2350 *p
++ = cpu_to_be32(1);
2352 if (bmval0
& FATTR4_WORD0_FILEHANDLE
) {
2353 p
= xdr_reserve_space(xdr
, fhp
->fh_handle
.fh_size
+ 4);
2356 p
= xdr_encode_opaque(p
, &fhp
->fh_handle
.fh_base
,
2357 fhp
->fh_handle
.fh_size
);
2359 if (bmval0
& FATTR4_WORD0_FILEID
) {
2360 p
= xdr_reserve_space(xdr
, 8);
2363 p
= xdr_encode_hyper(p
, stat
.ino
);
2365 if (bmval0
& FATTR4_WORD0_FILES_AVAIL
) {
2366 p
= xdr_reserve_space(xdr
, 8);
2369 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_ffree
);
2371 if (bmval0
& FATTR4_WORD0_FILES_FREE
) {
2372 p
= xdr_reserve_space(xdr
, 8);
2375 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_ffree
);
2377 if (bmval0
& FATTR4_WORD0_FILES_TOTAL
) {
2378 p
= xdr_reserve_space(xdr
, 8);
2381 p
= xdr_encode_hyper(p
, (u64
) statfs
.f_files
);
2383 if (bmval0
& FATTR4_WORD0_FS_LOCATIONS
) {
2384 status
= nfsd4_encode_fs_locations(xdr
, rqstp
, exp
);
2388 if (bmval0
& FATTR4_WORD0_HOMOGENEOUS
) {
2389 p
= xdr_reserve_space(xdr
, 4);
2392 *p
++ = cpu_to_be32(1);
2394 if (bmval0
& FATTR4_WORD0_MAXFILESIZE
) {
2395 p
= xdr_reserve_space(xdr
, 8);
2398 p
= xdr_encode_hyper(p
, exp
->ex_path
.mnt
->mnt_sb
->s_maxbytes
);
2400 if (bmval0
& FATTR4_WORD0_MAXLINK
) {
2401 p
= xdr_reserve_space(xdr
, 4);
2404 *p
++ = cpu_to_be32(255);
2406 if (bmval0
& FATTR4_WORD0_MAXNAME
) {
2407 p
= xdr_reserve_space(xdr
, 4);
2410 *p
++ = cpu_to_be32(statfs
.f_namelen
);
2412 if (bmval0
& FATTR4_WORD0_MAXREAD
) {
2413 p
= xdr_reserve_space(xdr
, 8);
2416 p
= xdr_encode_hyper(p
, (u64
) svc_max_payload(rqstp
));
2418 if (bmval0
& FATTR4_WORD0_MAXWRITE
) {
2419 p
= xdr_reserve_space(xdr
, 8);
2422 p
= xdr_encode_hyper(p
, (u64
) svc_max_payload(rqstp
));
2424 if (bmval1
& FATTR4_WORD1_MODE
) {
2425 p
= xdr_reserve_space(xdr
, 4);
2428 *p
++ = cpu_to_be32(stat
.mode
& S_IALLUGO
);
2430 if (bmval1
& FATTR4_WORD1_NO_TRUNC
) {
2431 p
= xdr_reserve_space(xdr
, 4);
2434 *p
++ = cpu_to_be32(1);
2436 if (bmval1
& FATTR4_WORD1_NUMLINKS
) {
2437 p
= xdr_reserve_space(xdr
, 4);
2440 *p
++ = cpu_to_be32(stat
.nlink
);
2442 if (bmval1
& FATTR4_WORD1_OWNER
) {
2443 status
= nfsd4_encode_user(xdr
, rqstp
, stat
.uid
);
2447 if (bmval1
& FATTR4_WORD1_OWNER_GROUP
) {
2448 status
= nfsd4_encode_group(xdr
, rqstp
, stat
.gid
);
2452 if (bmval1
& FATTR4_WORD1_RAWDEV
) {
2453 p
= xdr_reserve_space(xdr
, 8);
2456 *p
++ = cpu_to_be32((u32
) MAJOR(stat
.rdev
));
2457 *p
++ = cpu_to_be32((u32
) MINOR(stat
.rdev
));
2459 if (bmval1
& FATTR4_WORD1_SPACE_AVAIL
) {
2460 p
= xdr_reserve_space(xdr
, 8);
2463 dummy64
= (u64
)statfs
.f_bavail
* (u64
)statfs
.f_bsize
;
2464 p
= xdr_encode_hyper(p
, dummy64
);
2466 if (bmval1
& FATTR4_WORD1_SPACE_FREE
) {
2467 p
= xdr_reserve_space(xdr
, 8);
2470 dummy64
= (u64
)statfs
.f_bfree
* (u64
)statfs
.f_bsize
;
2471 p
= xdr_encode_hyper(p
, dummy64
);
2473 if (bmval1
& FATTR4_WORD1_SPACE_TOTAL
) {
2474 p
= xdr_reserve_space(xdr
, 8);
2477 dummy64
= (u64
)statfs
.f_blocks
* (u64
)statfs
.f_bsize
;
2478 p
= xdr_encode_hyper(p
, dummy64
);
2480 if (bmval1
& FATTR4_WORD1_SPACE_USED
) {
2481 p
= xdr_reserve_space(xdr
, 8);
2484 dummy64
= (u64
)stat
.blocks
<< 9;
2485 p
= xdr_encode_hyper(p
, dummy64
);
2487 if (bmval1
& FATTR4_WORD1_TIME_ACCESS
) {
2488 p
= xdr_reserve_space(xdr
, 12);
2491 p
= xdr_encode_hyper(p
, (s64
)stat
.atime
.tv_sec
);
2492 *p
++ = cpu_to_be32(stat
.atime
.tv_nsec
);
2494 if (bmval1
& FATTR4_WORD1_TIME_DELTA
) {
2495 p
= xdr_reserve_space(xdr
, 12);
2498 *p
++ = cpu_to_be32(0);
2499 *p
++ = cpu_to_be32(1);
2500 *p
++ = cpu_to_be32(0);
2502 if (bmval1
& FATTR4_WORD1_TIME_METADATA
) {
2503 p
= xdr_reserve_space(xdr
, 12);
2506 p
= xdr_encode_hyper(p
, (s64
)stat
.ctime
.tv_sec
);
2507 *p
++ = cpu_to_be32(stat
.ctime
.tv_nsec
);
2509 if (bmval1
& FATTR4_WORD1_TIME_MODIFY
) {
2510 p
= xdr_reserve_space(xdr
, 12);
2513 p
= xdr_encode_hyper(p
, (s64
)stat
.mtime
.tv_sec
);
2514 *p
++ = cpu_to_be32(stat
.mtime
.tv_nsec
);
2516 if (bmval1
& FATTR4_WORD1_MOUNTED_ON_FILEID
) {
2517 p
= xdr_reserve_space(xdr
, 8);
2521 * Get parent's attributes if not ignoring crossmount
2522 * and this is the root of a cross-mounted filesystem.
2524 if (ignore_crossmnt
== 0 &&
2525 dentry
== exp
->ex_path
.mnt
->mnt_root
)
2526 get_parent_attributes(exp
, &stat
);
2527 p
= xdr_encode_hyper(p
, stat
.ino
);
2529 if (bmval2
& FATTR4_WORD2_SECURITY_LABEL
) {
2530 status
= nfsd4_encode_security_label(xdr
, rqstp
, context
,
2535 if (bmval2
& FATTR4_WORD2_SUPPATTR_EXCLCREAT
) {
2536 p
= xdr_reserve_space(xdr
, 16);
2539 *p
++ = cpu_to_be32(3);
2540 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD0
);
2541 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD1
);
2542 *p
++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD2
);
2545 attrlen
= htonl(xdr
->buf
->len
- attrlen_offset
- 4);
2546 write_bytes_to_xdr_buf(xdr
->buf
, attrlen_offset
, &attrlen
, 4);
2550 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2552 security_release_secctx(context
, contextlen
);
2553 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2560 xdr_truncate_encode(xdr
, starting_len
);
2563 status
= nfserrno(err
);
2566 status
= nfserr_resource
;
2570 static void svcxdr_init_encode_from_buffer(struct xdr_stream
*xdr
,
2571 struct xdr_buf
*buf
, __be32
*p
, int bytes
)
2573 xdr
->scratch
.iov_len
= 0;
2574 memset(buf
, 0, sizeof(struct xdr_buf
));
2575 buf
->head
[0].iov_base
= p
;
2576 buf
->head
[0].iov_len
= 0;
2579 xdr
->iov
= buf
->head
;
2581 xdr
->end
= (void *)p
+ bytes
;
2582 buf
->buflen
= bytes
;
2585 __be32
nfsd4_encode_fattr_to_buf(__be32
**p
, int words
,
2586 struct svc_fh
*fhp
, struct svc_export
*exp
,
2587 struct dentry
*dentry
, u32
*bmval
,
2588 struct svc_rqst
*rqstp
, int ignore_crossmnt
)
2590 struct xdr_buf dummy
;
2591 struct xdr_stream xdr
;
2594 svcxdr_init_encode_from_buffer(&xdr
, &dummy
, *p
, words
<< 2);
2595 ret
= nfsd4_encode_fattr(&xdr
, fhp
, exp
, dentry
, bmval
, rqstp
,
2601 static inline int attributes_need_mount(u32
*bmval
)
2603 if (bmval
[0] & ~(FATTR4_WORD0_RDATTR_ERROR
| FATTR4_WORD0_LEASE_TIME
))
2605 if (bmval
[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID
)
2611 nfsd4_encode_dirent_fattr(struct xdr_stream
*xdr
, struct nfsd4_readdir
*cd
,
2612 const char *name
, int namlen
)
2614 struct svc_export
*exp
= cd
->rd_fhp
->fh_export
;
2615 struct dentry
*dentry
;
2617 int ignore_crossmnt
= 0;
2619 dentry
= lookup_one_len(name
, cd
->rd_fhp
->fh_dentry
, namlen
);
2621 return nfserrno(PTR_ERR(dentry
));
2622 if (!dentry
->d_inode
) {
2624 * nfsd_buffered_readdir drops the i_mutex between
2625 * readdir and calling this callback, leaving a window
2626 * where this directory entry could have gone away.
2629 return nfserr_noent
;
2634 * In the case of a mountpoint, the client may be asking for
2635 * attributes that are only properties of the underlying filesystem
2636 * as opposed to the cross-mounted file system. In such a case,
2637 * we will not follow the cross mount and will fill the attribtutes
2638 * directly from the mountpoint dentry.
2640 if (nfsd_mountpoint(dentry
, exp
)) {
2643 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
)
2644 && !attributes_need_mount(cd
->rd_bmval
)) {
2645 ignore_crossmnt
= 1;
2649 * Why the heck aren't we just using nfsd_lookup??
2650 * Different "."/".." handling? Something else?
2651 * At least, add a comment here to explain....
2653 err
= nfsd_cross_mnt(cd
->rd_rqstp
, &dentry
, &exp
);
2655 nfserr
= nfserrno(err
);
2658 nfserr
= check_nfsd_access(exp
, cd
->rd_rqstp
);
2664 nfserr
= nfsd4_encode_fattr(xdr
, NULL
, exp
, dentry
, cd
->rd_bmval
,
2665 cd
->rd_rqstp
, ignore_crossmnt
);
2673 nfsd4_encode_rdattr_error(struct xdr_stream
*xdr
, __be32 nfserr
)
2677 p
= xdr_reserve_space(xdr
, 20);
2681 *p
++ = htonl(FATTR4_WORD0_RDATTR_ERROR
); /* bmval0 */
2682 *p
++ = htonl(0); /* bmval1 */
2684 *p
++ = htonl(4); /* attribute length */
2685 *p
++ = nfserr
; /* no htonl */
2690 nfsd4_encode_dirent(void *ccdv
, const char *name
, int namlen
,
2691 loff_t offset
, u64 ino
, unsigned int d_type
)
2693 struct readdir_cd
*ccd
= ccdv
;
2694 struct nfsd4_readdir
*cd
= container_of(ccd
, struct nfsd4_readdir
, common
);
2695 struct xdr_stream
*xdr
= cd
->xdr
;
2696 int start_offset
= xdr
->buf
->len
;
2698 u32 name_and_cookie
;
2700 __be32 nfserr
= nfserr_toosmall
;
2704 /* In nfsv4, "." and ".." never make it onto the wire.. */
2705 if (name
&& isdotent(name
, namlen
)) {
2706 cd
->common
.err
= nfs_ok
;
2710 if (cd
->cookie_offset
) {
2711 wire_offset
= cpu_to_be64(offset
);
2712 write_bytes_to_xdr_buf(xdr
->buf
, cd
->cookie_offset
,
2716 p
= xdr_reserve_space(xdr
, 4);
2719 *p
++ = xdr_one
; /* mark entry present */
2720 cookie_offset
= xdr
->buf
->len
;
2721 p
= xdr_reserve_space(xdr
, 3*4 + namlen
);
2724 p
= xdr_encode_hyper(p
, NFS_OFFSET_MAX
); /* offset of next entry */
2725 p
= xdr_encode_array(p
, name
, namlen
); /* name length & name */
2727 nfserr
= nfsd4_encode_dirent_fattr(xdr
, cd
, name
, namlen
);
2731 case nfserr_resource
:
2732 nfserr
= nfserr_toosmall
;
2735 xdr_truncate_encode(xdr
, start_offset
);
2739 * If the client requested the RDATTR_ERROR attribute,
2740 * we stuff the error code into this attribute
2741 * and continue. If this attribute was not requested,
2742 * then in accordance with the spec, we fail the
2743 * entire READDIR operation(!)
2745 if (!(cd
->rd_bmval
[0] & FATTR4_WORD0_RDATTR_ERROR
))
2747 p
= nfsd4_encode_rdattr_error(xdr
, nfserr
);
2749 nfserr
= nfserr_toosmall
;
2753 nfserr
= nfserr_toosmall
;
2754 entry_bytes
= xdr
->buf
->len
- start_offset
;
2755 if (entry_bytes
> cd
->rd_maxcount
)
2757 cd
->rd_maxcount
-= entry_bytes
;
2758 if (!cd
->rd_dircount
)
2761 * RFC 3530 14.2.24 describes rd_dircount as only a "hint", so
2762 * let's always let through the first entry, at least:
2764 name_and_cookie
= 4 * XDR_QUADLEN(namlen
) + 8;
2765 if (name_and_cookie
> cd
->rd_dircount
&& cd
->cookie_offset
)
2767 cd
->rd_dircount
-= min(cd
->rd_dircount
, name_and_cookie
);
2768 cd
->cookie_offset
= cookie_offset
;
2770 cd
->common
.err
= nfs_ok
;
2773 xdr_truncate_encode(xdr
, start_offset
);
2774 cd
->common
.err
= nfserr
;
2779 nfsd4_encode_stateid(struct xdr_stream
*xdr
, stateid_t
*sid
)
2783 p
= xdr_reserve_space(xdr
, sizeof(stateid_t
));
2785 return nfserr_resource
;
2786 *p
++ = cpu_to_be32(sid
->si_generation
);
2787 p
= xdr_encode_opaque_fixed(p
, &sid
->si_opaque
,
2788 sizeof(stateid_opaque_t
));
2793 nfsd4_encode_access(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_access
*access
)
2795 struct xdr_stream
*xdr
= &resp
->xdr
;
2799 p
= xdr_reserve_space(xdr
, 8);
2801 return nfserr_resource
;
2802 *p
++ = cpu_to_be32(access
->ac_supported
);
2803 *p
++ = cpu_to_be32(access
->ac_resp_access
);
2808 static __be32
nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_bind_conn_to_session
*bcts
)
2810 struct xdr_stream
*xdr
= &resp
->xdr
;
2814 p
= xdr_reserve_space(xdr
, NFS4_MAX_SESSIONID_LEN
+ 8);
2816 return nfserr_resource
;
2817 p
= xdr_encode_opaque_fixed(p
, bcts
->sessionid
.data
,
2818 NFS4_MAX_SESSIONID_LEN
);
2819 *p
++ = cpu_to_be32(bcts
->dir
);
2820 /* Sorry, we do not yet support RDMA over 4.1: */
2821 *p
++ = cpu_to_be32(0);
2827 nfsd4_encode_close(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_close
*close
)
2829 struct xdr_stream
*xdr
= &resp
->xdr
;
2832 nfserr
= nfsd4_encode_stateid(xdr
, &close
->cl_stateid
);
2839 nfsd4_encode_commit(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_commit
*commit
)
2841 struct xdr_stream
*xdr
= &resp
->xdr
;
2845 p
= xdr_reserve_space(xdr
, NFS4_VERIFIER_SIZE
);
2847 return nfserr_resource
;
2848 p
= xdr_encode_opaque_fixed(p
, commit
->co_verf
.data
,
2849 NFS4_VERIFIER_SIZE
);
2855 nfsd4_encode_create(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_create
*create
)
2857 struct xdr_stream
*xdr
= &resp
->xdr
;
2861 p
= xdr_reserve_space(xdr
, 32);
2863 return nfserr_resource
;
2864 p
= encode_cinfo(p
, &create
->cr_cinfo
);
2865 *p
++ = cpu_to_be32(2);
2866 *p
++ = cpu_to_be32(create
->cr_bmval
[0]);
2867 *p
++ = cpu_to_be32(create
->cr_bmval
[1]);
2873 nfsd4_encode_getattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_getattr
*getattr
)
2875 struct svc_fh
*fhp
= getattr
->ga_fhp
;
2876 struct xdr_stream
*xdr
= &resp
->xdr
;
2881 nfserr
= nfsd4_encode_fattr(xdr
, fhp
, fhp
->fh_export
, fhp
->fh_dentry
,
2888 nfsd4_encode_getfh(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct svc_fh
**fhpp
)
2890 struct xdr_stream
*xdr
= &resp
->xdr
;
2891 struct svc_fh
*fhp
= *fhpp
;
2896 len
= fhp
->fh_handle
.fh_size
;
2897 p
= xdr_reserve_space(xdr
, len
+ 4);
2899 return nfserr_resource
;
2900 p
= xdr_encode_opaque(p
, &fhp
->fh_handle
.fh_base
, len
);
2906 * Including all fields other than the name, a LOCK4denied structure requires
2907 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2910 nfsd4_encode_lock_denied(struct xdr_stream
*xdr
, struct nfsd4_lock_denied
*ld
)
2912 struct xdr_netobj
*conf
= &ld
->ld_owner
;
2916 p
= xdr_reserve_space(xdr
, 32 + XDR_LEN(conf
->len
));
2919 * Don't fail to return the result just because we can't
2920 * return the conflicting open:
2928 return nfserr_resource
;
2930 p
= xdr_encode_hyper(p
, ld
->ld_start
);
2931 p
= xdr_encode_hyper(p
, ld
->ld_length
);
2932 *p
++ = cpu_to_be32(ld
->ld_type
);
2934 p
= xdr_encode_opaque_fixed(p
, &ld
->ld_clientid
, 8);
2935 p
= xdr_encode_opaque(p
, conf
->data
, conf
->len
);
2937 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2938 p
= xdr_encode_hyper(p
, (u64
)0); /* clientid */
2939 *p
++ = cpu_to_be32(0); /* length of owner name */
2941 return nfserr_denied
;
2945 nfsd4_encode_lock(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lock
*lock
)
2947 struct xdr_stream
*xdr
= &resp
->xdr
;
2950 nfserr
= nfsd4_encode_stateid(xdr
, &lock
->lk_resp_stateid
);
2951 else if (nfserr
== nfserr_denied
)
2952 nfserr
= nfsd4_encode_lock_denied(xdr
, &lock
->lk_denied
);
2958 nfsd4_encode_lockt(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_lockt
*lockt
)
2960 struct xdr_stream
*xdr
= &resp
->xdr
;
2962 if (nfserr
== nfserr_denied
)
2963 nfsd4_encode_lock_denied(xdr
, &lockt
->lt_denied
);
2968 nfsd4_encode_locku(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_locku
*locku
)
2970 struct xdr_stream
*xdr
= &resp
->xdr
;
2973 nfserr
= nfsd4_encode_stateid(xdr
, &locku
->lu_stateid
);
2980 nfsd4_encode_link(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_link
*link
)
2982 struct xdr_stream
*xdr
= &resp
->xdr
;
2986 p
= xdr_reserve_space(xdr
, 20);
2988 return nfserr_resource
;
2989 p
= encode_cinfo(p
, &link
->li_cinfo
);
2996 nfsd4_encode_open(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open
*open
)
2998 struct xdr_stream
*xdr
= &resp
->xdr
;
3004 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_stateid
);
3007 p
= xdr_reserve_space(xdr
, 40);
3009 return nfserr_resource
;
3010 p
= encode_cinfo(p
, &open
->op_cinfo
);
3011 *p
++ = cpu_to_be32(open
->op_rflags
);
3012 *p
++ = cpu_to_be32(2);
3013 *p
++ = cpu_to_be32(open
->op_bmval
[0]);
3014 *p
++ = cpu_to_be32(open
->op_bmval
[1]);
3015 *p
++ = cpu_to_be32(open
->op_delegate_type
);
3017 switch (open
->op_delegate_type
) {
3018 case NFS4_OPEN_DELEGATE_NONE
:
3020 case NFS4_OPEN_DELEGATE_READ
:
3021 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_delegate_stateid
);
3024 p
= xdr_reserve_space(xdr
, 20);
3026 return nfserr_resource
;
3027 *p
++ = cpu_to_be32(open
->op_recall
);
3030 * TODO: ACE's in delegations
3032 *p
++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
3033 *p
++ = cpu_to_be32(0);
3034 *p
++ = cpu_to_be32(0);
3035 *p
++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
3037 case NFS4_OPEN_DELEGATE_WRITE
:
3038 nfserr
= nfsd4_encode_stateid(xdr
, &open
->op_delegate_stateid
);
3041 p
= xdr_reserve_space(xdr
, 32);
3043 return nfserr_resource
;
3044 *p
++ = cpu_to_be32(0);
3047 * TODO: space_limit's in delegations
3049 *p
++ = cpu_to_be32(NFS4_LIMIT_SIZE
);
3050 *p
++ = cpu_to_be32(~(u32
)0);
3051 *p
++ = cpu_to_be32(~(u32
)0);
3054 * TODO: ACE's in delegations
3056 *p
++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE
);
3057 *p
++ = cpu_to_be32(0);
3058 *p
++ = cpu_to_be32(0);
3059 *p
++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
3061 case NFS4_OPEN_DELEGATE_NONE_EXT
: /* 4.1 */
3062 switch (open
->op_why_no_deleg
) {
3063 case WND4_CONTENTION
:
3065 p
= xdr_reserve_space(xdr
, 8);
3067 return nfserr_resource
;
3068 *p
++ = cpu_to_be32(open
->op_why_no_deleg
);
3069 /* deleg signaling not supported yet: */
3070 *p
++ = cpu_to_be32(0);
3073 p
= xdr_reserve_space(xdr
, 4);
3075 return nfserr_resource
;
3076 *p
++ = cpu_to_be32(open
->op_why_no_deleg
);
3082 /* XXX save filehandle here */
3088 nfsd4_encode_open_confirm(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_confirm
*oc
)
3090 struct xdr_stream
*xdr
= &resp
->xdr
;
3093 nfserr
= nfsd4_encode_stateid(xdr
, &oc
->oc_resp_stateid
);
3099 nfsd4_encode_open_downgrade(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_open_downgrade
*od
)
3101 struct xdr_stream
*xdr
= &resp
->xdr
;
3104 nfserr
= nfsd4_encode_stateid(xdr
, &od
->od_stateid
);
3109 static __be32
nfsd4_encode_splice_read(
3110 struct nfsd4_compoundres
*resp
,
3111 struct nfsd4_read
*read
,
3112 struct file
*file
, unsigned long maxcount
)
3114 struct xdr_stream
*xdr
= &resp
->xdr
;
3115 struct xdr_buf
*buf
= xdr
->buf
;
3119 __be32
*p
= xdr
->p
- 2;
3121 /* Make sure there will be room for padding if needed */
3122 if (xdr
->end
- xdr
->p
< 1)
3123 return nfserr_resource
;
3125 nfserr
= nfsd_splice_read(read
->rd_rqstp
, file
,
3126 read
->rd_offset
, &maxcount
);
3129 * nfsd_splice_actor may have already messed with the
3130 * page length; reset it so as not to confuse
3131 * xdr_truncate_encode:
3137 eof
= (read
->rd_offset
+ maxcount
>=
3138 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
3140 *(p
++) = htonl(eof
);
3141 *(p
++) = htonl(maxcount
);
3143 buf
->page_len
= maxcount
;
3144 buf
->len
+= maxcount
;
3145 xdr
->page_ptr
+= (buf
->page_base
+ maxcount
+ PAGE_SIZE
- 1)
3148 /* Use rest of head for padding and remaining ops: */
3149 buf
->tail
[0].iov_base
= xdr
->p
;
3150 buf
->tail
[0].iov_len
= 0;
3151 xdr
->iov
= buf
->tail
;
3153 int pad
= 4 - (maxcount
&3);
3157 buf
->tail
[0].iov_base
+= maxcount
&3;
3158 buf
->tail
[0].iov_len
= pad
;
3162 space_left
= min_t(int, (void *)xdr
->end
- (void *)xdr
->p
,
3163 buf
->buflen
- buf
->len
);
3164 buf
->buflen
= buf
->len
+ space_left
;
3165 xdr
->end
= (__be32
*)((void *)xdr
->end
+ space_left
);
3170 static __be32
nfsd4_encode_readv(struct nfsd4_compoundres
*resp
,
3171 struct nfsd4_read
*read
,
3172 struct file
*file
, unsigned long maxcount
)
3174 struct xdr_stream
*xdr
= &resp
->xdr
;
3177 int starting_len
= xdr
->buf
->len
- 8;
3189 thislen
= min_t(long, len
, ((void *)xdr
->end
- (void *)xdr
->p
));
3190 p
= xdr_reserve_space(xdr
, (thislen
+3)&~3);
3192 resp
->rqstp
->rq_vec
[v
].iov_base
= p
;
3193 resp
->rqstp
->rq_vec
[v
].iov_len
= thislen
;
3198 thislen
= min_t(long, len
, PAGE_SIZE
);
3199 p
= xdr_reserve_space(xdr
, (thislen
+3)&~3);
3201 resp
->rqstp
->rq_vec
[v
].iov_base
= p
;
3202 resp
->rqstp
->rq_vec
[v
].iov_len
= thislen
;
3208 nfserr
= nfsd_readv(file
, read
->rd_offset
, resp
->rqstp
->rq_vec
,
3209 read
->rd_vlen
, &maxcount
);
3212 xdr_truncate_encode(xdr
, starting_len
+ 8 + ((maxcount
+3)&~3));
3214 eof
= (read
->rd_offset
+ maxcount
>=
3215 read
->rd_fhp
->fh_dentry
->d_inode
->i_size
);
3218 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
, &tmp
, 4);
3219 tmp
= htonl(maxcount
);
3220 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
+ 4, &tmp
, 4);
3222 pad
= (maxcount
&3) ? 4 - (maxcount
&3) : 0;
3223 write_bytes_to_xdr_buf(xdr
->buf
, starting_len
+ 8 + maxcount
,
3230 nfsd4_encode_read(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3231 struct nfsd4_read
*read
)
3233 unsigned long maxcount
;
3234 struct xdr_stream
*xdr
= &resp
->xdr
;
3235 struct file
*file
= read
->rd_filp
;
3236 struct svc_fh
*fhp
= read
->rd_fhp
;
3237 int starting_len
= xdr
->buf
->len
;
3245 p
= xdr_reserve_space(xdr
, 8); /* eof flag and byte count */
3247 WARN_ON_ONCE(resp
->rqstp
->rq_splice_ok
);
3248 return nfserr_resource
;
3250 if (resp
->xdr
.buf
->page_len
&& resp
->rqstp
->rq_splice_ok
) {
3252 return nfserr_resource
;
3254 xdr_commit_encode(xdr
);
3256 maxcount
= svc_max_payload(resp
->rqstp
);
3257 maxcount
= min_t(unsigned long, maxcount
, (xdr
->buf
->buflen
- xdr
->buf
->len
));
3258 maxcount
= min_t(unsigned long, maxcount
, read
->rd_length
);
3261 err
= nfsd_permission(resp
->rqstp
, fhp
->fh_export
,
3263 NFSD_MAY_READ
|NFSD_MAY_OWNER_OVERRIDE
);
3265 err
= nfsd_get_tmp_read_open(resp
->rqstp
, read
->rd_fhp
,
3270 if (file
->f_op
->splice_read
&& resp
->rqstp
->rq_splice_ok
)
3271 err
= nfsd4_encode_splice_read(resp
, read
, file
, maxcount
);
3273 err
= nfsd4_encode_readv(resp
, read
, file
, maxcount
);
3276 nfsd_put_tmp_read_open(file
, ra
);
3280 xdr_truncate_encode(xdr
, starting_len
);
3285 nfsd4_encode_readlink(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readlink
*readlink
)
3290 struct xdr_stream
*xdr
= &resp
->xdr
;
3291 int length_offset
= xdr
->buf
->len
;
3297 p
= xdr_reserve_space(xdr
, 4);
3299 return nfserr_resource
;
3300 maxcount
= PAGE_SIZE
;
3302 p
= xdr_reserve_space(xdr
, maxcount
);
3304 return nfserr_resource
;
3306 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3307 * if they would overflow the buffer. Is this kosher in NFSv4? If
3308 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3309 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3311 nfserr
= nfsd_readlink(readlink
->rl_rqstp
, readlink
->rl_fhp
,
3312 (char *)p
, &maxcount
);
3313 if (nfserr
== nfserr_isdir
)
3314 nfserr
= nfserr_inval
;
3316 xdr_truncate_encode(xdr
, length_offset
);
3320 wire_count
= htonl(maxcount
);
3321 write_bytes_to_xdr_buf(xdr
->buf
, length_offset
, &wire_count
, 4);
3322 xdr_truncate_encode(xdr
, length_offset
+ 4 + ALIGN(maxcount
, 4));
3324 write_bytes_to_xdr_buf(xdr
->buf
, length_offset
+ 4 + maxcount
,
3325 &zero
, 4 - (maxcount
&3));
3330 nfsd4_encode_readdir(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_readdir
*readdir
)
3336 struct xdr_stream
*xdr
= &resp
->xdr
;
3337 int starting_len
= xdr
->buf
->len
;
3343 p
= xdr_reserve_space(xdr
, NFS4_VERIFIER_SIZE
);
3345 return nfserr_resource
;
3347 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3348 *p
++ = cpu_to_be32(0);
3349 *p
++ = cpu_to_be32(0);
3350 resp
->xdr
.buf
->head
[0].iov_len
= ((char *)resp
->xdr
.p
)
3351 - (char *)resp
->xdr
.buf
->head
[0].iov_base
;
3354 * Number of bytes left for directory entries allowing for the
3355 * final 8 bytes of the readdir and a following failed op:
3357 bytes_left
= xdr
->buf
->buflen
- xdr
->buf
->len
3358 - COMPOUND_ERR_SLACK_SPACE
- 8;
3359 if (bytes_left
< 0) {
3360 nfserr
= nfserr_resource
;
3363 maxcount
= min_t(u32
, readdir
->rd_maxcount
, INT_MAX
);
3365 * Note the rfc defines rd_maxcount as the size of the
3366 * READDIR4resok structure, which includes the verifier above
3367 * and the 8 bytes encoded at the end of this function:
3369 if (maxcount
< 16) {
3370 nfserr
= nfserr_toosmall
;
3373 maxcount
= min_t(int, maxcount
-16, bytes_left
);
3375 /* RFC 3530 14.2.24 allows us to ignore dircount when it's 0: */
3376 if (!readdir
->rd_dircount
)
3377 readdir
->rd_dircount
= INT_MAX
;
3380 readdir
->rd_maxcount
= maxcount
;
3381 readdir
->common
.err
= 0;
3382 readdir
->cookie_offset
= 0;
3384 offset
= readdir
->rd_cookie
;
3385 nfserr
= nfsd_readdir(readdir
->rd_rqstp
, readdir
->rd_fhp
,
3387 &readdir
->common
, nfsd4_encode_dirent
);
3388 if (nfserr
== nfs_ok
&&
3389 readdir
->common
.err
== nfserr_toosmall
&&
3390 xdr
->buf
->len
== starting_len
+ 8) {
3391 /* nothing encoded; which limit did we hit?: */
3392 if (maxcount
- 16 < bytes_left
)
3393 /* It was the fault of rd_maxcount: */
3394 nfserr
= nfserr_toosmall
;
3396 /* We ran out of buffer space: */
3397 nfserr
= nfserr_resource
;
3402 if (readdir
->cookie_offset
) {
3403 wire_offset
= cpu_to_be64(offset
);
3404 write_bytes_to_xdr_buf(xdr
->buf
, readdir
->cookie_offset
,
3408 p
= xdr_reserve_space(xdr
, 8);
3413 *p
++ = 0; /* no more entries */
3414 *p
++ = htonl(readdir
->common
.err
== nfserr_eof
);
3418 xdr_truncate_encode(xdr
, starting_len
);
3423 nfsd4_encode_remove(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_remove
*remove
)
3425 struct xdr_stream
*xdr
= &resp
->xdr
;
3429 p
= xdr_reserve_space(xdr
, 20);
3431 return nfserr_resource
;
3432 p
= encode_cinfo(p
, &remove
->rm_cinfo
);
3438 nfsd4_encode_rename(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_rename
*rename
)
3440 struct xdr_stream
*xdr
= &resp
->xdr
;
3444 p
= xdr_reserve_space(xdr
, 40);
3446 return nfserr_resource
;
3447 p
= encode_cinfo(p
, &rename
->rn_sinfo
);
3448 p
= encode_cinfo(p
, &rename
->rn_tinfo
);
3454 nfsd4_do_encode_secinfo(struct xdr_stream
*xdr
,
3455 __be32 nfserr
, struct svc_export
*exp
)
3457 u32 i
, nflavs
, supported
;
3458 struct exp_flavor_info
*flavs
;
3459 struct exp_flavor_info def_flavs
[2];
3460 __be32
*p
, *flavorsp
;
3461 static bool report
= true;
3465 nfserr
= nfserr_resource
;
3466 if (exp
->ex_nflavors
) {
3467 flavs
= exp
->ex_flavors
;
3468 nflavs
= exp
->ex_nflavors
;
3469 } else { /* Handling of some defaults in absence of real secinfo: */
3471 if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_UNIX
) {
3473 flavs
[0].pseudoflavor
= RPC_AUTH_UNIX
;
3474 flavs
[1].pseudoflavor
= RPC_AUTH_NULL
;
3475 } else if (exp
->ex_client
->flavour
->flavour
== RPC_AUTH_GSS
) {
3477 flavs
[0].pseudoflavor
3478 = svcauth_gss_flavor(exp
->ex_client
);
3481 flavs
[0].pseudoflavor
3482 = exp
->ex_client
->flavour
->flavour
;
3487 p
= xdr_reserve_space(xdr
, 4);
3490 flavorsp
= p
++; /* to be backfilled later */
3492 for (i
= 0; i
< nflavs
; i
++) {
3493 rpc_authflavor_t pf
= flavs
[i
].pseudoflavor
;
3494 struct rpcsec_gss_info info
;
3496 if (rpcauth_get_gssinfo(pf
, &info
) == 0) {
3498 p
= xdr_reserve_space(xdr
, 4 + 4 +
3499 XDR_LEN(info
.oid
.len
) + 4 + 4);
3502 *p
++ = cpu_to_be32(RPC_AUTH_GSS
);
3503 p
= xdr_encode_opaque(p
, info
.oid
.data
, info
.oid
.len
);
3504 *p
++ = cpu_to_be32(info
.qop
);
3505 *p
++ = cpu_to_be32(info
.service
);
3506 } else if (pf
< RPC_AUTH_MAXFLAVOR
) {
3508 p
= xdr_reserve_space(xdr
, 4);
3511 *p
++ = cpu_to_be32(pf
);
3514 pr_warn("NFS: SECINFO: security flavor %u "
3515 "is not supported\n", pf
);
3519 if (nflavs
!= supported
)
3521 *flavorsp
= htonl(supported
);
3530 nfsd4_encode_secinfo(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3531 struct nfsd4_secinfo
*secinfo
)
3533 struct xdr_stream
*xdr
= &resp
->xdr
;
3535 return nfsd4_do_encode_secinfo(xdr
, nfserr
, secinfo
->si_exp
);
3539 nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3540 struct nfsd4_secinfo_no_name
*secinfo
)
3542 struct xdr_stream
*xdr
= &resp
->xdr
;
3544 return nfsd4_do_encode_secinfo(xdr
, nfserr
, secinfo
->sin_exp
);
3548 * The SETATTR encode routine is special -- it always encodes a bitmap,
3549 * regardless of the error status.
3552 nfsd4_encode_setattr(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setattr
*setattr
)
3554 struct xdr_stream
*xdr
= &resp
->xdr
;
3557 p
= xdr_reserve_space(xdr
, 16);
3559 return nfserr_resource
;
3561 *p
++ = cpu_to_be32(3);
3562 *p
++ = cpu_to_be32(0);
3563 *p
++ = cpu_to_be32(0);
3564 *p
++ = cpu_to_be32(0);
3567 *p
++ = cpu_to_be32(3);
3568 *p
++ = cpu_to_be32(setattr
->sa_bmval
[0]);
3569 *p
++ = cpu_to_be32(setattr
->sa_bmval
[1]);
3570 *p
++ = cpu_to_be32(setattr
->sa_bmval
[2]);
3576 nfsd4_encode_setclientid(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_setclientid
*scd
)
3578 struct xdr_stream
*xdr
= &resp
->xdr
;
3582 p
= xdr_reserve_space(xdr
, 8 + NFS4_VERIFIER_SIZE
);
3584 return nfserr_resource
;
3585 p
= xdr_encode_opaque_fixed(p
, &scd
->se_clientid
, 8);
3586 p
= xdr_encode_opaque_fixed(p
, &scd
->se_confirm
,
3587 NFS4_VERIFIER_SIZE
);
3589 else if (nfserr
== nfserr_clid_inuse
) {
3590 p
= xdr_reserve_space(xdr
, 8);
3592 return nfserr_resource
;
3593 *p
++ = cpu_to_be32(0);
3594 *p
++ = cpu_to_be32(0);
3600 nfsd4_encode_write(struct nfsd4_compoundres
*resp
, __be32 nfserr
, struct nfsd4_write
*write
)
3602 struct xdr_stream
*xdr
= &resp
->xdr
;
3606 p
= xdr_reserve_space(xdr
, 16);
3608 return nfserr_resource
;
3609 *p
++ = cpu_to_be32(write
->wr_bytes_written
);
3610 *p
++ = cpu_to_be32(write
->wr_how_written
);
3611 p
= xdr_encode_opaque_fixed(p
, write
->wr_verifier
.data
,
3612 NFS4_VERIFIER_SIZE
);
3617 static const u32 nfs4_minimal_spo_must_enforce
[2] = {
3618 [1] = 1 << (OP_BIND_CONN_TO_SESSION
- 32) |
3619 1 << (OP_EXCHANGE_ID
- 32) |
3620 1 << (OP_CREATE_SESSION
- 32) |
3621 1 << (OP_DESTROY_SESSION
- 32) |
3622 1 << (OP_DESTROY_CLIENTID
- 32)
3626 nfsd4_encode_exchange_id(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3627 struct nfsd4_exchange_id
*exid
)
3629 struct xdr_stream
*xdr
= &resp
->xdr
;
3634 int server_scope_sz
;
3635 uint64_t minor_id
= 0;
3640 major_id
= utsname()->nodename
;
3641 major_id_sz
= strlen(major_id
);
3642 server_scope
= utsname()->nodename
;
3643 server_scope_sz
= strlen(server_scope
);
3645 p
= xdr_reserve_space(xdr
,
3646 8 /* eir_clientid */ +
3647 4 /* eir_sequenceid */ +
3651 return nfserr_resource
;
3653 p
= xdr_encode_opaque_fixed(p
, &exid
->clientid
, 8);
3654 *p
++ = cpu_to_be32(exid
->seqid
);
3655 *p
++ = cpu_to_be32(exid
->flags
);
3657 *p
++ = cpu_to_be32(exid
->spa_how
);
3659 switch (exid
->spa_how
) {
3663 /* spo_must_enforce, spo_must_allow */
3664 p
= xdr_reserve_space(xdr
, 16);
3666 return nfserr_resource
;
3668 /* spo_must_enforce bitmap: */
3669 *p
++ = cpu_to_be32(2);
3670 *p
++ = cpu_to_be32(nfs4_minimal_spo_must_enforce
[0]);
3671 *p
++ = cpu_to_be32(nfs4_minimal_spo_must_enforce
[1]);
3672 /* empty spo_must_allow bitmap: */
3673 *p
++ = cpu_to_be32(0);
3680 p
= xdr_reserve_space(xdr
,
3681 8 /* so_minor_id */ +
3682 4 /* so_major_id.len */ +
3683 (XDR_QUADLEN(major_id_sz
) * 4) +
3684 4 /* eir_server_scope.len */ +
3685 (XDR_QUADLEN(server_scope_sz
) * 4) +
3686 4 /* eir_server_impl_id.count (0) */);
3688 return nfserr_resource
;
3690 /* The server_owner struct */
3691 p
= xdr_encode_hyper(p
, minor_id
); /* Minor id */
3693 p
= xdr_encode_opaque(p
, major_id
, major_id_sz
);
3696 p
= xdr_encode_opaque(p
, server_scope
, server_scope_sz
);
3698 /* Implementation id */
3699 *p
++ = cpu_to_be32(0); /* zero length nfs_impl_id4 array */
3704 nfsd4_encode_create_session(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3705 struct nfsd4_create_session
*sess
)
3707 struct xdr_stream
*xdr
= &resp
->xdr
;
3713 p
= xdr_reserve_space(xdr
, 24);
3715 return nfserr_resource
;
3716 p
= xdr_encode_opaque_fixed(p
, sess
->sessionid
.data
,
3717 NFS4_MAX_SESSIONID_LEN
);
3718 *p
++ = cpu_to_be32(sess
->seqid
);
3719 *p
++ = cpu_to_be32(sess
->flags
);
3721 p
= xdr_reserve_space(xdr
, 28);
3723 return nfserr_resource
;
3724 *p
++ = cpu_to_be32(0); /* headerpadsz */
3725 *p
++ = cpu_to_be32(sess
->fore_channel
.maxreq_sz
);
3726 *p
++ = cpu_to_be32(sess
->fore_channel
.maxresp_sz
);
3727 *p
++ = cpu_to_be32(sess
->fore_channel
.maxresp_cached
);
3728 *p
++ = cpu_to_be32(sess
->fore_channel
.maxops
);
3729 *p
++ = cpu_to_be32(sess
->fore_channel
.maxreqs
);
3730 *p
++ = cpu_to_be32(sess
->fore_channel
.nr_rdma_attrs
);
3732 if (sess
->fore_channel
.nr_rdma_attrs
) {
3733 p
= xdr_reserve_space(xdr
, 4);
3735 return nfserr_resource
;
3736 *p
++ = cpu_to_be32(sess
->fore_channel
.rdma_attrs
);
3739 p
= xdr_reserve_space(xdr
, 28);
3741 return nfserr_resource
;
3742 *p
++ = cpu_to_be32(0); /* headerpadsz */
3743 *p
++ = cpu_to_be32(sess
->back_channel
.maxreq_sz
);
3744 *p
++ = cpu_to_be32(sess
->back_channel
.maxresp_sz
);
3745 *p
++ = cpu_to_be32(sess
->back_channel
.maxresp_cached
);
3746 *p
++ = cpu_to_be32(sess
->back_channel
.maxops
);
3747 *p
++ = cpu_to_be32(sess
->back_channel
.maxreqs
);
3748 *p
++ = cpu_to_be32(sess
->back_channel
.nr_rdma_attrs
);
3750 if (sess
->back_channel
.nr_rdma_attrs
) {
3751 p
= xdr_reserve_space(xdr
, 4);
3753 return nfserr_resource
;
3754 *p
++ = cpu_to_be32(sess
->back_channel
.rdma_attrs
);
3760 nfsd4_encode_sequence(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3761 struct nfsd4_sequence
*seq
)
3763 struct xdr_stream
*xdr
= &resp
->xdr
;
3769 p
= xdr_reserve_space(xdr
, NFS4_MAX_SESSIONID_LEN
+ 20);
3771 return nfserr_resource
;
3772 p
= xdr_encode_opaque_fixed(p
, seq
->sessionid
.data
,
3773 NFS4_MAX_SESSIONID_LEN
);
3774 *p
++ = cpu_to_be32(seq
->seqid
);
3775 *p
++ = cpu_to_be32(seq
->slotid
);
3776 /* Note slotid's are numbered from zero: */
3777 *p
++ = cpu_to_be32(seq
->maxslots
- 1); /* sr_highest_slotid */
3778 *p
++ = cpu_to_be32(seq
->maxslots
- 1); /* sr_target_highest_slotid */
3779 *p
++ = cpu_to_be32(seq
->status_flags
);
3781 resp
->cstate
.data_offset
= xdr
->buf
->len
; /* DRC cache data pointer */
3786 nfsd4_encode_test_stateid(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3787 struct nfsd4_test_stateid
*test_stateid
)
3789 struct xdr_stream
*xdr
= &resp
->xdr
;
3790 struct nfsd4_test_stateid_id
*stateid
, *next
;
3796 p
= xdr_reserve_space(xdr
, 4 + (4 * test_stateid
->ts_num_ids
));
3798 return nfserr_resource
;
3799 *p
++ = htonl(test_stateid
->ts_num_ids
);
3801 list_for_each_entry_safe(stateid
, next
, &test_stateid
->ts_stateid_list
, ts_id_list
) {
3802 *p
++ = stateid
->ts_id_status
;
3809 nfsd4_encode_seek(struct nfsd4_compoundres
*resp
, __be32 nfserr
,
3810 struct nfsd4_seek
*seek
)
3817 p
= xdr_reserve_space(&resp
->xdr
, 4 + 8);
3818 *p
++ = cpu_to_be32(seek
->seek_eof
);
3819 p
= xdr_encode_hyper(p
, seek
->seek_pos
);
3825 nfsd4_encode_noop(struct nfsd4_compoundres
*resp
, __be32 nfserr
, void *p
)
3830 typedef __be32(* nfsd4_enc
)(struct nfsd4_compoundres
*, __be32
, void *);
3833 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3834 * since we don't need to filter out obsolete ops as this is
3835 * done in the decoding phase.
3837 static nfsd4_enc nfsd4_enc_ops
[] = {
3838 [OP_ACCESS
] = (nfsd4_enc
)nfsd4_encode_access
,
3839 [OP_CLOSE
] = (nfsd4_enc
)nfsd4_encode_close
,
3840 [OP_COMMIT
] = (nfsd4_enc
)nfsd4_encode_commit
,
3841 [OP_CREATE
] = (nfsd4_enc
)nfsd4_encode_create
,
3842 [OP_DELEGPURGE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3843 [OP_DELEGRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3844 [OP_GETATTR
] = (nfsd4_enc
)nfsd4_encode_getattr
,
3845 [OP_GETFH
] = (nfsd4_enc
)nfsd4_encode_getfh
,
3846 [OP_LINK
] = (nfsd4_enc
)nfsd4_encode_link
,
3847 [OP_LOCK
] = (nfsd4_enc
)nfsd4_encode_lock
,
3848 [OP_LOCKT
] = (nfsd4_enc
)nfsd4_encode_lockt
,
3849 [OP_LOCKU
] = (nfsd4_enc
)nfsd4_encode_locku
,
3850 [OP_LOOKUP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3851 [OP_LOOKUPP
] = (nfsd4_enc
)nfsd4_encode_noop
,
3852 [OP_NVERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3853 [OP_OPEN
] = (nfsd4_enc
)nfsd4_encode_open
,
3854 [OP_OPENATTR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3855 [OP_OPEN_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_open_confirm
,
3856 [OP_OPEN_DOWNGRADE
] = (nfsd4_enc
)nfsd4_encode_open_downgrade
,
3857 [OP_PUTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3858 [OP_PUTPUBFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3859 [OP_PUTROOTFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3860 [OP_READ
] = (nfsd4_enc
)nfsd4_encode_read
,
3861 [OP_READDIR
] = (nfsd4_enc
)nfsd4_encode_readdir
,
3862 [OP_READLINK
] = (nfsd4_enc
)nfsd4_encode_readlink
,
3863 [OP_REMOVE
] = (nfsd4_enc
)nfsd4_encode_remove
,
3864 [OP_RENAME
] = (nfsd4_enc
)nfsd4_encode_rename
,
3865 [OP_RENEW
] = (nfsd4_enc
)nfsd4_encode_noop
,
3866 [OP_RESTOREFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3867 [OP_SAVEFH
] = (nfsd4_enc
)nfsd4_encode_noop
,
3868 [OP_SECINFO
] = (nfsd4_enc
)nfsd4_encode_secinfo
,
3869 [OP_SETATTR
] = (nfsd4_enc
)nfsd4_encode_setattr
,
3870 [OP_SETCLIENTID
] = (nfsd4_enc
)nfsd4_encode_setclientid
,
3871 [OP_SETCLIENTID_CONFIRM
] = (nfsd4_enc
)nfsd4_encode_noop
,
3872 [OP_VERIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3873 [OP_WRITE
] = (nfsd4_enc
)nfsd4_encode_write
,
3874 [OP_RELEASE_LOCKOWNER
] = (nfsd4_enc
)nfsd4_encode_noop
,
3876 /* NFSv4.1 operations */
3877 [OP_BACKCHANNEL_CTL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3878 [OP_BIND_CONN_TO_SESSION
] = (nfsd4_enc
)nfsd4_encode_bind_conn_to_session
,
3879 [OP_EXCHANGE_ID
] = (nfsd4_enc
)nfsd4_encode_exchange_id
,
3880 [OP_CREATE_SESSION
] = (nfsd4_enc
)nfsd4_encode_create_session
,
3881 [OP_DESTROY_SESSION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3882 [OP_FREE_STATEID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3883 [OP_GET_DIR_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3884 [OP_GETDEVICEINFO
] = (nfsd4_enc
)nfsd4_encode_noop
,
3885 [OP_GETDEVICELIST
] = (nfsd4_enc
)nfsd4_encode_noop
,
3886 [OP_LAYOUTCOMMIT
] = (nfsd4_enc
)nfsd4_encode_noop
,
3887 [OP_LAYOUTGET
] = (nfsd4_enc
)nfsd4_encode_noop
,
3888 [OP_LAYOUTRETURN
] = (nfsd4_enc
)nfsd4_encode_noop
,
3889 [OP_SECINFO_NO_NAME
] = (nfsd4_enc
)nfsd4_encode_secinfo_no_name
,
3890 [OP_SEQUENCE
] = (nfsd4_enc
)nfsd4_encode_sequence
,
3891 [OP_SET_SSV
] = (nfsd4_enc
)nfsd4_encode_noop
,
3892 [OP_TEST_STATEID
] = (nfsd4_enc
)nfsd4_encode_test_stateid
,
3893 [OP_WANT_DELEGATION
] = (nfsd4_enc
)nfsd4_encode_noop
,
3894 [OP_DESTROY_CLIENTID
] = (nfsd4_enc
)nfsd4_encode_noop
,
3895 [OP_RECLAIM_COMPLETE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3897 /* NFSv4.2 operations */
3898 [OP_ALLOCATE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3899 [OP_COPY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3900 [OP_COPY_NOTIFY
] = (nfsd4_enc
)nfsd4_encode_noop
,
3901 [OP_DEALLOCATE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3902 [OP_IO_ADVISE
] = (nfsd4_enc
)nfsd4_encode_noop
,
3903 [OP_LAYOUTERROR
] = (nfsd4_enc
)nfsd4_encode_noop
,
3904 [OP_LAYOUTSTATS
] = (nfsd4_enc
)nfsd4_encode_noop
,
3905 [OP_OFFLOAD_CANCEL
] = (nfsd4_enc
)nfsd4_encode_noop
,
3906 [OP_OFFLOAD_STATUS
] = (nfsd4_enc
)nfsd4_encode_noop
,
3907 [OP_READ_PLUS
] = (nfsd4_enc
)nfsd4_encode_noop
,
3908 [OP_SEEK
] = (nfsd4_enc
)nfsd4_encode_seek
,
3909 [OP_WRITE_SAME
] = (nfsd4_enc
)nfsd4_encode_noop
,
3913 * Calculate whether we still have space to encode repsize bytes.
3914 * There are two considerations:
3915 * - For NFS versions >=4.1, the size of the reply must stay within
3917 * - For all NFS versions, we must stay within limited preallocated
3920 * This is called before the operation is processed, so can only provide
3921 * an upper estimate. For some nonidempotent operations (such as
3922 * getattr), it's not necessarily a problem if that estimate is wrong,
3923 * as we can fail it after processing without significant side effects.
3925 __be32
nfsd4_check_resp_size(struct nfsd4_compoundres
*resp
, u32 respsize
)
3927 struct xdr_buf
*buf
= &resp
->rqstp
->rq_res
;
3928 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3930 if (buf
->len
+ respsize
<= buf
->buflen
)
3932 if (!nfsd4_has_session(&resp
->cstate
))
3933 return nfserr_resource
;
3934 if (slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
) {
3936 return nfserr_rep_too_big_to_cache
;
3938 return nfserr_rep_too_big
;
3942 nfsd4_encode_operation(struct nfsd4_compoundres
*resp
, struct nfsd4_op
*op
)
3944 struct xdr_stream
*xdr
= &resp
->xdr
;
3945 struct nfs4_stateowner
*so
= resp
->cstate
.replay_owner
;
3946 struct svc_rqst
*rqstp
= resp
->rqstp
;
3947 int post_err_offset
;
3951 p
= xdr_reserve_space(xdr
, 8);
3956 *p
++ = cpu_to_be32(op
->opnum
);
3957 post_err_offset
= xdr
->buf
->len
;
3959 if (op
->opnum
== OP_ILLEGAL
)
3961 BUG_ON(op
->opnum
< 0 || op
->opnum
>= ARRAY_SIZE(nfsd4_enc_ops
) ||
3962 !nfsd4_enc_ops
[op
->opnum
]);
3963 encoder
= nfsd4_enc_ops
[op
->opnum
];
3964 op
->status
= encoder(resp
, op
->status
, &op
->u
);
3965 xdr_commit_encode(xdr
);
3967 /* nfsd4_check_resp_size guarantees enough room for error status */
3969 int space_needed
= 0;
3970 if (!nfsd4_last_compound_op(rqstp
))
3971 space_needed
= COMPOUND_ERR_SLACK_SPACE
;
3972 op
->status
= nfsd4_check_resp_size(resp
, space_needed
);
3974 if (op
->status
== nfserr_resource
&& nfsd4_has_session(&resp
->cstate
)) {
3975 struct nfsd4_slot
*slot
= resp
->cstate
.slot
;
3977 if (slot
->sl_flags
& NFSD4_SLOT_CACHETHIS
)
3978 op
->status
= nfserr_rep_too_big_to_cache
;
3980 op
->status
= nfserr_rep_too_big
;
3982 if (op
->status
== nfserr_resource
||
3983 op
->status
== nfserr_rep_too_big
||
3984 op
->status
== nfserr_rep_too_big_to_cache
) {
3986 * The operation may have already been encoded or
3987 * partially encoded. No op returns anything additional
3988 * in the case of one of these three errors, so we can
3989 * just truncate back to after the status. But it's a
3990 * bug if we had to do this on a non-idempotent op:
3992 warn_on_nonidempotent_op(op
);
3993 xdr_truncate_encode(xdr
, post_err_offset
);
3996 int len
= xdr
->buf
->len
- post_err_offset
;
3998 so
->so_replay
.rp_status
= op
->status
;
3999 so
->so_replay
.rp_buflen
= len
;
4000 read_bytes_from_xdr_buf(xdr
->buf
, post_err_offset
,
4001 so
->so_replay
.rp_buf
, len
);
4004 /* Note that op->status is already in network byte order: */
4005 write_bytes_to_xdr_buf(xdr
->buf
, post_err_offset
- 4, &op
->status
, 4);
4009 * Encode the reply stored in the stateowner reply cache
4011 * XDR note: do not encode rp->rp_buflen: the buffer contains the
4012 * previously sent already encoded operation.
4015 nfsd4_encode_replay(struct xdr_stream
*xdr
, struct nfsd4_op
*op
)
4018 struct nfs4_replay
*rp
= op
->replay
;
4022 p
= xdr_reserve_space(xdr
, 8 + rp
->rp_buflen
);
4027 *p
++ = cpu_to_be32(op
->opnum
);
4028 *p
++ = rp
->rp_status
; /* already xdr'ed */
4030 p
= xdr_encode_opaque_fixed(p
, rp
->rp_buf
, rp
->rp_buflen
);
4034 nfs4svc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
4036 return xdr_ressize_check(rqstp
, p
);
4039 int nfsd4_release_compoundargs(void *rq
, __be32
*p
, void *resp
)
4041 struct svc_rqst
*rqstp
= rq
;
4042 struct nfsd4_compoundargs
*args
= rqstp
->rq_argp
;
4044 if (args
->ops
!= args
->iops
) {
4046 args
->ops
= args
->iops
;
4050 while (args
->to_free
) {
4051 struct svcxdr_tmpbuf
*tb
= args
->to_free
;
4052 args
->to_free
= tb
->next
;
4059 nfs4svc_decode_compoundargs(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundargs
*args
)
4061 if (rqstp
->rq_arg
.head
[0].iov_len
% 4) {
4062 /* client is nuts */
4063 dprintk("%s: compound not properly padded! (peeraddr=%pISc xid=0x%x)",
4064 __func__
, svc_addr(rqstp
), be32_to_cpu(rqstp
->rq_xid
));
4068 args
->end
= rqstp
->rq_arg
.head
[0].iov_base
+ rqstp
->rq_arg
.head
[0].iov_len
;
4069 args
->pagelist
= rqstp
->rq_arg
.pages
;
4070 args
->pagelen
= rqstp
->rq_arg
.page_len
;
4072 args
->to_free
= NULL
;
4073 args
->ops
= args
->iops
;
4074 args
->rqstp
= rqstp
;
4076 return !nfsd4_decode_compound(args
);
4080 nfs4svc_encode_compoundres(struct svc_rqst
*rqstp
, __be32
*p
, struct nfsd4_compoundres
*resp
)
4083 * All that remains is to write the tag and operation count...
4085 struct xdr_buf
*buf
= resp
->xdr
.buf
;
4087 WARN_ON_ONCE(buf
->len
!= buf
->head
[0].iov_len
+ buf
->page_len
+
4088 buf
->tail
[0].iov_len
);
4090 rqstp
->rq_next_page
= resp
->xdr
.page_ptr
+ 1;
4093 *p
++ = htonl(resp
->taglen
);
4094 memcpy(p
, resp
->tag
, resp
->taglen
);
4095 p
+= XDR_QUADLEN(resp
->taglen
);
4096 *p
++ = htonl(resp
->opcnt
);
4098 nfsd4_sequence_done(resp
);