rpcb_clnt.c 24.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * In-kernel rpcbind client supporting versions 2, 3, and 4 of the rpcbind
 * protocol
 *
 * Based on RFC 1833: "Binding Protocols for ONC RPC Version 2" and
 * RFC 3530: "Network File System (NFS) version 4 Protocol"
 *
 * Original: Gilles Quillard, Bull Open Source, 2005 <gilles.quillard@bull.net>
 * Updated: Chuck Lever, Oracle Corporation, 2007 <chuck.lever@oracle.com>
 *
 * Descended from net/sunrpc/pmap_clnt.c,
 *  Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
 */

15 16
#include <linux/module.h>

17 18
#include <linux/types.h>
#include <linux/socket.h>
19 20
#include <linux/in.h>
#include <linux/in6.h>
21 22
#include <linux/kernel.h>
#include <linux/errno.h>
23
#include <net/ipv6.h>
24 25 26

#include <linux/sunrpc/clnt.h>
#include <linux/sunrpc/sched.h>
27
#include <linux/sunrpc/xprtsock.h>
28 29 30 31 32 33 34 35

#ifdef RPC_DEBUG
# define RPCDBG_FACILITY	RPCDBG_BIND
#endif

#define RPCBIND_PROGRAM		(100000u)
#define RPCBIND_PORT		(111u)

36 37 38 39
#define RPCBVERS_2		(2u)
#define RPCBVERS_3		(3u)
#define RPCBVERS_4		(4u)

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
enum {
	RPCBPROC_NULL,
	RPCBPROC_SET,
	RPCBPROC_UNSET,
	RPCBPROC_GETPORT,
	RPCBPROC_GETADDR = 3,		/* alias for GETPORT */
	RPCBPROC_DUMP,
	RPCBPROC_CALLIT,
	RPCBPROC_BCAST = 5,		/* alias for CALLIT */
	RPCBPROC_GETTIME,
	RPCBPROC_UADDR2TADDR,
	RPCBPROC_TADDR2UADDR,
	RPCBPROC_GETVERSADDR,
	RPCBPROC_INDIRECT,
	RPCBPROC_GETADDRLIST,
	RPCBPROC_GETSTAT,
};

#define RPCB_HIGHPROC_2		RPCBPROC_CALLIT
#define RPCB_HIGHPROC_3		RPCBPROC_TADDR2UADDR
#define RPCB_HIGHPROC_4		RPCBPROC_GETSTAT

/*
 * r_owner
 *
 * The "owner" is allowed to unset a service in the rpcbind database.
66 67 68 69 70 71 72 73
 *
 * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
 * UID which it maps to a local user name via a password lookup.
 * In all other cases it is ignored.
 *
 * For SET/UNSET requests, user space provides a value, even for
 * network requests, and GETADDR uses an empty string.  We follow
 * those precedents here.
74
 */
75
#define RPCB_OWNER_STRING	"0"
76 77
#define RPCB_MAXOWNERLEN	sizeof(RPCB_OWNER_STRING)

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
/*
 * XDR data type sizes
 */
#define RPCB_program_sz		(1)
#define RPCB_version_sz		(1)
#define RPCB_protocol_sz	(1)
#define RPCB_port_sz		(1)
#define RPCB_boolean_sz		(1)

#define RPCB_netid_sz		(1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
#define RPCB_addr_sz		(1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
#define RPCB_ownerstring_sz	(1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))

/*
 * XDR argument and result sizes
 */
#define RPCB_mappingargs_sz	(RPCB_program_sz + RPCB_version_sz + \
				RPCB_protocol_sz + RPCB_port_sz)
#define RPCB_getaddrargs_sz	(RPCB_program_sz + RPCB_version_sz + \
				RPCB_netid_sz + RPCB_addr_sz + \
				RPCB_ownerstring_sz)

#define RPCB_getportres_sz	RPCB_port_sz
#define RPCB_setres_sz		RPCB_boolean_sz

/*
 * Note that RFC 1833 does not put any size restrictions on the
 * address string returned by the remote rpcbind database.
 */
