mount_clnt.c 12 KB

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