1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/nfs/nfs2xdr.c
5 * XDR functions to encode/decode NFS RPC arguments and results.
7 * Copyright (C) 1992, 1993, 1994 Rick Sladkey
8 * Copyright (C) 1996 Olaf Kirch
10 * FIFO's need special handling in NFSv2
13 #include <linux/param.h>
14 #include <linux/time.h>
16 #include <linux/errno.h>
17 #include <linux/string.h>
19 #include <linux/pagemap.h>
20 #include <linux/proc_fs.h>
21 #include <linux/sunrpc/clnt.h>
22 #include <linux/nfs.h>
23 #include <linux/nfs2.h>
24 #include <linux/nfs_fs.h>
28 #define NFSDBG_FACILITY NFSDBG_XDR
30 /* Mapping from NFS error code to "errno" error code. */
31 #define errno_NFSERR_IO EIO
34 * Declare the space requirements for NFS arguments and replies as
35 * number of 32bit-words
37 #define NFS_fhandle_sz (8)
38 #define NFS_sattr_sz (8)
39 #define NFS_filename_sz (1+(NFS2_MAXNAMLEN>>2))
40 #define NFS_path_sz (1+(NFS2_MAXPATHLEN>>2))
41 #define NFS_fattr_sz (17)
42 #define NFS_info_sz (5)
43 #define NFS_entry_sz (NFS_filename_sz+3)
45 #define NFS_diropargs_sz (NFS_fhandle_sz+NFS_filename_sz)
46 #define NFS_removeargs_sz (NFS_fhandle_sz+NFS_filename_sz)
47 #define NFS_sattrargs_sz (NFS_fhandle_sz+NFS_sattr_sz)
48 #define NFS_readlinkargs_sz (NFS_fhandle_sz)
49 #define NFS_readargs_sz (NFS_fhandle_sz+3)
50 #define NFS_writeargs_sz (NFS_fhandle_sz+4)
51 #define NFS_createargs_sz (NFS_diropargs_sz+NFS_sattr_sz)
52 #define NFS_renameargs_sz (NFS_diropargs_sz+NFS_diropargs_sz)
53 #define NFS_linkargs_sz (NFS_fhandle_sz+NFS_diropargs_sz)
54 #define NFS_symlinkargs_sz (NFS_diropargs_sz+1+NFS_sattr_sz)
55 #define NFS_readdirargs_sz (NFS_fhandle_sz+2)
57 #define NFS_attrstat_sz (1+NFS_fattr_sz)
58 #define NFS_diropres_sz (1+NFS_fhandle_sz+NFS_fattr_sz)
59 #define NFS_readlinkres_sz (2+1)
60 #define NFS_readres_sz (1+NFS_fattr_sz+1+1)
61 #define NFS_writeres_sz (NFS_attrstat_sz)
62 #define NFS_stat_sz (1)
63 #define NFS_readdirres_sz (1+1)
64 #define NFS_statfsres_sz (1+NFS_info_sz)
66 static int nfs_stat_to_errno(enum nfs_stat);
69 * Encode/decode NFSv2 basic data types
71 * Basic NFSv2 data types are defined in section 2.3 of RFC 1094:
72 * "NFS: Network File System Protocol Specification".
74 * Not all basic data types have their own encoding and decoding
75 * functions. For run-time efficiency, some data types are encoded
80 * typedef opaque nfsdata<>;
82 static int decode_nfsdata(struct xdr_stream *xdr, struct nfs_pgio_res *result)
87 p = xdr_inline_decode(xdr, 4);
90 count = be32_to_cpup(p);
91 recvd = xdr_read_pages(xdr, count);
92 if (unlikely(count > recvd))
95 result->eof = 0; /* NFSv2 does not pass EOF flag on the wire. */
96 result->count = count;
99 dprintk("NFS: server cheating in read result: "
100 "count %u > recvd %u\n", count, recvd);
115 * NFSERR_NOTDIR = 20,
120 * NFSERR_NAMETOOLONG = 63,
121 * NFSERR_NOTEMPTY = 66,
127 static int decode_stat(struct xdr_stream *xdr, enum nfs_stat *status)
131 p = xdr_inline_decode(xdr, 4);
134 if (unlikely(*p != cpu_to_be32(NFS_OK)))
139 *status = be32_to_cpup(p);
140 trace_nfs_xdr_status((int)*status);
157 static __be32 *xdr_decode_ftype(__be32 *p, u32 *type)
159 *type = be32_to_cpup(p++);
160 if (unlikely(*type > NF2FIFO))
168 * typedef opaque fhandle[FHSIZE];
170 static void encode_fhandle(struct xdr_stream *xdr, const struct nfs_fh *fh)
174 p = xdr_reserve_space(xdr, NFS2_FHSIZE);
175 memcpy(p, fh->data, NFS2_FHSIZE);
178 static int decode_fhandle(struct xdr_stream *xdr, struct nfs_fh *fh)
182 p = xdr_inline_decode(xdr, NFS2_FHSIZE);
185 fh->size = NFS2_FHSIZE;
186 memcpy(fh->data, p, NFS2_FHSIZE);
194 * unsigned int seconds;
195 * unsigned int useconds;
198 static __be32 *xdr_encode_time(__be32 *p, const struct timespec *timep)
200 *p++ = cpu_to_be32(timep->tv_sec);
201 if (timep->tv_nsec != 0)
202 *p++ = cpu_to_be32(timep->tv_nsec / NSEC_PER_USEC);
204 *p++ = cpu_to_be32(0);
209 * Passing the invalid value useconds=1000000 is a Sun convention for
210 * "set to current server time". It's needed to make permissions checks
211 * for the "touch" program across v2 mounts to Solaris and Irix servers
212 * work correctly. See description of sattr in section 6.1 of "NFS
213 * Illustrated" by Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5.
215 static __be32 *xdr_encode_current_server_time(__be32 *p,
216 const struct timespec *timep)
218 *p++ = cpu_to_be32(timep->tv_sec);
219 *p++ = cpu_to_be32(1000000);
223 static __be32 *xdr_decode_time(__be32 *p, struct timespec *timep)
225 timep->tv_sec = be32_to_cpup(p++);
226 timep->tv_nsec = be32_to_cpup(p++) * NSEC_PER_USEC;
236 * unsigned int nlink;
240 * unsigned int blocksize;
242 * unsigned int blocks;
244 * unsigned int fileid;
251 static int decode_fattr(struct xdr_stream *xdr, struct nfs_fattr *fattr)
256 p = xdr_inline_decode(xdr, NFS_fattr_sz << 2);
260 fattr->valid |= NFS_ATTR_FATTR_V2;
262 p = xdr_decode_ftype(p, &type);
264 fattr->mode = be32_to_cpup(p++);
265 fattr->nlink = be32_to_cpup(p++);
266 fattr->uid = make_kuid(&init_user_ns, be32_to_cpup(p++));
267 if (!uid_valid(fattr->uid))
269 fattr->gid = make_kgid(&init_user_ns, be32_to_cpup(p++));
270 if (!gid_valid(fattr->gid))
273 fattr->size = be32_to_cpup(p++);
274 fattr->du.nfs2.blocksize = be32_to_cpup(p++);
276 rdev = be32_to_cpup(p++);
277 fattr->rdev = new_decode_dev(rdev);
278 if (type == (u32)NFCHR && rdev == (u32)NFS2_FIFO_DEV) {
279 fattr->mode = (fattr->mode & ~S_IFMT) | S_IFIFO;
283 fattr->du.nfs2.blocks = be32_to_cpup(p++);
284 fattr->fsid.major = be32_to_cpup(p++);
285 fattr->fsid.minor = 0;
286 fattr->fileid = be32_to_cpup(p++);
288 p = xdr_decode_time(p, &fattr->atime);
289 p = xdr_decode_time(p, &fattr->mtime);
290 xdr_decode_time(p, &fattr->ctime);
291 fattr->change_attr = nfs_timespec_to_change_attr(&fattr->ctime);
295 dprintk("NFS: returned invalid uid\n");
298 dprintk("NFS: returned invalid gid\n");
315 #define NFS2_SATTR_NOT_SET (0xffffffff)
317 static __be32 *xdr_time_not_set(__be32 *p)
319 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
320 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
324 static void encode_sattr(struct xdr_stream *xdr, const struct iattr *attr)
329 p = xdr_reserve_space(xdr, NFS_sattr_sz << 2);
331 if (attr->ia_valid & ATTR_MODE)
332 *p++ = cpu_to_be32(attr->ia_mode);
334 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
335 if (attr->ia_valid & ATTR_UID)
336 *p++ = cpu_to_be32(from_kuid(&init_user_ns, attr->ia_uid));
338 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
339 if (attr->ia_valid & ATTR_GID)
340 *p++ = cpu_to_be32(from_kgid(&init_user_ns, attr->ia_gid));
342 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
343 if (attr->ia_valid & ATTR_SIZE)
344 *p++ = cpu_to_be32((u32)attr->ia_size);
346 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
348 if (attr->ia_valid & ATTR_ATIME_SET) {
349 ts = timespec64_to_timespec(attr->ia_atime);
350 p = xdr_encode_time(p, &ts);
351 } else if (attr->ia_valid & ATTR_ATIME) {
352 ts = timespec64_to_timespec(attr->ia_atime);
353 p = xdr_encode_current_server_time(p, &ts);
355 p = xdr_time_not_set(p);
356 if (attr->ia_valid & ATTR_MTIME_SET) {
357 ts = timespec64_to_timespec(attr->ia_atime);
358 xdr_encode_time(p, &ts);
359 } else if (attr->ia_valid & ATTR_MTIME) {
360 ts = timespec64_to_timespec(attr->ia_mtime);
361 xdr_encode_current_server_time(p, &ts);
369 * typedef string filename<MAXNAMLEN>;
371 static void encode_filename(struct xdr_stream *xdr,
372 const char *name, u32 length)
376 WARN_ON_ONCE(length > NFS2_MAXNAMLEN);
377 p = xdr_reserve_space(xdr, 4 + length);
378 xdr_encode_opaque(p, name, length);
381 static int decode_filename_inline(struct xdr_stream *xdr,
382 const char **name, u32 *length)
387 p = xdr_inline_decode(xdr, 4);
390 count = be32_to_cpup(p);
391 if (count > NFS3_MAXNAMLEN)
392 goto out_nametoolong;
393 p = xdr_inline_decode(xdr, count);
396 *name = (const char *)p;
400 dprintk("NFS: returned filename too long: %u\n", count);
401 return -ENAMETOOLONG;
407 * typedef string path<MAXPATHLEN>;
409 static void encode_path(struct xdr_stream *xdr, struct page **pages, u32 length)
413 p = xdr_reserve_space(xdr, 4);
414 *p = cpu_to_be32(length);
415 xdr_write_pages(xdr, pages, 0, length);
418 static int decode_path(struct xdr_stream *xdr)
423 p = xdr_inline_decode(xdr, 4);
426 length = be32_to_cpup(p);
427 if (unlikely(length >= xdr->buf->page_len || length > NFS_MAXPATHLEN))
429 recvd = xdr_read_pages(xdr, length);
430 if (unlikely(length > recvd))
432 xdr_terminate_string(xdr->buf, length);
435 dprintk("NFS: returned pathname too long: %u\n", length);
436 return -ENAMETOOLONG;
438 dprintk("NFS: server cheating in pathname result: "
439 "length %u > received %u\n", length, recvd);
446 * union attrstat switch (stat status) {
453 static int decode_attrstat(struct xdr_stream *xdr, struct nfs_fattr *result,
456 enum nfs_stat status;
459 error = decode_stat(xdr, &status);
464 if (status != NFS_OK)
466 error = decode_fattr(xdr, result);
470 return nfs_stat_to_errno(status);
481 static void encode_diropargs(struct xdr_stream *xdr, const struct nfs_fh *fh,
482 const char *name, u32 length)
484 encode_fhandle(xdr, fh);
485 encode_filename(xdr, name, length);
491 * union diropres switch (stat status) {
501 static int decode_diropok(struct xdr_stream *xdr, struct nfs_diropok *result)
505 error = decode_fhandle(xdr, result->fh);
508 error = decode_fattr(xdr, result->fattr);
513 static int decode_diropres(struct xdr_stream *xdr, struct nfs_diropok *result)
515 enum nfs_stat status;
518 error = decode_stat(xdr, &status);
521 if (status != NFS_OK)
523 error = decode_diropok(xdr, result);
527 return nfs_stat_to_errno(status);
532 * NFSv2 XDR encode functions
534 * NFSv2 argument types are defined in section 2.2 of RFC 1094:
535 * "NFS: Network File System Protocol Specification".
538 static void nfs2_xdr_enc_fhandle(struct rpc_rqst *req,
539 struct xdr_stream *xdr,
542 const struct nfs_fh *fh = data;
544 encode_fhandle(xdr, fh);
555 static void nfs2_xdr_enc_sattrargs(struct rpc_rqst *req,
556 struct xdr_stream *xdr,
559 const struct nfs_sattrargs *args = data;
561 encode_fhandle(xdr, args->fh);
562 encode_sattr(xdr, args->sattr);
565 static void nfs2_xdr_enc_diropargs(struct rpc_rqst *req,
566 struct xdr_stream *xdr,
569 const struct nfs_diropargs *args = data;
571 encode_diropargs(xdr, args->fh, args->name, args->len);
574 static void nfs2_xdr_enc_readlinkargs(struct rpc_rqst *req,
575 struct xdr_stream *xdr,
578 const struct nfs_readlinkargs *args = data;
580 encode_fhandle(xdr, args->fh);
581 rpc_prepare_reply_pages(req, args->pages, args->pgbase,
582 args->pglen, NFS_readlinkres_sz);
592 * unsigned totalcount;
595 static void encode_readargs(struct xdr_stream *xdr,
596 const struct nfs_pgio_args *args)
598 u32 offset = args->offset;
599 u32 count = args->count;
602 encode_fhandle(xdr, args->fh);
604 p = xdr_reserve_space(xdr, 4 + 4 + 4);
605 *p++ = cpu_to_be32(offset);
606 *p++ = cpu_to_be32(count);
607 *p = cpu_to_be32(count);
610 static void nfs2_xdr_enc_readargs(struct rpc_rqst *req,
611 struct xdr_stream *xdr,
614 const struct nfs_pgio_args *args = data;
616 encode_readargs(xdr, args);
617 rpc_prepare_reply_pages(req, args->pages, args->pgbase,
618 args->count, NFS_readres_sz);
619 req->rq_rcv_buf.flags |= XDRBUF_READ;
627 * unsigned beginoffset;
629 * unsigned totalcount;
633 static void encode_writeargs(struct xdr_stream *xdr,
634 const struct nfs_pgio_args *args)
636 u32 offset = args->offset;
637 u32 count = args->count;
640 encode_fhandle(xdr, args->fh);
642 p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4);
643 *p++ = cpu_to_be32(offset);
644 *p++ = cpu_to_be32(offset);
645 *p++ = cpu_to_be32(count);
648 *p = cpu_to_be32(count);
649 xdr_write_pages(xdr, args->pages, args->pgbase, count);
652 static void nfs2_xdr_enc_writeargs(struct rpc_rqst *req,
653 struct xdr_stream *xdr,
656 const struct nfs_pgio_args *args = data;
658 encode_writeargs(xdr, args);
659 xdr->buf->flags |= XDRBUF_WRITE;
665 * struct createargs {
670 static void nfs2_xdr_enc_createargs(struct rpc_rqst *req,
671 struct xdr_stream *xdr,
674 const struct nfs_createargs *args = data;
676 encode_diropargs(xdr, args->fh, args->name, args->len);
677 encode_sattr(xdr, args->sattr);
680 static void nfs2_xdr_enc_removeargs(struct rpc_rqst *req,
681 struct xdr_stream *xdr,
684 const struct nfs_removeargs *args = data;
686 encode_diropargs(xdr, args->fh, args->name.name, args->name.len);
692 * struct renameargs {
697 static void nfs2_xdr_enc_renameargs(struct rpc_rqst *req,
698 struct xdr_stream *xdr,
701 const struct nfs_renameargs *args = data;
702 const struct qstr *old = args->old_name;
703 const struct qstr *new = args->new_name;
705 encode_diropargs(xdr, args->old_dir, old->name, old->len);
706 encode_diropargs(xdr, args->new_dir, new->name, new->len);
717 static void nfs2_xdr_enc_linkargs(struct rpc_rqst *req,
718 struct xdr_stream *xdr,
721 const struct nfs_linkargs *args = data;
723 encode_fhandle(xdr, args->fromfh);
724 encode_diropargs(xdr, args->tofh, args->toname, args->tolen);
728 * 2.2.14. symlinkargs
730 * struct symlinkargs {
736 static void nfs2_xdr_enc_symlinkargs(struct rpc_rqst *req,
737 struct xdr_stream *xdr,
740 const struct nfs_symlinkargs *args = data;
742 encode_diropargs(xdr, args->fromfh, args->fromname, args->fromlen);
743 encode_path(xdr, args->pages, args->pathlen);
744 encode_sattr(xdr, args->sattr);
748 * 2.2.17. readdirargs
750 * struct readdirargs {
756 static void encode_readdirargs(struct xdr_stream *xdr,
757 const struct nfs_readdirargs *args)
761 encode_fhandle(xdr, args->fh);
763 p = xdr_reserve_space(xdr, 4 + 4);
764 *p++ = cpu_to_be32(args->cookie);
765 *p = cpu_to_be32(args->count);
768 static void nfs2_xdr_enc_readdirargs(struct rpc_rqst *req,
769 struct xdr_stream *xdr,
772 const struct nfs_readdirargs *args = data;
774 encode_readdirargs(xdr, args);
775 rpc_prepare_reply_pages(req, args->pages, 0,
776 args->count, NFS_readdirres_sz);
780 * NFSv2 XDR decode functions
782 * NFSv2 result types are defined in section 2.2 of RFC 1094:
783 * "NFS: Network File System Protocol Specification".
786 static int nfs2_xdr_dec_stat(struct rpc_rqst *req, struct xdr_stream *xdr,
789 enum nfs_stat status;
792 error = decode_stat(xdr, &status);
795 if (status != NFS_OK)
800 return nfs_stat_to_errno(status);
803 static int nfs2_xdr_dec_attrstat(struct rpc_rqst *req, struct xdr_stream *xdr,
806 return decode_attrstat(xdr, result, NULL);
809 static int nfs2_xdr_dec_diropres(struct rpc_rqst *req, struct xdr_stream *xdr,
812 return decode_diropres(xdr, result);
818 * union readlinkres switch (stat status) {
825 static int nfs2_xdr_dec_readlinkres(struct rpc_rqst *req,
826 struct xdr_stream *xdr, void *__unused)
828 enum nfs_stat status;
831 error = decode_stat(xdr, &status);
834 if (status != NFS_OK)
836 error = decode_path(xdr);
840 return nfs_stat_to_errno(status);
846 * union readres switch (stat status) {
854 static int nfs2_xdr_dec_readres(struct rpc_rqst *req, struct xdr_stream *xdr,
857 struct nfs_pgio_res *result = data;
858 enum nfs_stat status;
861 error = decode_stat(xdr, &status);
864 result->op_status = status;
865 if (status != NFS_OK)
867 error = decode_fattr(xdr, result->fattr);
870 error = decode_nfsdata(xdr, result);
874 return nfs_stat_to_errno(status);
877 static int nfs2_xdr_dec_writeres(struct rpc_rqst *req, struct xdr_stream *xdr,
880 struct nfs_pgio_res *result = data;
882 /* All NFSv2 writes are "file sync" writes */
883 result->verf->committed = NFS_FILE_SYNC;
884 return decode_attrstat(xdr, result->fattr, &result->op_status);
888 * nfs2_decode_dirent - Decode a single NFSv2 directory entry stored in
889 * the local page cache.
890 * @xdr: XDR stream where entry resides
891 * @entry: buffer to fill in with entry data
892 * @plus: boolean indicating whether this should be a readdirplus entry
894 * Returns zero if successful, otherwise a negative errno value is
897 * This function is not invoked during READDIR reply decoding, but
898 * rather whenever an application invokes the getdents(2) system call
899 * on a directory already in our cache.
910 int nfs2_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
916 p = xdr_inline_decode(xdr, 4);
919 if (*p++ == xdr_zero) {
920 p = xdr_inline_decode(xdr, 4);
923 if (*p++ == xdr_zero)
929 p = xdr_inline_decode(xdr, 4);
932 entry->ino = be32_to_cpup(p);
934 error = decode_filename_inline(xdr, &entry->name, &entry->len);
939 * The type (size and byte order) of nfscookie isn't defined in
940 * RFC 1094. This implementation assumes that it's an XDR uint32.
942 entry->prev_cookie = entry->cookie;
943 p = xdr_inline_decode(xdr, 4);
946 entry->cookie = be32_to_cpup(p);
948 entry->d_type = DT_UNKNOWN;
956 * union readdirres switch (stat status) {
966 * Read the directory contents into the page cache, but don't
967 * touch them. The actual decoding is done by nfs2_decode_dirent()
968 * during subsequent nfs_readdir() calls.
970 static int decode_readdirok(struct xdr_stream *xdr)
972 return xdr_read_pages(xdr, xdr->buf->page_len);
975 static int nfs2_xdr_dec_readdirres(struct rpc_rqst *req,
976 struct xdr_stream *xdr, void *__unused)
978 enum nfs_stat status;
981 error = decode_stat(xdr, &status);
984 if (status != NFS_OK)
986 error = decode_readdirok(xdr);
990 return nfs_stat_to_errno(status);
996 * union statfsres (stat status) {
1009 static int decode_info(struct xdr_stream *xdr, struct nfs2_fsstat *result)
1013 p = xdr_inline_decode(xdr, NFS_info_sz << 2);
1016 result->tsize = be32_to_cpup(p++);
1017 result->bsize = be32_to_cpup(p++);
1018 result->blocks = be32_to_cpup(p++);
1019 result->bfree = be32_to_cpup(p++);
1020 result->bavail = be32_to_cpup(p);
1024 static int nfs2_xdr_dec_statfsres(struct rpc_rqst *req, struct xdr_stream *xdr,
1027 enum nfs_stat status;
1030 error = decode_stat(xdr, &status);
1031 if (unlikely(error))
1033 if (status != NFS_OK)
1035 error = decode_info(xdr, result);
1039 return nfs_stat_to_errno(status);
1044 * We need to translate between nfs status return values and
1045 * the local errno values which may not be the same.
1047 static const struct {
1052 { NFSERR_PERM, -EPERM },
1053 { NFSERR_NOENT, -ENOENT },
1054 { NFSERR_IO, -errno_NFSERR_IO},
1055 { NFSERR_NXIO, -ENXIO },
1056 /* { NFSERR_EAGAIN, -EAGAIN }, */
1057 { NFSERR_ACCES, -EACCES },
1058 { NFSERR_EXIST, -EEXIST },
1059 { NFSERR_XDEV, -EXDEV },
1060 { NFSERR_NODEV, -ENODEV },
1061 { NFSERR_NOTDIR, -ENOTDIR },
1062 { NFSERR_ISDIR, -EISDIR },
1063 { NFSERR_INVAL, -EINVAL },
1064 { NFSERR_FBIG, -EFBIG },
1065 { NFSERR_NOSPC, -ENOSPC },
1066 { NFSERR_ROFS, -EROFS },
1067 { NFSERR_MLINK, -EMLINK },
1068 { NFSERR_NAMETOOLONG, -ENAMETOOLONG },
1069 { NFSERR_NOTEMPTY, -ENOTEMPTY },
1070 { NFSERR_DQUOT, -EDQUOT },
1071 { NFSERR_STALE, -ESTALE },
1072 { NFSERR_REMOTE, -EREMOTE },
1074 { NFSERR_WFLUSH, -EWFLUSH },
1076 { NFSERR_BADHANDLE, -EBADHANDLE },
1077 { NFSERR_NOT_SYNC, -ENOTSYNC },
1078 { NFSERR_BAD_COOKIE, -EBADCOOKIE },
1079 { NFSERR_NOTSUPP, -ENOTSUPP },
1080 { NFSERR_TOOSMALL, -ETOOSMALL },
1081 { NFSERR_SERVERFAULT, -EREMOTEIO },
1082 { NFSERR_BADTYPE, -EBADTYPE },
1083 { NFSERR_JUKEBOX, -EJUKEBOX },
1088 * nfs_stat_to_errno - convert an NFS status code to a local errno
1089 * @status: NFS status code to convert
1091 * Returns a local errno value, or -EIO if the NFS status code is
1092 * not recognized. This function is used jointly by NFSv2 and NFSv3.
1094 static int nfs_stat_to_errno(enum nfs_stat status)
1098 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
1099 if (nfs_errtbl[i].stat == (int)status)
1100 return nfs_errtbl[i].errno;
1102 dprintk("NFS: Unrecognized nfs status value: %u\n", status);
1103 return nfs_errtbl[i].errno;
1106 #define PROC(proc, argtype, restype, timer) \
1107 [NFSPROC_##proc] = { \
1108 .p_proc = NFSPROC_##proc, \
1109 .p_encode = nfs2_xdr_enc_##argtype, \
1110 .p_decode = nfs2_xdr_dec_##restype, \
1111 .p_arglen = NFS_##argtype##_sz, \
1112 .p_replen = NFS_##restype##_sz, \
1114 .p_statidx = NFSPROC_##proc, \
1117 const struct rpc_procinfo nfs_procedures[] = {
1118 PROC(GETATTR, fhandle, attrstat, 1),
1119 PROC(SETATTR, sattrargs, attrstat, 0),
1120 PROC(LOOKUP, diropargs, diropres, 2),
1121 PROC(READLINK, readlinkargs, readlinkres, 3),
1122 PROC(READ, readargs, readres, 3),
1123 PROC(WRITE, writeargs, writeres, 4),
1124 PROC(CREATE, createargs, diropres, 0),
1125 PROC(REMOVE, removeargs, stat, 0),
1126 PROC(RENAME, renameargs, stat, 0),
1127 PROC(LINK, linkargs, stat, 0),
1128 PROC(SYMLINK, symlinkargs, stat, 0),
1129 PROC(MKDIR, createargs, diropres, 0),
1130 PROC(RMDIR, diropargs, stat, 0),
1131 PROC(READDIR, readdirargs, readdirres, 3),
1132 PROC(STATFS, fhandle, statfsres, 0),
1135 static unsigned int nfs_version2_counts[ARRAY_SIZE(nfs_procedures)];
1136 const struct rpc_version nfs_version2 = {
1138 .nrprocs = ARRAY_SIZE(nfs_procedures),
1139 .procs = nfs_procedures,
1140 .counts = nfs_version2_counts,