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>
23 #include <linux/mutex.h>
24 #include <linux/slab.h>
27 #include <linux/sunrpc/clnt.h>
28 #include <linux/sunrpc/sched.h>
29 #include <linux/sunrpc/xprtsock.h>
32 # define RPCDBG_FACILITY RPCDBG_BIND
35 #define RPCBIND_PROGRAM (100000u)
36 #define RPCBIND_PORT (111u)
38 #define RPCBVERS_2 (2u)
39 #define RPCBVERS_3 (3u)
40 #define RPCBVERS_4 (4u)
47 RPCBPROC_GETADDR
= 3, /* alias for GETPORT */
50 RPCBPROC_BCAST
= 5, /* alias for CALLIT */
60 #define RPCB_HIGHPROC_2 RPCBPROC_CALLIT
61 #define RPCB_HIGHPROC_3 RPCBPROC_TADDR2UADDR
62 #define RPCB_HIGHPROC_4 RPCBPROC_GETSTAT
67 * The "owner" is allowed to unset a service in the rpcbind database.
69 * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
70 * UID which it maps to a local user name via a password lookup.
71 * In all other cases it is ignored.
73 * For SET/UNSET requests, user space provides a value, even for
74 * network requests, and GETADDR uses an empty string. We follow
75 * those precedents here.
77 #define RPCB_OWNER_STRING "0"
78 #define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
83 #define RPCB_program_sz (1)
84 #define RPCB_version_sz (1)
85 #define RPCB_protocol_sz (1)
86 #define RPCB_port_sz (1)
87 #define RPCB_boolean_sz (1)
89 #define RPCB_netid_sz (1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
90 #define RPCB_addr_sz (1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
91 #define RPCB_ownerstring_sz (1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))
94 * XDR argument and result sizes
96 #define RPCB_mappingargs_sz (RPCB_program_sz + RPCB_version_sz + \
97 RPCB_protocol_sz + RPCB_port_sz)
98 #define RPCB_getaddrargs_sz (RPCB_program_sz + RPCB_version_sz + \
99 RPCB_netid_sz + RPCB_addr_sz + \
102 #define RPCB_getportres_sz RPCB_port_sz
103 #define RPCB_setres_sz RPCB_boolean_sz
106 * Note that RFC 1833 does not put any size restrictions on the
107 * address string returned by the remote rpcbind database.
109 #define RPCB_getaddrres_sz RPCB_addr_sz
111 static void rpcb_getport_done(struct rpc_task
*, void *);
112 static void rpcb_map_release(void *data
);
113 static struct rpc_program rpcb_program
;
115 static struct rpc_clnt
* rpcb_local_clnt
;
116 static struct rpc_clnt
* rpcb_local_clnt4
;
118 struct rpcbind_args
{
119 struct rpc_xprt
* r_xprt
;
124 unsigned short r_port
;
125 const char * r_netid
;
127 const char * r_owner
;
132 static struct rpc_procinfo rpcb_procedures2
[];
133 static struct rpc_procinfo rpcb_procedures3
[];
134 static struct rpc_procinfo rpcb_procedures4
[];
138 struct rpc_procinfo
* rpc_proc
;
141 static struct rpcb_info rpcb_next_version
[];
142 static struct rpcb_info rpcb_next_version6
[];
144 static const struct rpc_call_ops rpcb_getport_ops
= {
145 .rpc_call_done
= rpcb_getport_done
,
146 .rpc_release
= rpcb_map_release
,
149 static void rpcb_wake_rpcbind_waiters(struct rpc_xprt
*xprt
, int status
)
151 xprt_clear_binding(xprt
);
152 rpc_wake_up_status(&xprt
->binding
, status
);
155 static void rpcb_map_release(void *data
)
157 struct rpcbind_args
*map
= data
;
159 rpcb_wake_rpcbind_waiters(map
->r_xprt
, map
->r_status
);
160 xprt_put(map
->r_xprt
);
165 static const struct sockaddr_in rpcb_inaddr_loopback
= {
166 .sin_family
= AF_INET
,
167 .sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
),
168 .sin_port
= htons(RPCBIND_PORT
),
171 static DEFINE_MUTEX(rpcb_create_local_mutex
);
174 * Returns zero on success, otherwise a negative errno value
177 static int rpcb_create_local(void)
179 struct rpc_create_args args
= {
181 .protocol
= XPRT_TRANSPORT_TCP
,
182 .address
= (struct sockaddr
*)&rpcb_inaddr_loopback
,
183 .addrsize
= sizeof(rpcb_inaddr_loopback
),
184 .servername
= "localhost",
185 .program
= &rpcb_program
,
186 .version
= RPCBVERS_2
,
187 .authflavor
= RPC_AUTH_UNIX
,
188 .flags
= RPC_CLNT_CREATE_NOPING
,
190 struct rpc_clnt
*clnt
, *clnt4
;
196 mutex_lock(&rpcb_create_local_mutex
);
200 clnt
= rpc_create(&args
);
202 dprintk("RPC: failed to create local rpcbind "
203 "client (errno %ld).\n", PTR_ERR(clnt
));
204 result
= -PTR_ERR(clnt
);
209 * This results in an RPC ping. On systems running portmapper,
210 * the v4 ping will fail. Proceed anyway, but disallow rpcb
213 clnt4
= rpc_bind_new_program(clnt
, &rpcb_program
, RPCBVERS_4
);
215 dprintk("RPC: failed to bind second program to "
216 "rpcbind v4 client (errno %ld).\n",
221 rpcb_local_clnt
= clnt
;
222 rpcb_local_clnt4
= clnt4
;
225 mutex_unlock(&rpcb_create_local_mutex
);
229 static struct rpc_clnt
*rpcb_create(char *hostname
, struct sockaddr
*srvaddr
,
230 size_t salen
, int proto
, u32 version
)
232 struct rpc_create_args args
= {
237 .servername
= hostname
,
238 .program
= &rpcb_program
,
240 .authflavor
= RPC_AUTH_UNIX
,
241 .flags
= (RPC_CLNT_CREATE_NOPING
|
242 RPC_CLNT_CREATE_NONPRIVPORT
),
245 switch (srvaddr
->sa_family
) {
247 ((struct sockaddr_in
*)srvaddr
)->sin_port
= htons(RPCBIND_PORT
);
250 ((struct sockaddr_in6
*)srvaddr
)->sin6_port
= htons(RPCBIND_PORT
);
253 return ERR_PTR(-EAFNOSUPPORT
);
256 return rpc_create(&args
);
259 static int rpcb_register_call(struct rpc_clnt
*clnt
, struct rpc_message
*msg
)
261 int result
, error
= 0;
263 msg
->rpc_resp
= &result
;
265 error
= rpc_call_sync(clnt
, msg
, RPC_TASK_SOFTCONN
);
267 dprintk("RPC: failed to contact local rpcbind "
268 "server (errno %d).\n", -error
);
278 * rpcb_register - set or unset a port registration with the local rpcbind svc
279 * @prog: RPC program number to bind
280 * @vers: RPC version number to bind
281 * @prot: transport protocol to register
282 * @port: port value to register
284 * Returns zero if the registration request was dispatched successfully
285 * and the rpcbind daemon returned success. Otherwise, returns an errno
286 * value that reflects the nature of the error (request could not be
287 * dispatched, timed out, or rpcbind returned an error).
289 * RPC services invoke this function to advertise their contact
290 * information via the system's rpcbind daemon. RPC services
291 * invoke this function once for each [program, version, transport]
292 * tuple they wish to advertise.
294 * Callers may also unregister RPC services that are no longer
295 * available by setting the passed-in port to zero. This removes
296 * all registered transports for [program, version] from the local
299 * This function uses rpcbind protocol version 2 to contact the
300 * local rpcbind daemon.
302 * Registration works over both AF_INET and AF_INET6, and services
303 * registered via this function are advertised as available for any
304 * address. If the local rpcbind daemon is listening on AF_INET6,
305 * services registered via this function will be advertised on
306 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
309 int rpcb_register(u32 prog
, u32 vers
, int prot
, unsigned short port
)
311 struct rpcbind_args map
= {
317 struct rpc_message msg
= {
322 error
= rpcb_create_local();
326 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
327 "rpcbind\n", (port
? "" : "un"),
328 prog
, vers
, prot
, port
);
330 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_UNSET
];
332 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_SET
];
334 return rpcb_register_call(rpcb_local_clnt
, &msg
);
338 * Fill in AF_INET family-specific arguments to register
340 static int rpcb_register_inet4(const struct sockaddr
*sap
,
341 struct rpc_message
*msg
)
343 const struct sockaddr_in
*sin
= (const struct sockaddr_in
*)sap
;
344 struct rpcbind_args
*map
= msg
->rpc_argp
;
345 unsigned short port
= ntohs(sin
->sin_port
);
348 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
350 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
351 "local rpcbind\n", (port
? "" : "un"),
352 map
->r_prog
, map
->r_vers
,
353 map
->r_addr
, map
->r_netid
);
355 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
357 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
359 result
= rpcb_register_call(rpcb_local_clnt4
, msg
);
365 * Fill in AF_INET6 family-specific arguments to register
367 static int rpcb_register_inet6(const struct sockaddr
*sap
,
368 struct rpc_message
*msg
)
370 const struct sockaddr_in6
*sin6
= (const struct sockaddr_in6
*)sap
;
371 struct rpcbind_args
*map
= msg
->rpc_argp
;
372 unsigned short port
= ntohs(sin6
->sin6_port
);
375 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
377 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
378 "local rpcbind\n", (port
? "" : "un"),
379 map
->r_prog
, map
->r_vers
,
380 map
->r_addr
, map
->r_netid
);
382 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
384 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
386 result
= rpcb_register_call(rpcb_local_clnt4
, msg
);
391 static int rpcb_unregister_all_protofamilies(struct rpc_message
*msg
)
393 struct rpcbind_args
*map
= msg
->rpc_argp
;
395 dprintk("RPC: unregistering [%u, %u, '%s'] with "
397 map
->r_prog
, map
->r_vers
, map
->r_netid
);
400 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
402 return rpcb_register_call(rpcb_local_clnt4
, msg
);
406 * rpcb_v4_register - set or unset a port registration with the local rpcbind
407 * @program: RPC program number of service to (un)register
408 * @version: RPC version number of service to (un)register
409 * @address: address family, IP address, and port to (un)register
410 * @netid: netid of transport protocol to (un)register
412 * Returns zero if the registration request was dispatched successfully
413 * and the rpcbind daemon returned success. Otherwise, returns an errno
414 * value that reflects the nature of the error (request could not be
415 * dispatched, timed out, or rpcbind returned an error).
417 * RPC services invoke this function to advertise their contact
418 * information via the system's rpcbind daemon. RPC services
419 * invoke this function once for each [program, version, address,
420 * netid] tuple they wish to advertise.
422 * Callers may also unregister RPC services that are registered at a
423 * specific address by setting the port number in @address to zero.
424 * They may unregister all registered protocol families at once for
425 * a service by passing a NULL @address argument. If @netid is ""
426 * then all netids for [program, version, address] are unregistered.
428 * This function uses rpcbind protocol version 4 to contact the
429 * local rpcbind daemon. The local rpcbind daemon must support
430 * version 4 of the rpcbind protocol in order for these functions
431 * to register a service successfully.
433 * Supported netids include "udp" and "tcp" for UDP and TCP over
434 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
437 * The contents of @address determine the address family and the
438 * port to be registered. The usual practice is to pass INADDR_ANY
439 * as the raw address, but specifying a non-zero address is also
440 * supported by this API if the caller wishes to advertise an RPC
441 * service on a specific network interface.
443 * Note that passing in INADDR_ANY does not create the same service
444 * registration as IN6ADDR_ANY. The former advertises an RPC
445 * service on any IPv4 address, but not on IPv6. The latter
446 * advertises the service on all IPv4 and IPv6 addresses.
448 int rpcb_v4_register(const u32 program
, const u32 version
,
449 const struct sockaddr
*address
, const char *netid
)
451 struct rpcbind_args map
= {
455 .r_owner
= RPCB_OWNER_STRING
,
457 struct rpc_message msg
= {
462 error
= rpcb_create_local();
465 if (rpcb_local_clnt4
== NULL
)
466 return -EPROTONOSUPPORT
;
469 return rpcb_unregister_all_protofamilies(&msg
);
471 switch (address
->sa_family
) {
473 return rpcb_register_inet4(address
, &msg
);
475 return rpcb_register_inet6(address
, &msg
);
478 return -EAFNOSUPPORT
;
481 static struct rpc_task
*rpcb_call_async(struct rpc_clnt
*rpcb_clnt
, struct rpcbind_args
*map
, struct rpc_procinfo
*proc
)
483 struct rpc_message msg
= {
488 struct rpc_task_setup task_setup_data
= {
489 .rpc_client
= rpcb_clnt
,
491 .callback_ops
= &rpcb_getport_ops
,
492 .callback_data
= map
,
493 .flags
= RPC_TASK_ASYNC
| RPC_TASK_SOFTCONN
,
496 return rpc_run_task(&task_setup_data
);
500 * In the case where rpc clients have been cloned, we want to make
501 * sure that we use the program number/version etc of the actual
502 * owner of the xprt. To do so, we walk back up the tree of parents
503 * to find whoever created the transport and/or whoever has the
506 static struct rpc_clnt
*rpcb_find_transport_owner(struct rpc_clnt
*clnt
)
508 struct rpc_clnt
*parent
= clnt
->cl_parent
;
510 while (parent
!= clnt
) {
511 if (parent
->cl_xprt
!= clnt
->cl_xprt
)
513 if (clnt
->cl_autobind
)
516 parent
= parent
->cl_parent
;
522 * rpcb_getport_async - obtain the port for a given RPC service on a given host
523 * @task: task that is waiting for portmapper request
525 * This one can be called for an ongoing RPC request, and can be used in
526 * an async (rpciod) context.
528 void rpcb_getport_async(struct rpc_task
*task
)
530 struct rpc_clnt
*clnt
;
531 struct rpc_procinfo
*proc
;
533 struct rpc_xprt
*xprt
;
534 struct rpc_clnt
*rpcb_clnt
;
535 static struct rpcbind_args
*map
;
536 struct rpc_task
*child
;
537 struct sockaddr_storage addr
;
538 struct sockaddr
*sap
= (struct sockaddr
*)&addr
;
542 clnt
= rpcb_find_transport_owner(task
->tk_client
);
543 xprt
= clnt
->cl_xprt
;
545 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
546 task
->tk_pid
, __func__
,
547 clnt
->cl_server
, clnt
->cl_prog
, clnt
->cl_vers
, xprt
->prot
);
549 /* Put self on the wait queue to ensure we get notified if
550 * some other task is already attempting to bind the port */
551 rpc_sleep_on(&xprt
->binding
, task
, NULL
);
553 if (xprt_test_and_set_binding(xprt
)) {
554 dprintk("RPC: %5u %s: waiting for another binder\n",
555 task
->tk_pid
, __func__
);
559 /* Someone else may have bound if we slept */
560 if (xprt_bound(xprt
)) {
562 dprintk("RPC: %5u %s: already bound\n",
563 task
->tk_pid
, __func__
);
567 /* Parent transport's destination address */
568 salen
= rpc_peeraddr(clnt
, sap
, sizeof(addr
));
570 /* Don't ever use rpcbind v2 for AF_INET6 requests */
571 switch (sap
->sa_family
) {
573 proc
= rpcb_next_version
[xprt
->bind_index
].rpc_proc
;
574 bind_version
= rpcb_next_version
[xprt
->bind_index
].rpc_vers
;
577 proc
= rpcb_next_version6
[xprt
->bind_index
].rpc_proc
;
578 bind_version
= rpcb_next_version6
[xprt
->bind_index
].rpc_vers
;
581 status
= -EAFNOSUPPORT
;
582 dprintk("RPC: %5u %s: bad address family\n",
583 task
->tk_pid
, __func__
);
587 xprt
->bind_index
= 0;
588 status
= -EPFNOSUPPORT
;
589 dprintk("RPC: %5u %s: no more getport versions available\n",
590 task
->tk_pid
, __func__
);
594 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
595 task
->tk_pid
, __func__
, bind_version
);
597 rpcb_clnt
= rpcb_create(clnt
->cl_server
, sap
, salen
, xprt
->prot
,
599 if (IS_ERR(rpcb_clnt
)) {
600 status
= PTR_ERR(rpcb_clnt
);
601 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
602 task
->tk_pid
, __func__
, PTR_ERR(rpcb_clnt
));
606 map
= kzalloc(sizeof(struct rpcbind_args
), GFP_ATOMIC
);
609 dprintk("RPC: %5u %s: no memory available\n",
610 task
->tk_pid
, __func__
);
611 goto bailout_release_client
;
613 map
->r_prog
= clnt
->cl_prog
;
614 map
->r_vers
= clnt
->cl_vers
;
615 map
->r_prot
= xprt
->prot
;
617 map
->r_xprt
= xprt_get(xprt
);
618 map
->r_status
= -EIO
;
620 switch (bind_version
) {
623 map
->r_netid
= rpc_peeraddr2str(clnt
, RPC_DISPLAY_NETID
);
624 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
634 child
= rpcb_call_async(rpcb_clnt
, map
, proc
);
635 rpc_release_client(rpcb_clnt
);
637 /* rpcb_map_release() has freed the arguments */
638 dprintk("RPC: %5u %s: rpc_run_task failed\n",
639 task
->tk_pid
, __func__
);
643 xprt
->stat
.bind_count
++;
647 bailout_release_client
:
648 rpc_release_client(rpcb_clnt
);
650 rpcb_wake_rpcbind_waiters(xprt
, status
);
651 task
->tk_status
= status
;
653 EXPORT_SYMBOL_GPL(rpcb_getport_async
);
656 * Rpcbind child task calls this callback via tk_exit.
658 static void rpcb_getport_done(struct rpc_task
*child
, void *data
)
660 struct rpcbind_args
*map
= data
;
661 struct rpc_xprt
*xprt
= map
->r_xprt
;
662 int status
= child
->tk_status
;
664 /* Garbage reply: retry with a lesser rpcbind version */
666 status
= -EPROTONOSUPPORT
;
668 /* rpcbind server doesn't support this rpcbind protocol version */
669 if (status
== -EPROTONOSUPPORT
)
673 /* rpcbind server not available on remote host? */
674 xprt
->ops
->set_port(xprt
, 0);
675 } else if (map
->r_port
== 0) {
676 /* Requested RPC service wasn't registered on remote host */
677 xprt
->ops
->set_port(xprt
, 0);
681 xprt
->ops
->set_port(xprt
, map
->r_port
);
682 xprt_set_bound(xprt
);
686 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
687 child
->tk_pid
, status
, map
->r_port
);
689 map
->r_status
= status
;
693 * XDR functions for rpcbind
696 static int rpcb_enc_mapping(struct rpc_rqst
*req
, __be32
*p
,
697 const struct rpcbind_args
*rpcb
)
699 struct rpc_task
*task
= req
->rq_task
;
700 struct xdr_stream xdr
;
702 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
703 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
704 rpcb
->r_prog
, rpcb
->r_vers
, rpcb
->r_prot
, rpcb
->r_port
);
706 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
708 p
= xdr_reserve_space(&xdr
, sizeof(__be32
) * RPCB_mappingargs_sz
);
709 if (unlikely(p
== NULL
))
712 *p
++ = htonl(rpcb
->r_prog
);
713 *p
++ = htonl(rpcb
->r_vers
);
714 *p
++ = htonl(rpcb
->r_prot
);
715 *p
= htonl(rpcb
->r_port
);
720 static int rpcb_dec_getport(struct rpc_rqst
*req
, __be32
*p
,
721 struct rpcbind_args
*rpcb
)
723 struct rpc_task
*task
= req
->rq_task
;
724 struct xdr_stream xdr
;
727 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
731 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
732 if (unlikely(p
== NULL
))
736 dprintk("RPC: %5u PMAP_%s result: %lu\n", task
->tk_pid
,
737 task
->tk_msg
.rpc_proc
->p_name
, port
);
738 if (unlikely(port
> USHRT_MAX
))
745 static int rpcb_dec_set(struct rpc_rqst
*req
, __be32
*p
,
748 struct rpc_task
*task
= req
->rq_task
;
749 struct xdr_stream xdr
;
751 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
753 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
754 if (unlikely(p
== NULL
))
761 dprintk("RPC: %5u RPCB_%s call %s\n",
762 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
763 (*boolp
? "succeeded" : "failed"));
767 static int encode_rpcb_string(struct xdr_stream
*xdr
, const char *string
,
773 if (unlikely(string
== NULL
))
775 len
= strlen(string
);
776 if (unlikely(len
> maxstrlen
))
779 p
= xdr_reserve_space(xdr
, sizeof(__be32
) + len
);
780 if (unlikely(p
== NULL
))
782 xdr_encode_opaque(p
, string
, len
);
787 static int rpcb_enc_getaddr(struct rpc_rqst
*req
, __be32
*p
,
788 const struct rpcbind_args
*rpcb
)
790 struct rpc_task
*task
= req
->rq_task
;
791 struct xdr_stream xdr
;
793 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
794 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
795 rpcb
->r_prog
, rpcb
->r_vers
,
796 rpcb
->r_netid
, rpcb
->r_addr
);
798 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
800 p
= xdr_reserve_space(&xdr
,
801 sizeof(__be32
) * (RPCB_program_sz
+ RPCB_version_sz
));
802 if (unlikely(p
== NULL
))
804 *p
++ = htonl(rpcb
->r_prog
);
805 *p
= htonl(rpcb
->r_vers
);
807 if (encode_rpcb_string(&xdr
, rpcb
->r_netid
, RPCBIND_MAXNETIDLEN
))
809 if (encode_rpcb_string(&xdr
, rpcb
->r_addr
, RPCBIND_MAXUADDRLEN
))
811 if (encode_rpcb_string(&xdr
, rpcb
->r_owner
, RPCB_MAXOWNERLEN
))
817 static int rpcb_dec_getaddr(struct rpc_rqst
*req
, __be32
*p
,
818 struct rpcbind_args
*rpcb
)
820 struct sockaddr_storage address
;
821 struct sockaddr
*sap
= (struct sockaddr
*)&address
;
822 struct rpc_task
*task
= req
->rq_task
;
823 struct xdr_stream xdr
;
828 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
830 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
831 if (unlikely(p
== NULL
))
836 * If the returned universal address is a null string,
837 * the requested RPC service was not registered.
840 dprintk("RPC: %5u RPCB reply: program not registered\n",
845 if (unlikely(len
> RPCBIND_MAXUADDRLEN
))
848 p
= xdr_inline_decode(&xdr
, len
);
849 if (unlikely(p
== NULL
))
851 dprintk("RPC: %5u RPCB_%s reply: %s\n", task
->tk_pid
,
852 task
->tk_msg
.rpc_proc
->p_name
, (char *)p
);
854 if (rpc_uaddr2sockaddr((char *)p
, len
, sap
, sizeof(address
)) == 0)
856 rpcb
->r_port
= rpc_get_port(sap
);
861 dprintk("RPC: %5u malformed RPCB_%s reply\n",
862 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
);
867 * Not all rpcbind procedures described in RFC 1833 are implemented
868 * since the Linux kernel RPC code requires only these.
871 static struct rpc_procinfo rpcb_procedures2
[] = {
873 .p_proc
= RPCBPROC_SET
,
874 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
875 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
876 .p_arglen
= RPCB_mappingargs_sz
,
877 .p_replen
= RPCB_setres_sz
,
878 .p_statidx
= RPCBPROC_SET
,
883 .p_proc
= RPCBPROC_UNSET
,
884 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
885 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
886 .p_arglen
= RPCB_mappingargs_sz
,
887 .p_replen
= RPCB_setres_sz
,
888 .p_statidx
= RPCBPROC_UNSET
,
892 [RPCBPROC_GETPORT
] = {
893 .p_proc
= RPCBPROC_GETPORT
,
894 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
895 .p_decode
= (kxdrproc_t
)rpcb_dec_getport
,
896 .p_arglen
= RPCB_mappingargs_sz
,
897 .p_replen
= RPCB_getportres_sz
,
898 .p_statidx
= RPCBPROC_GETPORT
,
904 static struct rpc_procinfo rpcb_procedures3
[] = {
906 .p_proc
= RPCBPROC_SET
,
907 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
908 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
909 .p_arglen
= RPCB_getaddrargs_sz
,
910 .p_replen
= RPCB_setres_sz
,
911 .p_statidx
= RPCBPROC_SET
,
916 .p_proc
= RPCBPROC_UNSET
,
917 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
918 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
919 .p_arglen
= RPCB_getaddrargs_sz
,
920 .p_replen
= RPCB_setres_sz
,
921 .p_statidx
= RPCBPROC_UNSET
,
925 [RPCBPROC_GETADDR
] = {
926 .p_proc
= RPCBPROC_GETADDR
,
927 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
928 .p_decode
= (kxdrproc_t
)rpcb_dec_getaddr
,
929 .p_arglen
= RPCB_getaddrargs_sz
,
930 .p_replen
= RPCB_getaddrres_sz
,
931 .p_statidx
= RPCBPROC_GETADDR
,
937 static struct rpc_procinfo rpcb_procedures4
[] = {
939 .p_proc
= RPCBPROC_SET
,
940 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
941 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
942 .p_arglen
= RPCB_getaddrargs_sz
,
943 .p_replen
= RPCB_setres_sz
,
944 .p_statidx
= RPCBPROC_SET
,
949 .p_proc
= RPCBPROC_UNSET
,
950 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
951 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
952 .p_arglen
= RPCB_getaddrargs_sz
,
953 .p_replen
= RPCB_setres_sz
,
954 .p_statidx
= RPCBPROC_UNSET
,
958 [RPCBPROC_GETADDR
] = {
959 .p_proc
= RPCBPROC_GETADDR
,
960 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
961 .p_decode
= (kxdrproc_t
)rpcb_dec_getaddr
,
962 .p_arglen
= RPCB_getaddrargs_sz
,
963 .p_replen
= RPCB_getaddrres_sz
,
964 .p_statidx
= RPCBPROC_GETADDR
,
970 static struct rpcb_info rpcb_next_version
[] = {
972 .rpc_vers
= RPCBVERS_2
,
973 .rpc_proc
= &rpcb_procedures2
[RPCBPROC_GETPORT
],
980 static struct rpcb_info rpcb_next_version6
[] = {
982 .rpc_vers
= RPCBVERS_4
,
983 .rpc_proc
= &rpcb_procedures4
[RPCBPROC_GETADDR
],
986 .rpc_vers
= RPCBVERS_3
,
987 .rpc_proc
= &rpcb_procedures3
[RPCBPROC_GETADDR
],
994 static struct rpc_version rpcb_version2
= {
995 .number
= RPCBVERS_2
,
996 .nrprocs
= RPCB_HIGHPROC_2
,
997 .procs
= rpcb_procedures2
1000 static struct rpc_version rpcb_version3
= {
1001 .number
= RPCBVERS_3
,
1002 .nrprocs
= RPCB_HIGHPROC_3
,
1003 .procs
= rpcb_procedures3
1006 static struct rpc_version rpcb_version4
= {
1007 .number
= RPCBVERS_4
,
1008 .nrprocs
= RPCB_HIGHPROC_4
,
1009 .procs
= rpcb_procedures4
1012 static struct rpc_version
*rpcb_version
[] = {
1020 static struct rpc_stat rpcb_stats
;
1022 static struct rpc_program rpcb_program
= {
1024 .number
= RPCBIND_PROGRAM
,
1025 .nrvers
= ARRAY_SIZE(rpcb_version
),
1026 .version
= rpcb_version
,
1027 .stats
= &rpcb_stats
,
1031 * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
1034 void cleanup_rpcb_clnt(void)
1036 if (rpcb_local_clnt4
)
1037 rpc_shutdown_client(rpcb_local_clnt4
);
1038 if (rpcb_local_clnt
)
1039 rpc_shutdown_client(rpcb_local_clnt
);