mount_clnt.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. /*
  2. * In-kernel MOUNT protocol client
  3. *
  4. * Copyright (C) 1997, Olaf Kirch <okir@monad.swb.de>
  5. */
  6. #include <linux/types.h>
  7. #include <linux/socket.h>
  8. #include <linux/kernel.h>
  9. #include <linux/errno.h>
  10. #include <linux/uio.h>
  11. #include <linux/net.h>
  12. #include <linux/in.h>
  13. #include <linux/sunrpc/clnt.h>
  14. #include <linux/sunrpc/sched.h>
  15. #include <linux/nfs_fs.h>
  16. #include "internal.h"
  17. #ifdef RPC_DEBUG
  18. # define NFSDBG_FACILITY NFSDBG_MOUNT
  19. #endif
  20. /*
  21. * Defined by RFC 1094, section A.3; and RFC 1813, section 5.1.4
  22. */
  23. #define MNTPATHLEN (1024)
  24. /*
  25. * XDR data type sizes
  26. */
  27. #define encode_dirpath_sz (1 + XDR_QUADLEN(MNTPATHLEN))
  28. #define MNT_status_sz (1)
  29. #define MNT_fhs_status_sz (1)
  30. #define MNT_fhandle_sz XDR_QUADLEN(NFS2_FHSIZE)
  31. #define MNT_fhandle3_sz (1 + XDR_QUADLEN(NFS3_FHSIZE))
  32. #define MNT_authflav3_sz (1 + NFS_MAX_SECFLAVORS)
  33. /*
  34. * XDR argument and result sizes
  35. */
  36. #define MNT_enc_dirpath_sz encode_dirpath_sz
  37. #define MNT_dec_mountres_sz (MNT_status_sz + MNT_fhandle_sz)
  38. #define MNT_dec_mountres3_sz (MNT_status_sz + MNT_fhandle_sz + \
  39. MNT_authflav3_sz)
  40. /*
  41. * Defined by RFC 1094, section A.5
  42. */
  43. enum {
  44. MOUNTPROC_NULL = 0,
  45. MOUNTPROC_MNT = 1,
  46. MOUNTPROC_DUMP = 2,
  47. MOUNTPROC_UMNT = 3,
  48. MOUNTPROC_UMNTALL = 4,
  49. MOUNTPROC_EXPORT = 5,
  50. };
  51. /*
  52. * Defined by RFC 1813, section 5.2
  53. */
  54. enum {
  55. MOUNTPROC3_NULL = 0,
  56. MOUNTPROC3_MNT = 1,
  57. MOUNTPROC3_DUMP = 2,
  58. MOUNTPROC3_UMNT = 3,
  59. MOUNTPROC3_UMNTALL = 4,
  60. MOUNTPROC3_EXPORT = 5,
  61. };
  62. static struct rpc_program mnt_program;
  63. /*
  64. * Defined by OpenGroup XNFS Version 3W, chapter 8
  65. */
  66. enum mountstat {
  67. MNT_OK = 0,
  68. MNT_EPERM = 1,
  69. MNT_ENOENT = 2,
  70. MNT_EACCES = 13,
  71. MNT_EINVAL = 22,
  72. };
  73. static struct {
  74. u32 status;
  75. int errno;
  76. } mnt_errtbl[] = {
  77. { .status = MNT_OK, .errno = 0, },
  78. { .status = MNT_EPERM, .errno = -EPERM, },
  79. { .status = MNT_ENOENT, .errno = -ENOENT, },
  80. { .status = MNT_EACCES, .errno = -EACCES, },
  81. { .status = MNT_EINVAL, .errno = -EINVAL, },
  82. };
  83. /*
  84. * Defined by RFC 1813, section 5.1.5
  85. */
  86. enum mountstat3 {
  87. MNT3_OK = 0, /* no error */
  88. MNT3ERR_PERM = 1, /* Not owner */
  89. MNT3ERR_NOENT = 2, /* No such file or directory */
  90. MNT3ERR_IO = 5, /* I/O error */
  91. MNT3ERR_ACCES = 13, /* Permission denied */
  92. MNT3ERR_NOTDIR = 20, /* Not a directory */
  93. MNT3ERR_INVAL = 22, /* Invalid argument */
  94. MNT3ERR_NAMETOOLONG = 63, /* Filename too long */
  95. MNT3ERR_NOTSUPP = 10004, /* Operation not supported */
  96. MNT3ERR_SERVERFAULT = 10006, /* A failure on the server */
  97. };
  98. static struct {
  99. u32 status;
  100. int errno;
  101. } mnt3_errtbl[] = {
  102. { .status = MNT3_OK, .errno = 0, },
  103. { .status = MNT3ERR_PERM, .errno = -EPERM, },
  104. { .status = MNT3ERR_NOENT, .errno = -ENOENT, },
  105. { .status = MNT3ERR_IO, .errno = -EIO, },
  106. { .status = MNT3ERR_ACCES, .errno = -EACCES, },
  107. { .status = MNT3ERR_NOTDIR, .errno = -ENOTDIR, },
  108. { .status = MNT3ERR_INVAL, .errno = -EINVAL, },
  109. { .status = MNT3ERR_NAMETOOLONG, .errno = -ENAMETOOLONG, },
  110. { .status = MNT3ERR_NOTSUPP, .errno = -ENOTSUPP, },
  111. { .status = MNT3ERR_SERVERFAULT, .errno = -EREMOTEIO, },
  112. };
  113. struct mountres {
  114. int errno;
  115. struct nfs_fh *fh;
  116. unsigned int *auth_count;
  117. rpc_authflavor_t *auth_flavors;
  118. };
  119. struct mnt_fhstatus {
  120. u32 status;
  121. struct nfs_fh *fh;
  122. };
  123. /**
  124. * nfs_mount - Obtain an NFS file handle for the given host and path
  125. * @info: pointer to mount request arguments
  126. *
  127. * Uses default timeout parameters specified by underlying transport.
  128. */
  129. int nfs_mount(struct nfs_mount_request *info)
  130. {
  131. struct mountres result = {
  132. .fh = info->fh,
  133. .auth_count = info->auth_flav_len,
  134. .auth_flavors = info->auth_flavs,
  135. };
  136. struct rpc_message msg = {
  137. .rpc_argp = info->dirpath,
  138. .rpc_resp = &result,
  139. };
  140. struct rpc_create_args args = {
  141. .net = &init_net,
  142. .protocol = info->protocol,
  143. .address = info->sap,
  144. .addrsize = info->salen,
  145. .servername = info->hostname,
  146. .program = &mnt_program,
  147. .version = info->version,
  148. .authflavor = RPC_AUTH_UNIX,
  149. };
  150. struct rpc_clnt *mnt_clnt;
  151. int status;
  152. dprintk("NFS: sending MNT request for %s:%s\n",
  153. (info->hostname ? info->hostname : "server"),
  154. info->dirpath);
  155. if (info->noresvport)
  156. args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
  157. mnt_clnt = rpc_create(&args);
  158. if (IS_ERR(mnt_clnt))
  159. goto out_clnt_err;
  160. if (info->version == NFS_MNT3_VERSION)
  161. msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
  162. else
  163. msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
  164. status = rpc_call_sync(mnt_clnt, &msg, 0);
  165. rpc_shutdown_client(mnt_clnt);
  166. if (status < 0)
  167. goto out_call_err;
  168. if (result.errno != 0)
  169. goto out_mnt_err;
  170. dprintk("NFS: MNT request succeeded\n");
  171. status = 0;
  172. out:
  173. return status;
  174. out_clnt_err:
  175. status = PTR_ERR(mnt_clnt);
  176. dprintk("NFS: failed to create MNT RPC client, status=%d\n", status);
  177. goto out;
  178. out_call_err:
  179. dprintk("NFS: MNT request failed, status=%d\n", status);
  180. goto out;
  181. out_mnt_err:
  182. dprintk("NFS: MNT server returned result %d\n", result.errno);
  183. status = result.errno;
  184. goto out;
  185. }
  186. /**
  187. * nfs_umount - Notify a server that we have unmounted this export
  188. * @info: pointer to umount request arguments
  189. *
  190. * MOUNTPROC_UMNT is advisory, so we set a short timeout, and always
  191. * use UDP.
  192. */
  193. void nfs_umount(const struct nfs_mount_request *info)
  194. {
  195. static const struct rpc_timeout nfs_umnt_timeout = {
  196. .to_initval = 1 * HZ,
  197. .to_maxval = 3 * HZ,
  198. .to_retries = 2,
  199. };
  200. struct rpc_create_args args = {
  201. .net = &init_net,
  202. .protocol = IPPROTO_UDP,
  203. .address = info->sap,
  204. .addrsize = info->salen,
  205. .timeout = &nfs_umnt_timeout,
  206. .servername = info->hostname,
  207. .program = &mnt_program,
  208. .version = info->version,
  209. .authflavor = RPC_AUTH_UNIX,
  210. .flags = RPC_CLNT_CREATE_NOPING,
  211. };
  212. struct mountres result;
  213. struct rpc_message msg = {
  214. .rpc_argp = info->dirpath,
  215. .rpc_resp = &result,
  216. };
  217. struct rpc_clnt *clnt;
  218. int status;
  219. if (info->noresvport)
  220. args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
  221. clnt = rpc_create(&args);
  222. if (unlikely(IS_ERR(clnt)))
  223. goto out_clnt_err;
  224. dprintk("NFS: sending UMNT request for %s:%s\n",
  225. (info->hostname ? info->hostname : "server"), info->dirpath);
  226. if (info->version == NFS_MNT3_VERSION)
  227. msg.rpc_proc = &clnt->cl_procinfo[MOUNTPROC3_UMNT];
  228. else
  229. msg.rpc_proc = &clnt->cl_procinfo[MOUNTPROC_UMNT];
  230. status = rpc_call_sync(clnt, &msg, 0);
  231. rpc_shutdown_client(clnt);
  232. if (unlikely(status < 0))
  233. goto out_call_err;
  234. return;
  235. out_clnt_err:
  236. dprintk("NFS: failed to create UMNT RPC client, status=%ld\n",
  237. PTR_ERR(clnt));
  238. return;
  239. out_call_err:
  240. dprintk("NFS: UMNT request failed, status=%d\n", status);
  241. }
  242. /*
  243. * XDR encode/decode functions for MOUNT
  244. */
  245. static int encode_mntdirpath(struct xdr_stream *xdr, const char *pathname)
  246. {
  247. const u32 pathname_len = strlen(pathname);
  248. __be32 *p;
  249. if (unlikely(pathname_len > MNTPATHLEN))
  250. return -EIO;
  251. p = xdr_reserve_space(xdr, sizeof(u32) + pathname_len);
  252. if (unlikely(p == NULL))
  253. return -EIO;
  254. xdr_encode_opaque(p, pathname, pathname_len);
  255. return 0;
  256. }
  257. static int mnt_enc_dirpath(struct rpc_rqst *req, __be32 *p,
  258. const char *dirpath)
  259. {
  260. struct xdr_stream xdr;
  261. xdr_init_encode(&xdr, &req->rq_snd_buf, p);
  262. return encode_mntdirpath(&xdr, dirpath);
  263. }
  264. /*
  265. * RFC 1094: "A non-zero status indicates some sort of error. In this
  266. * case, the status is a UNIX error number." This can be problematic
  267. * if the server and client use different errno values for the same
  268. * error.
  269. *
  270. * However, the OpenGroup XNFS spec provides a simple mapping that is
  271. * independent of local errno values on the server and the client.
  272. */
  273. static int decode_status(struct xdr_stream *xdr, struct mountres *res)
  274. {
  275. unsigned int i;
  276. u32 status;
  277. __be32 *p;
  278. p = xdr_inline_decode(xdr, sizeof(status));
  279. if (unlikely(p == NULL))
  280. return -EIO;
  281. status = ntohl(*p);
  282. for (i = 0; i < ARRAY_SIZE(mnt_errtbl); i++) {
  283. if (mnt_errtbl[i].status == status) {
  284. res->errno = mnt_errtbl[i].errno;
  285. return 0;
  286. }
  287. }
  288. dprintk("NFS: unrecognized MNT status code: %u\n", status);
  289. res->errno = -EACCES;
  290. return 0;
  291. }
  292. static int decode_fhandle(struct xdr_stream *xdr, struct mountres *res)
  293. {
  294. struct nfs_fh *fh = res->fh;
  295. __be32 *p;
  296. p = xdr_inline_decode(xdr, NFS2_FHSIZE);
  297. if (unlikely(p == NULL))
  298. return -EIO;
  299. fh->size = NFS2_FHSIZE;
  300. memcpy(fh->data, p, NFS2_FHSIZE);
  301. return 0;
  302. }
  303. static int mnt_dec_mountres(struct rpc_rqst *req, __be32 *p,
  304. struct mountres *res)
  305. {
  306. struct xdr_stream xdr;
  307. int status;
  308. xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
  309. status = decode_status(&xdr, res);
  310. if (unlikely(status != 0 || res->errno != 0))
  311. return status;
  312. return decode_fhandle(&xdr, res);
  313. }
  314. static int decode_fhs_status(struct xdr_stream *xdr, struct mountres *res)
  315. {
  316. unsigned int i;
  317. u32 status;
  318. __be32 *p;
  319. p = xdr_inline_decode(xdr, sizeof(status));
  320. if (unlikely(p == NULL))
  321. return -EIO;
  322. status = ntohl(*p);
  323. for (i = 0; i < ARRAY_SIZE(mnt3_errtbl); i++) {
  324. if (mnt3_errtbl[i].status == status) {
  325. res->errno = mnt3_errtbl[i].errno;
  326. return 0;
  327. }
  328. }
  329. dprintk("NFS: unrecognized MNT3 status code: %u\n", status);
  330. res->errno = -EACCES;
  331. return 0;
  332. }
  333. static int decode_fhandle3(struct xdr_stream *xdr, struct mountres *res)
  334. {
  335. struct nfs_fh *fh = res->fh;
  336. u32 size;
  337. __be32 *p;
  338. p = xdr_inline_decode(xdr, sizeof(size));
  339. if (unlikely(p == NULL))
  340. return -EIO;
  341. size = ntohl(*p++);
  342. if (size > NFS3_FHSIZE || size == 0)
  343. return -EIO;
  344. p = xdr_inline_decode(xdr, size);
  345. if (unlikely(p == NULL))
  346. return -EIO;
  347. fh->size = size;
  348. memcpy(fh->data, p, size);
  349. return 0;
  350. }
  351. static int decode_auth_flavors(struct xdr_stream *xdr, struct mountres *res)
  352. {
  353. rpc_authflavor_t *flavors = res->auth_flavors;
  354. unsigned int *count = res->auth_count;
  355. u32 entries, i;
  356. __be32 *p;
  357. if (*count == 0)
  358. return 0;
  359. p = xdr_inline_decode(xdr, sizeof(entries));
  360. if (unlikely(p == NULL))
  361. return -EIO;
  362. entries = ntohl(*p);
  363. dprintk("NFS: received %u auth flavors\n", entries);
  364. if (entries > NFS_MAX_SECFLAVORS)
  365. entries = NFS_MAX_SECFLAVORS;
  366. p = xdr_inline_decode(xdr, sizeof(u32) * entries);
  367. if (unlikely(p == NULL))
  368. return -EIO;
  369. if (entries > *count)
  370. entries = *count;
  371. for (i = 0; i < entries; i++) {
  372. flavors[i] = ntohl(*p++);
  373. dprintk("NFS: auth flavor[%u]: %d\n", i, flavors[i]);
  374. }
  375. *count = i;
  376. return 0;
  377. }
  378. static int mnt_dec_mountres3(struct rpc_rqst *req, __be32 *p,
  379. struct mountres *res)
  380. {
  381. struct xdr_stream xdr;
  382. int status;
  383. xdr_init_decode(&xdr, &req->rq_rcv_buf, p);
  384. status = decode_fhs_status(&xdr, res);
  385. if (unlikely(status != 0 || res->errno != 0))
  386. return status;
  387. status = decode_fhandle3(&xdr, res);
  388. if (unlikely(status != 0)) {
  389. res->errno = -EBADHANDLE;
  390. return 0;
  391. }
  392. return decode_auth_flavors(&xdr, res);
  393. }
  394. static struct rpc_procinfo mnt_procedures[] = {
  395. [MOUNTPROC_MNT] = {
  396. .p_proc = MOUNTPROC_MNT,
  397. .p_encode = (kxdrproc_t)mnt_enc_dirpath,
  398. .p_decode = (kxdrproc_t)mnt_dec_mountres,
  399. .p_arglen = MNT_enc_dirpath_sz,
  400. .p_replen = MNT_dec_mountres_sz,
  401. .p_statidx = MOUNTPROC_MNT,
  402. .p_name = "MOUNT",
  403. },
  404. [MOUNTPROC_UMNT] = {
  405. .p_proc = MOUNTPROC_UMNT,
  406. .p_encode = (kxdrproc_t)mnt_enc_dirpath,
  407. .p_arglen = MNT_enc_dirpath_sz,
  408. .p_statidx = MOUNTPROC_UMNT,
  409. .p_name = "UMOUNT",
  410. },
  411. };
  412. static struct rpc_procinfo mnt3_procedures[] = {
  413. [MOUNTPROC3_MNT] = {
  414. .p_proc = MOUNTPROC3_MNT,
  415. .p_encode = (kxdrproc_t)mnt_enc_dirpath,
  416. .p_decode = (kxdrproc_t)mnt_dec_mountres3,
  417. .p_arglen = MNT_enc_dirpath_sz,
  418. .p_replen = MNT_dec_mountres3_sz,
  419. .p_statidx = MOUNTPROC3_MNT,
  420. .p_name = "MOUNT",
  421. },
  422. [MOUNTPROC3_UMNT] = {
  423. .p_proc = MOUNTPROC3_UMNT,
  424. .p_encode = (kxdrproc_t)mnt_enc_dirpath,
  425. .p_arglen = MNT_enc_dirpath_sz,
  426. .p_statidx = MOUNTPROC3_UMNT,
  427. .p_name = "UMOUNT",
  428. },
  429. };
  430. static struct rpc_version mnt_version1 = {
  431. .number = 1,
  432. .nrprocs = 2,
  433. .procs = mnt_procedures,
  434. };
  435. static struct rpc_version mnt_version3 = {
  436. .number = 3,
  437. .nrprocs = 2,
  438. .procs = mnt3_procedures,
  439. };
  440. static struct rpc_version *mnt_version[] = {
  441. NULL,
  442. &mnt_version1,
  443. NULL,
  444. &mnt_version3,
  445. };
  446. static struct rpc_stat mnt_stats;
  447. static struct rpc_program mnt_program = {
  448. .name = "mount",
  449. .number = NFS_MNT_PROGRAM,
  450. .nrvers = ARRAY_SIZE(mnt_version),
  451. .version = mnt_version,
  452. .stats = &mnt_stats,
  453. };