#define RPCB_getaddrres_sz	RPCB_addr_sz

109
static void			rpcb_getport_done(struct rpc_task *, void *);
110
static void			rpcb_map_release(void *data);
111
static struct rpc_program	rpcb_program;
112 113 114 115 116 117 118 119

struct rpcbind_args {
	struct rpc_xprt *	r_xprt;

	u32			r_prog;
	u32			r_vers;
	u32			r_prot;
	unsigned short		r_port;
120 121 122
	const char *		r_netid;
	const char *		r_addr;
	const char *		r_owner;
123 124

	int			r_status;
125 126 127 128
};

static struct rpc_procinfo rpcb_procedures2[];
static struct rpc_procinfo rpcb_procedures3[];
129
static struct rpc_procinfo rpcb_procedures4[];
130

131
struct rpcb_info {
132
	u32			rpc_vers;
133
	struct rpc_procinfo *	rpc_proc;
134 135 136 137
};

static struct rpcb_info rpcb_next_version[];
static struct rpcb_info rpcb_next_version6[];
138 139 140 141 142 143 144 145 146 147 148 149

static const struct rpc_call_ops rpcb_getport_ops = {
	.rpc_call_done		= rpcb_getport_done,
	.rpc_release		= rpcb_map_release,
};

static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
{
	xprt_clear_binding(xprt);
	rpc_wake_up_status(&xprt->binding, status);
}

150 151 152 153 154 155
static void rpcb_map_release(void *data)
{
	struct rpcbind_args *map = data;

	rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
	xprt_put(map->r_xprt);
156
	kfree(map->r_addr);
157 158 159
	kfree(map);
}

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
static const struct sockaddr_in rpcb_inaddr_loopback = {
	.sin_family		= AF_INET,
	.sin_addr.s_addr	= htonl(INADDR_LOOPBACK),
	.sin_port		= htons(RPCBIND_PORT),
};

static struct rpc_clnt *rpcb_create_local(struct sockaddr *addr,
					  size_t addrlen, u32 version)
{
	struct rpc_create_args args = {
		.protocol	= XPRT_TRANSPORT_UDP,
		.address	= addr,
		.addrsize	= addrlen,
		.servername	= "localhost",
		.program	= &rpcb_program,
		.version	= version,
		.authflavor	= RPC_AUTH_UNIX,
		.flags		= RPC_CLNT_CREATE_NOPING,
	};

	return rpc_create(&args);
}

183
static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
184
				    size_t salen, int proto, u32 version)
