2 * In-kernel rpcbind client supporting versions 2, 3, and 4 of the rpcbind
5 * Based on RFC 1833: "Binding Protocols for ONC RPC Version 2" and
6 * RFC 3530: "Network File System (NFS) version 4 Protocol"
8 * Original: Gilles Quillard, Bull Open Source, 2005 <gilles.quillard@bull.net>
9 * Updated: Chuck Lever, Oracle Corporation, 2007 <chuck.lever@oracle.com>
11 * Descended from net/sunrpc/pmap_clnt.c,
12 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
15 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/socket.h>
20 #include <linux/in6.h>
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
25 #include <linux/sunrpc/clnt.h>
26 #include <linux/sunrpc/sched.h>
27 #include <linux/sunrpc/xprtsock.h>
30 # define RPCDBG_FACILITY RPCDBG_BIND
33 #define RPCBIND_PROGRAM (100000u)
34 #define RPCBIND_PORT (111u)
36 #define RPCBVERS_2 (2u)
37 #define RPCBVERS_3 (3u)
38 #define RPCBVERS_4 (4u)
45 RPCBPROC_GETADDR
= 3, /* alias for GETPORT */
48 RPCBPROC_BCAST
= 5, /* alias for CALLIT */
58 #define RPCB_HIGHPROC_2 RPCBPROC_CALLIT
59 #define RPCB_HIGHPROC_3 RPCBPROC_TADDR2UADDR
60 #define RPCB_HIGHPROC_4 RPCBPROC_GETSTAT
65 * The "owner" is allowed to unset a service in the rpcbind database.
66 * We always use the following (arbitrary) fixed string.
68 #define RPCB_OWNER_STRING "rpcb"
69 #define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
71 static void rpcb_getport_done(struct rpc_task
*, void *);
72 static void rpcb_map_release(void *data
);
73 static struct rpc_program rpcb_program
;
76 struct rpc_xprt
* r_xprt
;
81 unsigned short r_port
;
89 static struct rpc_procinfo rpcb_procedures2
[];
90 static struct rpc_procinfo rpcb_procedures3
[];
91 static struct rpc_procinfo rpcb_procedures4
[];
95 struct rpc_procinfo
* rpc_proc
;
98 static struct rpcb_info rpcb_next_version
[];
99 static struct rpcb_info rpcb_next_version6
[];
101 static const struct rpc_call_ops rpcb_getport_ops
= {
102 .rpc_call_done
= rpcb_getport_done
,
103 .rpc_release
= rpcb_map_release
,
106 static void rpcb_wake_rpcbind_waiters(struct rpc_xprt
*xprt
, int status
)
108 xprt_clear_binding(xprt
);
109 rpc_wake_up_status(&xprt
->binding
, status
);
112 static void rpcb_map_release(void *data
)
114 struct rpcbind_args
*map
= data
;
116 rpcb_wake_rpcbind_waiters(map
->r_xprt
, map
->r_status
);
117 xprt_put(map
->r_xprt
);
121 static const struct sockaddr_in rpcb_inaddr_loopback
= {
122 .sin_family
= AF_INET
,
123 .sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
),
124 .sin_port
= htons(RPCBIND_PORT
),
127 static const struct sockaddr_in6 rpcb_in6addr_loopback
= {
128 .sin6_family
= AF_INET6
,
129 .sin6_addr
= IN6ADDR_LOOPBACK_INIT
,
130 .sin6_port
= htons(RPCBIND_PORT
),
133 static struct rpc_clnt
*rpcb_create_local(struct sockaddr
*addr
,
134 size_t addrlen
, u32 version
)
136 struct rpc_create_args args
= {
137 .protocol
= XPRT_TRANSPORT_UDP
,
140 .servername
= "localhost",
141 .program
= &rpcb_program
,
143 .authflavor
= RPC_AUTH_UNIX
,
144 .flags
= RPC_CLNT_CREATE_NOPING
,
147 return rpc_create(&args
);
150 static struct rpc_clnt
*rpcb_create(char *hostname
, struct sockaddr
*srvaddr
,
151 size_t salen
, int proto
, u32 version
)
153 struct rpc_create_args args
= {
157 .servername
= hostname
,
158 .program
= &rpcb_program
,
160 .authflavor
= RPC_AUTH_UNIX
,
161 .flags
= (RPC_CLNT_CREATE_NOPING
|
162 RPC_CLNT_CREATE_NONPRIVPORT
),
165 switch (srvaddr
->sa_family
) {
167 ((struct sockaddr_in
*)srvaddr
)->sin_port
= htons(RPCBIND_PORT
);
170 ((struct sockaddr_in6
*)srvaddr
)->sin6_port
= htons(RPCBIND_PORT
);
176 return rpc_create(&args
);
179 static int rpcb_register_call(struct sockaddr
*addr
, size_t addrlen
,
180 u32 version
, struct rpc_message
*msg
)
182 struct rpc_clnt
*rpcb_clnt
;
183 int result
, error
= 0;
185 msg
->rpc_resp
= &result
;
187 rpcb_clnt
= rpcb_create_local(addr
, addrlen
, version
);
188 if (!IS_ERR(rpcb_clnt
)) {
189 error
= rpc_call_sync(rpcb_clnt
, msg
, 0);
190 rpc_shutdown_client(rpcb_clnt
);
192 error
= PTR_ERR(rpcb_clnt
);
195 printk(KERN_WARNING
"RPC: failed to contact local rpcbind "
196 "server (errno %d).\n", -error
);
206 * rpcb_register - set or unset a port registration with the local rpcbind svc
207 * @prog: RPC program number to bind
208 * @vers: RPC version number to bind
209 * @prot: transport protocol to register
210 * @port: port value to register
212 * Returns zero if the registration request was dispatched successfully
213 * and the rpcbind daemon returned success. Otherwise, returns an errno
214 * value that reflects the nature of the error (request could not be
215 * dispatched, timed out, or rpcbind returned an error).
217 * RPC services invoke this function to advertise their contact
218 * information via the system's rpcbind daemon. RPC services
219 * invoke this function once for each [program, version, transport]
220 * tuple they wish to advertise.
222 * Callers may also unregister RPC services that are no longer
223 * available by setting the passed-in port to zero. This removes
224 * all registered transports for [program, version] from the local
227 * This function uses rpcbind protocol version 2 to contact the
228 * local rpcbind daemon.
230 * Registration works over both AF_INET and AF_INET6, and services
231 * registered via this function are advertised as available for any
232 * address. If the local rpcbind daemon is listening on AF_INET6,
233 * services registered via this function will be advertised on
234 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
237 int rpcb_register(u32 prog
, u32 vers
, int prot
, unsigned short port
)
239 struct rpcbind_args map
= {
245 struct rpc_message msg
= {
249 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
250 "rpcbind\n", (port
? "" : "un"),
251 prog
, vers
, prot
, port
);
253 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_UNSET
];
255 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_SET
];
257 return rpcb_register_call((struct sockaddr
*)&rpcb_inaddr_loopback
,
258 sizeof(rpcb_inaddr_loopback
),
263 * Fill in AF_INET family-specific arguments to register
265 static int rpcb_register_netid4(struct sockaddr_in
*address_to_register
,
266 struct rpc_message
*msg
)
268 struct rpcbind_args
*map
= msg
->rpc_argp
;
269 unsigned short port
= ntohs(address_to_register
->sin_port
);
272 /* Construct AF_INET universal address */
273 snprintf(buf
, sizeof(buf
), "%pI4.%u.%u",
274 &address_to_register
->sin_addr
.s_addr
,
275 port
>> 8, port
& 0xff);
278 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
279 "local rpcbind\n", (port
? "" : "un"),
280 map
->r_prog
, map
->r_vers
,
281 map
->r_addr
, map
->r_netid
);
283 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
285 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
287 return rpcb_register_call((struct sockaddr
*)&rpcb_inaddr_loopback
,
288 sizeof(rpcb_inaddr_loopback
),
293 * Fill in AF_INET6 family-specific arguments to register
295 static int rpcb_register_netid6(struct sockaddr_in6
*address_to_register
,
296 struct rpc_message
*msg
)
298 struct rpcbind_args
*map
= msg
->rpc_argp
;
299 unsigned short port
= ntohs(address_to_register
->sin6_port
);
302 /* Construct AF_INET6 universal address */
303 if (ipv6_addr_any(&address_to_register
->sin6_addr
))
304 snprintf(buf
, sizeof(buf
), "::.%u.%u",
305 port
>> 8, port
& 0xff);
307 snprintf(buf
, sizeof(buf
), "%pI6.%u.%u",
308 &address_to_register
->sin6_addr
,
309 port
>> 8, port
& 0xff);
312 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
313 "local rpcbind\n", (port
? "" : "un"),
314 map
->r_prog
, map
->r_vers
,
315 map
->r_addr
, map
->r_netid
);
317 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
319 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
321 return rpcb_register_call((struct sockaddr
*)&rpcb_in6addr_loopback
,
322 sizeof(rpcb_in6addr_loopback
),
327 * rpcb_v4_register - set or unset a port registration with the local rpcbind
328 * @program: RPC program number of service to (un)register
329 * @version: RPC version number of service to (un)register
330 * @address: address family, IP address, and port to (un)register
331 * @netid: netid of transport protocol to (un)register
333 * Returns zero if the registration request was dispatched successfully
334 * and the rpcbind daemon returned success. Otherwise, returns an errno
335 * value that reflects the nature of the error (request could not be
336 * dispatched, timed out, or rpcbind returned an error).
338 * RPC services invoke this function to advertise their contact
339 * information via the system's rpcbind daemon. RPC services
340 * invoke this function once for each [program, version, address,
341 * netid] tuple they wish to advertise.
343 * Callers may also unregister RPC services that are no longer
344 * available by setting the port number in the passed-in address
345 * to zero. Callers pass a netid of "" to unregister all
346 * transport netids associated with [program, version, address].
348 * This function uses rpcbind protocol version 4 to contact the
349 * local rpcbind daemon. The local rpcbind daemon must support
350 * version 4 of the rpcbind protocol in order for these functions
351 * to register a service successfully.
353 * Supported netids include "udp" and "tcp" for UDP and TCP over
354 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
357 * The contents of @address determine the address family and the
358 * port to be registered. The usual practice is to pass INADDR_ANY
359 * as the raw address, but specifying a non-zero address is also
360 * supported by this API if the caller wishes to advertise an RPC
361 * service on a specific network interface.
363 * Note that passing in INADDR_ANY does not create the same service
364 * registration as IN6ADDR_ANY. The former advertises an RPC
365 * service on any IPv4 address, but not on IPv6. The latter
366 * advertises the service on all IPv4 and IPv6 addresses.
368 int rpcb_v4_register(const u32 program
, const u32 version
,
369 const struct sockaddr
*address
, const char *netid
)
371 struct rpcbind_args map
= {
375 .r_owner
= RPCB_OWNER_STRING
,
377 struct rpc_message msg
= {
381 switch (address
->sa_family
) {
383 return rpcb_register_netid4((struct sockaddr_in
*)address
,
386 return rpcb_register_netid6((struct sockaddr_in6
*)address
,
390 return -EAFNOSUPPORT
;
394 * rpcb_getport_sync - obtain the port for an RPC service on a given host
395 * @sin: address of remote peer
396 * @prog: RPC program number to bind
397 * @vers: RPC version number to bind
398 * @prot: transport protocol to use to make this request
400 * Return value is the requested advertised port number,
401 * or a negative errno value.
403 * Called from outside the RPC client in a synchronous task context.
404 * Uses default timeout parameters specified by underlying transport.
406 * XXX: Needs to support IPv6
408 int rpcb_getport_sync(struct sockaddr_in
*sin
, u32 prog
, u32 vers
, int prot
)
410 struct rpcbind_args map
= {
416 struct rpc_message msg
= {
417 .rpc_proc
= &rpcb_procedures2
[RPCBPROC_GETPORT
],
419 .rpc_resp
= &map
.r_port
,
421 struct rpc_clnt
*rpcb_clnt
;
424 dprintk("RPC: %s(%pI4, %u, %u, %d)\n",
425 __func__
, &sin
->sin_addr
.s_addr
, prog
, vers
, prot
);
427 rpcb_clnt
= rpcb_create(NULL
, (struct sockaddr
*)sin
,
428 sizeof(*sin
), prot
, RPCBVERS_2
);
429 if (IS_ERR(rpcb_clnt
))
430 return PTR_ERR(rpcb_clnt
);
432 status
= rpc_call_sync(rpcb_clnt
, &msg
, 0);
433 rpc_shutdown_client(rpcb_clnt
);
442 EXPORT_SYMBOL_GPL(rpcb_getport_sync
);
444 static struct rpc_task
*rpcb_call_async(struct rpc_clnt
*rpcb_clnt
, struct rpcbind_args
*map
, struct rpc_procinfo
*proc
)
446 struct rpc_message msg
= {
449 .rpc_resp
= &map
->r_port
,
451 struct rpc_task_setup task_setup_data
= {
452 .rpc_client
= rpcb_clnt
,
454 .callback_ops
= &rpcb_getport_ops
,
455 .callback_data
= map
,
456 .flags
= RPC_TASK_ASYNC
,
459 return rpc_run_task(&task_setup_data
);
463 * In the case where rpc clients have been cloned, we want to make
464 * sure that we use the program number/version etc of the actual
465 * owner of the xprt. To do so, we walk back up the tree of parents
466 * to find whoever created the transport and/or whoever has the
469 static struct rpc_clnt
*rpcb_find_transport_owner(struct rpc_clnt
*clnt
)
471 struct rpc_clnt
*parent
= clnt
->cl_parent
;
473 while (parent
!= clnt
) {
474 if (parent
->cl_xprt
!= clnt
->cl_xprt
)
476 if (clnt
->cl_autobind
)
479 parent
= parent
->cl_parent
;
485 * rpcb_getport_async - obtain the port for a given RPC service on a given host
486 * @task: task that is waiting for portmapper request
488 * This one can be called for an ongoing RPC request, and can be used in
489 * an async (rpciod) context.
491 void rpcb_getport_async(struct rpc_task
*task
)
493 struct rpc_clnt
*clnt
;
494 struct rpc_procinfo
*proc
;
496 struct rpc_xprt
*xprt
;
497 struct rpc_clnt
*rpcb_clnt
;
498 static struct rpcbind_args
*map
;
499 struct rpc_task
*child
;
500 struct sockaddr_storage addr
;
501 struct sockaddr
*sap
= (struct sockaddr
*)&addr
;
505 clnt
= rpcb_find_transport_owner(task
->tk_client
);
506 xprt
= clnt
->cl_xprt
;
508 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
509 task
->tk_pid
, __func__
,
510 clnt
->cl_server
, clnt
->cl_prog
, clnt
->cl_vers
, xprt
->prot
);
512 /* Put self on the wait queue to ensure we get notified if
513 * some other task is already attempting to bind the port */
514 rpc_sleep_on(&xprt
->binding
, task
, NULL
);
516 if (xprt_test_and_set_binding(xprt
)) {
517 dprintk("RPC: %5u %s: waiting for another binder\n",
518 task
->tk_pid
, __func__
);
522 /* Someone else may have bound if we slept */
523 if (xprt_bound(xprt
)) {
525 dprintk("RPC: %5u %s: already bound\n",
526 task
->tk_pid
, __func__
);
530 salen
= rpc_peeraddr(clnt
, sap
, sizeof(addr
));
532 /* Don't ever use rpcbind v2 for AF_INET6 requests */
533 switch (sap
->sa_family
) {
535 proc
= rpcb_next_version
[xprt
->bind_index
].rpc_proc
;
536 bind_version
= rpcb_next_version
[xprt
->bind_index
].rpc_vers
;
539 proc
= rpcb_next_version6
[xprt
->bind_index
].rpc_proc
;
540 bind_version
= rpcb_next_version6
[xprt
->bind_index
].rpc_vers
;
543 status
= -EAFNOSUPPORT
;
544 dprintk("RPC: %5u %s: bad address family\n",
545 task
->tk_pid
, __func__
);
549 xprt
->bind_index
= 0;
550 status
= -EPFNOSUPPORT
;
551 dprintk("RPC: %5u %s: no more getport versions available\n",
552 task
->tk_pid
, __func__
);
556 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
557 task
->tk_pid
, __func__
, bind_version
);
559 rpcb_clnt
= rpcb_create(clnt
->cl_server
, sap
, salen
, xprt
->prot
,
561 if (IS_ERR(rpcb_clnt
)) {
562 status
= PTR_ERR(rpcb_clnt
);
563 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
564 task
->tk_pid
, __func__
, PTR_ERR(rpcb_clnt
));
568 map
= kzalloc(sizeof(struct rpcbind_args
), GFP_ATOMIC
);
571 dprintk("RPC: %5u %s: no memory available\n",
572 task
->tk_pid
, __func__
);
573 goto bailout_release_client
;
575 map
->r_prog
= clnt
->cl_prog
;
576 map
->r_vers
= clnt
->cl_vers
;
577 map
->r_prot
= xprt
->prot
;
579 map
->r_xprt
= xprt_get(xprt
);
580 map
->r_netid
= rpc_peeraddr2str(clnt
, RPC_DISPLAY_NETID
);
581 map
->r_addr
= rpc_peeraddr2str(rpcb_clnt
, RPC_DISPLAY_UNIVERSAL_ADDR
);
582 map
->r_owner
= RPCB_OWNER_STRING
; /* ignored for GETADDR */
583 map
->r_status
= -EIO
;
585 child
= rpcb_call_async(rpcb_clnt
, map
, proc
);
586 rpc_release_client(rpcb_clnt
);
588 /* rpcb_map_release() has freed the arguments */
589 dprintk("RPC: %5u %s: rpc_run_task failed\n",
590 task
->tk_pid
, __func__
);
594 xprt
->stat
.bind_count
++;
598 bailout_release_client
:
599 rpc_release_client(rpcb_clnt
);
601 rpcb_wake_rpcbind_waiters(xprt
, status
);
602 task
->tk_status
= status
;
604 EXPORT_SYMBOL_GPL(rpcb_getport_async
);
607 * Rpcbind child task calls this callback via tk_exit.
609 static void rpcb_getport_done(struct rpc_task
*child
, void *data
)
611 struct rpcbind_args
*map
= data
;
612 struct rpc_xprt
*xprt
= map
->r_xprt
;
613 int status
= child
->tk_status
;
615 /* Garbage reply: retry with a lesser rpcbind version */
617 status
= -EPROTONOSUPPORT
;
619 /* rpcbind server doesn't support this rpcbind protocol version */
620 if (status
== -EPROTONOSUPPORT
)
624 /* rpcbind server not available on remote host? */
625 xprt
->ops
->set_port(xprt
, 0);
626 } else if (map
->r_port
== 0) {
627 /* Requested RPC service wasn't registered on remote host */
628 xprt
->ops
->set_port(xprt
, 0);
632 xprt
->ops
->set_port(xprt
, map
->r_port
);
633 xprt_set_bound(xprt
);
637 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
638 child
->tk_pid
, status
, map
->r_port
);
640 map
->r_status
= status
;
644 * XDR functions for rpcbind
647 static int rpcb_encode_mapping(struct rpc_rqst
*req
, __be32
*p
,
648 struct rpcbind_args
*rpcb
)
650 dprintk("RPC: encoding rpcb request (%u, %u, %d, %u)\n",
651 rpcb
->r_prog
, rpcb
->r_vers
, rpcb
->r_prot
, rpcb
->r_port
);
652 *p
++ = htonl(rpcb
->r_prog
);
653 *p
++ = htonl(rpcb
->r_vers
);
654 *p
++ = htonl(rpcb
->r_prot
);
655 *p
++ = htonl(rpcb
->r_port
);
657 req
->rq_slen
= xdr_adjust_iovec(req
->rq_svec
, p
);
661 static int rpcb_decode_getport(struct rpc_rqst
*req
, __be32
*p
,
662 unsigned short *portp
)
664 *portp
= (unsigned short) ntohl(*p
++);
665 dprintk("RPC: rpcb getport result: %u\n",
670 static int rpcb_decode_set(struct rpc_rqst
*req
, __be32
*p
,
673 *boolp
= (unsigned int) ntohl(*p
++);
674 dprintk("RPC: rpcb set/unset call %s\n",
675 (*boolp
? "succeeded" : "failed"));
679 static int rpcb_encode_getaddr(struct rpc_rqst
*req
, __be32
*p
,
680 struct rpcbind_args
*rpcb
)
682 dprintk("RPC: encoding rpcb request (%u, %u, %s)\n",
683 rpcb
->r_prog
, rpcb
->r_vers
, rpcb
->r_addr
);
684 *p
++ = htonl(rpcb
->r_prog
);
685 *p
++ = htonl(rpcb
->r_vers
);
687 p
= xdr_encode_string(p
, rpcb
->r_netid
);
688 p
= xdr_encode_string(p
, rpcb
->r_addr
);
689 p
= xdr_encode_string(p
, rpcb
->r_owner
);
691 req
->rq_slen
= xdr_adjust_iovec(req
->rq_svec
, p
);
696 static int rpcb_decode_getaddr(struct rpc_rqst
*req
, __be32
*p
,
697 unsigned short *portp
)
701 int c
, i
, f
, first
, val
;
704 addr_len
= ntohl(*p
++);
707 * Simple sanity check. The smallest possible universal
708 * address is an IPv4 address string containing 11 bytes.
710 if (addr_len
< 11 || addr_len
> RPCBIND_MAXUADDRLEN
)
714 * Start at the end and walk backwards until the first dot
715 * is encountered. When the second dot is found, we have
716 * both parts of the port number.
722 for (i
= addr_len
- 1; i
> 0; i
--) {
724 if (c
>= '0' && c
<= '9') {
725 val
+= (c
- '0') * f
;
727 } else if (c
== '.') {
733 *portp
|= (val
<< 8);
740 * Simple sanity check. If we never saw a dot in the reply,
741 * then this was probably just garbage.
746 dprintk("RPC: rpcb_decode_getaddr port=%u\n", *portp
);
750 dprintk("RPC: rpcbind server returned malformed reply\n");
754 #define RPCB_program_sz (1u)
755 #define RPCB_version_sz (1u)
756 #define RPCB_protocol_sz (1u)
757 #define RPCB_port_sz (1u)
758 #define RPCB_boolean_sz (1u)
760 #define RPCB_netid_sz (1+XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
761 #define RPCB_addr_sz (1+XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
762 #define RPCB_ownerstring_sz (1+XDR_QUADLEN(RPCB_MAXOWNERLEN))
764 #define RPCB_mappingargs_sz RPCB_program_sz+RPCB_version_sz+ \
765 RPCB_protocol_sz+RPCB_port_sz
766 #define RPCB_getaddrargs_sz RPCB_program_sz+RPCB_version_sz+ \
767 RPCB_netid_sz+RPCB_addr_sz+ \
770 #define RPCB_setres_sz RPCB_boolean_sz
771 #define RPCB_getportres_sz RPCB_port_sz
774 * Note that RFC 1833 does not put any size restrictions on the
775 * address string returned by the remote rpcbind database.
777 #define RPCB_getaddrres_sz RPCB_addr_sz
779 #define PROC(proc, argtype, restype) \
780 [RPCBPROC_##proc] = { \
781 .p_proc = RPCBPROC_##proc, \
782 .p_encode = (kxdrproc_t) rpcb_encode_##argtype, \
783 .p_decode = (kxdrproc_t) rpcb_decode_##restype, \
784 .p_arglen = RPCB_##argtype##args_sz, \
785 .p_replen = RPCB_##restype##res_sz, \
786 .p_statidx = RPCBPROC_##proc, \
792 * Not all rpcbind procedures described in RFC 1833 are implemented
793 * since the Linux kernel RPC code requires only these.
795 static struct rpc_procinfo rpcb_procedures2
[] = {
796 PROC(SET
, mapping
, set
),
797 PROC(UNSET
, mapping
, set
),
798 PROC(GETPORT
, mapping
, getport
),
801 static struct rpc_procinfo rpcb_procedures3
[] = {
802 PROC(SET
, getaddr
, set
),
803 PROC(UNSET
, getaddr
, set
),
804 PROC(GETADDR
, getaddr
, getaddr
),
807 static struct rpc_procinfo rpcb_procedures4
[] = {
808 PROC(SET
, getaddr
, set
),
809 PROC(UNSET
, getaddr
, set
),
810 PROC(GETADDR
, getaddr
, getaddr
),
811 PROC(GETVERSADDR
, getaddr
, getaddr
),
814 static struct rpcb_info rpcb_next_version
[] = {
816 .rpc_vers
= RPCBVERS_2
,
817 .rpc_proc
= &rpcb_procedures2
[RPCBPROC_GETPORT
],
824 static struct rpcb_info rpcb_next_version6
[] = {
826 .rpc_vers
= RPCBVERS_4
,
827 .rpc_proc
= &rpcb_procedures4
[RPCBPROC_GETADDR
],
830 .rpc_vers
= RPCBVERS_3
,
831 .rpc_proc
= &rpcb_procedures3
[RPCBPROC_GETADDR
],
838 static struct rpc_version rpcb_version2
= {
839 .number
= RPCBVERS_2
,
840 .nrprocs
= RPCB_HIGHPROC_2
,
841 .procs
= rpcb_procedures2
844 static struct rpc_version rpcb_version3
= {
845 .number
= RPCBVERS_3
,
846 .nrprocs
= RPCB_HIGHPROC_3
,
847 .procs
= rpcb_procedures3
850 static struct rpc_version rpcb_version4
= {
851 .number
= RPCBVERS_4
,
852 .nrprocs
= RPCB_HIGHPROC_4
,
853 .procs
= rpcb_procedures4
856 static struct rpc_version
*rpcb_version
[] = {
864 static struct rpc_stat rpcb_stats
;
866 static struct rpc_program rpcb_program
= {
868 .number
= RPCBIND_PROGRAM
,
869 .nrvers
= ARRAY_SIZE(rpcb_version
),
870 .version
= rpcb_version
,
871 .stats
= &rpcb_stats
,