rpcb_clnt.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157
  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 <[email protected]>
  9. * Updated: Chuck Lever, Oracle Corporation, 2007 <[email protected]>
  10. *
  11. * Descended from net/sunrpc/pmap_clnt.c,
  12. * Copyright (C) 1996, Olaf Kirch <[email protected]>
  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_switch *xps = rcu_access_pointer(clnt->cl_xpi.xpi_xpswitch);
  570. while (parent != clnt) {
  571. if (rcu_access_pointer(parent->cl_xpi.xpi_xpswitch) != xps)
  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. clnt = rpcb_find_transport_owner(task->tk_client);
  602. rcu_read_unlock();
  603. xprt = xprt_get(task->tk_xprt);
  604. dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
  605. task->tk_pid, __func__,
  606. xprt->servername, clnt->cl_prog, clnt->cl_vers, xprt->prot);
  607. /* Put self on the wait queue to ensure we get notified if
  608. * some other task is already attempting to bind the port */
  609. rpc_sleep_on(&xprt->binding, task, NULL);
  610. if (xprt_test_and_set_binding(xprt)) {
  611. dprintk("RPC: %5u %s: waiting for another binder\n",
  612. task->tk_pid, __func__);
  613. xprt_put(xprt);
  614. return;
  615. }
  616. /* Someone else may have bound if we slept */
  617. if (xprt_bound(xprt)) {
  618. status = 0;
  619. dprintk("RPC: %5u %s: already bound\n",
  620. task->tk_pid, __func__);
  621. goto bailout_nofree;
  622. }
  623. /* Parent transport's destination address */
  624. salen = rpc_peeraddr(clnt, sap, sizeof(addr));
  625. /* Don't ever use rpcbind v2 for AF_INET6 requests */
  626. switch (sap->sa_family) {
  627. case AF_INET:
  628. proc = rpcb_next_version[xprt->bind_index].rpc_proc;
  629. bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
  630. break;
  631. case AF_INET6:
  632. proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
  633. bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
  634. break;
  635. default:
  636. status = -EAFNOSUPPORT;
  637. dprintk("RPC: %5u %s: bad address family\n",
  638. task->tk_pid, __func__);
  639. goto bailout_nofree;
  640. }
  641. if (proc == NULL) {
  642. xprt->bind_index = 0;
  643. status = -EPFNOSUPPORT;
  644. dprintk("RPC: %5u %s: no more getport versions available\n",
  645. task->tk_pid, __func__);
  646. goto bailout_nofree;
  647. }
  648. dprintk("RPC: %5u %s: trying rpcbind version %u\n",
  649. task->tk_pid, __func__, bind_version);
  650. rpcb_clnt = rpcb_create(xprt->xprt_net,
  651. clnt->cl_nodename,
  652. xprt->servername, sap, salen,
  653. xprt->prot, bind_version);
  654. if (IS_ERR(rpcb_clnt)) {
  655. status = PTR_ERR(rpcb_clnt);
  656. dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
  657. task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
  658. goto bailout_nofree;
  659. }
  660. map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
  661. if (!map) {
  662. status = -ENOMEM;
  663. dprintk("RPC: %5u %s: no memory available\n",
  664. task->tk_pid, __func__);
  665. goto bailout_release_client;
  666. }
  667. map->r_prog = clnt->cl_prog;
  668. map->r_vers = clnt->cl_vers;
  669. map->r_prot = xprt->prot;
  670. map->r_port = 0;
  671. map->r_xprt = xprt;
  672. map->r_status = -EIO;
  673. switch (bind_version) {
  674. case RPCBVERS_4:
  675. case RPCBVERS_3:
  676. map->r_netid = xprt->address_strings[RPC_DISPLAY_NETID];
  677. map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
  678. if (!map->r_addr) {
  679. status = -ENOMEM;
  680. dprintk("RPC: %5u %s: no memory available\n",
  681. task->tk_pid, __func__);
  682. goto bailout_free_args;
  683. }
  684. map->r_owner = "";
  685. break;
  686. case RPCBVERS_2:
  687. map->r_addr = NULL;
  688. break;
  689. default:
  690. BUG();
  691. }
  692. child = rpcb_call_async(rpcb_clnt, map, proc);
  693. rpc_release_client(rpcb_clnt);
  694. if (IS_ERR(child)) {
  695. /* rpcb_map_release() has freed the arguments */
  696. dprintk("RPC: %5u %s: rpc_run_task failed\n",
  697. task->tk_pid, __func__);
  698. return;
  699. }
  700. xprt->stat.bind_count++;
  701. rpc_put_task(child);
  702. return;
  703. bailout_free_args:
  704. kfree(map);
  705. bailout_release_client:
  706. rpc_release_client(rpcb_clnt);
  707. bailout_nofree:
  708. rpcb_wake_rpcbind_waiters(xprt, status);
  709. task->tk_status = status;
  710. xprt_put(xprt);
  711. }
  712. EXPORT_SYMBOL_GPL(rpcb_getport_async);
  713. /*
  714. * Rpcbind child task calls this callback via tk_exit.
  715. */
  716. static void rpcb_getport_done(struct rpc_task *child, void *data)
  717. {
  718. struct rpcbind_args *map = data;
  719. struct rpc_xprt *xprt = map->r_xprt;
  720. int status = child->tk_status;
  721. /* Garbage reply: retry with a lesser rpcbind version */
  722. if (status == -EIO)
  723. status = -EPROTONOSUPPORT;
  724. /* rpcbind server doesn't support this rpcbind protocol version */
  725. if (status == -EPROTONOSUPPORT)
  726. xprt->bind_index++;
  727. if (status < 0) {
  728. /* rpcbind server not available on remote host? */
  729. xprt->ops->set_port(xprt, 0);
  730. } else if (map->r_port == 0) {
  731. /* Requested RPC service wasn't registered on remote host */
  732. xprt->ops->set_port(xprt, 0);
  733. status = -EACCES;
  734. } else {
  735. /* Succeeded */
  736. xprt->ops->set_port(xprt, map->r_port);
  737. xprt_set_bound(xprt);
  738. status = 0;
  739. }
  740. dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
  741. child->tk_pid, status, map->r_port);
  742. map->r_status = status;
  743. }
  744. /*
  745. * XDR functions for rpcbind
  746. */
  747. static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
  748. const struct rpcbind_args *rpcb)
  749. {
  750. __be32 *p;
  751. dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
  752. req->rq_task->tk_pid,
  753. req->rq_task->tk_msg.rpc_proc->p_name,
  754. rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
  755. p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
  756. *p++ = cpu_to_be32(rpcb->r_prog);
  757. *p++ = cpu_to_be32(rpcb->r_vers);
  758. *p++ = cpu_to_be32(rpcb->r_prot);
  759. *p = cpu_to_be32(rpcb->r_port);
  760. }
  761. static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
  762. struct rpcbind_args *rpcb)
  763. {
  764. unsigned long port;
  765. __be32 *p;
  766. rpcb->r_port = 0;
  767. p = xdr_inline_decode(xdr, 4);
  768. if (unlikely(p == NULL))
  769. return -EIO;
  770. port = be32_to_cpup(p);
  771. dprintk("RPC: %5u PMAP_%s result: %lu\n", req->rq_task->tk_pid,
  772. req->rq_task->tk_msg.rpc_proc->p_name, port);
  773. if (unlikely(port > USHRT_MAX))
  774. return -EIO;
  775. rpcb->r_port = port;
  776. return 0;
  777. }
  778. static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
  779. unsigned int *boolp)
  780. {
  781. __be32 *p;
  782. p = xdr_inline_decode(xdr, 4);
  783. if (unlikely(p == NULL))
  784. return -EIO;
  785. *boolp = 0;
  786. if (*p != xdr_zero)
  787. *boolp = 1;
  788. dprintk("RPC: %5u RPCB_%s call %s\n",
  789. req->rq_task->tk_pid,
  790. req->rq_task->tk_msg.rpc_proc->p_name,
  791. (*boolp ? "succeeded" : "failed"));
  792. return 0;
  793. }
  794. static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
  795. const u32 maxstrlen)
  796. {
  797. __be32 *p;
  798. u32 len;
  799. len = strlen(string);
  800. WARN_ON_ONCE(len > maxstrlen);
  801. if (len > maxstrlen)
  802. /* truncate and hope for the best */
  803. len = maxstrlen;
  804. p = xdr_reserve_space(xdr, 4 + len);
  805. xdr_encode_opaque(p, string, len);
  806. }
  807. static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
  808. const struct rpcbind_args *rpcb)
  809. {
  810. __be32 *p;
  811. dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
  812. req->rq_task->tk_pid,
  813. req->rq_task->tk_msg.rpc_proc->p_name,
  814. rpcb->r_prog, rpcb->r_vers,
  815. rpcb->r_netid, rpcb->r_addr);
  816. p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
  817. *p++ = cpu_to_be32(rpcb->r_prog);
  818. *p = cpu_to_be32(rpcb->r_vers);
  819. encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
  820. encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
  821. encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
  822. }
  823. static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
  824. struct rpcbind_args *rpcb)
  825. {
  826. struct sockaddr_storage address;
  827. struct sockaddr *sap = (struct sockaddr *)&address;
  828. __be32 *p;
  829. u32 len;
  830. rpcb->r_port = 0;
  831. p = xdr_inline_decode(xdr, 4);
  832. if (unlikely(p == NULL))
  833. goto out_fail;
  834. len = be32_to_cpup(p);
  835. /*
  836. * If the returned universal address is a null string,
  837. * the requested RPC service was not registered.
  838. */
  839. if (len == 0) {
  840. dprintk("RPC: %5u RPCB reply: program not registered\n",
  841. req->rq_task->tk_pid);
  842. return 0;
  843. }
  844. if (unlikely(len > RPCBIND_MAXUADDRLEN))
  845. goto out_fail;
  846. p = xdr_inline_decode(xdr, len);
  847. if (unlikely(p == NULL))
  848. goto out_fail;
  849. dprintk("RPC: %5u RPCB_%s reply: %s\n", req->rq_task->tk_pid,
  850. req->rq_task->tk_msg.rpc_proc->p_name, (char *)p);
  851. if (rpc_uaddr2sockaddr(req->rq_xprt->xprt_net, (char *)p, len,
  852. sap, sizeof(address)) == 0)
  853. goto out_fail;
  854. rpcb->r_port = rpc_get_port(sap);
  855. return 0;
  856. out_fail:
  857. dprintk("RPC: %5u malformed RPCB_%s reply\n",
  858. req->rq_task->tk_pid,
  859. req->rq_task->tk_msg.rpc_proc->p_name);
  860. return -EIO;
  861. }
  862. /*
  863. * Not all rpcbind procedures described in RFC 1833 are implemented
  864. * since the Linux kernel RPC code requires only these.
  865. */
  866. static struct rpc_procinfo rpcb_procedures2[] = {
  867. [RPCBPROC_SET] = {
  868. .p_proc = RPCBPROC_SET,
  869. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  870. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  871. .p_arglen = RPCB_mappingargs_sz,
  872. .p_replen = RPCB_setres_sz,
  873. .p_statidx = RPCBPROC_SET,
  874. .p_timer = 0,
  875. .p_name = "SET",
  876. },
  877. [RPCBPROC_UNSET] = {
  878. .p_proc = RPCBPROC_UNSET,
  879. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  880. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  881. .p_arglen = RPCB_mappingargs_sz,
  882. .p_replen = RPCB_setres_sz,
  883. .p_statidx = RPCBPROC_UNSET,
  884. .p_timer = 0,
  885. .p_name = "UNSET",
  886. },
  887. [RPCBPROC_GETPORT] = {
  888. .p_proc = RPCBPROC_GETPORT,
  889. .p_encode = (kxdreproc_t)rpcb_enc_mapping,
  890. .p_decode = (kxdrdproc_t)rpcb_dec_getport,
  891. .p_arglen = RPCB_mappingargs_sz,
  892. .p_replen = RPCB_getportres_sz,
  893. .p_statidx = RPCBPROC_GETPORT,
  894. .p_timer = 0,
  895. .p_name = "GETPORT",
  896. },
  897. };
  898. static struct rpc_procinfo rpcb_procedures3[] = {
  899. [RPCBPROC_SET] = {
  900. .p_proc = RPCBPROC_SET,
  901. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  902. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  903. .p_arglen = RPCB_getaddrargs_sz,
  904. .p_replen = RPCB_setres_sz,
  905. .p_statidx = RPCBPROC_SET,
  906. .p_timer = 0,
  907. .p_name = "SET",
  908. },
  909. [RPCBPROC_UNSET] = {
  910. .p_proc = RPCBPROC_UNSET,
  911. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  912. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  913. .p_arglen = RPCB_getaddrargs_sz,
  914. .p_replen = RPCB_setres_sz,
  915. .p_statidx = RPCBPROC_UNSET,
  916. .p_timer = 0,
  917. .p_name = "UNSET",
  918. },
  919. [RPCBPROC_GETADDR] = {
  920. .p_proc = RPCBPROC_GETADDR,
  921. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  922. .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
  923. .p_arglen = RPCB_getaddrargs_sz,
  924. .p_replen = RPCB_getaddrres_sz,
  925. .p_statidx = RPCBPROC_GETADDR,
  926. .p_timer = 0,
  927. .p_name = "GETADDR",
  928. },
  929. };
  930. static struct rpc_procinfo rpcb_procedures4[] = {
  931. [RPCBPROC_SET] = {
  932. .p_proc = RPCBPROC_SET,
  933. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  934. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  935. .p_arglen = RPCB_getaddrargs_sz,
  936. .p_replen = RPCB_setres_sz,
  937. .p_statidx = RPCBPROC_SET,
  938. .p_timer = 0,
  939. .p_name = "SET",
  940. },
  941. [RPCBPROC_UNSET] = {
  942. .p_proc = RPCBPROC_UNSET,
  943. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  944. .p_decode = (kxdrdproc_t)rpcb_dec_set,
  945. .p_arglen = RPCB_getaddrargs_sz,
  946. .p_replen = RPCB_setres_sz,
  947. .p_statidx = RPCBPROC_UNSET,
  948. .p_timer = 0,
  949. .p_name = "UNSET",
  950. },
  951. [RPCBPROC_GETADDR] = {
  952. .p_proc = RPCBPROC_GETADDR,
  953. .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
  954. .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
  955. .p_arglen = RPCB_getaddrargs_sz,
  956. .p_replen = RPCB_getaddrres_sz,
  957. .p_statidx = RPCBPROC_GETADDR,
  958. .p_timer = 0,
  959. .p_name = "GETADDR",
  960. },
  961. };
  962. static const struct rpcb_info rpcb_next_version[] = {
  963. {
  964. .rpc_vers = RPCBVERS_2,
  965. .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
  966. },
  967. {
  968. .rpc_proc = NULL,
  969. },
  970. };
  971. static const struct rpcb_info rpcb_next_version6[] = {
  972. {
  973. .rpc_vers = RPCBVERS_4,
  974. .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
  975. },
  976. {
  977. .rpc_vers = RPCBVERS_3,
  978. .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
  979. },
  980. {
  981. .rpc_proc = NULL,
  982. },
  983. };
  984. static const struct rpc_version rpcb_version2 = {
  985. .number = RPCBVERS_2,
  986. .nrprocs = ARRAY_SIZE(rpcb_procedures2),
  987. .procs = rpcb_procedures2
  988. };
  989. static const struct rpc_version rpcb_version3 = {
  990. .number = RPCBVERS_3,
  991. .nrprocs = ARRAY_SIZE(rpcb_procedures3),
  992. .procs = rpcb_procedures3
  993. };
  994. static const struct rpc_version rpcb_version4 = {
  995. .number = RPCBVERS_4,
  996. .nrprocs = ARRAY_SIZE(rpcb_procedures4),
  997. .procs = rpcb_procedures4
  998. };
  999. static const struct rpc_version *rpcb_version[] = {
  1000. NULL,
  1001. NULL,
  1002. &rpcb_version2,
  1003. &rpcb_version3,
  1004. &rpcb_version4
  1005. };
  1006. static struct rpc_stat rpcb_stats;
  1007. static const struct rpc_program rpcb_program = {
  1008. .name = "rpcbind",
  1009. .number = RPCBIND_PROGRAM,
  1010. .nrvers = ARRAY_SIZE(rpcb_version),
  1011. .version = rpcb_version,
  1012. .stats = &rpcb_stats,
  1013. };