185 186 187 188
{
	struct rpc_create_args args = {
		.protocol	= proto,
		.address	= srvaddr,
189
		.addrsize	= salen,
190 191 192 193
		.servername	= hostname,
		.program	= &rpcb_program,
		.version	= version,
		.authflavor	= RPC_AUTH_UNIX,
194 195
		.flags		= (RPC_CLNT_CREATE_NOPING |
					RPC_CLNT_CREATE_NONPRIVPORT),
196 197
	};

198 199 200 201 202 203 204 205 206 207 208
	switch (srvaddr->sa_family) {
	case AF_INET:
		((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
		break;
	case AF_INET6:
		((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
		break;
	default:
		return NULL;
	}

209 210 211
	return rpc_create(&args);
}

212
static int rpcb_register_call(const u32 version, struct rpc_message *msg)
213
{
214 215
	struct sockaddr *addr = (struct sockaddr *)&rpcb_inaddr_loopback;
	size_t addrlen = sizeof(rpcb_inaddr_loopback);
216
	struct rpc_clnt *rpcb_clnt;
217
	int result, error = 0;
218

219
	msg->rpc_resp = &result;
220 221 222 223 224 225 226 227

	rpcb_clnt = rpcb_create_local(addr, addrlen, version);
	if (!IS_ERR(rpcb_clnt)) {
		error = rpc_call_sync(rpcb_clnt, msg, 0);
		rpc_shutdown_client(rpcb_clnt);
	} else
		error = PTR_ERR(rpcb_clnt);

228
	if (error < 0) {
229
		dprintk("RPC:       failed to contact local rpcbind "
230
				"server (errno %d).\n", -error);
231 232 233
		return error;
	}

234
	if (!result)
235 236
		return -EACCES;
	return 0;
237 238
}

239 240 241 242
/**
 * rpcb_register - set or unset a port registration with the local rpcbind svc
 * @prog: RPC program number to bind
 * @vers: RPC version number to bind
243
 * @prot: transport protocol to register
244
 * @port: port value to register
245 246 247 248 249
 *
 * Returns zero if the registration request was dispatched successfully
 * and the rpcbind daemon returned success.  Otherwise, returns an errno
 * value that reflects the nature of the error (request could not be
 * dispatched, timed out, or rpcbind returned an error).
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
 *
 * RPC services invoke this function to advertise their contact
 * information via the system's rpcbind daemon.  RPC services
 * invoke this function once for each [program, version, transport]
 * tuple they wish to advertise.
 *
 * Callers may also unregister RPC services that are no longer
 * available by setting the passed-in port to zero.  This removes
 * all registered transports for [program, version] from the local
 * rpcbind database.
 *
 * This function uses rpcbind protocol version 2 to contact the
 * local rpcbind daemon.
 *
 * Registration works over both AF_INET and AF_INET6, and services
 * registered via this function are advertised as available for any
 * address.  If the local rpcbind daemon is listening on AF_INET6,
 * services registered via this function will be advertised on
 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
 * addresses).
270
 */
271
int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port)
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
{
	struct rpcbind_args map = {
		.r_prog		= prog,
		.r_vers		= vers,
		.r_prot		= prot,
		.r_port		= port,
	};
	struct rpc_message msg = {
		.rpc_argp	= &map,
	};

	dprintk("RPC:       %sregistering (%u, %u, %d, %u) with local "
			"rpcbind\n", (port ? "" : "un"),
			prog, vers, prot, port);

287 288 289
	msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
	if (port)
		msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
290

291
	return rpcb_register_call(RPCBVERS_2, &msg);
292 293
}

294 295 296
/*
 * Fill in AF_INET family-specific arguments to register
 */
297 298
static int rpcb_register_inet4(const struct sockaddr *sap,
			       struct rpc_message *msg)
299
{
300
	const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
301
	struct rpcbind_args *map = msg->rpc_argp;
302
	unsigned short port = ntohs(sin->sin_port);
303
	int result;
304

305
	map->r_addr = rpc_sockaddr2uaddr(sap);
306 307 308 309 310 311 312 313 314 315

	dprintk("RPC:       %sregistering [%u, %u, %s, '%s'] with "
		"local rpcbind\n", (port ? "" : "un"),
			map->r_prog, map->r_vers,
			map->r_addr, map->r_netid);

	msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
	if (port)
		msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];

316 317 318
	result = rpcb_register_call(RPCBVERS_4, msg);
	kfree(map->r_addr);
	return result;
319 320 321 322 323
}

/*
 * Fill in AF_INET6 family-specific arguments to register
 */
324 325
static int rpcb_register_inet6(const struct sockaddr *sap,
			       struct rpc_message *msg)
326
{
327
	const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
328
	struct rpcbind_args *map = msg->rpc_argp;
329
	unsigned short port = ntohs(sin6->sin6_port);
330
	int result;
331

332
	map->r_addr = rpc_sockaddr2uaddr(sap);
333 334 335 336 337 338 339 340 341 342

	dprintk("RPC:       %sregistering [%u, %u, %s, '%s'] with "
		"local rpcbind\n", (port ? "" : "un"),
			map->r_prog, map->r_vers,
			map->r_addr, map->r_netid);

	msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
	if (port)
		msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];

343 344 345
	result = rpcb_register_call(RPCBVERS_4, msg);
	kfree(map->r_addr);
	return result;
346 347
}

348 349 350 351 352 353 354 355 356 357 358 359 360 361
static int rpcb_unregister_all_protofamilies(struct rpc_message *msg)
{
	struct rpcbind_args *map = msg->rpc_argp;

	dprintk("RPC:       unregistering [%u, %u, '%s'] with "
		"local rpcbind\n",
			map->r_prog, map->r_vers, map->r_netid);

	map->r_addr = "";
	msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];

	return rpcb_register_call(RPCBVERS_4, msg);
}

