rpcb_clnt.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159
  1. /*
  2. * In-kernel rpcbind client supporting versions 2, 3, and 4 of the rpcbind
  3. * protocol
  4. *
  5. * Based on RFC 1833: "Binding Protocols for ONC RPC Version 2" and
  6. * RFC 3530: "Network File System (NFS) version 4 Protocol"
  7. *
  8. * Original: Gilles Quillard, Bull Open Source, 2005 <gilles.quillard@bull.net>
  9. * Updated: Chuck Lever, Oracle Corporation, 2007 <chuck.lever@oracle.com>
  10. *
  11. * Descended from net/sunrpc/pmap_clnt.c,
  12. * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  13. */
  14. #include <linux/module.h>
  15. #include <linux/types.h>
  16. #include <linux/socket.h>
  17. #include <linux/un.h>
  18. #include <linux/in.h>
  19. #include <linux/in6.h>
  20. #include <linux/kernel.h>
  21. #include <linux/errno.h>
  22. #include <linux/mutex.h>
  23. #include <linux/slab.h>
  24. #include <net/ipv6.h>
  25. #include <linux/sunrpc/clnt.h>
  26. #include <linux/sunrpc/addr.h>
  27. #include <linux/sunrpc/sched.h>
  28. #include <linux/sunrpc/xprtsock.h>
  29. #include "netns.h"
  30. #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
  31. # define RPCDBG_FACILITY RPCDBG_BIND
  32. #endif
  33. #define RPCBIND_SOCK_PATHNAME "/var/run/rpcbind.sock"
  34. #define RPCBIND_PROGRAM (100000u)
  35. #define RPCBIND_PORT (111u)
  36. #define RPCBVERS_2 (2u)
  37. #define RPCBVERS_3 (3u)
  38. #define RPCBVERS_4 (4u)
  39. enum {
  40. RPCBPROC_NULL,
  41. RPCBPROC_SET,
  42. RPCBPROC_UNSET,
  43. RPCBPROC_GETPORT,
  44. RPCBPROC_GETADDR = 3, /* alias for GETPORT */
  45. RPCBPROC_DUMP,
  46. RPCBPROC_CALLIT,
  47. RPCBPROC_BCAST = 5, /* alias for CALLIT */
  48. RPCBPROC_GETTIME,
  49. RPCBPROC_UADDR2TADDR,
  50. RPCBPROC_TADDR2UADDR,
  51. RPCBPROC_GETVERSADDR,
  52. RPCBPROC_INDIRECT,
  53. RPCBPROC_GETADDRLIST,
  54. RPCBPROC_GETSTAT,
  55. };
  56. /*
  57. * r_owner
  58. *
  59. * The "owner" is allowed to unset a service in the rpcbind database.
  60. *
  61. * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
  62. * UID which it maps to a local user name via a password lookup.
  63. * In all other cases it is ignored.
  64. *
  65. * For SET/UNSET requests, user space provides a value, even for
  66. * network requests, and GETADDR uses an empty string. We follow
  67. * those precedents here.
  68. */
  69. #define RPCB_OWNER_STRING "0"
  70. #define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
  71. /*
  72. * XDR data type sizes
  73. */
  74. #define RPCB_program_sz (1)
  75. #define RPCB_version_sz (1)
  76. #define RPCB_protocol_sz (1)
  77. #define RPCB_port_sz (1)
  78. #define RPCB_boolean_sz (1)
  79. #define RPCB_netid_sz (1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
  80. #define RPCB_addr_sz (1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
  81. #define RPCB_ownerstring_sz (1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))
  82. /*
  83. * XDR argument and result sizes
  84. */
  85. #define RPCB_mappingargs_sz (RPCB_program_sz + RPCB_version_sz + \
  86. RPCB_protocol_sz + RPCB_port_sz)
  87. #define RPCB_getaddrargs_sz (RPCB_program_sz + RPCB_version_sz + \
  88. RPCB_netid_sz + RPCB_addr_sz + \
  89. RPCB_ownerstring_sz)
  90. #define RPCB_getportres_sz RPCB_port_sz
  91. #define RPCB_setres_sz RPCB_boolean_sz
  92. /*
  93. * Note that RFC 1833 does not put any size restrictions on the
  94. * address string returned by the remote rpcbind database.
  95. */
  96. #define RPCB_getaddrres_sz RPCB_addr_sz
  97. static void rpcb_getport_done(struct rpc_task *, void *);
  98. static void rpcb_map_release(void *data);
  99. static const struct rpc_program rpcb_program;
  100. struct rpcbind_args {
  101. struct rpc_xprt * r_xprt;
  102. u32 r_prog;
  103. u32 r_vers;
  104. u32 r_prot;
  105. unsigned short r_port;
  106. const char * r_netid;
  107. const char * r_addr;
  108. const char * r_owner;
  109. int r_status;
  110. };
  111. static struct rpc_procinfo rpcb_procedures2[];
  112. static struct rpc_procinfo rpcb_procedures3[];
  113. static struct rpc_procinfo rpcb_procedures4[];
  114. struct rpcb_info {
  115. u32 rpc_vers;
  116. struct rpc_procinfo * rpc_proc;
  117. };
  118. static const struct rpcb_info rpcb_next_version[];
  119. static const struct rpcb_info rpcb_next_version6[];
  120. static const struct rpc_call_ops rpcb_getport_ops = {
  121. .rpc_call_done = rpcb_getport_done,
  122. .rpc_release = rpcb_map_release,
  123. };
  124. static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
  125. {
  126. xprt_clear_binding(xprt);
  127. rpc_wake_up_status(&xprt->binding, status);
  128. }
  129. static void rpcb_map_release(void *data)
  130. {
  131. struct rpcbind_args *map = data;
  132. rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
  133. xprt_put(map->r_xprt);
  134. kfree(map->r_addr);
  135. kfree(map);
  136. }
  137. static int rpcb_get_local(struct net *net)
  138. {
  139. int cnt;
  140. struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
  141. spin_lock(&sn->rpcb_clnt_lock);
  142. if (sn->rpcb_users)
  143. sn->rpcb_users++;
  144. cnt = sn->rpcb_users;
  145. spin_unlock(&sn->rpcb_clnt_lock);
  146. return cnt;
  147. }
  148. void rpcb_put_local(struct net *net)
  149. {
  150. struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
  151. struct rpc_clnt *clnt = sn->rpcb_local_clnt;
  152. struct rpc_clnt *clnt4 = sn->rpcb_local_clnt4;
  153. int shutdown = 0;
  154. spin_lock(&sn->rpcb_clnt_lock);
  155. if (sn->rpcb_users) {
  156. if (--sn->rpcb_users == 0) {
  157. sn->rpcb_local_clnt = NULL;
  158. sn->rpcb_local_clnt4 = NULL;
  159. }
  160. shutdown = !sn->rpcb_users;
  161. }
  162. spin_unlock(&sn->rpcb_clnt_lock);
  163. if (shutdown) {
  164. /*
  165. * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
  166. */
  167. if (clnt4)
  168. rpc_shutdown_client(clnt4);
  169. if (clnt)
  170. rpc_shutdown_client(clnt);
  171. }
  172. }
  173. static void rpcb_set_local(struct net *net, struct rpc_clnt *clnt,
  174. struct rpc_clnt *clnt4,
  175. bool is_af_local)
  176. {
  177. struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
  178. /* Protected by rpcb_create_local_mutex */
  179. sn->rpcb_local_clnt = clnt;
  180. sn->rpcb_local_clnt4 = clnt4;
  181. sn->rpcb_is_af_local = is_af_local ? 1 : 0;
  182. smp_wmb();
  183. sn->rpcb_users = 1;
  184. dprintk("RPC: created new rpcb local clients (rpcb_local_clnt: "
  185. "%p, rpcb_local_clnt4: %p) for net %p%s\n",
  186. sn->rpcb_local_clnt, sn->rpcb_local_clnt4,
  187. net, (net == &init_net) ? " (init_net)" : "");
  188. }
  189. /*
  190. * Returns zero on success, otherwise a negative errno value
  191. * is returned.
  192. */
  193. static int rpcb_create_local_unix(struct net *net)
  194. {
  195. static const struct sockaddr_un rpcb_localaddr_rpcbind = {
  196. .sun_family = AF_LOCAL,
  197. .sun_path = RPCBIND_SOCK_PATHNAME,
  198. };
  199. struct rpc_create_args args = {
  200. .net = net,
  201. .protocol = XPRT_TRANSPORT_LOCAL,
  202. .address = (struct sockaddr *)&rpcb_localaddr_rpcbind,
  203. .addrsize = sizeof(rpcb_localaddr_rpcbind),
  204. .servername = "localhost",
  205. .program = &rpcb_program,
  206. .version = RPCBVERS_2,
  207. .authflavor = RPC_AUTH_NULL,
  208. /*
  209. * We turn off the idle timeout to prevent the kernel
  210. * from automatically disconnecting the socket.
  211. * Otherwise, we'd have to cache the mount namespace
  212. * of the caller and somehow pass that to the socket
  213. * reconnect code.
  214. */
  215. .flags = RPC_CLNT_CREATE_NO_IDLE_TIMEOUT,
  216. };
  217. struct rpc_clnt *clnt, *clnt4;
  218. int result = 0;
  219. /*
  220. * Because we requested an RPC PING at transport creation time,
  221. * this works only if the user space portmapper is rpcbind, and
  222. * it's listening on AF_LOCAL on the named socket.
  223. */
  224. clnt = rpc_create(&args);
  225. if (IS_ERR(clnt)) {
  226. dprintk("RPC: failed to create AF_LOCAL rpcbind "
  227. "client (errno %ld).\n", PTR_ERR(clnt));
  228. result = PTR_ERR(clnt);
  229. goto out;
  230. }
  231. clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
  232. if (IS_ERR(clnt4)) {
  233. dprintk("RPC: failed to bind second program to "
  234. "rpcbind v4 client (errno %ld).\n",
  235. PTR_ERR(clnt4));
  236. clnt4 = NULL;
  237. }
  238. rpcb_set_local(net, clnt, clnt4, true);
  239. out:
  240. return result;
  241. }
  242. /*
  243. * Returns zero on success, otherwise a negative errno value
  244. * is returned.
  245. */
  246. static int rpcb_create_local_net(struct net *net)
  247. {
  248. static const struct sockaddr_in rpcb_inaddr_loopback = {
  249. .sin_family = AF_INET,
  250. .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
  251. .sin_port = htons(RPCBIND_PORT),
  252. };
  253. struct rpc_create_args args = {
  254. .net = net,
  255. .protocol = XPRT_TRANSPORT_TCP,
  256. .address = (struct sockaddr *)&rpcb_inaddr_loopback,
  257. .addrsize = sizeof(rpcb_inaddr_loopback),
  258. .servername = "localhost",
  259. .program = &rpcb_program,
  260. .version = RPCBVERS_2,
  261. .authflavor = RPC_AUTH_UNIX,
  262. .flags = RPC_CLNT_CREATE_NOPING,
  263. };
  264. struct rpc_clnt *clnt, *clnt4;
  265. int result = 0;
  266. clnt = rpc_create(&args);
  267. if (IS_ERR(clnt)) {
  268. dprintk("RPC: failed to create local rpcbind "
  269. "client (errno %ld).\n", PTR_ERR(clnt));
  270. result = PTR_ERR(clnt);
  271. goto out;
  272. }
  273. /*
  274. * This results in an RPC ping. On systems running portmapper,
  275. * the v4 ping will fail. Proceed anyway, but disallow rpcb
  276. * v4 upcalls.
  277. */
  278. clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
  279. if (IS_ERR(clnt4)) {
  280. dprintk("RPC: failed to bind second program to "
  281. "rpcbind v4 client (errno %ld).\n",
  282. PTR_ERR(clnt4));
  283. clnt4 = NULL;
  284. }
  285. rpcb_set_local(net, clnt, clnt4, false);
  286. out:
  287. return result;
  288. }
  289. /*
  290. * Returns zero on success, otherwise a negative errno value
  291. * is returned.
  292. */
  293. int rpcb_create_local(struct net *net)
  294. {
  295. static DEFINE_MUTEX(rpcb_create_local_mutex);
  296. int result = 0;
  297. if (rpcb_get_local(net))
  298. return result;
  299. mutex_lock(&rpcb_create_local_mutex);
  300. if (rpcb_get_local(net))
  301. goto out;
  302. if (rpcb_create_local_unix(net) != 0)
  303. result = rpcb_create_local_net(net);
  304. out:
  305. mutex_unlock(&rpcb_create_local_mutex);
  306. return result;
  307. }
  308. static struct rpc_clnt *rpcb_create(struct net *net, const char *nodename,
  309. const char *hostname,
  310. struct sockaddr *srvaddr, size_t salen,
  311. int proto, u32 version)
  312. {
  313. struct rpc_create_args args = {
  314. .net = net,
  315. .protocol = proto,
  316. .address = srvaddr,
  317. .addrsize = salen,
  318. .servername = hostname,
  319. .nodename = nodename,
  320. .program = &rpcb_program,
  321. .version = version,
  322. .authflavor = RPC_AUTH_UNIX,
  323. .flags = (RPC_CLNT_CREATE_NOPING |
  324. RPC_CLNT_CREATE_NONPRIVPORT),
  325. };
  326. switch (srvaddr->sa_family) {
  327. case AF_INET:
  328. ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
  329. break;
  330. case AF_INET6:
  331. ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
  332. break;
  333. default:
  334. return ERR_PTR(-EAFNOSUPPORT);
  335. }
  336. return rpc_create(&args);
  337. }
  338. static int rpcb_register_call(struct sunrpc_net *sn, struct rpc_clnt *clnt, struct rpc_message *msg, bool is_set)
  339. {
  340. int flags = RPC_TASK_NOCONNECT;
  341. int error, result = 0;
  342. if (is_set || !sn->rpcb_is_af_local)
  343. flags = RPC_TASK_SOFTCONN;
  344. msg->rpc_resp = &result;
  345. error = rpc_call_sync(clnt, msg, flags);
  346. if (error < 0) {
  347. dprintk("RPC: failed to contact local rpcbind "
  348. "server (errno %d).\n", -error);
  349. return error;
  350. }
  351. if (!result)
  352. return -EACCES;
  353. return 0;
  354. }
  355. /**
  356. * rpcb_register - set or unset a port registration with the local rpcbind svc
  357. * @net: target network namespace
  358. * @prog: RPC program number to bind
  359. * @vers: RPC version number to bind
  360. * @prot: transport protocol to register
  361. * @port: port value to register
  362. *
  363. * Returns zero if the registration request was dispatched successfully
  364. * and the rpcbind daemon returned success. Otherwise, returns an errno
  365. * value that reflects the nature of the error (request could not be
  366. * dispatched, timed out, or rpcbind returned an error).
  367. *
  368. * RPC services invoke this function to advertise their contact
  369. * information via the system's rpcbind daemon. RPC services
  370. * invoke this function once for each [program, version, transport]
  371. * tuple they wish to advertise.
  372. *
  373. * Callers may also unregister RPC services that are no longer
  374. * available by setting the passed-in port to zero. This removes
  375. * all registered transports for [program, version] from the local
  376. * rpcbind database.
  377. *
  378. * This function uses rpcbind protocol version 2 to contact the
  379. * local rpcbind daemon.
  380. *
  381. * Registration works over both AF_INET and AF_INET6, and services
  382. * registered via this function are advertised as available for any
  383. * address. If the local rpcbind daemon is listening on AF_INET6,
  384. * services registered via this function will be advertised on
  385. * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
  386. * addresses).
  387. */
  388. int rpcb_register(struct net *net, u32 prog, u32 vers, int prot, unsigned short port)
  389. {
  390. struct rpcbind_args map = {
  391. .r_prog = prog,
  392. .r_vers = vers,
  393. .r_prot = prot,
  394. .r_port = port,
  395. };
  396. struct rpc_message msg = {
  397. .rpc_argp = &map,
  398. };
  399. struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
  400. bool is_set = false;
  401. dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
  402. "rpcbind\n", (port ? "" : "un"),
  403. prog, vers, prot, port);
  404. msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
  405. if (port != 0) {
  406. msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
  407. is_set = true;
  408. }
  409. return rpcb_register_call(sn, sn->rpcb_local_clnt, &msg, is_set);
  410. }
  411. /*
  412. * Fill in AF_INET family-specific arguments to register
  413. */
  414. static int rpcb_register_inet4(struct sunrpc_net *sn,
  415. const struct sockaddr *sap,
  416. struct rpc_message *msg)
  417. {
  418. const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
  419. struct rpcbind_args *map = msg->rpc_argp;
  420. unsigned short port = ntohs(sin->sin_port);
  421. bool is_set = false;
  422. int result;
  423. map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
  424. dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
  425. "local rpcbind\n", (port ? "" : "un"),
  426. map->r_prog, map->r_vers,
  427. map->r_addr, map->r_netid);
  428. msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
  429. if (port != 0) {
  430. msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
  431. is_set = true;
  432. }
  433. result = rpcb_register_call(sn, sn->rpcb_local_clnt4, msg, is_set);
  434. kfree(map->r_addr);
  435. return result;
  436. }
  437. /*
  438. * Fill in AF_INET6 family-specific arguments to register
  439. */
  440. static int rpcb_register_inet6(struct sunrpc_net *sn,
  441. const struct sockaddr *sap,
  442. struct rpc_message *msg)
  443. {
  444. const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
  445. struct rpcbind_args *map = msg->rpc_argp;
  446. unsigned short port = ntohs(sin6->sin6_port);
  447. bool is_set = false;
  448. int result;
  449. map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
  450. dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
  451. "local rpcbind\n", (port ? "" : "un"),
  452. map->r_prog, map->r_vers,
  453. map->r_addr, map->r_netid);
  454. msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
  455. if (port != 0) {
  456. msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
  457. is_set = true;
  458. }
  459. result = rpcb_register_call(sn, sn->rpcb_local_clnt4, msg, is_set);
  460. kfree(map->r_addr);
  461. return result;
  462. }
  463. static int rpcb_unregister_all_protofamilies(struct sunrpc_net *sn,
  464. struct rpc_message *msg)
  465. {
  466. struct rpcbind_args *map = msg->rpc_argp;
  467. dprintk("RPC: unregistering [%u, %u, '%s'] with "
  468. "local rpcbind\n",
  469. map->r_prog, map->r_vers, map->r_netid);
  470. map->r_addr = "";
  471. msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
  472. return rpcb_register_call(sn, sn->rpcb_local_clnt4, msg, false);
  473. }
  474. /**
  475. * rpcb_v4_register - set or unset a port registration with the local rpcbind
  476. * @net: target network namespace
  477. * @program: RPC program number of service to (un)register
  478. * @version: RPC version number of service to (un)register
  479. * @address: address family, IP address, and port to (un)register
  480. * @netid: netid of transport protocol to (un)register
  481. *
  482. * Returns zero if the registration request was dispatched successfully
  483. * and the rpcbind daemon returned success. Otherwise, returns an errno
  484. * value that reflects the nature of the error (request could not be
  485. * dispatched, timed out, or rpcbind returned an error).
  486. *
  487. * RPC services invoke this function to advertise their contact
  488. * information via the system's rpcbind daemon. RPC services
  489. * invoke this function once for each [program, version, address,
  490. * netid] tuple they wish to advertise.
  491. *
  492. * Callers may also unregister RPC services that are registered at a
  493. * specific address by setting the port number in @address to zero.
  494. * They may unregister all registered protocol families at once for
  495. * a service by passing a NULL @address argument. If @netid is ""
  496. * then all netids for [program, version, address] are unregistered.
  497. *
  498. * This function uses rpcbind protocol version 4 to contact the
  499. * local rpcbind daemon. The local rpcbind daemon must support
  500. * version 4 of the rpcbind protocol in order for these functions
  501. * to register a service successfully.
  502. *
  503. * Supported netids include "udp" and "tcp" for UDP and TCP over
  504. * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
  505. * respectively.
  506. *
  507. * The contents of @address determine the address family and the
  508. * port to be registered. The usual practice is to pass INADDR_ANY
  509. * as the raw address, but specifying a non-zero address is also
  510. * supported by this API if the caller wishes to advertise an RPC
  511. * service on a specific network interface.
  512. *
  513. * Note that passing in INADDR_ANY does not create the same service
  514. * registration as IN6ADDR_ANY. The former advertises an RPC
  515. * service on any IPv4 address, but not on IPv6. The latter
  516. * advertises the service on all IPv4 and IPv6 addresses.
  517. */
  518. int rpcb_v4_register(struct net *net, const u32 program, const u32 version,
  519. const struct sockaddr *address, const char *netid)
  520. {
  521. struct rpcbind_args map = {
  522. .r_prog = program,
  523. .r_vers = version,
  524. .r_netid = netid,
  525. .r_owner = RPCB_OWNER_STRING,
  526. };
  527. struct rpc_message msg = {
  528. .rpc_argp = &map,
  529. };
  530. struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
  531. if (sn->rpcb_local_clnt4 == NULL)
  532. return -EPROTONOSUPPORT;
  533. if (address == NULL)
  534. return rpcb_unregister_all_protofamilies(sn, &msg);
  535. switch (address->sa_family) {
  536. case AF_INET:
  537. return rpcb_register_inet4(sn, address, &msg);
  538. case AF_INET6:
  539. return rpcb_register_inet6(sn, address, &msg);
  540. }
  541. return -EAFNOSUPPORT;
  542. }
  543. static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
  544. {
  545. struct rpc_message msg = {
  546. .rpc_proc = proc,
  547. .rpc_argp = map,
  548. .rpc_resp = map,
  549. };
  550. struct rpc_task_setup task_setup_data = {
  551. .rpc_client = rpcb_clnt,
  552. .rpc_message = &msg,
  553. .callback_ops = &rpcb_getport_ops,
  554. .callback_data = map,
  555. .flags = RPC_TASK_ASYNC | RPC_TASK_SOFTCONN,
  556. };
  557. return rpc_run_task(&task_setup_data);
  558. }
  559. /*
  560. * In the case where rpc clients have been cloned, we want to make
  561. * sure that we use the program number/version etc of the actual
  562. * owner of the xprt. To do so, we walk back up the tree of parents
  563. * to find whoever created the transport and/or whoever has the
  564. * autobind flag set.
  565. */
  566. static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
  567. {
  568. struct rpc_clnt *parent = clnt->cl_parent;
  569. struct rpc_xprt *xprt = rcu_dereference(clnt->cl_xprt);
  570. while (parent != clnt) {
  571. if (rcu_dereference(parent->cl_xprt) != xprt)
  572. break;
  573. if (clnt->cl_autobind)
  574. break;
  575. clnt = parent;
  576. parent = parent->cl_parent;
  577. }
  578. return clnt;
  579. }
  580. /**
  581. * rpcb_getport_async - obtain the port for a given RPC service on a given host
  582. * @task: task that is waiting for portmapper request
  583. *
  584. * This one can be called for an ongoing RPC request, and can be used in
  585. * an async (rpciod) context.
  586. */
  587. void rpcb_getport_async(struct rpc_task *task)
  588. {
  589. struct rpc_clnt *clnt;
  590. struct rpc_procinfo *proc;
  591. u32 bind_version;
  592. struct rpc_xprt *xprt;
  593. struct rpc_clnt *rpcb_clnt;
  594. struct rpcbind_args *map;
  595. struct rpc_task *child;
  596. struct sockaddr_storage addr;
  597. struct sockaddr *sap = (struct sockaddr *)&addr;
  598. size_t salen;
  599. int status;
  600. rcu_read_lock();
  601. do {
  602. clnt = rpcb_find_transport_owner(task->tk_client);
  603. xprt = xprt_get(rcu_dereference(clnt->cl_xprt));
  604. } while (xprt == NULL);
  605. rcu_read_unlock();
  606. dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
  607. task->tk_pid, __func__,
  608. xprt->servername, clnt->cl_prog, clnt->cl_vers, xprt->prot);
  609. /* Put self on the wait queue to ensure we get notified if
  610. * some other task is already attempting to bind the port */
  611. rpc_sleep_on(&xprt->binding, task, NULL);
  612. if (xprt_test_and_set_binding(xprt)) {
  613. dprintk("RPC: %5u %s: waiting for another binder\n",
  614. task->tk_pid, __func__);
  615. xprt_put(xprt);
  616. return;
  617. }
  618. /* Someone else may have bound if we slept */
  619. if (xprt_bound(xprt)) {
  620. status = 0;
  621. dprintk("RPC: %5u %s: already bound\n",
  622. task->tk_pid, __func__);
  623. goto bailout_nofree;
  624. }
  625. /* Parent transport's destination address */
  626. salen = rpc_peeraddr(clnt, sap, sizeof(addr));
  627. /* Don't ever use rpcbind v2 for AF_INET6 requests */
  628. switch (sap->sa_family) {
  629. case AF_INET:
  630. proc = rpcb_next_version[xprt->bind_index].rpc_proc;
  631. bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
  632. break;
  633. case AF_INET6:
  634. proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
  635. bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
  636. break;
  637. default:
  638. status = -EAFNOSUPPORT;
  639. dprintk("RPC: %5u %s: bad address family\n",
  640. task->tk_pid, __func__);
  641. goto bailout_nofree;
  642. }
  643. if (proc == NULL) {
  644. xprt->bind_index = 0;
  645. status = -EPFNOSUPPORT;
  646. dprintk("RPC: %5u %s: no more getport versions available\n",
  647. task->tk_pid, __func__);
  648. goto bailout_nofree;
  649. }
  650. dprintk("RPC: %5u %s: trying rpcbind version %u\n",
  651. task->tk_pid, __func__, bind_version);
  652. rpcb_clnt = rpcb_create(xprt->xprt_net,
  653. clnt->cl_nodename,
  654. xprt->servername, sap, salen,
  655. xprt->prot, bind_version);
  656. if (IS_ERR(rpcb_clnt)) {
  657. status = PTR_ERR(rpcb_clnt);
  658. dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
  659. task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
  660. goto bailout_nofree;
  661. }
  662. map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
  663. if (!map) {
  664. status = -ENOMEM;
  665. dprintk("RPC: %5u %s: no memory available\n",
  666. task->tk_pid, __func__);
  667. goto bailout_release_client;
  668. }
  669. map->r_prog = clnt->cl_prog;
  670. map->r_vers = clnt->cl_vers;
  671. map->r_prot = xprt->prot;
  672. map->r_port = 0;
  673. map->r_xprt = xprt;
  674. map->r_status = -EIO;
  675. switch (bind_version) {
  676. case RPCBVERS_4:
  677. case RPCBVERS_3:
  678. map->r_netid = xprt->address_strings[RPC_DISPLAY_NETID];
  679. map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
  680. if (!map->r_addr) {
  681. status = -ENOMEM;
  682. dprintk("RPC: %5u %s: no memory available\n",
  683. task->tk_pid, __func__);
  684. goto bailout_free_args;
  685. }
  686. map->r_owner = "";
  687. break;
  688. case RPCBVERS_2:
  689. map->r_addr = NULL;
  690. break;
  691. default:
  692. BUG();
  693. }
  694. child = rpcb_call_async(rpcb_clnt, map, proc);
  695. rpc_release_client(rpcb_clnt);
  696. if (IS_ERR(child)) {
  697. /* rpcb_map_release() has freed the arguments */
  698. dprintk("RPC: %5u %s: rpc_run_task failed\n",
  699. task->tk_pid, __func__);
  700. return;
  701. }
  702. xprt->stat.bind_count++;
  703. rpc_put_task(child);
  704. return;
  705. bailout_free_args:
  706. kfree(map);
  707. bailout_release_client:
  708. rpc_release_client(rpcb_clnt);
  709. bailout_nofree:
  710. rpcb_wake_rpcbind_waiters(xprt, status);
  711. task->tk_status = status;
  712. xprt_put(xprt);
  713. }
  714. EXPORT_SYMBOL_GPL(rpcb_getport_async);
  715. /*
  716. * Rpcbind child task calls this callback via tk_exit.
  717. */
  718. static void rpcb_getport_done(struct rpc_task *child, void *data)
  719. {
  720. struct rpcbind_args *map = data;
  721. struct rpc_xprt *xprt = map->r_xprt;
  722. int status = child->tk_status;
  723. /* Garbage reply: retry with a lesser rpcbind version */
  724. if (status == -EIO)
  725. status = -EPROTONOSUPPORT;
  726. /* rpcbind server doesn't support this rpcbind protocol version */
  727. if (status == -EPROTONOSUPPORT)
  728. xprt->bind_index++;
  729. if (status < 0) {
  730. /* rpcbind server not available on remote host? */
  731. xprt->ops->set_port(xprt, 0);
  732. } else if (map->r_port == 0) {
  733. /* Requested RPC service wasn't registered on remote host */
  734. xprt->ops->set_port(xprt, 0);
  735. status = -EACCES;
  736. } else {
  737. /* Succeeded */
  738. xprt->ops->set_port(xprt, map->r_port);
  739. xprt_set_bound(xprt);
  740. status = 0;
  741. }
  742. dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
  743. child->tk_pid, status, map->r_port);
  744. map->r_status = status;
  745. }
  746. /*
  747. * XDR functions for rpcbind
  748. */
  749. static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
  750. const struct rpcbind_args *rpcb)
  751. {
  752. __be32 *p;
  753. dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
  754. req->rq_task->tk_pid,
  755. req->rq_task->tk_msg.rpc_proc->p_name,
  756. rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
  757. p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
  758. *p++ = cpu_to_be32(rpcb->r_prog);
  759. *p++ = cpu_to_be32(rpcb->r_vers);
  760. *p++ = cpu_to_be32(rpcb->r_prot);
  761. *p = cpu_to_be32(rpcb->r_port);
  762. }
  763. static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
  764. struct rpcbind_args *rpcb)
  765. {
  766. unsigned long port;
  767. __be32 *p;
  768. rpcb->r_port = 0;
  769. p = xdr_inline_decode(xdr, 4);
  770. if (unlikely(p == NULL))
  771. return -EIO;
  772. port = be32_to_cpup(p);
  773. dprintk("RPC: %5u PMAP_%s result: %lu\n", req->rq_task->tk_pid,
  774. req->rq_task->tk_msg.rpc_proc->p_name, port);
  775. if (unlikely(port > USHRT_MAX))
  776. return -EIO;
  777. rpcb->r_port = port;
  778. return 0;
  779. }
  780. static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
  781. unsigned int *boolp)
  782. {
  783. __be32 *p;
  784. p = xdr_inline_decode(xdr, 4);
  785. if (unlikely(p == NULL))
  786. return -EIO;
  787. *boolp = 0;
  788. if (*p != xdr_zero)
  789. *boolp = 1;
  790. dprintk("RPC: %5u RPCB_%s call %s\n",
  791. req->rq_task->tk_pid,
  792. req->rq_task->tk_msg.rpc_proc->p_name,
  793. (*boolp ? "succeeded" : "failed"));
  794. return 0;
  795. }
  796. static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
  797. const u32 maxstrlen)
  798. {
  799. __be32 *p;
  800. u32 len;
  801. len = strlen(string);
  802. WARN_ON_ONCE(len > maxstrlen);
  803. if (len > maxstrlen)
  804. /* truncate and hope for the best */
  805. len = maxstrlen;
  806. p = xdr_reserve_space(xdr, 4 + len);
  807. xdr_encode_opaque(p, string, len);
  808. }
  809. static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
  810. const struct rpcbind_args *rpcb)
  811. {
  812. __be32 *p;
  813. dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
  814. req->rq_task->tk_pid,
  815. req->rq_task->tk_msg.rpc_proc->p_name,
  816. rpcb->r_prog, rpcb->r_vers,
  817. rpcb->r_netid, rpcb->r_addr);
  818. p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
  819. *p++ = cpu_to_be32(rpcb->r_prog);
  820. *p = cpu_to_be32(rpcb->r_vers);
  821. encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
  822. encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
  823. encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
  824. }
  825. static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
  826. struct rpcbind_args *rpcb)
  827. {
  828. struct sockaddr_storage address;
  829. struct sockaddr *sap = (struct sockaddr *)&address;
  830. __be32 *p;
  831. u32 len;
  832. rpcb->r_port = 0;
  833. p = xdr_inline_decode(xdr, 4);
  834. if (unlikely(p == NULL))
  835. goto out_fail;
  836. len = be32_to_cpup(p);
  837. /*
  838. * If the returned universal address is a null string,
  839. * the requested RPC service was not registered.
  840. */
  841. if (len == 0) {
  842. dprintk("RPC: %5u RPCB reply: program not registered\n",
  843. req->rq_task->tk_pid);
  844. return 0;
  845. }
  846. if (unlikely(len > RPCBIND_MAXUADDRLEN))
  847. goto out_fail;
  848. p = xdr_inline_decode(xdr, len);
  849. if (unlikely(p == NULL))
  850. goto out_fail;
  851. dprintk("RPC: %5u RPCB_%s reply: %s\n", req->rq_task->tk_pid,
  852. req->rq_task->tk_msg.rpc_proc->p_name, (char *)p);
  853. if (rpc_uaddr2sockaddr(req->rq_xprt->xprt_net, (char *)p, len,
  854. sap, sizeof(address)) == 0)
  855. goto out_fail;
  856. rpcb->r_port = rpc_get_port(sap);
  857. return 0;
  858. out_fail:
  859. dprintk("RPC: %5u malformed RPCB_%s reply\n",
  860. req->rq_task->tk_pid,
  861. req->rq_task->tk_msg.rpc_proc->p_name);
  862. return -EIO;
  863. }
  864. /*
  865. * Not all rpcbind procedures described in RFC 1833 are implemented
  866. * since the Linux kernel RPC code requires only these.
  867. */
  868. static struct rpc_procinfo rpcb_procedures2[] = {
  869. [RPCBPROC_SET] = {
  870. .p_proc = RPCBPROC_SET,
  871. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  872. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  873. .p_arglen = RPCB_mappingargs_sz,
  874. .p_replen = RPCB_setres_sz,
  875. .p_statidx = RPCBPROC_SET,
  876. .p_timer = 0,
  877. .p_name = "SET",
  878. },
  879. [RPCBPROC_UNSET] = {
  880. .p_proc = RPCBPROC_UNSET,
  881. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  882. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  883. .p_arglen = RPCB_mappingargs_sz,
  884. .p_replen = RPCB_setres_sz,
  885. .p_statidx = RPCBPROC_UNSET,
  886. .p_timer = 0,
  887. .p_name = "UNSET",
  888. },
  889. [RPCBPROC_GETPORT] = {
  890. .p_proc = RPCBPROC_GETPORT,
  891. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  892. .p_decode = (kxdrdproc_t)rpcb_dec_getport,
  893. .p_arglen = RPCB_mappingargs_sz,
  894. .p_replen = RPCB_getportres_sz,
  895. .p_statidx = RPCBPROC_GETPORT,
  896. .p_timer = 0,
  897. .p_name = "GETPORT",
  898. },
  899. };
  900. static struct rpc_procinfo rpcb_procedures3[] = {
  901. [RPCBPROC_SET] = {
  902. .p_proc = RPCBPROC_SET,
  903. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  904. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  905. .p_arglen = RPCB_getaddrargs_sz,
  906. .p_replen = RPCB_setres_sz,
  907. .p_statidx = RPCBPROC_SET,
  908. .p_timer = 0,
  909. .p_name = "SET",
  910. },
  911. [RPCBPROC_UNSET] = {
  912. .p_proc = RPCBPROC_UNSET,
  913. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  914. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  915. .p_arglen = RPCB_getaddrargs_sz,
  916. .p_replen = RPCB_setres_sz,
  917. .p_statidx = RPCBPROC_UNSET,
  918. .p_timer = 0,
  919. .p_name = "UNSET",
  920. },
  921. [RPCBPROC_GETADDR] = {
  922. .p_proc = RPCBPROC_GETADDR,
  923. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  924. .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
  925. .p_arglen = RPCB_getaddrargs_sz,
  926. .p_replen = RPCB_getaddrres_sz,
  927. .p_statidx = RPCBPROC_GETADDR,
  928. .p_timer = 0,
  929. .p_name = "GETADDR",
  930. },
  931. };
  932. static struct rpc_procinfo rpcb_procedures4[] = {
  933. [RPCBPROC_SET] = {
  934. .p_proc = RPCBPROC_SET,
  935. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  936. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  937. .p_arglen = RPCB_getaddrargs_sz,
  938. .p_replen = RPCB_setres_sz,
  939. .p_statidx = RPCBPROC_SET,
  940. .p_timer = 0,
  941. .p_name = "SET",
  942. },
  943. [RPCBPROC_UNSET] = {
  944. .p_proc = RPCBPROC_UNSET,
  945. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  946. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  947. .p_arglen = RPCB_getaddrargs_sz,
  948. .p_replen = RPCB_setres_sz,
  949. .p_statidx = RPCBPROC_UNSET,
  950. .p_timer = 0,
  951. .p_name = "UNSET",
  952. },
  953. [RPCBPROC_GETADDR] = {
  954. .p_proc = RPCBPROC_GETADDR,
  955. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  956. .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
  957. .p_arglen = RPCB_getaddrargs_sz,
  958. .p_replen = RPCB_getaddrres_sz,
  959. .p_statidx = RPCBPROC_GETADDR,
  960. .p_timer = 0,
  961. .p_name = "GETADDR",
  962. },
  963. };
  964. static const struct rpcb_info rpcb_next_version[] = {
  965. {
  966. .rpc_vers = RPCBVERS_2,
  967. .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
  968. },
  969. {
  970. .rpc_proc = NULL,
  971. },
  972. };
  973. static const struct rpcb_info rpcb_next_version6[] = {
  974. {
  975. .rpc_vers = RPCBVERS_4,
  976. .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
  977. },
  978. {
  979. .rpc_vers = RPCBVERS_3,
  980. .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
  981. },
  982. {
  983. .rpc_proc = NULL,
  984. },
  985. };
  986. static const struct rpc_version rpcb_version2 = {
  987. .number = RPCBVERS_2,
  988. .nrprocs = ARRAY_SIZE(rpcb_procedures2),
  989. .procs = rpcb_procedures2
  990. };
  991. static const struct rpc_version rpcb_version3 = {
  992. .number = RPCBVERS_3,
  993. .nrprocs = ARRAY_SIZE(rpcb_procedures3),
  994. .procs = rpcb_procedures3
  995. };
  996. static const struct rpc_version rpcb_version4 = {
  997. .number = RPCBVERS_4,
  998. .nrprocs = ARRAY_SIZE(rpcb_procedures4),
  999. .procs = rpcb_procedures4
  1000. };
  1001. static const struct rpc_version *rpcb_version[] = {
  1002. NULL,
  1003. NULL,
  1004. &rpcb_version2,
  1005. &rpcb_version3,
  1006. &rpcb_version4
  1007. };
  1008. static struct rpc_stat rpcb_stats;
  1009. static const struct rpc_program rpcb_program = {
  1010. .name = "rpcbind",
  1011. .number = RPCBIND_PROGRAM,
  1012. .nrvers = ARRAY_SIZE(rpcb_version),
  1013. .version = rpcb_version,
  1014. .stats = &rpcb_stats,
  1015. };