blob: 78af56579fa1c047fa1bb149117e79e9baaab1dc [file] [log] [blame]
Chuck Levera5090502007-03-29 16:48:04 -04001/*
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
Chuck Levercce63cd2007-07-01 12:13:12 -040015#include <linux/module.h>
16
Chuck Levera5090502007-03-29 16:48:04 -040017#include <linux/types.h>
18#include <linux/socket.h>
Chuck Lever7402ab192011-05-09 15:22:55 -040019#include <linux/un.h>
Chuck Leverd5b64432007-08-06 11:57:18 -040020#include <linux/in.h>
21#include <linux/in6.h>
Chuck Levera5090502007-03-29 16:48:04 -040022#include <linux/kernel.h>
23#include <linux/errno.h>
Chuck Leverc5266112009-12-03 15:58:56 -050024#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Chuck Lever9d548b92008-09-15 16:27:30 -050026#include <net/ipv6.h>
Chuck Levera5090502007-03-29 16:48:04 -040027
28#include <linux/sunrpc/clnt.h>
29#include <linux/sunrpc/sched.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040030#include <linux/sunrpc/xprtsock.h>
Chuck Levera5090502007-03-29 16:48:04 -040031
32#ifdef RPC_DEBUG
33# define RPCDBG_FACILITY RPCDBG_BIND
34#endif
35
Chuck Lever7402ab192011-05-09 15:22:55 -040036#define RPCBIND_SOCK_PATHNAME "/var/run/rpcbind.sock"
37
Chuck Levera5090502007-03-29 16:48:04 -040038#define RPCBIND_PROGRAM (100000u)
39#define RPCBIND_PORT (111u)
40
Chuck Leverfc200e72008-06-25 17:24:31 -040041#define RPCBVERS_2 (2u)
42#define RPCBVERS_3 (3u)
43#define RPCBVERS_4 (4u)
44
Chuck Levera5090502007-03-29 16:48:04 -040045enum {
46 RPCBPROC_NULL,
47 RPCBPROC_SET,
48 RPCBPROC_UNSET,
49 RPCBPROC_GETPORT,
50 RPCBPROC_GETADDR = 3, /* alias for GETPORT */
51 RPCBPROC_DUMP,
52 RPCBPROC_CALLIT,
53 RPCBPROC_BCAST = 5, /* alias for CALLIT */
54 RPCBPROC_GETTIME,
55 RPCBPROC_UADDR2TADDR,
56 RPCBPROC_TADDR2UADDR,
57 RPCBPROC_GETVERSADDR,
58 RPCBPROC_INDIRECT,
59 RPCBPROC_GETADDRLIST,
60 RPCBPROC_GETSTAT,
61};
62
Chuck Levera5090502007-03-29 16:48:04 -040063/*
Chuck Levera5090502007-03-29 16:48:04 -040064 * r_owner
65 *
66 * The "owner" is allowed to unset a service in the rpcbind database.
Chuck Lever126e4bc2009-03-18 20:47:14 -040067 *
68 * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
69 * UID which it maps to a local user name via a password lookup.
70 * In all other cases it is ignored.
71 *
72 * For SET/UNSET requests, user space provides a value, even for
73 * network requests, and GETADDR uses an empty string. We follow
74 * those precedents here.
Chuck Levera5090502007-03-29 16:48:04 -040075 */
Chuck Lever126e4bc2009-03-18 20:47:14 -040076#define RPCB_OWNER_STRING "0"
Chuck Levera5090502007-03-29 16:48:04 -040077#define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
78
Chuck Lever0b10bf52009-08-09 15:09:33 -040079/*
80 * XDR data type sizes
81 */
82#define RPCB_program_sz (1)
83#define RPCB_version_sz (1)
84#define RPCB_protocol_sz (1)
85#define RPCB_port_sz (1)
86#define RPCB_boolean_sz (1)
87
88#define RPCB_netid_sz (1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
89#define RPCB_addr_sz (1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
90#define RPCB_ownerstring_sz (1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))
91
92/*
93 * XDR argument and result sizes
94 */
95#define RPCB_mappingargs_sz (RPCB_program_sz + RPCB_version_sz + \
96 RPCB_protocol_sz + RPCB_port_sz)
97#define RPCB_getaddrargs_sz (RPCB_program_sz + RPCB_version_sz + \
98 RPCB_netid_sz + RPCB_addr_sz + \
99 RPCB_ownerstring_sz)
100
101#define RPCB_getportres_sz RPCB_port_sz
102#define RPCB_setres_sz RPCB_boolean_sz
103
104/*
105 * Note that RFC 1833 does not put any size restrictions on the
106 * address string returned by the remote rpcbind database.
107 */
108#define RPCB_getaddrres_sz RPCB_addr_sz
109
Chuck Levera5090502007-03-29 16:48:04 -0400110static void rpcb_getport_done(struct rpc_task *, void *);
Trond Myklebust381ba742008-07-07 12:18:53 -0400111static void rpcb_map_release(void *data);
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200112static struct rpc_program rpcb_program;
Chuck Levera5090502007-03-29 16:48:04 -0400113
Chuck Leverc5266112009-12-03 15:58:56 -0500114static struct rpc_clnt * rpcb_local_clnt;
115static struct rpc_clnt * rpcb_local_clnt4;
116
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300117DEFINE_SPINLOCK(rpcb_clnt_lock);
118unsigned int rpcb_users;
119
Chuck Levera5090502007-03-29 16:48:04 -0400120struct rpcbind_args {
121 struct rpc_xprt * r_xprt;
122
123 u32 r_prog;
124 u32 r_vers;
125 u32 r_prot;
126 unsigned short r_port;
Trond Myklebust86d61d82008-01-07 21:16:56 -0500127 const char * r_netid;
128 const char * r_addr;
129 const char * r_owner;
Trond Myklebust381ba742008-07-07 12:18:53 -0400130
131 int r_status;
Chuck Levera5090502007-03-29 16:48:04 -0400132};
133
134static struct rpc_procinfo rpcb_procedures2[];
135static struct rpc_procinfo rpcb_procedures3[];
Chuck Leverc2e1b092008-07-14 16:03:30 -0400136static struct rpc_procinfo rpcb_procedures4[];
Chuck Levera5090502007-03-29 16:48:04 -0400137
Chuck Leverd5b64432007-08-06 11:57:18 -0400138struct rpcb_info {
Chuck Leverfc200e72008-06-25 17:24:31 -0400139 u32 rpc_vers;
Chuck Levera5090502007-03-29 16:48:04 -0400140 struct rpc_procinfo * rpc_proc;
Chuck Leverd5b64432007-08-06 11:57:18 -0400141};
142
143static struct rpcb_info rpcb_next_version[];
144static struct rpcb_info rpcb_next_version6[];
Chuck Levera5090502007-03-29 16:48:04 -0400145
Chuck Levera5090502007-03-29 16:48:04 -0400146static const struct rpc_call_ops rpcb_getport_ops = {
Chuck Levera5090502007-03-29 16:48:04 -0400147 .rpc_call_done = rpcb_getport_done,
148 .rpc_release = rpcb_map_release,
149};
150
151static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
152{
153 xprt_clear_binding(xprt);
154 rpc_wake_up_status(&xprt->binding, status);
155}
156
Trond Myklebust381ba742008-07-07 12:18:53 -0400157static void rpcb_map_release(void *data)
158{
159 struct rpcbind_args *map = data;
160
161 rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
162 xprt_put(map->r_xprt);
Chuck Leverba809132009-08-09 15:09:35 -0400163 kfree(map->r_addr);
Trond Myklebust381ba742008-07-07 12:18:53 -0400164 kfree(map);
165}
166
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300167static int rpcb_get_local(void)
168{
169 int cnt;
170
171 spin_lock(&rpcb_clnt_lock);
172 if (rpcb_users)
173 rpcb_users++;
174 cnt = rpcb_users;
175 spin_unlock(&rpcb_clnt_lock);
176
177 return cnt;
178}
179
180void rpcb_put_local(void)
181{
182 struct rpc_clnt *clnt = rpcb_local_clnt;
183 struct rpc_clnt *clnt4 = rpcb_local_clnt4;
184 int shutdown;
185
186 spin_lock(&rpcb_clnt_lock);
187 if (--rpcb_users == 0) {
188 rpcb_local_clnt = NULL;
189 rpcb_local_clnt4 = NULL;
190 }
191 shutdown = !rpcb_users;
192 spin_unlock(&rpcb_clnt_lock);
193
194 if (shutdown) {
195 /*
196 * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
197 */
198 if (clnt4)
199 rpc_shutdown_client(clnt4);
200 if (clnt)
201 rpc_shutdown_client(clnt);
202 }
203}
204
205static void rpcb_set_local(struct rpc_clnt *clnt, struct rpc_clnt *clnt4)
206{
207 /* Protected by rpcb_create_local_mutex */
208 rpcb_local_clnt = clnt;
209 rpcb_local_clnt4 = clnt4;
210 smp_wmb();
211 rpcb_users = 1;
212 dprintk("RPC: created new rpcb local clients (rpcb_local_clnt: "
213 "%p, rpcb_local_clnt4: %p)\n", rpcb_local_clnt,
214 rpcb_local_clnt4);
215}
216
Chuck Lever7402ab192011-05-09 15:22:55 -0400217/*
218 * Returns zero on success, otherwise a negative errno value
219 * is returned.
220 */
221static int rpcb_create_local_unix(void)
222{
223 static const struct sockaddr_un rpcb_localaddr_rpcbind = {
224 .sun_family = AF_LOCAL,
225 .sun_path = RPCBIND_SOCK_PATHNAME,
226 };
227 struct rpc_create_args args = {
228 .net = &init_net,
229 .protocol = XPRT_TRANSPORT_LOCAL,
230 .address = (struct sockaddr *)&rpcb_localaddr_rpcbind,
231 .addrsize = sizeof(rpcb_localaddr_rpcbind),
232 .servername = "localhost",
233 .program = &rpcb_program,
234 .version = RPCBVERS_2,
235 .authflavor = RPC_AUTH_NULL,
236 };
237 struct rpc_clnt *clnt, *clnt4;
238 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400239
Chuck Lever7402ab192011-05-09 15:22:55 -0400240 /*
241 * Because we requested an RPC PING at transport creation time,
242 * this works only if the user space portmapper is rpcbind, and
243 * it's listening on AF_LOCAL on the named socket.
244 */
245 clnt = rpc_create(&args);
246 if (IS_ERR(clnt)) {
247 dprintk("RPC: failed to create AF_LOCAL rpcbind "
248 "client (errno %ld).\n", PTR_ERR(clnt));
249 result = -PTR_ERR(clnt);
250 goto out;
251 }
252
253 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
254 if (IS_ERR(clnt4)) {
255 dprintk("RPC: failed to bind second program to "
256 "rpcbind v4 client (errno %ld).\n",
257 PTR_ERR(clnt4));
258 clnt4 = NULL;
259 }
260
261 /* Protected by rpcb_create_local_mutex */
262 rpcb_local_clnt = clnt;
263 rpcb_local_clnt4 = clnt4;
264
265out:
266 return result;
267}
Chuck Leverc5266112009-12-03 15:58:56 -0500268
269/*
270 * Returns zero on success, otherwise a negative errno value
271 * is returned.
272 */
Chuck Lever7402ab192011-05-09 15:22:55 -0400273static int rpcb_create_local_net(void)
Chuck Levercc5598b2008-07-14 16:03:27 -0400274{
Chuck Lever7402ab192011-05-09 15:22:55 -0400275 static const struct sockaddr_in rpcb_inaddr_loopback = {
276 .sin_family = AF_INET,
277 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
278 .sin_port = htons(RPCBIND_PORT),
279 };
Chuck Levercc5598b2008-07-14 16:03:27 -0400280 struct rpc_create_args args = {
Pavel Emelyanovc653ce32010-09-29 16:04:45 +0400281 .net = &init_net,
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500282 .protocol = XPRT_TRANSPORT_TCP,
Chuck Lever5a462112009-12-03 15:58:56 -0500283 .address = (struct sockaddr *)&rpcb_inaddr_loopback,
284 .addrsize = sizeof(rpcb_inaddr_loopback),
Chuck Levercc5598b2008-07-14 16:03:27 -0400285 .servername = "localhost",
286 .program = &rpcb_program,
Chuck Leverc5266112009-12-03 15:58:56 -0500287 .version = RPCBVERS_2,
Chuck Levercc5598b2008-07-14 16:03:27 -0400288 .authflavor = RPC_AUTH_UNIX,
289 .flags = RPC_CLNT_CREATE_NOPING,
290 };
Chuck Leverc5266112009-12-03 15:58:56 -0500291 struct rpc_clnt *clnt, *clnt4;
292 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400293
Chuck Leverc5266112009-12-03 15:58:56 -0500294 clnt = rpc_create(&args);
295 if (IS_ERR(clnt)) {
296 dprintk("RPC: failed to create local rpcbind "
297 "client (errno %ld).\n", PTR_ERR(clnt));
298 result = -PTR_ERR(clnt);
299 goto out;
300 }
301
302 /*
303 * This results in an RPC ping. On systems running portmapper,
304 * the v4 ping will fail. Proceed anyway, but disallow rpcb
305 * v4 upcalls.
306 */
307 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
308 if (IS_ERR(clnt4)) {
Chuck Lever38359352010-09-21 16:55:48 -0400309 dprintk("RPC: failed to bind second program to "
310 "rpcbind v4 client (errno %ld).\n",
311 PTR_ERR(clnt4));
Chuck Leverc5266112009-12-03 15:58:56 -0500312 clnt4 = NULL;
313 }
314
Chuck Lever7402ab192011-05-09 15:22:55 -0400315 /* Protected by rpcb_create_local_mutex */
Chuck Leverc5266112009-12-03 15:58:56 -0500316 rpcb_local_clnt = clnt;
317 rpcb_local_clnt4 = clnt4;
318
319out:
Chuck Lever7402ab192011-05-09 15:22:55 -0400320 return result;
321}
322
323/*
324 * Returns zero on success, otherwise a negative errno value
325 * is returned.
326 */
327static int rpcb_create_local(void)
328{
329 static DEFINE_MUTEX(rpcb_create_local_mutex);
330 int result = 0;
331
332 if (rpcb_local_clnt)
333 return result;
334
335 mutex_lock(&rpcb_create_local_mutex);
336 if (rpcb_local_clnt)
337 goto out;
338
339 if (rpcb_create_local_unix() != 0)
340 result = rpcb_create_local_net();
341
342out:
Chuck Leverc5266112009-12-03 15:58:56 -0500343 mutex_unlock(&rpcb_create_local_mutex);
344 return result;
Chuck Levercc5598b2008-07-14 16:03:27 -0400345}
346
Chuck Levera5090502007-03-29 16:48:04 -0400347static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
Chuck Lever423d8b02008-07-14 16:03:28 -0400348 size_t salen, int proto, u32 version)
Chuck Levera5090502007-03-29 16:48:04 -0400349{
350 struct rpc_create_args args = {
Pavel Emelyanovc653ce32010-09-29 16:04:45 +0400351 .net = &init_net,
Chuck Levera5090502007-03-29 16:48:04 -0400352 .protocol = proto,
353 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500354 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400355 .servername = hostname,
356 .program = &rpcb_program,
357 .version = version,
358 .authflavor = RPC_AUTH_UNIX,
Chuck Lever423d8b02008-07-14 16:03:28 -0400359 .flags = (RPC_CLNT_CREATE_NOPING |
360 RPC_CLNT_CREATE_NONPRIVPORT),
Chuck Levera5090502007-03-29 16:48:04 -0400361 };
362
Chuck Leverd5b64432007-08-06 11:57:18 -0400363 switch (srvaddr->sa_family) {
364 case AF_INET:
365 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
366 break;
367 case AF_INET6:
368 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
369 break;
370 default:
Pavel Emelyanovc636b572010-10-06 13:45:56 +0400371 return ERR_PTR(-EAFNOSUPPORT);
Chuck Leverd5b64432007-08-06 11:57:18 -0400372 }
373
Chuck Levera5090502007-03-29 16:48:04 -0400374 return rpc_create(&args);
375}
376
Chuck Leverc5266112009-12-03 15:58:56 -0500377static int rpcb_register_call(struct rpc_clnt *clnt, struct rpc_message *msg)
Chuck Leverbabe80e2008-07-14 16:03:29 -0400378{
Chuck Lever14aeb212008-08-18 19:34:00 -0400379 int result, error = 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400380
Chuck Lever14aeb212008-08-18 19:34:00 -0400381 msg->rpc_resp = &result;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400382
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500383 error = rpc_call_sync(clnt, msg, RPC_TASK_SOFTCONN);
Chuck Lever14aeb212008-08-18 19:34:00 -0400384 if (error < 0) {
Chuck Lever363f7242009-03-18 20:47:44 -0400385 dprintk("RPC: failed to contact local rpcbind "
Chuck Leverbabe80e2008-07-14 16:03:29 -0400386 "server (errno %d).\n", -error);
Chuck Lever14aeb212008-08-18 19:34:00 -0400387 return error;
388 }
Chuck Leverbabe80e2008-07-14 16:03:29 -0400389
Chuck Leverdb820d62008-09-25 11:57:05 -0400390 if (!result)
Chuck Lever14aeb212008-08-18 19:34:00 -0400391 return -EACCES;
Chuck Lever14aeb212008-08-18 19:34:00 -0400392 return 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400393}
394
Chuck Levera5090502007-03-29 16:48:04 -0400395/**
396 * rpcb_register - set or unset a port registration with the local rpcbind svc
397 * @prog: RPC program number to bind
398 * @vers: RPC version number to bind
Chuck Leverc2e1b092008-07-14 16:03:30 -0400399 * @prot: transport protocol to register
Chuck Levera5090502007-03-29 16:48:04 -0400400 * @port: port value to register
Chuck Lever14aeb212008-08-18 19:34:00 -0400401 *
402 * Returns zero if the registration request was dispatched successfully
403 * and the rpcbind daemon returned success. Otherwise, returns an errno
404 * value that reflects the nature of the error (request could not be
405 * dispatched, timed out, or rpcbind returned an error).
Chuck Levera5090502007-03-29 16:48:04 -0400406 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400407 * RPC services invoke this function to advertise their contact
408 * information via the system's rpcbind daemon. RPC services
409 * invoke this function once for each [program, version, transport]
410 * tuple they wish to advertise.
Chuck Levera5090502007-03-29 16:48:04 -0400411 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400412 * Callers may also unregister RPC services that are no longer
413 * available by setting the passed-in port to zero. This removes
414 * all registered transports for [program, version] from the local
415 * rpcbind database.
416 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400417 * This function uses rpcbind protocol version 2 to contact the
418 * local rpcbind daemon.
419 *
420 * Registration works over both AF_INET and AF_INET6, and services
421 * registered via this function are advertised as available for any
422 * address. If the local rpcbind daemon is listening on AF_INET6,
423 * services registered via this function will be advertised on
424 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
425 * addresses).
Chuck Levera5090502007-03-29 16:48:04 -0400426 */
Chuck Lever14aeb212008-08-18 19:34:00 -0400427int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port)
Chuck Levera5090502007-03-29 16:48:04 -0400428{
Chuck Levera5090502007-03-29 16:48:04 -0400429 struct rpcbind_args map = {
430 .r_prog = prog,
431 .r_vers = vers,
432 .r_prot = prot,
433 .r_port = port,
434 };
435 struct rpc_message msg = {
Chuck Levera5090502007-03-29 16:48:04 -0400436 .rpc_argp = &map,
Chuck Levera5090502007-03-29 16:48:04 -0400437 };
Chuck Leverc5266112009-12-03 15:58:56 -0500438 int error;
439
440 error = rpcb_create_local();
441 if (error)
442 return error;
Chuck Levera5090502007-03-29 16:48:04 -0400443
444 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
445 "rpcbind\n", (port ? "" : "un"),
446 prog, vers, prot, port);
447
Chuck Leverbabe80e2008-07-14 16:03:29 -0400448 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
449 if (port)
450 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
451
Chuck Leverc5266112009-12-03 15:58:56 -0500452 return rpcb_register_call(rpcb_local_clnt, &msg);
Chuck Levera5090502007-03-29 16:48:04 -0400453}
454
Chuck Leverc2e1b092008-07-14 16:03:30 -0400455/*
456 * Fill in AF_INET family-specific arguments to register
457 */
Chuck Lever1673d0d2009-03-18 20:47:21 -0400458static int rpcb_register_inet4(const struct sockaddr *sap,
459 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400460{
Chuck Lever3aba4552009-03-18 20:47:06 -0400461 const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400462 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400463 unsigned short port = ntohs(sin->sin_port);
Chuck Leverba809132009-08-09 15:09:35 -0400464 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400465
Trond Myklebustd77385f2011-10-17 16:08:10 -0700466 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400467
468 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
469 "local rpcbind\n", (port ? "" : "un"),
470 map->r_prog, map->r_vers,
471 map->r_addr, map->r_netid);
472
473 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
474 if (port)
475 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
476
Chuck Leverc5266112009-12-03 15:58:56 -0500477 result = rpcb_register_call(rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400478 kfree(map->r_addr);
479 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400480}
481
482/*
483 * Fill in AF_INET6 family-specific arguments to register
484 */
Chuck Lever1673d0d2009-03-18 20:47:21 -0400485static int rpcb_register_inet6(const struct sockaddr *sap,
486 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400487{
Chuck Lever3aba4552009-03-18 20:47:06 -0400488 const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400489 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400490 unsigned short port = ntohs(sin6->sin6_port);
Chuck Leverba809132009-08-09 15:09:35 -0400491 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400492
Trond Myklebustd77385f2011-10-17 16:08:10 -0700493 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400494
495 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
496 "local rpcbind\n", (port ? "" : "un"),
497 map->r_prog, map->r_vers,
498 map->r_addr, map->r_netid);
499
500 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
501 if (port)
502 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
503
Chuck Leverc5266112009-12-03 15:58:56 -0500504 result = rpcb_register_call(rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400505 kfree(map->r_addr);
506 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400507}
508
Chuck Lever1673d0d2009-03-18 20:47:21 -0400509static int rpcb_unregister_all_protofamilies(struct rpc_message *msg)
510{
511 struct rpcbind_args *map = msg->rpc_argp;
512
513 dprintk("RPC: unregistering [%u, %u, '%s'] with "
514 "local rpcbind\n",
515 map->r_prog, map->r_vers, map->r_netid);
516
517 map->r_addr = "";
518 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
519
Chuck Leverc5266112009-12-03 15:58:56 -0500520 return rpcb_register_call(rpcb_local_clnt4, msg);
Chuck Lever1673d0d2009-03-18 20:47:21 -0400521}
522
Chuck Leverc2e1b092008-07-14 16:03:30 -0400523/**
524 * rpcb_v4_register - set or unset a port registration with the local rpcbind
525 * @program: RPC program number of service to (un)register
526 * @version: RPC version number of service to (un)register
527 * @address: address family, IP address, and port to (un)register
528 * @netid: netid of transport protocol to (un)register
Chuck Lever14aeb212008-08-18 19:34:00 -0400529 *
530 * Returns zero if the registration request was dispatched successfully
531 * and the rpcbind daemon returned success. Otherwise, returns an errno
532 * value that reflects the nature of the error (request could not be
533 * dispatched, timed out, or rpcbind returned an error).
Chuck Leverc2e1b092008-07-14 16:03:30 -0400534 *
535 * RPC services invoke this function to advertise their contact
536 * information via the system's rpcbind daemon. RPC services
537 * invoke this function once for each [program, version, address,
538 * netid] tuple they wish to advertise.
539 *
Chuck Lever1673d0d2009-03-18 20:47:21 -0400540 * Callers may also unregister RPC services that are registered at a
541 * specific address by setting the port number in @address to zero.
542 * They may unregister all registered protocol families at once for
543 * a service by passing a NULL @address argument. If @netid is ""
544 * then all netids for [program, version, address] are unregistered.
Chuck Leverc2e1b092008-07-14 16:03:30 -0400545 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400546 * This function uses rpcbind protocol version 4 to contact the
547 * local rpcbind daemon. The local rpcbind daemon must support
548 * version 4 of the rpcbind protocol in order for these functions
549 * to register a service successfully.
550 *
551 * Supported netids include "udp" and "tcp" for UDP and TCP over
552 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
553 * respectively.
554 *
555 * The contents of @address determine the address family and the
556 * port to be registered. The usual practice is to pass INADDR_ANY
557 * as the raw address, but specifying a non-zero address is also
558 * supported by this API if the caller wishes to advertise an RPC
559 * service on a specific network interface.
560 *
561 * Note that passing in INADDR_ANY does not create the same service
562 * registration as IN6ADDR_ANY. The former advertises an RPC
563 * service on any IPv4 address, but not on IPv6. The latter
564 * advertises the service on all IPv4 and IPv6 addresses.
565 */
566int rpcb_v4_register(const u32 program, const u32 version,
Chuck Lever14aeb212008-08-18 19:34:00 -0400567 const struct sockaddr *address, const char *netid)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400568{
569 struct rpcbind_args map = {
570 .r_prog = program,
571 .r_vers = version,
572 .r_netid = netid,
573 .r_owner = RPCB_OWNER_STRING,
574 };
575 struct rpc_message msg = {
576 .rpc_argp = &map,
Chuck Leverc2e1b092008-07-14 16:03:30 -0400577 };
Chuck Leverc5266112009-12-03 15:58:56 -0500578 int error;
579
580 error = rpcb_create_local();
581 if (error)
582 return error;
583 if (rpcb_local_clnt4 == NULL)
584 return -EPROTONOSUPPORT;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400585
Chuck Lever1673d0d2009-03-18 20:47:21 -0400586 if (address == NULL)
587 return rpcb_unregister_all_protofamilies(&msg);
588
Chuck Leverc2e1b092008-07-14 16:03:30 -0400589 switch (address->sa_family) {
590 case AF_INET:
Chuck Lever1673d0d2009-03-18 20:47:21 -0400591 return rpcb_register_inet4(address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400592 case AF_INET6:
Chuck Lever1673d0d2009-03-18 20:47:21 -0400593 return rpcb_register_inet6(address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400594 }
595
596 return -EAFNOSUPPORT;
597}
598
Trond Myklebust803a9062008-07-01 15:20:55 -0400599static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
Trond Myklebust5138fde2007-07-14 15:40:01 -0400600{
601 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400602 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400603 .rpc_argp = map,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400604 .rpc_resp = map,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400605 };
606 struct rpc_task_setup task_setup_data = {
607 .rpc_client = rpcb_clnt,
608 .rpc_message = &msg,
609 .callback_ops = &rpcb_getport_ops,
610 .callback_data = map,
Chuck Lever012da152009-12-03 15:58:56 -0500611 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFTCONN,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400612 };
613
614 return rpc_run_task(&task_setup_data);
615}
616
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400617/*
618 * In the case where rpc clients have been cloned, we want to make
619 * sure that we use the program number/version etc of the actual
620 * owner of the xprt. To do so, we walk back up the tree of parents
621 * to find whoever created the transport and/or whoever has the
622 * autobind flag set.
623 */
624static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
625{
626 struct rpc_clnt *parent = clnt->cl_parent;
627
628 while (parent != clnt) {
629 if (parent->cl_xprt != clnt->cl_xprt)
630 break;
631 if (clnt->cl_autobind)
632 break;
633 clnt = parent;
634 parent = parent->cl_parent;
635 }
636 return clnt;
637}
638
Chuck Levera5090502007-03-29 16:48:04 -0400639/**
Chuck Lever45160d62007-07-01 12:13:17 -0400640 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400641 * @task: task that is waiting for portmapper request
642 *
643 * This one can be called for an ongoing RPC request, and can be used in
644 * an async (rpciod) context.
645 */
Chuck Lever45160d62007-07-01 12:13:17 -0400646void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400647{
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400648 struct rpc_clnt *clnt;
Trond Myklebust803a9062008-07-01 15:20:55 -0400649 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500650 u32 bind_version;
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400651 struct rpc_xprt *xprt;
Chuck Levera5090502007-03-29 16:48:04 -0400652 struct rpc_clnt *rpcb_clnt;
Ben Greearec0dd262011-07-12 10:27:55 -0700653 struct rpcbind_args *map;
Chuck Levera5090502007-03-29 16:48:04 -0400654 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500655 struct sockaddr_storage addr;
656 struct sockaddr *sap = (struct sockaddr *)&addr;
657 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400658 int status;
659
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400660 clnt = rpcb_find_transport_owner(task->tk_client);
661 xprt = clnt->cl_xprt;
662
Chuck Lever45160d62007-07-01 12:13:17 -0400663 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800664 task->tk_pid, __func__,
Chuck Lever45160d62007-07-01 12:13:17 -0400665 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400666
Trond Myklebust381ba742008-07-07 12:18:53 -0400667 /* Put self on the wait queue to ensure we get notified if
668 * some other task is already attempting to bind the port */
669 rpc_sleep_on(&xprt->binding, task, NULL);
670
Chuck Levera5090502007-03-29 16:48:04 -0400671 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400672 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800673 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400674 return;
Chuck Levera5090502007-03-29 16:48:04 -0400675 }
676
Chuck Levera5090502007-03-29 16:48:04 -0400677 /* Someone else may have bound if we slept */
678 if (xprt_bound(xprt)) {
679 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400680 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800681 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400682 goto bailout_nofree;
683 }
684
Chuck Leverba809132009-08-09 15:09:35 -0400685 /* Parent transport's destination address */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500686 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400687
688 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500689 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400690 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400691 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
692 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400693 break;
694 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400695 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
696 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400697 break;
698 default:
699 status = -EAFNOSUPPORT;
700 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800701 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400702 goto bailout_nofree;
703 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400704 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400705 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400706 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400707 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800708 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400709 goto bailout_nofree;
710 }
Chuck Levera5090502007-03-29 16:48:04 -0400711
Chuck Lever45160d62007-07-01 12:13:17 -0400712 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800713 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400714
Chuck Lever9f6ad262007-12-10 14:56:31 -0500715 rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
Chuck Lever423d8b02008-07-14 16:03:28 -0400716 bind_version);
Chuck Lever143b6c42007-08-16 16:03:31 -0400717 if (IS_ERR(rpcb_clnt)) {
718 status = PTR_ERR(rpcb_clnt);
719 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800720 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400721 goto bailout_nofree;
722 }
723
Chuck Levera5090502007-03-29 16:48:04 -0400724 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
725 if (!map) {
726 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400727 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800728 task->tk_pid, __func__);
Trond Myklebust96165e22008-10-03 16:48:40 -0400729 goto bailout_release_client;
Chuck Levera5090502007-03-29 16:48:04 -0400730 }
731 map->r_prog = clnt->cl_prog;
732 map->r_vers = clnt->cl_vers;
733 map->r_prot = xprt->prot;
734 map->r_port = 0;
735 map->r_xprt = xprt_get(xprt);
Trond Myklebust381ba742008-07-07 12:18:53 -0400736 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400737
Chuck Leverba809132009-08-09 15:09:35 -0400738 switch (bind_version) {
739 case RPCBVERS_4:
740 case RPCBVERS_3:
741 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
Trond Myklebustd77385f2011-10-17 16:08:10 -0700742 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
Chuck Leverba809132009-08-09 15:09:35 -0400743 map->r_owner = "";
744 break;
745 case RPCBVERS_2:
746 map->r_addr = NULL;
747 break;
748 default:
749 BUG();
750 }
751
Trond Myklebust803a9062008-07-01 15:20:55 -0400752 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400753 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400754 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400755 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400756 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800757 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400758 return;
Chuck Levera5090502007-03-29 16:48:04 -0400759 }
Chuck Levera5090502007-03-29 16:48:04 -0400760
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400761 xprt->stat.bind_count++;
762 rpc_put_task(child);
Chuck Levera5090502007-03-29 16:48:04 -0400763 return;
764
Trond Myklebust96165e22008-10-03 16:48:40 -0400765bailout_release_client:
766 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400767bailout_nofree:
768 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400769 task->tk_status = status;
770}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400771EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400772
773/*
774 * Rpcbind child task calls this callback via tk_exit.
775 */
776static void rpcb_getport_done(struct rpc_task *child, void *data)
777{
778 struct rpcbind_args *map = data;
779 struct rpc_xprt *xprt = map->r_xprt;
780 int status = child->tk_status;
781
Chuck Lever4784cb52007-09-11 18:00:36 -0400782 /* Garbage reply: retry with a lesser rpcbind version */
783 if (status == -EIO)
784 status = -EPROTONOSUPPORT;
785
Chuck Levera5090502007-03-29 16:48:04 -0400786 /* rpcbind server doesn't support this rpcbind protocol version */
787 if (status == -EPROTONOSUPPORT)
788 xprt->bind_index++;
789
790 if (status < 0) {
791 /* rpcbind server not available on remote host? */
792 xprt->ops->set_port(xprt, 0);
793 } else if (map->r_port == 0) {
794 /* Requested RPC service wasn't registered on remote host */
795 xprt->ops->set_port(xprt, 0);
796 status = -EACCES;
797 } else {
798 /* Succeeded */
799 xprt->ops->set_port(xprt, map->r_port);
800 xprt_set_bound(xprt);
801 status = 0;
802 }
803
804 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
805 child->tk_pid, status, map->r_port);
806
Trond Myklebust381ba742008-07-07 12:18:53 -0400807 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400808}
809
Chuck Lever166b88d2008-07-14 16:03:26 -0400810/*
811 * XDR functions for rpcbind
812 */
813
Chuck Lever9f06c712010-12-14 14:59:18 +0000814static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
815 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400816{
817 struct rpc_task *task = req->rq_task;
Chuck Lever9f06c712010-12-14 14:59:18 +0000818 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400819
820 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
821 task->tk_pid, task->tk_msg.rpc_proc->p_name,
822 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
823
Chuck Lever9f06c712010-12-14 14:59:18 +0000824 p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000825 *p++ = cpu_to_be32(rpcb->r_prog);
826 *p++ = cpu_to_be32(rpcb->r_vers);
827 *p++ = cpu_to_be32(rpcb->r_prot);
828 *p = cpu_to_be32(rpcb->r_port);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400829}
830
Chuck Leverbf269552010-12-14 14:59:29 +0000831static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400832 struct rpcbind_args *rpcb)
833{
834 struct rpc_task *task = req->rq_task;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400835 unsigned long port;
Chuck Leverbf269552010-12-14 14:59:29 +0000836 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400837
838 rpcb->r_port = 0;
839
Chuck Leverbf269552010-12-14 14:59:29 +0000840 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400841 if (unlikely(p == NULL))
842 return -EIO;
843
Chuck Lever4129ccf2010-12-14 14:58:59 +0000844 port = be32_to_cpup(p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400845 dprintk("RPC: %5u PMAP_%s result: %lu\n", task->tk_pid,
846 task->tk_msg.rpc_proc->p_name, port);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700847 if (unlikely(port > USHRT_MAX))
Chuck Leverc0c077d2009-08-09 15:09:43 -0400848 return -EIO;
849
850 rpcb->r_port = port;
851 return 0;
852}
853
Chuck Leverbf269552010-12-14 14:59:29 +0000854static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400855 unsigned int *boolp)
856{
857 struct rpc_task *task = req->rq_task;
Chuck Leverbf269552010-12-14 14:59:29 +0000858 __be32 *p;
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400859
Chuck Leverbf269552010-12-14 14:59:29 +0000860 p = xdr_inline_decode(xdr, 4);
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400861 if (unlikely(p == NULL))
862 return -EIO;
863
864 *boolp = 0;
Chuck Leverbf269552010-12-14 14:59:29 +0000865 if (*p != xdr_zero)
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400866 *boolp = 1;
867
868 dprintk("RPC: %5u RPCB_%s call %s\n",
869 task->tk_pid, task->tk_msg.rpc_proc->p_name,
870 (*boolp ? "succeeded" : "failed"));
871 return 0;
872}
873
Chuck Lever4129ccf2010-12-14 14:58:59 +0000874static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
875 const u32 maxstrlen)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400876{
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400877 __be32 *p;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000878 u32 len;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400879
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400880 len = strlen(string);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000881 BUG_ON(len > maxstrlen);
882 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400883 xdr_encode_opaque(p, string, len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400884}
885
Chuck Lever9f06c712010-12-14 14:59:18 +0000886static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
887 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400888{
889 struct rpc_task *task = req->rq_task;
Chuck Lever9f06c712010-12-14 14:59:18 +0000890 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400891
892 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
893 task->tk_pid, task->tk_msg.rpc_proc->p_name,
894 rpcb->r_prog, rpcb->r_vers,
895 rpcb->r_netid, rpcb->r_addr);
896
Chuck Lever9f06c712010-12-14 14:59:18 +0000897 p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000898 *p++ = cpu_to_be32(rpcb->r_prog);
899 *p = cpu_to_be32(rpcb->r_vers);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400900
Chuck Lever9f06c712010-12-14 14:59:18 +0000901 encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
902 encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
903 encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400904}
905
Chuck Leverbf269552010-12-14 14:59:29 +0000906static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400907 struct rpcbind_args *rpcb)
908{
909 struct sockaddr_storage address;
910 struct sockaddr *sap = (struct sockaddr *)&address;
911 struct rpc_task *task = req->rq_task;
Chuck Leverbf269552010-12-14 14:59:29 +0000912 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400913 u32 len;
914
915 rpcb->r_port = 0;
916
Chuck Leverbf269552010-12-14 14:59:29 +0000917 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400918 if (unlikely(p == NULL))
919 goto out_fail;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000920 len = be32_to_cpup(p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400921
922 /*
923 * If the returned universal address is a null string,
924 * the requested RPC service was not registered.
925 */
926 if (len == 0) {
927 dprintk("RPC: %5u RPCB reply: program not registered\n",
928 task->tk_pid);
929 return 0;
930 }
931
932 if (unlikely(len > RPCBIND_MAXUADDRLEN))
933 goto out_fail;
934
Chuck Leverbf269552010-12-14 14:59:29 +0000935 p = xdr_inline_decode(xdr, len);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400936 if (unlikely(p == NULL))
937 goto out_fail;
938 dprintk("RPC: %5u RPCB_%s reply: %s\n", task->tk_pid,
939 task->tk_msg.rpc_proc->p_name, (char *)p);
940
941 if (rpc_uaddr2sockaddr((char *)p, len, sap, sizeof(address)) == 0)
942 goto out_fail;
943 rpcb->r_port = rpc_get_port(sap);
944
945 return 0;
946
947out_fail:
948 dprintk("RPC: %5u malformed RPCB_%s reply\n",
949 task->tk_pid, task->tk_msg.rpc_proc->p_name);
950 return -EIO;
951}
952
Chuck Levera5090502007-03-29 16:48:04 -0400953/*
954 * Not all rpcbind procedures described in RFC 1833 are implemented
955 * since the Linux kernel RPC code requires only these.
956 */
Chuck Leverf8b761e2009-08-09 15:09:44 -0400957
Chuck Levera5090502007-03-29 16:48:04 -0400958static struct rpc_procinfo rpcb_procedures2[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -0400959 [RPCBPROC_SET] = {
960 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000961 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000962 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400963 .p_arglen = RPCB_mappingargs_sz,
964 .p_replen = RPCB_setres_sz,
965 .p_statidx = RPCBPROC_SET,
966 .p_timer = 0,
967 .p_name = "SET",
968 },
969 [RPCBPROC_UNSET] = {
970 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000971 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000972 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400973 .p_arglen = RPCB_mappingargs_sz,
974 .p_replen = RPCB_setres_sz,
975 .p_statidx = RPCBPROC_UNSET,
976 .p_timer = 0,
977 .p_name = "UNSET",
978 },
979 [RPCBPROC_GETPORT] = {
980 .p_proc = RPCBPROC_GETPORT,
Chuck Lever9f06c712010-12-14 14:59:18 +0000981 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000982 .p_decode = (kxdrdproc_t)rpcb_dec_getport,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400983 .p_arglen = RPCB_mappingargs_sz,
984 .p_replen = RPCB_getportres_sz,
985 .p_statidx = RPCBPROC_GETPORT,
986 .p_timer = 0,
987 .p_name = "GETPORT",
988 },
Chuck Levera5090502007-03-29 16:48:04 -0400989};
990
991static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -0400992 [RPCBPROC_SET] = {
993 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000994 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +0000995 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400996 .p_arglen = RPCB_getaddrargs_sz,
997 .p_replen = RPCB_setres_sz,
998 .p_statidx = RPCBPROC_SET,
999 .p_timer = 0,
1000 .p_name = "SET",
1001 },
1002 [RPCBPROC_UNSET] = {
1003 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001004 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001005 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001006 .p_arglen = RPCB_getaddrargs_sz,
1007 .p_replen = RPCB_setres_sz,
1008 .p_statidx = RPCBPROC_UNSET,
1009 .p_timer = 0,
1010 .p_name = "UNSET",
1011 },
1012 [RPCBPROC_GETADDR] = {
1013 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001014 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001015 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001016 .p_arglen = RPCB_getaddrargs_sz,
1017 .p_replen = RPCB_getaddrres_sz,
1018 .p_statidx = RPCBPROC_GETADDR,
1019 .p_timer = 0,
1020 .p_name = "GETADDR",
1021 },
Chuck Levera5090502007-03-29 16:48:04 -04001022};
1023
1024static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -04001025 [RPCBPROC_SET] = {
1026 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001027 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001028 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001029 .p_arglen = RPCB_getaddrargs_sz,
1030 .p_replen = RPCB_setres_sz,
1031 .p_statidx = RPCBPROC_SET,
1032 .p_timer = 0,
1033 .p_name = "SET",
1034 },
1035 [RPCBPROC_UNSET] = {
1036 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001037 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001038 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001039 .p_arglen = RPCB_getaddrargs_sz,
1040 .p_replen = RPCB_setres_sz,
1041 .p_statidx = RPCBPROC_UNSET,
1042 .p_timer = 0,
1043 .p_name = "UNSET",
1044 },
1045 [RPCBPROC_GETADDR] = {
1046 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001047 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001048 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001049 .p_arglen = RPCB_getaddrargs_sz,
1050 .p_replen = RPCB_getaddrres_sz,
1051 .p_statidx = RPCBPROC_GETADDR,
1052 .p_timer = 0,
1053 .p_name = "GETADDR",
1054 },
Chuck Levera5090502007-03-29 16:48:04 -04001055};
1056
1057static struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001058 {
1059 .rpc_vers = RPCBVERS_2,
1060 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
1061 },
1062 {
1063 .rpc_proc = NULL,
1064 },
Chuck Levera5090502007-03-29 16:48:04 -04001065};
1066
Chuck Leverd5b64432007-08-06 11:57:18 -04001067static struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001068 {
1069 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -04001070 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -04001071 },
1072 {
1073 .rpc_vers = RPCBVERS_3,
1074 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
1075 },
Chuck Leverfc200e72008-06-25 17:24:31 -04001076 {
1077 .rpc_proc = NULL,
1078 },
Chuck Leverd5b64432007-08-06 11:57:18 -04001079};
1080
Chuck Levera5090502007-03-29 16:48:04 -04001081static struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001082 .number = RPCBVERS_2,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001083 .nrprocs = ARRAY_SIZE(rpcb_procedures2),
Chuck Levera5090502007-03-29 16:48:04 -04001084 .procs = rpcb_procedures2
1085};
1086
1087static struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001088 .number = RPCBVERS_3,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001089 .nrprocs = ARRAY_SIZE(rpcb_procedures3),
Chuck Levera5090502007-03-29 16:48:04 -04001090 .procs = rpcb_procedures3
1091};
1092
1093static struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001094 .number = RPCBVERS_4,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001095 .nrprocs = ARRAY_SIZE(rpcb_procedures4),
Chuck Levera5090502007-03-29 16:48:04 -04001096 .procs = rpcb_procedures4
1097};
1098
1099static struct rpc_version *rpcb_version[] = {
1100 NULL,
1101 NULL,
1102 &rpcb_version2,
1103 &rpcb_version3,
1104 &rpcb_version4
1105};
1106
1107static struct rpc_stat rpcb_stats;
1108
Adrian Bunk7f4adef2007-06-13 01:03:13 +02001109static struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -04001110 .name = "rpcbind",
1111 .number = RPCBIND_PROGRAM,
1112 .nrvers = ARRAY_SIZE(rpcb_version),
1113 .version = rpcb_version,
1114 .stats = &rpcb_stats,
1115};
Chuck Leverc5266112009-12-03 15:58:56 -05001116
1117/**
1118 * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
1119 *
1120 */
1121void cleanup_rpcb_clnt(void)
1122{
1123 if (rpcb_local_clnt4)
1124 rpc_shutdown_client(rpcb_local_clnt4);
1125 if (rpcb_local_clnt)
1126 rpc_shutdown_client(rpcb_local_clnt);
1127}