362 363 364 365 366 367
/**
 * rpcb_v4_register - set or unset a port registration with the local rpcbind
 * @program: RPC program number of service to (un)register
 * @version: RPC version number of service to (un)register
 * @address: address family, IP address, and port to (un)register
 * @netid: netid of transport protocol to (un)register
368 369 370 371 372
 *
 * Returns zero if the registration request was dispatched successfully
 * and the rpcbind daemon returned success.  Otherwise, returns an errno
 * value that reflects the nature of the error (request could not be
 * dispatched, timed out, or rpcbind returned an error).
373 374 375 376 377 378
 *
 * RPC services invoke this function to advertise their contact
 * information via the system's rpcbind daemon.  RPC services
 * invoke this function once for each [program, version, address,
 * netid] tuple they wish to advertise.
 *
379 380 381 382 383
 * Callers may also unregister RPC services that are registered at a
 * specific address by setting the port number in @address to zero.
 * They may unregister all registered protocol families at once for
 * a service by passing a NULL @address argument.  If @netid is ""
 * then all netids for [program, version, address] are unregistered.
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
 *
 * This function uses rpcbind protocol version 4 to contact the
 * local rpcbind daemon.  The local rpcbind daemon must support
 * version 4 of the rpcbind protocol in order for these functions
 * to register a service successfully.
 *
 * Supported netids include "udp" and "tcp" for UDP and TCP over
 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
 * respectively.
 *
 * The contents of @address determine the address family and the
 * port to be registered.  The usual practice is to pass INADDR_ANY
 * as the raw address, but specifying a non-zero address is also
 * supported by this API if the caller wishes to advertise an RPC
 * service on a specific network interface.
 *
 * Note that passing in INADDR_ANY does not create the same service
 * registration as IN6ADDR_ANY.  The former advertises an RPC
 * service on any IPv4 address, but not on IPv6.  The latter
 * advertises the service on all IPv4 and IPv6 addresses.
 */
int rpcb_v4_register(const u32 program, const u32 version,
406
		     const struct sockaddr *address, const char *netid)
407 408 409 410 411 412 413 414 415 416 417
{
	struct rpcbind_args map = {
		.r_prog		= program,
		.r_vers		= version,
		.r_netid	= netid,
		.r_owner	= RPCB_OWNER_STRING,
	};
	struct rpc_message msg = {
		.rpc_argp	= &map,
	};

418 419 420
	if (address == NULL)
		return rpcb_unregister_all_protofamilies(&msg);

421 422
	switch (address->sa_family) {
	case AF_INET:
423
		return rpcb_register_inet4(address, &msg);
424
	case AF_INET6:
425
		return rpcb_register_inet6(address, &msg);
426 427 428 429 430
	}

	return -EAFNOSUPPORT;
}

431
/**
432
 * rpcb_getport_sync - obtain the port for an RPC service on a given host
433 434 435 436 437
 * @sin: address of remote peer
 * @prog: RPC program number to bind
 * @vers: RPC version number to bind
 * @prot: transport protocol to use to make this request
 *
438 439 440
 * Return value is the requested advertised port number,
 * or a negative errno value.
 *
441
 * Called from outside the RPC client in a synchronous task context.
442
 * Uses default timeout parameters specified by underlying transport.
443
 *
444
 * XXX: Needs to support IPv6
445
 */
