Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
[linux-2.6-block.git] / net / sunrpc / rpcb_clnt.c
CommitLineData
a509050b
CL
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
cce63cd6
CL
15#include <linux/module.h>
16
a509050b
CL
17#include <linux/types.h>
18#include <linux/socket.h>
7402ab19 19#include <linux/un.h>
d5b64430
CL
20#include <linux/in.h>
21#include <linux/in6.h>
a509050b
CL
22#include <linux/kernel.h>
23#include <linux/errno.h>
c526611d 24#include <linux/mutex.h>
5a0e3ad6 25#include <linux/slab.h>
9d548b9c 26#include <net/ipv6.h>
a509050b
CL
27
28#include <linux/sunrpc/clnt.h>
29#include <linux/sunrpc/sched.h>
0896a725 30#include <linux/sunrpc/xprtsock.h>
a509050b
CL
31
32#ifdef RPC_DEBUG
33# define RPCDBG_FACILITY RPCDBG_BIND
34#endif
35
7402ab19
CL
36#define RPCBIND_SOCK_PATHNAME "/var/run/rpcbind.sock"
37
a509050b
CL
38#define RPCBIND_PROGRAM (100000u)
39#define RPCBIND_PORT (111u)
40
fc200e79
CL
41#define RPCBVERS_2 (2u)
42#define RPCBVERS_3 (3u)
43#define RPCBVERS_4 (4u)
44
a509050b
CL
45enum {
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
a509050b
CL
63/*
64 * r_owner
65 *
66 * The "owner" is allowed to unset a service in the rpcbind database.
126e4bc3
CL
67 *
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.
a509050b 75 */
126e4bc3 76#define RPCB_OWNER_STRING "0"
a509050b
CL
77#define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
78
0b10bf5e
CL
79/*
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
a509050b 110static void rpcb_getport_done(struct rpc_task *, void *);
381ba74a 111static void rpcb_map_release(void *data);
7f4adeff 112static struct rpc_program rpcb_program;
a509050b 113
c526611d
CL
114static struct rpc_clnt * rpcb_local_clnt;
115static struct rpc_clnt * rpcb_local_clnt4;
116
914edb1b
SK
117DEFINE_SPINLOCK(rpcb_clnt_lock);
118unsigned int rpcb_users;
119
a509050b
CL
120struct 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;
86d61d86
TM
127 const char * r_netid;
128 const char * r_addr;
129 const char * r_owner;
381ba74a
TM
130
131 int r_status;
a509050b
CL
132};
133
134static struct rpc_procinfo rpcb_procedures2[];
135static struct rpc_procinfo rpcb_procedures3[];
c2e1b09f 136static struct rpc_procinfo rpcb_procedures4[];
a509050b 137
d5b64430 138struct rpcb_info {
fc200e79 139 u32 rpc_vers;
a509050b 140 struct rpc_procinfo * rpc_proc;
d5b64430
CL
141};
142
143static struct rpcb_info rpcb_next_version[];
144static struct rpcb_info rpcb_next_version6[];
a509050b 145
a509050b 146static const struct rpc_call_ops rpcb_getport_ops = {
a509050b
CL
147 .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
381ba74a
TM
157static 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);
ba809130 163 kfree(map->r_addr);
381ba74a
TM
164 kfree(map);
165}
166
914edb1b
SK
167static 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
7402ab19
CL
217/*
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;
239
240 /*
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
253fb070 261 rpcb_set_local(clnt, clnt4);
cc5598b7 262
7402ab19
CL
263out:
264 return result;
265}
c526611d
CL
266
267/*
268 * Returns zero on success, otherwise a negative errno value
269 * is returned.
270 */
7402ab19 271static int rpcb_create_local_net(void)
cc5598b7 272{
7402ab19
CL
273 static const struct sockaddr_in rpcb_inaddr_loopback = {
274 .sin_family = AF_INET,
275 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
276 .sin_port = htons(RPCBIND_PORT),
277 };
cc5598b7 278 struct rpc_create_args args = {
c653ce3f 279 .net = &init_net,
2a76b3bf 280 .protocol = XPRT_TRANSPORT_TCP,
5a462115
CL
281 .address = (struct sockaddr *)&rpcb_inaddr_loopback,
282 .addrsize = sizeof(rpcb_inaddr_loopback),
cc5598b7
CL
283 .servername = "localhost",
284 .program = &rpcb_program,
c526611d 285 .version = RPCBVERS_2,
cc5598b7
CL
286 .authflavor = RPC_AUTH_UNIX,
287 .flags = RPC_CLNT_CREATE_NOPING,
288 };
c526611d
CL
289 struct rpc_clnt *clnt, *clnt4;
290 int result = 0;
291
c526611d
CL
292 clnt = rpc_create(&args);
293 if (IS_ERR(clnt)) {
294 dprintk("RPC: failed to create local rpcbind "
295 "client (errno %ld).\n", PTR_ERR(clnt));
296 result = -PTR_ERR(clnt);
297 goto out;
298 }
cc5598b7 299
c526611d
CL
300 /*
301 * This results in an RPC ping. On systems running portmapper,
302 * the v4 ping will fail. Proceed anyway, but disallow rpcb
303 * v4 upcalls.
304 */
305 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
306 if (IS_ERR(clnt4)) {
38359352
CL
307 dprintk("RPC: failed to bind second program to "
308 "rpcbind v4 client (errno %ld).\n",
309 PTR_ERR(clnt4));
c526611d
CL
310 clnt4 = NULL;
311 }
312
253fb070 313 rpcb_set_local(clnt, clnt4);
c526611d 314
7402ab19
CL
315out:
316 return result;
317}
318
319/*
320 * Returns zero on success, otherwise a negative errno value
321 * is returned.
322 */
d9908560 323int rpcb_create_local(void)
7402ab19
CL
324{
325 static DEFINE_MUTEX(rpcb_create_local_mutex);
326 int result = 0;
327
253fb070 328 if (rpcb_get_local())
7402ab19
CL
329 return result;
330
331 mutex_lock(&rpcb_create_local_mutex);
253fb070 332 if (rpcb_get_local())
7402ab19
CL
333 goto out;
334
335 if (rpcb_create_local_unix() != 0)
336 result = rpcb_create_local_net();
337
c526611d
CL
338out:
339 mutex_unlock(&rpcb_create_local_mutex);
340 return result;
cc5598b7
CL
341}
342
a509050b 343static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
423d8b06 344 size_t salen, int proto, u32 version)
a509050b
CL
345{
346 struct rpc_create_args args = {
c653ce3f 347 .net = &init_net,
a509050b
CL
348 .protocol = proto,
349 .address = srvaddr,
9f6ad26d 350 .addrsize = salen,
a509050b
CL
351 .servername = hostname,
352 .program = &rpcb_program,
353 .version = version,
354 .authflavor = RPC_AUTH_UNIX,
423d8b06
CL
355 .flags = (RPC_CLNT_CREATE_NOPING |
356 RPC_CLNT_CREATE_NONPRIVPORT),
a509050b
CL
357 };
358
d5b64430
CL
359 switch (srvaddr->sa_family) {
360 case AF_INET:
361 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
362 break;
363 case AF_INET6:
364 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
365 break;
366 default:
c636b572 367 return ERR_PTR(-EAFNOSUPPORT);
d5b64430
CL
368 }
369
a509050b
CL
370 return rpc_create(&args);
371}
372
c526611d 373static int rpcb_register_call(struct rpc_clnt *clnt, struct rpc_message *msg)
babe80eb 374{
14aeb211 375 int result, error = 0;
babe80eb 376
14aeb211 377 msg->rpc_resp = &result;
babe80eb 378
2a76b3bf 379 error = rpc_call_sync(clnt, msg, RPC_TASK_SOFTCONN);
14aeb211 380 if (error < 0) {
363f724c 381 dprintk("RPC: failed to contact local rpcbind "
babe80eb 382 "server (errno %d).\n", -error);
14aeb211
CL
383 return error;
384 }
385
db820d63 386 if (!result)
14aeb211 387 return -EACCES;
14aeb211 388 return 0;
babe80eb
CL
389}
390
a509050b
CL
391/**
392 * rpcb_register - set or unset a port registration with the local rpcbind svc
393 * @prog: RPC program number to bind
394 * @vers: RPC version number to bind
c2e1b09f 395 * @prot: transport protocol to register
a509050b 396 * @port: port value to register
14aeb211
CL
397 *
398 * Returns zero if the registration request was dispatched successfully
399 * and the rpcbind daemon returned success. Otherwise, returns an errno
400 * value that reflects the nature of the error (request could not be
401 * dispatched, timed out, or rpcbind returned an error).
c2e1b09f
CL
402 *
403 * RPC services invoke this function to advertise their contact
404 * information via the system's rpcbind daemon. RPC services
405 * invoke this function once for each [program, version, transport]
406 * tuple they wish to advertise.
407 *
408 * Callers may also unregister RPC services that are no longer
409 * available by setting the passed-in port to zero. This removes
410 * all registered transports for [program, version] from the local
411 * rpcbind database.
412 *
c2e1b09f
CL
413 * This function uses rpcbind protocol version 2 to contact the
414 * local rpcbind daemon.
415 *
416 * Registration works over both AF_INET and AF_INET6, and services
417 * registered via this function are advertised as available for any
418 * address. If the local rpcbind daemon is listening on AF_INET6,
419 * services registered via this function will be advertised on
420 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
421 * addresses).
a509050b 422 */
14aeb211 423int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port)
a509050b 424{
a509050b
CL
425 struct rpcbind_args map = {
426 .r_prog = prog,
427 .r_vers = vers,
428 .r_prot = prot,
429 .r_port = port,
430 };
431 struct rpc_message msg = {
a509050b 432 .rpc_argp = &map,
a509050b 433 };
a509050b
CL
434
435 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
436 "rpcbind\n", (port ? "" : "un"),
437 prog, vers, prot, port);
438
babe80eb
CL
439 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
440 if (port)
441 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
a509050b 442
c526611d 443 return rpcb_register_call(rpcb_local_clnt, &msg);
a509050b
CL
444}
445
c2e1b09f
CL
446/*
447 * Fill in AF_INET family-specific arguments to register
448 */
1673d0de
CL
449static int rpcb_register_inet4(const struct sockaddr *sap,
450 struct rpc_message *msg)
c2e1b09f 451{
3aba4553 452 const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
c2e1b09f 453 struct rpcbind_args *map = msg->rpc_argp;
3aba4553 454 unsigned short port = ntohs(sin->sin_port);
ba809130 455 int result;
c2e1b09f 456
d77385f2 457 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
c2e1b09f
CL
458
459 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
460 "local rpcbind\n", (port ? "" : "un"),
461 map->r_prog, map->r_vers,
462 map->r_addr, map->r_netid);
463
464 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
465 if (port)
466 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
467
c526611d 468 result = rpcb_register_call(rpcb_local_clnt4, msg);
ba809130
CL
469 kfree(map->r_addr);
470 return result;
c2e1b09f
CL
471}
472
473/*
474 * Fill in AF_INET6 family-specific arguments to register
475 */
1673d0de
CL
476static int rpcb_register_inet6(const struct sockaddr *sap,
477 struct rpc_message *msg)
c2e1b09f 478{
3aba4553 479 const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
c2e1b09f 480 struct rpcbind_args *map = msg->rpc_argp;
3aba4553 481 unsigned short port = ntohs(sin6->sin6_port);
ba809130 482 int result;
c2e1b09f 483
d77385f2 484 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
c2e1b09f
CL
485
486 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
487 "local rpcbind\n", (port ? "" : "un"),
488 map->r_prog, map->r_vers,
489 map->r_addr, map->r_netid);
490
491 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
492 if (port)
493 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
494
c526611d 495 result = rpcb_register_call(rpcb_local_clnt4, msg);
ba809130
CL
496 kfree(map->r_addr);
497 return result;
c2e1b09f
CL
498}
499
1673d0de
CL
500static int rpcb_unregister_all_protofamilies(struct rpc_message *msg)
501{
502 struct rpcbind_args *map = msg->rpc_argp;
503
504 dprintk("RPC: unregistering [%u, %u, '%s'] with "
505 "local rpcbind\n",
506 map->r_prog, map->r_vers, map->r_netid);
507
508 map->r_addr = "";
509 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
510
c526611d 511 return rpcb_register_call(rpcb_local_clnt4, msg);
1673d0de
CL
512}
513
c2e1b09f
CL
514/**
515 * rpcb_v4_register - set or unset a port registration with the local rpcbind
516 * @program: RPC program number of service to (un)register
517 * @version: RPC version number of service to (un)register
518 * @address: address family, IP address, and port to (un)register
519 * @netid: netid of transport protocol to (un)register
14aeb211
CL
520 *
521 * Returns zero if the registration request was dispatched successfully
522 * and the rpcbind daemon returned success. Otherwise, returns an errno
523 * value that reflects the nature of the error (request could not be
524 * dispatched, timed out, or rpcbind returned an error).
c2e1b09f
CL
525 *
526 * RPC services invoke this function to advertise their contact
527 * information via the system's rpcbind daemon. RPC services
528 * invoke this function once for each [program, version, address,
529 * netid] tuple they wish to advertise.
530 *
1673d0de
CL
531 * Callers may also unregister RPC services that are registered at a
532 * specific address by setting the port number in @address to zero.
533 * They may unregister all registered protocol families at once for
534 * a service by passing a NULL @address argument. If @netid is ""
535 * then all netids for [program, version, address] are unregistered.
c2e1b09f 536 *
c2e1b09f
CL
537 * This function uses rpcbind protocol version 4 to contact the
538 * local rpcbind daemon. The local rpcbind daemon must support
539 * version 4 of the rpcbind protocol in order for these functions
540 * to register a service successfully.
541 *
542 * Supported netids include "udp" and "tcp" for UDP and TCP over
543 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
544 * respectively.
545 *
546 * The contents of @address determine the address family and the
547 * port to be registered. The usual practice is to pass INADDR_ANY
548 * as the raw address, but specifying a non-zero address is also
549 * supported by this API if the caller wishes to advertise an RPC
550 * service on a specific network interface.
551 *
552 * Note that passing in INADDR_ANY does not create the same service
553 * registration as IN6ADDR_ANY. The former advertises an RPC
554 * service on any IPv4 address, but not on IPv6. The latter
555 * advertises the service on all IPv4 and IPv6 addresses.
556 */
557int rpcb_v4_register(const u32 program, const u32 version,
14aeb211 558 const struct sockaddr *address, const char *netid)
c2e1b09f
CL
559{
560 struct rpcbind_args map = {
561 .r_prog = program,
562 .r_vers = version,
563 .r_netid = netid,
564 .r_owner = RPCB_OWNER_STRING,
565 };
566 struct rpc_message msg = {
567 .rpc_argp = &map,
c2e1b09f 568 };
c526611d 569
c526611d
CL
570 if (rpcb_local_clnt4 == NULL)
571 return -EPROTONOSUPPORT;
c2e1b09f 572
1673d0de
CL
573 if (address == NULL)
574 return rpcb_unregister_all_protofamilies(&msg);
575
c2e1b09f
CL
576 switch (address->sa_family) {
577 case AF_INET:
1673d0de 578 return rpcb_register_inet4(address, &msg);
c2e1b09f 579 case AF_INET6:
1673d0de 580 return rpcb_register_inet6(address, &msg);
c2e1b09f
CL
581 }
582
583 return -EAFNOSUPPORT;
584}
585
803a9067 586static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
5138fde0
TM
587{
588 struct rpc_message msg = {
803a9067 589 .rpc_proc = proc,
5138fde0 590 .rpc_argp = map,
c0c077df 591 .rpc_resp = map,
5138fde0
TM
592 };
593 struct rpc_task_setup task_setup_data = {
594 .rpc_client = rpcb_clnt,
595 .rpc_message = &msg,
596 .callback_ops = &rpcb_getport_ops,
597 .callback_data = map,
012da158 598 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFTCONN,
5138fde0
TM
599 };
600
601 return rpc_run_task(&task_setup_data);
602}
603
9a4bd29f
TM
604/*
605 * In the case where rpc clients have been cloned, we want to make
606 * sure that we use the program number/version etc of the actual
607 * owner of the xprt. To do so, we walk back up the tree of parents
608 * to find whoever created the transport and/or whoever has the
609 * autobind flag set.
610 */
611static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
612{
613 struct rpc_clnt *parent = clnt->cl_parent;
614
615 while (parent != clnt) {
616 if (parent->cl_xprt != clnt->cl_xprt)
617 break;
618 if (clnt->cl_autobind)
619 break;
620 clnt = parent;
621 parent = parent->cl_parent;
622 }
623 return clnt;
624}
625
a509050b 626/**
45160d62 627 * rpcb_getport_async - obtain the port for a given RPC service on a given host
a509050b
CL
628 * @task: task that is waiting for portmapper request
629 *
630 * This one can be called for an ongoing RPC request, and can be used in
631 * an async (rpciod) context.
632 */
45160d62 633void rpcb_getport_async(struct rpc_task *task)
a509050b 634{
9a4bd29f 635 struct rpc_clnt *clnt;
803a9067 636 struct rpc_procinfo *proc;
0a48f5d7 637 u32 bind_version;
9a4bd29f 638 struct rpc_xprt *xprt;
a509050b 639 struct rpc_clnt *rpcb_clnt;
ec0dd267 640 struct rpcbind_args *map;
a509050b 641 struct rpc_task *child;
9f6ad26d
CL
642 struct sockaddr_storage addr;
643 struct sockaddr *sap = (struct sockaddr *)&addr;
644 size_t salen;
a509050b
CL
645 int status;
646
9a4bd29f
TM
647 clnt = rpcb_find_transport_owner(task->tk_client);
648 xprt = clnt->cl_xprt;
649
45160d62 650 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
0dc47877 651 task->tk_pid, __func__,
45160d62 652 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
a509050b 653
381ba74a
TM
654 /* Put self on the wait queue to ensure we get notified if
655 * some other task is already attempting to bind the port */
656 rpc_sleep_on(&xprt->binding, task, NULL);
657
a509050b 658 if (xprt_test_and_set_binding(xprt)) {
45160d62 659 dprintk("RPC: %5u %s: waiting for another binder\n",
0dc47877 660 task->tk_pid, __func__);
381ba74a 661 return;
a509050b
CL
662 }
663
a509050b
CL
664 /* Someone else may have bound if we slept */
665 if (xprt_bound(xprt)) {
666 status = 0;
45160d62 667 dprintk("RPC: %5u %s: already bound\n",
0dc47877 668 task->tk_pid, __func__);
a509050b
CL
669 goto bailout_nofree;
670 }
671
ba809130 672 /* Parent transport's destination address */
9f6ad26d 673 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
d5b64430
CL
674
675 /* Don't ever use rpcbind v2 for AF_INET6 requests */
9f6ad26d 676 switch (sap->sa_family) {
d5b64430 677 case AF_INET:
803a9067
TM
678 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
679 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
d5b64430
CL
680 break;
681 case AF_INET6:
803a9067
TM
682 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
683 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
d5b64430
CL
684 break;
685 default:
686 status = -EAFNOSUPPORT;
687 dprintk("RPC: %5u %s: bad address family\n",
0dc47877 688 task->tk_pid, __func__);
d5b64430
CL
689 goto bailout_nofree;
690 }
803a9067 691 if (proc == NULL) {
a509050b 692 xprt->bind_index = 0;
906462af 693 status = -EPFNOSUPPORT;
45160d62 694 dprintk("RPC: %5u %s: no more getport versions available\n",
0dc47877 695 task->tk_pid, __func__);
a509050b
CL
696 goto bailout_nofree;
697 }
a509050b 698
45160d62 699 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
0dc47877 700 task->tk_pid, __func__, bind_version);
a509050b 701
9f6ad26d 702 rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
423d8b06 703 bind_version);
143b6c40
CL
704 if (IS_ERR(rpcb_clnt)) {
705 status = PTR_ERR(rpcb_clnt);
706 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
0dc47877 707 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
143b6c40
CL
708 goto bailout_nofree;
709 }
710
a509050b
CL
711 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
712 if (!map) {
713 status = -ENOMEM;
45160d62 714 dprintk("RPC: %5u %s: no memory available\n",
0dc47877 715 task->tk_pid, __func__);
96165e2b 716 goto bailout_release_client;
a509050b
CL
717 }
718 map->r_prog = clnt->cl_prog;
719 map->r_vers = clnt->cl_vers;
720 map->r_prot = xprt->prot;
721 map->r_port = 0;
722 map->r_xprt = xprt_get(xprt);
381ba74a 723 map->r_status = -EIO;
a509050b 724
ba809130
CL
725 switch (bind_version) {
726 case RPCBVERS_4:
727 case RPCBVERS_3:
728 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
d77385f2 729 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
ba809130
CL
730 map->r_owner = "";
731 break;
732 case RPCBVERS_2:
733 map->r_addr = NULL;
734 break;
735 default:
736 BUG();
737 }
738
803a9067 739 child = rpcb_call_async(rpcb_clnt, map, proc);
4c402b40 740 rpc_release_client(rpcb_clnt);
a509050b 741 if (IS_ERR(child)) {
0d3a34b4 742 /* rpcb_map_release() has freed the arguments */
45160d62 743 dprintk("RPC: %5u %s: rpc_run_task failed\n",
0dc47877 744 task->tk_pid, __func__);
381ba74a 745 return;
a509050b 746 }
a509050b 747
9a4bd29f
TM
748 xprt->stat.bind_count++;
749 rpc_put_task(child);
a509050b
CL
750 return;
751
96165e2b
TM
752bailout_release_client:
753 rpc_release_client(rpcb_clnt);
a509050b
CL
754bailout_nofree:
755 rpcb_wake_rpcbind_waiters(xprt, status);
a509050b
CL
756 task->tk_status = status;
757}
12444809 758EXPORT_SYMBOL_GPL(rpcb_getport_async);
a509050b
CL
759
760/*
761 * Rpcbind child task calls this callback via tk_exit.
762 */
763static void rpcb_getport_done(struct rpc_task *child, void *data)
764{
765 struct rpcbind_args *map = data;
766 struct rpc_xprt *xprt = map->r_xprt;
767 int status = child->tk_status;
768
4784cb51
CL
769 /* Garbage reply: retry with a lesser rpcbind version */
770 if (status == -EIO)
771 status = -EPROTONOSUPPORT;
772
a509050b
CL
773 /* rpcbind server doesn't support this rpcbind protocol version */
774 if (status == -EPROTONOSUPPORT)
775 xprt->bind_index++;
776
777 if (status < 0) {
778 /* rpcbind server not available on remote host? */
779 xprt->ops->set_port(xprt, 0);
780 } else if (map->r_port == 0) {
781 /* Requested RPC service wasn't registered on remote host */
782 xprt->ops->set_port(xprt, 0);
783 status = -EACCES;
784 } else {
785 /* Succeeded */
786 xprt->ops->set_port(xprt, map->r_port);
787 xprt_set_bound(xprt);
788 status = 0;
789 }
790
791 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
792 child->tk_pid, status, map->r_port);
793
381ba74a 794 map->r_status = status;
a509050b
CL
795}
796
166b88d7
CL
797/*
798 * XDR functions for rpcbind
799 */
800
9f06c719
CL
801static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
802 const struct rpcbind_args *rpcb)
6f2c2db7
CL
803{
804 struct rpc_task *task = req->rq_task;
9f06c719 805 __be32 *p;
6f2c2db7
CL
806
807 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
808 task->tk_pid, task->tk_msg.rpc_proc->p_name,
809 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
810
9f06c719 811 p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
4129ccf3
CL
812 *p++ = cpu_to_be32(rpcb->r_prog);
813 *p++ = cpu_to_be32(rpcb->r_vers);
814 *p++ = cpu_to_be32(rpcb->r_prot);
815 *p = cpu_to_be32(rpcb->r_port);
6f2c2db7
CL
816}
817
bf269551 818static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
c0c077df
CL
819 struct rpcbind_args *rpcb)
820{
821 struct rpc_task *task = req->rq_task;
c0c077df 822 unsigned long port;
bf269551 823 __be32 *p;
c0c077df
CL
824
825 rpcb->r_port = 0;
826
bf269551 827 p = xdr_inline_decode(xdr, 4);
c0c077df
CL
828 if (unlikely(p == NULL))
829 return -EIO;
830
4129ccf3 831 port = be32_to_cpup(p);
c0c077df
CL
832 dprintk("RPC: %5u PMAP_%s result: %lu\n", task->tk_pid,
833 task->tk_msg.rpc_proc->p_name, port);
4be929be 834 if (unlikely(port > USHRT_MAX))
c0c077df
CL
835 return -EIO;
836
837 rpcb->r_port = port;
838 return 0;
839}
840
bf269551 841static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
7ed0ff98
CL
842 unsigned int *boolp)
843{
844 struct rpc_task *task = req->rq_task;
bf269551 845 __be32 *p;
7ed0ff98 846
bf269551 847 p = xdr_inline_decode(xdr, 4);
7ed0ff98
CL
848 if (unlikely(p == NULL))
849 return -EIO;
850
851 *boolp = 0;
bf269551 852 if (*p != xdr_zero)
7ed0ff98
CL
853 *boolp = 1;
854
855 dprintk("RPC: %5u RPCB_%s call %s\n",
856 task->tk_pid, task->tk_msg.rpc_proc->p_name,
857 (*boolp ? "succeeded" : "failed"));
858 return 0;
859}
860
4129ccf3
CL
861static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
862 const u32 maxstrlen)
6f2c2db7 863{
6f2c2db7 864 __be32 *p;
4129ccf3 865 u32 len;
6f2c2db7 866
6f2c2db7 867 len = strlen(string);
4129ccf3
CL
868 BUG_ON(len > maxstrlen);
869 p = xdr_reserve_space(xdr, 4 + len);
6f2c2db7 870 xdr_encode_opaque(p, string, len);
6f2c2db7
CL
871}
872
9f06c719
CL
873static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
874 const struct rpcbind_args *rpcb)
6f2c2db7
CL
875{
876 struct rpc_task *task = req->rq_task;
9f06c719 877 __be32 *p;
6f2c2db7
CL
878
879 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
880 task->tk_pid, task->tk_msg.rpc_proc->p_name,
881 rpcb->r_prog, rpcb->r_vers,
882 rpcb->r_netid, rpcb->r_addr);
883
9f06c719 884 p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
4129ccf3
CL
885 *p++ = cpu_to_be32(rpcb->r_prog);
886 *p = cpu_to_be32(rpcb->r_vers);
6f2c2db7 887
9f06c719
CL
888 encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
889 encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
890 encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
6f2c2db7
CL
891}
892
bf269551 893static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
c0c077df
CL
894 struct rpcbind_args *rpcb)
895{
896 struct sockaddr_storage address;
897 struct sockaddr *sap = (struct sockaddr *)&address;
898 struct rpc_task *task = req->rq_task;
bf269551 899 __be32 *p;
c0c077df
CL
900 u32 len;
901
902 rpcb->r_port = 0;
903
bf269551 904 p = xdr_inline_decode(xdr, 4);
c0c077df
CL
905 if (unlikely(p == NULL))
906 goto out_fail;
4129ccf3 907 len = be32_to_cpup(p);
c0c077df
CL
908
909 /*
910 * If the returned universal address is a null string,
911 * the requested RPC service was not registered.
912 */
913 if (len == 0) {
914 dprintk("RPC: %5u RPCB reply: program not registered\n",
915 task->tk_pid);
916 return 0;
917 }
918
919 if (unlikely(len > RPCBIND_MAXUADDRLEN))
920 goto out_fail;
921
bf269551 922 p = xdr_inline_decode(xdr, len);
c0c077df
CL
923 if (unlikely(p == NULL))
924 goto out_fail;
925 dprintk("RPC: %5u RPCB_%s reply: %s\n", task->tk_pid,
926 task->tk_msg.rpc_proc->p_name, (char *)p);
927
928 if (rpc_uaddr2sockaddr((char *)p, len, sap, sizeof(address)) == 0)
929 goto out_fail;
930 rpcb->r_port = rpc_get_port(sap);
931
932 return 0;
933
934out_fail:
935 dprintk("RPC: %5u malformed RPCB_%s reply\n",
936 task->tk_pid, task->tk_msg.rpc_proc->p_name);
937 return -EIO;
938}
939
a509050b
CL
940/*
941 * Not all rpcbind procedures described in RFC 1833 are implemented
942 * since the Linux kernel RPC code requires only these.
943 */
f8b761ef 944
a509050b 945static struct rpc_procinfo rpcb_procedures2[] = {
f8b761ef
CL
946 [RPCBPROC_SET] = {
947 .p_proc = RPCBPROC_SET,
9f06c719 948 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
bf269551 949 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
950 .p_arglen = RPCB_mappingargs_sz,
951 .p_replen = RPCB_setres_sz,
952 .p_statidx = RPCBPROC_SET,
953 .p_timer = 0,
954 .p_name = "SET",
955 },
956 [RPCBPROC_UNSET] = {
957 .p_proc = RPCBPROC_UNSET,
9f06c719 958 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
bf269551 959 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
960 .p_arglen = RPCB_mappingargs_sz,
961 .p_replen = RPCB_setres_sz,
962 .p_statidx = RPCBPROC_UNSET,
963 .p_timer = 0,
964 .p_name = "UNSET",
965 },
966 [RPCBPROC_GETPORT] = {
967 .p_proc = RPCBPROC_GETPORT,
9f06c719 968 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
bf269551 969 .p_decode = (kxdrdproc_t)rpcb_dec_getport,
f8b761ef
CL
970 .p_arglen = RPCB_mappingargs_sz,
971 .p_replen = RPCB_getportres_sz,
972 .p_statidx = RPCBPROC_GETPORT,
973 .p_timer = 0,
974 .p_name = "GETPORT",
975 },
a509050b
CL
976};
977
978static struct rpc_procinfo rpcb_procedures3[] = {
f8b761ef
CL
979 [RPCBPROC_SET] = {
980 .p_proc = RPCBPROC_SET,
9f06c719 981 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 982 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
983 .p_arglen = RPCB_getaddrargs_sz,
984 .p_replen = RPCB_setres_sz,
985 .p_statidx = RPCBPROC_SET,
986 .p_timer = 0,
987 .p_name = "SET",
988 },
989 [RPCBPROC_UNSET] = {
990 .p_proc = RPCBPROC_UNSET,
9f06c719 991 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 992 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
993 .p_arglen = RPCB_getaddrargs_sz,
994 .p_replen = RPCB_setres_sz,
995 .p_statidx = RPCBPROC_UNSET,
996 .p_timer = 0,
997 .p_name = "UNSET",
998 },
999 [RPCBPROC_GETADDR] = {
1000 .p_proc = RPCBPROC_GETADDR,
9f06c719 1001 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 1002 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
f8b761ef
CL
1003 .p_arglen = RPCB_getaddrargs_sz,
1004 .p_replen = RPCB_getaddrres_sz,
1005 .p_statidx = RPCBPROC_GETADDR,
1006 .p_timer = 0,
1007 .p_name = "GETADDR",
1008 },
a509050b
CL
1009};
1010
1011static struct rpc_procinfo rpcb_procedures4[] = {
f8b761ef
CL
1012 [RPCBPROC_SET] = {
1013 .p_proc = RPCBPROC_SET,
9f06c719 1014 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 1015 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
1016 .p_arglen = RPCB_getaddrargs_sz,
1017 .p_replen = RPCB_setres_sz,
1018 .p_statidx = RPCBPROC_SET,
1019 .p_timer = 0,
1020 .p_name = "SET",
1021 },
1022 [RPCBPROC_UNSET] = {
1023 .p_proc = RPCBPROC_UNSET,
9f06c719 1024 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 1025 .p_decode = (kxdrdproc_t)rpcb_dec_set,
f8b761ef
CL
1026 .p_arglen = RPCB_getaddrargs_sz,
1027 .p_replen = RPCB_setres_sz,
1028 .p_statidx = RPCBPROC_UNSET,
1029 .p_timer = 0,
1030 .p_name = "UNSET",
1031 },
1032 [RPCBPROC_GETADDR] = {
1033 .p_proc = RPCBPROC_GETADDR,
9f06c719 1034 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
bf269551 1035 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
f8b761ef
CL
1036 .p_arglen = RPCB_getaddrargs_sz,
1037 .p_replen = RPCB_getaddrres_sz,
1038 .p_statidx = RPCBPROC_GETADDR,
1039 .p_timer = 0,
1040 .p_name = "GETADDR",
1041 },
a509050b
CL
1042};
1043
1044static struct rpcb_info rpcb_next_version[] = {
fc200e79
CL
1045 {
1046 .rpc_vers = RPCBVERS_2,
1047 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
1048 },
1049 {
1050 .rpc_proc = NULL,
1051 },
a509050b
CL
1052};
1053
d5b64430 1054static struct rpcb_info rpcb_next_version6[] = {
fc200e79
CL
1055 {
1056 .rpc_vers = RPCBVERS_4,
8842413a 1057 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
fc200e79
CL
1058 },
1059 {
1060 .rpc_vers = RPCBVERS_3,
1061 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
1062 },
fc200e79
CL
1063 {
1064 .rpc_proc = NULL,
1065 },
d5b64430
CL
1066};
1067
a509050b 1068static struct rpc_version rpcb_version2 = {
fc200e79 1069 .number = RPCBVERS_2,
1ac7c23e 1070 .nrprocs = ARRAY_SIZE(rpcb_procedures2),
a509050b
CL
1071 .procs = rpcb_procedures2
1072};
1073
1074static struct rpc_version rpcb_version3 = {
fc200e79 1075 .number = RPCBVERS_3,
1ac7c23e 1076 .nrprocs = ARRAY_SIZE(rpcb_procedures3),
a509050b
CL
1077 .procs = rpcb_procedures3
1078};
1079
1080static struct rpc_version rpcb_version4 = {
fc200e79 1081 .number = RPCBVERS_4,
1ac7c23e 1082 .nrprocs = ARRAY_SIZE(rpcb_procedures4),
a509050b
CL
1083 .procs = rpcb_procedures4
1084};
1085
1086static struct rpc_version *rpcb_version[] = {
1087 NULL,
1088 NULL,
1089 &rpcb_version2,
1090 &rpcb_version3,
1091 &rpcb_version4
1092};
1093
1094static struct rpc_stat rpcb_stats;
1095
7f4adeff 1096static struct rpc_program rpcb_program = {
a509050b
CL
1097 .name = "rpcbind",
1098 .number = RPCBIND_PROGRAM,
1099 .nrvers = ARRAY_SIZE(rpcb_version),
1100 .version = rpcb_version,
1101 .stats = &rpcb_stats,
1102};