2 * Server-side XDR for NFSv4
4 * Copyright (c) 2002 The Regents of the University of Michigan.
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/file.h>
37 #include <linux/slab.h>
38 #include <linux/namei.h>
39 #include <linux/statfs.h>
40 #include <linux/utsname.h>
41 #include <linux/pagemap.h>
42 #include <linux/sunrpc/svcauth_gss.h>
43 #include <linux/sunrpc/addr.h>
44 #include <linux/xattr.h>
45 #include <uapi/linux/xattr.h>
55 #include "filecache.h"
59 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
60 #include <linux/security.h>
64 #define NFSDDBG_FACILITY NFSDDBG_XDR
66 const u32 nfsd_suppattrs[3][3] = {
67 {NFSD4_SUPPORTED_ATTRS_WORD0,
68 NFSD4_SUPPORTED_ATTRS_WORD1,
69 NFSD4_SUPPORTED_ATTRS_WORD2},
71 {NFSD4_1_SUPPORTED_ATTRS_WORD0,
72 NFSD4_1_SUPPORTED_ATTRS_WORD1,
73 NFSD4_1_SUPPORTED_ATTRS_WORD2},
75 {NFSD4_1_SUPPORTED_ATTRS_WORD0,
76 NFSD4_1_SUPPORTED_ATTRS_WORD1,
77 NFSD4_2_SUPPORTED_ATTRS_WORD2},
81 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
82 * directory in order to indicate to the client that a filesystem boundary is present
83 * We use a fixed fsid for a referral
85 #define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
86 #define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
89 check_filename(char *str, int len)
95 if (len > NFS4_MAXNAMLEN)
96 return nfserr_nametoolong;
97 if (isdotent(str, len))
98 return nfserr_badname;
99 for (i = 0; i < len; i++)
101 return nfserr_badname;
105 static int zero_clientid(clientid_t *clid)
107 return (clid->cl_boot == 0) && (clid->cl_id == 0);
111 * svcxdr_tmpalloc - allocate memory to be freed after compound processing
112 * @argp: NFSv4 compound argument structure
113 * @len: length of buffer to allocate
115 * Allocates a buffer of size @len to be freed when processing the compound
116 * operation described in @argp finishes.
119 svcxdr_tmpalloc(struct nfsd4_compoundargs *argp, u32 len)
121 struct svcxdr_tmpbuf *tb;
123 tb = kmalloc(sizeof(*tb) + len, GFP_KERNEL);
126 tb->next = argp->to_free;
132 * For xdr strings that need to be passed to other kernel api's
133 * as null-terminated strings.
135 * Note null-terminating in place usually isn't safe since the
136 * buffer might end on a page boundary.
139 svcxdr_dupstr(struct nfsd4_compoundargs *argp, void *buf, u32 len)
141 char *p = svcxdr_tmpalloc(argp, len + 1);
151 svcxdr_savemem(struct nfsd4_compoundargs *argp, __be32 *p, u32 len)
156 * The location of the decoded data item is stable,
157 * so @p is OK to use. This is the common case.
159 if (p != argp->xdr->scratch.iov_base)
162 tmp = svcxdr_tmpalloc(argp, len);
170 * NFSv4 basic data type decoders
174 * This helper handles variable-length opaques which belong to protocol
175 * elements that this implementation does not support.
178 nfsd4_decode_ignored_string(struct nfsd4_compoundargs *argp, u32 maxlen)
182 if (xdr_stream_decode_u32(argp->xdr, &len) < 0)
183 return nfserr_bad_xdr;
184 if (maxlen && len > maxlen)
185 return nfserr_bad_xdr;
186 if (!xdr_inline_decode(argp->xdr, len))
187 return nfserr_bad_xdr;
193 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
198 if (xdr_stream_decode_u32(argp->xdr, &len) < 0)
199 return nfserr_bad_xdr;
200 if (len == 0 || len > NFS4_OPAQUE_LIMIT)
201 return nfserr_bad_xdr;
202 p = xdr_inline_decode(argp->xdr, len);
204 return nfserr_bad_xdr;
205 o->data = svcxdr_savemem(argp, p, len);
207 return nfserr_jukebox;
214 nfsd4_decode_component4(struct nfsd4_compoundargs *argp, char **namp, u32 *lenp)
218 if (xdr_stream_decode_u32(argp->xdr, lenp) < 0)
219 return nfserr_bad_xdr;
220 p = xdr_inline_decode(argp->xdr, *lenp);
222 return nfserr_bad_xdr;
223 status = check_filename((char *)p, *lenp);
226 *namp = svcxdr_savemem(argp, p, *lenp);
228 return nfserr_jukebox;
234 nfsd4_decode_nfstime4(struct nfsd4_compoundargs *argp, struct timespec64 *tv)
238 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 3);
240 return nfserr_bad_xdr;
241 p = xdr_decode_hyper(p, &tv->tv_sec);
242 tv->tv_nsec = be32_to_cpup(p++);
243 if (tv->tv_nsec >= (u32)1000000000)
249 nfsd4_decode_verifier4(struct nfsd4_compoundargs *argp, nfs4_verifier *verf)
253 p = xdr_inline_decode(argp->xdr, NFS4_VERIFIER_SIZE);
255 return nfserr_bad_xdr;
256 memcpy(verf->data, p, sizeof(verf->data));
261 * nfsd4_decode_bitmap4 - Decode an NFSv4 bitmap4
262 * @argp: NFSv4 compound argument structure
263 * @bmval: pointer to an array of u32's to decode into
264 * @bmlen: size of the @bmval array
266 * The server needs to return nfs_ok rather than nfserr_bad_xdr when
267 * encountering bitmaps containing bits it does not recognize. This
268 * includes bits in bitmap words past WORDn, where WORDn is the last
269 * bitmap WORD the implementation currently supports. Thus we are
270 * careful here to simply ignore bits in bitmap words that this
271 * implementation has yet to support explicitly.
274 * %nfs_ok: @bmval populated successfully
275 * %nfserr_bad_xdr: the encoded bitmap was invalid
278 nfsd4_decode_bitmap4(struct nfsd4_compoundargs *argp, u32 *bmval, u32 bmlen)
283 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
284 return nfserr_bad_xdr;
287 return nfserr_bad_xdr;
288 p = xdr_inline_decode(argp->xdr, count << 2);
290 return nfserr_bad_xdr;
291 for (i = 0; i < bmlen; i++)
292 bmval[i] = (i < count) ? be32_to_cpup(p++) : 0;
298 nfsd4_decode_nfsace4(struct nfsd4_compoundargs *argp, struct nfs4_ace *ace)
303 if (xdr_stream_decode_u32(argp->xdr, &ace->type) < 0)
304 return nfserr_bad_xdr;
305 if (xdr_stream_decode_u32(argp->xdr, &ace->flag) < 0)
306 return nfserr_bad_xdr;
307 if (xdr_stream_decode_u32(argp->xdr, &ace->access_mask) < 0)
308 return nfserr_bad_xdr;
310 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
311 return nfserr_bad_xdr;
312 p = xdr_inline_decode(argp->xdr, length);
314 return nfserr_bad_xdr;
315 ace->whotype = nfs4_acl_get_whotype((char *)p, length);
316 if (ace->whotype != NFS4_ACL_WHO_NAMED)
318 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
319 status = nfsd_map_name_to_gid(argp->rqstp,
320 (char *)p, length, &ace->who_gid);
322 status = nfsd_map_name_to_uid(argp->rqstp,
323 (char *)p, length, &ace->who_uid);
328 /* A counted array of nfsace4's */
329 static noinline __be32
330 nfsd4_decode_acl(struct nfsd4_compoundargs *argp, struct nfs4_acl **acl)
332 struct nfs4_ace *ace;
336 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
337 return nfserr_bad_xdr;
339 if (count > xdr_stream_remaining(argp->xdr) / 20)
341 * Even with 4-byte names there wouldn't be
342 * space for that many aces; something fishy is
347 *acl = svcxdr_tmpalloc(argp, nfs4_acl_bytes(count));
349 return nfserr_jukebox;
351 (*acl)->naces = count;
352 for (ace = (*acl)->aces; ace < (*acl)->aces + count; ace++) {
353 status = nfsd4_decode_nfsace4(argp, ace);
361 static noinline __be32
362 nfsd4_decode_security_label(struct nfsd4_compoundargs *argp,
363 struct xdr_netobj *label)
368 if (xdr_stream_decode_u32(argp->xdr, &lfs) < 0)
369 return nfserr_bad_xdr;
370 if (xdr_stream_decode_u32(argp->xdr, &pi) < 0)
371 return nfserr_bad_xdr;
373 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
374 return nfserr_bad_xdr;
375 if (length > NFS4_MAXLABELLEN)
376 return nfserr_badlabel;
377 p = xdr_inline_decode(argp->xdr, length);
379 return nfserr_bad_xdr;
381 label->data = svcxdr_dupstr(argp, p, length);
383 return nfserr_jukebox;
389 nfsd4_decode_fattr4(struct nfsd4_compoundargs *argp, u32 *bmval, u32 bmlen,
390 struct iattr *iattr, struct nfs4_acl **acl,
391 struct xdr_netobj *label, int *umask)
393 unsigned int starting_pos;
398 status = nfsd4_decode_bitmap4(argp, bmval, bmlen);
400 return nfserr_bad_xdr;
402 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
403 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
404 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2) {
405 if (nfsd_attrs_supported(argp->minorversion, bmval))
407 return nfserr_attrnotsupp;
410 if (xdr_stream_decode_u32(argp->xdr, &attrlist4_count) < 0)
411 return nfserr_bad_xdr;
412 starting_pos = xdr_stream_pos(argp->xdr);
414 if (bmval[0] & FATTR4_WORD0_SIZE) {
417 if (xdr_stream_decode_u64(argp->xdr, &size) < 0)
418 return nfserr_bad_xdr;
419 iattr->ia_size = size;
420 iattr->ia_valid |= ATTR_SIZE;
422 if (bmval[0] & FATTR4_WORD0_ACL) {
423 status = nfsd4_decode_acl(argp, acl);
428 if (bmval[1] & FATTR4_WORD1_MODE) {
431 if (xdr_stream_decode_u32(argp->xdr, &mode) < 0)
432 return nfserr_bad_xdr;
433 iattr->ia_mode = mode;
434 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
435 iattr->ia_valid |= ATTR_MODE;
437 if (bmval[1] & FATTR4_WORD1_OWNER) {
440 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
441 return nfserr_bad_xdr;
442 p = xdr_inline_decode(argp->xdr, length);
444 return nfserr_bad_xdr;
445 status = nfsd_map_name_to_uid(argp->rqstp, (char *)p, length,
449 iattr->ia_valid |= ATTR_UID;
451 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
454 if (xdr_stream_decode_u32(argp->xdr, &length) < 0)
455 return nfserr_bad_xdr;
456 p = xdr_inline_decode(argp->xdr, length);
458 return nfserr_bad_xdr;
459 status = nfsd_map_name_to_gid(argp->rqstp, (char *)p, length,
463 iattr->ia_valid |= ATTR_GID;
465 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
468 if (xdr_stream_decode_u32(argp->xdr, &set_it) < 0)
469 return nfserr_bad_xdr;
471 case NFS4_SET_TO_CLIENT_TIME:
472 status = nfsd4_decode_nfstime4(argp, &iattr->ia_atime);
475 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
477 case NFS4_SET_TO_SERVER_TIME:
478 iattr->ia_valid |= ATTR_ATIME;
481 return nfserr_bad_xdr;
484 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
487 if (xdr_stream_decode_u32(argp->xdr, &set_it) < 0)
488 return nfserr_bad_xdr;
490 case NFS4_SET_TO_CLIENT_TIME:
491 status = nfsd4_decode_nfstime4(argp, &iattr->ia_mtime);
494 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
496 case NFS4_SET_TO_SERVER_TIME:
497 iattr->ia_valid |= ATTR_MTIME;
500 return nfserr_bad_xdr;
504 if (IS_ENABLED(CONFIG_NFSD_V4_SECURITY_LABEL) &&
505 bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
506 status = nfsd4_decode_security_label(argp, label);
510 if (bmval[2] & FATTR4_WORD2_MODE_UMASK) {
514 return nfserr_bad_xdr;
515 if (xdr_stream_decode_u32(argp->xdr, &mode) < 0)
516 return nfserr_bad_xdr;
517 iattr->ia_mode = mode & (S_IFMT | S_IALLUGO);
518 if (xdr_stream_decode_u32(argp->xdr, &mask) < 0)
519 return nfserr_bad_xdr;
520 *umask = mask & S_IRWXUGO;
521 iattr->ia_valid |= ATTR_MODE;
524 /* request sanity: did attrlist4 contain the expected number of words? */
525 if (attrlist4_count != xdr_stream_pos(argp->xdr) - starting_pos)
526 return nfserr_bad_xdr;
532 nfsd4_decode_stateid4(struct nfsd4_compoundargs *argp, stateid_t *sid)
536 p = xdr_inline_decode(argp->xdr, NFS4_STATEID_SIZE);
538 return nfserr_bad_xdr;
539 sid->si_generation = be32_to_cpup(p++);
540 memcpy(&sid->si_opaque, p, sizeof(sid->si_opaque));
545 nfsd4_decode_clientid4(struct nfsd4_compoundargs *argp, clientid_t *clientid)
549 p = xdr_inline_decode(argp->xdr, sizeof(__be64));
551 return nfserr_bad_xdr;
552 memcpy(clientid, p, sizeof(*clientid));
557 nfsd4_decode_state_owner4(struct nfsd4_compoundargs *argp,
558 clientid_t *clientid, struct xdr_netobj *owner)
562 status = nfsd4_decode_clientid4(argp, clientid);
565 return nfsd4_decode_opaque(argp, owner);
568 #ifdef CONFIG_NFSD_PNFS
570 nfsd4_decode_deviceid4(struct nfsd4_compoundargs *argp,
571 struct nfsd4_deviceid *devid)
575 p = xdr_inline_decode(argp->xdr, NFS4_DEVICEID4_SIZE);
577 return nfserr_bad_xdr;
578 memcpy(devid, p, sizeof(*devid));
583 nfsd4_decode_layoutupdate4(struct nfsd4_compoundargs *argp,
584 struct nfsd4_layoutcommit *lcp)
586 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_layout_type) < 0)
587 return nfserr_bad_xdr;
588 if (lcp->lc_layout_type < LAYOUT_NFSV4_1_FILES)
589 return nfserr_bad_xdr;
590 if (lcp->lc_layout_type >= LAYOUT_TYPE_MAX)
591 return nfserr_bad_xdr;
593 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_up_len) < 0)
594 return nfserr_bad_xdr;
595 if (lcp->lc_up_len > 0) {
596 lcp->lc_up_layout = xdr_inline_decode(argp->xdr, lcp->lc_up_len);
597 if (!lcp->lc_up_layout)
598 return nfserr_bad_xdr;
605 nfsd4_decode_layoutreturn4(struct nfsd4_compoundargs *argp,
606 struct nfsd4_layoutreturn *lrp)
610 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_return_type) < 0)
611 return nfserr_bad_xdr;
612 switch (lrp->lr_return_type) {
614 if (xdr_stream_decode_u64(argp->xdr, &lrp->lr_seg.offset) < 0)
615 return nfserr_bad_xdr;
616 if (xdr_stream_decode_u64(argp->xdr, &lrp->lr_seg.length) < 0)
617 return nfserr_bad_xdr;
618 status = nfsd4_decode_stateid4(argp, &lrp->lr_sid);
621 if (xdr_stream_decode_u32(argp->xdr, &lrp->lrf_body_len) < 0)
622 return nfserr_bad_xdr;
623 if (lrp->lrf_body_len > 0) {
624 lrp->lrf_body = xdr_inline_decode(argp->xdr, lrp->lrf_body_len);
626 return nfserr_bad_xdr;
631 lrp->lr_seg.offset = 0;
632 lrp->lr_seg.length = NFS4_MAX_UINT64;
635 return nfserr_bad_xdr;
641 #endif /* CONFIG_NFSD_PNFS */
644 nfsd4_decode_sessionid4(struct nfsd4_compoundargs *argp,
645 struct nfs4_sessionid *sessionid)
649 p = xdr_inline_decode(argp->xdr, NFS4_MAX_SESSIONID_LEN);
651 return nfserr_bad_xdr;
652 memcpy(sessionid->data, p, sizeof(sessionid->data));
656 /* Defined in Appendix A of RFC 5531 */
658 nfsd4_decode_authsys_parms(struct nfsd4_compoundargs *argp,
659 struct nfsd4_cb_sec *cbs)
661 u32 stamp, gidcount, uid, gid;
664 if (xdr_stream_decode_u32(argp->xdr, &stamp) < 0)
665 return nfserr_bad_xdr;
667 status = nfsd4_decode_ignored_string(argp, 255);
670 if (xdr_stream_decode_u32(argp->xdr, &uid) < 0)
671 return nfserr_bad_xdr;
672 if (xdr_stream_decode_u32(argp->xdr, &gid) < 0)
673 return nfserr_bad_xdr;
674 if (xdr_stream_decode_u32(argp->xdr, &gidcount) < 0)
675 return nfserr_bad_xdr;
677 return nfserr_bad_xdr;
678 p = xdr_inline_decode(argp->xdr, gidcount << 2);
680 return nfserr_bad_xdr;
681 if (cbs->flavor == (u32)(-1)) {
682 struct user_namespace *userns = nfsd_user_namespace(argp->rqstp);
684 kuid_t kuid = make_kuid(userns, uid);
685 kgid_t kgid = make_kgid(userns, gid);
686 if (uid_valid(kuid) && gid_valid(kgid)) {
689 cbs->flavor = RPC_AUTH_UNIX;
691 dprintk("RPC_AUTH_UNIX with invalid uid or gid, ignoring!\n");
699 nfsd4_decode_gss_cb_handles4(struct nfsd4_compoundargs *argp,
700 struct nfsd4_cb_sec *cbs)
705 dprintk("RPC_AUTH_GSS callback secflavor not supported!\n");
707 if (xdr_stream_decode_u32(argp->xdr, &service) < 0)
708 return nfserr_bad_xdr;
709 if (service < RPC_GSS_SVC_NONE || service > RPC_GSS_SVC_PRIVACY)
710 return nfserr_bad_xdr;
711 /* gcbp_handle_from_server */
712 status = nfsd4_decode_ignored_string(argp, 0);
715 /* gcbp_handle_from_client */
716 status = nfsd4_decode_ignored_string(argp, 0);
723 /* a counted array of callback_sec_parms4 items */
725 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
727 u32 i, secflavor, nr_secflavs;
730 /* callback_sec_params4 */
731 if (xdr_stream_decode_u32(argp->xdr, &nr_secflavs) < 0)
732 return nfserr_bad_xdr;
734 cbs->flavor = (u32)(-1);
736 /* Is this legal? Be generous, take it to mean AUTH_NONE: */
739 for (i = 0; i < nr_secflavs; ++i) {
740 if (xdr_stream_decode_u32(argp->xdr, &secflavor) < 0)
741 return nfserr_bad_xdr;
745 if (cbs->flavor == (u32)(-1))
746 cbs->flavor = RPC_AUTH_NULL;
749 status = nfsd4_decode_authsys_parms(argp, cbs);
754 status = nfsd4_decode_gss_cb_handles4(argp, cbs);
768 * NFSv4 operation argument decoders
772 nfsd4_decode_access(struct nfsd4_compoundargs *argp,
773 struct nfsd4_access *access)
775 if (xdr_stream_decode_u32(argp->xdr, &access->ac_req_access) < 0)
776 return nfserr_bad_xdr;
781 nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
783 if (xdr_stream_decode_u32(argp->xdr, &close->cl_seqid) < 0)
784 return nfserr_bad_xdr;
785 return nfsd4_decode_stateid4(argp, &close->cl_stateid);
790 nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
792 if (xdr_stream_decode_u64(argp->xdr, &commit->co_offset) < 0)
793 return nfserr_bad_xdr;
794 if (xdr_stream_decode_u32(argp->xdr, &commit->co_count) < 0)
795 return nfserr_bad_xdr;
800 nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
804 if (xdr_stream_decode_u32(argp->xdr, &create->cr_type) < 0)
805 return nfserr_bad_xdr;
806 switch (create->cr_type) {
808 if (xdr_stream_decode_u32(argp->xdr, &create->cr_datalen) < 0)
809 return nfserr_bad_xdr;
810 p = xdr_inline_decode(argp->xdr, create->cr_datalen);
812 return nfserr_bad_xdr;
813 create->cr_data = svcxdr_dupstr(argp, p, create->cr_datalen);
814 if (!create->cr_data)
815 return nfserr_jukebox;
819 if (xdr_stream_decode_u32(argp->xdr, &create->cr_specdata1) < 0)
820 return nfserr_bad_xdr;
821 if (xdr_stream_decode_u32(argp->xdr, &create->cr_specdata2) < 0)
822 return nfserr_bad_xdr;
830 status = nfsd4_decode_component4(argp, &create->cr_name,
831 &create->cr_namelen);
834 status = nfsd4_decode_fattr4(argp, create->cr_bmval,
835 ARRAY_SIZE(create->cr_bmval),
836 &create->cr_iattr, &create->cr_acl,
837 &create->cr_label, &create->cr_umask);
845 nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
847 return nfsd4_decode_stateid4(argp, &dr->dr_stateid);
851 nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
853 return nfsd4_decode_bitmap4(argp, getattr->ga_bmval,
854 ARRAY_SIZE(getattr->ga_bmval));
858 nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
860 return nfsd4_decode_component4(argp, &link->li_name, &link->li_namelen);
864 nfsd4_decode_open_to_lock_owner4(struct nfsd4_compoundargs *argp,
865 struct nfsd4_lock *lock)
869 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_new_open_seqid) < 0)
870 return nfserr_bad_xdr;
871 status = nfsd4_decode_stateid4(argp, &lock->lk_new_open_stateid);
874 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_new_lock_seqid) < 0)
875 return nfserr_bad_xdr;
876 return nfsd4_decode_state_owner4(argp, &lock->lk_new_clientid,
877 &lock->lk_new_owner);
881 nfsd4_decode_exist_lock_owner4(struct nfsd4_compoundargs *argp,
882 struct nfsd4_lock *lock)
886 status = nfsd4_decode_stateid4(argp, &lock->lk_old_lock_stateid);
889 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_old_lock_seqid) < 0)
890 return nfserr_bad_xdr;
896 nfsd4_decode_locker4(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
898 if (xdr_stream_decode_bool(argp->xdr, &lock->lk_is_new) < 0)
899 return nfserr_bad_xdr;
901 return nfsd4_decode_open_to_lock_owner4(argp, lock);
902 return nfsd4_decode_exist_lock_owner4(argp, lock);
906 nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
908 if (xdr_stream_decode_u32(argp->xdr, &lock->lk_type) < 0)
909 return nfserr_bad_xdr;
910 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
911 return nfserr_bad_xdr;
912 if (xdr_stream_decode_bool(argp->xdr, &lock->lk_reclaim) < 0)
913 return nfserr_bad_xdr;
914 if (xdr_stream_decode_u64(argp->xdr, &lock->lk_offset) < 0)
915 return nfserr_bad_xdr;
916 if (xdr_stream_decode_u64(argp->xdr, &lock->lk_length) < 0)
917 return nfserr_bad_xdr;
918 return nfsd4_decode_locker4(argp, lock);
922 nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
924 if (xdr_stream_decode_u32(argp->xdr, &lockt->lt_type) < 0)
925 return nfserr_bad_xdr;
926 if ((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
927 return nfserr_bad_xdr;
928 if (xdr_stream_decode_u64(argp->xdr, &lockt->lt_offset) < 0)
929 return nfserr_bad_xdr;
930 if (xdr_stream_decode_u64(argp->xdr, &lockt->lt_length) < 0)
931 return nfserr_bad_xdr;
932 return nfsd4_decode_state_owner4(argp, &lockt->lt_clientid,
937 nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
941 if (xdr_stream_decode_u32(argp->xdr, &locku->lu_type) < 0)
942 return nfserr_bad_xdr;
943 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
944 return nfserr_bad_xdr;
945 if (xdr_stream_decode_u32(argp->xdr, &locku->lu_seqid) < 0)
946 return nfserr_bad_xdr;
947 status = nfsd4_decode_stateid4(argp, &locku->lu_stateid);
950 if (xdr_stream_decode_u64(argp->xdr, &locku->lu_offset) < 0)
951 return nfserr_bad_xdr;
952 if (xdr_stream_decode_u64(argp->xdr, &locku->lu_length) < 0)
953 return nfserr_bad_xdr;
959 nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
961 return nfsd4_decode_component4(argp, &lookup->lo_name, &lookup->lo_len);
965 nfsd4_decode_createhow4(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
969 if (xdr_stream_decode_u32(argp->xdr, &open->op_createmode) < 0)
970 return nfserr_bad_xdr;
971 switch (open->op_createmode) {
972 case NFS4_CREATE_UNCHECKED:
973 case NFS4_CREATE_GUARDED:
974 status = nfsd4_decode_fattr4(argp, open->op_bmval,
975 ARRAY_SIZE(open->op_bmval),
976 &open->op_iattr, &open->op_acl,
977 &open->op_label, &open->op_umask);
981 case NFS4_CREATE_EXCLUSIVE:
982 status = nfsd4_decode_verifier4(argp, &open->op_verf);
986 case NFS4_CREATE_EXCLUSIVE4_1:
987 if (argp->minorversion < 1)
988 return nfserr_bad_xdr;
989 status = nfsd4_decode_verifier4(argp, &open->op_verf);
992 status = nfsd4_decode_fattr4(argp, open->op_bmval,
993 ARRAY_SIZE(open->op_bmval),
994 &open->op_iattr, &open->op_acl,
995 &open->op_label, &open->op_umask);
1000 return nfserr_bad_xdr;
1007 nfsd4_decode_openflag4(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
1011 if (xdr_stream_decode_u32(argp->xdr, &open->op_create) < 0)
1012 return nfserr_bad_xdr;
1013 switch (open->op_create) {
1014 case NFS4_OPEN_NOCREATE:
1016 case NFS4_OPEN_CREATE:
1017 status = nfsd4_decode_createhow4(argp, open);
1022 return nfserr_bad_xdr;
1028 static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *share_access, u32 *deleg_want, u32 *deleg_when)
1032 if (xdr_stream_decode_u32(argp->xdr, &w) < 0)
1033 return nfserr_bad_xdr;
1034 *share_access = w & NFS4_SHARE_ACCESS_MASK;
1035 *deleg_want = w & NFS4_SHARE_WANT_MASK;
1037 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
1039 switch (w & NFS4_SHARE_ACCESS_MASK) {
1040 case NFS4_SHARE_ACCESS_READ:
1041 case NFS4_SHARE_ACCESS_WRITE:
1042 case NFS4_SHARE_ACCESS_BOTH:
1045 return nfserr_bad_xdr;
1047 w &= ~NFS4_SHARE_ACCESS_MASK;
1050 if (!argp->minorversion)
1051 return nfserr_bad_xdr;
1052 switch (w & NFS4_SHARE_WANT_MASK) {
1053 case NFS4_SHARE_WANT_NO_PREFERENCE:
1054 case NFS4_SHARE_WANT_READ_DELEG:
1055 case NFS4_SHARE_WANT_WRITE_DELEG:
1056 case NFS4_SHARE_WANT_ANY_DELEG:
1057 case NFS4_SHARE_WANT_NO_DELEG:
1058 case NFS4_SHARE_WANT_CANCEL:
1061 return nfserr_bad_xdr;
1063 w &= ~NFS4_SHARE_WANT_MASK;
1067 if (!deleg_when) /* open_downgrade */
1068 return nfserr_inval;
1070 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
1071 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
1072 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
1073 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
1076 return nfserr_bad_xdr;
1079 static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
1081 if (xdr_stream_decode_u32(argp->xdr, x) < 0)
1082 return nfserr_bad_xdr;
1083 /* Note: unlike access bits, deny bits may be zero. */
1084 if (*x & ~NFS4_SHARE_DENY_BOTH)
1085 return nfserr_bad_xdr;
1091 nfsd4_decode_open_claim4(struct nfsd4_compoundargs *argp,
1092 struct nfsd4_open *open)
1096 if (xdr_stream_decode_u32(argp->xdr, &open->op_claim_type) < 0)
1097 return nfserr_bad_xdr;
1098 switch (open->op_claim_type) {
1099 case NFS4_OPEN_CLAIM_NULL:
1100 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1101 status = nfsd4_decode_component4(argp, &open->op_fname,
1102 &open->op_fnamelen);
1106 case NFS4_OPEN_CLAIM_PREVIOUS:
1107 if (xdr_stream_decode_u32(argp->xdr, &open->op_delegate_type) < 0)
1108 return nfserr_bad_xdr;
1110 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1111 status = nfsd4_decode_stateid4(argp, &open->op_delegate_stateid);
1114 status = nfsd4_decode_component4(argp, &open->op_fname,
1115 &open->op_fnamelen);
1119 case NFS4_OPEN_CLAIM_FH:
1120 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1121 if (argp->minorversion < 1)
1122 return nfserr_bad_xdr;
1125 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1126 if (argp->minorversion < 1)
1127 return nfserr_bad_xdr;
1128 status = nfsd4_decode_stateid4(argp, &open->op_delegate_stateid);
1133 return nfserr_bad_xdr;
1140 nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
1145 memset(open->op_bmval, 0, sizeof(open->op_bmval));
1146 open->op_iattr.ia_valid = 0;
1147 open->op_openowner = NULL;
1149 open->op_xdr_error = 0;
1150 if (xdr_stream_decode_u32(argp->xdr, &open->op_seqid) < 0)
1151 return nfserr_bad_xdr;
1152 /* deleg_want is ignored */
1153 status = nfsd4_decode_share_access(argp, &open->op_share_access,
1154 &open->op_deleg_want, &dummy);
1157 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
1160 status = nfsd4_decode_state_owner4(argp, &open->op_clientid,
1164 status = nfsd4_decode_openflag4(argp, open);
1167 return nfsd4_decode_open_claim4(argp, open);
1171 nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
1175 if (argp->minorversion >= 1)
1176 return nfserr_notsupp;
1178 status = nfsd4_decode_stateid4(argp, &open_conf->oc_req_stateid);
1181 if (xdr_stream_decode_u32(argp->xdr, &open_conf->oc_seqid) < 0)
1182 return nfserr_bad_xdr;
1188 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
1192 status = nfsd4_decode_stateid4(argp, &open_down->od_stateid);
1195 if (xdr_stream_decode_u32(argp->xdr, &open_down->od_seqid) < 0)
1196 return nfserr_bad_xdr;
1197 /* deleg_want is ignored */
1198 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
1199 &open_down->od_deleg_want, NULL);
1202 return nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
1206 nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
1210 if (xdr_stream_decode_u32(argp->xdr, &putfh->pf_fhlen) < 0)
1211 return nfserr_bad_xdr;
1212 if (putfh->pf_fhlen > NFS4_FHSIZE)
1213 return nfserr_bad_xdr;
1214 p = xdr_inline_decode(argp->xdr, putfh->pf_fhlen);
1216 return nfserr_bad_xdr;
1217 putfh->pf_fhval = svcxdr_savemem(argp, p, putfh->pf_fhlen);
1218 if (!putfh->pf_fhval)
1219 return nfserr_jukebox;
1225 nfsd4_decode_putpubfh(struct nfsd4_compoundargs *argp, void *p)
1227 if (argp->minorversion == 0)
1229 return nfserr_notsupp;
1233 nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
1237 status = nfsd4_decode_stateid4(argp, &read->rd_stateid);
1240 if (xdr_stream_decode_u64(argp->xdr, &read->rd_offset) < 0)
1241 return nfserr_bad_xdr;
1242 if (xdr_stream_decode_u32(argp->xdr, &read->rd_length) < 0)
1243 return nfserr_bad_xdr;
1249 nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
1253 if (xdr_stream_decode_u64(argp->xdr, &readdir->rd_cookie) < 0)
1254 return nfserr_bad_xdr;
1255 status = nfsd4_decode_verifier4(argp, &readdir->rd_verf);
1258 if (xdr_stream_decode_u32(argp->xdr, &readdir->rd_dircount) < 0)
1259 return nfserr_bad_xdr;
1260 if (xdr_stream_decode_u32(argp->xdr, &readdir->rd_maxcount) < 0)
1261 return nfserr_bad_xdr;
1262 if (xdr_stream_decode_uint32_array(argp->xdr, readdir->rd_bmval,
1263 ARRAY_SIZE(readdir->rd_bmval)) < 0)
1264 return nfserr_bad_xdr;
1270 nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
1272 return nfsd4_decode_component4(argp, &remove->rm_name, &remove->rm_namelen);
1276 nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
1280 status = nfsd4_decode_component4(argp, &rename->rn_sname, &rename->rn_snamelen);
1283 return nfsd4_decode_component4(argp, &rename->rn_tname, &rename->rn_tnamelen);
1287 nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1289 return nfsd4_decode_clientid4(argp, clientid);
1293 nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1294 struct nfsd4_secinfo *secinfo)
1296 return nfsd4_decode_component4(argp, &secinfo->si_name, &secinfo->si_namelen);
1300 nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1304 status = nfsd4_decode_stateid4(argp, &setattr->sa_stateid);
1307 return nfsd4_decode_fattr4(argp, setattr->sa_bmval,
1308 ARRAY_SIZE(setattr->sa_bmval),
1309 &setattr->sa_iattr, &setattr->sa_acl,
1310 &setattr->sa_label, NULL);
1314 nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1318 if (argp->minorversion >= 1)
1319 return nfserr_notsupp;
1321 status = nfsd4_decode_verifier4(argp, &setclientid->se_verf);
1324 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1327 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_prog) < 0)
1328 return nfserr_bad_xdr;
1329 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_netid_len) < 0)
1330 return nfserr_bad_xdr;
1331 p = xdr_inline_decode(argp->xdr, setclientid->se_callback_netid_len);
1333 return nfserr_bad_xdr;
1334 setclientid->se_callback_netid_val = svcxdr_savemem(argp, p,
1335 setclientid->se_callback_netid_len);
1336 if (!setclientid->se_callback_netid_val)
1337 return nfserr_jukebox;
1339 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_addr_len) < 0)
1340 return nfserr_bad_xdr;
1341 p = xdr_inline_decode(argp->xdr, setclientid->se_callback_addr_len);
1343 return nfserr_bad_xdr;
1344 setclientid->se_callback_addr_val = svcxdr_savemem(argp, p,
1345 setclientid->se_callback_addr_len);
1346 if (!setclientid->se_callback_addr_val)
1347 return nfserr_jukebox;
1348 if (xdr_stream_decode_u32(argp->xdr, &setclientid->se_callback_ident) < 0)
1349 return nfserr_bad_xdr;
1355 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1359 if (argp->minorversion >= 1)
1360 return nfserr_notsupp;
1362 status = nfsd4_decode_clientid4(argp, &scd_c->sc_clientid);
1365 return nfsd4_decode_verifier4(argp, &scd_c->sc_confirm);
1368 /* Also used for NVERIFY */
1370 nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1374 status = nfsd4_decode_bitmap4(argp, verify->ve_bmval,
1375 ARRAY_SIZE(verify->ve_bmval));
1379 /* For convenience's sake, we compare raw xdr'd attributes in
1380 * nfsd4_proc_verify */
1382 if (xdr_stream_decode_u32(argp->xdr, &verify->ve_attrlen) < 0)
1383 return nfserr_bad_xdr;
1384 p = xdr_inline_decode(argp->xdr, verify->ve_attrlen);
1386 return nfserr_bad_xdr;
1387 verify->ve_attrval = svcxdr_savemem(argp, p, verify->ve_attrlen);
1388 if (!verify->ve_attrval)
1389 return nfserr_jukebox;
1395 nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1399 status = nfsd4_decode_stateid4(argp, &write->wr_stateid);
1402 if (xdr_stream_decode_u64(argp->xdr, &write->wr_offset) < 0)
1403 return nfserr_bad_xdr;
1404 if (xdr_stream_decode_u32(argp->xdr, &write->wr_stable_how) < 0)
1405 return nfserr_bad_xdr;
1406 if (write->wr_stable_how > NFS_FILE_SYNC)
1407 return nfserr_bad_xdr;
1408 if (xdr_stream_decode_u32(argp->xdr, &write->wr_buflen) < 0)
1409 return nfserr_bad_xdr;
1410 if (!xdr_stream_subsegment(argp->xdr, &write->wr_payload, write->wr_buflen))
1411 return nfserr_bad_xdr;
1417 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1421 if (argp->minorversion >= 1)
1422 return nfserr_notsupp;
1424 status = nfsd4_decode_state_owner4(argp, &rlockowner->rl_clientid,
1425 &rlockowner->rl_owner);
1429 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1430 return nfserr_inval;
1435 static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
1437 if (xdr_stream_decode_u32(argp->xdr, &bc->bc_cb_program) < 0)
1438 return nfserr_bad_xdr;
1439 return nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
1442 static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
1444 u32 use_conn_in_rdma_mode;
1447 status = nfsd4_decode_sessionid4(argp, &bcts->sessionid);
1450 if (xdr_stream_decode_u32(argp->xdr, &bcts->dir) < 0)
1451 return nfserr_bad_xdr;
1452 if (xdr_stream_decode_u32(argp->xdr, &use_conn_in_rdma_mode) < 0)
1453 return nfserr_bad_xdr;
1459 nfsd4_decode_state_protect_ops(struct nfsd4_compoundargs *argp,
1460 struct nfsd4_exchange_id *exid)
1464 status = nfsd4_decode_bitmap4(argp, exid->spo_must_enforce,
1465 ARRAY_SIZE(exid->spo_must_enforce));
1467 return nfserr_bad_xdr;
1468 status = nfsd4_decode_bitmap4(argp, exid->spo_must_allow,
1469 ARRAY_SIZE(exid->spo_must_allow));
1471 return nfserr_bad_xdr;
1477 * This implementation currently does not support SP4_SSV.
1478 * This decoder simply skips over these arguments.
1480 static noinline __be32
1481 nfsd4_decode_ssv_sp_parms(struct nfsd4_compoundargs *argp,
1482 struct nfsd4_exchange_id *exid)
1484 u32 count, window, num_gss_handles;
1488 status = nfsd4_decode_state_protect_ops(argp, exid);
1492 /* ssp_hash_algs<> */
1493 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1494 return nfserr_bad_xdr;
1496 status = nfsd4_decode_ignored_string(argp, 0);
1501 /* ssp_encr_algs<> */
1502 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1503 return nfserr_bad_xdr;
1505 status = nfsd4_decode_ignored_string(argp, 0);
1510 if (xdr_stream_decode_u32(argp->xdr, &window) < 0)
1511 return nfserr_bad_xdr;
1512 if (xdr_stream_decode_u32(argp->xdr, &num_gss_handles) < 0)
1513 return nfserr_bad_xdr;
1519 nfsd4_decode_state_protect4_a(struct nfsd4_compoundargs *argp,
1520 struct nfsd4_exchange_id *exid)
1524 if (xdr_stream_decode_u32(argp->xdr, &exid->spa_how) < 0)
1525 return nfserr_bad_xdr;
1526 switch (exid->spa_how) {
1530 status = nfsd4_decode_state_protect_ops(argp, exid);
1535 status = nfsd4_decode_ssv_sp_parms(argp, exid);
1540 return nfserr_bad_xdr;
1547 nfsd4_decode_nfs_impl_id4(struct nfsd4_compoundargs *argp,
1548 struct nfsd4_exchange_id *exid)
1553 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1554 return nfserr_bad_xdr;
1559 /* Note that RFC 8881 places no length limit on
1560 * nii_domain, but this implementation permits no
1561 * more than NFS4_OPAQUE_LIMIT bytes */
1562 status = nfsd4_decode_opaque(argp, &exid->nii_domain);
1565 /* Note that RFC 8881 places no length limit on
1566 * nii_name, but this implementation permits no
1567 * more than NFS4_OPAQUE_LIMIT bytes */
1568 status = nfsd4_decode_opaque(argp, &exid->nii_name);
1571 status = nfsd4_decode_nfstime4(argp, &exid->nii_time);
1576 return nfserr_bad_xdr;
1583 nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
1584 struct nfsd4_exchange_id *exid)
1588 status = nfsd4_decode_verifier4(argp, &exid->verifier);
1591 status = nfsd4_decode_opaque(argp, &exid->clname);
1594 if (xdr_stream_decode_u32(argp->xdr, &exid->flags) < 0)
1595 return nfserr_bad_xdr;
1596 status = nfsd4_decode_state_protect4_a(argp, exid);
1599 return nfsd4_decode_nfs_impl_id4(argp, exid);
1603 nfsd4_decode_channel_attrs4(struct nfsd4_compoundargs *argp,
1604 struct nfsd4_channel_attrs *ca)
1608 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 7);
1610 return nfserr_bad_xdr;
1612 /* headerpadsz is ignored */
1614 ca->maxreq_sz = be32_to_cpup(p++);
1615 ca->maxresp_sz = be32_to_cpup(p++);
1616 ca->maxresp_cached = be32_to_cpup(p++);
1617 ca->maxops = be32_to_cpup(p++);
1618 ca->maxreqs = be32_to_cpup(p++);
1619 ca->nr_rdma_attrs = be32_to_cpup(p);
1620 switch (ca->nr_rdma_attrs) {
1624 if (xdr_stream_decode_u32(argp->xdr, &ca->rdma_attrs) < 0)
1625 return nfserr_bad_xdr;
1628 return nfserr_bad_xdr;
1635 nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1636 struct nfsd4_create_session *sess)
1640 status = nfsd4_decode_clientid4(argp, &sess->clientid);
1643 if (xdr_stream_decode_u32(argp->xdr, &sess->seqid) < 0)
1644 return nfserr_bad_xdr;
1645 if (xdr_stream_decode_u32(argp->xdr, &sess->flags) < 0)
1646 return nfserr_bad_xdr;
1647 status = nfsd4_decode_channel_attrs4(argp, &sess->fore_channel);
1650 status = nfsd4_decode_channel_attrs4(argp, &sess->back_channel);
1653 if (xdr_stream_decode_u32(argp->xdr, &sess->callback_prog) < 0)
1654 return nfserr_bad_xdr;
1655 status = nfsd4_decode_cb_sec(argp, &sess->cb_sec);
1663 nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1664 struct nfsd4_destroy_session *destroy_session)
1666 return nfsd4_decode_sessionid4(argp, &destroy_session->sessionid);
1670 nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1671 struct nfsd4_free_stateid *free_stateid)
1673 return nfsd4_decode_stateid4(argp, &free_stateid->fr_stateid);
1676 #ifdef CONFIG_NFSD_PNFS
1678 nfsd4_decode_getdeviceinfo(struct nfsd4_compoundargs *argp,
1679 struct nfsd4_getdeviceinfo *gdev)
1683 status = nfsd4_decode_deviceid4(argp, &gdev->gd_devid);
1686 if (xdr_stream_decode_u32(argp->xdr, &gdev->gd_layout_type) < 0)
1687 return nfserr_bad_xdr;
1688 if (xdr_stream_decode_u32(argp->xdr, &gdev->gd_maxcount) < 0)
1689 return nfserr_bad_xdr;
1690 if (xdr_stream_decode_uint32_array(argp->xdr,
1691 &gdev->gd_notify_types, 1) < 0)
1692 return nfserr_bad_xdr;
1698 nfsd4_decode_layoutcommit(struct nfsd4_compoundargs *argp,
1699 struct nfsd4_layoutcommit *lcp)
1703 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_seg.offset) < 0)
1704 return nfserr_bad_xdr;
1705 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_seg.length) < 0)
1706 return nfserr_bad_xdr;
1707 if (xdr_stream_decode_bool(argp->xdr, &lcp->lc_reclaim) < 0)
1708 return nfserr_bad_xdr;
1709 status = nfsd4_decode_stateid4(argp, &lcp->lc_sid);
1712 if (xdr_stream_decode_u32(argp->xdr, &lcp->lc_newoffset) < 0)
1713 return nfserr_bad_xdr;
1714 if (lcp->lc_newoffset) {
1715 if (xdr_stream_decode_u64(argp->xdr, &lcp->lc_last_wr) < 0)
1716 return nfserr_bad_xdr;
1718 lcp->lc_last_wr = 0;
1719 p = xdr_inline_decode(argp->xdr, XDR_UNIT);
1721 return nfserr_bad_xdr;
1722 if (xdr_item_is_present(p)) {
1723 status = nfsd4_decode_nfstime4(argp, &lcp->lc_mtime);
1727 lcp->lc_mtime.tv_nsec = UTIME_NOW;
1729 return nfsd4_decode_layoutupdate4(argp, lcp);
1733 nfsd4_decode_layoutget(struct nfsd4_compoundargs *argp,
1734 struct nfsd4_layoutget *lgp)
1738 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_signal) < 0)
1739 return nfserr_bad_xdr;
1740 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_layout_type) < 0)
1741 return nfserr_bad_xdr;
1742 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_seg.iomode) < 0)
1743 return nfserr_bad_xdr;
1744 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_seg.offset) < 0)
1745 return nfserr_bad_xdr;
1746 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_seg.length) < 0)
1747 return nfserr_bad_xdr;
1748 if (xdr_stream_decode_u64(argp->xdr, &lgp->lg_minlength) < 0)
1749 return nfserr_bad_xdr;
1750 status = nfsd4_decode_stateid4(argp, &lgp->lg_sid);
1753 if (xdr_stream_decode_u32(argp->xdr, &lgp->lg_maxcount) < 0)
1754 return nfserr_bad_xdr;
1760 nfsd4_decode_layoutreturn(struct nfsd4_compoundargs *argp,
1761 struct nfsd4_layoutreturn *lrp)
1763 if (xdr_stream_decode_bool(argp->xdr, &lrp->lr_reclaim) < 0)
1764 return nfserr_bad_xdr;
1765 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_layout_type) < 0)
1766 return nfserr_bad_xdr;
1767 if (xdr_stream_decode_u32(argp->xdr, &lrp->lr_seg.iomode) < 0)
1768 return nfserr_bad_xdr;
1769 return nfsd4_decode_layoutreturn4(argp, lrp);
1771 #endif /* CONFIG_NFSD_PNFS */
1773 static __be32 nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1774 struct nfsd4_secinfo_no_name *sin)
1776 if (xdr_stream_decode_u32(argp->xdr, &sin->sin_style) < 0)
1777 return nfserr_bad_xdr;
1782 nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1783 struct nfsd4_sequence *seq)
1787 status = nfsd4_decode_sessionid4(argp, &seq->sessionid);
1790 p = xdr_inline_decode(argp->xdr, XDR_UNIT * 4);
1792 return nfserr_bad_xdr;
1793 seq->seqid = be32_to_cpup(p++);
1794 seq->slotid = be32_to_cpup(p++);
1795 seq->maxslots = be32_to_cpup(p++);
1796 seq->cachethis = be32_to_cpup(p);
1802 nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1804 struct nfsd4_test_stateid_id *stateid;
1808 if (xdr_stream_decode_u32(argp->xdr, &test_stateid->ts_num_ids) < 0)
1809 return nfserr_bad_xdr;
1811 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
1812 for (i = 0; i < test_stateid->ts_num_ids; i++) {
1813 stateid = svcxdr_tmpalloc(argp, sizeof(*stateid));
1815 return nfserrno(-ENOMEM); /* XXX: not jukebox? */
1816 INIT_LIST_HEAD(&stateid->ts_id_list);
1817 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1818 status = nfsd4_decode_stateid4(argp, &stateid->ts_id_stateid);
1826 static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp,
1827 struct nfsd4_destroy_clientid *dc)
1829 return nfsd4_decode_clientid4(argp, &dc->clientid);
1832 static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp,
1833 struct nfsd4_reclaim_complete *rc)
1835 if (xdr_stream_decode_bool(argp->xdr, &rc->rca_one_fs) < 0)
1836 return nfserr_bad_xdr;
1841 nfsd4_decode_fallocate(struct nfsd4_compoundargs *argp,
1842 struct nfsd4_fallocate *fallocate)
1846 status = nfsd4_decode_stateid4(argp, &fallocate->falloc_stateid);
1849 if (xdr_stream_decode_u64(argp->xdr, &fallocate->falloc_offset) < 0)
1850 return nfserr_bad_xdr;
1851 if (xdr_stream_decode_u64(argp->xdr, &fallocate->falloc_length) < 0)
1852 return nfserr_bad_xdr;
1857 static __be32 nfsd4_decode_nl4_server(struct nfsd4_compoundargs *argp,
1858 struct nl4_server *ns)
1860 struct nfs42_netaddr *naddr;
1863 if (xdr_stream_decode_u32(argp->xdr, &ns->nl4_type) < 0)
1864 return nfserr_bad_xdr;
1866 /* currently support for 1 inter-server source server */
1867 switch (ns->nl4_type) {
1869 naddr = &ns->u.nl4_addr;
1871 if (xdr_stream_decode_u32(argp->xdr, &naddr->netid_len) < 0)
1872 return nfserr_bad_xdr;
1873 if (naddr->netid_len > RPCBIND_MAXNETIDLEN)
1874 return nfserr_bad_xdr;
1876 p = xdr_inline_decode(argp->xdr, naddr->netid_len);
1878 return nfserr_bad_xdr;
1879 memcpy(naddr->netid, p, naddr->netid_len);
1881 if (xdr_stream_decode_u32(argp->xdr, &naddr->addr_len) < 0)
1882 return nfserr_bad_xdr;
1883 if (naddr->addr_len > RPCBIND_MAXUADDRLEN)
1884 return nfserr_bad_xdr;
1886 p = xdr_inline_decode(argp->xdr, naddr->addr_len);
1888 return nfserr_bad_xdr;
1889 memcpy(naddr->addr, p, naddr->addr_len);
1892 return nfserr_bad_xdr;
1899 nfsd4_decode_copy(struct nfsd4_compoundargs *argp, struct nfsd4_copy *copy)
1901 struct nl4_server *ns_dummy;
1902 u32 consecutive, i, count;
1905 status = nfsd4_decode_stateid4(argp, ©->cp_src_stateid);
1908 status = nfsd4_decode_stateid4(argp, ©->cp_dst_stateid);
1911 if (xdr_stream_decode_u64(argp->xdr, ©->cp_src_pos) < 0)
1912 return nfserr_bad_xdr;
1913 if (xdr_stream_decode_u64(argp->xdr, ©->cp_dst_pos) < 0)
1914 return nfserr_bad_xdr;
1915 if (xdr_stream_decode_u64(argp->xdr, ©->cp_count) < 0)
1916 return nfserr_bad_xdr;
1917 /* ca_consecutive: we always do consecutive copies */
1918 if (xdr_stream_decode_u32(argp->xdr, &consecutive) < 0)
1919 return nfserr_bad_xdr;
1920 if (xdr_stream_decode_u32(argp->xdr, ©->cp_synchronous) < 0)
1921 return nfserr_bad_xdr;
1923 if (xdr_stream_decode_u32(argp->xdr, &count) < 0)
1924 return nfserr_bad_xdr;
1925 copy->cp_intra = false;
1926 if (count == 0) { /* intra-server copy */
1927 copy->cp_intra = true;
1931 /* decode all the supplied server addresses but use only the first */
1932 status = nfsd4_decode_nl4_server(argp, ©->cp_src);
1936 ns_dummy = kmalloc(sizeof(struct nl4_server), GFP_KERNEL);
1937 if (ns_dummy == NULL)
1938 return nfserrno(-ENOMEM); /* XXX: jukebox? */
1939 for (i = 0; i < count - 1; i++) {
1940 status = nfsd4_decode_nl4_server(argp, ns_dummy);
1952 nfsd4_decode_copy_notify(struct nfsd4_compoundargs *argp,
1953 struct nfsd4_copy_notify *cn)
1957 status = nfsd4_decode_stateid4(argp, &cn->cpn_src_stateid);
1960 return nfsd4_decode_nl4_server(argp, &cn->cpn_dst);
1964 nfsd4_decode_offload_status(struct nfsd4_compoundargs *argp,
1965 struct nfsd4_offload_status *os)
1967 return nfsd4_decode_stateid4(argp, &os->stateid);
1971 nfsd4_decode_seek(struct nfsd4_compoundargs *argp, struct nfsd4_seek *seek)
1975 status = nfsd4_decode_stateid4(argp, &seek->seek_stateid);
1978 if (xdr_stream_decode_u64(argp->xdr, &seek->seek_offset) < 0)
1979 return nfserr_bad_xdr;
1980 if (xdr_stream_decode_u32(argp->xdr, &seek->seek_whence) < 0)
1981 return nfserr_bad_xdr;
1987 nfsd4_decode_clone(struct nfsd4_compoundargs *argp, struct nfsd4_clone *clone)
1991 status = nfsd4_decode_stateid4(argp, &clone->cl_src_stateid);
1994 status = nfsd4_decode_stateid4(argp, &clone->cl_dst_stateid);
1997 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_src_pos) < 0)
1998 return nfserr_bad_xdr;
1999 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_dst_pos) < 0)
2000 return nfserr_bad_xdr;
2001 if (xdr_stream_decode_u64(argp->xdr, &clone->cl_count) < 0)
2002 return nfserr_bad_xdr;
2008 * XDR data that is more than PAGE_SIZE in size is normally part of a
2009 * read or write. However, the size of extended attributes is limited
2010 * by the maximum request size, and then further limited by the underlying
2011 * filesystem limits. This can exceed PAGE_SIZE (currently, XATTR_SIZE_MAX
2012 * is 64k). Since there is no kvec- or page-based interface to xattrs,
2013 * and we're not dealing with contiguous pages, we need to do some copying.
2017 * Decode data into buffer.
2020 nfsd4_vbuf_from_vector(struct nfsd4_compoundargs *argp, struct xdr_buf *xdr,
2021 char **bufp, u32 buflen)
2023 struct page **pages = xdr->pages;
2024 struct kvec *head = xdr->head;
2028 if (buflen <= head->iov_len) {
2030 * We're in luck, the head has enough space. Just return
2031 * the head, no need for copying.
2033 *bufp = head->iov_base;
2037 tmp = svcxdr_tmpalloc(argp, buflen);
2039 return nfserr_jukebox;
2042 memcpy(dp, head->iov_base, head->iov_len);
2043 buflen -= head->iov_len;
2044 dp += head->iov_len;
2046 while (buflen > 0) {
2047 len = min_t(u32, buflen, PAGE_SIZE);
2048 memcpy(dp, page_address(*pages), len);
2060 * Get a user extended attribute name from the XDR buffer.
2061 * It will not have the "user." prefix, so prepend it.
2062 * Lastly, check for nul characters in the name.
2065 nfsd4_decode_xattr_name(struct nfsd4_compoundargs *argp, char **namep)
2067 char *name, *sp, *dp;
2071 if (xdr_stream_decode_u32(argp->xdr, &namelen) < 0)
2072 return nfserr_bad_xdr;
2073 if (namelen > (XATTR_NAME_MAX - XATTR_USER_PREFIX_LEN))
2074 return nfserr_nametoolong;
2076 return nfserr_bad_xdr;
2077 p = xdr_inline_decode(argp->xdr, namelen);
2079 return nfserr_bad_xdr;
2080 name = svcxdr_tmpalloc(argp, namelen + XATTR_USER_PREFIX_LEN + 1);
2082 return nfserr_jukebox;
2083 memcpy(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
2086 * Copy the extended attribute name over while checking for 0
2090 dp = name + XATTR_USER_PREFIX_LEN;
2095 return nfserr_bad_xdr;
2106 * A GETXATTR op request comes without a length specifier. We just set the
2107 * maximum length for the reply based on XATTR_SIZE_MAX and the maximum
2108 * channel reply size. nfsd_getxattr will probe the length of the xattr,
2109 * check it against getxa_len, and allocate + return the value.
2112 nfsd4_decode_getxattr(struct nfsd4_compoundargs *argp,
2113 struct nfsd4_getxattr *getxattr)
2118 status = nfsd4_decode_xattr_name(argp, &getxattr->getxa_name);
2122 maxcount = svc_max_payload(argp->rqstp);
2123 maxcount = min_t(u32, XATTR_SIZE_MAX, maxcount);
2125 getxattr->getxa_len = maxcount;
2131 nfsd4_decode_setxattr(struct nfsd4_compoundargs *argp,
2132 struct nfsd4_setxattr *setxattr)
2134 u32 flags, maxcount, size;
2137 if (xdr_stream_decode_u32(argp->xdr, &flags) < 0)
2138 return nfserr_bad_xdr;
2140 if (flags > SETXATTR4_REPLACE)
2141 return nfserr_inval;
2142 setxattr->setxa_flags = flags;
2144 status = nfsd4_decode_xattr_name(argp, &setxattr->setxa_name);
2148 maxcount = svc_max_payload(argp->rqstp);
2149 maxcount = min_t(u32, XATTR_SIZE_MAX, maxcount);
2151 if (xdr_stream_decode_u32(argp->xdr, &size) < 0)
2152 return nfserr_bad_xdr;
2153 if (size > maxcount)
2154 return nfserr_xattr2big;
2156 setxattr->setxa_len = size;
2158 struct xdr_buf payload;
2160 if (!xdr_stream_subsegment(argp->xdr, &payload, size))
2161 return nfserr_bad_xdr;
2162 status = nfsd4_vbuf_from_vector(argp, &payload,
2163 &setxattr->setxa_buf, size);
2170 nfsd4_decode_listxattrs(struct nfsd4_compoundargs *argp,
2171 struct nfsd4_listxattrs *listxattrs)
2175 if (xdr_stream_decode_u64(argp->xdr, &listxattrs->lsxa_cookie) < 0)
2176 return nfserr_bad_xdr;
2179 * If the cookie is too large to have even one user.x attribute
2180 * plus trailing '\0' left in a maximum size buffer, it's invalid.
2182 if (listxattrs->lsxa_cookie >=
2183 (XATTR_LIST_MAX / (XATTR_USER_PREFIX_LEN + 2)))
2184 return nfserr_badcookie;
2186 if (xdr_stream_decode_u32(argp->xdr, &maxcount) < 0)
2187 return nfserr_bad_xdr;
2189 /* Always need at least 2 words (length and one character) */
2190 return nfserr_inval;
2192 maxcount = min(maxcount, svc_max_payload(argp->rqstp));
2193 listxattrs->lsxa_maxcount = maxcount;
2199 nfsd4_decode_removexattr(struct nfsd4_compoundargs *argp,
2200 struct nfsd4_removexattr *removexattr)
2202 return nfsd4_decode_xattr_name(argp, &removexattr->rmxa_name);
2206 nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
2212 nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
2214 return nfserr_notsupp;
2217 typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
2219 static const nfsd4_dec nfsd4_dec_ops[] = {
2220 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
2221 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
2222 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
2223 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
2224 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
2225 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
2226 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
2227 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
2228 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
2229 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
2230 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
2231 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
2232 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
2233 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
2234 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
2235 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
2236 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
2237 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
2238 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
2239 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
2240 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_putpubfh,
2241 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
2242 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
2243 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
2244 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
2245 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
2246 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
2247 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
2248 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
2249 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
2250 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
2251 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
2252 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
2253 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
2254 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
2255 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
2256 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
2258 /* new operations for NFSv4.1 */
2259 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
2260 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
2261 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
2262 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
2263 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
2264 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
2265 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
2266 #ifdef CONFIG_NFSD_PNFS
2267 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_getdeviceinfo,
2268 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
2269 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_layoutcommit,
2270 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_layoutget,
2271 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_layoutreturn,
2273 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
2274 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
2275 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
2276 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
2277 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
2279 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
2280 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
2281 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
2282 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
2283 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
2284 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
2285 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
2287 /* new operations for NFSv4.2 */
2288 [OP_ALLOCATE] = (nfsd4_dec)nfsd4_decode_fallocate,
2289 [OP_COPY] = (nfsd4_dec)nfsd4_decode_copy,
2290 [OP_COPY_NOTIFY] = (nfsd4_dec)nfsd4_decode_copy_notify,
2291 [OP_DEALLOCATE] = (nfsd4_dec)nfsd4_decode_fallocate,
2292 [OP_IO_ADVISE] = (nfsd4_dec)nfsd4_decode_notsupp,
2293 [OP_LAYOUTERROR] = (nfsd4_dec)nfsd4_decode_notsupp,
2294 [OP_LAYOUTSTATS] = (nfsd4_dec)nfsd4_decode_notsupp,
2295 [OP_OFFLOAD_CANCEL] = (nfsd4_dec)nfsd4_decode_offload_status,
2296 [OP_OFFLOAD_STATUS] = (nfsd4_dec)nfsd4_decode_offload_status,
2297 [OP_READ_PLUS] = (nfsd4_dec)nfsd4_decode_read,
2298 [OP_SEEK] = (nfsd4_dec)nfsd4_decode_seek,
2299 [OP_WRITE_SAME] = (nfsd4_dec)nfsd4_decode_notsupp,
2300 [OP_CLONE] = (nfsd4_dec)nfsd4_decode_clone,
2301 /* RFC 8276 extended atributes operations */
2302 [OP_GETXATTR] = (nfsd4_dec)nfsd4_decode_getxattr,
2303 [OP_SETXATTR] = (nfsd4_dec)nfsd4_decode_setxattr,
2304 [OP_LISTXATTRS] = (nfsd4_dec)nfsd4_decode_listxattrs,
2305 [OP_REMOVEXATTR] = (nfsd4_dec)nfsd4_decode_removexattr,
2309 nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op)
2311 if (op->opnum < FIRST_NFS4_OP)
2313 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP)
2315 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP)
2317 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP)
2323 nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
2325 struct nfsd4_op *op;
2326 bool cachethis = false;
2327 int auth_slack= argp->rqstp->rq_auth_slack;
2328 int max_reply = auth_slack + 8; /* opcnt, status */
2334 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0)
2336 max_reply += XDR_UNIT;
2338 if (unlikely(argp->taglen)) {
2339 if (argp->taglen > NFSD4_MAX_TAGLEN)
2341 p = xdr_inline_decode(argp->xdr, argp->taglen);
2344 argp->tag = svcxdr_savemem(argp, p, argp->taglen);
2347 max_reply += xdr_align_size(argp->taglen);
2350 if (xdr_stream_decode_u32(argp->xdr, &argp->minorversion) < 0)
2352 if (xdr_stream_decode_u32(argp->xdr, &argp->opcnt) < 0)
2356 * NFS4ERR_RESOURCE is a more helpful error than GARBAGE_ARGS
2357 * here, so we return success at the xdr level so that
2358 * nfsd4_proc can handle this is an NFS-level error.
2360 if (argp->opcnt > NFSD_MAX_OPS_PER_COMPOUND)
2363 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
2364 argp->ops = kzalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
2366 argp->ops = argp->iops;
2367 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
2372 if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
2375 for (i = 0; i < argp->opcnt; i++) {
2379 if (xdr_stream_decode_u32(argp->xdr, &op->opnum) < 0)
2381 if (nfsd4_opnum_in_range(argp, op)) {
2382 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u);
2383 if (op->status != nfs_ok)
2384 trace_nfsd_compound_decode_err(argp->rqstp,
2389 op->opnum = OP_ILLEGAL;
2390 op->status = nfserr_op_illegal;
2392 op->opdesc = OPDESC(op);
2394 * We'll try to cache the result in the DRC if any one
2395 * op in the compound wants to be cached:
2397 cachethis |= nfsd4_cache_this_op(op);
2399 if (op->opnum == OP_READ || op->opnum == OP_READ_PLUS) {
2401 readbytes += nfsd4_max_reply(argp->rqstp, op);
2403 max_reply += nfsd4_max_reply(argp->rqstp, op);
2405 * OP_LOCK and OP_LOCKT may return a conflicting lock.
2406 * (Special case because it will just skip encoding this
2407 * if it runs out of xdr buffer space, and it is the only
2408 * operation that behaves this way.)
2410 if (op->opnum == OP_LOCK || op->opnum == OP_LOCKT)
2411 max_reply += NFS4_OPAQUE_LIMIT;
2418 /* Sessions make the DRC unnecessary: */
2419 if (argp->minorversion)
2421 svc_reserve(argp->rqstp, max_reply + readbytes);
2422 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
2424 if (readcount > 1 || max_reply > PAGE_SIZE - auth_slack)
2425 clear_bit(RQ_SPLICE_OK, &argp->rqstp->rq_flags);
2430 static __be32 *encode_change(__be32 *p, struct kstat *stat, struct inode *inode,
2431 struct svc_export *exp)
2433 if (exp->ex_flags & NFSEXP_V4ROOT) {
2434 *p++ = cpu_to_be32(convert_to_wallclock(exp->cd->flush_time));
2437 p = xdr_encode_hyper(p, nfsd4_change_attribute(stat, inode));
2442 * ctime (in NFSv4, time_metadata) is not writeable, and the client
2443 * doesn't really care what resolution could theoretically be stored by
2446 * The client cares how close together changes can be while still
2447 * guaranteeing ctime changes. For most filesystems (which have
2448 * timestamps with nanosecond fields) that is limited by the resolution
2449 * of the time returned from current_time() (which I'm assuming to be
2452 static __be32 *encode_time_delta(__be32 *p, struct inode *inode)
2454 struct timespec64 ts;
2457 ns = max_t(u32, NSEC_PER_SEC/HZ, inode->i_sb->s_time_gran);
2458 ts = ns_to_timespec64(ns);
2460 p = xdr_encode_hyper(p, ts.tv_sec);
2461 *p++ = cpu_to_be32(ts.tv_nsec);
2466 static __be32 *encode_cinfo(__be32 *p, struct nfsd4_change_info *c)
2468 *p++ = cpu_to_be32(c->atomic);
2469 p = xdr_encode_hyper(p, c->before_change);
2470 p = xdr_encode_hyper(p, c->after_change);
2474 /* Encode as an array of strings the string given with components
2475 * separated @sep, escaped with esc_enter and esc_exit.
2477 static __be32 nfsd4_encode_components_esc(struct xdr_stream *xdr, char sep,
2478 char *components, char esc_enter,
2484 int strlen, count=0;
2485 char *str, *end, *next;
2487 dprintk("nfsd4_encode_components(%s)\n", components);
2489 pathlen_offset = xdr->buf->len;
2490 p = xdr_reserve_space(xdr, 4);
2492 return nfserr_resource;
2493 p++; /* We will fill this in with @count later */
2495 end = str = components;
2497 bool found_esc = false;
2499 /* try to parse as esc_start, ..., esc_end, sep */
2500 if (*str == esc_enter) {
2501 for (; *end && (*end != esc_exit); end++)
2502 /* find esc_exit or end of string */;
2504 if (*end && (!*next || *next == sep)) {
2511 for (; *end && (*end != sep); end++)
2512 /* find sep or end of string */;
2516 p = xdr_reserve_space(xdr, strlen + 4);
2518 return nfserr_resource;
2519 p = xdr_encode_opaque(p, str, strlen);
2529 pathlen = htonl(count);
2530 write_bytes_to_xdr_buf(xdr->buf, pathlen_offset, &pathlen, 4);
2534 /* Encode as an array of strings the string given with components
2537 static __be32 nfsd4_encode_components(struct xdr_stream *xdr, char sep,
2540 return nfsd4_encode_components_esc(xdr, sep, components, 0, 0);
2544 * encode a location element of a fs_locations structure
2546 static __be32 nfsd4_encode_fs_location4(struct xdr_stream *xdr,
2547 struct nfsd4_fs_location *location)
2551 status = nfsd4_encode_components_esc(xdr, ':', location->hosts,
2555 status = nfsd4_encode_components(xdr, '/', location->path);
2562 * Encode a path in RFC3530 'pathname4' format
2564 static __be32 nfsd4_encode_path(struct xdr_stream *xdr,
2565 const struct path *root,
2566 const struct path *path)
2568 struct path cur = *path;
2570 struct dentry **components = NULL;
2571 unsigned int ncomponents = 0;
2572 __be32 err = nfserr_jukebox;
2574 dprintk("nfsd4_encode_components(");
2577 /* First walk the path up to the nfsd root, and store the
2578 * dentries/path components in an array.
2581 if (path_equal(&cur, root))
2583 if (cur.dentry == cur.mnt->mnt_root) {
2584 if (follow_up(&cur))
2588 if ((ncomponents & 15) == 0) {
2589 struct dentry **new;
2590 new = krealloc(components,
2591 sizeof(*new) * (ncomponents + 16),
2597 components[ncomponents++] = cur.dentry;
2598 cur.dentry = dget_parent(cur.dentry);
2600 err = nfserr_resource;
2601 p = xdr_reserve_space(xdr, 4);
2604 *p++ = cpu_to_be32(ncomponents);
2606 while (ncomponents) {
2607 struct dentry *dentry = components[ncomponents - 1];
2610 spin_lock(&dentry->d_lock);
2611 len = dentry->d_name.len;
2612 p = xdr_reserve_space(xdr, len + 4);
2614 spin_unlock(&dentry->d_lock);
2617 p = xdr_encode_opaque(p, dentry->d_name.name, len);
2618 dprintk("/%pd", dentry);
2619 spin_unlock(&dentry->d_lock);
2628 dput(components[--ncomponents]);
2634 static __be32 nfsd4_encode_fsloc_fsroot(struct xdr_stream *xdr,
2635 struct svc_rqst *rqstp, const struct path *path)
2637 struct svc_export *exp_ps;
2640 exp_ps = rqst_find_fsidzero_export(rqstp);
2642 return nfserrno(PTR_ERR(exp_ps));
2643 res = nfsd4_encode_path(xdr, &exp_ps->ex_path, path);
2649 * encode a fs_locations structure
2651 static __be32 nfsd4_encode_fs_locations(struct xdr_stream *xdr,
2652 struct svc_rqst *rqstp, struct svc_export *exp)
2657 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
2659 status = nfsd4_encode_fsloc_fsroot(xdr, rqstp, &exp->ex_path);
2662 p = xdr_reserve_space(xdr, 4);
2664 return nfserr_resource;
2665 *p++ = cpu_to_be32(fslocs->locations_count);
2666 for (i=0; i<fslocs->locations_count; i++) {
2667 status = nfsd4_encode_fs_location4(xdr, &fslocs->locations[i]);
2674 static u32 nfs4_file_type(umode_t mode)
2676 switch (mode & S_IFMT) {
2677 case S_IFIFO: return NF4FIFO;
2678 case S_IFCHR: return NF4CHR;
2679 case S_IFDIR: return NF4DIR;
2680 case S_IFBLK: return NF4BLK;
2681 case S_IFLNK: return NF4LNK;
2682 case S_IFREG: return NF4REG;
2683 case S_IFSOCK: return NF4SOCK;
2684 default: return NF4BAD;
2688 static inline __be32
2689 nfsd4_encode_aclname(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2690 struct nfs4_ace *ace)
2692 if (ace->whotype != NFS4_ACL_WHO_NAMED)
2693 return nfs4_acl_write_who(xdr, ace->whotype);
2694 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
2695 return nfsd4_encode_group(xdr, rqstp, ace->who_gid);
2697 return nfsd4_encode_user(xdr, rqstp, ace->who_uid);
2700 static inline __be32
2701 nfsd4_encode_layout_types(struct xdr_stream *xdr, u32 layout_types)
2704 unsigned long i = hweight_long(layout_types);
2706 p = xdr_reserve_space(xdr, 4 + 4 * i);
2708 return nfserr_resource;
2710 *p++ = cpu_to_be32(i);
2712 for (i = LAYOUT_NFSV4_1_FILES; i < LAYOUT_TYPE_MAX; ++i)
2713 if (layout_types & (1 << i))
2714 *p++ = cpu_to_be32(i);
2719 #define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
2720 FATTR4_WORD0_RDATTR_ERROR)
2721 #define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
2722 #define WORD2_ABSENT_FS_ATTRS 0
2724 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2725 static inline __be32
2726 nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2727 void *context, int len)
2731 p = xdr_reserve_space(xdr, len + 4 + 4 + 4);
2733 return nfserr_resource;
2736 * For now we use a 0 here to indicate the null translation; in
2737 * the future we may place a call to translation code here.
2739 *p++ = cpu_to_be32(0); /* lfs */
2740 *p++ = cpu_to_be32(0); /* pi */
2741 p = xdr_encode_opaque(p, context, len);
2745 static inline __be32
2746 nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
2747 void *context, int len)
2751 static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *bmval2, u32 *rdattr_err)
2753 /* As per referral draft: */
2754 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
2755 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
2756 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
2757 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
2758 *rdattr_err = NFSERR_MOVED;
2760 return nfserr_moved;
2762 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
2763 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
2764 *bmval2 &= WORD2_ABSENT_FS_ATTRS;
2769 static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
2771 struct path path = exp->ex_path;
2775 while (follow_up(&path)) {
2776 if (path.dentry != path.mnt->mnt_root)
2779 err = vfs_getattr(&path, stat, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
2785 nfsd4_encode_bitmap(struct xdr_stream *xdr, u32 bmval0, u32 bmval1, u32 bmval2)
2790 p = xdr_reserve_space(xdr, 16);
2793 *p++ = cpu_to_be32(3);
2794 *p++ = cpu_to_be32(bmval0);
2795 *p++ = cpu_to_be32(bmval1);
2796 *p++ = cpu_to_be32(bmval2);
2797 } else if (bmval1) {
2798 p = xdr_reserve_space(xdr, 12);
2801 *p++ = cpu_to_be32(2);
2802 *p++ = cpu_to_be32(bmval0);
2803 *p++ = cpu_to_be32(bmval1);
2805 p = xdr_reserve_space(xdr, 8);
2808 *p++ = cpu_to_be32(1);
2809 *p++ = cpu_to_be32(bmval0);
2814 return nfserr_resource;
2818 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2822 nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
2823 struct svc_export *exp,
2824 struct dentry *dentry, u32 *bmval,
2825 struct svc_rqst *rqstp, int ignore_crossmnt)
2827 u32 bmval0 = bmval[0];
2828 u32 bmval1 = bmval[1];
2829 u32 bmval2 = bmval[2];
2831 struct svc_fh *tempfh = NULL;
2832 struct kstatfs statfs;
2834 int starting_len = xdr->buf->len;
2842 struct nfs4_acl *acl = NULL;
2843 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2844 void *context = NULL;
2847 bool contextsupport = false;
2848 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2849 u32 minorversion = resp->cstate.minorversion;
2850 struct path path = {
2851 .mnt = exp->ex_path.mnt,
2854 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
2856 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
2857 BUG_ON(!nfsd_attrs_supported(minorversion, bmval));
2859 if (exp->ex_fslocs.migrated) {
2860 status = fattr_handle_absent_fs(&bmval0, &bmval1, &bmval2, &rdattr_err);
2865 err = vfs_getattr(&path, &stat, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
2868 if ((bmval0 & (FATTR4_WORD0_FILES_AVAIL | FATTR4_WORD0_FILES_FREE |
2869 FATTR4_WORD0_FILES_TOTAL | FATTR4_WORD0_MAXNAME)) ||
2870 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2871 FATTR4_WORD1_SPACE_TOTAL))) {
2872 err = vfs_statfs(&path, &statfs);
2876 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
2877 tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
2878 status = nfserr_jukebox;
2881 fh_init(tempfh, NFS4_FHSIZE);
2882 status = fh_compose(tempfh, exp, dentry, NULL);
2887 if (bmval0 & FATTR4_WORD0_ACL) {
2888 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2889 if (err == -EOPNOTSUPP)
2890 bmval0 &= ~FATTR4_WORD0_ACL;
2891 else if (err == -EINVAL) {
2892 status = nfserr_attrnotsupp;
2894 } else if (err != 0)
2898 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2899 if ((bmval2 & FATTR4_WORD2_SECURITY_LABEL) ||
2900 bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
2901 if (exp->ex_flags & NFSEXP_SECURITY_LABEL)
2902 err = security_inode_getsecctx(d_inode(dentry),
2903 &context, &contextlen);
2906 contextsupport = (err == 0);
2907 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2908 if (err == -EOPNOTSUPP)
2909 bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2914 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2916 status = nfsd4_encode_bitmap(xdr, bmval0, bmval1, bmval2);
2920 attrlen_offset = xdr->buf->len;
2921 p = xdr_reserve_space(xdr, 4);
2924 p++; /* to be backfilled later */
2926 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
2929 memcpy(supp, nfsd_suppattrs[minorversion], sizeof(supp));
2931 if (!IS_POSIXACL(dentry->d_inode))
2932 supp[0] &= ~FATTR4_WORD0_ACL;
2933 if (!contextsupport)
2934 supp[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
2936 p = xdr_reserve_space(xdr, 12);
2939 *p++ = cpu_to_be32(2);
2940 *p++ = cpu_to_be32(supp[0]);
2941 *p++ = cpu_to_be32(supp[1]);
2943 p = xdr_reserve_space(xdr, 16);
2946 *p++ = cpu_to_be32(3);
2947 *p++ = cpu_to_be32(supp[0]);
2948 *p++ = cpu_to_be32(supp[1]);
2949 *p++ = cpu_to_be32(supp[2]);
2952 if (bmval0 & FATTR4_WORD0_TYPE) {
2953 p = xdr_reserve_space(xdr, 4);
2956 dummy = nfs4_file_type(stat.mode);
2957 if (dummy == NF4BAD) {
2958 status = nfserr_serverfault;
2961 *p++ = cpu_to_be32(dummy);
2963 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2964 p = xdr_reserve_space(xdr, 4);
2967 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
2968 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT);
2970 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT|
2971 NFS4_FH_VOL_RENAME);
2973 if (bmval0 & FATTR4_WORD0_CHANGE) {
2974 p = xdr_reserve_space(xdr, 8);
2977 p = encode_change(p, &stat, d_inode(dentry), exp);
2979 if (bmval0 & FATTR4_WORD0_SIZE) {
2980 p = xdr_reserve_space(xdr, 8);
2983 p = xdr_encode_hyper(p, stat.size);
2985 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2986 p = xdr_reserve_space(xdr, 4);
2989 *p++ = cpu_to_be32(1);
2991 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2992 p = xdr_reserve_space(xdr, 4);
2995 *p++ = cpu_to_be32(1);
2997 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2998 p = xdr_reserve_space(xdr, 4);
3001 *p++ = cpu_to_be32(0);
3003 if (bmval0 & FATTR4_WORD0_FSID) {
3004 p = xdr_reserve_space(xdr, 16);
3007 if (exp->ex_fslocs.migrated) {
3008 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MAJOR);
3009 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MINOR);
3010 } else switch(fsid_source(fhp)) {
3011 case FSIDSOURCE_FSID:
3012 p = xdr_encode_hyper(p, (u64)exp->ex_fsid);
3013 p = xdr_encode_hyper(p, (u64)0);
3015 case FSIDSOURCE_DEV:
3016 *p++ = cpu_to_be32(0);
3017 *p++ = cpu_to_be32(MAJOR(stat.dev));
3018 *p++ = cpu_to_be32(0);
3019 *p++ = cpu_to_be32(MINOR(stat.dev));
3021 case FSIDSOURCE_UUID:
3022 p = xdr_encode_opaque_fixed(p, exp->ex_uuid,
3027 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
3028 p = xdr_reserve_space(xdr, 4);
3031 *p++ = cpu_to_be32(0);
3033 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
3034 p = xdr_reserve_space(xdr, 4);
3037 *p++ = cpu_to_be32(nn->nfsd4_lease);
3039 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
3040 p = xdr_reserve_space(xdr, 4);
3043 *p++ = cpu_to_be32(rdattr_err);
3045 if (bmval0 & FATTR4_WORD0_ACL) {
3046 struct nfs4_ace *ace;
3049 p = xdr_reserve_space(xdr, 4);
3053 *p++ = cpu_to_be32(0);
3056 p = xdr_reserve_space(xdr, 4);
3059 *p++ = cpu_to_be32(acl->naces);
3061 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
3062 p = xdr_reserve_space(xdr, 4*3);
3065 *p++ = cpu_to_be32(ace->type);
3066 *p++ = cpu_to_be32(ace->flag);
3067 *p++ = cpu_to_be32(ace->access_mask &
3069 status = nfsd4_encode_aclname(xdr, rqstp, ace);
3075 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
3076 p = xdr_reserve_space(xdr, 4);
3079 *p++ = cpu_to_be32(IS_POSIXACL(dentry->d_inode) ?
3080 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
3082 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
3083 p = xdr_reserve_space(xdr, 4);
3086 *p++ = cpu_to_be32(1);
3088 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
3089 p = xdr_reserve_space(xdr, 4);
3092 *p++ = cpu_to_be32(0);
3094 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
3095 p = xdr_reserve_space(xdr, 4);
3098 *p++ = cpu_to_be32(1);
3100 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
3101 p = xdr_reserve_space(xdr, 4);
3104 *p++ = cpu_to_be32(1);
3106 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
3107 p = xdr_reserve_space(xdr, fhp->fh_handle.fh_size + 4);
3110 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_raw,
3111 fhp->fh_handle.fh_size);
3113 if (bmval0 & FATTR4_WORD0_FILEID) {
3114 p = xdr_reserve_space(xdr, 8);
3117 p = xdr_encode_hyper(p, stat.ino);
3119 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
3120 p = xdr_reserve_space(xdr, 8);
3123 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
3125 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
3126 p = xdr_reserve_space(xdr, 8);
3129 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
3131 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
3132 p = xdr_reserve_space(xdr, 8);
3135 p = xdr_encode_hyper(p, (u64) statfs.f_files);
3137 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
3138 status = nfsd4_encode_fs_locations(xdr, rqstp, exp);
3142 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
3143 p = xdr_reserve_space(xdr, 4);
3146 *p++ = cpu_to_be32(1);
3148 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
3149 p = xdr_reserve_space(xdr, 8);
3152 p = xdr_encode_hyper(p, exp->ex_path.mnt->mnt_sb->s_maxbytes);
3154 if (bmval0 & FATTR4_WORD0_MAXLINK) {
3155 p = xdr_reserve_space(xdr, 4);
3158 *p++ = cpu_to_be32(255);
3160 if (bmval0 & FATTR4_WORD0_MAXNAME) {
3161 p = xdr_reserve_space(xdr, 4);
3164 *p++ = cpu_to_be32(statfs.f_namelen);
3166 if (bmval0 & FATTR4_WORD0_MAXREAD) {
3167 p = xdr_reserve_space(xdr, 8);
3170 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
3172 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
3173 p = xdr_reserve_space(xdr, 8);
3176 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
3178 if (bmval1 & FATTR4_WORD1_MODE) {
3179 p = xdr_reserve_space(xdr, 4);
3182 *p++ = cpu_to_be32(stat.mode & S_IALLUGO);
3184 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
3185 p = xdr_reserve_space(xdr, 4);
3188 *p++ = cpu_to_be32(1);
3190 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
3191 p = xdr_reserve_space(xdr, 4);
3194 *p++ = cpu_to_be32(stat.nlink);
3196 if (bmval1 & FATTR4_WORD1_OWNER) {
3197 status = nfsd4_encode_user(xdr, rqstp, stat.uid);
3201 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
3202 status = nfsd4_encode_group(xdr, rqstp, stat.gid);
3206 if (bmval1 & FATTR4_WORD1_RAWDEV) {
3207 p = xdr_reserve_space(xdr, 8);
3210 *p++ = cpu_to_be32((u32) MAJOR(stat.rdev));
3211 *p++ = cpu_to_be32((u32) MINOR(stat.rdev));
3213 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
3214 p = xdr_reserve_space(xdr, 8);
3217 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
3218 p = xdr_encode_hyper(p, dummy64);
3220 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
3221 p = xdr_reserve_space(xdr, 8);
3224 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
3225 p = xdr_encode_hyper(p, dummy64);
3227 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
3228 p = xdr_reserve_space(xdr, 8);
3231 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
3232 p = xdr_encode_hyper(p, dummy64);
3234 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
3235 p = xdr_reserve_space(xdr, 8);
3238 dummy64 = (u64)stat.blocks << 9;
3239 p = xdr_encode_hyper(p, dummy64);
3241 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
3242 p = xdr_reserve_space(xdr, 12);
3245 p = xdr_encode_hyper(p, (s64)stat.atime.tv_sec);
3246 *p++ = cpu_to_be32(stat.atime.tv_nsec);
3248 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
3249 p = xdr_reserve_space(xdr, 12);
3252 p = encode_time_delta(p, d_inode(dentry));
3254 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
3255 p = xdr_reserve_space(xdr, 12);
3258 p = xdr_encode_hyper(p, (s64)stat.ctime.tv_sec);
3259 *p++ = cpu_to_be32(stat.ctime.tv_nsec);
3261 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
3262 p = xdr_reserve_space(xdr, 12);
3265 p = xdr_encode_hyper(p, (s64)stat.mtime.tv_sec);
3266 *p++ = cpu_to_be32(stat.mtime.tv_nsec);
3268 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
3269 struct kstat parent_stat;
3272 p = xdr_reserve_space(xdr, 8);
3276 * Get parent's attributes if not ignoring crossmount
3277 * and this is the root of a cross-mounted filesystem.
3279 if (ignore_crossmnt == 0 &&
3280 dentry == exp->ex_path.mnt->mnt_root) {
3281 err = get_parent_attributes(exp, &parent_stat);
3284 ino = parent_stat.ino;
3286 p = xdr_encode_hyper(p, ino);
3288 #ifdef CONFIG_NFSD_PNFS
3289 if (bmval1 & FATTR4_WORD1_FS_LAYOUT_TYPES) {
3290 status = nfsd4_encode_layout_types(xdr, exp->ex_layout_types);
3295 if (bmval2 & FATTR4_WORD2_LAYOUT_TYPES) {
3296 status = nfsd4_encode_layout_types(xdr, exp->ex_layout_types);
3301 if (bmval2 & FATTR4_WORD2_LAYOUT_BLKSIZE) {
3302 p = xdr_reserve_space(xdr, 4);
3305 *p++ = cpu_to_be32(stat.blksize);
3307 #endif /* CONFIG_NFSD_PNFS */
3308 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
3311 memcpy(supp, nfsd_suppattrs[minorversion], sizeof(supp));
3312 supp[0] &= NFSD_SUPPATTR_EXCLCREAT_WORD0;
3313 supp[1] &= NFSD_SUPPATTR_EXCLCREAT_WORD1;
3314 supp[2] &= NFSD_SUPPATTR_EXCLCREAT_WORD2;
3316 status = nfsd4_encode_bitmap(xdr, supp[0], supp[1], supp[2]);
3321 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
3322 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
3323 status = nfsd4_encode_security_label(xdr, rqstp, context,
3330 if (bmval2 & FATTR4_WORD2_XATTR_SUPPORT) {
3331 p = xdr_reserve_space(xdr, 4);
3334 err = xattr_supported_namespace(d_inode(dentry),
3336 *p++ = cpu_to_be32(err == 0);
3339 attrlen = htonl(xdr->buf->len - attrlen_offset - 4);
3340 write_bytes_to_xdr_buf(xdr->buf, attrlen_offset, &attrlen, 4);
3344 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
3346 security_release_secctx(context, contextlen);
3347 #endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
3354 xdr_truncate_encode(xdr, starting_len);
3357 status = nfserrno(err);
3360 status = nfserr_resource;
3364 static void svcxdr_init_encode_from_buffer(struct xdr_stream *xdr,
3365 struct xdr_buf *buf, __be32 *p, int bytes)
3367 xdr->scratch.iov_len = 0;
3368 memset(buf, 0, sizeof(struct xdr_buf));
3369 buf->head[0].iov_base = p;
3370 buf->head[0].iov_len = 0;
3373 xdr->iov = buf->head;
3375 xdr->end = (void *)p + bytes;
3376 buf->buflen = bytes;
3379 __be32 nfsd4_encode_fattr_to_buf(__be32 **p, int words,
3380 struct svc_fh *fhp, struct svc_export *exp,
3381 struct dentry *dentry, u32 *bmval,
3382 struct svc_rqst *rqstp, int ignore_crossmnt)
3384 struct xdr_buf dummy;
3385 struct xdr_stream xdr;
3388 svcxdr_init_encode_from_buffer(&xdr, &dummy, *p, words << 2);
3389 ret = nfsd4_encode_fattr(&xdr, fhp, exp, dentry, bmval, rqstp,
3395 static inline int attributes_need_mount(u32 *bmval)
3397 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
3399 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
3405 nfsd4_encode_dirent_fattr(struct xdr_stream *xdr, struct nfsd4_readdir *cd,
3406 const char *name, int namlen)
3408 struct svc_export *exp = cd->rd_fhp->fh_export;
3409 struct dentry *dentry;
3411 int ignore_crossmnt = 0;
3413 dentry = lookup_positive_unlocked(name, cd->rd_fhp->fh_dentry, namlen);
3415 return nfserrno(PTR_ERR(dentry));
3419 * In the case of a mountpoint, the client may be asking for
3420 * attributes that are only properties of the underlying filesystem
3421 * as opposed to the cross-mounted file system. In such a case,
3422 * we will not follow the cross mount and will fill the attribtutes
3423 * directly from the mountpoint dentry.
3425 if (nfsd_mountpoint(dentry, exp)) {
3428 if (!(exp->ex_flags & NFSEXP_V4ROOT)
3429 && !attributes_need_mount(cd->rd_bmval)) {
3430 ignore_crossmnt = 1;
3434 * Why the heck aren't we just using nfsd_lookup??
3435 * Different "."/".." handling? Something else?
3436 * At least, add a comment here to explain....
3438 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
3440 nfserr = nfserrno(err);
3443 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
3449 nfserr = nfsd4_encode_fattr(xdr, NULL, exp, dentry, cd->rd_bmval,
3450 cd->rd_rqstp, ignore_crossmnt);
3458 nfsd4_encode_rdattr_error(struct xdr_stream *xdr, __be32 nfserr)
3462 p = xdr_reserve_space(xdr, 20);
3466 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
3467 *p++ = htonl(0); /* bmval1 */
3469 *p++ = htonl(4); /* attribute length */
3470 *p++ = nfserr; /* no htonl */
3475 nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
3476 loff_t offset, u64 ino, unsigned int d_type)
3478 struct readdir_cd *ccd = ccdv;
3479 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
3480 struct xdr_stream *xdr = cd->xdr;
3481 int start_offset = xdr->buf->len;
3483 u32 name_and_cookie;
3485 __be32 nfserr = nfserr_toosmall;
3489 /* In nfsv4, "." and ".." never make it onto the wire.. */
3490 if (name && isdotent(name, namlen)) {
3491 cd->common.err = nfs_ok;
3495 if (cd->cookie_offset) {
3496 wire_offset = cpu_to_be64(offset);
3497 write_bytes_to_xdr_buf(xdr->buf, cd->cookie_offset,
3501 p = xdr_reserve_space(xdr, 4);
3504 *p++ = xdr_one; /* mark entry present */
3505 cookie_offset = xdr->buf->len;
3506 p = xdr_reserve_space(xdr, 3*4 + namlen);
3509 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
3510 p = xdr_encode_array(p, name, namlen); /* name length & name */
3512 nfserr = nfsd4_encode_dirent_fattr(xdr, cd, name, namlen);
3516 case nfserr_resource:
3517 nfserr = nfserr_toosmall;
3520 xdr_truncate_encode(xdr, start_offset);
3524 * If the client requested the RDATTR_ERROR attribute,
3525 * we stuff the error code into this attribute
3526 * and continue. If this attribute was not requested,
3527 * then in accordance with the spec, we fail the
3528 * entire READDIR operation(!)
3530 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
3532 p = nfsd4_encode_rdattr_error(xdr, nfserr);
3534 nfserr = nfserr_toosmall;
3538 nfserr = nfserr_toosmall;
3539 entry_bytes = xdr->buf->len - start_offset;
3540 if (entry_bytes > cd->rd_maxcount)
3542 cd->rd_maxcount -= entry_bytes;
3544 * RFC 3530 14.2.24 describes rd_dircount as only a "hint", and
3545 * notes that it could be zero. If it is zero, then the server
3546 * should enforce only the rd_maxcount value.
3548 if (cd->rd_dircount) {
3549 name_and_cookie = 4 + 4 * XDR_QUADLEN(namlen) + 8;
3550 if (name_and_cookie > cd->rd_dircount && cd->cookie_offset)
3552 cd->rd_dircount -= min(cd->rd_dircount, name_and_cookie);
3553 if (!cd->rd_dircount)
3554 cd->rd_maxcount = 0;
3557 cd->cookie_offset = cookie_offset;
3559 cd->common.err = nfs_ok;
3562 xdr_truncate_encode(xdr, start_offset);
3563 cd->common.err = nfserr;
3568 nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid)
3572 p = xdr_reserve_space(xdr, sizeof(stateid_t));
3574 return nfserr_resource;
3575 *p++ = cpu_to_be32(sid->si_generation);
3576 p = xdr_encode_opaque_fixed(p, &sid->si_opaque,
3577 sizeof(stateid_opaque_t));
3582 nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
3584 struct xdr_stream *xdr = resp->xdr;
3587 p = xdr_reserve_space(xdr, 8);
3589 return nfserr_resource;
3590 *p++ = cpu_to_be32(access->ac_supported);
3591 *p++ = cpu_to_be32(access->ac_resp_access);
3595 static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
3597 struct xdr_stream *xdr = resp->xdr;
3600 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 8);
3602 return nfserr_resource;
3603 p = xdr_encode_opaque_fixed(p, bcts->sessionid.data,
3604 NFS4_MAX_SESSIONID_LEN);
3605 *p++ = cpu_to_be32(bcts->dir);
3606 /* Upshifting from TCP to RDMA is not supported */
3607 *p++ = cpu_to_be32(0);
3612 nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
3614 struct xdr_stream *xdr = resp->xdr;
3616 return nfsd4_encode_stateid(xdr, &close->cl_stateid);
3621 nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
3623 struct xdr_stream *xdr = resp->xdr;
3626 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
3628 return nfserr_resource;
3629 p = xdr_encode_opaque_fixed(p, commit->co_verf.data,
3630 NFS4_VERIFIER_SIZE);
3635 nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
3637 struct xdr_stream *xdr = resp->xdr;
3640 p = xdr_reserve_space(xdr, 20);
3642 return nfserr_resource;
3643 encode_cinfo(p, &create->cr_cinfo);
3644 return nfsd4_encode_bitmap(xdr, create->cr_bmval[0],
3645 create->cr_bmval[1], create->cr_bmval[2]);
3649 nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
3651 struct svc_fh *fhp = getattr->ga_fhp;
3652 struct xdr_stream *xdr = resp->xdr;
3654 return nfsd4_encode_fattr(xdr, fhp, fhp->fh_export, fhp->fh_dentry,
3655 getattr->ga_bmval, resp->rqstp, 0);
3659 nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
3661 struct xdr_stream *xdr = resp->xdr;
3662 struct svc_fh *fhp = *fhpp;
3666 len = fhp->fh_handle.fh_size;
3667 p = xdr_reserve_space(xdr, len + 4);
3669 return nfserr_resource;
3670 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_raw, len);
3675 * Including all fields other than the name, a LOCK4denied structure requires
3676 * 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
3679 nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld)
3681 struct xdr_netobj *conf = &ld->ld_owner;
3685 p = xdr_reserve_space(xdr, 32 + XDR_LEN(conf->len));
3688 * Don't fail to return the result just because we can't
3689 * return the conflicting open:
3697 return nfserr_resource;
3699 p = xdr_encode_hyper(p, ld->ld_start);
3700 p = xdr_encode_hyper(p, ld->ld_length);
3701 *p++ = cpu_to_be32(ld->ld_type);
3703 p = xdr_encode_opaque_fixed(p, &ld->ld_clientid, 8);
3704 p = xdr_encode_opaque(p, conf->data, conf->len);
3706 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
3707 p = xdr_encode_hyper(p, (u64)0); /* clientid */
3708 *p++ = cpu_to_be32(0); /* length of owner name */
3710 return nfserr_denied;
3714 nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
3716 struct xdr_stream *xdr = resp->xdr;
3719 nfserr = nfsd4_encode_stateid(xdr, &lock->lk_resp_stateid);
3720 else if (nfserr == nfserr_denied)
3721 nfserr = nfsd4_encode_lock_denied(xdr, &lock->lk_denied);
3727 nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
3729 struct xdr_stream *xdr = resp->xdr;
3731 if (nfserr == nfserr_denied)
3732 nfsd4_encode_lock_denied(xdr, &lockt->lt_denied);
3737 nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
3739 struct xdr_stream *xdr = resp->xdr;
3741 return nfsd4_encode_stateid(xdr, &locku->lu_stateid);
3746 nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
3748 struct xdr_stream *xdr = resp->xdr;
3751 p = xdr_reserve_space(xdr, 20);
3753 return nfserr_resource;
3754 p = encode_cinfo(p, &link->li_cinfo);
3760 nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
3762 struct xdr_stream *xdr = resp->xdr;
3765 nfserr = nfsd4_encode_stateid(xdr, &open->op_stateid);
3768 p = xdr_reserve_space(xdr, 24);
3770 return nfserr_resource;
3771 p = encode_cinfo(p, &open->op_cinfo);
3772 *p++ = cpu_to_be32(open->op_rflags);
3774 nfserr = nfsd4_encode_bitmap(xdr, open->op_bmval[0], open->op_bmval[1],
3779 p = xdr_reserve_space(xdr, 4);
3781 return nfserr_resource;
3783 *p++ = cpu_to_be32(open->op_delegate_type);
3784 switch (open->op_delegate_type) {
3785 case NFS4_OPEN_DELEGATE_NONE:
3787 case NFS4_OPEN_DELEGATE_READ:
3788 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
3791 p = xdr_reserve_space(xdr, 20);
3793 return nfserr_resource;
3794 *p++ = cpu_to_be32(open->op_recall);
3797 * TODO: ACE's in delegations
3799 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
3800 *p++ = cpu_to_be32(0);
3801 *p++ = cpu_to_be32(0);
3802 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
3804 case NFS4_OPEN_DELEGATE_WRITE:
3805 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
3808 p = xdr_reserve_space(xdr, 32);
3810 return nfserr_resource;
3811 *p++ = cpu_to_be32(0);
3814 * TODO: space_limit's in delegations
3816 *p++ = cpu_to_be32(NFS4_LIMIT_SIZE);
3817 *p++ = cpu_to_be32(~(u32)0);
3818 *p++ = cpu_to_be32(~(u32)0);
3821 * TODO: ACE's in delegations
3823 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
3824 *p++ = cpu_to_be32(0);
3825 *p++ = cpu_to_be32(0);
3826 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
3828 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
3829 switch (open->op_why_no_deleg) {
3830 case WND4_CONTENTION:
3832 p = xdr_reserve_space(xdr, 8);
3834 return nfserr_resource;
3835 *p++ = cpu_to_be32(open->op_why_no_deleg);
3836 /* deleg signaling not supported yet: */
3837 *p++ = cpu_to_be32(0);
3840 p = xdr_reserve_space(xdr, 4);
3842 return nfserr_resource;
3843 *p++ = cpu_to_be32(open->op_why_no_deleg);
3849 /* XXX save filehandle here */
3854 nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
3856 struct xdr_stream *xdr = resp->xdr;
3858 return nfsd4_encode_stateid(xdr, &oc->oc_resp_stateid);
3862 nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
3864 struct xdr_stream *xdr = resp->xdr;
3866 return nfsd4_encode_stateid(xdr, &od->od_stateid);
3869 static __be32 nfsd4_encode_splice_read(
3870 struct nfsd4_compoundres *resp,
3871 struct nfsd4_read *read,
3872 struct file *file, unsigned long maxcount)
3874 struct xdr_stream *xdr = resp->xdr;
3875 struct xdr_buf *buf = xdr->buf;
3876 int status, space_left;
3879 __be32 *p = xdr->p - 2;
3881 /* Make sure there will be room for padding if needed */
3882 if (xdr->end - xdr->p < 1)
3883 return nfserr_resource;
3885 nfserr = nfsd_splice_read(read->rd_rqstp, read->rd_fhp,
3886 file, read->rd_offset, &maxcount, &eof);
3887 read->rd_length = maxcount;
3890 status = svc_encode_result_payload(read->rd_rqstp,
3891 buf->head[0].iov_len, maxcount);
3893 nfserr = nfserrno(status);
3897 *(p++) = htonl(eof);
3898 *(p++) = htonl(maxcount);
3900 buf->page_len = maxcount;
3901 buf->len += maxcount;
3902 xdr->page_ptr += (buf->page_base + maxcount + PAGE_SIZE - 1)
3905 /* Use rest of head for padding and remaining ops: */
3906 buf->tail[0].iov_base = xdr->p;
3907 buf->tail[0].iov_len = 0;
3908 xdr->iov = buf->tail;
3910 int pad = 4 - (maxcount&3);
3914 buf->tail[0].iov_base += maxcount&3;
3915 buf->tail[0].iov_len = pad;
3919 space_left = min_t(int, (void *)xdr->end - (void *)xdr->p,
3920 buf->buflen - buf->len);
3921 buf->buflen = buf->len + space_left;
3922 xdr->end = (__be32 *)((void *)xdr->end + space_left);
3928 * nfsd_splice_actor may have already messed with the
3929 * page length; reset it so as not to confuse
3930 * xdr_truncate_encode in our caller.
3936 static __be32 nfsd4_encode_readv(struct nfsd4_compoundres *resp,
3937 struct nfsd4_read *read,
3938 struct file *file, unsigned long maxcount)
3940 struct xdr_stream *xdr = resp->xdr;
3942 int starting_len = xdr->buf->len - 8;
3947 read->rd_vlen = xdr_reserve_space_vec(xdr, resp->rqstp->rq_vec, maxcount);
3948 if (read->rd_vlen < 0)
3949 return nfserr_resource;
3951 nfserr = nfsd_readv(resp->rqstp, read->rd_fhp, file, read->rd_offset,
3952 resp->rqstp->rq_vec, read->rd_vlen, &maxcount,
3954 read->rd_length = maxcount;
3957 if (svc_encode_result_payload(resp->rqstp, starting_len + 8, maxcount))
3959 xdr_truncate_encode(xdr, starting_len + 8 + xdr_align_size(maxcount));
3962 write_bytes_to_xdr_buf(xdr->buf, starting_len , &tmp, 4);
3963 tmp = htonl(maxcount);
3964 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4);
3967 pad = (maxcount&3) ? 4 - (maxcount&3) : 0;
3968 write_bytes_to_xdr_buf(xdr->buf, starting_len + 8 + maxcount,
3975 nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
3976 struct nfsd4_read *read)
3978 unsigned long maxcount;
3979 struct xdr_stream *xdr = resp->xdr;
3981 int starting_len = xdr->buf->len;
3986 file = read->rd_nf->nf_file;
3988 p = xdr_reserve_space(xdr, 8); /* eof flag and byte count */
3990 WARN_ON_ONCE(test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags));
3991 return nfserr_resource;
3993 if (resp->xdr->buf->page_len &&
3994 test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags)) {
3996 return nfserr_resource;
3998 xdr_commit_encode(xdr);
4000 maxcount = svc_max_payload(resp->rqstp);
4001 maxcount = min_t(unsigned long, maxcount,
4002 (xdr->buf->buflen - xdr->buf->len));
4003 maxcount = min_t(unsigned long, maxcount, read->rd_length);
4005 if (file->f_op->splice_read &&
4006 test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags))
4007 nfserr = nfsd4_encode_splice_read(resp, read, file, maxcount);
4009 nfserr = nfsd4_encode_readv(resp, read, file, maxcount);
4012 xdr_truncate_encode(xdr, starting_len);
4018 nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
4023 struct xdr_stream *xdr = resp->xdr;
4024 int length_offset = xdr->buf->len;
4028 p = xdr_reserve_space(xdr, 4);
4030 return nfserr_resource;
4031 maxcount = PAGE_SIZE;
4033 p = xdr_reserve_space(xdr, maxcount);
4035 return nfserr_resource;
4037 * XXX: By default, vfs_readlink() will truncate symlinks if they
4038 * would overflow the buffer. Is this kosher in NFSv4? If not, one
4039 * easy fix is: if vfs_readlink() precisely fills the buffer, assume
4040 * that truncation occurred, and return NFS4ERR_RESOURCE.
4042 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp,
4043 (char *)p, &maxcount);
4044 if (nfserr == nfserr_isdir)
4045 nfserr = nfserr_inval;
4048 status = svc_encode_result_payload(readlink->rl_rqstp, length_offset,
4051 nfserr = nfserrno(status);
4055 wire_count = htonl(maxcount);
4056 write_bytes_to_xdr_buf(xdr->buf, length_offset, &wire_count, 4);
4057 xdr_truncate_encode(xdr, length_offset + 4 + ALIGN(maxcount, 4));
4059 write_bytes_to_xdr_buf(xdr->buf, length_offset + 4 + maxcount,
4060 &zero, 4 - (maxcount&3));
4064 xdr_truncate_encode(xdr, length_offset);
4069 nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
4075 struct xdr_stream *xdr = resp->xdr;
4076 int starting_len = xdr->buf->len;
4079 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
4081 return nfserr_resource;
4083 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
4084 *p++ = cpu_to_be32(0);
4085 *p++ = cpu_to_be32(0);
4086 xdr->buf->head[0].iov_len = (char *)xdr->p -
4087 (char *)xdr->buf->head[0].iov_base;
4090 * Number of bytes left for directory entries allowing for the
4091 * final 8 bytes of the readdir and a following failed op:
4093 bytes_left = xdr->buf->buflen - xdr->buf->len
4094 - COMPOUND_ERR_SLACK_SPACE - 8;
4095 if (bytes_left < 0) {
4096 nfserr = nfserr_resource;
4099 maxcount = svc_max_payload(resp->rqstp);
4100 maxcount = min_t(u32, readdir->rd_maxcount, maxcount);
4102 * Note the rfc defines rd_maxcount as the size of the
4103 * READDIR4resok structure, which includes the verifier above
4104 * and the 8 bytes encoded at the end of this function:
4106 if (maxcount < 16) {
4107 nfserr = nfserr_toosmall;
4110 maxcount = min_t(int, maxcount-16, bytes_left);
4112 /* RFC 3530 14.2.24 allows us to ignore dircount when it's 0: */
4113 if (!readdir->rd_dircount)
4114 readdir->rd_dircount = svc_max_payload(resp->rqstp);
4117 readdir->rd_maxcount = maxcount;
4118 readdir->common.err = 0;
4119 readdir->cookie_offset = 0;
4121 offset = readdir->rd_cookie;
4122 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
4124 &readdir->common, nfsd4_encode_dirent);
4125 if (nfserr == nfs_ok &&
4126 readdir->common.err == nfserr_toosmall &&
4127 xdr->buf->len == starting_len + 8) {
4128 /* nothing encoded; which limit did we hit?: */
4129 if (maxcount - 16 < bytes_left)
4130 /* It was the fault of rd_maxcount: */
4131 nfserr = nfserr_toosmall;
4133 /* We ran out of buffer space: */
4134 nfserr = nfserr_resource;
4139 if (readdir->cookie_offset) {
4140 wire_offset = cpu_to_be64(offset);
4141 write_bytes_to_xdr_buf(xdr->buf, readdir->cookie_offset,
4145 p = xdr_reserve_space(xdr, 8);
4150 *p++ = 0; /* no more entries */
4151 *p++ = htonl(readdir->common.err == nfserr_eof);
4155 xdr_truncate_encode(xdr, starting_len);
4160 nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
4162 struct xdr_stream *xdr = resp->xdr;
4165 p = xdr_reserve_space(xdr, 20);
4167 return nfserr_resource;
4168 p = encode_cinfo(p, &remove->rm_cinfo);
4173 nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
4175 struct xdr_stream *xdr = resp->xdr;
4178 p = xdr_reserve_space(xdr, 40);
4180 return nfserr_resource;
4181 p = encode_cinfo(p, &rename->rn_sinfo);
4182 p = encode_cinfo(p, &rename->rn_tinfo);
4187 nfsd4_do_encode_secinfo(struct xdr_stream *xdr, struct svc_export *exp)
4189 u32 i, nflavs, supported;
4190 struct exp_flavor_info *flavs;
4191 struct exp_flavor_info def_flavs[2];
4192 __be32 *p, *flavorsp;
4193 static bool report = true;
4195 if (exp->ex_nflavors) {
4196 flavs = exp->ex_flavors;
4197 nflavs = exp->ex_nflavors;
4198 } else { /* Handling of some defaults in absence of real secinfo: */
4200 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
4202 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
4203 flavs[1].pseudoflavor = RPC_AUTH_NULL;
4204 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
4206 flavs[0].pseudoflavor
4207 = svcauth_gss_flavor(exp->ex_client);
4210 flavs[0].pseudoflavor
4211 = exp->ex_client->flavour->flavour;
4216 p = xdr_reserve_space(xdr, 4);
4218 return nfserr_resource;
4219 flavorsp = p++; /* to be backfilled later */
4221 for (i = 0; i < nflavs; i++) {
4222 rpc_authflavor_t pf = flavs[i].pseudoflavor;
4223 struct rpcsec_gss_info info;
4225 if (rpcauth_get_gssinfo(pf, &info) == 0) {
4227 p = xdr_reserve_space(xdr, 4 + 4 +
4228 XDR_LEN(info.oid.len) + 4 + 4);
4230 return nfserr_resource;
4231 *p++ = cpu_to_be32(RPC_AUTH_GSS);
4232 p = xdr_encode_opaque(p, info.oid.data, info.oid.len);
4233 *p++ = cpu_to_be32(info.qop);
4234 *p++ = cpu_to_be32(info.service);
4235 } else if (pf < RPC_AUTH_MAXFLAVOR) {
4237 p = xdr_reserve_space(xdr, 4);
4239 return nfserr_resource;
4240 *p++ = cpu_to_be32(pf);
4243 pr_warn("NFS: SECINFO: security flavor %u "
4244 "is not supported\n", pf);
4248 if (nflavs != supported)
4250 *flavorsp = htonl(supported);
4255 nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
4256 struct nfsd4_secinfo *secinfo)
4258 struct xdr_stream *xdr = resp->xdr;
4260 return nfsd4_do_encode_secinfo(xdr, secinfo->si_exp);
4264 nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
4265 struct nfsd4_secinfo_no_name *secinfo)
4267 struct xdr_stream *xdr = resp->xdr;
4269 return nfsd4_do_encode_secinfo(xdr, secinfo->sin_exp);
4273 * The SETATTR encode routine is special -- it always encodes a bitmap,
4274 * regardless of the error status.
4277 nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
4279 struct xdr_stream *xdr = resp->xdr;
4282 p = xdr_reserve_space(xdr, 16);
4284 return nfserr_resource;
4286 *p++ = cpu_to_be32(3);
4287 *p++ = cpu_to_be32(0);
4288 *p++ = cpu_to_be32(0);
4289 *p++ = cpu_to_be32(0);
4292 *p++ = cpu_to_be32(3);
4293 *p++ = cpu_to_be32(setattr->sa_bmval[0]);
4294 *p++ = cpu_to_be32(setattr->sa_bmval[1]);
4295 *p++ = cpu_to_be32(setattr->sa_bmval[2]);
4301 nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
4303 struct xdr_stream *xdr = resp->xdr;
4307 p = xdr_reserve_space(xdr, 8 + NFS4_VERIFIER_SIZE);
4309 return nfserr_resource;
4310 p = xdr_encode_opaque_fixed(p, &scd->se_clientid, 8);
4311 p = xdr_encode_opaque_fixed(p, &scd->se_confirm,
4312 NFS4_VERIFIER_SIZE);
4314 else if (nfserr == nfserr_clid_inuse) {
4315 p = xdr_reserve_space(xdr, 8);
4317 return nfserr_resource;
4318 *p++ = cpu_to_be32(0);
4319 *p++ = cpu_to_be32(0);
4325 nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
4327 struct xdr_stream *xdr = resp->xdr;
4330 p = xdr_reserve_space(xdr, 16);
4332 return nfserr_resource;
4333 *p++ = cpu_to_be32(write->wr_bytes_written);
4334 *p++ = cpu_to_be32(write->wr_how_written);
4335 p = xdr_encode_opaque_fixed(p, write->wr_verifier.data,
4336 NFS4_VERIFIER_SIZE);
4341 nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
4342 struct nfsd4_exchange_id *exid)
4344 struct xdr_stream *xdr = resp->xdr;
4349 int server_scope_sz;
4350 uint64_t minor_id = 0;
4351 struct nfsd_net *nn = net_generic(SVC_NET(resp->rqstp), nfsd_net_id);
4353 major_id = nn->nfsd_name;
4354 major_id_sz = strlen(nn->nfsd_name);
4355 server_scope = nn->nfsd_name;
4356 server_scope_sz = strlen(nn->nfsd_name);
4358 p = xdr_reserve_space(xdr,
4359 8 /* eir_clientid */ +
4360 4 /* eir_sequenceid */ +
4364 return nfserr_resource;
4366 p = xdr_encode_opaque_fixed(p, &exid->clientid, 8);
4367 *p++ = cpu_to_be32(exid->seqid);
4368 *p++ = cpu_to_be32(exid->flags);
4370 *p++ = cpu_to_be32(exid->spa_how);
4372 switch (exid->spa_how) {
4376 /* spo_must_enforce bitmap: */
4377 nfserr = nfsd4_encode_bitmap(xdr,
4378 exid->spo_must_enforce[0],
4379 exid->spo_must_enforce[1],
4380 exid->spo_must_enforce[2]);
4383 /* spo_must_allow bitmap: */
4384 nfserr = nfsd4_encode_bitmap(xdr,
4385 exid->spo_must_allow[0],
4386 exid->spo_must_allow[1],
4387 exid->spo_must_allow[2]);
4395 p = xdr_reserve_space(xdr,
4396 8 /* so_minor_id */ +
4397 4 /* so_major_id.len */ +
4398 (XDR_QUADLEN(major_id_sz) * 4) +
4399 4 /* eir_server_scope.len */ +
4400 (XDR_QUADLEN(server_scope_sz) * 4) +
4401 4 /* eir_server_impl_id.count (0) */);
4403 return nfserr_resource;
4405 /* The server_owner struct */
4406 p = xdr_encode_hyper(p, minor_id); /* Minor id */
4408 p = xdr_encode_opaque(p, major_id, major_id_sz);
4411 p = xdr_encode_opaque(p, server_scope, server_scope_sz);
4413 /* Implementation id */
4414 *p++ = cpu_to_be32(0); /* zero length nfs_impl_id4 array */
4419 nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
4420 struct nfsd4_create_session *sess)
4422 struct xdr_stream *xdr = resp->xdr;
4425 p = xdr_reserve_space(xdr, 24);
4427 return nfserr_resource;
4428 p = xdr_encode_opaque_fixed(p, sess->sessionid.data,
4429 NFS4_MAX_SESSIONID_LEN);
4430 *p++ = cpu_to_be32(sess->seqid);
4431 *p++ = cpu_to_be32(sess->flags);
4433 p = xdr_reserve_space(xdr, 28);
4435 return nfserr_resource;
4436 *p++ = cpu_to_be32(0); /* headerpadsz */
4437 *p++ = cpu_to_be32(sess->fore_channel.maxreq_sz);
4438 *p++ = cpu_to_be32(sess->fore_channel.maxresp_sz);
4439 *p++ = cpu_to_be32(sess->fore_channel.maxresp_cached);
4440 *p++ = cpu_to_be32(sess->fore_channel.maxops);
4441 *p++ = cpu_to_be32(sess->fore_channel.maxreqs);
4442 *p++ = cpu_to_be32(sess->fore_channel.nr_rdma_attrs);
4444 if (sess->fore_channel.nr_rdma_attrs) {
4445 p = xdr_reserve_space(xdr, 4);
4447 return nfserr_resource;
4448 *p++ = cpu_to_be32(sess->fore_channel.rdma_attrs);
4451 p = xdr_reserve_space(xdr, 28);
4453 return nfserr_resource;
4454 *p++ = cpu_to_be32(0); /* headerpadsz */
4455 *p++ = cpu_to_be32(sess->back_channel.maxreq_sz);
4456 *p++ = cpu_to_be32(sess->back_channel.maxresp_sz);
4457 *p++ = cpu_to_be32(sess->back_channel.maxresp_cached);
4458 *p++ = cpu_to_be32(sess->back_channel.maxops);
4459 *p++ = cpu_to_be32(sess->back_channel.maxreqs);
4460 *p++ = cpu_to_be32(sess->back_channel.nr_rdma_attrs);
4462 if (sess->back_channel.nr_rdma_attrs) {
4463 p = xdr_reserve_space(xdr, 4);
4465 return nfserr_resource;
4466 *p++ = cpu_to_be32(sess->back_channel.rdma_attrs);
4472 nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
4473 struct nfsd4_sequence *seq)
4475 struct xdr_stream *xdr = resp->xdr;
4478 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 20);
4480 return nfserr_resource;
4481 p = xdr_encode_opaque_fixed(p, seq->sessionid.data,
4482 NFS4_MAX_SESSIONID_LEN);
4483 *p++ = cpu_to_be32(seq->seqid);
4484 *p++ = cpu_to_be32(seq->slotid);
4485 /* Note slotid's are numbered from zero: */
4486 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_highest_slotid */
4487 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_target_highest_slotid */
4488 *p++ = cpu_to_be32(seq->status_flags);
4490 resp->cstate.data_offset = xdr->buf->len; /* DRC cache data pointer */
4495 nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
4496 struct nfsd4_test_stateid *test_stateid)
4498 struct xdr_stream *xdr = resp->xdr;
4499 struct nfsd4_test_stateid_id *stateid, *next;
4502 p = xdr_reserve_space(xdr, 4 + (4 * test_stateid->ts_num_ids));
4504 return nfserr_resource;
4505 *p++ = htonl(test_stateid->ts_num_ids);
4507 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
4508 *p++ = stateid->ts_id_status;
4514 #ifdef CONFIG_NFSD_PNFS
4516 nfsd4_encode_getdeviceinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
4517 struct nfsd4_getdeviceinfo *gdev)
4519 struct xdr_stream *xdr = resp->xdr;
4520 const struct nfsd4_layout_ops *ops;
4521 u32 starting_len = xdr->buf->len, needed_len;
4524 p = xdr_reserve_space(xdr, 4);
4526 return nfserr_resource;
4528 *p++ = cpu_to_be32(gdev->gd_layout_type);
4530 /* If maxcount is 0 then just update notifications */
4531 if (gdev->gd_maxcount != 0) {
4532 ops = nfsd4_layout_ops[gdev->gd_layout_type];
4533 nfserr = ops->encode_getdeviceinfo(xdr, gdev);
4536 * We don't bother to burden the layout drivers with
4537 * enforcing gd_maxcount, just tell the client to
4538 * come back with a bigger buffer if it's not enough.
4540 if (xdr->buf->len + 4 > gdev->gd_maxcount)
4546 if (gdev->gd_notify_types) {
4547 p = xdr_reserve_space(xdr, 4 + 4);
4549 return nfserr_resource;
4550 *p++ = cpu_to_be32(1); /* bitmap length */
4551 *p++ = cpu_to_be32(gdev->gd_notify_types);
4553 p = xdr_reserve_space(xdr, 4);
4555 return nfserr_resource;
4561 dprintk("%s: maxcount too small\n", __func__);
4562 needed_len = xdr->buf->len + 4 /* notifications */;
4563 xdr_truncate_encode(xdr, starting_len);
4564 p = xdr_reserve_space(xdr, 4);
4566 return nfserr_resource;
4567 *p++ = cpu_to_be32(needed_len);
4568 return nfserr_toosmall;
4572 nfsd4_encode_layoutget(struct nfsd4_compoundres *resp, __be32 nfserr,
4573 struct nfsd4_layoutget *lgp)
4575 struct xdr_stream *xdr = resp->xdr;
4576 const struct nfsd4_layout_ops *ops;
4579 p = xdr_reserve_space(xdr, 36 + sizeof(stateid_opaque_t));
4581 return nfserr_resource;
4583 *p++ = cpu_to_be32(1); /* we always set return-on-close */
4584 *p++ = cpu_to_be32(lgp->lg_sid.si_generation);
4585 p = xdr_encode_opaque_fixed(p, &lgp->lg_sid.si_opaque,
4586 sizeof(stateid_opaque_t));
4588 *p++ = cpu_to_be32(1); /* we always return a single layout */
4589 p = xdr_encode_hyper(p, lgp->lg_seg.offset);
4590 p = xdr_encode_hyper(p, lgp->lg_seg.length);
4591 *p++ = cpu_to_be32(lgp->lg_seg.iomode);
4592 *p++ = cpu_to_be32(lgp->lg_layout_type);
4594 ops = nfsd4_layout_ops[lgp->lg_layout_type];
4595 return ops->encode_layoutget(xdr, lgp);
4599 nfsd4_encode_layoutcommit(struct nfsd4_compoundres *resp, __be32 nfserr,
4600 struct nfsd4_layoutcommit *lcp)
4602 struct xdr_stream *xdr = resp->xdr;
4605 p = xdr_reserve_space(xdr, 4);
4607 return nfserr_resource;
4608 *p++ = cpu_to_be32(lcp->lc_size_chg);
4609 if (lcp->lc_size_chg) {
4610 p = xdr_reserve_space(xdr, 8);
4612 return nfserr_resource;
4613 p = xdr_encode_hyper(p, lcp->lc_newsize);
4620 nfsd4_encode_layoutreturn(struct nfsd4_compoundres *resp, __be32 nfserr,
4621 struct nfsd4_layoutreturn *lrp)
4623 struct xdr_stream *xdr = resp->xdr;
4626 p = xdr_reserve_space(xdr, 4);
4628 return nfserr_resource;
4629 *p++ = cpu_to_be32(lrp->lrs_present);
4630 if (lrp->lrs_present)
4631 return nfsd4_encode_stateid(xdr, &lrp->lr_sid);
4634 #endif /* CONFIG_NFSD_PNFS */
4637 nfsd42_encode_write_res(struct nfsd4_compoundres *resp,
4638 struct nfsd42_write_res *write, bool sync)
4641 p = xdr_reserve_space(resp->xdr, 4);
4643 return nfserr_resource;
4646 *p++ = cpu_to_be32(0);
4649 *p++ = cpu_to_be32(1);
4650 nfserr = nfsd4_encode_stateid(resp->xdr, &write->cb_stateid);
4654 p = xdr_reserve_space(resp->xdr, 8 + 4 + NFS4_VERIFIER_SIZE);
4656 return nfserr_resource;
4658 p = xdr_encode_hyper(p, write->wr_bytes_written);
4659 *p++ = cpu_to_be32(write->wr_stable_how);
4660 p = xdr_encode_opaque_fixed(p, write->wr_verifier.data,
4661 NFS4_VERIFIER_SIZE);
4666 nfsd42_encode_nl4_server(struct nfsd4_compoundres *resp, struct nl4_server *ns)
4668 struct xdr_stream *xdr = resp->xdr;
4669 struct nfs42_netaddr *addr;
4672 p = xdr_reserve_space(xdr, 4);
4673 *p++ = cpu_to_be32(ns->nl4_type);
4675 switch (ns->nl4_type) {
4677 addr = &ns->u.nl4_addr;
4679 /* netid_len, netid, uaddr_len, uaddr (port included
4680 * in RPCBIND_MAXUADDRLEN)
4682 p = xdr_reserve_space(xdr,
4684 (XDR_QUADLEN(addr->netid_len) * 4) +
4686 (XDR_QUADLEN(addr->addr_len) * 4));
4688 return nfserr_resource;
4690 *p++ = cpu_to_be32(addr->netid_len);
4691 p = xdr_encode_opaque_fixed(p, addr->netid,
4693 *p++ = cpu_to_be32(addr->addr_len);
4694 p = xdr_encode_opaque_fixed(p, addr->addr,
4698 WARN_ON_ONCE(ns->nl4_type != NL4_NETADDR);
4699 return nfserr_inval;
4706 nfsd4_encode_copy(struct nfsd4_compoundres *resp, __be32 nfserr,
4707 struct nfsd4_copy *copy)
4711 nfserr = nfsd42_encode_write_res(resp, ©->cp_res,
4712 !!copy->cp_synchronous);
4716 p = xdr_reserve_space(resp->xdr, 4 + 4);
4717 *p++ = xdr_one; /* cr_consecutive */
4718 *p++ = cpu_to_be32(copy->cp_synchronous);
4723 nfsd4_encode_offload_status(struct nfsd4_compoundres *resp, __be32 nfserr,
4724 struct nfsd4_offload_status *os)
4726 struct xdr_stream *xdr = resp->xdr;
4729 p = xdr_reserve_space(xdr, 8 + 4);
4731 return nfserr_resource;
4732 p = xdr_encode_hyper(p, os->count);
4733 *p++ = cpu_to_be32(0);
4738 nfsd4_encode_read_plus_data(struct nfsd4_compoundres *resp,
4739 struct nfsd4_read *read,
4740 unsigned long *maxcount, u32 *eof,
4743 struct xdr_stream *xdr = resp->xdr;
4744 struct file *file = read->rd_nf->nf_file;
4745 int starting_len = xdr->buf->len;
4751 hole_pos = pos ? *pos : vfs_llseek(file, read->rd_offset, SEEK_HOLE);
4752 if (hole_pos > read->rd_offset)
4753 *maxcount = min_t(unsigned long, *maxcount, hole_pos - read->rd_offset);
4754 *maxcount = min_t(unsigned long, *maxcount, (xdr->buf->buflen - xdr->buf->len));
4756 /* Content type, offset, byte count */
4757 p = xdr_reserve_space(xdr, 4 + 8 + 4);
4759 return nfserr_resource;
4761 read->rd_vlen = xdr_reserve_space_vec(xdr, resp->rqstp->rq_vec, *maxcount);
4762 if (read->rd_vlen < 0)
4763 return nfserr_resource;
4765 nfserr = nfsd_readv(resp->rqstp, read->rd_fhp, file, read->rd_offset,
4766 resp->rqstp->rq_vec, read->rd_vlen, maxcount, eof);
4769 xdr_truncate_encode(xdr, starting_len + 16 + xdr_align_size(*maxcount));
4771 tmp = htonl(NFS4_CONTENT_DATA);
4772 write_bytes_to_xdr_buf(xdr->buf, starting_len, &tmp, 4);
4773 tmp64 = cpu_to_be64(read->rd_offset);
4774 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp64, 8);
4775 tmp = htonl(*maxcount);
4776 write_bytes_to_xdr_buf(xdr->buf, starting_len + 12, &tmp, 4);
4779 write_bytes_to_xdr_buf(xdr->buf, starting_len + 16 + *maxcount, &tmp,
4780 xdr_pad_size(*maxcount));
4785 nfsd4_encode_read_plus_hole(struct nfsd4_compoundres *resp,
4786 struct nfsd4_read *read,
4787 unsigned long *maxcount, u32 *eof)
4789 struct file *file = read->rd_nf->nf_file;
4790 loff_t data_pos = vfs_llseek(file, read->rd_offset, SEEK_DATA);
4791 loff_t f_size = i_size_read(file_inode(file));
4792 unsigned long count;
4795 if (data_pos == -ENXIO)
4797 else if (data_pos <= read->rd_offset || (data_pos < f_size && data_pos % PAGE_SIZE))
4798 return nfsd4_encode_read_plus_data(resp, read, maxcount, eof, &f_size);
4799 count = data_pos - read->rd_offset;
4801 /* Content type, offset, byte count */
4802 p = xdr_reserve_space(resp->xdr, 4 + 8 + 8);
4804 return nfserr_resource;
4806 *p++ = htonl(NFS4_CONTENT_HOLE);
4807 p = xdr_encode_hyper(p, read->rd_offset);
4808 p = xdr_encode_hyper(p, count);
4810 *eof = (read->rd_offset + count) >= f_size;
4811 *maxcount = min_t(unsigned long, count, *maxcount);
4816 nfsd4_encode_read_plus(struct nfsd4_compoundres *resp, __be32 nfserr,
4817 struct nfsd4_read *read)
4819 unsigned long maxcount, count;
4820 struct xdr_stream *xdr = resp->xdr;
4822 int starting_len = xdr->buf->len;
4823 int last_segment = xdr->buf->len;
4832 file = read->rd_nf->nf_file;
4834 /* eof flag, segment count */
4835 p = xdr_reserve_space(xdr, 4 + 4);
4837 return nfserr_resource;
4838 xdr_commit_encode(xdr);
4840 maxcount = svc_max_payload(resp->rqstp);
4841 maxcount = min_t(unsigned long, maxcount,
4842 (xdr->buf->buflen - xdr->buf->len));
4843 maxcount = min_t(unsigned long, maxcount, read->rd_length);
4846 eof = read->rd_offset >= i_size_read(file_inode(file));
4850 pos = vfs_llseek(file, read->rd_offset, SEEK_HOLE);
4851 is_data = pos > read->rd_offset;
4853 while (count > 0 && !eof) {
4856 nfserr = nfsd4_encode_read_plus_data(resp, read, &maxcount, &eof,
4857 segments == 0 ? &pos : NULL);
4859 nfserr = nfsd4_encode_read_plus_hole(resp, read, &maxcount, &eof);
4863 read->rd_offset += maxcount;
4865 last_segment = xdr->buf->len;
4870 if (nfserr && segments == 0)
4871 xdr_truncate_encode(xdr, starting_len);
4874 xdr_truncate_encode(xdr, last_segment);
4879 write_bytes_to_xdr_buf(xdr->buf, starting_len, &tmp, 4);
4880 tmp = htonl(segments);
4881 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4);
4888 nfsd4_encode_copy_notify(struct nfsd4_compoundres *resp, __be32 nfserr,
4889 struct nfsd4_copy_notify *cn)
4891 struct xdr_stream *xdr = resp->xdr;
4898 p = xdr_reserve_space(xdr, 12);
4900 return nfserr_resource;
4902 /* cnr_lease_time */
4903 p = xdr_encode_hyper(p, cn->cpn_sec);
4904 *p++ = cpu_to_be32(cn->cpn_nsec);
4907 nfserr = nfsd4_encode_stateid(xdr, &cn->cpn_cnr_stateid);
4911 /* cnr_src.nl_nsvr */
4912 p = xdr_reserve_space(xdr, 4);
4914 return nfserr_resource;
4916 *p++ = cpu_to_be32(1);
4918 return nfsd42_encode_nl4_server(resp, &cn->cpn_src);
4922 nfsd4_encode_seek(struct nfsd4_compoundres *resp, __be32 nfserr,
4923 struct nfsd4_seek *seek)
4927 p = xdr_reserve_space(resp->xdr, 4 + 8);
4928 *p++ = cpu_to_be32(seek->seek_eof);
4929 p = xdr_encode_hyper(p, seek->seek_pos);
4935 nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
4941 * Encode kmalloc-ed buffer in to XDR stream.
4944 nfsd4_vbuf_to_stream(struct xdr_stream *xdr, char *buf, u32 buflen)
4949 cplen = min_t(unsigned long, buflen,
4950 ((void *)xdr->end - (void *)xdr->p));
4951 p = xdr_reserve_space(xdr, cplen);
4953 return nfserr_resource;
4955 memcpy(p, buf, cplen);
4960 cplen = min_t(u32, buflen, PAGE_SIZE);
4961 p = xdr_reserve_space(xdr, cplen);
4963 return nfserr_resource;
4965 memcpy(p, buf, cplen);
4967 if (cplen < PAGE_SIZE) {
4969 * We're done, with a length that wasn't page
4970 * aligned, so possibly not word aligned. Pad
4971 * any trailing bytes with 0.
4973 xdr_encode_opaque_fixed(p, NULL, cplen);
4977 buflen -= PAGE_SIZE;
4985 nfsd4_encode_getxattr(struct nfsd4_compoundres *resp, __be32 nfserr,
4986 struct nfsd4_getxattr *getxattr)
4988 struct xdr_stream *xdr = resp->xdr;
4991 p = xdr_reserve_space(xdr, 4);
4993 return nfserr_resource;
4995 *p = cpu_to_be32(getxattr->getxa_len);
4997 if (getxattr->getxa_len == 0)
5000 err = nfsd4_vbuf_to_stream(xdr, getxattr->getxa_buf,
5001 getxattr->getxa_len);
5003 kvfree(getxattr->getxa_buf);
5009 nfsd4_encode_setxattr(struct nfsd4_compoundres *resp, __be32 nfserr,
5010 struct nfsd4_setxattr *setxattr)
5012 struct xdr_stream *xdr = resp->xdr;
5015 p = xdr_reserve_space(xdr, 20);
5017 return nfserr_resource;
5019 encode_cinfo(p, &setxattr->setxa_cinfo);
5025 * See if there are cookie values that can be rejected outright.
5028 nfsd4_listxattr_validate_cookie(struct nfsd4_listxattrs *listxattrs,
5031 u64 cookie = listxattrs->lsxa_cookie;
5034 * If the cookie is larger than the maximum number we can fit
5035 * in either the buffer we just got back from vfs_listxattr, or,
5036 * XDR-encoded, in the return buffer, it's invalid.
5038 if (cookie > (listxattrs->lsxa_len) / (XATTR_USER_PREFIX_LEN + 2))
5039 return nfserr_badcookie;
5041 if (cookie > (listxattrs->lsxa_maxcount /
5042 (XDR_QUADLEN(XATTR_USER_PREFIX_LEN + 2) + 4)))
5043 return nfserr_badcookie;
5045 *offsetp = (u32)cookie;
5050 nfsd4_encode_listxattrs(struct nfsd4_compoundres *resp, __be32 nfserr,
5051 struct nfsd4_listxattrs *listxattrs)
5053 struct xdr_stream *xdr = resp->xdr;
5054 u32 cookie_offset, count_offset, eof;
5055 u32 left, xdrleft, slen, count;
5065 status = nfsd4_listxattr_validate_cookie(listxattrs, &offset);
5070 * Reserve space for the cookie and the name array count. Record
5071 * the offsets to save them later.
5073 cookie_offset = xdr->buf->len;
5074 count_offset = cookie_offset + 8;
5075 p = xdr_reserve_space(xdr, 12);
5077 status = nfserr_resource;
5082 left = listxattrs->lsxa_len;
5083 sp = listxattrs->lsxa_buf;
5086 xdrleft = listxattrs->lsxa_maxcount;
5088 while (left > 0 && xdrleft > 0) {
5092 * Check if this is a "user." attribute, skip it if not.
5094 if (strncmp(sp, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
5097 slen -= XATTR_USER_PREFIX_LEN;
5098 xdrlen = 4 + ((slen + 3) & ~3);
5099 if (xdrlen > xdrleft) {
5102 * Can't even fit the first attribute name.
5104 status = nfserr_toosmall;
5111 left -= XATTR_USER_PREFIX_LEN;
5112 sp += XATTR_USER_PREFIX_LEN;
5113 if (nuser++ < offset)
5117 p = xdr_reserve_space(xdr, xdrlen);
5119 status = nfserr_resource;
5123 xdr_encode_opaque(p, sp, slen);
5133 * If there were user attributes to copy, but we didn't copy
5134 * any, the offset was too large (e.g. the cookie was invalid).
5136 if (nuser > 0 && count == 0) {
5137 status = nfserr_badcookie;
5142 p = xdr_reserve_space(xdr, 4);
5144 status = nfserr_resource;
5147 *p = cpu_to_be32(eof);
5149 cookie = offset + count;
5151 write_bytes_to_xdr_buf(xdr->buf, cookie_offset, &cookie, 8);
5152 tmp = cpu_to_be32(count);
5153 write_bytes_to_xdr_buf(xdr->buf, count_offset, &tmp, 4);
5155 if (listxattrs->lsxa_len)
5156 kvfree(listxattrs->lsxa_buf);
5161 nfsd4_encode_removexattr(struct nfsd4_compoundres *resp, __be32 nfserr,
5162 struct nfsd4_removexattr *removexattr)
5164 struct xdr_stream *xdr = resp->xdr;
5167 p = xdr_reserve_space(xdr, 20);
5169 return nfserr_resource;
5171 p = encode_cinfo(p, &removexattr->rmxa_cinfo);
5175 typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
5178 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
5179 * since we don't need to filter out obsolete ops as this is
5180 * done in the decoding phase.
5182 static const nfsd4_enc nfsd4_enc_ops[] = {
5183 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
5184 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
5185 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
5186 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
5187 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
5188 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
5189 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
5190 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
5191 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
5192 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
5193 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
5194 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
5195 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
5196 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
5197 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
5198 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
5199 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
5200 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
5201 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
5202 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
5203 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
5204 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
5205 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
5206 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
5207 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
5208 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
5209 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
5210 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
5211 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
5212 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
5213 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
5214 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
5215 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
5216 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
5217 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
5218 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
5219 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
5221 /* NFSv4.1 operations */
5222 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
5223 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
5224 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
5225 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
5226 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
5227 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
5228 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
5229 #ifdef CONFIG_NFSD_PNFS
5230 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_getdeviceinfo,
5231 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
5232 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_layoutcommit,
5233 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_layoutget,
5234 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_layoutreturn,
5236 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
5237 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
5238 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
5239 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
5240 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
5242 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
5243 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
5244 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
5245 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
5246 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
5247 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
5248 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
5250 /* NFSv4.2 operations */
5251 [OP_ALLOCATE] = (nfsd4_enc)nfsd4_encode_noop,
5252 [OP_COPY] = (nfsd4_enc)nfsd4_encode_copy,
5253 [OP_COPY_NOTIFY] = (nfsd4_enc)nfsd4_encode_copy_notify,
5254 [OP_DEALLOCATE] = (nfsd4_enc)nfsd4_encode_noop,
5255 [OP_IO_ADVISE] = (nfsd4_enc)nfsd4_encode_noop,
5256 [OP_LAYOUTERROR] = (nfsd4_enc)nfsd4_encode_noop,
5257 [OP_LAYOUTSTATS] = (nfsd4_enc)nfsd4_encode_noop,
5258 [OP_OFFLOAD_CANCEL] = (nfsd4_enc)nfsd4_encode_noop,
5259 [OP_OFFLOAD_STATUS] = (nfsd4_enc)nfsd4_encode_offload_status,
5260 [OP_READ_PLUS] = (nfsd4_enc)nfsd4_encode_read_plus,
5261 [OP_SEEK] = (nfsd4_enc)nfsd4_encode_seek,
5262 [OP_WRITE_SAME] = (nfsd4_enc)nfsd4_encode_noop,
5263 [OP_CLONE] = (nfsd4_enc)nfsd4_encode_noop,
5265 /* RFC 8276 extended atributes operations */
5266 [OP_GETXATTR] = (nfsd4_enc)nfsd4_encode_getxattr,
5267 [OP_SETXATTR] = (nfsd4_enc)nfsd4_encode_setxattr,
5268 [OP_LISTXATTRS] = (nfsd4_enc)nfsd4_encode_listxattrs,
5269 [OP_REMOVEXATTR] = (nfsd4_enc)nfsd4_encode_removexattr,
5273 * Calculate whether we still have space to encode repsize bytes.
5274 * There are two considerations:
5275 * - For NFS versions >=4.1, the size of the reply must stay within
5277 * - For all NFS versions, we must stay within limited preallocated
5280 * This is called before the operation is processed, so can only provide
5281 * an upper estimate. For some nonidempotent operations (such as
5282 * getattr), it's not necessarily a problem if that estimate is wrong,
5283 * as we can fail it after processing without significant side effects.
5285 __be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 respsize)
5287 struct xdr_buf *buf = &resp->rqstp->rq_res;
5288 struct nfsd4_slot *slot = resp->cstate.slot;
5290 if (buf->len + respsize <= buf->buflen)
5292 if (!nfsd4_has_session(&resp->cstate))
5293 return nfserr_resource;
5294 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS) {
5296 return nfserr_rep_too_big_to_cache;
5298 return nfserr_rep_too_big;
5302 nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
5304 struct xdr_stream *xdr = resp->xdr;
5305 struct nfs4_stateowner *so = resp->cstate.replay_owner;
5306 struct svc_rqst *rqstp = resp->rqstp;
5307 const struct nfsd4_operation *opdesc = op->opdesc;
5308 int post_err_offset;
5312 p = xdr_reserve_space(xdr, 8);
5317 *p++ = cpu_to_be32(op->opnum);
5318 post_err_offset = xdr->buf->len;
5320 if (op->opnum == OP_ILLEGAL)
5322 if (op->status && opdesc &&
5323 !(opdesc->op_flags & OP_NONTRIVIAL_ERROR_ENCODE))
5325 BUG_ON(op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
5326 !nfsd4_enc_ops[op->opnum]);
5327 encoder = nfsd4_enc_ops[op->opnum];
5328 op->status = encoder(resp, op->status, &op->u);
5330 trace_nfsd_compound_encode_err(rqstp, op->opnum, op->status);
5331 if (opdesc && opdesc->op_release)
5332 opdesc->op_release(&op->u);
5333 xdr_commit_encode(xdr);
5335 /* nfsd4_check_resp_size guarantees enough room for error status */
5337 int space_needed = 0;
5338 if (!nfsd4_last_compound_op(rqstp))
5339 space_needed = COMPOUND_ERR_SLACK_SPACE;
5340 op->status = nfsd4_check_resp_size(resp, space_needed);
5342 if (op->status == nfserr_resource && nfsd4_has_session(&resp->cstate)) {
5343 struct nfsd4_slot *slot = resp->cstate.slot;
5345 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS)
5346 op->status = nfserr_rep_too_big_to_cache;
5348 op->status = nfserr_rep_too_big;
5350 if (op->status == nfserr_resource ||
5351 op->status == nfserr_rep_too_big ||
5352 op->status == nfserr_rep_too_big_to_cache) {
5354 * The operation may have already been encoded or
5355 * partially encoded. No op returns anything additional
5356 * in the case of one of these three errors, so we can
5357 * just truncate back to after the status. But it's a
5358 * bug if we had to do this on a non-idempotent op:
5360 warn_on_nonidempotent_op(op);
5361 xdr_truncate_encode(xdr, post_err_offset);
5364 int len = xdr->buf->len - post_err_offset;
5366 so->so_replay.rp_status = op->status;
5367 so->so_replay.rp_buflen = len;
5368 read_bytes_from_xdr_buf(xdr->buf, post_err_offset,
5369 so->so_replay.rp_buf, len);
5372 /* Note that op->status is already in network byte order: */
5373 write_bytes_to_xdr_buf(xdr->buf, post_err_offset - 4, &op->status, 4);
5377 * Encode the reply stored in the stateowner reply cache
5379 * XDR note: do not encode rp->rp_buflen: the buffer contains the
5380 * previously sent already encoded operation.
5383 nfsd4_encode_replay(struct xdr_stream *xdr, struct nfsd4_op *op)
5386 struct nfs4_replay *rp = op->replay;
5388 p = xdr_reserve_space(xdr, 8 + rp->rp_buflen);
5393 *p++ = cpu_to_be32(op->opnum);
5394 *p++ = rp->rp_status; /* already xdr'ed */
5396 p = xdr_encode_opaque_fixed(p, rp->rp_buf, rp->rp_buflen);
5399 void nfsd4_release_compoundargs(struct svc_rqst *rqstp)
5401 struct nfsd4_compoundargs *args = rqstp->rq_argp;
5403 if (args->ops != args->iops) {
5405 args->ops = args->iops;
5407 while (args->to_free) {
5408 struct svcxdr_tmpbuf *tb = args->to_free;
5409 args->to_free = tb->next;
5415 nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
5417 struct nfsd4_compoundargs *args = rqstp->rq_argp;
5419 /* svcxdr_tmp_alloc */
5420 args->to_free = NULL;
5423 args->ops = args->iops;
5424 args->rqstp = rqstp;
5426 return nfsd4_decode_compound(args);
5430 nfs4svc_encode_compoundres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
5432 struct nfsd4_compoundres *resp = rqstp->rq_resp;
5433 struct xdr_buf *buf = xdr->buf;
5436 WARN_ON_ONCE(buf->len != buf->head[0].iov_len + buf->page_len +
5437 buf->tail[0].iov_len);
5440 * Send buffer space for the following items is reserved
5441 * at the top of nfsd4_proc_compound().
5445 *p++ = resp->cstate.status;
5447 rqstp->rq_next_page = xdr->page_ptr + 1;
5449 *p++ = htonl(resp->taglen);
5450 memcpy(p, resp->tag, resp->taglen);
5451 p += XDR_QUADLEN(resp->taglen);
5452 *p++ = htonl(resp->opcnt);
5454 nfsd4_sequence_done(resp);