446
int rpcb_getport_sync(struct sockaddr_in *sin, u32 prog, u32 vers, int prot)
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
{
	struct rpcbind_args map = {
		.r_prog		= prog,
		.r_vers		= vers,
		.r_prot		= prot,
		.r_port		= 0,
	};
	struct rpc_message msg = {
		.rpc_proc	= &rpcb_procedures2[RPCBPROC_GETPORT],
		.rpc_argp	= &map,
		.rpc_resp	= &map.r_port,
	};
	struct rpc_clnt	*rpcb_clnt;
	int status;

H
Harvey Harrison 已提交
462 463
	dprintk("RPC:       %s(%pI4, %u, %u, %d)\n",
		__func__, &sin->sin_addr.s_addr, prog, vers, prot);
464

465
	rpcb_clnt = rpcb_create(NULL, (struct sockaddr *)sin,
466
				sizeof(*sin), prot, RPCBVERS_2);
467 468 469 470
	if (IS_ERR(rpcb_clnt))
		return PTR_ERR(rpcb_clnt);

	status = rpc_call_sync(rpcb_clnt, &msg, 0);
471
	rpc_shutdown_client(rpcb_clnt);
472 473 474 475 476 477 478 479

	if (status >= 0) {
		if (map.r_port != 0)
			return map.r_port;
		status = -EACCES;
	}
	return status;
}
480
EXPORT_SYMBOL_GPL(rpcb_getport_sync);
481

482
static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
483 484
{
	struct rpc_message msg = {
485
		.rpc_proc = proc,
486 487 488 489 490 491 492 493 494 495 496 497 498 499
		.rpc_argp = map,
		.rpc_resp = &map->r_port,
	};
	struct rpc_task_setup task_setup_data = {
		.rpc_client = rpcb_clnt,
		.rpc_message = &msg,
		.callback_ops = &rpcb_getport_ops,
		.callback_data = map,
		.flags = RPC_TASK_ASYNC,
	};

	return rpc_run_task(&task_setup_data);
}

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
/*
 * In the case where rpc clients have been cloned, we want to make
 * sure that we use the program number/version etc of the actual
 * owner of the xprt. To do so, we walk back up the tree of parents
 * to find whoever created the transport and/or whoever has the
 * autobind flag set.
 */
static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
{
	struct rpc_clnt *parent = clnt->cl_parent;

	while (parent != clnt) {
		if (parent->cl_xprt != clnt->cl_xprt)
			break;
		if (clnt->cl_autobind)
			break;
		clnt = parent;
		parent = parent->cl_parent;
	}
	return clnt;
}

522
/**
523
 * rpcb_getport_async - obtain the port for a given RPC service on a given host
524 525 526 527 528
 * @task: task that is waiting for portmapper request
 *
 * This one can be called for an ongoing RPC request, and can be used in
 * an async (rpciod) context.
 */
529
void rpcb_getport_async(struct rpc_task *task)
530
{
531
	struct rpc_clnt *clnt;
532
	struct rpc_procinfo *proc;
533
	u32 bind_version;
534
	struct rpc_xprt *xprt;
535 536 537
	struct rpc_clnt	*rpcb_clnt;
	static struct rpcbind_args *map;
	struct rpc_task	*child;
538 539 540
	struct sockaddr_storage addr;
	struct sockaddr *sap = (struct sockaddr *)&addr;
	size_t salen;
541 542
	int status;

543 544 545
	clnt = rpcb_find_transport_owner(task->tk_client);
	xprt = clnt->cl_xprt;

546
	dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
547
		task->tk_pid, __func__,
548
		clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
549

550 551 552 553
	/* Put self on the wait queue to ensure we get notified if
	 * some other task is already attempting to bind the port */
	rpc_sleep_on(&xprt->binding, task, NULL);

554
	if (xprt_test_and_set_binding(xprt)) {
555
		dprintk("RPC: %5u %s: waiting for another binder\n",
556
			task->tk_pid, __func__);
557
		return;
558 559 560 561 562
	}

	/* Someone else may have bound if we slept */
	if (xprt_bound(xprt)) {
		status = 0;
563
		dprintk("RPC: %5u %s: already bound\n",
564
			task->tk_pid, __func__);
565 566 567
		goto bailout_nofree;
	}

568
	/* Parent transport's destination address */
569
	salen = rpc_peeraddr(clnt, sap, sizeof(addr));
570 571

	/* Don't ever use rpcbind v2 for AF_INET6 requests */
572
	switch (sap->sa_family) {
573
	case AF_INET:
574 575
		proc = rpcb_next_version[xprt->bind_index].rpc_proc;
		bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
576 577
		break;
	case AF_INET6:
578 579
		proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
		bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
580 581 582 583
		break;
	default:
		status = -EAFNOSUPPORT;
		dprintk("RPC: %5u %s: bad address family\n",
584
				task->tk_pid, __func__);
585 586
		goto bailout_nofree;
	}
587
	if (proc == NULL) {
588
		xprt->bind_index = 0;
589
		status = -EPFNOSUPPORT;
590
		dprintk("RPC: %5u %s: no more getport versions available\n",
591
			task->tk_pid, __func__);
592 593 594
		goto bailout_nofree;
	}

595
	dprintk("RPC: %5u %s: trying rpcbind version %u\n",
596
		task->tk_pid, __func__, bind_version);
597

598
	rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
599
				bind_version);
