1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/nfs/nfs3xdr.c
5 * XDR functions to encode/decode NFSv3 RPC arguments and results.
7 * Copyright (C) 1996, 1997 Olaf Kirch
10 #include <linux/param.h>
11 #include <linux/time.h>
13 #include <linux/errno.h>
14 #include <linux/string.h>
16 #include <linux/pagemap.h>
17 #include <linux/proc_fs.h>
18 #include <linux/kdev_t.h>
19 #include <linux/sunrpc/clnt.h>
20 #include <linux/nfs.h>
21 #include <linux/nfs3.h>
22 #include <linux/nfs_fs.h>
23 #include <linux/nfsacl.h>
27 #define NFSDBG_FACILITY NFSDBG_XDR
29 /* Mapping from NFS error code to "errno" error code. */
30 #define errno_NFSERR_IO EIO
33 * Declare the space requirements for NFS arguments and replies as
34 * number of 32bit-words
36 #define NFS3_fhandle_sz (1+16)
37 #define NFS3_fh_sz (NFS3_fhandle_sz) /* shorthand */
38 #define NFS3_post_op_fh_sz (1+NFS3_fh_sz)
39 #define NFS3_sattr_sz (15)
40 #define NFS3_filename_sz (1+(NFS3_MAXNAMLEN>>2))
41 #define NFS3_path_sz (1+(NFS3_MAXPATHLEN>>2))
42 #define NFS3_fattr_sz (21)
43 #define NFS3_cookieverf_sz (NFS3_COOKIEVERFSIZE>>2)
44 #define NFS3_wcc_attr_sz (6)
45 #define NFS3_pre_op_attr_sz (1+NFS3_wcc_attr_sz)
46 #define NFS3_post_op_attr_sz (1+NFS3_fattr_sz)
47 #define NFS3_wcc_data_sz (NFS3_pre_op_attr_sz+NFS3_post_op_attr_sz)
48 #define NFS3_diropargs_sz (NFS3_fh_sz+NFS3_filename_sz)
50 #define NFS3_getattrargs_sz (NFS3_fh_sz)
51 #define NFS3_setattrargs_sz (NFS3_fh_sz+NFS3_sattr_sz+3)
52 #define NFS3_lookupargs_sz (NFS3_fh_sz+NFS3_filename_sz)
53 #define NFS3_accessargs_sz (NFS3_fh_sz+1)
54 #define NFS3_readlinkargs_sz (NFS3_fh_sz)
55 #define NFS3_readargs_sz (NFS3_fh_sz+3)
56 #define NFS3_writeargs_sz (NFS3_fh_sz+5)
57 #define NFS3_createargs_sz (NFS3_diropargs_sz+NFS3_sattr_sz)
58 #define NFS3_mkdirargs_sz (NFS3_diropargs_sz+NFS3_sattr_sz)
59 #define NFS3_symlinkargs_sz (NFS3_diropargs_sz+1+NFS3_sattr_sz)
60 #define NFS3_mknodargs_sz (NFS3_diropargs_sz+2+NFS3_sattr_sz)
61 #define NFS3_removeargs_sz (NFS3_fh_sz+NFS3_filename_sz)
62 #define NFS3_renameargs_sz (NFS3_diropargs_sz+NFS3_diropargs_sz)
63 #define NFS3_linkargs_sz (NFS3_fh_sz+NFS3_diropargs_sz)
64 #define NFS3_readdirargs_sz (NFS3_fh_sz+NFS3_cookieverf_sz+3)
65 #define NFS3_readdirplusargs_sz (NFS3_fh_sz+NFS3_cookieverf_sz+4)
66 #define NFS3_commitargs_sz (NFS3_fh_sz+3)
68 #define NFS3_getattrres_sz (1+NFS3_fattr_sz)
69 #define NFS3_setattrres_sz (1+NFS3_wcc_data_sz)
70 #define NFS3_removeres_sz (NFS3_setattrres_sz)
71 #define NFS3_lookupres_sz (1+NFS3_fh_sz+(2 * NFS3_post_op_attr_sz))
72 #define NFS3_accessres_sz (1+NFS3_post_op_attr_sz+1)
73 #define NFS3_readlinkres_sz (1+NFS3_post_op_attr_sz+1+1)
74 #define NFS3_readres_sz (1+NFS3_post_op_attr_sz+3+1)
75 #define NFS3_writeres_sz (1+NFS3_wcc_data_sz+4)
76 #define NFS3_createres_sz (1+NFS3_post_op_fh_sz+NFS3_post_op_attr_sz+NFS3_wcc_data_sz)
77 #define NFS3_renameres_sz (1+(2 * NFS3_wcc_data_sz))
78 #define NFS3_linkres_sz (1+NFS3_post_op_attr_sz+NFS3_wcc_data_sz)
79 #define NFS3_readdirres_sz (1+NFS3_post_op_attr_sz+2+1)
80 #define NFS3_fsstatres_sz (1+NFS3_post_op_attr_sz+13)
81 #define NFS3_fsinfores_sz (1+NFS3_post_op_attr_sz+12)
82 #define NFS3_pathconfres_sz (1+NFS3_post_op_attr_sz+6)
83 #define NFS3_commitres_sz (1+NFS3_wcc_data_sz+2)
85 #define ACL3_getaclargs_sz (NFS3_fh_sz+1)
86 #define ACL3_setaclargs_sz (NFS3_fh_sz+1+ \
87 XDR_QUADLEN(NFS_ACL_INLINE_BUFSIZE))
88 #define ACL3_getaclres_sz (1+NFS3_post_op_attr_sz+1+ \
89 XDR_QUADLEN(NFS_ACL_INLINE_BUFSIZE)+1)
90 #define ACL3_setaclres_sz (1+NFS3_post_op_attr_sz)
92 static int nfs3_stat_to_errno(enum nfs_stat);
95 * Map file type to S_IFMT bits
97 static const umode_t nfs_type2fmt[] = {
104 [NF3SOCK] = S_IFSOCK,
108 static struct user_namespace *rpc_userns(const struct rpc_clnt *clnt)
110 if (clnt && clnt->cl_cred)
111 return clnt->cl_cred->user_ns;
112 return &init_user_ns;
115 static struct user_namespace *rpc_rqst_userns(const struct rpc_rqst *rqstp)
118 return rpc_userns(rqstp->rq_task->tk_client);
119 return &init_user_ns;
123 * Encode/decode NFSv3 basic data types
125 * Basic NFSv3 data types are defined in section 2.5 of RFC 1813:
126 * "NFS Version 3 Protocol Specification".
128 * Not all basic data types have their own encoding and decoding
129 * functions. For run-time efficiency, some data types are encoded
133 static void encode_uint32(struct xdr_stream *xdr, u32 value)
135 __be32 *p = xdr_reserve_space(xdr, 4);
136 *p = cpu_to_be32(value);
139 static int decode_uint32(struct xdr_stream *xdr, u32 *value)
143 p = xdr_inline_decode(xdr, 4);
146 *value = be32_to_cpup(p);
150 static int decode_uint64(struct xdr_stream *xdr, u64 *value)
154 p = xdr_inline_decode(xdr, 8);
157 xdr_decode_hyper(p, value);
164 * typedef uint64 fileid3;
166 static __be32 *xdr_decode_fileid3(__be32 *p, u64 *fileid)
168 return xdr_decode_hyper(p, fileid);
171 static int decode_fileid3(struct xdr_stream *xdr, u64 *fileid)
173 return decode_uint64(xdr, fileid);
179 * typedef string filename3<>;
181 static void encode_filename3(struct xdr_stream *xdr,
182 const char *name, u32 length)
186 WARN_ON_ONCE(length > NFS3_MAXNAMLEN);
187 p = xdr_reserve_space(xdr, 4 + length);
188 xdr_encode_opaque(p, name, length);
191 static int decode_inline_filename3(struct xdr_stream *xdr,
192 const char **name, u32 *length)
197 p = xdr_inline_decode(xdr, 4);
200 count = be32_to_cpup(p);
201 if (count > NFS3_MAXNAMLEN)
202 goto out_nametoolong;
203 p = xdr_inline_decode(xdr, count);
206 *name = (const char *)p;
211 dprintk("NFS: returned filename too long: %u\n", count);
212 return -ENAMETOOLONG;
218 * typedef string nfspath3<>;
220 static void encode_nfspath3(struct xdr_stream *xdr, struct page **pages,
223 encode_uint32(xdr, length);
224 xdr_write_pages(xdr, pages, 0, length);
227 static int decode_nfspath3(struct xdr_stream *xdr)
232 p = xdr_inline_decode(xdr, 4);
235 count = be32_to_cpup(p);
236 if (unlikely(count >= xdr->buf->page_len || count > NFS3_MAXPATHLEN))
237 goto out_nametoolong;
238 recvd = xdr_read_pages(xdr, count);
239 if (unlikely(count > recvd))
241 xdr_terminate_string(xdr->buf, count);
245 dprintk("NFS: returned pathname too long: %u\n", count);
246 return -ENAMETOOLONG;
248 dprintk("NFS: server cheating in pathname result: "
249 "count %u > recvd %u\n", count, recvd);
256 * typedef uint64 cookie3
258 static __be32 *xdr_encode_cookie3(__be32 *p, u64 cookie)
260 return xdr_encode_hyper(p, cookie);
263 static int decode_cookie3(struct xdr_stream *xdr, u64 *cookie)
265 return decode_uint64(xdr, cookie);
271 * typedef opaque cookieverf3[NFS3_COOKIEVERFSIZE];
273 static __be32 *xdr_encode_cookieverf3(__be32 *p, const __be32 *verifier)
275 memcpy(p, verifier, NFS3_COOKIEVERFSIZE);
276 return p + XDR_QUADLEN(NFS3_COOKIEVERFSIZE);
279 static int decode_cookieverf3(struct xdr_stream *xdr, __be32 *verifier)
283 p = xdr_inline_decode(xdr, NFS3_COOKIEVERFSIZE);
286 memcpy(verifier, p, NFS3_COOKIEVERFSIZE);
293 * typedef opaque createverf3[NFS3_CREATEVERFSIZE];
295 static void encode_createverf3(struct xdr_stream *xdr, const __be32 *verifier)
299 p = xdr_reserve_space(xdr, NFS3_CREATEVERFSIZE);
300 memcpy(p, verifier, NFS3_CREATEVERFSIZE);
303 static int decode_writeverf3(struct xdr_stream *xdr, struct nfs_write_verifier *verifier)
307 p = xdr_inline_decode(xdr, NFS3_WRITEVERFSIZE);
310 memcpy(verifier->data, p, NFS3_WRITEVERFSIZE);
317 * typedef uint64 size3;
319 static __be32 *xdr_decode_size3(__be32 *p, u64 *size)
321 return xdr_decode_hyper(p, size);
332 #define NFS3_OK NFS_OK
334 static int decode_nfsstat3(struct xdr_stream *xdr, enum nfs_stat *status)
338 p = xdr_inline_decode(xdr, 4);
341 if (unlikely(*p != cpu_to_be32(NFS3_OK)))
346 *status = be32_to_cpup(p);
347 trace_nfs_xdr_status(xdr, (int)*status);
364 static void encode_ftype3(struct xdr_stream *xdr, const u32 type)
366 encode_uint32(xdr, type);
369 static __be32 *xdr_decode_ftype3(__be32 *p, umode_t *mode)
373 type = be32_to_cpup(p++);
376 *mode = nfs_type2fmt[type];
388 static void encode_specdata3(struct xdr_stream *xdr, const dev_t rdev)
392 p = xdr_reserve_space(xdr, 8);
393 *p++ = cpu_to_be32(MAJOR(rdev));
394 *p = cpu_to_be32(MINOR(rdev));
397 static __be32 *xdr_decode_specdata3(__be32 *p, dev_t *rdev)
399 unsigned int major, minor;
401 major = be32_to_cpup(p++);
402 minor = be32_to_cpup(p++);
403 *rdev = MKDEV(major, minor);
404 if (MAJOR(*rdev) != major || MINOR(*rdev) != minor)
413 * opaque data<NFS3_FHSIZE>;
416 static void encode_nfs_fh3(struct xdr_stream *xdr, const struct nfs_fh *fh)
420 WARN_ON_ONCE(fh->size > NFS3_FHSIZE);
421 p = xdr_reserve_space(xdr, 4 + fh->size);
422 xdr_encode_opaque(p, fh->data, fh->size);
425 static int decode_nfs_fh3(struct xdr_stream *xdr, struct nfs_fh *fh)
430 p = xdr_inline_decode(xdr, 4);
433 length = be32_to_cpup(p++);
434 if (unlikely(length > NFS3_FHSIZE))
436 p = xdr_inline_decode(xdr, length);
440 memcpy(fh->data, p, length);
443 dprintk("NFS: file handle size (%u) too big\n", length);
447 static void zero_nfs_fh3(struct nfs_fh *fh)
449 memset(fh, 0, sizeof(*fh));
460 static __be32 *xdr_encode_nfstime3(__be32 *p, const struct timespec64 *timep)
462 *p++ = cpu_to_be32((u32)timep->tv_sec);
463 *p++ = cpu_to_be32(timep->tv_nsec);
467 static __be32 *xdr_decode_nfstime3(__be32 *p, struct timespec64 *timep)
469 timep->tv_sec = be32_to_cpup(p++);
470 timep->tv_nsec = be32_to_cpup(p++);
479 * SET_TO_SERVER_TIME = 1,
480 * SET_TO_CLIENT_TIME = 2
483 * union set_mode3 switch (bool set_it) {
490 * union set_uid3 switch (bool set_it) {
497 * union set_gid3 switch (bool set_it) {
504 * union set_size3 switch (bool set_it) {
511 * union set_atime switch (time_how set_it) {
512 * case SET_TO_CLIENT_TIME:
518 * union set_mtime switch (time_how set_it) {
519 * case SET_TO_CLIENT_TIME:
534 static void encode_sattr3(struct xdr_stream *xdr, const struct iattr *attr,
535 struct user_namespace *userns)
541 * In order to make only a single xdr_reserve_space() call,
542 * pre-compute the total number of bytes to be reserved.
543 * Six boolean values, one for each set_foo field, are always
544 * present in the encoded result, so start there.
547 if (attr->ia_valid & ATTR_MODE)
549 if (attr->ia_valid & ATTR_UID)
551 if (attr->ia_valid & ATTR_GID)
553 if (attr->ia_valid & ATTR_SIZE)
555 if (attr->ia_valid & ATTR_ATIME_SET)
557 if (attr->ia_valid & ATTR_MTIME_SET)
559 p = xdr_reserve_space(xdr, nbytes);
561 if (attr->ia_valid & ATTR_MODE) {
563 *p++ = cpu_to_be32(attr->ia_mode & S_IALLUGO);
567 if (attr->ia_valid & ATTR_UID) {
569 *p++ = cpu_to_be32(from_kuid_munged(userns, attr->ia_uid));
573 if (attr->ia_valid & ATTR_GID) {
575 *p++ = cpu_to_be32(from_kgid_munged(userns, attr->ia_gid));
579 if (attr->ia_valid & ATTR_SIZE) {
581 p = xdr_encode_hyper(p, (u64)attr->ia_size);
585 if (attr->ia_valid & ATTR_ATIME_SET) {
587 p = xdr_encode_nfstime3(p, &attr->ia_atime);
588 } else if (attr->ia_valid & ATTR_ATIME) {
593 if (attr->ia_valid & ATTR_MTIME_SET) {
595 xdr_encode_nfstime3(p, &attr->ia_mtime);
596 } else if (attr->ia_valid & ATTR_MTIME) {
621 static int decode_fattr3(struct xdr_stream *xdr, struct nfs_fattr *fattr,
622 struct user_namespace *userns)
627 p = xdr_inline_decode(xdr, NFS3_fattr_sz << 2);
631 p = xdr_decode_ftype3(p, &fmode);
633 fattr->mode = (be32_to_cpup(p++) & ~S_IFMT) | fmode;
634 fattr->nlink = be32_to_cpup(p++);
635 fattr->uid = make_kuid(userns, be32_to_cpup(p++));
636 if (!uid_valid(fattr->uid))
638 fattr->gid = make_kgid(userns, be32_to_cpup(p++));
639 if (!gid_valid(fattr->gid))
642 p = xdr_decode_size3(p, &fattr->size);
643 p = xdr_decode_size3(p, &fattr->du.nfs3.used);
644 p = xdr_decode_specdata3(p, &fattr->rdev);
646 p = xdr_decode_hyper(p, &fattr->fsid.major);
647 fattr->fsid.minor = 0;
649 p = xdr_decode_fileid3(p, &fattr->fileid);
650 p = xdr_decode_nfstime3(p, &fattr->atime);
651 p = xdr_decode_nfstime3(p, &fattr->mtime);
652 xdr_decode_nfstime3(p, &fattr->ctime);
653 fattr->change_attr = nfs_timespec_to_change_attr(&fattr->ctime);
655 fattr->valid |= NFS_ATTR_FATTR_V3;
658 dprintk("NFS: returned invalid uid\n");
661 dprintk("NFS: returned invalid gid\n");
668 * union post_op_attr switch (bool attributes_follow) {
675 static int decode_post_op_attr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
676 struct user_namespace *userns)
680 p = xdr_inline_decode(xdr, 4);
684 return decode_fattr3(xdr, fattr, userns);
696 static int decode_wcc_attr(struct xdr_stream *xdr, struct nfs_fattr *fattr)
700 p = xdr_inline_decode(xdr, NFS3_wcc_attr_sz << 2);
704 fattr->valid |= NFS_ATTR_FATTR_PRESIZE
705 | NFS_ATTR_FATTR_PRECHANGE
706 | NFS_ATTR_FATTR_PREMTIME
707 | NFS_ATTR_FATTR_PRECTIME;
709 p = xdr_decode_size3(p, &fattr->pre_size);
710 p = xdr_decode_nfstime3(p, &fattr->pre_mtime);
711 xdr_decode_nfstime3(p, &fattr->pre_ctime);
712 fattr->pre_change_attr = nfs_timespec_to_change_attr(&fattr->pre_ctime);
719 * union pre_op_attr switch (bool attributes_follow) {
721 * wcc_attr attributes;
729 * pre_op_attr before;
730 * post_op_attr after;
733 static int decode_pre_op_attr(struct xdr_stream *xdr, struct nfs_fattr *fattr)
737 p = xdr_inline_decode(xdr, 4);
741 return decode_wcc_attr(xdr, fattr);
745 static int decode_wcc_data(struct xdr_stream *xdr, struct nfs_fattr *fattr,
746 struct user_namespace *userns)
750 error = decode_pre_op_attr(xdr, fattr);
753 error = decode_post_op_attr(xdr, fattr, userns);
761 * union post_op_fh3 switch (bool handle_follows) {
768 static int decode_post_op_fh3(struct xdr_stream *xdr, struct nfs_fh *fh)
770 __be32 *p = xdr_inline_decode(xdr, 4);
774 return decode_nfs_fh3(xdr, fh);
782 * struct diropargs3 {
787 static void encode_diropargs3(struct xdr_stream *xdr, const struct nfs_fh *fh,
788 const char *name, u32 length)
790 encode_nfs_fh3(xdr, fh);
791 encode_filename3(xdr, name, length);
796 * NFSv3 XDR encode functions
798 * NFSv3 argument types are defined in section 3.3 of RFC 1813:
799 * "NFS Version 3 Protocol Specification".
805 * struct GETATTR3args {
809 static void nfs3_xdr_enc_getattr3args(struct rpc_rqst *req,
810 struct xdr_stream *xdr,
813 const struct nfs_fh *fh = data;
815 encode_nfs_fh3(xdr, fh);
821 * union sattrguard3 switch (bool check) {
823 * nfstime3 obj_ctime;
828 * struct SETATTR3args {
830 * sattr3 new_attributes;
834 static void encode_sattrguard3(struct xdr_stream *xdr,
835 const struct nfs3_sattrargs *args)
840 p = xdr_reserve_space(xdr, 4 + 8);
842 xdr_encode_nfstime3(p, &args->guardtime);
844 p = xdr_reserve_space(xdr, 4);
849 static void nfs3_xdr_enc_setattr3args(struct rpc_rqst *req,
850 struct xdr_stream *xdr,
853 const struct nfs3_sattrargs *args = data;
854 encode_nfs_fh3(xdr, args->fh);
855 encode_sattr3(xdr, args->sattr, rpc_rqst_userns(req));
856 encode_sattrguard3(xdr, args);
862 * struct LOOKUP3args {
866 static void nfs3_xdr_enc_lookup3args(struct rpc_rqst *req,
867 struct xdr_stream *xdr,
870 const struct nfs3_diropargs *args = data;
872 encode_diropargs3(xdr, args->fh, args->name, args->len);
878 * struct ACCESS3args {
883 static void encode_access3args(struct xdr_stream *xdr,
884 const struct nfs3_accessargs *args)
886 encode_nfs_fh3(xdr, args->fh);
887 encode_uint32(xdr, args->access);
890 static void nfs3_xdr_enc_access3args(struct rpc_rqst *req,
891 struct xdr_stream *xdr,
894 const struct nfs3_accessargs *args = data;
896 encode_access3args(xdr, args);
900 * 3.3.5 READLINK3args
902 * struct READLINK3args {
906 static void nfs3_xdr_enc_readlink3args(struct rpc_rqst *req,
907 struct xdr_stream *xdr,
910 const struct nfs3_readlinkargs *args = data;
912 encode_nfs_fh3(xdr, args->fh);
913 rpc_prepare_reply_pages(req, args->pages, args->pgbase,
914 args->pglen, NFS3_readlinkres_sz);
926 static void encode_read3args(struct xdr_stream *xdr,
927 const struct nfs_pgio_args *args)
931 encode_nfs_fh3(xdr, args->fh);
933 p = xdr_reserve_space(xdr, 8 + 4);
934 p = xdr_encode_hyper(p, args->offset);
935 *p = cpu_to_be32(args->count);
938 static void nfs3_xdr_enc_read3args(struct rpc_rqst *req,
939 struct xdr_stream *xdr,
942 const struct nfs_pgio_args *args = data;
943 unsigned int replen = args->replen ? args->replen : NFS3_readres_sz;
945 encode_read3args(xdr, args);
946 rpc_prepare_reply_pages(req, args->pages, args->pgbase,
947 args->count, replen);
948 req->rq_rcv_buf.flags |= XDRBUF_READ;
960 * struct WRITE3args {
968 static void encode_write3args(struct xdr_stream *xdr,
969 const struct nfs_pgio_args *args)
973 encode_nfs_fh3(xdr, args->fh);
975 p = xdr_reserve_space(xdr, 8 + 4 + 4 + 4);
976 p = xdr_encode_hyper(p, args->offset);
977 *p++ = cpu_to_be32(args->count);
978 *p++ = cpu_to_be32(args->stable);
979 *p = cpu_to_be32(args->count);
980 xdr_write_pages(xdr, args->pages, args->pgbase, args->count);
983 static void nfs3_xdr_enc_write3args(struct rpc_rqst *req,
984 struct xdr_stream *xdr,
987 const struct nfs_pgio_args *args = data;
989 encode_write3args(xdr, args);
990 xdr->buf->flags |= XDRBUF_WRITE;
1002 * union createhow3 switch (createmode3 mode) {
1005 * sattr3 obj_attributes;
1010 * struct CREATE3args {
1015 static void encode_createhow3(struct xdr_stream *xdr,
1016 const struct nfs3_createargs *args,
1017 struct user_namespace *userns)
1019 encode_uint32(xdr, args->createmode);
1020 switch (args->createmode) {
1021 case NFS3_CREATE_UNCHECKED:
1022 case NFS3_CREATE_GUARDED:
1023 encode_sattr3(xdr, args->sattr, userns);
1025 case NFS3_CREATE_EXCLUSIVE:
1026 encode_createverf3(xdr, args->verifier);
1033 static void nfs3_xdr_enc_create3args(struct rpc_rqst *req,
1034 struct xdr_stream *xdr,
1037 const struct nfs3_createargs *args = data;
1039 encode_diropargs3(xdr, args->fh, args->name, args->len);
1040 encode_createhow3(xdr, args, rpc_rqst_userns(req));
1046 * struct MKDIR3args {
1048 * sattr3 attributes;
1051 static void nfs3_xdr_enc_mkdir3args(struct rpc_rqst *req,
1052 struct xdr_stream *xdr,
1055 const struct nfs3_mkdirargs *args = data;
1057 encode_diropargs3(xdr, args->fh, args->name, args->len);
1058 encode_sattr3(xdr, args->sattr, rpc_rqst_userns(req));
1062 * 3.3.10 SYMLINK3args
1064 * struct symlinkdata3 {
1065 * sattr3 symlink_attributes;
1066 * nfspath3 symlink_data;
1069 * struct SYMLINK3args {
1071 * symlinkdata3 symlink;
1074 static void encode_symlinkdata3(struct xdr_stream *xdr,
1076 struct user_namespace *userns)
1078 const struct nfs3_symlinkargs *args = data;
1080 encode_sattr3(xdr, args->sattr, userns);
1081 encode_nfspath3(xdr, args->pages, args->pathlen);
1084 static void nfs3_xdr_enc_symlink3args(struct rpc_rqst *req,
1085 struct xdr_stream *xdr,
1088 const struct nfs3_symlinkargs *args = data;
1090 encode_diropargs3(xdr, args->fromfh, args->fromname, args->fromlen);
1091 encode_symlinkdata3(xdr, args, rpc_rqst_userns(req));
1092 xdr->buf->flags |= XDRBUF_WRITE;
1098 * struct devicedata3 {
1099 * sattr3 dev_attributes;
1103 * union mknoddata3 switch (ftype3 type) {
1106 * devicedata3 device;
1109 * sattr3 pipe_attributes;
1114 * struct MKNOD3args {
1119 static void encode_devicedata3(struct xdr_stream *xdr,
1120 const struct nfs3_mknodargs *args,
1121 struct user_namespace *userns)
1123 encode_sattr3(xdr, args->sattr, userns);
1124 encode_specdata3(xdr, args->rdev);
1127 static void encode_mknoddata3(struct xdr_stream *xdr,
1128 const struct nfs3_mknodargs *args,
1129 struct user_namespace *userns)
1131 encode_ftype3(xdr, args->type);
1132 switch (args->type) {
1135 encode_devicedata3(xdr, args, userns);
1139 encode_sattr3(xdr, args->sattr, userns);
1149 static void nfs3_xdr_enc_mknod3args(struct rpc_rqst *req,
1150 struct xdr_stream *xdr,
1153 const struct nfs3_mknodargs *args = data;
1155 encode_diropargs3(xdr, args->fh, args->name, args->len);
1156 encode_mknoddata3(xdr, args, rpc_rqst_userns(req));
1160 * 3.3.12 REMOVE3args
1162 * struct REMOVE3args {
1163 * diropargs3 object;
1166 static void nfs3_xdr_enc_remove3args(struct rpc_rqst *req,
1167 struct xdr_stream *xdr,
1170 const struct nfs_removeargs *args = data;
1172 encode_diropargs3(xdr, args->fh, args->name.name, args->name.len);
1176 * 3.3.14 RENAME3args
1178 * struct RENAME3args {
1183 static void nfs3_xdr_enc_rename3args(struct rpc_rqst *req,
1184 struct xdr_stream *xdr,
1187 const struct nfs_renameargs *args = data;
1188 const struct qstr *old = args->old_name;
1189 const struct qstr *new = args->new_name;
1191 encode_diropargs3(xdr, args->old_dir, old->name, old->len);
1192 encode_diropargs3(xdr, args->new_dir, new->name, new->len);
1198 * struct LINK3args {
1203 static void nfs3_xdr_enc_link3args(struct rpc_rqst *req,
1204 struct xdr_stream *xdr,
1207 const struct nfs3_linkargs *args = data;
1209 encode_nfs_fh3(xdr, args->fromfh);
1210 encode_diropargs3(xdr, args->tofh, args->toname, args->tolen);
1214 * 3.3.16 READDIR3args
1216 * struct READDIR3args {
1219 * cookieverf3 cookieverf;
1223 static void encode_readdir3args(struct xdr_stream *xdr,
1224 const struct nfs3_readdirargs *args)
1228 encode_nfs_fh3(xdr, args->fh);
1230 p = xdr_reserve_space(xdr, 8 + NFS3_COOKIEVERFSIZE + 4);
1231 p = xdr_encode_cookie3(p, args->cookie);
1232 p = xdr_encode_cookieverf3(p, args->verf);
1233 *p = cpu_to_be32(args->count);
1236 static void nfs3_xdr_enc_readdir3args(struct rpc_rqst *req,
1237 struct xdr_stream *xdr,
1240 const struct nfs3_readdirargs *args = data;
1242 encode_readdir3args(xdr, args);
1243 rpc_prepare_reply_pages(req, args->pages, 0,
1244 args->count, NFS3_readdirres_sz);
1248 * 3.3.17 READDIRPLUS3args
1250 * struct READDIRPLUS3args {
1253 * cookieverf3 cookieverf;
1258 static void encode_readdirplus3args(struct xdr_stream *xdr,
1259 const struct nfs3_readdirargs *args)
1263 encode_nfs_fh3(xdr, args->fh);
1265 p = xdr_reserve_space(xdr, 8 + NFS3_COOKIEVERFSIZE + 4 + 4);
1266 p = xdr_encode_cookie3(p, args->cookie);
1267 p = xdr_encode_cookieverf3(p, args->verf);
1270 * readdirplus: need dircount + buffer size.
1271 * We just make sure we make dircount big enough
1273 *p++ = cpu_to_be32(args->count >> 3);
1275 *p = cpu_to_be32(args->count);
1278 static void nfs3_xdr_enc_readdirplus3args(struct rpc_rqst *req,
1279 struct xdr_stream *xdr,
1282 const struct nfs3_readdirargs *args = data;
1284 encode_readdirplus3args(xdr, args);
1285 rpc_prepare_reply_pages(req, args->pages, 0,
1286 args->count, NFS3_readdirres_sz);
1290 * 3.3.21 COMMIT3args
1292 * struct COMMIT3args {
1298 static void encode_commit3args(struct xdr_stream *xdr,
1299 const struct nfs_commitargs *args)
1303 encode_nfs_fh3(xdr, args->fh);
1305 p = xdr_reserve_space(xdr, 8 + 4);
1306 p = xdr_encode_hyper(p, args->offset);
1307 *p = cpu_to_be32(args->count);
1310 static void nfs3_xdr_enc_commit3args(struct rpc_rqst *req,
1311 struct xdr_stream *xdr,
1314 const struct nfs_commitargs *args = data;
1316 encode_commit3args(xdr, args);
1319 #ifdef CONFIG_NFS_V3_ACL
1321 static void nfs3_xdr_enc_getacl3args(struct rpc_rqst *req,
1322 struct xdr_stream *xdr,
1325 const struct nfs3_getaclargs *args = data;
1327 encode_nfs_fh3(xdr, args->fh);
1328 encode_uint32(xdr, args->mask);
1329 if (args->mask & (NFS_ACL | NFS_DFACL)) {
1330 rpc_prepare_reply_pages(req, args->pages, 0,
1331 NFSACL_MAXPAGES << PAGE_SHIFT,
1333 req->rq_rcv_buf.flags |= XDRBUF_SPARSE_PAGES;
1337 static void nfs3_xdr_enc_setacl3args(struct rpc_rqst *req,
1338 struct xdr_stream *xdr,
1341 const struct nfs3_setaclargs *args = data;
1345 encode_nfs_fh3(xdr, NFS_FH(args->inode));
1346 encode_uint32(xdr, args->mask);
1348 base = req->rq_slen;
1349 if (args->npages != 0)
1350 xdr_write_pages(xdr, args->pages, 0, args->len);
1352 xdr_reserve_space(xdr, args->len);
1354 error = nfsacl_encode(xdr->buf, base, args->inode,
1355 (args->mask & NFS_ACL) ?
1356 args->acl_access : NULL, 1, 0);
1357 /* FIXME: this is just broken */
1359 error = nfsacl_encode(xdr->buf, base + error, args->inode,
1360 (args->mask & NFS_DFACL) ?
1361 args->acl_default : NULL, 1,
1366 #endif /* CONFIG_NFS_V3_ACL */
1369 * NFSv3 XDR decode functions
1371 * NFSv3 result types are defined in section 3.3 of RFC 1813:
1372 * "NFS Version 3 Protocol Specification".
1378 * struct GETATTR3resok {
1379 * fattr3 obj_attributes;
1382 * union GETATTR3res switch (nfsstat3 status) {
1384 * GETATTR3resok resok;
1389 static int nfs3_xdr_dec_getattr3res(struct rpc_rqst *req,
1390 struct xdr_stream *xdr,
1393 enum nfs_stat status;
1396 error = decode_nfsstat3(xdr, &status);
1397 if (unlikely(error))
1399 if (status != NFS3_OK)
1401 error = decode_fattr3(xdr, result, rpc_rqst_userns(req));
1405 return nfs3_stat_to_errno(status);
1411 * struct SETATTR3resok {
1415 * struct SETATTR3resfail {
1419 * union SETATTR3res switch (nfsstat3 status) {
1421 * SETATTR3resok resok;
1423 * SETATTR3resfail resfail;
1426 static int nfs3_xdr_dec_setattr3res(struct rpc_rqst *req,
1427 struct xdr_stream *xdr,
1430 enum nfs_stat status;
1433 error = decode_nfsstat3(xdr, &status);
1434 if (unlikely(error))
1436 error = decode_wcc_data(xdr, result, rpc_rqst_userns(req));
1437 if (unlikely(error))
1439 if (status != NFS3_OK)
1444 return nfs3_stat_to_errno(status);
1450 * struct LOOKUP3resok {
1452 * post_op_attr obj_attributes;
1453 * post_op_attr dir_attributes;
1456 * struct LOOKUP3resfail {
1457 * post_op_attr dir_attributes;
1460 * union LOOKUP3res switch (nfsstat3 status) {
1462 * LOOKUP3resok resok;
1464 * LOOKUP3resfail resfail;
1467 static int nfs3_xdr_dec_lookup3res(struct rpc_rqst *req,
1468 struct xdr_stream *xdr,
1471 struct user_namespace *userns = rpc_rqst_userns(req);
1472 struct nfs3_diropres *result = data;
1473 enum nfs_stat status;
1476 error = decode_nfsstat3(xdr, &status);
1477 if (unlikely(error))
1479 if (status != NFS3_OK)
1481 error = decode_nfs_fh3(xdr, result->fh);
1482 if (unlikely(error))
1484 error = decode_post_op_attr(xdr, result->fattr, userns);
1485 if (unlikely(error))
1487 error = decode_post_op_attr(xdr, result->dir_attr, userns);
1491 error = decode_post_op_attr(xdr, result->dir_attr, userns);
1492 if (unlikely(error))
1494 return nfs3_stat_to_errno(status);
1500 * struct ACCESS3resok {
1501 * post_op_attr obj_attributes;
1505 * struct ACCESS3resfail {
1506 * post_op_attr obj_attributes;
1509 * union ACCESS3res switch (nfsstat3 status) {
1511 * ACCESS3resok resok;
1513 * ACCESS3resfail resfail;
1516 static int nfs3_xdr_dec_access3res(struct rpc_rqst *req,
1517 struct xdr_stream *xdr,
1520 struct nfs3_accessres *result = data;
1521 enum nfs_stat status;
1524 error = decode_nfsstat3(xdr, &status);
1525 if (unlikely(error))
1527 error = decode_post_op_attr(xdr, result->fattr, rpc_rqst_userns(req));
1528 if (unlikely(error))
1530 if (status != NFS3_OK)
1532 error = decode_uint32(xdr, &result->access);
1536 return nfs3_stat_to_errno(status);
1540 * 3.3.5 READLINK3res
1542 * struct READLINK3resok {
1543 * post_op_attr symlink_attributes;
1547 * struct READLINK3resfail {
1548 * post_op_attr symlink_attributes;
1551 * union READLINK3res switch (nfsstat3 status) {
1553 * READLINK3resok resok;
1555 * READLINK3resfail resfail;
1558 static int nfs3_xdr_dec_readlink3res(struct rpc_rqst *req,
1559 struct xdr_stream *xdr,
1562 enum nfs_stat status;
1565 error = decode_nfsstat3(xdr, &status);
1566 if (unlikely(error))
1568 error = decode_post_op_attr(xdr, result, rpc_rqst_userns(req));
1569 if (unlikely(error))
1571 if (status != NFS3_OK)
1573 error = decode_nfspath3(xdr);
1577 return nfs3_stat_to_errno(status);
1583 * struct READ3resok {
1584 * post_op_attr file_attributes;
1590 * struct READ3resfail {
1591 * post_op_attr file_attributes;
1594 * union READ3res switch (nfsstat3 status) {
1598 * READ3resfail resfail;
1601 static int decode_read3resok(struct xdr_stream *xdr,
1602 struct nfs_pgio_res *result)
1604 u32 eof, count, ocount, recvd;
1607 p = xdr_inline_decode(xdr, 4 + 4 + 4);
1610 count = be32_to_cpup(p++);
1611 eof = be32_to_cpup(p++);
1612 ocount = be32_to_cpup(p++);
1613 if (unlikely(ocount != count))
1615 recvd = xdr_read_pages(xdr, count);
1616 if (unlikely(count > recvd))
1620 result->count = count;
1623 dprintk("NFS: READ count doesn't match length of opaque: "
1624 "count %u != ocount %u\n", count, ocount);
1627 dprintk("NFS: server cheating in read result: "
1628 "count %u > recvd %u\n", count, recvd);
1634 static int nfs3_xdr_dec_read3res(struct rpc_rqst *req, struct xdr_stream *xdr,
1637 struct nfs_pgio_res *result = data;
1639 enum nfs_stat status;
1642 pos = xdr_stream_pos(xdr);
1643 error = decode_nfsstat3(xdr, &status);
1644 if (unlikely(error))
1646 error = decode_post_op_attr(xdr, result->fattr, rpc_rqst_userns(req));
1647 if (unlikely(error))
1649 result->op_status = status;
1650 if (status != NFS3_OK)
1652 result->replen = 4 + ((xdr_stream_pos(xdr) - pos) >> 2);
1653 error = decode_read3resok(xdr, result);
1657 return nfs3_stat_to_errno(status);
1669 * struct WRITE3resok {
1670 * wcc_data file_wcc;
1672 * stable_how committed;
1676 * struct WRITE3resfail {
1677 * wcc_data file_wcc;
1680 * union WRITE3res switch (nfsstat3 status) {
1682 * WRITE3resok resok;
1684 * WRITE3resfail resfail;
1687 static int decode_write3resok(struct xdr_stream *xdr,
1688 struct nfs_pgio_res *result)
1692 p = xdr_inline_decode(xdr, 4 + 4);
1695 result->count = be32_to_cpup(p++);
1696 result->verf->committed = be32_to_cpup(p++);
1697 if (unlikely(result->verf->committed > NFS_FILE_SYNC))
1699 if (decode_writeverf3(xdr, &result->verf->verifier))
1701 return result->count;
1703 dprintk("NFS: bad stable_how value: %u\n", result->verf->committed);
1707 static int nfs3_xdr_dec_write3res(struct rpc_rqst *req, struct xdr_stream *xdr,
1710 struct nfs_pgio_res *result = data;
1711 enum nfs_stat status;
1714 error = decode_nfsstat3(xdr, &status);
1715 if (unlikely(error))
1717 error = decode_wcc_data(xdr, result->fattr, rpc_rqst_userns(req));
1718 if (unlikely(error))
1720 result->op_status = status;
1721 if (status != NFS3_OK)
1723 error = decode_write3resok(xdr, result);
1727 return nfs3_stat_to_errno(status);
1733 * struct CREATE3resok {
1735 * post_op_attr obj_attributes;
1739 * struct CREATE3resfail {
1743 * union CREATE3res switch (nfsstat3 status) {
1745 * CREATE3resok resok;
1747 * CREATE3resfail resfail;
1750 static int decode_create3resok(struct xdr_stream *xdr,
1751 struct nfs3_diropres *result,
1752 struct user_namespace *userns)
1756 error = decode_post_op_fh3(xdr, result->fh);
1757 if (unlikely(error))
1759 error = decode_post_op_attr(xdr, result->fattr, userns);
1760 if (unlikely(error))
1762 /* The server isn't required to return a file handle.
1763 * If it didn't, force the client to perform a LOOKUP
1764 * to determine the correct file handle and attribute
1765 * values for the new object. */
1766 if (result->fh->size == 0)
1767 result->fattr->valid = 0;
1768 error = decode_wcc_data(xdr, result->dir_attr, userns);
1773 static int nfs3_xdr_dec_create3res(struct rpc_rqst *req,
1774 struct xdr_stream *xdr,
1777 struct user_namespace *userns = rpc_rqst_userns(req);
1778 struct nfs3_diropres *result = data;
1779 enum nfs_stat status;
1782 error = decode_nfsstat3(xdr, &status);
1783 if (unlikely(error))
1785 if (status != NFS3_OK)
1787 error = decode_create3resok(xdr, result, userns);
1791 error = decode_wcc_data(xdr, result->dir_attr, userns);
1792 if (unlikely(error))
1794 return nfs3_stat_to_errno(status);
1800 * struct REMOVE3resok {
1804 * struct REMOVE3resfail {
1808 * union REMOVE3res switch (nfsstat3 status) {
1810 * REMOVE3resok resok;
1812 * REMOVE3resfail resfail;
1815 static int nfs3_xdr_dec_remove3res(struct rpc_rqst *req,
1816 struct xdr_stream *xdr,
1819 struct nfs_removeres *result = data;
1820 enum nfs_stat status;
1823 error = decode_nfsstat3(xdr, &status);
1824 if (unlikely(error))
1826 error = decode_wcc_data(xdr, result->dir_attr, rpc_rqst_userns(req));
1827 if (unlikely(error))
1829 if (status != NFS3_OK)
1834 return nfs3_stat_to_errno(status);
1840 * struct RENAME3resok {
1841 * wcc_data fromdir_wcc;
1842 * wcc_data todir_wcc;
1845 * struct RENAME3resfail {
1846 * wcc_data fromdir_wcc;
1847 * wcc_data todir_wcc;
1850 * union RENAME3res switch (nfsstat3 status) {
1852 * RENAME3resok resok;
1854 * RENAME3resfail resfail;
1857 static int nfs3_xdr_dec_rename3res(struct rpc_rqst *req,
1858 struct xdr_stream *xdr,
1861 struct user_namespace *userns = rpc_rqst_userns(req);
1862 struct nfs_renameres *result = data;
1863 enum nfs_stat status;
1866 error = decode_nfsstat3(xdr, &status);
1867 if (unlikely(error))
1869 error = decode_wcc_data(xdr, result->old_fattr, userns);
1870 if (unlikely(error))
1872 error = decode_wcc_data(xdr, result->new_fattr, userns);
1873 if (unlikely(error))
1875 if (status != NFS3_OK)
1880 return nfs3_stat_to_errno(status);
1886 * struct LINK3resok {
1887 * post_op_attr file_attributes;
1888 * wcc_data linkdir_wcc;
1891 * struct LINK3resfail {
1892 * post_op_attr file_attributes;
1893 * wcc_data linkdir_wcc;
1896 * union LINK3res switch (nfsstat3 status) {
1900 * LINK3resfail resfail;
1903 static int nfs3_xdr_dec_link3res(struct rpc_rqst *req, struct xdr_stream *xdr,
1906 struct user_namespace *userns = rpc_rqst_userns(req);
1907 struct nfs3_linkres *result = data;
1908 enum nfs_stat status;
1911 error = decode_nfsstat3(xdr, &status);
1912 if (unlikely(error))
1914 error = decode_post_op_attr(xdr, result->fattr, userns);
1915 if (unlikely(error))
1917 error = decode_wcc_data(xdr, result->dir_attr, userns);
1918 if (unlikely(error))
1920 if (status != NFS3_OK)
1925 return nfs3_stat_to_errno(status);
1929 * nfs3_decode_dirent - Decode a single NFSv3 directory entry stored in
1930 * the local page cache
1931 * @xdr: XDR stream where entry resides
1932 * @entry: buffer to fill in with entry data
1933 * @plus: boolean indicating whether this should be a readdirplus entry
1935 * Returns zero if successful, otherwise a negative errno value is
1938 * This function is not invoked during READDIR reply decoding, but
1939 * rather whenever an application invokes the getdents(2) system call
1940 * on a directory already in our cache.
1948 * fhandle3 filehandle;
1949 * post_op_attr3 attributes;
1950 * entry3 *nextentry;
1954 * struct entryplus3 {
1958 * post_op_attr name_attributes;
1959 * post_op_fh3 name_handle;
1960 * entryplus3 *nextentry;
1963 int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
1966 struct user_namespace *userns = rpc_userns(entry->server->client);
1971 p = xdr_inline_decode(xdr, 4);
1974 if (*p == xdr_zero) {
1975 p = xdr_inline_decode(xdr, 4);
1984 error = decode_fileid3(xdr, &entry->ino);
1985 if (unlikely(error))
1988 error = decode_inline_filename3(xdr, &entry->name, &entry->len);
1989 if (unlikely(error))
1990 return error == -ENAMETOOLONG ? -ENAMETOOLONG : -EAGAIN;
1992 error = decode_cookie3(xdr, &new_cookie);
1993 if (unlikely(error))
1996 entry->d_type = DT_UNKNOWN;
1999 entry->fattr->valid = 0;
2000 error = decode_post_op_attr(xdr, entry->fattr, userns);
2001 if (unlikely(error))
2003 if (entry->fattr->valid & NFS_ATTR_FATTR_V3)
2004 entry->d_type = nfs_umode_to_dtype(entry->fattr->mode);
2006 if (entry->fattr->fileid != entry->ino) {
2007 entry->fattr->mounted_on_fileid = entry->ino;
2008 entry->fattr->valid |= NFS_ATTR_FATTR_MOUNTED_ON_FILEID;
2011 /* In fact, a post_op_fh3: */
2012 p = xdr_inline_decode(xdr, 4);
2015 if (*p != xdr_zero) {
2016 error = decode_nfs_fh3(xdr, entry->fh);
2017 if (unlikely(error))
2020 zero_nfs_fh3(entry->fh);
2023 entry->prev_cookie = entry->cookie;
2024 entry->cookie = new_cookie;
2030 * 3.3.16 READDIR3res
2037 * struct READDIR3resok {
2038 * post_op_attr dir_attributes;
2039 * cookieverf3 cookieverf;
2043 * struct READDIR3resfail {
2044 * post_op_attr dir_attributes;
2047 * union READDIR3res switch (nfsstat3 status) {
2049 * READDIR3resok resok;
2051 * READDIR3resfail resfail;
2054 * Read the directory contents into the page cache, but otherwise
2055 * don't touch them. The actual decoding is done by nfs3_decode_entry()
2056 * during subsequent nfs_readdir() calls.
2058 static int decode_dirlist3(struct xdr_stream *xdr)
2060 return xdr_read_pages(xdr, xdr->buf->page_len);
2063 static int decode_readdir3resok(struct xdr_stream *xdr,
2064 struct nfs3_readdirres *result,
2065 struct user_namespace *userns)
2069 error = decode_post_op_attr(xdr, result->dir_attr, userns);
2070 if (unlikely(error))
2072 /* XXX: do we need to check if result->verf != NULL ? */
2073 error = decode_cookieverf3(xdr, result->verf);
2074 if (unlikely(error))
2076 error = decode_dirlist3(xdr);
2081 static int nfs3_xdr_dec_readdir3res(struct rpc_rqst *req,
2082 struct xdr_stream *xdr,
2085 struct nfs3_readdirres *result = data;
2086 enum nfs_stat status;
2089 error = decode_nfsstat3(xdr, &status);
2090 if (unlikely(error))
2092 if (status != NFS3_OK)
2094 error = decode_readdir3resok(xdr, result, rpc_rqst_userns(req));
2098 error = decode_post_op_attr(xdr, result->dir_attr, rpc_rqst_userns(req));
2099 if (unlikely(error))
2101 return nfs3_stat_to_errno(status);
2107 * struct FSSTAT3resok {
2108 * post_op_attr obj_attributes;
2118 * struct FSSTAT3resfail {
2119 * post_op_attr obj_attributes;
2122 * union FSSTAT3res switch (nfsstat3 status) {
2124 * FSSTAT3resok resok;
2126 * FSSTAT3resfail resfail;
2129 static int decode_fsstat3resok(struct xdr_stream *xdr,
2130 struct nfs_fsstat *result)
2134 p = xdr_inline_decode(xdr, 8 * 6 + 4);
2137 p = xdr_decode_size3(p, &result->tbytes);
2138 p = xdr_decode_size3(p, &result->fbytes);
2139 p = xdr_decode_size3(p, &result->abytes);
2140 p = xdr_decode_size3(p, &result->tfiles);
2141 p = xdr_decode_size3(p, &result->ffiles);
2142 xdr_decode_size3(p, &result->afiles);
2143 /* ignore invarsec */
2147 static int nfs3_xdr_dec_fsstat3res(struct rpc_rqst *req,
2148 struct xdr_stream *xdr,
2151 struct nfs_fsstat *result = data;
2152 enum nfs_stat status;
2155 error = decode_nfsstat3(xdr, &status);
2156 if (unlikely(error))
2158 error = decode_post_op_attr(xdr, result->fattr, rpc_rqst_userns(req));
2159 if (unlikely(error))
2161 if (status != NFS3_OK)
2163 error = decode_fsstat3resok(xdr, result);
2167 return nfs3_stat_to_errno(status);
2173 * struct FSINFO3resok {
2174 * post_op_attr obj_attributes;
2182 * size3 maxfilesize;
2183 * nfstime3 time_delta;
2184 * uint32 properties;
2187 * struct FSINFO3resfail {
2188 * post_op_attr obj_attributes;
2191 * union FSINFO3res switch (nfsstat3 status) {
2193 * FSINFO3resok resok;
2195 * FSINFO3resfail resfail;
2198 static int decode_fsinfo3resok(struct xdr_stream *xdr,
2199 struct nfs_fsinfo *result)
2203 p = xdr_inline_decode(xdr, 4 * 7 + 8 + 8 + 4);
2206 result->rtmax = be32_to_cpup(p++);
2207 result->rtpref = be32_to_cpup(p++);
2208 result->rtmult = be32_to_cpup(p++);
2209 result->wtmax = be32_to_cpup(p++);
2210 result->wtpref = be32_to_cpup(p++);
2211 result->wtmult = be32_to_cpup(p++);
2212 result->dtpref = be32_to_cpup(p++);
2213 p = xdr_decode_size3(p, &result->maxfilesize);
2214 xdr_decode_nfstime3(p, &result->time_delta);
2216 /* ignore properties */
2217 result->lease_time = 0;
2221 static int nfs3_xdr_dec_fsinfo3res(struct rpc_rqst *req,
2222 struct xdr_stream *xdr,
2225 struct nfs_fsinfo *result = data;
2226 enum nfs_stat status;
2229 error = decode_nfsstat3(xdr, &status);
2230 if (unlikely(error))
2232 error = decode_post_op_attr(xdr, result->fattr, rpc_rqst_userns(req));
2233 if (unlikely(error))
2235 if (status != NFS3_OK)
2237 error = decode_fsinfo3resok(xdr, result);
2241 return nfs3_stat_to_errno(status);
2245 * 3.3.20 PATHCONF3res
2247 * struct PATHCONF3resok {
2248 * post_op_attr obj_attributes;
2252 * bool chown_restricted;
2253 * bool case_insensitive;
2254 * bool case_preserving;
2257 * struct PATHCONF3resfail {
2258 * post_op_attr obj_attributes;
2261 * union PATHCONF3res switch (nfsstat3 status) {
2263 * PATHCONF3resok resok;
2265 * PATHCONF3resfail resfail;
2268 static int decode_pathconf3resok(struct xdr_stream *xdr,
2269 struct nfs_pathconf *result)
2273 p = xdr_inline_decode(xdr, 4 * 6);
2276 result->max_link = be32_to_cpup(p++);
2277 result->max_namelen = be32_to_cpup(p);
2278 /* ignore remaining fields */
2282 static int nfs3_xdr_dec_pathconf3res(struct rpc_rqst *req,
2283 struct xdr_stream *xdr,
2286 struct nfs_pathconf *result = data;
2287 enum nfs_stat status;
2290 error = decode_nfsstat3(xdr, &status);
2291 if (unlikely(error))
2293 error = decode_post_op_attr(xdr, result->fattr, rpc_rqst_userns(req));
2294 if (unlikely(error))
2296 if (status != NFS3_OK)
2298 error = decode_pathconf3resok(xdr, result);
2302 return nfs3_stat_to_errno(status);
2308 * struct COMMIT3resok {
2309 * wcc_data file_wcc;
2313 * struct COMMIT3resfail {
2314 * wcc_data file_wcc;
2317 * union COMMIT3res switch (nfsstat3 status) {
2319 * COMMIT3resok resok;
2321 * COMMIT3resfail resfail;
2324 static int nfs3_xdr_dec_commit3res(struct rpc_rqst *req,
2325 struct xdr_stream *xdr,
2328 struct nfs_commitres *result = data;
2329 struct nfs_writeverf *verf = result->verf;
2330 enum nfs_stat status;
2333 error = decode_nfsstat3(xdr, &status);
2334 if (unlikely(error))
2336 error = decode_wcc_data(xdr, result->fattr, rpc_rqst_userns(req));
2337 if (unlikely(error))
2339 result->op_status = status;
2340 if (status != NFS3_OK)
2342 error = decode_writeverf3(xdr, &verf->verifier);
2344 verf->committed = NFS_FILE_SYNC;
2348 return nfs3_stat_to_errno(status);
2351 #ifdef CONFIG_NFS_V3_ACL
2353 static inline int decode_getacl3resok(struct xdr_stream *xdr,
2354 struct nfs3_getaclres *result,
2355 struct user_namespace *userns)
2357 struct posix_acl **acl;
2358 unsigned int *aclcnt;
2362 error = decode_post_op_attr(xdr, result->fattr, userns);
2363 if (unlikely(error))
2365 error = decode_uint32(xdr, &result->mask);
2366 if (unlikely(error))
2369 if (result->mask & ~(NFS_ACL|NFS_ACLCNT|NFS_DFACL|NFS_DFACLCNT))
2372 hdrlen = xdr_stream_pos(xdr);
2375 if (result->mask & NFS_ACL)
2376 acl = &result->acl_access;
2378 if (result->mask & NFS_ACLCNT)
2379 aclcnt = &result->acl_access_count;
2380 error = nfsacl_decode(xdr->buf, hdrlen, aclcnt, acl);
2381 if (unlikely(error <= 0))
2385 if (result->mask & NFS_DFACL)
2386 acl = &result->acl_default;
2388 if (result->mask & NFS_DFACLCNT)
2389 aclcnt = &result->acl_default_count;
2390 error = nfsacl_decode(xdr->buf, hdrlen + error, aclcnt, acl);
2391 if (unlikely(error <= 0))
2398 static int nfs3_xdr_dec_getacl3res(struct rpc_rqst *req,
2399 struct xdr_stream *xdr,
2402 enum nfs_stat status;
2405 error = decode_nfsstat3(xdr, &status);
2406 if (unlikely(error))
2408 if (status != NFS3_OK)
2410 error = decode_getacl3resok(xdr, result, rpc_rqst_userns(req));
2414 return nfs3_stat_to_errno(status);
2417 static int nfs3_xdr_dec_setacl3res(struct rpc_rqst *req,
2418 struct xdr_stream *xdr,
2421 enum nfs_stat status;
2424 error = decode_nfsstat3(xdr, &status);
2425 if (unlikely(error))
2427 if (status != NFS3_OK)
2429 error = decode_post_op_attr(xdr, result, rpc_rqst_userns(req));
2433 return nfs3_stat_to_errno(status);
2436 #endif /* CONFIG_NFS_V3_ACL */
2440 * We need to translate between nfs status return values and
2441 * the local errno values which may not be the same.
2443 static const struct {
2448 { NFSERR_PERM, -EPERM },
2449 { NFSERR_NOENT, -ENOENT },
2450 { NFSERR_IO, -errno_NFSERR_IO},
2451 { NFSERR_NXIO, -ENXIO },
2452 /* { NFSERR_EAGAIN, -EAGAIN }, */
2453 { NFSERR_ACCES, -EACCES },
2454 { NFSERR_EXIST, -EEXIST },
2455 { NFSERR_XDEV, -EXDEV },
2456 { NFSERR_NODEV, -ENODEV },
2457 { NFSERR_NOTDIR, -ENOTDIR },
2458 { NFSERR_ISDIR, -EISDIR },
2459 { NFSERR_INVAL, -EINVAL },
2460 { NFSERR_FBIG, -EFBIG },
2461 { NFSERR_NOSPC, -ENOSPC },
2462 { NFSERR_ROFS, -EROFS },
2463 { NFSERR_MLINK, -EMLINK },
2464 { NFSERR_NAMETOOLONG, -ENAMETOOLONG },
2465 { NFSERR_NOTEMPTY, -ENOTEMPTY },
2466 { NFSERR_DQUOT, -EDQUOT },
2467 { NFSERR_STALE, -ESTALE },
2468 { NFSERR_REMOTE, -EREMOTE },
2470 { NFSERR_WFLUSH, -EWFLUSH },
2472 { NFSERR_BADHANDLE, -EBADHANDLE },
2473 { NFSERR_NOT_SYNC, -ENOTSYNC },
2474 { NFSERR_BAD_COOKIE, -EBADCOOKIE },
2475 { NFSERR_NOTSUPP, -ENOTSUPP },
2476 { NFSERR_TOOSMALL, -ETOOSMALL },
2477 { NFSERR_SERVERFAULT, -EREMOTEIO },
2478 { NFSERR_BADTYPE, -EBADTYPE },
2479 { NFSERR_JUKEBOX, -EJUKEBOX },
2484 * nfs3_stat_to_errno - convert an NFS status code to a local errno
2485 * @status: NFS status code to convert
2487 * Returns a local errno value, or -EIO if the NFS status code is
2488 * not recognized. This function is used jointly by NFSv2 and NFSv3.
2490 static int nfs3_stat_to_errno(enum nfs_stat status)
2494 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
2495 if (nfs_errtbl[i].stat == (int)status)
2496 return nfs_errtbl[i].errno;
2498 dprintk("NFS: Unrecognized nfs status value: %u\n", status);
2499 return nfs_errtbl[i].errno;
2503 #define PROC(proc, argtype, restype, timer) \
2504 [NFS3PROC_##proc] = { \
2505 .p_proc = NFS3PROC_##proc, \
2506 .p_encode = nfs3_xdr_enc_##argtype##3args, \
2507 .p_decode = nfs3_xdr_dec_##restype##3res, \
2508 .p_arglen = NFS3_##argtype##args_sz, \
2509 .p_replen = NFS3_##restype##res_sz, \
2511 .p_statidx = NFS3PROC_##proc, \
2515 const struct rpc_procinfo nfs3_procedures[] = {
2516 PROC(GETATTR, getattr, getattr, 1),
2517 PROC(SETATTR, setattr, setattr, 0),
2518 PROC(LOOKUP, lookup, lookup, 2),
2519 PROC(ACCESS, access, access, 1),
2520 PROC(READLINK, readlink, readlink, 3),
2521 PROC(READ, read, read, 3),
2522 PROC(WRITE, write, write, 4),
2523 PROC(CREATE, create, create, 0),
2524 PROC(MKDIR, mkdir, create, 0),
2525 PROC(SYMLINK, symlink, create, 0),
2526 PROC(MKNOD, mknod, create, 0),
2527 PROC(REMOVE, remove, remove, 0),
2528 PROC(RMDIR, lookup, setattr, 0),
2529 PROC(RENAME, rename, rename, 0),
2530 PROC(LINK, link, link, 0),
2531 PROC(READDIR, readdir, readdir, 3),
2532 PROC(READDIRPLUS, readdirplus, readdir, 3),
2533 PROC(FSSTAT, getattr, fsstat, 0),
2534 PROC(FSINFO, getattr, fsinfo, 0),
2535 PROC(PATHCONF, getattr, pathconf, 0),
2536 PROC(COMMIT, commit, commit, 5),
2539 static unsigned int nfs_version3_counts[ARRAY_SIZE(nfs3_procedures)];
2540 const struct rpc_version nfs_version3 = {
2542 .nrprocs = ARRAY_SIZE(nfs3_procedures),
2543 .procs = nfs3_procedures,
2544 .counts = nfs_version3_counts,
2547 #ifdef CONFIG_NFS_V3_ACL
2548 static const struct rpc_procinfo nfs3_acl_procedures[] = {
2549 [ACLPROC3_GETACL] = {
2550 .p_proc = ACLPROC3_GETACL,
2551 .p_encode = nfs3_xdr_enc_getacl3args,
2552 .p_decode = nfs3_xdr_dec_getacl3res,
2553 .p_arglen = ACL3_getaclargs_sz,
2554 .p_replen = ACL3_getaclres_sz,
2558 [ACLPROC3_SETACL] = {
2559 .p_proc = ACLPROC3_SETACL,
2560 .p_encode = nfs3_xdr_enc_setacl3args,
2561 .p_decode = nfs3_xdr_dec_setacl3res,
2562 .p_arglen = ACL3_setaclargs_sz,
2563 .p_replen = ACL3_setaclres_sz,
2569 static unsigned int nfs3_acl_counts[ARRAY_SIZE(nfs3_acl_procedures)];
2570 const struct rpc_version nfsacl_version3 = {
2572 .nrprocs = ARRAY_SIZE(nfs3_acl_procedures),
2573 .procs = nfs3_acl_procedures,
2574 .counts = nfs3_acl_counts,
2576 #endif /* CONFIG_NFS_V3_ACL */