mount_clnt.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/nfs/mount_clnt.c
  3.  *
  4.  * MOUNT client to support NFSroot.
  5.  *
  6.  * Copyright (C) 1997, Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #include <linux/types.h>
  9. #include <linux/socket.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/uio.h>
  13. #include <linux/net.h>
  14. #include <linux/in.h>
  15. #include <linux/inet.h>
  16. #include <linux/sunrpc/clnt.h>
  17. #include <linux/sunrpc/xprt.h>
  18. #include <linux/sunrpc/sched.h>
  19. #include <linux/nfs_fs.h>
  20. #ifdef RPC_DEBUG
  21. # define NFSDBG_FACILITY NFSDBG_ROOT
  22. #endif
  23. /*
  24. #define MOUNT_PROGRAM 100005
  25. #define MOUNT_VERSION 1
  26. #define MOUNT_MNT 1
  27. #define MOUNT_UMNT 3
  28.  */
  29. static int nfs_gen_mount(struct sockaddr_in *,
  30.       char *, struct nfs_fh *, int);
  31. static struct rpc_clnt * mnt_create(char *, struct sockaddr_in *, int);
  32. extern struct rpc_program mnt_program;
  33. struct mnt_fhstatus {
  34. unsigned int status;
  35. struct nfs_fh * fh;
  36. };
  37. /*
  38.  * Obtain an NFS file handle for the given host and path
  39.  */
  40. int
  41. nfs_mount(struct sockaddr_in *addr, char *path, struct nfs_fh *fh)
  42. {
  43. return nfs_gen_mount(addr, path, fh, NFS_MNT_VERSION);
  44. }
  45. int
  46. nfs3_mount(struct sockaddr_in *addr, char *path, struct nfs_fh *fh)
  47. {
  48. return nfs_gen_mount(addr, path, fh, NFS_MNT3_VERSION);
  49. }
  50. static int
  51. nfs_gen_mount(struct sockaddr_in *addr, char *path, struct nfs_fh *fh, int version)
  52. {
  53. struct rpc_clnt *mnt_clnt;
  54. struct mnt_fhstatus result = { 0, fh };
  55. char hostname[32];
  56. int status;
  57. int call;
  58. dprintk("NFS:      nfs_mount(%08x:%s)n",
  59. (unsigned)ntohl(addr->sin_addr.s_addr), path);
  60. strcpy(hostname, in_ntoa(addr->sin_addr.s_addr));
  61. if (!(mnt_clnt = mnt_create(hostname, addr, version)))
  62. return -EACCES;
  63. call = (version == 3) ? MOUNTPROC3_MNT : MNTPROC_MNT;
  64. status = rpc_call(mnt_clnt, call, path, &result, 0);
  65. return status < 0? status : (result.status? -EACCES : 0);
  66. }
  67. static struct rpc_clnt *
  68. mnt_create(char *hostname, struct sockaddr_in *srvaddr, int version)
  69. {
  70. struct rpc_xprt *xprt;
  71. struct rpc_clnt *clnt;
  72. if (!(xprt = xprt_create_proto(IPPROTO_UDP, srvaddr, NULL)))
  73. return NULL;
  74. clnt = rpc_create_client(xprt, hostname,
  75. &mnt_program, version,
  76. RPC_AUTH_NULL);
  77. if (!clnt) {
  78. xprt_destroy(xprt);
  79. } else {
  80. clnt->cl_softrtry = 1;
  81. clnt->cl_chatty   = 1;
  82. clnt->cl_oneshot  = 1;
  83. clnt->cl_intr = 1;
  84. }
  85. return clnt;
  86. }
  87. /*
  88.  * XDR encode/decode functions for MOUNT
  89.  */
  90. static int
  91. xdr_error(struct rpc_rqst *req, u32 *p, void *dummy)
  92. {
  93. return -EIO;
  94. }
  95. static int
  96. xdr_encode_dirpath(struct rpc_rqst *req, u32 *p, const char *path)
  97. {
  98. p = xdr_encode_string(p, path);
  99. req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
  100. return 0;
  101. }
  102. static int
  103. xdr_decode_fhstatus(struct rpc_rqst *req, u32 *p, struct mnt_fhstatus *res)
  104. {
  105. struct nfs_fh *fh = res->fh;
  106. memset((void *)fh, 0, sizeof(*fh));
  107. if ((res->status = ntohl(*p++)) == 0) {
  108. fh->size = NFS2_FHSIZE;
  109. memcpy(fh->data, p, NFS2_FHSIZE);
  110. }
  111. return 0;
  112. }
  113. static int
  114. xdr_decode_fhstatus3(struct rpc_rqst *req, u32 *p, struct mnt_fhstatus *res)
  115. {
  116. struct nfs_fh *fh = res->fh;
  117. memset((void *)fh, 0, sizeof(*fh));
  118. if ((res->status = ntohl(*p++)) == 0) {
  119. int size = ntohl(*p++);
  120. if (size <= NFS3_FHSIZE) {
  121. fh->size = size;
  122. memcpy(fh->data, p, size);
  123. } else
  124. res->status = -EBADHANDLE;
  125. }
  126. return 0;
  127. }
  128. #define MNT_dirpath_sz (1 + 256)
  129. #define MNT_fhstatus_sz (1 + 8)
  130. static struct rpc_procinfo mnt_procedures[2] = {
  131. { "mnt_null",
  132. (kxdrproc_t) xdr_error,
  133. (kxdrproc_t) xdr_error, 0, 0 },
  134. { "mnt_mount",
  135. (kxdrproc_t) xdr_encode_dirpath,
  136. (kxdrproc_t) xdr_decode_fhstatus,
  137. MNT_dirpath_sz << 2, 0 },
  138. };
  139. static struct rpc_procinfo mnt3_procedures[2] = {
  140. { "mnt3_null",
  141. (kxdrproc_t) xdr_error,
  142. (kxdrproc_t) xdr_error, 0, 0 },
  143. { "mnt3_mount",
  144. (kxdrproc_t) xdr_encode_dirpath,
  145. (kxdrproc_t) xdr_decode_fhstatus3,
  146. MNT_dirpath_sz << 2, 0 },
  147. };
  148. static struct rpc_version mnt_version1 = {
  149. 1, 2, mnt_procedures
  150. };
  151. static struct rpc_version       mnt_version3 = {
  152. 3, 2, mnt3_procedures
  153. };
  154. static struct rpc_version * mnt_version[] = {
  155. NULL,
  156. &mnt_version1,
  157. NULL,
  158. &mnt_version3,
  159. };
  160. static struct rpc_stat mnt_stats;
  161. struct rpc_program mnt_program = {
  162. "mount",
  163. NFS_MNT_PROGRAM,
  164. sizeof(mnt_version)/sizeof(mnt_version[0]),
  165. mnt_version,
  166. &mnt_stats,
  167. };