600 601 602
	if (IS_ERR(rpcb_clnt)) {
		status = PTR_ERR(rpcb_clnt);
		dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
603
			task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
604 605 606
		goto bailout_nofree;
	}

607 608 609
	map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
	if (!map) {
		status = -ENOMEM;
610
		dprintk("RPC: %5u %s: no memory available\n",
611
			task->tk_pid, __func__);
612
		goto bailout_release_client;
613 614 615 616 617 618
	}
	map->r_prog = clnt->cl_prog;
	map->r_vers = clnt->cl_vers;
	map->r_prot = xprt->prot;
	map->r_port = 0;
	map->r_xprt = xprt_get(xprt);
619
	map->r_status = -EIO;
620

621 622 623 624 625 626 627 628 629 630 631 632 633 634
	switch (bind_version) {
	case RPCBVERS_4:
	case RPCBVERS_3:
		map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
		map->r_addr = rpc_sockaddr2uaddr(sap);
		map->r_owner = "";
		break;
	case RPCBVERS_2:
		map->r_addr = NULL;
		break;
	default:
		BUG();
	}

635
	child = rpcb_call_async(rpcb_clnt, map, proc);
636
	rpc_release_client(rpcb_clnt);
637
	if (IS_ERR(child)) {
638
		/* rpcb_map_release() has freed the arguments */
639
		dprintk("RPC: %5u %s: rpc_run_task failed\n",
640
			task->tk_pid, __func__);
641
		return;
642 643
	}

644 645
	xprt->stat.bind_count++;
	rpc_put_task(child);
646 647
	return;

648 649
bailout_release_client:
	rpc_release_client(rpcb_clnt);
650 651 652 653
bailout_nofree:
	rpcb_wake_rpcbind_waiters(xprt, status);
	task->tk_status = status;
}
654
EXPORT_SYMBOL_GPL(rpcb_getport_async);
655 656 657 658 659 660 661 662 663 664

/*
 * Rpcbind child task calls this callback via tk_exit.
 */
static void rpcb_getport_done(struct rpc_task *child, void *data)
{
	struct rpcbind_args *map = data;
	struct rpc_xprt *xprt = map->r_xprt;
	int status = child->tk_status;

C
Chuck Lever 已提交
665 666 667 668
	/* Garbage reply: retry with a lesser rpcbind version */
	if (status == -EIO)
		status = -EPROTONOSUPPORT;

669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
	/* rpcbind server doesn't support this rpcbind protocol version */
	if (status == -EPROTONOSUPPORT)
		xprt->bind_index++;

	if (status < 0) {
		/* rpcbind server not available on remote host? */
		xprt->ops->set_port(xprt, 0);
	} else if (map->r_port == 0) {
		/* Requested RPC service wasn't registered on remote host */
		xprt->ops->set_port(xprt, 0);
		status = -EACCES;
	} else {
		/* Succeeded */
		xprt->ops->set_port(xprt, map->r_port);
		xprt_set_bound(xprt);
		status = 0;
	}

	dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
			child->tk_pid, status, map->r_port);

690
	map->r_status = status;
691 692
}

693 694 695 696
/*
 * XDR functions for rpcbind
 */

