blob: c8a7e98c1371afc879ef28d1acc2f0f17c884401 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/nfs2xdr.c
3 *
4 * XDR functions to encode/decode NFS RPC arguments and results.
5 *
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
10 */
11
12#include <linux/param.h>
13#include <linux/time.h>
14#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/string.h>
17#include <linux/in.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>
Trond Myklebust816724e2006-06-24 08:41:41 -040024#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#define NFSDBG_FACILITY NFSDBG_XDR
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* Mapping from NFS error code to "errno" error code. */
29#define errno_NFSERR_IO EIO
30
31/*
32 * Declare the space requirements for NFS arguments and replies as
33 * number of 32bit-words
34 */
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)
42
43#define NFS_diropargs_sz (NFS_fhandle_sz+NFS_filename_sz)
Trond Myklebust4fdc17b2007-07-14 15:39:57 -040044#define NFS_removeargs_sz (NFS_fhandle_sz+NFS_filename_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#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)
Chuck Lever94a6d752006-08-22 20:06:23 -040052#define NFS_symlinkargs_sz (NFS_diropargs_sz+1+NFS_sattr_sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define NFS_readdirargs_sz (NFS_fhandle_sz+2)
54
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)
63
Bryan Schumaker5e7e5a02012-05-10 16:47:18 -040064static int nfs_stat_to_errno(enum nfs_stat);
Chuck Lever25a08662010-12-14 14:54:30 +000065
66/*
67 * While encoding arguments, set up the reply buffer in advance to
68 * receive reply data directly into the page cache.
69 */
70static void prepare_reply_buffer(struct rpc_rqst *req, struct page **pages,
71 unsigned int base, unsigned int len,
72 unsigned int bufsize)
73{
74 struct rpc_auth *auth = req->rq_cred->cr_auth;
75 unsigned int replen;
76
77 replen = RPC_REPHDRSIZE + auth->au_rslack + bufsize;
78 xdr_inline_pages(&req->rq_rcv_buf, replen << 2, pages, base, len);
79}
80
Chuck Leverf796f8b2010-12-14 14:55:10 +000081/*
82 * Handle decode buffer overflows out-of-line.
83 */
84static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
85{
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);
89}
90
Chuck Lever25a08662010-12-14 14:54:30 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
Chuck Lever25a08662010-12-14 14:54:30 +000093 * Encode/decode NFSv2 basic data types
94 *
95 * Basic NFSv2 data types are defined in section 2.3 of RFC 1094:
96 * "NFS: Network File System Protocol Specification".
97 *
98 * Not all basic data types have their own encoding and decoding
99 * functions. For run-time efficiency, some data types are encoded
100 * or decoded inline.
101 */
102
103/*
Chuck Leverf796f8b2010-12-14 14:55:10 +0000104 * typedef opaque nfsdata<>;
105 */
Anna Schumaker9137bdf2014-05-06 09:12:25 -0400106static int decode_nfsdata(struct xdr_stream *xdr, struct nfs_pgio_res *result)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000107{
108 u32 recvd, count;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000109 __be32 *p;
110
111 p = xdr_inline_decode(xdr, 4);
112 if (unlikely(p == NULL))
113 goto out_overflow;
114 count = be32_to_cpup(p);
Trond Myklebust64bd5772012-06-20 22:35:05 -0400115 recvd = xdr_read_pages(xdr, count);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000116 if (unlikely(count > recvd))
117 goto out_cheating;
118out:
Chuck Leverf796f8b2010-12-14 14:55:10 +0000119 result->eof = 0; /* NFSv2 does not pass EOF flag on the wire. */
120 result->count = count;
121 return count;
122out_cheating:
123 dprintk("NFS: server cheating in read result: "
124 "count %u > recvd %u\n", count, recvd);
125 count = recvd;
126 goto out;
127out_overflow:
128 print_overflow_msg(__func__, xdr);
129 return -EIO;
130}
131
132/*
133 * enum stat {
134 * NFS_OK = 0,
135 * NFSERR_PERM = 1,
136 * NFSERR_NOENT = 2,
137 * NFSERR_IO = 5,
138 * NFSERR_NXIO = 6,
139 * NFSERR_ACCES = 13,
140 * NFSERR_EXIST = 17,
141 * NFSERR_NODEV = 19,
142 * NFSERR_NOTDIR = 20,
143 * NFSERR_ISDIR = 21,
144 * NFSERR_FBIG = 27,
145 * NFSERR_NOSPC = 28,
146 * NFSERR_ROFS = 30,
147 * NFSERR_NAMETOOLONG = 63,
148 * NFSERR_NOTEMPTY = 66,
149 * NFSERR_DQUOT = 69,
150 * NFSERR_STALE = 70,
151 * NFSERR_WFLUSH = 99
152 * };
153 */
154static int decode_stat(struct xdr_stream *xdr, enum nfs_stat *status)
155{
156 __be32 *p;
157
158 p = xdr_inline_decode(xdr, 4);
159 if (unlikely(p == NULL))
160 goto out_overflow;
161 *status = be32_to_cpup(p);
162 return 0;
163out_overflow:
164 print_overflow_msg(__func__, xdr);
165 return -EIO;
166}
167
168/*
Chuck Lever5f96e5e2010-12-14 14:55:30 +0000169 * 2.3.2. ftype
170 *
171 * enum ftype {
172 * NFNON = 0,
173 * NFREG = 1,
174 * NFDIR = 2,
175 * NFBLK = 3,
176 * NFCHR = 4,
177 * NFLNK = 5
178 * };
179 *
180 */
181static __be32 *xdr_decode_ftype(__be32 *p, u32 *type)
182{
183 *type = be32_to_cpup(p++);
184 if (unlikely(*type > NF2FIFO))
185 *type = NFBAD;
186 return p;
187}
188
189/*
Chuck Lever25a08662010-12-14 14:54:30 +0000190 * 2.3.3. fhandle
191 *
192 * typedef opaque fhandle[FHSIZE];
193 */
194static void encode_fhandle(struct xdr_stream *xdr, const struct nfs_fh *fh)
195{
196 __be32 *p;
197
Chuck Lever25a08662010-12-14 14:54:30 +0000198 p = xdr_reserve_space(xdr, NFS2_FHSIZE);
199 memcpy(p, fh->data, NFS2_FHSIZE);
200}
201
Chuck Leverf796f8b2010-12-14 14:55:10 +0000202static int decode_fhandle(struct xdr_stream *xdr, struct nfs_fh *fh)
203{
204 __be32 *p;
205
206 p = xdr_inline_decode(xdr, NFS2_FHSIZE);
207 if (unlikely(p == NULL))
208 goto out_overflow;
209 fh->size = NFS2_FHSIZE;
210 memcpy(fh->data, p, NFS2_FHSIZE);
211 return 0;
212out_overflow:
213 print_overflow_msg(__func__, xdr);
214 return -EIO;
215}
216
Chuck Lever25a08662010-12-14 14:54:30 +0000217/*
Chuck Lever282ac2a2010-12-14 14:54:50 +0000218 * 2.3.4. timeval
219 *
220 * struct timeval {
221 * unsigned int seconds;
222 * unsigned int useconds;
223 * };
224 */
225static __be32 *xdr_encode_time(__be32 *p, const struct timespec *timep)
226{
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);
230 else
231 *p++ = cpu_to_be32(0);
232 return p;
233}
234
235/*
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.
241 */
242static __be32 *xdr_encode_current_server_time(__be32 *p,
243 const struct timespec *timep)
244{
245 *p++ = cpu_to_be32(timep->tv_sec);
246 *p++ = cpu_to_be32(1000000);
247 return p;
248}
249
Chuck Lever5f96e5e2010-12-14 14:55:30 +0000250static __be32 *xdr_decode_time(__be32 *p, struct timespec *timep)
251{
252 timep->tv_sec = be32_to_cpup(p++);
253 timep->tv_nsec = be32_to_cpup(p++) * NSEC_PER_USEC;
254 return p;
255}
256
Chuck Lever282ac2a2010-12-14 14:54:50 +0000257/*
Chuck Leverf796f8b2010-12-14 14:55:10 +0000258 * 2.3.5. fattr
259 *
260 * struct fattr {
261 * ftype type;
262 * unsigned int mode;
263 * unsigned int nlink;
264 * unsigned int uid;
265 * unsigned int gid;
266 * unsigned int size;
267 * unsigned int blocksize;
268 * unsigned int rdev;
269 * unsigned int blocks;
270 * unsigned int fsid;
271 * unsigned int fileid;
272 * timeval atime;
273 * timeval mtime;
274 * timeval ctime;
275 * };
276 *
277 */
278static int decode_fattr(struct xdr_stream *xdr, struct nfs_fattr *fattr)
279{
Chuck Lever5f96e5e2010-12-14 14:55:30 +0000280 u32 rdev, type;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000281 __be32 *p;
282
283 p = xdr_inline_decode(xdr, NFS_fattr_sz << 2);
284 if (unlikely(p == NULL))
285 goto out_overflow;
Chuck Lever5f96e5e2010-12-14 14:55:30 +0000286
287 fattr->valid |= NFS_ATTR_FATTR_V2;
288
289 p = xdr_decode_ftype(p, &type);
290
291 fattr->mode = be32_to_cpup(p++);
292 fattr->nlink = be32_to_cpup(p++);
Eric W. Biedermancfa08982013-02-01 03:45:54 -0800293 fattr->uid = make_kuid(&init_user_ns, be32_to_cpup(p++));
294 if (!uid_valid(fattr->uid))
295 goto out_uid;
296 fattr->gid = make_kgid(&init_user_ns, be32_to_cpup(p++));
297 if (!gid_valid(fattr->gid))
298 goto out_gid;
299
Chuck Lever5f96e5e2010-12-14 14:55:30 +0000300 fattr->size = be32_to_cpup(p++);
301 fattr->du.nfs2.blocksize = be32_to_cpup(p++);
302
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;
307 fattr->rdev = 0;
308 }
309
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++);
314
315 p = xdr_decode_time(p, &fattr->atime);
316 p = xdr_decode_time(p, &fattr->mtime);
317 xdr_decode_time(p, &fattr->ctime);
Trond Myklebust3a1556e2012-04-27 13:48:18 -0400318 fattr->change_attr = nfs_timespec_to_change_attr(&fattr->ctime);
319
Chuck Leverf796f8b2010-12-14 14:55:10 +0000320 return 0;
Eric W. Biedermancfa08982013-02-01 03:45:54 -0800321out_uid:
322 dprintk("NFS: returned invalid uid\n");
323 return -EINVAL;
324out_gid:
325 dprintk("NFS: returned invalid gid\n");
326 return -EINVAL;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000327out_overflow:
328 print_overflow_msg(__func__, xdr);
329 return -EIO;
330}
331
332/*
Chuck Lever25a08662010-12-14 14:54:30 +0000333 * 2.3.6. sattr
334 *
335 * struct sattr {
336 * unsigned int mode;
337 * unsigned int uid;
338 * unsigned int gid;
339 * unsigned int size;
340 * timeval atime;
341 * timeval mtime;
342 * };
343 */
344
345#define NFS2_SATTR_NOT_SET (0xffffffff)
346
347static __be32 *xdr_time_not_set(__be32 *p)
348{
349 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
350 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
351 return p;
352}
353
354static void encode_sattr(struct xdr_stream *xdr, const struct iattr *attr)
355{
356 __be32 *p;
357
358 p = xdr_reserve_space(xdr, NFS_sattr_sz << 2);
359
360 if (attr->ia_valid & ATTR_MODE)
361 *p++ = cpu_to_be32(attr->ia_mode);
362 else
363 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
364 if (attr->ia_valid & ATTR_UID)
Eric W. Biedermancfa08982013-02-01 03:45:54 -0800365 *p++ = cpu_to_be32(from_kuid(&init_user_ns, attr->ia_uid));
Chuck Lever25a08662010-12-14 14:54:30 +0000366 else
367 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
368 if (attr->ia_valid & ATTR_GID)
Eric W. Biedermancfa08982013-02-01 03:45:54 -0800369 *p++ = cpu_to_be32(from_kgid(&init_user_ns, attr->ia_gid));
Chuck Lever25a08662010-12-14 14:54:30 +0000370 else
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);
374 else
375 *p++ = cpu_to_be32(NFS2_SATTR_NOT_SET);
376
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);
381 else
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);
387 else
388 xdr_time_not_set(p);
389}
390
391/*
392 * 2.3.7. filename
393 *
394 * typedef string filename<MAXNAMLEN>;
395 */
396static void encode_filename(struct xdr_stream *xdr,
397 const char *name, u32 length)
398{
399 __be32 *p;
400
Trond Myklebust7fc38842012-10-15 11:51:21 -0400401 WARN_ON_ONCE(length > NFS2_MAXNAMLEN);
Chuck Lever25a08662010-12-14 14:54:30 +0000402 p = xdr_reserve_space(xdr, 4 + length);
403 xdr_encode_opaque(p, name, length);
404}
405
Chuck Leverf796f8b2010-12-14 14:55:10 +0000406static int decode_filename_inline(struct xdr_stream *xdr,
407 const char **name, u32 *length)
408{
409 __be32 *p;
410 u32 count;
411
412 p = xdr_inline_decode(xdr, 4);
413 if (unlikely(p == NULL))
414 goto out_overflow;
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))
420 goto out_overflow;
421 *name = (const char *)p;
422 *length = count;
423 return 0;
424out_nametoolong:
425 dprintk("NFS: returned filename too long: %u\n", count);
426 return -ENAMETOOLONG;
427out_overflow:
428 print_overflow_msg(__func__, xdr);
429 return -EIO;
430}
431
Chuck Lever25a08662010-12-14 14:54:30 +0000432/*
433 * 2.3.8. path
434 *
435 * typedef string path<MAXPATHLEN>;
436 */
437static void encode_path(struct xdr_stream *xdr, struct page **pages, u32 length)
438{
439 __be32 *p;
440
Chuck Lever25a08662010-12-14 14:54:30 +0000441 p = xdr_reserve_space(xdr, 4);
442 *p = cpu_to_be32(length);
443 xdr_write_pages(xdr, pages, 0, length);
444}
445
Chuck Leverf796f8b2010-12-14 14:55:10 +0000446static int decode_path(struct xdr_stream *xdr)
447{
448 u32 length, recvd;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000449 __be32 *p;
450
451 p = xdr_inline_decode(xdr, 4);
452 if (unlikely(p == NULL))
453 goto out_overflow;
454 length = be32_to_cpup(p);
455 if (unlikely(length >= xdr->buf->page_len || length > NFS_MAXPATHLEN))
456 goto out_size;
Trond Myklebust64bd5772012-06-20 22:35:05 -0400457 recvd = xdr_read_pages(xdr, length);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000458 if (unlikely(length > recvd))
459 goto out_cheating;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000460 xdr_terminate_string(xdr->buf, length);
461 return 0;
462out_size:
463 dprintk("NFS: returned pathname too long: %u\n", length);
464 return -ENAMETOOLONG;
465out_cheating:
466 dprintk("NFS: server cheating in pathname result: "
467 "length %u > received %u\n", length, recvd);
468 return -EIO;
469out_overflow:
470 print_overflow_msg(__func__, xdr);
471 return -EIO;
472}
473
474/*
475 * 2.3.9. attrstat
476 *
477 * union attrstat switch (stat status) {
478 * case NFS_OK:
479 * fattr attributes;
480 * default:
481 * void;
482 * };
483 */
Peng Taoaabff4d2014-08-27 10:47:14 +0800484static int decode_attrstat(struct xdr_stream *xdr, struct nfs_fattr *result,
485 __u32 *op_status)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000486{
487 enum nfs_stat status;
488 int error;
489
490 error = decode_stat(xdr, &status);
491 if (unlikely(error))
492 goto out;
Peng Taoaabff4d2014-08-27 10:47:14 +0800493 if (op_status)
494 *op_status = status;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000495 if (status != NFS_OK)
496 goto out_default;
497 error = decode_fattr(xdr, result);
498out:
499 return error;
500out_default:
501 return nfs_stat_to_errno(status);
502}
503
Chuck Lever25a08662010-12-14 14:54:30 +0000504/*
505 * 2.3.10. diropargs
506 *
507 * struct diropargs {
508 * fhandle dir;
509 * filename name;
510 * };
511 */
512static void encode_diropargs(struct xdr_stream *xdr, const struct nfs_fh *fh,
513 const char *name, u32 length)
514{
515 encode_fhandle(xdr, fh);
516 encode_filename(xdr, name, length);
517}
518
Chuck Leverf796f8b2010-12-14 14:55:10 +0000519/*
520 * 2.3.11. diropres
521 *
522 * union diropres switch (stat status) {
523 * case NFS_OK:
524 * struct {
525 * fhandle file;
526 * fattr attributes;
527 * } diropok;
528 * default:
529 * void;
530 * };
531 */
532static int decode_diropok(struct xdr_stream *xdr, struct nfs_diropok *result)
533{
534 int error;
535
536 error = decode_fhandle(xdr, result->fh);
537 if (unlikely(error))
538 goto out;
539 error = decode_fattr(xdr, result->fattr);
540out:
541 return error;
542}
543
544static int decode_diropres(struct xdr_stream *xdr, struct nfs_diropok *result)
545{
546 enum nfs_stat status;
547 int error;
548
549 error = decode_stat(xdr, &status);
550 if (unlikely(error))
551 goto out;
552 if (status != NFS_OK)
553 goto out_default;
554 error = decode_diropok(xdr, result);
555out:
556 return error;
557out_default:
558 return nfs_stat_to_errno(status);
559}
560
Chuck Lever25a08662010-12-14 14:54:30 +0000561
562/*
Chuck Lever2d70f532010-12-14 14:54:40 +0000563 * NFSv2 XDR encode functions
564 *
565 * NFSv2 argument types are defined in section 2.2 of RFC 1094:
566 * "NFS: Network File System Protocol Specification".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Chuck Lever9f06c712010-12-14 14:59:18 +0000569static void nfs2_xdr_enc_fhandle(struct rpc_rqst *req,
570 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200571 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000572{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200573 const struct nfs_fh *fh = data;
574
Chuck Lever9f06c712010-12-14 14:59:18 +0000575 encode_fhandle(xdr, fh);
Chuck Lever25a08662010-12-14 14:54:30 +0000576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578/*
Chuck Lever25a08662010-12-14 14:54:30 +0000579 * 2.2.3. sattrargs
580 *
581 * struct sattrargs {
582 * fhandle file;
583 * sattr attributes;
584 * };
585 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000586static void nfs2_xdr_enc_sattrargs(struct rpc_rqst *req,
587 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200588 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000589{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200590 const struct nfs_sattrargs *args = data;
591
Chuck Lever9f06c712010-12-14 14:59:18 +0000592 encode_fhandle(xdr, args->fh);
593 encode_sattr(xdr, args->sattr);
Chuck Lever25a08662010-12-14 14:54:30 +0000594}
595
Chuck Lever9f06c712010-12-14 14:59:18 +0000596static void nfs2_xdr_enc_diropargs(struct rpc_rqst *req,
597 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200598 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000599{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200600 const struct nfs_diropargs *args = data;
601
Chuck Lever9f06c712010-12-14 14:59:18 +0000602 encode_diropargs(xdr, args->fh, args->name, args->len);
Chuck Lever25a08662010-12-14 14:54:30 +0000603}
604
Chuck Lever9f06c712010-12-14 14:59:18 +0000605static void nfs2_xdr_enc_readlinkargs(struct rpc_rqst *req,
606 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200607 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000608{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200609 const struct nfs_readlinkargs *args = data;
610
Chuck Lever9f06c712010-12-14 14:59:18 +0000611 encode_fhandle(xdr, args->fh);
Chuck Lever25a08662010-12-14 14:54:30 +0000612 prepare_reply_buffer(req, args->pages, args->pgbase,
613 args->pglen, NFS_readlinkres_sz);
Chuck Lever25a08662010-12-14 14:54:30 +0000614}
615
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400616/*
Chuck Lever25a08662010-12-14 14:54:30 +0000617 * 2.2.7. readargs
618 *
619 * struct readargs {
620 * fhandle file;
621 * unsigned offset;
622 * unsigned count;
623 * unsigned totalcount;
624 * };
625 */
626static void encode_readargs(struct xdr_stream *xdr,
Anna Schumaker3c6b8992014-05-06 09:12:24 -0400627 const struct nfs_pgio_args *args)
Chuck Lever25a08662010-12-14 14:54:30 +0000628{
629 u32 offset = args->offset;
630 u32 count = args->count;
631 __be32 *p;
632
633 encode_fhandle(xdr, args->fh);
634
635 p = xdr_reserve_space(xdr, 4 + 4 + 4);
636 *p++ = cpu_to_be32(offset);
637 *p++ = cpu_to_be32(count);
638 *p = cpu_to_be32(count);
639}
640
Chuck Lever9f06c712010-12-14 14:59:18 +0000641static void nfs2_xdr_enc_readargs(struct rpc_rqst *req,
642 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200643 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000644{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200645 const struct nfs_pgio_args *args = data;
646
Chuck Lever9f06c712010-12-14 14:59:18 +0000647 encode_readargs(xdr, args);
Chuck Lever25a08662010-12-14 14:54:30 +0000648 prepare_reply_buffer(req, args->pages, args->pgbase,
649 args->count, NFS_readres_sz);
650 req->rq_rcv_buf.flags |= XDRBUF_READ;
Chuck Lever25a08662010-12-14 14:54:30 +0000651}
652
653/*
Chuck Lever25a08662010-12-14 14:54:30 +0000654 * 2.2.9. writeargs
655 *
656 * struct writeargs {
657 * fhandle file;
658 * unsigned beginoffset;
659 * unsigned offset;
660 * unsigned totalcount;
661 * nfsdata data;
662 * };
663 */
664static void encode_writeargs(struct xdr_stream *xdr,
Anna Schumaker3c6b8992014-05-06 09:12:24 -0400665 const struct nfs_pgio_args *args)
Chuck Lever25a08662010-12-14 14:54:30 +0000666{
667 u32 offset = args->offset;
668 u32 count = args->count;
669 __be32 *p;
670
671 encode_fhandle(xdr, args->fh);
672
673 p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4);
674 *p++ = cpu_to_be32(offset);
675 *p++ = cpu_to_be32(offset);
676 *p++ = cpu_to_be32(count);
677
678 /* nfsdata */
679 *p = cpu_to_be32(count);
680 xdr_write_pages(xdr, args->pages, args->pgbase, count);
681}
682
Chuck Lever9f06c712010-12-14 14:59:18 +0000683static void nfs2_xdr_enc_writeargs(struct rpc_rqst *req,
684 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200685 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000686{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200687 const struct nfs_pgio_args *args = data;
688
Chuck Lever9f06c712010-12-14 14:59:18 +0000689 encode_writeargs(xdr, args);
690 xdr->buf->flags |= XDRBUF_WRITE;
Chuck Lever25a08662010-12-14 14:54:30 +0000691}
692
693/*
Chuck Lever25a08662010-12-14 14:54:30 +0000694 * 2.2.10. createargs
695 *
696 * struct createargs {
697 * diropargs where;
698 * sattr attributes;
699 * };
700 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000701static void nfs2_xdr_enc_createargs(struct rpc_rqst *req,
702 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200703 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000704{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200705 const struct nfs_createargs *args = data;
706
Chuck Lever9f06c712010-12-14 14:59:18 +0000707 encode_diropargs(xdr, args->fh, args->name, args->len);
708 encode_sattr(xdr, args->sattr);
Chuck Lever25a08662010-12-14 14:54:30 +0000709}
710
Chuck Lever9f06c712010-12-14 14:59:18 +0000711static void nfs2_xdr_enc_removeargs(struct rpc_rqst *req,
712 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200713 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000714{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200715 const struct nfs_removeargs *args = data;
716
Chuck Lever9f06c712010-12-14 14:59:18 +0000717 encode_diropargs(xdr, args->fh, args->name.name, args->name.len);
Chuck Lever25a08662010-12-14 14:54:30 +0000718}
719
720/*
Chuck Lever25a08662010-12-14 14:54:30 +0000721 * 2.2.12. renameargs
722 *
723 * struct renameargs {
724 * diropargs from;
725 * diropargs to;
726 * };
727 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000728static void nfs2_xdr_enc_renameargs(struct rpc_rqst *req,
729 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200730 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000731{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200732 const struct nfs_renameargs *args = data;
Chuck Lever25a08662010-12-14 14:54:30 +0000733 const struct qstr *old = args->old_name;
734 const struct qstr *new = args->new_name;
Chuck Lever25a08662010-12-14 14:54:30 +0000735
Chuck Lever9f06c712010-12-14 14:59:18 +0000736 encode_diropargs(xdr, args->old_dir, old->name, old->len);
737 encode_diropargs(xdr, args->new_dir, new->name, new->len);
Chuck Lever25a08662010-12-14 14:54:30 +0000738}
739
740/*
Chuck Lever25a08662010-12-14 14:54:30 +0000741 * 2.2.13. linkargs
742 *
743 * struct linkargs {
744 * fhandle from;
745 * diropargs to;
746 * };
747 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000748static void nfs2_xdr_enc_linkargs(struct rpc_rqst *req,
749 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200750 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000751{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200752 const struct nfs_linkargs *args = data;
753
Chuck Lever9f06c712010-12-14 14:59:18 +0000754 encode_fhandle(xdr, args->fromfh);
755 encode_diropargs(xdr, args->tofh, args->toname, args->tolen);
Chuck Lever25a08662010-12-14 14:54:30 +0000756}
757
758/*
Chuck Lever25a08662010-12-14 14:54:30 +0000759 * 2.2.14. symlinkargs
760 *
761 * struct symlinkargs {
762 * diropargs from;
763 * path to;
764 * sattr attributes;
765 * };
766 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000767static void nfs2_xdr_enc_symlinkargs(struct rpc_rqst *req,
768 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200769 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000770{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200771 const struct nfs_symlinkargs *args = data;
772
Chuck Lever9f06c712010-12-14 14:59:18 +0000773 encode_diropargs(xdr, args->fromfh, args->fromname, args->fromlen);
774 encode_path(xdr, args->pages, args->pathlen);
775 encode_sattr(xdr, args->sattr);
Chuck Lever25a08662010-12-14 14:54:30 +0000776}
777
778/*
Chuck Lever25a08662010-12-14 14:54:30 +0000779 * 2.2.17. readdirargs
780 *
781 * struct readdirargs {
782 * fhandle dir;
783 * nfscookie cookie;
784 * unsigned count;
785 * };
786 */
787static void encode_readdirargs(struct xdr_stream *xdr,
788 const struct nfs_readdirargs *args)
789{
790 __be32 *p;
791
792 encode_fhandle(xdr, args->fh);
793
794 p = xdr_reserve_space(xdr, 4 + 4);
795 *p++ = cpu_to_be32(args->cookie);
796 *p = cpu_to_be32(args->count);
797}
798
Chuck Lever9f06c712010-12-14 14:59:18 +0000799static void nfs2_xdr_enc_readdirargs(struct rpc_rqst *req,
800 struct xdr_stream *xdr,
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200801 const void *data)
Chuck Lever25a08662010-12-14 14:54:30 +0000802{
Christoph Hellwigfcc85812017-05-08 10:01:49 +0200803 const struct nfs_readdirargs *args = data;
804
Chuck Lever9f06c712010-12-14 14:59:18 +0000805 encode_readdirargs(xdr, args);
Chuck Lever25a08662010-12-14 14:54:30 +0000806 prepare_reply_buffer(req, args->pages, 0,
807 args->count, NFS_readdirres_sz);
Chuck Lever25a08662010-12-14 14:54:30 +0000808}
809
810/*
Chuck Lever661ad422010-12-14 14:55:20 +0000811 * NFSv2 XDR decode functions
812 *
813 * NFSv2 result types are defined in section 2.2 of RFC 1094:
814 * "NFS: Network File System Protocol Specification".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Chuck Leverbf269552010-12-14 14:59:29 +0000817static int nfs2_xdr_dec_stat(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverf796f8b2010-12-14 14:55:10 +0000818 void *__unused)
819{
Chuck Leverf796f8b2010-12-14 14:55:10 +0000820 enum nfs_stat status;
821 int error;
822
Chuck Leverbf269552010-12-14 14:59:29 +0000823 error = decode_stat(xdr, &status);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000824 if (unlikely(error))
825 goto out;
826 if (status != NFS_OK)
827 goto out_default;
828out:
829 return error;
830out_default:
831 return nfs_stat_to_errno(status);
832}
833
Chuck Leverbf269552010-12-14 14:59:29 +0000834static int nfs2_xdr_dec_attrstat(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigfc016482017-05-08 15:09:02 +0200835 void *result)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000836{
Peng Taoaabff4d2014-08-27 10:47:14 +0800837 return decode_attrstat(xdr, result, NULL);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000838}
839
Chuck Leverbf269552010-12-14 14:59:29 +0000840static int nfs2_xdr_dec_diropres(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigfc016482017-05-08 15:09:02 +0200841 void *result)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000842{
Chuck Leverbf269552010-12-14 14:59:29 +0000843 return decode_diropres(xdr, result);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/*
Chuck Leverf796f8b2010-12-14 14:55:10 +0000847 * 2.2.6. readlinkres
848 *
849 * union readlinkres switch (stat status) {
850 * case NFS_OK:
851 * path data;
852 * default:
853 * void;
854 * };
855 */
Chuck Leverbf269552010-12-14 14:59:29 +0000856static int nfs2_xdr_dec_readlinkres(struct rpc_rqst *req,
857 struct xdr_stream *xdr, void *__unused)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000858{
Chuck Leverf796f8b2010-12-14 14:55:10 +0000859 enum nfs_stat status;
860 int error;
861
Chuck Leverbf269552010-12-14 14:59:29 +0000862 error = decode_stat(xdr, &status);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000863 if (unlikely(error))
864 goto out;
865 if (status != NFS_OK)
866 goto out_default;
Chuck Leverbf269552010-12-14 14:59:29 +0000867 error = decode_path(xdr);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000868out:
869 return error;
870out_default:
871 return nfs_stat_to_errno(status);
872}
873
874/*
875 * 2.2.7. readres
876 *
877 * union readres switch (stat status) {
878 * case NFS_OK:
879 * fattr attributes;
880 * nfsdata data;
881 * default:
882 * void;
883 * };
884 */
Chuck Leverbf269552010-12-14 14:59:29 +0000885static int nfs2_xdr_dec_readres(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigfc016482017-05-08 15:09:02 +0200886 void *data)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000887{
Christoph Hellwigfc016482017-05-08 15:09:02 +0200888 struct nfs_pgio_res *result = data;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000889 enum nfs_stat status;
890 int error;
891
Chuck Leverbf269552010-12-14 14:59:29 +0000892 error = decode_stat(xdr, &status);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000893 if (unlikely(error))
894 goto out;
Peng Taoaabff4d2014-08-27 10:47:14 +0800895 result->op_status = status;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000896 if (status != NFS_OK)
897 goto out_default;
Chuck Leverbf269552010-12-14 14:59:29 +0000898 error = decode_fattr(xdr, result->fattr);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000899 if (unlikely(error))
900 goto out;
Chuck Leverbf269552010-12-14 14:59:29 +0000901 error = decode_nfsdata(xdr, result);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000902out:
903 return error;
904out_default:
905 return nfs_stat_to_errno(status);
906}
907
Chuck Leverbf269552010-12-14 14:59:29 +0000908static int nfs2_xdr_dec_writeres(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigfc016482017-05-08 15:09:02 +0200909 void *data)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000910{
Christoph Hellwigfc016482017-05-08 15:09:02 +0200911 struct nfs_pgio_res *result = data;
912
Chuck Leverf796f8b2010-12-14 14:55:10 +0000913 /* All NFSv2 writes are "file sync" writes */
914 result->verf->committed = NFS_FILE_SYNC;
Peng Taoaabff4d2014-08-27 10:47:14 +0800915 return decode_attrstat(xdr, result->fattr, &result->op_status);
Chuck Leverf796f8b2010-12-14 14:55:10 +0000916}
917
918/**
919 * nfs2_decode_dirent - Decode a single NFSv2 directory entry stored in
920 * the local page cache.
921 * @xdr: XDR stream where entry resides
922 * @entry: buffer to fill in with entry data
Chuck Leverf796f8b2010-12-14 14:55:10 +0000923 * @plus: boolean indicating whether this should be a readdirplus entry
924 *
Chuck Lever573c4e12010-12-14 14:58:11 +0000925 * Returns zero if successful, otherwise a negative errno value is
926 * returned.
Chuck Leverf796f8b2010-12-14 14:55:10 +0000927 *
928 * This function is not invoked during READDIR reply decoding, but
929 * rather whenever an application invokes the getdents(2) system call
930 * on a directory already in our cache.
931 *
932 * 2.2.17. entry
933 *
934 * struct entry {
935 * unsigned fileid;
936 * filename name;
937 * nfscookie cookie;
938 * entry *nextentry;
939 * };
940 */
Chuck Lever573c4e12010-12-14 14:58:11 +0000941int nfs2_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry,
942 int plus)
Chuck Leverf796f8b2010-12-14 14:55:10 +0000943{
944 __be32 *p;
945 int error;
946
947 p = xdr_inline_decode(xdr, 4);
948 if (unlikely(p == NULL))
949 goto out_overflow;
950 if (*p++ == xdr_zero) {
951 p = xdr_inline_decode(xdr, 4);
952 if (unlikely(p == NULL))
953 goto out_overflow;
954 if (*p++ == xdr_zero)
Chuck Lever573c4e12010-12-14 14:58:11 +0000955 return -EAGAIN;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000956 entry->eof = 1;
Chuck Lever573c4e12010-12-14 14:58:11 +0000957 return -EBADCOOKIE;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000958 }
959
960 p = xdr_inline_decode(xdr, 4);
961 if (unlikely(p == NULL))
962 goto out_overflow;
963 entry->ino = be32_to_cpup(p);
964
965 error = decode_filename_inline(xdr, &entry->name, &entry->len);
966 if (unlikely(error))
Chuck Lever573c4e12010-12-14 14:58:11 +0000967 return error;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000968
969 /*
970 * The type (size and byte order) of nfscookie isn't defined in
971 * RFC 1094. This implementation assumes that it's an XDR uint32.
972 */
973 entry->prev_cookie = entry->cookie;
974 p = xdr_inline_decode(xdr, 4);
975 if (unlikely(p == NULL))
976 goto out_overflow;
977 entry->cookie = be32_to_cpup(p);
978
979 entry->d_type = DT_UNKNOWN;
980
Chuck Lever573c4e12010-12-14 14:58:11 +0000981 return 0;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000982
983out_overflow:
984 print_overflow_msg(__func__, xdr);
Chuck Lever573c4e12010-12-14 14:58:11 +0000985 return -EAGAIN;
Chuck Leverf796f8b2010-12-14 14:55:10 +0000986}
987
988/*
989 * 2.2.17. readdirres
990 *
991 * union readdirres switch (stat status) {
992 * case NFS_OK:
993 * struct {
994 * entry *entries;
995 * bool eof;
996 * } readdirok;
997 * default:
998 * void;
999 * };
1000 *
1001 * Read the directory contents into the page cache, but don't
1002 * touch them. The actual decoding is done by nfs2_decode_dirent()
1003 * during subsequent nfs_readdir() calls.
1004 */
1005static int decode_readdirok(struct xdr_stream *xdr)
1006{
Trond Myklebust64bd5772012-06-20 22:35:05 -04001007 return xdr_read_pages(xdr, xdr->buf->page_len);
Chuck Leverf796f8b2010-12-14 14:55:10 +00001008}
1009
Chuck Leverbf269552010-12-14 14:59:29 +00001010static int nfs2_xdr_dec_readdirres(struct rpc_rqst *req,
1011 struct xdr_stream *xdr, void *__unused)
Chuck Leverf796f8b2010-12-14 14:55:10 +00001012{
Chuck Leverf796f8b2010-12-14 14:55:10 +00001013 enum nfs_stat status;
1014 int error;
1015
Chuck Leverbf269552010-12-14 14:59:29 +00001016 error = decode_stat(xdr, &status);
Chuck Leverf796f8b2010-12-14 14:55:10 +00001017 if (unlikely(error))
1018 goto out;
1019 if (status != NFS_OK)
1020 goto out_default;
Chuck Leverbf269552010-12-14 14:59:29 +00001021 error = decode_readdirok(xdr);
Chuck Leverf796f8b2010-12-14 14:55:10 +00001022out:
1023 return error;
1024out_default:
1025 return nfs_stat_to_errno(status);
1026}
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028/*
Chuck Leverf796f8b2010-12-14 14:55:10 +00001029 * 2.2.18. statfsres
1030 *
1031 * union statfsres (stat status) {
1032 * case NFS_OK:
1033 * struct {
1034 * unsigned tsize;
1035 * unsigned bsize;
1036 * unsigned blocks;
1037 * unsigned bfree;
1038 * unsigned bavail;
1039 * } info;
1040 * default:
1041 * void;
1042 * };
1043 */
1044static int decode_info(struct xdr_stream *xdr, struct nfs2_fsstat *result)
1045{
1046 __be32 *p;
1047
1048 p = xdr_inline_decode(xdr, NFS_info_sz << 2);
1049 if (unlikely(p == NULL))
1050 goto out_overflow;
1051 result->tsize = be32_to_cpup(p++);
1052 result->bsize = be32_to_cpup(p++);
1053 result->blocks = be32_to_cpup(p++);
1054 result->bfree = be32_to_cpup(p++);
1055 result->bavail = be32_to_cpup(p);
1056 return 0;
1057out_overflow:
1058 print_overflow_msg(__func__, xdr);
1059 return -EIO;
1060}
1061
Chuck Leverbf269552010-12-14 14:59:29 +00001062static int nfs2_xdr_dec_statfsres(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwigfc016482017-05-08 15:09:02 +02001063 void *result)
Chuck Leverf796f8b2010-12-14 14:55:10 +00001064{
Chuck Leverf796f8b2010-12-14 14:55:10 +00001065 enum nfs_stat status;
1066 int error;
1067
Chuck Leverbf269552010-12-14 14:59:29 +00001068 error = decode_stat(xdr, &status);
Chuck Leverf796f8b2010-12-14 14:55:10 +00001069 if (unlikely(error))
1070 goto out;
1071 if (status != NFS_OK)
1072 goto out_default;
Chuck Leverbf269552010-12-14 14:59:29 +00001073 error = decode_info(xdr, result);
Chuck Leverf796f8b2010-12-14 14:55:10 +00001074out:
1075 return error;
1076out_default:
1077 return nfs_stat_to_errno(status);
1078}
1079
1080
1081/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 * We need to translate between nfs status return values and
1083 * the local errno values which may not be the same.
1084 */
Chuck Lever85828492010-12-14 14:55:00 +00001085static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 int stat;
1087 int errno;
1088} nfs_errtbl[] = {
1089 { NFS_OK, 0 },
Benny Halevy856dff32008-03-31 17:39:06 +03001090 { NFSERR_PERM, -EPERM },
1091 { NFSERR_NOENT, -ENOENT },
1092 { NFSERR_IO, -errno_NFSERR_IO},
1093 { NFSERR_NXIO, -ENXIO },
1094/* { NFSERR_EAGAIN, -EAGAIN }, */
1095 { NFSERR_ACCES, -EACCES },
1096 { NFSERR_EXIST, -EEXIST },
1097 { NFSERR_XDEV, -EXDEV },
1098 { NFSERR_NODEV, -ENODEV },
1099 { NFSERR_NOTDIR, -ENOTDIR },
1100 { NFSERR_ISDIR, -EISDIR },
1101 { NFSERR_INVAL, -EINVAL },
1102 { NFSERR_FBIG, -EFBIG },
1103 { NFSERR_NOSPC, -ENOSPC },
1104 { NFSERR_ROFS, -EROFS },
1105 { NFSERR_MLINK, -EMLINK },
1106 { NFSERR_NAMETOOLONG, -ENAMETOOLONG },
1107 { NFSERR_NOTEMPTY, -ENOTEMPTY },
1108 { NFSERR_DQUOT, -EDQUOT },
1109 { NFSERR_STALE, -ESTALE },
1110 { NFSERR_REMOTE, -EREMOTE },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111#ifdef EWFLUSH
Benny Halevy856dff32008-03-31 17:39:06 +03001112 { NFSERR_WFLUSH, -EWFLUSH },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113#endif
Benny Halevy856dff32008-03-31 17:39:06 +03001114 { NFSERR_BADHANDLE, -EBADHANDLE },
1115 { NFSERR_NOT_SYNC, -ENOTSYNC },
1116 { NFSERR_BAD_COOKIE, -EBADCOOKIE },
1117 { NFSERR_NOTSUPP, -ENOTSUPP },
1118 { NFSERR_TOOSMALL, -ETOOSMALL },
Trond Myklebustfdcb4572010-02-08 09:32:40 -05001119 { NFSERR_SERVERFAULT, -EREMOTEIO },
Benny Halevy856dff32008-03-31 17:39:06 +03001120 { NFSERR_BADTYPE, -EBADTYPE },
1121 { NFSERR_JUKEBOX, -EJUKEBOX },
1122 { -1, -EIO }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123};
1124
Chuck Lever85828492010-12-14 14:55:00 +00001125/**
1126 * nfs_stat_to_errno - convert an NFS status code to a local errno
1127 * @status: NFS status code to convert
1128 *
1129 * Returns a local errno value, or -EIO if the NFS status code is
1130 * not recognized. This function is used jointly by NFSv2 and NFSv3.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 */
Bryan Schumaker5e7e5a02012-05-10 16:47:18 -04001132static int nfs_stat_to_errno(enum nfs_stat status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 int i;
1135
1136 for (i = 0; nfs_errtbl[i].stat != -1; i++) {
Chuck Lever85828492010-12-14 14:55:00 +00001137 if (nfs_errtbl[i].stat == (int)status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return nfs_errtbl[i].errno;
1139 }
Chuck Lever85828492010-12-14 14:55:00 +00001140 dprintk("NFS: Unrecognized nfs status value: %u\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return nfs_errtbl[i].errno;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144#define PROC(proc, argtype, restype, timer) \
1145[NFSPROC_##proc] = { \
1146 .p_proc = NFSPROC_##proc, \
Christoph Hellwigfcc85812017-05-08 10:01:49 +02001147 .p_encode = nfs2_xdr_enc_##argtype, \
Christoph Hellwigfc016482017-05-08 15:09:02 +02001148 .p_decode = nfs2_xdr_dec_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -04001149 .p_arglen = NFS_##argtype##_sz, \
1150 .p_replen = NFS_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -05001151 .p_timer = timer, \
1152 .p_statidx = NFSPROC_##proc, \
1153 .p_name = #proc, \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Christoph Hellwig511e9362017-05-12 15:36:49 +02001155const struct rpc_procinfo nfs_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +00001156 PROC(GETATTR, fhandle, attrstat, 1),
1157 PROC(SETATTR, sattrargs, attrstat, 0),
1158 PROC(LOOKUP, diropargs, diropres, 2),
1159 PROC(READLINK, readlinkargs, readlinkres, 3),
1160 PROC(READ, readargs, readres, 3),
1161 PROC(WRITE, writeargs, writeres, 4),
1162 PROC(CREATE, createargs, diropres, 0),
1163 PROC(REMOVE, removeargs, stat, 0),
1164 PROC(RENAME, renameargs, stat, 0),
1165 PROC(LINK, linkargs, stat, 0),
1166 PROC(SYMLINK, symlinkargs, stat, 0),
1167 PROC(MKDIR, createargs, diropres, 0),
1168 PROC(RMDIR, diropargs, stat, 0),
1169 PROC(READDIR, readdirargs, readdirres, 3),
1170 PROC(STATFS, fhandle, statfsres, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171};
1172
Christoph Hellwigc5518582017-05-08 23:27:10 +02001173static unsigned int nfs_version2_counts[ARRAY_SIZE(nfs_procedures)];
Trond Myklebusta613fa12012-01-20 13:53:56 -05001174const struct rpc_version nfs_version2 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 .number = 2,
Tobias Klausere8c96f82006-03-24 03:15:34 -08001176 .nrprocs = ARRAY_SIZE(nfs_procedures),
Christoph Hellwigc5518582017-05-08 23:27:10 +02001177 .procs = nfs_procedures,
1178 .counts = nfs_version2_counts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179};