2 * linux/fs/nfs/nfs2xdr.c
4 * XDR functions to encode/decode NFS RPC arguments and results.
6 * Copyright (C) 1992, 1993, 1994 Rick Sladkey
7 * Copyright (C) 1996 Olaf Kirch
8 * 04 Aug 1998 Ion Badulescu <ionut@cs.columbia.edu>
9 * FIFO's need special handling in NFSv2
12 #include <linux/param.h>
13 #include <linux/time.h>
15 #include <linux/errno.h>
16 #include <linux/string.h>
18 #include <linux/pagemap.h>
19 #include <linux/proc_fs.h>
20 #include <linux/sunrpc/clnt.h>
21 #include <linux/nfs.h>
22 #include <linux/nfs2.h>
23 #include <linux/nfs_fs.h>
26 #define NFSDBG_FACILITY NFSDBG_XDR
28 /* Mapping from NFS error code to "errno" error code. */
29 #define errno_NFSERR_IO EIO
32 * Declare the space requirements for NFS arguments and replies as
33 * number of 32bit-words
35 #define NFS_fhandle_sz (8)
36 #define NFS_sattr_sz (8)
37 #define NFS_filename_sz (1+(NFS2_MAXNAMLEN>>2))
38 #define NFS_path_sz (1+(NFS2_MAXPATHLEN>>2))
39 #define NFS_fattr_sz (17)
40 #define NFS_info_sz (5)
41 #define NFS_entry_sz (NFS_filename_sz+3)
43 #define NFS_diropargs_sz (NFS_fhandle_sz+NFS_filename_sz)
44 #define NFS_removeargs_sz (NFS_fhandle_sz+NFS_filename_sz)
45 #define NFS_sattrargs_sz (NFS_fhandle_sz+NFS_sattr_sz)
46 #define NFS_readlinkargs_sz (NFS_fhandle_sz)
47 #define NFS_readargs_sz (NFS_fhandle_sz+3)
48 #define NFS_writeargs_sz (NFS_fhandle_sz+4)
49 #define NFS_createargs_sz (NFS_diropargs_sz+NFS_sattr_sz)
50 #define NFS_renameargs_sz (NFS_diropargs_sz+NFS_diropargs_sz)
51 #define NFS_linkargs_sz (NFS_fhandle_sz+NFS_diropargs_sz)
52 #define NFS_symlinkargs_sz (NFS_diropargs_sz+1+NFS_sattr_sz)
53 #define NFS_readdirargs_sz (NFS_fhandle_sz+2)
55 #define NFS_attrstat_sz (1+NFS_fattr_sz)
56 #define NFS_diropres_sz (1+NFS_fhandle_sz+NFS_fattr_sz)
57 #define NFS_readlinkres_sz (2)
58 #define NFS_readres_sz (1+NFS_fattr_sz+1)
59 #define NFS_writeres_sz (NFS_attrstat_sz)
60 #define NFS_stat_sz (1)
61 #define NFS_readdirres_sz (1)
62 #define NFS_statfsres_sz (1+NFS_info_sz)
64 static int nfs_stat_to_errno(enum nfs_stat
);
67 * While encoding arguments, set up the reply buffer in advance to
68 * receive reply data directly into the page cache.
70 static void prepare_reply_buffer(struct rpc_rqst
*req
, struct page
**pages
,
71 unsigned int base
, unsigned int len
,
74 struct rpc_auth
*auth
= req
->rq_cred
->cr_auth
;
77 replen
= RPC_REPHDRSIZE
+ auth
->au_rslack
+ bufsize
;
78 xdr_inline_pages(&req
->rq_rcv_buf
, replen
<< 2, pages
, base
, len
);
82 * Handle decode buffer overflows out-of-line.
84 static void print_overflow_msg(const char *func
, const struct xdr_stream
*xdr
)
86 dprintk("NFS: %s prematurely hit the end of our receive buffer. "
87 "Remaining buffer length is %tu words.\n",
88 func
, xdr
->end
- xdr
->p
);
93 * Encode/decode NFSv2 basic data types
95 * Basic NFSv2 data types are defined in section 2.3 of RFC 1094:
96 * "NFS: Network File System Protocol Specification".
98 * Not all basic data types have their own encoding and decoding
99 * functions. For run-time efficiency, some data types are encoded
104 * typedef opaque nfsdata<>;
106 static int decode_nfsdata(struct xdr_stream
*xdr
, struct nfs_pgio_res
*result
)
111 p
= xdr_inline_decode(xdr
, 4);
112 if (unlikely(p
== NULL
))
114 count
= be32_to_cpup(p
);
115 recvd
= xdr_read_pages(xdr
, count
);
116 if (unlikely(count
> recvd
))
119 result
->eof
= 0; /* NFSv2 does not pass EOF flag on the wire. */
120 result
->count
= count
;
123 dprintk("NFS: server cheating in read result: "
124 "count %u > recvd %u\n", count
, recvd
);
128 print_overflow_msg(__func__
, xdr
);
142 * NFSERR_NOTDIR = 20,
147 * NFSERR_NAMETOOLONG = 63,
148 * NFSERR_NOTEMPTY = 66,
154 static int decode_stat(struct xdr_stream
*xdr
, enum nfs_stat
*status
)
158 p
= xdr_inline_decode(xdr
, 4);
159 if (unlikely(p
== NULL
))
161 *status
= be32_to_cpup(p
);
164 print_overflow_msg(__func__
, xdr
);
181 static __be32
*xdr_decode_ftype(__be32
*p
, u32
*type
)
183 *type
= be32_to_cpup(p
++);
184 if (unlikely(*type
> NF2FIFO
))
192 * typedef opaque fhandle[FHSIZE];
194 static void encode_fhandle(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
)
198 p
= xdr_reserve_space(xdr
, NFS2_FHSIZE
);
199 memcpy(p
, fh
->data
, NFS2_FHSIZE
);
202 static int decode_fhandle(struct xdr_stream
*xdr
, struct nfs_fh
*fh
)
206 p
= xdr_inline_decode(xdr
, NFS2_FHSIZE
);
207 if (unlikely(p
== NULL
))
209 fh
->size
= NFS2_FHSIZE
;
210 memcpy(fh
->data
, p
, NFS2_FHSIZE
);
213 print_overflow_msg(__func__
, xdr
);
221 * unsigned int seconds;
222 * unsigned int useconds;
225 static __be32
*xdr_encode_time(__be32
*p
, const struct timespec
*timep
)
227 *p
++ = cpu_to_be32(timep
->tv_sec
);
228 if (timep
->tv_nsec
!= 0)
229 *p
++ = cpu_to_be32(timep
->tv_nsec
/ NSEC_PER_USEC
);
231 *p
++ = cpu_to_be32(0);
236 * Passing the invalid value useconds=1000000 is a Sun convention for
237 * "set to current server time". It's needed to make permissions checks
238 * for the "touch" program across v2 mounts to Solaris and Irix servers
239 * work correctly. See description of sattr in section 6.1 of "NFS
240 * Illustrated" by Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5.
242 static __be32
*xdr_encode_current_server_time(__be32
*p
,
243 const struct timespec
*timep
)
245 *p
++ = cpu_to_be32(timep
->tv_sec
);
246 *p
++ = cpu_to_be32(1000000);
250 static __be32
*xdr_decode_time(__be32
*p
, struct timespec
*timep
)
252 timep
->tv_sec
= be32_to_cpup(p
++);
253 timep
->tv_nsec
= be32_to_cpup(p
++) * NSEC_PER_USEC
;
263 * unsigned int nlink;
267 * unsigned int blocksize;
269 * unsigned int blocks;
271 * unsigned int fileid;
278 static int decode_fattr(struct xdr_stream
*xdr
, struct nfs_fattr
*fattr
)
283 p
= xdr_inline_decode(xdr
, NFS_fattr_sz
<< 2);
284 if (unlikely(p
== NULL
))
287 fattr
->valid
|= NFS_ATTR_FATTR_V2
;
289 p
= xdr_decode_ftype(p
, &type
);
291 fattr
->mode
= be32_to_cpup(p
++);
292 fattr
->nlink
= be32_to_cpup(p
++);
293 fattr
->uid
= make_kuid(&init_user_ns
, be32_to_cpup(p
++));
294 if (!uid_valid(fattr
->uid
))
296 fattr
->gid
= make_kgid(&init_user_ns
, be32_to_cpup(p
++));
297 if (!gid_valid(fattr
->gid
))
300 fattr
->size
= be32_to_cpup(p
++);
301 fattr
->du
.nfs2
.blocksize
= be32_to_cpup(p
++);
303 rdev
= be32_to_cpup(p
++);
304 fattr
->rdev
= new_decode_dev(rdev
);
305 if (type
== (u32
)NFCHR
&& rdev
== (u32
)NFS2_FIFO_DEV
) {
306 fattr
->mode
= (fattr
->mode
& ~S_IFMT
) | S_IFIFO
;
310 fattr
->du
.nfs2
.blocks
= be32_to_cpup(p
++);
311 fattr
->fsid
.major
= be32_to_cpup(p
++);
312 fattr
->fsid
.minor
= 0;
313 fattr
->fileid
= be32_to_cpup(p
++);
315 p
= xdr_decode_time(p
, &fattr
->atime
);
316 p
= xdr_decode_time(p
, &fattr
->mtime
);
317 xdr_decode_time(p
, &fattr
->ctime
);
318 fattr
->change_attr
= nfs_timespec_to_change_attr(&fattr
->ctime
);
322 dprintk("NFS: returned invalid uid\n");
325 dprintk("NFS: returned invalid gid\n");
328 print_overflow_msg(__func__
, xdr
);
345 #define NFS2_SATTR_NOT_SET (0xffffffff)
347 static __be32
*xdr_time_not_set(__be32
*p
)
349 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
350 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
354 static void encode_sattr(struct xdr_stream
*xdr
, const struct iattr
*attr
)
358 p
= xdr_reserve_space(xdr
, NFS_sattr_sz
<< 2);
360 if (attr
->ia_valid
& ATTR_MODE
)
361 *p
++ = cpu_to_be32(attr
->ia_mode
);
363 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
364 if (attr
->ia_valid
& ATTR_UID
)
365 *p
++ = cpu_to_be32(from_kuid(&init_user_ns
, attr
->ia_uid
));
367 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
368 if (attr
->ia_valid
& ATTR_GID
)
369 *p
++ = cpu_to_be32(from_kgid(&init_user_ns
, attr
->ia_gid
));
371 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
372 if (attr
->ia_valid
& ATTR_SIZE
)
373 *p
++ = cpu_to_be32((u32
)attr
->ia_size
);
375 *p
++ = cpu_to_be32(NFS2_SATTR_NOT_SET
);
377 if (attr
->ia_valid
& ATTR_ATIME_SET
)
378 p
= xdr_encode_time(p
, &attr
->ia_atime
);
379 else if (attr
->ia_valid
& ATTR_ATIME
)
380 p
= xdr_encode_current_server_time(p
, &attr
->ia_atime
);
382 p
= xdr_time_not_set(p
);
383 if (attr
->ia_valid
& ATTR_MTIME_SET
)
384 xdr_encode_time(p
, &attr
->ia_mtime
);
385 else if (attr
->ia_valid
& ATTR_MTIME
)
386 xdr_encode_current_server_time(p
, &attr
->ia_mtime
);
394 * typedef string filename<MAXNAMLEN>;
396 static void encode_filename(struct xdr_stream
*xdr
,
397 const char *name
, u32 length
)
401 WARN_ON_ONCE(length
> NFS2_MAXNAMLEN
);
402 p
= xdr_reserve_space(xdr
, 4 + length
);
403 xdr_encode_opaque(p
, name
, length
);
406 static int decode_filename_inline(struct xdr_stream
*xdr
,
407 const char **name
, u32
*length
)
412 p
= xdr_inline_decode(xdr
, 4);
413 if (unlikely(p
== NULL
))
415 count
= be32_to_cpup(p
);
416 if (count
> NFS3_MAXNAMLEN
)
417 goto out_nametoolong
;
418 p
= xdr_inline_decode(xdr
, count
);
419 if (unlikely(p
== NULL
))
421 *name
= (const char *)p
;
425 dprintk("NFS: returned filename too long: %u\n", count
);
426 return -ENAMETOOLONG
;
428 print_overflow_msg(__func__
, xdr
);
435 * typedef string path<MAXPATHLEN>;
437 static void encode_path(struct xdr_stream
*xdr
, struct page
**pages
, u32 length
)
441 p
= xdr_reserve_space(xdr
, 4);
442 *p
= cpu_to_be32(length
);
443 xdr_write_pages(xdr
, pages
, 0, length
);
446 static int decode_path(struct xdr_stream
*xdr
)
451 p
= xdr_inline_decode(xdr
, 4);
452 if (unlikely(p
== NULL
))
454 length
= be32_to_cpup(p
);
455 if (unlikely(length
>= xdr
->buf
->page_len
|| length
> NFS_MAXPATHLEN
))
457 recvd
= xdr_read_pages(xdr
, length
);
458 if (unlikely(length
> recvd
))
460 xdr_terminate_string(xdr
->buf
, length
);
463 dprintk("NFS: returned pathname too long: %u\n", length
);
464 return -ENAMETOOLONG
;
466 dprintk("NFS: server cheating in pathname result: "
467 "length %u > received %u\n", length
, recvd
);
470 print_overflow_msg(__func__
, xdr
);
477 * union attrstat switch (stat status) {
484 static int decode_attrstat(struct xdr_stream
*xdr
, struct nfs_fattr
*result
,
487 enum nfs_stat status
;
490 error
= decode_stat(xdr
, &status
);
495 if (status
!= NFS_OK
)
497 error
= decode_fattr(xdr
, result
);
501 return nfs_stat_to_errno(status
);
512 static void encode_diropargs(struct xdr_stream
*xdr
, const struct nfs_fh
*fh
,
513 const char *name
, u32 length
)
515 encode_fhandle(xdr
, fh
);
516 encode_filename(xdr
, name
, length
);
522 * union diropres switch (stat status) {
532 static int decode_diropok(struct xdr_stream
*xdr
, struct nfs_diropok
*result
)
536 error
= decode_fhandle(xdr
, result
->fh
);
539 error
= decode_fattr(xdr
, result
->fattr
);
544 static int decode_diropres(struct xdr_stream
*xdr
, struct nfs_diropok
*result
)
546 enum nfs_stat status
;
549 error
= decode_stat(xdr
, &status
);
552 if (status
!= NFS_OK
)
554 error
= decode_diropok(xdr
, result
);
558 return nfs_stat_to_errno(status
);
563 * NFSv2 XDR encode functions
565 * NFSv2 argument types are defined in section 2.2 of RFC 1094:
566 * "NFS: Network File System Protocol Specification".
569 static void nfs2_xdr_enc_fhandle(struct rpc_rqst
*req
,
570 struct xdr_stream
*xdr
,
571 const struct nfs_fh
*fh
)
573 encode_fhandle(xdr
, fh
);
584 static void nfs2_xdr_enc_sattrargs(struct rpc_rqst
*req
,
585 struct xdr_stream
*xdr
,
586 const struct nfs_sattrargs
*args
)
588 encode_fhandle(xdr
, args
->fh
);
589 encode_sattr(xdr
, args
->sattr
);
592 static void nfs2_xdr_enc_diropargs(struct rpc_rqst
*req
,
593 struct xdr_stream
*xdr
,
594 const struct nfs_diropargs
*args
)
596 encode_diropargs(xdr
, args
->fh
, args
->name
, args
->len
);
599 static void nfs2_xdr_enc_readlinkargs(struct rpc_rqst
*req
,
600 struct xdr_stream
*xdr
,
601 const struct nfs_readlinkargs
*args
)
603 encode_fhandle(xdr
, args
->fh
);
604 prepare_reply_buffer(req
, args
->pages
, args
->pgbase
,
605 args
->pglen
, NFS_readlinkres_sz
);
615 * unsigned totalcount;
618 static void encode_readargs(struct xdr_stream
*xdr
,
619 const struct nfs_pgio_args
*args
)
621 u32 offset
= args
->offset
;
622 u32 count
= args
->count
;
625 encode_fhandle(xdr
, args
->fh
);
627 p
= xdr_reserve_space(xdr
, 4 + 4 + 4);
628 *p
++ = cpu_to_be32(offset
);
629 *p
++ = cpu_to_be32(count
);
630 *p
= cpu_to_be32(count
);
633 static void nfs2_xdr_enc_readargs(struct rpc_rqst
*req
,
634 struct xdr_stream
*xdr
,
635 const struct nfs_pgio_args
*args
)
637 encode_readargs(xdr
, args
);
638 prepare_reply_buffer(req
, args
->pages
, args
->pgbase
,
639 args
->count
, NFS_readres_sz
);
640 req
->rq_rcv_buf
.flags
|= XDRBUF_READ
;
648 * unsigned beginoffset;
650 * unsigned totalcount;
654 static void encode_writeargs(struct xdr_stream
*xdr
,
655 const struct nfs_pgio_args
*args
)
657 u32 offset
= args
->offset
;
658 u32 count
= args
->count
;
661 encode_fhandle(xdr
, args
->fh
);
663 p
= xdr_reserve_space(xdr
, 4 + 4 + 4 + 4);
664 *p
++ = cpu_to_be32(offset
);
665 *p
++ = cpu_to_be32(offset
);
666 *p
++ = cpu_to_be32(count
);
669 *p
= cpu_to_be32(count
);
670 xdr_write_pages(xdr
, args
->pages
, args
->pgbase
, count
);
673 static void nfs2_xdr_enc_writeargs(struct rpc_rqst
*req
,
674 struct xdr_stream
*xdr
,
675 const struct nfs_pgio_args
*args
)
677 encode_writeargs(xdr
, args
);
678 xdr
->buf
->flags
|= XDRBUF_WRITE
;
684 * struct createargs {
689 static void nfs2_xdr_enc_createargs(struct rpc_rqst
*req
,
690 struct xdr_stream
*xdr
,
691 const struct nfs_createargs
*args
)
693 encode_diropargs(xdr
, args
->fh
, args
->name
, args
->len
);
694 encode_sattr(xdr
, args
->sattr
);
697 static void nfs2_xdr_enc_removeargs(struct rpc_rqst
*req
,
698 struct xdr_stream
*xdr
,
699 const struct nfs_removeargs
*args
)
701 encode_diropargs(xdr
, args
->fh
, args
->name
.name
, args
->name
.len
);
707 * struct renameargs {
712 static void nfs2_xdr_enc_renameargs(struct rpc_rqst
*req
,
713 struct xdr_stream
*xdr
,
714 const struct nfs_renameargs
*args
)
716 const struct qstr
*old
= args
->old_name
;
717 const struct qstr
*new = args
->new_name
;
719 encode_diropargs(xdr
, args
->old_dir
, old
->name
, old
->len
);
720 encode_diropargs(xdr
, args
->new_dir
, new->name
, new->len
);
731 static void nfs2_xdr_enc_linkargs(struct rpc_rqst
*req
,
732 struct xdr_stream
*xdr
,
733 const struct nfs_linkargs
*args
)
735 encode_fhandle(xdr
, args
->fromfh
);
736 encode_diropargs(xdr
, args
->tofh
, args
->toname
, args
->tolen
);
740 * 2.2.14. symlinkargs
742 * struct symlinkargs {
748 static void nfs2_xdr_enc_symlinkargs(struct rpc_rqst
*req
,
749 struct xdr_stream
*xdr
,
750 const struct nfs_symlinkargs
*args
)
752 encode_diropargs(xdr
, args
->fromfh
, args
->fromname
, args
->fromlen
);
753 encode_path(xdr
, args
->pages
, args
->pathlen
);
754 encode_sattr(xdr
, args
->sattr
);
758 * 2.2.17. readdirargs
760 * struct readdirargs {
766 static void encode_readdirargs(struct xdr_stream
*xdr
,
767 const struct nfs_readdirargs
*args
)
771 encode_fhandle(xdr
, args
->fh
);
773 p
= xdr_reserve_space(xdr
, 4 + 4);
774 *p
++ = cpu_to_be32(args
->cookie
);
775 *p
= cpu_to_be32(args
->count
);
778 static void nfs2_xdr_enc_readdirargs(struct rpc_rqst
*req
,
779 struct xdr_stream
*xdr
,
780 const struct nfs_readdirargs
*args
)
782 encode_readdirargs(xdr
, args
);
783 prepare_reply_buffer(req
, args
->pages
, 0,
784 args
->count
, NFS_readdirres_sz
);
788 * NFSv2 XDR decode functions
790 * NFSv2 result types are defined in section 2.2 of RFC 1094:
791 * "NFS: Network File System Protocol Specification".
794 static int nfs2_xdr_dec_stat(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
797 enum nfs_stat status
;
800 error
= decode_stat(xdr
, &status
);
803 if (status
!= NFS_OK
)
808 return nfs_stat_to_errno(status
);
811 static int nfs2_xdr_dec_attrstat(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
812 struct nfs_fattr
*result
)
814 return decode_attrstat(xdr
, result
, NULL
);
817 static int nfs2_xdr_dec_diropres(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
818 struct nfs_diropok
*result
)
820 return decode_diropres(xdr
, result
);
826 * union readlinkres switch (stat status) {
833 static int nfs2_xdr_dec_readlinkres(struct rpc_rqst
*req
,
834 struct xdr_stream
*xdr
, void *__unused
)
836 enum nfs_stat status
;
839 error
= decode_stat(xdr
, &status
);
842 if (status
!= NFS_OK
)
844 error
= decode_path(xdr
);
848 return nfs_stat_to_errno(status
);
854 * union readres switch (stat status) {
862 static int nfs2_xdr_dec_readres(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
863 struct nfs_pgio_res
*result
)
865 enum nfs_stat status
;
868 error
= decode_stat(xdr
, &status
);
871 result
->op_status
= status
;
872 if (status
!= NFS_OK
)
874 error
= decode_fattr(xdr
, result
->fattr
);
877 error
= decode_nfsdata(xdr
, result
);
881 return nfs_stat_to_errno(status
);
884 static int nfs2_xdr_dec_writeres(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
885 struct nfs_pgio_res
*result
)
887 /* All NFSv2 writes are "file sync" writes */
888 result
->verf
->committed
= NFS_FILE_SYNC
;
889 return decode_attrstat(xdr
, result
->fattr
, &result
->op_status
);
893 * nfs2_decode_dirent - Decode a single NFSv2 directory entry stored in
894 * the local page cache.
895 * @xdr: XDR stream where entry resides
896 * @entry: buffer to fill in with entry data
897 * @plus: boolean indicating whether this should be a readdirplus entry
899 * Returns zero if successful, otherwise a negative errno value is
902 * This function is not invoked during READDIR reply decoding, but
903 * rather whenever an application invokes the getdents(2) system call
904 * on a directory already in our cache.
915 int nfs2_decode_dirent(struct xdr_stream
*xdr
, struct nfs_entry
*entry
,
921 p
= xdr_inline_decode(xdr
, 4);
922 if (unlikely(p
== NULL
))
924 if (*p
++ == xdr_zero
) {
925 p
= xdr_inline_decode(xdr
, 4);
926 if (unlikely(p
== NULL
))
928 if (*p
++ == xdr_zero
)
934 p
= xdr_inline_decode(xdr
, 4);
935 if (unlikely(p
== NULL
))
937 entry
->ino
= be32_to_cpup(p
);
939 error
= decode_filename_inline(xdr
, &entry
->name
, &entry
->len
);
944 * The type (size and byte order) of nfscookie isn't defined in
945 * RFC 1094. This implementation assumes that it's an XDR uint32.
947 entry
->prev_cookie
= entry
->cookie
;
948 p
= xdr_inline_decode(xdr
, 4);
949 if (unlikely(p
== NULL
))
951 entry
->cookie
= be32_to_cpup(p
);
953 entry
->d_type
= DT_UNKNOWN
;
958 print_overflow_msg(__func__
, xdr
);
965 * union readdirres switch (stat status) {
975 * Read the directory contents into the page cache, but don't
976 * touch them. The actual decoding is done by nfs2_decode_dirent()
977 * during subsequent nfs_readdir() calls.
979 static int decode_readdirok(struct xdr_stream
*xdr
)
981 return xdr_read_pages(xdr
, xdr
->buf
->page_len
);
984 static int nfs2_xdr_dec_readdirres(struct rpc_rqst
*req
,
985 struct xdr_stream
*xdr
, void *__unused
)
987 enum nfs_stat status
;
990 error
= decode_stat(xdr
, &status
);
993 if (status
!= NFS_OK
)
995 error
= decode_readdirok(xdr
);
999 return nfs_stat_to_errno(status
);
1005 * union statfsres (stat status) {
1018 static int decode_info(struct xdr_stream
*xdr
, struct nfs2_fsstat
*result
)
1022 p
= xdr_inline_decode(xdr
, NFS_info_sz
<< 2);
1023 if (unlikely(p
== NULL
))
1025 result
->tsize
= be32_to_cpup(p
++);
1026 result
->bsize
= be32_to_cpup(p
++);
1027 result
->blocks
= be32_to_cpup(p
++);
1028 result
->bfree
= be32_to_cpup(p
++);
1029 result
->bavail
= be32_to_cpup(p
);
1032 print_overflow_msg(__func__
, xdr
);
1036 static int nfs2_xdr_dec_statfsres(struct rpc_rqst
*req
, struct xdr_stream
*xdr
,
1037 struct nfs2_fsstat
*result
)
1039 enum nfs_stat status
;
1042 error
= decode_stat(xdr
, &status
);
1043 if (unlikely(error
))
1045 if (status
!= NFS_OK
)
1047 error
= decode_info(xdr
, result
);
1051 return nfs_stat_to_errno(status
);
1056 * We need to translate between nfs status return values and
1057 * the local errno values which may not be the same.
1059 static const struct {
1064 { NFSERR_PERM
, -EPERM
},
1065 { NFSERR_NOENT
, -ENOENT
},
1066 { NFSERR_IO
, -errno_NFSERR_IO
},
1067 { NFSERR_NXIO
, -ENXIO
},
1068 /* { NFSERR_EAGAIN, -EAGAIN }, */
1069 { NFSERR_ACCES
, -EACCES
},
1070 { NFSERR_EXIST
, -EEXIST
},
1071 { NFSERR_XDEV
, -EXDEV
},
1072 { NFSERR_NODEV
, -ENODEV
},
1073 { NFSERR_NOTDIR
, -ENOTDIR
},
1074 { NFSERR_ISDIR
, -EISDIR
},
1075 { NFSERR_INVAL
, -EINVAL
},
1076 { NFSERR_FBIG
, -EFBIG
},
1077 { NFSERR_NOSPC
, -ENOSPC
},
1078 { NFSERR_ROFS
, -EROFS
},
1079 { NFSERR_MLINK
, -EMLINK
},
1080 { NFSERR_NAMETOOLONG
, -ENAMETOOLONG
},
1081 { NFSERR_NOTEMPTY
, -ENOTEMPTY
},
1082 { NFSERR_DQUOT
, -EDQUOT
},
1083 { NFSERR_STALE
, -ESTALE
},
1084 { NFSERR_REMOTE
, -EREMOTE
},
1086 { NFSERR_WFLUSH
, -EWFLUSH
},
1088 { NFSERR_BADHANDLE
, -EBADHANDLE
},
1089 { NFSERR_NOT_SYNC
, -ENOTSYNC
},
1090 { NFSERR_BAD_COOKIE
, -EBADCOOKIE
},
1091 { NFSERR_NOTSUPP
, -ENOTSUPP
},
1092 { NFSERR_TOOSMALL
, -ETOOSMALL
},
1093 { NFSERR_SERVERFAULT
, -EREMOTEIO
},
1094 { NFSERR_BADTYPE
, -EBADTYPE
},
1095 { NFSERR_JUKEBOX
, -EJUKEBOX
},
1100 * nfs_stat_to_errno - convert an NFS status code to a local errno
1101 * @status: NFS status code to convert
1103 * Returns a local errno value, or -EIO if the NFS status code is
1104 * not recognized. This function is used jointly by NFSv2 and NFSv3.
1106 static int nfs_stat_to_errno(enum nfs_stat status
)
1110 for (i
= 0; nfs_errtbl
[i
].stat
!= -1; i
++) {
1111 if (nfs_errtbl
[i
].stat
== (int)status
)
1112 return nfs_errtbl
[i
].errno
;
1114 dprintk("NFS: Unrecognized nfs status value: %u\n", status
);
1115 return nfs_errtbl
[i
].errno
;
1118 #define PROC(proc, argtype, restype, timer) \
1119 [NFSPROC_##proc] = { \
1120 .p_proc = NFSPROC_##proc, \
1121 .p_encode = (kxdreproc_t)nfs2_xdr_enc_##argtype, \
1122 .p_decode = (kxdrdproc_t)nfs2_xdr_dec_##restype, \
1123 .p_arglen = NFS_##argtype##_sz, \
1124 .p_replen = NFS_##restype##_sz, \
1126 .p_statidx = NFSPROC_##proc, \
1129 struct rpc_procinfo nfs_procedures
[] = {
1130 PROC(GETATTR
, fhandle
, attrstat
, 1),
1131 PROC(SETATTR
, sattrargs
, attrstat
, 0),
1132 PROC(LOOKUP
, diropargs
, diropres
, 2),
1133 PROC(READLINK
, readlinkargs
, readlinkres
, 3),
1134 PROC(READ
, readargs
, readres
, 3),
1135 PROC(WRITE
, writeargs
, writeres
, 4),
1136 PROC(CREATE
, createargs
, diropres
, 0),
1137 PROC(REMOVE
, removeargs
, stat
, 0),
1138 PROC(RENAME
, renameargs
, stat
, 0),
1139 PROC(LINK
, linkargs
, stat
, 0),
1140 PROC(SYMLINK
, symlinkargs
, stat
, 0),
1141 PROC(MKDIR
, createargs
, diropres
, 0),
1142 PROC(RMDIR
, diropargs
, stat
, 0),
1143 PROC(READDIR
, readdirargs
, readdirres
, 3),
1144 PROC(STATFS
, fhandle
, statfsres
, 0),
1147 const struct rpc_version nfs_version2
= {
1149 .nrprocs
= ARRAY_SIZE(nfs_procedures
),
1150 .procs
= nfs_procedures