697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
static int rpcb_enc_mapping(struct rpc_rqst *req, __be32 *p,
			    const struct rpcbind_args *rpcb)
{
	struct rpc_task *task = req->rq_task;
	struct xdr_stream xdr;

	dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
			task->tk_pid, task->tk_msg.rpc_proc->p_name,
			rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);

	xdr_init_encode(&xdr, &req->rq_snd_buf, p);

	p = xdr_reserve_space(&xdr, sizeof(__be32) * RPCB_mappingargs_sz);
	if (unlikely(p == NULL))
		return -EIO;

	*p++ = htonl(rpcb->r_prog);
	*p++ = htonl(rpcb->r_vers);
	*p++ = htonl(rpcb->r_prot);
	*p   = htonl(rpcb->r_port);

	return 0;
}

721 722 723 724
static int rpcb_decode_getport(struct rpc_rqst *req, __be32 *p,
			       unsigned short *portp)
{
	*portp = (unsigned short) ntohl(*p++);
725
	dprintk("RPC:       rpcb getport result: %u\n",
726 727 728 729 730 731 732 733
			*portp);
	return 0;
}

static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
			   unsigned int *boolp)
{
	*boolp = (unsigned int) ntohl(*p++);
734
	dprintk("RPC:       rpcb set/unset call %s\n",
735
			(*boolp ? "succeeded" : "failed"));
736 737 738
	return 0;
}

739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
static int encode_rpcb_string(struct xdr_stream *xdr, const char *string,
				const u32 maxstrlen)
{
	u32 len;
	__be32 *p;

	if (unlikely(string == NULL))
		return -EIO;
	len = strlen(string);
	if (unlikely(len > maxstrlen))
		return -EIO;

	p = xdr_reserve_space(xdr, sizeof(__be32) + len);
	if (unlikely(p == NULL))
		return -EIO;
	xdr_encode_opaque(p, string, len);

	return 0;
}

static int rpcb_enc_getaddr(struct rpc_rqst *req, __be32 *p,
			    const struct rpcbind_args *rpcb)
{
	struct rpc_task *task = req->rq_task;
	struct xdr_stream xdr;

	dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
			task->tk_pid, task->tk_msg.rpc_proc->p_name,
			rpcb->r_prog, rpcb->r_vers,
			rpcb->r_netid, rpcb->r_addr);

	xdr_init_encode(&xdr, &req->rq_snd_buf, p);

	p = xdr_reserve_space(&xdr,
			sizeof(__be32) * (RPCB_program_sz + RPCB_version_sz));
	if (unlikely(p == NULL))
		return -EIO;
	*p++ = htonl(rpcb->r_prog);
	*p = htonl(rpcb->r_vers);

	if (encode_rpcb_string(&xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN))
		return -EIO;
	if (encode_rpcb_string(&xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN))
		return -EIO;
	if (encode_rpcb_string(&xdr, rpcb->r_owner, RPCB_MAXOWNERLEN))
		return -EIO;

	return 0;
}

789 790 791 792
static int rpcb_decode_getaddr(struct rpc_rqst *req, __be32 *p,
			       unsigned short *portp)
{
	char *addr;
793 794
	u32 addr_len;
	int c, i, f, first, val;
795 796

	*portp = 0;
797
	addr_len = ntohl(*p++);
798

799 800 801 802 803 804
	if (addr_len == 0) {
		dprintk("RPC:       rpcb_decode_getaddr: "
					"service is not registered\n");
		return 0;
	}

805
	/*
806
	 * Simple sanity check.
807
	 */
808
	if (addr_len > RPCBIND_MAXUADDRLEN)
809 810 811 812 813 814 815
		goto out_err;

	/*
	 * Start at the end and walk backwards until the first dot
	 * is encountered.  When the second dot is found, we have
	 * both parts of the port number.
	 */
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	addr = (char *)p;
	val = 0;
	first = 1;
	f = 1;
	for (i = addr_len - 1; i > 0; i--) {
		c = addr[i];
		if (c >= '0' && c <= '9') {
			val += (c - '0') * f;
			f *= 10;
		} else if (c == '.') {
			if (first) {
				*portp = val;
				val = first = 0;
				f = 1;
			} else {
				*portp |= (val << 8);
				break;
			}
		}
	}

837 838 839 840 841 842 843
	/*
	 * Simple sanity check.  If we never saw a dot in the reply,
	 * then this was probably just garbage.
	 */
	if (first)
		goto out_err;

844 845
	dprintk("RPC:       rpcb_decode_getaddr port=%u\n", *portp);
	return 0;
846 847 848 849

out_err:
	dprintk("RPC:       rpcbind server returned malformed reply\n");
	return -EIO;
850 851 852 853 854
}

