blob: ad1d7315c4980ca3a28f8a69783cbf106f70730e [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 Leverd5b64432007-08-06 11:57:18 -040019#include <linux/in.h>
20#include <linux/in6.h>
Chuck Levera5090502007-03-29 16:48:04 -040021#include <linux/kernel.h>
22#include <linux/errno.h>
Chuck Lever9d548b92008-09-15 16:27:30 -050023#include <net/ipv6.h>
Chuck Levera5090502007-03-29 16:48:04 -040024
25#include <linux/sunrpc/clnt.h>
26#include <linux/sunrpc/sched.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040027#include <linux/sunrpc/xprtsock.h>
Chuck Levera5090502007-03-29 16:48:04 -040028
29#ifdef RPC_DEBUG
30# define RPCDBG_FACILITY RPCDBG_BIND
31#endif
32
33#define RPCBIND_PROGRAM (100000u)
34#define RPCBIND_PORT (111u)
35
Chuck Leverfc200e72008-06-25 17:24:31 -040036#define RPCBVERS_2 (2u)
37#define RPCBVERS_3 (3u)
38#define RPCBVERS_4 (4u)
39
Chuck Levera5090502007-03-29 16:48:04 -040040enum {
41 RPCBPROC_NULL,
42 RPCBPROC_SET,
43 RPCBPROC_UNSET,
44 RPCBPROC_GETPORT,
45 RPCBPROC_GETADDR = 3, /* alias for GETPORT */
46 RPCBPROC_DUMP,
47 RPCBPROC_CALLIT,
48 RPCBPROC_BCAST = 5, /* alias for CALLIT */
49 RPCBPROC_GETTIME,
50 RPCBPROC_UADDR2TADDR,
51 RPCBPROC_TADDR2UADDR,
52 RPCBPROC_GETVERSADDR,
53 RPCBPROC_INDIRECT,
54 RPCBPROC_GETADDRLIST,
55 RPCBPROC_GETSTAT,
56};
57
58#define RPCB_HIGHPROC_2 RPCBPROC_CALLIT
59#define RPCB_HIGHPROC_3 RPCBPROC_TADDR2UADDR
60#define RPCB_HIGHPROC_4 RPCBPROC_GETSTAT
61
62/*
Chuck Levera5090502007-03-29 16:48:04 -040063 * r_owner
64 *
65 * The "owner" is allowed to unset a service in the rpcbind database.
Chuck Lever126e4bc2009-03-18 20:47:14 -040066 *
67 * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
68 * UID which it maps to a local user name via a password lookup.
69 * In all other cases it is ignored.
70 *
71 * For SET/UNSET requests, user space provides a value, even for
72 * network requests, and GETADDR uses an empty string. We follow
73 * those precedents here.
Chuck Levera5090502007-03-29 16:48:04 -040074 */
Chuck Lever126e4bc2009-03-18 20:47:14 -040075#define RPCB_OWNER_STRING "0"
Chuck Levera5090502007-03-29 16:48:04 -040076#define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
77
Chuck Lever0b10bf52009-08-09 15:09:33 -040078/*
79 * XDR data type sizes
80 */
81#define RPCB_program_sz (1)
82#define RPCB_version_sz (1)
83#define RPCB_protocol_sz (1)
84#define RPCB_port_sz (1)
85#define RPCB_boolean_sz (1)
86
87#define RPCB_netid_sz (1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
88#define RPCB_addr_sz (1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
89#define RPCB_ownerstring_sz (1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))
90
91/*
92 * XDR argument and result sizes
93 */
94#define RPCB_mappingargs_sz (RPCB_program_sz + RPCB_version_sz + \
95 RPCB_protocol_sz + RPCB_port_sz)
96#define RPCB_getaddrargs_sz (RPCB_program_sz + RPCB_version_sz + \
97 RPCB_netid_sz + RPCB_addr_sz + \
98 RPCB_ownerstring_sz)
99
100#define RPCB_getportres_sz RPCB_port_sz
101#define RPCB_setres_sz RPCB_boolean_sz
102
103/*
104 * Note that RFC 1833 does not put any size restrictions on the
105 * address string returned by the remote rpcbind database.
106 */
107#define RPCB_getaddrres_sz RPCB_addr_sz
108
Chuck Levera5090502007-03-29 16:48:04 -0400109static void rpcb_getport_done(struct rpc_task *, void *);
Trond Myklebust381ba742008-07-07 12:18:53 -0400110static void rpcb_map_release(void *data);
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200111static struct rpc_program rpcb_program;
Chuck Levera5090502007-03-29 16:48:04 -0400112
113struct rpcbind_args {
114 struct rpc_xprt * r_xprt;
115
116 u32 r_prog;
117 u32 r_vers;
118 u32 r_prot;
119 unsigned short r_port;
Trond Myklebust86d61d82008-01-07 21:16:56 -0500120 const char * r_netid;
121 const char * r_addr;
122 const char * r_owner;
Trond Myklebust381ba742008-07-07 12:18:53 -0400123
124 int r_status;
Chuck Levera5090502007-03-29 16:48:04 -0400125};
126
127static struct rpc_procinfo rpcb_procedures2[];
128static struct rpc_procinfo rpcb_procedures3[];
Chuck Leverc2e1b092008-07-14 16:03:30 -0400129static struct rpc_procinfo rpcb_procedures4[];
Chuck Levera5090502007-03-29 16:48:04 -0400130
Chuck Leverd5b64432007-08-06 11:57:18 -0400131struct rpcb_info {
Chuck Leverfc200e72008-06-25 17:24:31 -0400132 u32 rpc_vers;
Chuck Levera5090502007-03-29 16:48:04 -0400133 struct rpc_procinfo * rpc_proc;
Chuck Leverd5b64432007-08-06 11:57:18 -0400134};
135
136static struct rpcb_info rpcb_next_version[];
137static struct rpcb_info rpcb_next_version6[];
Chuck Levera5090502007-03-29 16:48:04 -0400138
Chuck Levera5090502007-03-29 16:48:04 -0400139static const struct rpc_call_ops rpcb_getport_ops = {
Chuck Levera5090502007-03-29 16:48:04 -0400140 .rpc_call_done = rpcb_getport_done,
141 .rpc_release = rpcb_map_release,
142};
143
144static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
145{
146 xprt_clear_binding(xprt);
147 rpc_wake_up_status(&xprt->binding, status);
148}
149
Trond Myklebust381ba742008-07-07 12:18:53 -0400150static void rpcb_map_release(void *data)
151{
152 struct rpcbind_args *map = data;
153
154 rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
155 xprt_put(map->r_xprt);
156 kfree(map);
157}
158
Chuck Levercc5598b2008-07-14 16:03:27 -0400159static const struct sockaddr_in rpcb_inaddr_loopback = {
160 .sin_family = AF_INET,
161 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
162 .sin_port = htons(RPCBIND_PORT),
163};
164
165static struct rpc_clnt *rpcb_create_local(struct sockaddr *addr,
166 size_t addrlen, u32 version)
167{
168 struct rpc_create_args args = {
169 .protocol = XPRT_TRANSPORT_UDP,
170 .address = addr,
171 .addrsize = addrlen,
172 .servername = "localhost",
173 .program = &rpcb_program,
174 .version = version,
175 .authflavor = RPC_AUTH_UNIX,
176 .flags = RPC_CLNT_CREATE_NOPING,
177 };
178
179 return rpc_create(&args);
180}
181
Chuck Levera5090502007-03-29 16:48:04 -0400182static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
Chuck Lever423d8b02008-07-14 16:03:28 -0400183 size_t salen, int proto, u32 version)
Chuck Levera5090502007-03-29 16:48:04 -0400184{
185 struct rpc_create_args args = {
186 .protocol = proto,
187 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500188 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400189 .servername = hostname,
190 .program = &rpcb_program,
191 .version = version,
192 .authflavor = RPC_AUTH_UNIX,
Chuck Lever423d8b02008-07-14 16:03:28 -0400193 .flags = (RPC_CLNT_CREATE_NOPING |
194 RPC_CLNT_CREATE_NONPRIVPORT),
Chuck Levera5090502007-03-29 16:48:04 -0400195 };
196
Chuck Leverd5b64432007-08-06 11:57:18 -0400197 switch (srvaddr->sa_family) {
198 case AF_INET:
199 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
200 break;
201 case AF_INET6:
202 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
203 break;
204 default:
205 return NULL;
206 }
207
Chuck Levera5090502007-03-29 16:48:04 -0400208 return rpc_create(&args);
209}
210
Chuck Lever3aba4552009-03-18 20:47:06 -0400211static int rpcb_register_call(const u32 version, struct rpc_message *msg)
Chuck Leverbabe80e2008-07-14 16:03:29 -0400212{
Chuck Leverfc28dec2009-03-18 20:46:51 -0400213 struct sockaddr *addr = (struct sockaddr *)&rpcb_inaddr_loopback;
214 size_t addrlen = sizeof(rpcb_inaddr_loopback);
Chuck Leverbabe80e2008-07-14 16:03:29 -0400215 struct rpc_clnt *rpcb_clnt;
Chuck Lever14aeb212008-08-18 19:34:00 -0400216 int result, error = 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400217
Chuck Lever14aeb212008-08-18 19:34:00 -0400218 msg->rpc_resp = &result;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400219
220 rpcb_clnt = rpcb_create_local(addr, addrlen, version);
221 if (!IS_ERR(rpcb_clnt)) {
222 error = rpc_call_sync(rpcb_clnt, msg, 0);
223 rpc_shutdown_client(rpcb_clnt);
224 } else
225 error = PTR_ERR(rpcb_clnt);
226
Chuck Lever14aeb212008-08-18 19:34:00 -0400227 if (error < 0) {
Chuck Lever363f7242009-03-18 20:47:44 -0400228 dprintk("RPC: failed to contact local rpcbind "
Chuck Leverbabe80e2008-07-14 16:03:29 -0400229 "server (errno %d).\n", -error);
Chuck Lever14aeb212008-08-18 19:34:00 -0400230 return error;
231 }
Chuck Leverbabe80e2008-07-14 16:03:29 -0400232
Chuck Leverdb820d62008-09-25 11:57:05 -0400233 if (!result)
Chuck Lever14aeb212008-08-18 19:34:00 -0400234 return -EACCES;
Chuck Lever14aeb212008-08-18 19:34:00 -0400235 return 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400236}
237
Chuck Levera5090502007-03-29 16:48:04 -0400238/**
239 * rpcb_register - set or unset a port registration with the local rpcbind svc
240 * @prog: RPC program number to bind
241 * @vers: RPC version number to bind
Chuck Leverc2e1b092008-07-14 16:03:30 -0400242 * @prot: transport protocol to register
Chuck Levera5090502007-03-29 16:48:04 -0400243 * @port: port value to register
Chuck Lever14aeb212008-08-18 19:34:00 -0400244 *
245 * Returns zero if the registration request was dispatched successfully
246 * and the rpcbind daemon returned success. Otherwise, returns an errno
247 * value that reflects the nature of the error (request could not be
248 * dispatched, timed out, or rpcbind returned an error).
Chuck Levera5090502007-03-29 16:48:04 -0400249 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400250 * RPC services invoke this function to advertise their contact
251 * information via the system's rpcbind daemon. RPC services
252 * invoke this function once for each [program, version, transport]
253 * tuple they wish to advertise.
Chuck Levera5090502007-03-29 16:48:04 -0400254 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400255 * Callers may also unregister RPC services that are no longer
256 * available by setting the passed-in port to zero. This removes
257 * all registered transports for [program, version] from the local
258 * rpcbind database.
259 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400260 * This function uses rpcbind protocol version 2 to contact the
261 * local rpcbind daemon.
262 *
263 * Registration works over both AF_INET and AF_INET6, and services
264 * registered via this function are advertised as available for any
265 * address. If the local rpcbind daemon is listening on AF_INET6,
266 * services registered via this function will be advertised on
267 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
268 * addresses).
Chuck Levera5090502007-03-29 16:48:04 -0400269 */
Chuck Lever14aeb212008-08-18 19:34:00 -0400270int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port)
Chuck Levera5090502007-03-29 16:48:04 -0400271{
Chuck Levera5090502007-03-29 16:48:04 -0400272 struct rpcbind_args map = {
273 .r_prog = prog,
274 .r_vers = vers,
275 .r_prot = prot,
276 .r_port = port,
277 };
278 struct rpc_message msg = {
Chuck Levera5090502007-03-29 16:48:04 -0400279 .rpc_argp = &map,
Chuck Levera5090502007-03-29 16:48:04 -0400280 };
Chuck Levera5090502007-03-29 16:48:04 -0400281
282 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
283 "rpcbind\n", (port ? "" : "un"),
284 prog, vers, prot, port);
285
Chuck Leverbabe80e2008-07-14 16:03:29 -0400286 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
287 if (port)
288 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
289
Chuck Leverfc28dec2009-03-18 20:46:51 -0400290 return rpcb_register_call(RPCBVERS_2, &msg);
Chuck Levera5090502007-03-29 16:48:04 -0400291}
292
Chuck Leverc2e1b092008-07-14 16:03:30 -0400293/*
294 * Fill in AF_INET family-specific arguments to register
295 */
Chuck Lever1673d0d2009-03-18 20:47:21 -0400296static int rpcb_register_inet4(const struct sockaddr *sap,
297 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400298{
Chuck Lever3aba4552009-03-18 20:47:06 -0400299 const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400300 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400301 unsigned short port = ntohs(sin->sin_port);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400302 char buf[32];
303
304 /* Construct AF_INET universal address */
Harvey Harrison21454aa2008-10-31 00:54:56 -0700305 snprintf(buf, sizeof(buf), "%pI4.%u.%u",
Chuck Lever3aba4552009-03-18 20:47:06 -0400306 &sin->sin_addr.s_addr, port >> 8, port & 0xff);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400307 map->r_addr = buf;
308
309 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
310 "local rpcbind\n", (port ? "" : "un"),
311 map->r_prog, map->r_vers,
312 map->r_addr, map->r_netid);
313
314 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
315 if (port)
316 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
317
Chuck Leverfc28dec2009-03-18 20:46:51 -0400318 return rpcb_register_call(RPCBVERS_4, msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400319}
320
321/*
322 * Fill in AF_INET6 family-specific arguments to register
323 */
Chuck Lever1673d0d2009-03-18 20:47:21 -0400324static int rpcb_register_inet6(const struct sockaddr *sap,
325 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400326{
Chuck Lever3aba4552009-03-18 20:47:06 -0400327 const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400328 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400329 unsigned short port = ntohs(sin6->sin6_port);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400330 char buf[64];
331
332 /* Construct AF_INET6 universal address */
Chuck Lever3aba4552009-03-18 20:47:06 -0400333 if (ipv6_addr_any(&sin6->sin6_addr))
Chuck Lever9d548b92008-09-15 16:27:30 -0500334 snprintf(buf, sizeof(buf), "::.%u.%u",
335 port >> 8, port & 0xff);
336 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700337 snprintf(buf, sizeof(buf), "%pI6.%u.%u",
Chuck Lever3aba4552009-03-18 20:47:06 -0400338 &sin6->sin6_addr, port >> 8, port & 0xff);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400339 map->r_addr = buf;
340
341 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
342 "local rpcbind\n", (port ? "" : "un"),
343 map->r_prog, map->r_vers,
344 map->r_addr, map->r_netid);
345
346 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
347 if (port)
348 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
349
Chuck Leverfc28dec2009-03-18 20:46:51 -0400350 return rpcb_register_call(RPCBVERS_4, msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400351}
352
Chuck Lever1673d0d2009-03-18 20:47:21 -0400353static int rpcb_unregister_all_protofamilies(struct rpc_message *msg)
354{
355 struct rpcbind_args *map = msg->rpc_argp;
356
357 dprintk("RPC: unregistering [%u, %u, '%s'] with "
358 "local rpcbind\n",
359 map->r_prog, map->r_vers, map->r_netid);
360
361 map->r_addr = "";
362 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
363
364 return rpcb_register_call(RPCBVERS_4, msg);
365}
366
Chuck Leverc2e1b092008-07-14 16:03:30 -0400367/**
368 * rpcb_v4_register - set or unset a port registration with the local rpcbind
369 * @program: RPC program number of service to (un)register
370 * @version: RPC version number of service to (un)register
371 * @address: address family, IP address, and port to (un)register
372 * @netid: netid of transport protocol to (un)register
Chuck Lever14aeb212008-08-18 19:34:00 -0400373 *
374 * Returns zero if the registration request was dispatched successfully
375 * and the rpcbind daemon returned success. Otherwise, returns an errno
376 * value that reflects the nature of the error (request could not be
377 * dispatched, timed out, or rpcbind returned an error).
Chuck Leverc2e1b092008-07-14 16:03:30 -0400378 *
379 * RPC services invoke this function to advertise their contact
380 * information via the system's rpcbind daemon. RPC services
381 * invoke this function once for each [program, version, address,
382 * netid] tuple they wish to advertise.
383 *
Chuck Lever1673d0d2009-03-18 20:47:21 -0400384 * Callers may also unregister RPC services that are registered at a
385 * specific address by setting the port number in @address to zero.
386 * They may unregister all registered protocol families at once for
387 * a service by passing a NULL @address argument. If @netid is ""
388 * then all netids for [program, version, address] are unregistered.
Chuck Leverc2e1b092008-07-14 16:03:30 -0400389 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400390 * This function uses rpcbind protocol version 4 to contact the
391 * local rpcbind daemon. The local rpcbind daemon must support
392 * version 4 of the rpcbind protocol in order for these functions
393 * to register a service successfully.
394 *
395 * Supported netids include "udp" and "tcp" for UDP and TCP over
396 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
397 * respectively.
398 *
399 * The contents of @address determine the address family and the
400 * port to be registered. The usual practice is to pass INADDR_ANY
401 * as the raw address, but specifying a non-zero address is also
402 * supported by this API if the caller wishes to advertise an RPC
403 * service on a specific network interface.
404 *
405 * Note that passing in INADDR_ANY does not create the same service
406 * registration as IN6ADDR_ANY. The former advertises an RPC
407 * service on any IPv4 address, but not on IPv6. The latter
408 * advertises the service on all IPv4 and IPv6 addresses.
409 */
410int rpcb_v4_register(const u32 program, const u32 version,
Chuck Lever14aeb212008-08-18 19:34:00 -0400411 const struct sockaddr *address, const char *netid)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400412{
413 struct rpcbind_args map = {
414 .r_prog = program,
415 .r_vers = version,
416 .r_netid = netid,
417 .r_owner = RPCB_OWNER_STRING,
418 };
419 struct rpc_message msg = {
420 .rpc_argp = &map,
Chuck Leverc2e1b092008-07-14 16:03:30 -0400421 };
422
Chuck Lever1673d0d2009-03-18 20:47:21 -0400423 if (address == NULL)
424 return rpcb_unregister_all_protofamilies(&msg);
425
Chuck Leverc2e1b092008-07-14 16:03:30 -0400426 switch (address->sa_family) {
427 case AF_INET:
Chuck Lever1673d0d2009-03-18 20:47:21 -0400428 return rpcb_register_inet4(address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400429 case AF_INET6:
Chuck Lever1673d0d2009-03-18 20:47:21 -0400430 return rpcb_register_inet6(address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400431 }
432
433 return -EAFNOSUPPORT;
434}
435
Chuck Levera5090502007-03-29 16:48:04 -0400436/**
Chuck Levercce63cd2007-07-01 12:13:12 -0400437 * rpcb_getport_sync - obtain the port for an RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400438 * @sin: address of remote peer
439 * @prog: RPC program number to bind
440 * @vers: RPC version number to bind
441 * @prot: transport protocol to use to make this request
442 *
Chuck Lever67d60212008-01-14 15:12:01 -0500443 * Return value is the requested advertised port number,
444 * or a negative errno value.
445 *
Chuck Levera5090502007-03-29 16:48:04 -0400446 * Called from outside the RPC client in a synchronous task context.
Chuck Levercce63cd2007-07-01 12:13:12 -0400447 * Uses default timeout parameters specified by underlying transport.
Chuck Levera5090502007-03-29 16:48:04 -0400448 *
Chuck Lever67d60212008-01-14 15:12:01 -0500449 * XXX: Needs to support IPv6
Chuck Levera5090502007-03-29 16:48:04 -0400450 */
Chuck Leverf1ec08c2008-01-14 15:11:53 -0500451int rpcb_getport_sync(struct sockaddr_in *sin, u32 prog, u32 vers, int prot)
Chuck Levera5090502007-03-29 16:48:04 -0400452{
453 struct rpcbind_args map = {
454 .r_prog = prog,
455 .r_vers = vers,
456 .r_prot = prot,
457 .r_port = 0,
458 };
459 struct rpc_message msg = {
460 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
461 .rpc_argp = &map,
462 .rpc_resp = &map.r_port,
463 };
464 struct rpc_clnt *rpcb_clnt;
Chuck Levera5090502007-03-29 16:48:04 -0400465 int status;
466
Harvey Harrison21454aa2008-10-31 00:54:56 -0700467 dprintk("RPC: %s(%pI4, %u, %u, %d)\n",
468 __func__, &sin->sin_addr.s_addr, prog, vers, prot);
Chuck Levera5090502007-03-29 16:48:04 -0400469
Chuck Leverb91e1012008-01-14 15:11:46 -0500470 rpcb_clnt = rpcb_create(NULL, (struct sockaddr *)sin,
Chuck Lever423d8b02008-07-14 16:03:28 -0400471 sizeof(*sin), prot, RPCBVERS_2);
Chuck Levera5090502007-03-29 16:48:04 -0400472 if (IS_ERR(rpcb_clnt))
473 return PTR_ERR(rpcb_clnt);
474
475 status = rpc_call_sync(rpcb_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400476 rpc_shutdown_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400477
478 if (status >= 0) {
479 if (map.r_port != 0)
480 return map.r_port;
481 status = -EACCES;
482 }
483 return status;
484}
Chuck Levercce63cd2007-07-01 12:13:12 -0400485EXPORT_SYMBOL_GPL(rpcb_getport_sync);
Chuck Levera5090502007-03-29 16:48:04 -0400486
Trond Myklebust803a9062008-07-01 15:20:55 -0400487static 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 -0400488{
489 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400490 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400491 .rpc_argp = map,
492 .rpc_resp = &map->r_port,
493 };
494 struct rpc_task_setup task_setup_data = {
495 .rpc_client = rpcb_clnt,
496 .rpc_message = &msg,
497 .callback_ops = &rpcb_getport_ops,
498 .callback_data = map,
499 .flags = RPC_TASK_ASYNC,
500 };
501
502 return rpc_run_task(&task_setup_data);
503}
504
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400505/*
506 * In the case where rpc clients have been cloned, we want to make
507 * sure that we use the program number/version etc of the actual
508 * owner of the xprt. To do so, we walk back up the tree of parents
509 * to find whoever created the transport and/or whoever has the
510 * autobind flag set.
511 */
512static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
513{
514 struct rpc_clnt *parent = clnt->cl_parent;
515
516 while (parent != clnt) {
517 if (parent->cl_xprt != clnt->cl_xprt)
518 break;
519 if (clnt->cl_autobind)
520 break;
521 clnt = parent;
522 parent = parent->cl_parent;
523 }
524 return clnt;
525}
526
Chuck Levera5090502007-03-29 16:48:04 -0400527/**
Chuck Lever45160d62007-07-01 12:13:17 -0400528 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400529 * @task: task that is waiting for portmapper request
530 *
531 * This one can be called for an ongoing RPC request, and can be used in
532 * an async (rpciod) context.
533 */
Chuck Lever45160d62007-07-01 12:13:17 -0400534void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400535{
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400536 struct rpc_clnt *clnt;
Trond Myklebust803a9062008-07-01 15:20:55 -0400537 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500538 u32 bind_version;
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400539 struct rpc_xprt *xprt;
Chuck Levera5090502007-03-29 16:48:04 -0400540 struct rpc_clnt *rpcb_clnt;
541 static struct rpcbind_args *map;
542 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500543 struct sockaddr_storage addr;
544 struct sockaddr *sap = (struct sockaddr *)&addr;
545 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400546 int status;
547
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400548 clnt = rpcb_find_transport_owner(task->tk_client);
549 xprt = clnt->cl_xprt;
550
Chuck Lever45160d62007-07-01 12:13:17 -0400551 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800552 task->tk_pid, __func__,
Chuck Lever45160d62007-07-01 12:13:17 -0400553 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400554
Trond Myklebust381ba742008-07-07 12:18:53 -0400555 /* Put self on the wait queue to ensure we get notified if
556 * some other task is already attempting to bind the port */
557 rpc_sleep_on(&xprt->binding, task, NULL);
558
Chuck Levera5090502007-03-29 16:48:04 -0400559 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400560 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800561 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400562 return;
Chuck Levera5090502007-03-29 16:48:04 -0400563 }
564
Chuck Levera5090502007-03-29 16:48:04 -0400565 /* Someone else may have bound if we slept */
566 if (xprt_bound(xprt)) {
567 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400568 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800569 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400570 goto bailout_nofree;
571 }
572
Chuck Lever9f6ad262007-12-10 14:56:31 -0500573 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400574
575 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500576 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400577 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400578 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
579 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400580 break;
581 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400582 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
583 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400584 break;
585 default:
586 status = -EAFNOSUPPORT;
587 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800588 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400589 goto bailout_nofree;
590 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400591 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400592 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400593 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400594 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800595 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400596 goto bailout_nofree;
597 }
Chuck Levera5090502007-03-29 16:48:04 -0400598
Chuck Lever45160d62007-07-01 12:13:17 -0400599 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800600 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400601
Chuck Lever9f6ad262007-12-10 14:56:31 -0500602 rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
Chuck Lever423d8b02008-07-14 16:03:28 -0400603 bind_version);
Chuck Lever143b6c42007-08-16 16:03:31 -0400604 if (IS_ERR(rpcb_clnt)) {
605 status = PTR_ERR(rpcb_clnt);
606 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800607 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400608 goto bailout_nofree;
609 }
610
Chuck Levera5090502007-03-29 16:48:04 -0400611 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
612 if (!map) {
613 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400614 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800615 task->tk_pid, __func__);
Trond Myklebust96165e22008-10-03 16:48:40 -0400616 goto bailout_release_client;
Chuck Levera5090502007-03-29 16:48:04 -0400617 }
618 map->r_prog = clnt->cl_prog;
619 map->r_vers = clnt->cl_vers;
620 map->r_prot = xprt->prot;
621 map->r_port = 0;
622 map->r_xprt = xprt_get(xprt);
Trond Myklebust86d61d82008-01-07 21:16:56 -0500623 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
624 map->r_addr = rpc_peeraddr2str(rpcb_clnt, RPC_DISPLAY_UNIVERSAL_ADDR);
Chuck Lever126e4bc2009-03-18 20:47:14 -0400625 map->r_owner = "";
Trond Myklebust381ba742008-07-07 12:18:53 -0400626 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400627
Trond Myklebust803a9062008-07-01 15:20:55 -0400628 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400629 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400630 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400631 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400632 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800633 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400634 return;
Chuck Levera5090502007-03-29 16:48:04 -0400635 }
Chuck Levera5090502007-03-29 16:48:04 -0400636
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400637 xprt->stat.bind_count++;
638 rpc_put_task(child);
Chuck Levera5090502007-03-29 16:48:04 -0400639 return;
640
Trond Myklebust96165e22008-10-03 16:48:40 -0400641bailout_release_client:
642 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400643bailout_nofree:
644 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400645 task->tk_status = status;
646}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400647EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400648
649/*
650 * Rpcbind child task calls this callback via tk_exit.
651 */
652static void rpcb_getport_done(struct rpc_task *child, void *data)
653{
654 struct rpcbind_args *map = data;
655 struct rpc_xprt *xprt = map->r_xprt;
656 int status = child->tk_status;
657
Chuck Lever4784cb52007-09-11 18:00:36 -0400658 /* Garbage reply: retry with a lesser rpcbind version */
659 if (status == -EIO)
660 status = -EPROTONOSUPPORT;
661
Chuck Levera5090502007-03-29 16:48:04 -0400662 /* rpcbind server doesn't support this rpcbind protocol version */
663 if (status == -EPROTONOSUPPORT)
664 xprt->bind_index++;
665
666 if (status < 0) {
667 /* rpcbind server not available on remote host? */
668 xprt->ops->set_port(xprt, 0);
669 } else if (map->r_port == 0) {
670 /* Requested RPC service wasn't registered on remote host */
671 xprt->ops->set_port(xprt, 0);
672 status = -EACCES;
673 } else {
674 /* Succeeded */
675 xprt->ops->set_port(xprt, map->r_port);
676 xprt_set_bound(xprt);
677 status = 0;
678 }
679
680 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
681 child->tk_pid, status, map->r_port);
682
Trond Myklebust381ba742008-07-07 12:18:53 -0400683 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400684}
685
Chuck Lever166b88d2008-07-14 16:03:26 -0400686/*
687 * XDR functions for rpcbind
688 */
689
Chuck Levera5090502007-03-29 16:48:04 -0400690static int rpcb_encode_mapping(struct rpc_rqst *req, __be32 *p,
691 struct rpcbind_args *rpcb)
692{
Chuck Leverdb820d62008-09-25 11:57:05 -0400693 dprintk("RPC: encoding rpcb request (%u, %u, %d, %u)\n",
Chuck Levera5090502007-03-29 16:48:04 -0400694 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
695 *p++ = htonl(rpcb->r_prog);
696 *p++ = htonl(rpcb->r_vers);
697 *p++ = htonl(rpcb->r_prot);
698 *p++ = htonl(rpcb->r_port);
699
700 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
701 return 0;
702}
703
704static int rpcb_decode_getport(struct rpc_rqst *req, __be32 *p,
705 unsigned short *portp)
706{
707 *portp = (unsigned short) ntohl(*p++);
Chuck Leverdb820d62008-09-25 11:57:05 -0400708 dprintk("RPC: rpcb getport result: %u\n",
Chuck Levera5090502007-03-29 16:48:04 -0400709 *portp);
710 return 0;
711}
712
713static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
714 unsigned int *boolp)
715{
716 *boolp = (unsigned int) ntohl(*p++);
Chuck Leverdb820d62008-09-25 11:57:05 -0400717 dprintk("RPC: rpcb set/unset call %s\n",
Chuck Lever877fcf12008-06-25 17:24:23 -0400718 (*boolp ? "succeeded" : "failed"));
Chuck Levera5090502007-03-29 16:48:04 -0400719 return 0;
720}
721
722static int rpcb_encode_getaddr(struct rpc_rqst *req, __be32 *p,
723 struct rpcbind_args *rpcb)
724{
Chuck Leverdb820d62008-09-25 11:57:05 -0400725 dprintk("RPC: encoding rpcb request (%u, %u, %s)\n",
Chuck Levera5090502007-03-29 16:48:04 -0400726 rpcb->r_prog, rpcb->r_vers, rpcb->r_addr);
727 *p++ = htonl(rpcb->r_prog);
728 *p++ = htonl(rpcb->r_vers);
729
730 p = xdr_encode_string(p, rpcb->r_netid);
731 p = xdr_encode_string(p, rpcb->r_addr);
732 p = xdr_encode_string(p, rpcb->r_owner);
733
734 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
735
736 return 0;
737}
738
739static int rpcb_decode_getaddr(struct rpc_rqst *req, __be32 *p,
740 unsigned short *portp)
741{
742 char *addr;
Chuck Leveradc24df82007-08-06 11:56:31 -0400743 u32 addr_len;
744 int c, i, f, first, val;
Chuck Levera5090502007-03-29 16:48:04 -0400745
746 *portp = 0;
Chuck Leveradc24df82007-08-06 11:56:31 -0400747 addr_len = ntohl(*p++);
Chuck Levera5090502007-03-29 16:48:04 -0400748
Chuck Lever776bd5c2009-03-18 20:45:28 -0400749 if (addr_len == 0) {
750 dprintk("RPC: rpcb_decode_getaddr: "
751 "service is not registered\n");
752 return 0;
753 }
754
Chuck Levere65fe392007-09-11 18:00:31 -0400755 /*
Chuck Lever776bd5c2009-03-18 20:45:28 -0400756 * Simple sanity check.
Chuck Levere65fe392007-09-11 18:00:31 -0400757 */
Chuck Lever776bd5c2009-03-18 20:45:28 -0400758 if (addr_len > RPCBIND_MAXUADDRLEN)
Chuck Levere65fe392007-09-11 18:00:31 -0400759 goto out_err;
Chuck Levera5090502007-03-29 16:48:04 -0400760
Chuck Levere65fe392007-09-11 18:00:31 -0400761 /*
762 * Start at the end and walk backwards until the first dot
763 * is encountered. When the second dot is found, we have
764 * both parts of the port number.
765 */
Chuck Levera5090502007-03-29 16:48:04 -0400766 addr = (char *)p;
767 val = 0;
768 first = 1;
769 f = 1;
770 for (i = addr_len - 1; i > 0; i--) {
771 c = addr[i];
772 if (c >= '0' && c <= '9') {
773 val += (c - '0') * f;
774 f *= 10;
775 } else if (c == '.') {
776 if (first) {
777 *portp = val;
778 val = first = 0;
779 f = 1;
780 } else {
781 *portp |= (val << 8);
782 break;
783 }
784 }
785 }
786
Chuck Levere65fe392007-09-11 18:00:31 -0400787 /*
788 * Simple sanity check. If we never saw a dot in the reply,
789 * then this was probably just garbage.
790 */
791 if (first)
792 goto out_err;
793
Chuck Levera5090502007-03-29 16:48:04 -0400794 dprintk("RPC: rpcb_decode_getaddr port=%u\n", *portp);
795 return 0;
Chuck Levere65fe392007-09-11 18:00:31 -0400796
797out_err:
798 dprintk("RPC: rpcbind server returned malformed reply\n");
799 return -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400800}
801
Chuck Levera5090502007-03-29 16:48:04 -0400802#define PROC(proc, argtype, restype) \
803 [RPCBPROC_##proc] = { \
804 .p_proc = RPCBPROC_##proc, \
805 .p_encode = (kxdrproc_t) rpcb_encode_##argtype, \
806 .p_decode = (kxdrproc_t) rpcb_decode_##restype, \
807 .p_arglen = RPCB_##argtype##args_sz, \
808 .p_replen = RPCB_##restype##res_sz, \
809 .p_statidx = RPCBPROC_##proc, \
810 .p_timer = 0, \
811 .p_name = #proc, \
812 }
813
814/*
815 * Not all rpcbind procedures described in RFC 1833 are implemented
816 * since the Linux kernel RPC code requires only these.
817 */
818static struct rpc_procinfo rpcb_procedures2[] = {
819 PROC(SET, mapping, set),
820 PROC(UNSET, mapping, set),
Chuck Lever6a774052008-06-25 17:24:39 -0400821 PROC(GETPORT, mapping, getport),
Chuck Levera5090502007-03-29 16:48:04 -0400822};
823
824static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400825 PROC(SET, getaddr, set),
826 PROC(UNSET, getaddr, set),
Chuck Levera5090502007-03-29 16:48:04 -0400827 PROC(GETADDR, getaddr, getaddr),
828};
829
830static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400831 PROC(SET, getaddr, set),
832 PROC(UNSET, getaddr, set),
Chuck Lever88424132008-06-25 17:24:47 -0400833 PROC(GETADDR, getaddr, getaddr),
Chuck Levera5090502007-03-29 16:48:04 -0400834 PROC(GETVERSADDR, getaddr, getaddr),
835};
836
837static struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400838 {
839 .rpc_vers = RPCBVERS_2,
840 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
841 },
842 {
843 .rpc_proc = NULL,
844 },
Chuck Levera5090502007-03-29 16:48:04 -0400845};
846
Chuck Leverd5b64432007-08-06 11:57:18 -0400847static struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400848 {
849 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -0400850 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -0400851 },
852 {
853 .rpc_vers = RPCBVERS_3,
854 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
855 },
Chuck Leverfc200e72008-06-25 17:24:31 -0400856 {
857 .rpc_proc = NULL,
858 },
Chuck Leverd5b64432007-08-06 11:57:18 -0400859};
860
Chuck Levera5090502007-03-29 16:48:04 -0400861static struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400862 .number = RPCBVERS_2,
Chuck Levera5090502007-03-29 16:48:04 -0400863 .nrprocs = RPCB_HIGHPROC_2,
864 .procs = rpcb_procedures2
865};
866
867static struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400868 .number = RPCBVERS_3,
Chuck Levera5090502007-03-29 16:48:04 -0400869 .nrprocs = RPCB_HIGHPROC_3,
870 .procs = rpcb_procedures3
871};
872
873static struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400874 .number = RPCBVERS_4,
Chuck Levera5090502007-03-29 16:48:04 -0400875 .nrprocs = RPCB_HIGHPROC_4,
876 .procs = rpcb_procedures4
877};
878
879static struct rpc_version *rpcb_version[] = {
880 NULL,
881 NULL,
882 &rpcb_version2,
883 &rpcb_version3,
884 &rpcb_version4
885};
886
887static struct rpc_stat rpcb_stats;
888
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200889static struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -0400890 .name = "rpcbind",
891 .number = RPCBIND_PROGRAM,
892 .nrvers = ARRAY_SIZE(rpcb_version),
893 .version = rpcb_version,
894 .stats = &rpcb_stats,
895};