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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/nfsd/xdr.c
  3.  *
  4.  * XDR support for nfsd
  5.  *
  6.  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #include <linux/types.h>
  9. #include <linux/sched.h>
  10. #include <linux/nfs.h>
  11. #include <linux/sunrpc/xdr.h>
  12. #include <linux/sunrpc/svc.h>
  13. #include <linux/nfsd/nfsd.h>
  14. #include <linux/nfsd/xdr.h>
  15. #define NFSDDBG_FACILITY NFSDDBG_XDR
  16. #ifdef NFSD_OPTIMIZE_SPACE
  17. # define inline
  18. #endif
  19. /*
  20.  * Mapping of S_IF* types to NFS file types
  21.  */
  22. static u32 nfs_ftypes[] = {
  23. NFNON,  NFCHR,  NFCHR, NFBAD,
  24. NFDIR,  NFBAD,  NFBLK, NFBAD,
  25. NFREG,  NFBAD,  NFLNK, NFBAD,
  26. NFSOCK, NFBAD,  NFLNK, NFBAD,
  27. };
  28. /*
  29.  * XDR functions for basic NFS types
  30.  */
  31. static inline u32 *
  32. decode_fh(u32 *p, struct svc_fh *fhp)
  33. {
  34. fh_init(fhp, NFS_FHSIZE);
  35. memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
  36. fhp->fh_handle.fh_size = NFS_FHSIZE;
  37. /* FIXME: Look up export pointer here and verify
  38.  * Sun Secure RPC if requested */
  39. return p + (NFS_FHSIZE >> 2);
  40. }
  41. static inline u32 *
  42. encode_fh(u32 *p, struct svc_fh *fhp)
  43. {
  44. memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
  45. return p + (NFS_FHSIZE>> 2);
  46. }
  47. /*
  48.  * Decode a file name and make sure that the path contains
  49.  * no slashes or null bytes.
  50.  */
  51. static inline u32 *
  52. decode_filename(u32 *p, char **namp, int *lenp)
  53. {
  54. char *name;
  55. int i;
  56. if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
  57. for (i = 0, name = *namp; i < *lenp; i++, name++) {
  58. if (*name == '' || *name == '/')
  59. return NULL;
  60. }
  61. }
  62. return p;
  63. }
  64. static inline u32 *
  65. decode_pathname(u32 *p, char **namp, int *lenp)
  66. {
  67. char *name;
  68. int i;
  69. if ((p = xdr_decode_string(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
  70. for (i = 0, name = *namp; i < *lenp; i++, name++) {
  71. if (*name == '')
  72. return NULL;
  73. }
  74. }
  75. return p;
  76. }
  77. static inline u32 *
  78. decode_sattr(u32 *p, struct iattr *iap)
  79. {
  80. u32 tmp, tmp1;
  81. iap->ia_valid = 0;
  82. /* Sun client bug compatibility check: some sun clients seem to
  83.  * put 0xffff in the mode field when they mean 0xffffffff.
  84.  * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
  85.  */
  86. if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
  87. iap->ia_valid |= ATTR_MODE;
  88. iap->ia_mode = tmp;
  89. }
  90. if ((tmp = ntohl(*p++)) != (u32)-1) {
  91. iap->ia_valid |= ATTR_UID;
  92. iap->ia_uid = tmp;
  93. }
  94. if ((tmp = ntohl(*p++)) != (u32)-1) {
  95. iap->ia_valid |= ATTR_GID;
  96. iap->ia_gid = tmp;
  97. }
  98. if ((tmp = ntohl(*p++)) != (u32)-1) {
  99. iap->ia_valid |= ATTR_SIZE;
  100. iap->ia_size = tmp;
  101. }
  102. tmp  = ntohl(*p++); tmp1 = ntohl(*p++);
  103. if (tmp != (u32)-1 && tmp1 != (u32)-1) {
  104. iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
  105. iap->ia_atime = tmp;
  106. }
  107. tmp  = ntohl(*p++); tmp1 = ntohl(*p++);
  108. if (tmp != (u32)-1 && tmp1 != (u32)-1) {
  109. iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
  110. iap->ia_mtime = tmp;
  111. }
  112. return p;
  113. }
  114. static inline u32 *
  115. encode_fattr(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
  116. {
  117. struct inode *inode = fhp->fh_dentry->d_inode;
  118. int type = (inode->i_mode & S_IFMT);
  119. *p++ = htonl(nfs_ftypes[type >> 12]);
  120. *p++ = htonl((u32) inode->i_mode);
  121. *p++ = htonl((u32) inode->i_nlink);
  122. *p++ = htonl((u32) nfsd_ruid(rqstp, inode->i_uid));
  123. *p++ = htonl((u32) nfsd_rgid(rqstp, inode->i_gid));
  124. if (S_ISLNK(type) && inode->i_size > NFS_MAXPATHLEN) {
  125. *p++ = htonl(NFS_MAXPATHLEN);
  126. } else {
  127. *p++ = htonl((u32) inode->i_size);
  128. }
  129. *p++ = htonl((u32) inode->i_blksize);
  130. if (S_ISCHR(type) || S_ISBLK(type))
  131. *p++ = htonl((u32) inode->i_rdev);
  132. else
  133. *p++ = htonl(0xffffffff);
  134. *p++ = htonl((u32) inode->i_blocks);
  135. if (rqstp->rq_reffh->fh_version == 1 
  136.     && rqstp->rq_reffh->fh_fsid_type == 1
  137.     && (fhp->fh_export->ex_flags & NFSEXP_FSID))
  138. *p++ = htonl((u32) fhp->fh_export->ex_fsid);
  139. else
  140. *p++ = htonl((u32) inode->i_dev);
  141. *p++ = htonl((u32) inode->i_ino);
  142. *p++ = htonl((u32) inode->i_atime);
  143. *p++ = 0;
  144. *p++ = htonl((u32) lease_get_mtime(inode));
  145. *p++ = 0;
  146. *p++ = htonl((u32) inode->i_ctime);
  147. *p++ = 0;
  148. return p;
  149. }
  150. /*
  151.  * Check buffer bounds after decoding arguments
  152.  */
  153. static inline int
  154. xdr_argsize_check(struct svc_rqst *rqstp, u32 *p)
  155. {
  156. struct svc_buf *buf = &rqstp->rq_argbuf;
  157. return p - buf->base <= buf->buflen;
  158. }
  159. static inline int
  160. xdr_ressize_check(struct svc_rqst *rqstp, u32 *p)
  161. {
  162. struct svc_buf *buf = &rqstp->rq_resbuf;
  163. buf->len = p - buf->base;
  164. dprintk("nfsd: ressize_check p %p base %p len %dn",
  165. p, buf->base, buf->buflen);
  166. return (buf->len <= buf->buflen);
  167. }
  168. /*
  169.  * XDR decode functions
  170.  */
  171. int
  172. nfssvc_decode_void(struct svc_rqst *rqstp, u32 *p, void *dummy)
  173. {
  174. return xdr_argsize_check(rqstp, p);
  175. }
  176. int
  177. nfssvc_decode_fhandle(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
  178. {
  179. if (!(p = decode_fh(p, fhp)))
  180. return 0;
  181. return xdr_argsize_check(rqstp, p);
  182. }
  183. int
  184. nfssvc_decode_sattrargs(struct svc_rqst *rqstp, u32 *p,
  185. struct nfsd_sattrargs *args)
  186. {
  187. if (!(p = decode_fh(p, &args->fh))
  188.  || !(p = decode_sattr(p, &args->attrs)))
  189. return 0;
  190. return xdr_argsize_check(rqstp, p);
  191. }
  192. int
  193. nfssvc_decode_diropargs(struct svc_rqst *rqstp, u32 *p,
  194. struct nfsd_diropargs *args)
  195. {
  196. if (!(p = decode_fh(p, &args->fh))
  197.  || !(p = decode_filename(p, &args->name, &args->len)))
  198. return 0;
  199.  return xdr_argsize_check(rqstp, p);
  200. }
  201. int
  202. nfssvc_decode_readargs(struct svc_rqst *rqstp, u32 *p,
  203. struct nfsd_readargs *args)
  204. {
  205. if (!(p = decode_fh(p, &args->fh)))
  206. return 0;
  207. args->offset    = ntohl(*p++);
  208. args->count     = ntohl(*p++);
  209. args->totalsize = ntohl(*p++);
  210. return xdr_argsize_check(rqstp, p);
  211. }
  212. int
  213. nfssvc_decode_writeargs(struct svc_rqst *rqstp, u32 *p,
  214. struct nfsd_writeargs *args)
  215. {
  216. if (!(p = decode_fh(p, &args->fh)))
  217. return 0;
  218. p++; /* beginoffset */
  219. args->offset = ntohl(*p++); /* offset */
  220. p++; /* totalcount */
  221. args->len = ntohl(*p++);
  222. args->data = (char *) p;
  223. p += XDR_QUADLEN(args->len);
  224. return xdr_argsize_check(rqstp, p);
  225. }
  226. int
  227. nfssvc_decode_createargs(struct svc_rqst *rqstp, u32 *p,
  228. struct nfsd_createargs *args)
  229. {
  230. if (!(p = decode_fh(p, &args->fh))
  231.  || !(p = decode_filename(p, &args->name, &args->len))
  232.  || !(p = decode_sattr(p, &args->attrs)))
  233. return 0;
  234. return xdr_argsize_check(rqstp, p);
  235. }
  236. int
  237. nfssvc_decode_renameargs(struct svc_rqst *rqstp, u32 *p,
  238. struct nfsd_renameargs *args)
  239. {
  240. if (!(p = decode_fh(p, &args->ffh))
  241.  || !(p = decode_filename(p, &args->fname, &args->flen))
  242.  || !(p = decode_fh(p, &args->tfh))
  243.  || !(p = decode_filename(p, &args->tname, &args->tlen)))
  244. return 0;
  245. return xdr_argsize_check(rqstp, p);
  246. }
  247. int
  248. nfssvc_decode_linkargs(struct svc_rqst *rqstp, u32 *p,
  249. struct nfsd_linkargs *args)
  250. {
  251. if (!(p = decode_fh(p, &args->ffh))
  252.  || !(p = decode_fh(p, &args->tfh))
  253.  || !(p = decode_filename(p, &args->tname, &args->tlen)))
  254. return 0;
  255. return xdr_argsize_check(rqstp, p);
  256. }
  257. int
  258. nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, u32 *p,
  259. struct nfsd_symlinkargs *args)
  260. {
  261. if (!(p = decode_fh(p, &args->ffh))
  262.  || !(p = decode_filename(p, &args->fname, &args->flen))
  263.  || !(p = decode_pathname(p, &args->tname, &args->tlen))
  264.  || !(p = decode_sattr(p, &args->attrs)))
  265. return 0;
  266. return xdr_argsize_check(rqstp, p);
  267. }
  268. int
  269. nfssvc_decode_readdirargs(struct svc_rqst *rqstp, u32 *p,
  270. struct nfsd_readdirargs *args)
  271. {
  272. if (!(p = decode_fh(p, &args->fh)))
  273. return 0;
  274. args->cookie = ntohl(*p++);
  275. args->count  = ntohl(*p++);
  276. return xdr_argsize_check(rqstp, p);
  277. }
  278. /*
  279.  * XDR encode functions
  280.  */
  281. int
  282. nfssvc_encode_void(struct svc_rqst *rqstp, u32 *p, void *dummy)
  283. {
  284. return xdr_ressize_check(rqstp, p);
  285. }
  286. int
  287. nfssvc_encode_attrstat(struct svc_rqst *rqstp, u32 *p,
  288. struct nfsd_attrstat *resp)
  289. {
  290. p = encode_fattr(rqstp, p, &resp->fh);
  291. return xdr_ressize_check(rqstp, p);
  292. }
  293. int
  294. nfssvc_encode_diropres(struct svc_rqst *rqstp, u32 *p,
  295. struct nfsd_diropres *resp)
  296. {
  297. p = encode_fh(p, &resp->fh);
  298. p = encode_fattr(rqstp, p, &resp->fh);
  299. return xdr_ressize_check(rqstp, p);
  300. }
  301. int
  302. nfssvc_encode_readlinkres(struct svc_rqst *rqstp, u32 *p,
  303. struct nfsd_readlinkres *resp)
  304. {
  305. *p++ = htonl(resp->len);
  306. p += XDR_QUADLEN(resp->len);
  307. return xdr_ressize_check(rqstp, p);
  308. }
  309. int
  310. nfssvc_encode_readres(struct svc_rqst *rqstp, u32 *p,
  311. struct nfsd_readres *resp)
  312. {
  313. p = encode_fattr(rqstp, p, &resp->fh);
  314. *p++ = htonl(resp->count);
  315. p += XDR_QUADLEN(resp->count);
  316. return xdr_ressize_check(rqstp, p);
  317. }
  318. int
  319. nfssvc_encode_readdirres(struct svc_rqst *rqstp, u32 *p,
  320. struct nfsd_readdirres *resp)
  321. {
  322. p += XDR_QUADLEN(resp->count);
  323. return xdr_ressize_check(rqstp, p);
  324. }
  325. int
  326. nfssvc_encode_statfsres(struct svc_rqst *rqstp, u32 *p,
  327. struct nfsd_statfsres *resp)
  328. {
  329. struct statfs *stat = &resp->stats;
  330. *p++ = htonl(8 * 1024); /* max transfer size */
  331. *p++ = htonl(stat->f_bsize);
  332. *p++ = htonl(stat->f_blocks);
  333. *p++ = htonl(stat->f_bfree);
  334. *p++ = htonl(stat->f_bavail);
  335. return xdr_ressize_check(rqstp, p);
  336. }
  337. int
  338. nfssvc_encode_entry(struct readdir_cd *cd, const char *name,
  339.     int namlen, loff_t offset, ino_t ino, unsigned int d_type)
  340. {
  341. u32 *p = cd->buffer;
  342. int buflen, slen;
  343. /*
  344. dprintk("nfsd: entry(%.*s off %ld ino %ld)n",
  345. namlen, name, offset, ino);
  346.  */
  347. if (offset > ~((u32) 0))
  348. return -EINVAL;
  349. if (cd->offset)
  350. *cd->offset = htonl(offset);
  351. if (namlen > NFS2_MAXNAMLEN)
  352. namlen = NFS2_MAXNAMLEN;/* truncate filename */
  353. slen = XDR_QUADLEN(namlen);
  354. if ((buflen = cd->buflen - slen - 4) < 0) {
  355. cd->eob = 1;
  356. return -EINVAL;
  357. }
  358. *p++ = xdr_one; /* mark entry present */
  359. *p++ = htonl((u32) ino); /* file id */
  360. p    = xdr_encode_array(p, name, namlen);/* name length & name */
  361. cd->offset = p; /* remember pointer */
  362. *p++ = ~(u32) 0; /* offset of next entry */
  363. cd->buflen = buflen;
  364. cd->buffer = p;
  365. return 0;
  366. }
  367. /*
  368.  * XDR release functions
  369.  */
  370. int
  371. nfssvc_release_fhandle(struct svc_rqst *rqstp, u32 *p,
  372. struct nfsd_fhandle *resp)
  373. {
  374. fh_put(&resp->fh);
  375. return 1;
  376. }