#define PROC(proc, argtype, restype)					\
	[RPCBPROC_##proc] = {						\
		.p_proc		= RPCBPROC_##proc,			\
855
		.p_encode	= (kxdrproc_t) rpcb_enc_##argtype,	\
856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
		.p_decode	= (kxdrproc_t) rpcb_decode_##restype,	\
		.p_arglen	= RPCB_##argtype##args_sz,		\
		.p_replen	= RPCB_##restype##res_sz,		\
		.p_statidx	= RPCBPROC_##proc,			\
		.p_timer	= 0,					\
		.p_name		= #proc,				\
	}

/*
 * Not all rpcbind procedures described in RFC 1833 are implemented
 * since the Linux kernel RPC code requires only these.
 */
static struct rpc_procinfo rpcb_procedures2[] = {
	PROC(SET,		mapping,	set),
	PROC(UNSET,		mapping,	set),
871
	PROC(GETPORT,		mapping,	getport),
872 873 874
};

static struct rpc_procinfo rpcb_procedures3[] = {
875 876
	PROC(SET,		getaddr,	set),
	PROC(UNSET,		getaddr,	set),
877 878 879 880
	PROC(GETADDR,		getaddr,	getaddr),
};

static struct rpc_procinfo rpcb_procedures4[] = {
881 882
	PROC(SET,		getaddr,	set),
	PROC(UNSET,		getaddr,	set),
883
	PROC(GETADDR,		getaddr,	getaddr),
884 885 886 887
	PROC(GETVERSADDR,	getaddr,	getaddr),
};

static struct rpcb_info rpcb_next_version[] = {
888 889 890 891 892 893 894
	{
		.rpc_vers	= RPCBVERS_2,
		.rpc_proc	= &rpcb_procedures2[RPCBPROC_GETPORT],
	},
	{
		.rpc_proc	= NULL,
	},
895 896
};

897
static struct rpcb_info rpcb_next_version6[] = {
898 899
	{
		.rpc_vers	= RPCBVERS_4,
900
		.rpc_proc	= &rpcb_procedures4[RPCBPROC_GETADDR],
901 902 903 904 905 906 907 908
	},
	{
		.rpc_vers	= RPCBVERS_3,
		.rpc_proc	= &rpcb_procedures3[RPCBPROC_GETADDR],
	},
	{
		.rpc_proc	= NULL,
	},
909 910
};

911
static struct rpc_version rpcb_version2 = {
912
	.number		= RPCBVERS_2,
913 914 915 916 917
	.nrprocs	= RPCB_HIGHPROC_2,
	.procs		= rpcb_procedures2
};

static struct rpc_version rpcb_version3 = {
918
	.number		= RPCBVERS_3,
919 920 921 922 923
	.nrprocs	= RPCB_HIGHPROC_3,
	.procs		= rpcb_procedures3
};

static struct rpc_version rpcb_version4 = {
924
	.number		= RPCBVERS_4,
925 926 927 928 929 930 931 932 933 934 935 936 937 938
	.nrprocs	= RPCB_HIGHPROC_4,
	.procs		= rpcb_procedures4
};

static struct rpc_version *rpcb_version[] = {
	NULL,
	NULL,
	&rpcb_version2,
	&rpcb_version3,
	&rpcb_version4
};

static struct rpc_stat rpcb_stats;

939
static struct rpc_program rpcb_program = {
940 941 942 943 944 945
	.name		= "rpcbind",
	.number		= RPCBIND_PROGRAM,
	.nrvers		= ARRAY_SIZE(rpcb_version),
	.version	= rpcb_version,
	.stats		= &rpcb_stats,
};