nfs2xdr.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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. #include <linux/param.h>
  12. #include <linux/sched.h>
  13. #include <linux/mm.h>
  14. #include <linux/slab.h>
  15. #include <linux/utsname.h>
  16. #include <linux/errno.h>
  17. #include <linux/string.h>
  18. #include <linux/in.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>
  25. #define NFSDBG_FACILITY NFSDBG_XDR
  26. /* #define NFS_PARANOIA 1 */
  27. extern int nfs_stat_to_errno(int stat);
  28. /* Mapping from NFS error code to "errno" error code. */
  29. #define errno_NFSERR_IO EIO
  30. /*
  31.  * Declare the space requirements for NFS arguments and replies as
  32.  * number of 32bit-words
  33.  */
  34. #define NFS_fhandle_sz 8
  35. #define NFS_sattr_sz 8
  36. #define NFS_filename_sz 1+(NFS2_MAXNAMLEN>>2)
  37. #define NFS_path_sz 1+(NFS2_MAXPATHLEN>>2)
  38. #define NFS_fattr_sz 17
  39. #define NFS_info_sz 5
  40. #define NFS_entry_sz NFS_filename_sz+3
  41. #define NFS_enc_void_sz 0
  42. #define NFS_diropargs_sz NFS_fhandle_sz+NFS_filename_sz
  43. #define NFS_sattrargs_sz NFS_fhandle_sz+NFS_sattr_sz
  44. #define NFS_readlinkargs_sz NFS_fhandle_sz
  45. #define NFS_readargs_sz NFS_fhandle_sz+3
  46. #define NFS_writeargs_sz NFS_fhandle_sz+4
  47. #define NFS_createargs_sz NFS_diropargs_sz+NFS_sattr_sz
  48. #define NFS_renameargs_sz NFS_diropargs_sz+NFS_diropargs_sz
  49. #define NFS_linkargs_sz NFS_fhandle_sz+NFS_diropargs_sz
  50. #define NFS_symlinkargs_sz NFS_diropargs_sz+NFS_path_sz+NFS_sattr_sz
  51. #define NFS_readdirargs_sz NFS_fhandle_sz+2
  52. #define NFS_dec_void_sz 0
  53. #define NFS_attrstat_sz 1+NFS_fattr_sz
  54. #define NFS_diropres_sz 1+NFS_fhandle_sz+NFS_fattr_sz
  55. #define NFS_readlinkres_sz 1
  56. #define NFS_readres_sz 1+NFS_fattr_sz+1
  57. #define NFS_writeres_sz         NFS_attrstat_sz
  58. #define NFS_stat_sz 1
  59. #define NFS_readdirres_sz 1
  60. #define NFS_statfsres_sz 1+NFS_info_sz
  61. /*
  62.  * Common NFS XDR functions as inlines
  63.  */
  64. static inline u32 *
  65. xdr_encode_fhandle(u32 *p, struct nfs_fh *fhandle)
  66. {
  67. memcpy(p, fhandle->data, NFS2_FHSIZE);
  68. return p + XDR_QUADLEN(NFS2_FHSIZE);
  69. }
  70. static inline u32 *
  71. xdr_decode_fhandle(u32 *p, struct nfs_fh *fhandle)
  72. {
  73. /* Zero handle first to allow comparisons */
  74. memset(fhandle, 0, sizeof(*fhandle));
  75. /* NFSv2 handles have a fixed length */
  76. fhandle->size = NFS2_FHSIZE;
  77. memcpy(fhandle->data, p, NFS2_FHSIZE);
  78. return p + XDR_QUADLEN(NFS2_FHSIZE);
  79. }
  80. static inline u32*
  81. xdr_decode_time(u32 *p, u64 *timep)
  82. {
  83. u64 tmp = (u64)ntohl(*p++) << 32;
  84. *timep = tmp + (u64)ntohl(*p++);
  85. return p;
  86. }
  87. static u32 *
  88. xdr_decode_fattr(u32 *p, struct nfs_fattr *fattr)
  89. {
  90. fattr->type = (enum nfs_ftype) ntohl(*p++);
  91. fattr->mode = ntohl(*p++);
  92. fattr->nlink = ntohl(*p++);
  93. fattr->uid = ntohl(*p++);
  94. fattr->gid = ntohl(*p++);
  95. fattr->size = ntohl(*p++);
  96. fattr->du.nfs2.blocksize = ntohl(*p++);
  97. fattr->rdev = ntohl(*p++);
  98. fattr->du.nfs2.blocks = ntohl(*p++);
  99. fattr->fsid = ntohl(*p++);
  100. fattr->fileid = ntohl(*p++);
  101. p = xdr_decode_time(p, &fattr->atime);
  102. p = xdr_decode_time(p, &fattr->mtime);
  103. p = xdr_decode_time(p, &fattr->ctime);
  104. fattr->valid |= NFS_ATTR_FATTR;
  105. if (fattr->type == NFCHR && fattr->rdev == NFS2_FIFO_DEV) {
  106. fattr->type = NFFIFO;
  107. fattr->mode = (fattr->mode & ~S_IFMT) | S_IFIFO;
  108. fattr->rdev = 0;
  109. }
  110. return p;
  111. }
  112. #define SATTR(p, attr, flag, field) 
  113.         *p++ = (attr->ia_valid & flag) ? htonl(attr->field) : ~(u32) 0
  114. static inline u32 *
  115. xdr_encode_sattr(u32 *p, struct iattr *attr)
  116. {
  117. SATTR(p, attr, ATTR_MODE, ia_mode);
  118. SATTR(p, attr, ATTR_UID, ia_uid);
  119. SATTR(p, attr, ATTR_GID, ia_gid);
  120. SATTR(p, attr, ATTR_SIZE, ia_size);
  121. if (attr->ia_valid & (ATTR_ATIME|ATTR_ATIME_SET)) {
  122. *p++ = htonl(attr->ia_atime);
  123. *p++ = 0;
  124. } else {
  125. *p++ = ~(u32) 0;
  126. *p++ = ~(u32) 0;
  127. }
  128. if (attr->ia_valid & (ATTR_MTIME|ATTR_MTIME_SET)) {
  129. *p++ = htonl(attr->ia_mtime);
  130. *p++ = 0;
  131. } else {
  132. *p++ = ~(u32) 0;
  133. *p++ = ~(u32) 0;
  134. }
  135.    return p;
  136. }
  137. #undef SATTR
  138. /*
  139.  * NFS encode functions
  140.  */
  141. /*
  142.  * Encode void argument
  143.  */
  144. static int
  145. nfs_xdr_enc_void(struct rpc_rqst *req, u32 *p, void *dummy)
  146. {
  147. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  148. return 0;
  149. }
  150. /*
  151.  * Encode file handle argument
  152.  * GETATTR, READLINK, STATFS
  153.  */
  154. static int
  155. nfs_xdr_fhandle(struct rpc_rqst *req, u32 *p, struct nfs_fh *fh)
  156. {
  157. p = xdr_encode_fhandle(p, fh);
  158. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  159. return 0;
  160. }
  161. /*
  162.  * Encode SETATTR arguments
  163.  */
  164. static int
  165. nfs_xdr_sattrargs(struct rpc_rqst *req, u32 *p, struct nfs_sattrargs *args)
  166. {
  167. p = xdr_encode_fhandle(p, args->fh);
  168. p = xdr_encode_sattr(p, args->sattr);
  169. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  170. return 0;
  171. }
  172. /*
  173.  * Encode directory ops argument
  174.  * LOOKUP, REMOVE, RMDIR
  175.  */
  176. static int
  177. nfs_xdr_diropargs(struct rpc_rqst *req, u32 *p, struct nfs_diropargs *args)
  178. {
  179. p = xdr_encode_fhandle(p, args->fh);
  180. p = xdr_encode_array(p, args->name, args->len);
  181. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  182. return 0;
  183. }
  184. /*
  185.  * Arguments to a READ call. Since we read data directly into the page
  186.  * cache, we also set up the reply iovec here so that iov[1] points
  187.  * exactly to the page we want to fetch.
  188.  */
  189. static int
  190. nfs_xdr_readargs(struct rpc_rqst *req, u32 *p, struct nfs_readargs *args)
  191. {
  192. struct rpc_auth *auth = req->rq_task->tk_auth;
  193. unsigned int replen;
  194. u32 offset = (u32)args->offset;
  195. u32 count = args->count;
  196. p = xdr_encode_fhandle(p, args->fh);
  197. *p++ = htonl(offset);
  198. *p++ = htonl(count);
  199. *p++ = htonl(count);
  200. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  201. /* Inline the page array */
  202. replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS_readres_sz) << 2;
  203. xdr_inline_pages(&req->rq_rcv_buf, replen,
  204.  args->pages, args->pgbase, count);
  205. return 0;
  206. }
  207. /*
  208.  * Decode READ reply
  209.  */
  210. static int
  211. nfs_xdr_readres(struct rpc_rqst *req, u32 *p, struct nfs_readres *res)
  212. {
  213. struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
  214. struct iovec *iov = req->rq_rvec;
  215. int status, count, recvd, hdrlen;
  216. if ((status = ntohl(*p++)))
  217. return -nfs_stat_to_errno(status);
  218. p = xdr_decode_fattr(p, res->fattr);
  219. count = ntohl(*p++);
  220. res->eof = 0;
  221. if (rcvbuf->page_len) {
  222. u32 end = page_offset(rcvbuf->pages[0]) + rcvbuf->page_base + count;
  223. if (end >= res->fattr->size)
  224. res->eof = 1;
  225. }
  226. hdrlen = (u8 *) p - (u8 *) iov->iov_base;
  227. if (iov->iov_len < hdrlen) {
  228. printk(KERN_WARNING "NFS: READ reply header overflowed:"
  229. "length %d > %Zun", hdrlen, iov->iov_len);
  230. return -errno_NFSERR_IO;
  231. } else if (iov->iov_len != hdrlen) {
  232. dprintk("NFS: READ header is short. iovec will be shifted.n");
  233. xdr_shift_buf(&req->rq_rcv_buf, iov->iov_len - hdrlen);
  234. }
  235. recvd = req->rq_received - hdrlen;
  236. if (count > recvd) {
  237. printk(KERN_WARNING "NFS: server cheating in read reply: "
  238. "count %d > recvd %dn", count, recvd);
  239. count = recvd;
  240. res->eof = 0;
  241. }
  242. dprintk("RPC:      readres OK count %dn", count);
  243. if (count < res->count)
  244. res->count = count;
  245. return count;
  246. }
  247. /*
  248.  * Write arguments. Splice the buffer to be written into the iovec.
  249.  */
  250. static int
  251. nfs_xdr_writeargs(struct rpc_rqst *req, u32 *p, struct nfs_writeargs *args)
  252. {
  253. struct xdr_buf *sndbuf = &req->rq_snd_buf;
  254. u32 offset = (u32)args->offset;
  255. u32 count = args->count;
  256. p = xdr_encode_fhandle(p, args->fh);
  257. *p++ = htonl(offset);
  258. *p++ = htonl(offset);
  259. *p++ = htonl(count);
  260. *p++ = htonl(count);
  261. sndbuf->len = xdr_adjust_iovec(sndbuf->head, p);
  262. /* Copy the page array */
  263. xdr_encode_pages(sndbuf, args->pages, args->pgbase, count);
  264. return 0;
  265. }
  266. /*
  267.  * Encode create arguments
  268.  * CREATE, MKDIR
  269.  */
  270. static int
  271. nfs_xdr_createargs(struct rpc_rqst *req, u32 *p, struct nfs_createargs *args)
  272. {
  273. p = xdr_encode_fhandle(p, args->fh);
  274. p = xdr_encode_array(p, args->name, args->len);
  275. p = xdr_encode_sattr(p, args->sattr);
  276. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  277. return 0;
  278. }
  279. /*
  280.  * Encode RENAME arguments
  281.  */
  282. static int
  283. nfs_xdr_renameargs(struct rpc_rqst *req, u32 *p, struct nfs_renameargs *args)
  284. {
  285. p = xdr_encode_fhandle(p, args->fromfh);
  286. p = xdr_encode_array(p, args->fromname, args->fromlen);
  287. p = xdr_encode_fhandle(p, args->tofh);
  288. p = xdr_encode_array(p, args->toname, args->tolen);
  289. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  290. return 0;
  291. }
  292. /*
  293.  * Encode LINK arguments
  294.  */
  295. static int
  296. nfs_xdr_linkargs(struct rpc_rqst *req, u32 *p, struct nfs_linkargs *args)
  297. {
  298. p = xdr_encode_fhandle(p, args->fromfh);
  299. p = xdr_encode_fhandle(p, args->tofh);
  300. p = xdr_encode_array(p, args->toname, args->tolen);
  301. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  302. return 0;
  303. }
  304. /*
  305.  * Encode SYMLINK arguments
  306.  */
  307. static int
  308. nfs_xdr_symlinkargs(struct rpc_rqst *req, u32 *p, struct nfs_symlinkargs *args)
  309. {
  310. p = xdr_encode_fhandle(p, args->fromfh);
  311. p = xdr_encode_array(p, args->fromname, args->fromlen);
  312. p = xdr_encode_array(p, args->topath, args->tolen);
  313. p = xdr_encode_sattr(p, args->sattr);
  314. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  315. return 0;
  316. }
  317. /*
  318.  * Encode arguments to readdir call
  319.  */
  320. static int
  321. nfs_xdr_readdirargs(struct rpc_rqst *req, u32 *p, struct nfs_readdirargs *args)
  322. {
  323. struct rpc_task *task = req->rq_task;
  324. struct rpc_auth *auth = task->tk_auth;
  325. unsigned int replen;
  326. u32 count = args->count;
  327. /*
  328.  * Some servers (e.g. HP OS 9.5) seem to expect the buffer size
  329.  * to be in longwords ... check whether to convert the size.
  330.  */
  331. if (task->tk_client->cl_flags & NFS_CLNTF_BUFSIZE)
  332. count = count >> 2;
  333. p = xdr_encode_fhandle(p, args->fh);
  334. *p++ = htonl(args->cookie);
  335. *p++ = htonl(count); /* see above */
  336. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  337. /* Inline the page array */
  338. replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS_readdirres_sz) << 2;
  339. xdr_inline_pages(&req->rq_rcv_buf, replen, args->pages, 0, count);
  340. return 0;
  341. }
  342. /*
  343.  * Decode the result of a readdir call.
  344.  * We're not really decoding anymore, we just leave the buffer untouched
  345.  * and only check that it is syntactically correct.
  346.  * The real decoding happens in nfs_decode_entry below, called directly
  347.  * from nfs_readdir for each entry.
  348.  */
  349. static int
  350. nfs_xdr_readdirres(struct rpc_rqst *req, u32 *p, void *dummy)
  351. {
  352. struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
  353. struct iovec *iov = rcvbuf->head;
  354. struct page **page;
  355. int hdrlen, recvd;
  356. int status, nr;
  357. unsigned int len, pglen;
  358. u32 *end, *entry;
  359. if ((status = ntohl(*p++)))
  360. return -nfs_stat_to_errno(status);
  361. hdrlen = (u8 *) p - (u8 *) iov->iov_base;
  362. if (iov->iov_len < hdrlen) {
  363. printk(KERN_WARNING "NFS: READDIR reply header overflowed:"
  364. "length %d > %Zun", hdrlen, iov->iov_len);
  365. return -errno_NFSERR_IO;
  366. } else if (iov->iov_len != hdrlen) {
  367. dprintk("NFS: READDIR header is short. iovec will be shifted.n");
  368. xdr_shift_buf(rcvbuf, iov->iov_len - hdrlen);
  369. }
  370. pglen = rcvbuf->page_len;
  371. recvd = req->rq_received - hdrlen;
  372. if (pglen > recvd)
  373. pglen = recvd;
  374. page = rcvbuf->pages;
  375. p = kmap(*page);
  376. entry = p;
  377. end = (u32 *)((char *)p + pglen);
  378. for (nr = 0; *p++; nr++) {
  379. if (p + 2 > end)
  380. goto short_pkt;
  381. p++; /* fileid */
  382. len = ntohl(*p++);
  383. p += XDR_QUADLEN(len) + 1; /* name plus cookie */
  384. if (len > NFS2_MAXNAMLEN) {
  385. printk(KERN_WARNING "NFS: giant filename in readdir (len 0x%x)!n",
  386. len);
  387. goto err_unmap;
  388. }
  389. if (p + 2 > end)
  390. goto short_pkt;
  391. entry = p;
  392. }
  393. if (!nr && (entry[0] != 0 || entry[1] == 0))
  394. goto short_pkt;
  395.  out:
  396. kunmap(*page);
  397. return nr;
  398.  short_pkt:
  399. entry[0] = entry[1] = 0;
  400. /* truncate listing ? */
  401. if (!nr) {
  402. printk(KERN_NOTICE "NFS: readdir reply truncated!n");
  403. entry[1] = 1;
  404. }
  405. goto out;
  406. err_unmap:
  407. kunmap(*page);
  408. return -errno_NFSERR_IO;
  409. }
  410. u32 *
  411. nfs_decode_dirent(u32 *p, struct nfs_entry *entry, int plus)
  412. {
  413. if (!*p++) {
  414. if (!*p)
  415. return ERR_PTR(-EAGAIN);
  416. entry->eof = 1;
  417. return ERR_PTR(-EBADCOOKIE);
  418. }
  419. entry->ino   = ntohl(*p++);
  420. entry->len   = ntohl(*p++);
  421. entry->name   = (const char *) p;
  422. p  += XDR_QUADLEN(entry->len);
  423. entry->prev_cookie   = entry->cookie;
  424. entry->cookie   = ntohl(*p++);
  425. entry->eof   = !p[0] && p[1];
  426. return p;
  427. }
  428. /*
  429.  * NFS XDR decode functions
  430.  */
  431. /*
  432.  * Decode void reply
  433.  */
  434. static int
  435. nfs_xdr_dec_void(struct rpc_rqst *req, u32 *p, void *dummy)
  436. {
  437. return 0;
  438. }
  439. /*
  440.  * Decode simple status reply
  441.  */
  442. static int
  443. nfs_xdr_stat(struct rpc_rqst *req, u32 *p, void *dummy)
  444. {
  445. int status;
  446. if ((status = ntohl(*p++)) != 0)
  447. status = -nfs_stat_to_errno(status);
  448. return status;
  449. }
  450. /*
  451.  * Decode attrstat reply
  452.  * GETATTR, SETATTR, WRITE
  453.  */
  454. static int
  455. nfs_xdr_attrstat(struct rpc_rqst *req, u32 *p, struct nfs_fattr *fattr)
  456. {
  457. int status;
  458. if ((status = ntohl(*p++)))
  459. return -nfs_stat_to_errno(status);
  460. xdr_decode_fattr(p, fattr);
  461. return 0;
  462. }
  463. /*
  464.  * Decode diropres reply
  465.  * LOOKUP, CREATE, MKDIR
  466.  */
  467. static int
  468. nfs_xdr_diropres(struct rpc_rqst *req, u32 *p, struct nfs_diropok *res)
  469. {
  470. int status;
  471. if ((status = ntohl(*p++)))
  472. return -nfs_stat_to_errno(status);
  473. p = xdr_decode_fhandle(p, res->fh);
  474. xdr_decode_fattr(p, res->fattr);
  475. return 0;
  476. }
  477. /*
  478.  * Encode READLINK args
  479.  */
  480. static int
  481. nfs_xdr_readlinkargs(struct rpc_rqst *req, u32 *p, struct nfs_readlinkargs *args)
  482. {
  483. struct rpc_auth *auth = req->rq_task->tk_auth;
  484. unsigned int replen;
  485. u32 count = args->count - 4;
  486. p = xdr_encode_fhandle(p, args->fh);
  487. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  488. /* Inline the page array */
  489. replen = (RPC_REPHDRSIZE + auth->au_rslack + NFS_readlinkres_sz) << 2;
  490. xdr_inline_pages(&req->rq_rcv_buf, replen, args->pages, 0, count);
  491. return 0;
  492. }
  493. /*
  494.  * Decode READLINK reply
  495.  */
  496. static int
  497. nfs_xdr_readlinkres(struct rpc_rqst *req, u32 *p, void *dummy)
  498. {
  499. struct xdr_buf *rcvbuf = &req->rq_rcv_buf;
  500. struct iovec *iov = rcvbuf->head;
  501. unsigned int hdrlen;
  502. u32 *strlen, len;
  503. char *string;
  504. int status;
  505. if ((status = ntohl(*p++)))
  506. return -nfs_stat_to_errno(status);
  507. hdrlen = (u8 *) p - (u8 *) iov->iov_base;
  508. if (iov->iov_len > hdrlen) {
  509. dprintk("NFS: READLINK header is short. iovec will be shifted.n");
  510. xdr_shift_buf(rcvbuf, iov->iov_len - hdrlen);
  511. }
  512. strlen = (u32*)kmap(rcvbuf->pages[0]);
  513. /* Convert length of symlink */
  514. len = ntohl(*strlen);
  515. if (len > rcvbuf->page_len)
  516. len = rcvbuf->page_len;
  517. *strlen = len;
  518. /* NULL terminate the string we got */
  519. string = (char *)(strlen + 1);
  520. string[len] = 0;
  521. kunmap(rcvbuf->pages[0]);
  522. return 0;
  523. }
  524. /*
  525.  * Decode WRITE reply
  526.  */
  527. static int
  528. nfs_xdr_writeres(struct rpc_rqst *req, u32 *p, struct nfs_writeres *res)
  529. {
  530. res->verf->committed = NFS_FILE_SYNC;
  531. return nfs_xdr_attrstat(req, p, res->fattr);
  532. }
  533. /*
  534.  * Decode STATFS reply
  535.  */
  536. static int
  537. nfs_xdr_statfsres(struct rpc_rqst *req, u32 *p, struct nfs_fsinfo *res)
  538. {
  539. int status;
  540. u32 xfer_size;
  541. if ((status = ntohl(*p++)))
  542. return -nfs_stat_to_errno(status);
  543. /* For NFSv2, we more or less have to guess the preferred
  544.  * read/write/readdir sizes from the single 'transfer size'
  545.  * value.
  546.  */
  547. xfer_size = ntohl(*p++); /* tsize */
  548. res->rtmax  = 8 * 1024;
  549. res->rtpref = xfer_size;
  550. res->rtmult = xfer_size;
  551. res->wtmax  = 8 * 1024;
  552. res->wtpref = xfer_size;
  553. res->wtmult = xfer_size;
  554. res->dtpref = PAGE_CACHE_SIZE;
  555. res->maxfilesize = 0x7FFFFFFF; /* just a guess */
  556. res->bsize  = ntohl(*p++);
  557. res->tbytes = ntohl(*p++) * res->bsize;
  558. res->fbytes = ntohl(*p++) * res->bsize;
  559. res->abytes = ntohl(*p++) * res->bsize;
  560. res->tfiles = 0;
  561. res->ffiles = 0;
  562. res->afiles = 0;
  563. res->namelen = 0;
  564. return 0;
  565. }
  566. /*
  567.  * We need to translate between nfs status return values and
  568.  * the local errno values which may not be the same.
  569.  */
  570. static struct {
  571. int stat;
  572. int errno;
  573. } nfs_errtbl[] = {
  574. { NFS_OK, 0 },
  575. { NFSERR_PERM, EPERM },
  576. { NFSERR_NOENT, ENOENT },
  577. { NFSERR_IO, errno_NFSERR_IO },
  578. { NFSERR_NXIO, ENXIO },
  579. /* { NFSERR_EAGAIN, EAGAIN }, */
  580. { NFSERR_ACCES, EACCES },
  581. { NFSERR_EXIST, EEXIST },
  582. { NFSERR_XDEV, EXDEV },
  583. { NFSERR_NODEV, ENODEV },
  584. { NFSERR_NOTDIR, ENOTDIR },
  585. { NFSERR_ISDIR, EISDIR },
  586. { NFSERR_INVAL, EINVAL },
  587. { NFSERR_FBIG, EFBIG },
  588. { NFSERR_NOSPC, ENOSPC },
  589. { NFSERR_ROFS, EROFS },
  590. { NFSERR_MLINK, EMLINK },
  591. { NFSERR_NAMETOOLONG, ENAMETOOLONG },
  592. { NFSERR_NOTEMPTY, ENOTEMPTY },
  593. { NFSERR_DQUOT, EDQUOT },
  594. { NFSERR_STALE, ESTALE },
  595. { NFSERR_REMOTE, EREMOTE },
  596. #ifdef EWFLUSH
  597. { NFSERR_WFLUSH, EWFLUSH },
  598. #endif
  599. { NFSERR_BADHANDLE, EBADHANDLE },
  600. { NFSERR_NOT_SYNC, ENOTSYNC },
  601. { NFSERR_BAD_COOKIE, EBADCOOKIE },
  602. { NFSERR_NOTSUPP, ENOTSUPP },
  603. { NFSERR_TOOSMALL, ETOOSMALL },
  604. { NFSERR_SERVERFAULT, ESERVERFAULT },
  605. { NFSERR_BADTYPE, EBADTYPE },
  606. { NFSERR_JUKEBOX, EJUKEBOX },
  607. { -1, EIO }
  608. };
  609. /*
  610.  * Convert an NFS error code to a local one.
  611.  * This one is used jointly by NFSv2 and NFSv3.
  612.  */
  613. int
  614. nfs_stat_to_errno(int stat)
  615. {
  616. int i;
  617. for (i = 0; nfs_errtbl[i].stat != -1; i++) {
  618. if (nfs_errtbl[i].stat == stat)
  619. return nfs_errtbl[i].errno;
  620. }
  621. printk(KERN_ERR "nfs_stat_to_errno: bad nfs status return value: %dn", stat);
  622. return nfs_errtbl[i].errno;
  623. }
  624. #ifndef MAX
  625. # define MAX(a, b) (((a) > (b))? (a) : (b))
  626. #endif
  627. #define PROC(proc, argtype, restype, timer)
  628.     { .p_procname =  "nfs_" #proc,
  629.       .p_encode   =  (kxdrproc_t) nfs_xdr_##argtype,
  630.       .p_decode   =  (kxdrproc_t) nfs_xdr_##restype,
  631.       .p_bufsiz   =  MAX(NFS_##argtype##_sz,NFS_##restype##_sz) << 2,
  632.       .p_timer    =  timer
  633.     }
  634. static struct rpc_procinfo nfs_procedures[18] = {
  635.     PROC(null, enc_void, dec_void, 0),
  636.     PROC(getattr, fhandle, attrstat, 1),
  637.     PROC(setattr, sattrargs, attrstat, 0),
  638.     PROC(root, enc_void, dec_void, 0),
  639.     PROC(lookup, diropargs, diropres, 2),
  640.     PROC(readlink, readlinkargs, readlinkres, 3),
  641.     PROC(read, readargs, readres, 3),
  642.     PROC(writecache, enc_void, dec_void, 0),
  643.     PROC(write, writeargs, writeres, 4),
  644.     PROC(create, createargs, diropres, 0),
  645.     PROC(remove, diropargs, stat, 0),
  646.     PROC(rename, renameargs, stat, 0),
  647.     PROC(link, linkargs, stat, 0),
  648.     PROC(symlink, symlinkargs, stat, 0),
  649.     PROC(mkdir, createargs, diropres, 0),
  650.     PROC(rmdir, diropargs, stat, 0),
  651.     PROC(readdir, readdirargs, readdirres, 3),
  652.     PROC(statfs, fhandle, statfsres, 0),
  653. };
  654. struct rpc_version nfs_version2 = {
  655. 2,
  656. sizeof(nfs_procedures)/sizeof(nfs_procedures[0]),
  657. nfs_procedures
  658. };