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.
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.
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.
75 #define RPCB_OWNER_STRING "0"
76 #define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
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)
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))
92 * XDR argument and result sizes
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 + \
100 #define RPCB_getportres_sz RPCB_port_sz
101 #define RPCB_setres_sz RPCB_boolean_sz
104 * Note that RFC 1833 does not put any size restrictions on the
105 * address string returned by the remote rpcbind database.
107 #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
;
113 struct rpcbind_args
{
114 struct rpc_xprt
* r_xprt
;
119 unsigned short r_port
;
120 const char * r_netid
;
122 const char * r_owner
;
127 static struct rpc_procinfo rpcb_procedures2
[];
128 static struct rpc_procinfo rpcb_procedures3
[];
129 static struct rpc_procinfo rpcb_procedures4
[];
133 struct rpc_procinfo
* rpc_proc
;
136 static struct rpcb_info rpcb_next_version
[];
137 static struct rpcb_info rpcb_next_version6
[];
139 static const struct rpc_call_ops rpcb_getport_ops
= {
140 .rpc_call_done
= rpcb_getport_done
,
141 .rpc_release
= rpcb_map_release
,
144 static void rpcb_wake_rpcbind_waiters(struct rpc_xprt
*xprt
, int status
)
146 xprt_clear_binding(xprt
);
147 rpc_wake_up_status(&xprt
->binding
, status
);
150 static void rpcb_map_release(void *data
)
152 struct rpcbind_args
*map
= data
;
154 rpcb_wake_rpcbind_waiters(map
->r_xprt
, map
->r_status
);
155 xprt_put(map
->r_xprt
);
160 static const struct sockaddr_in rpcb_inaddr_loopback
= {
161 .sin_family
= AF_INET
,
162 .sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
),
163 .sin_port
= htons(RPCBIND_PORT
),
166 static struct rpc_clnt
*rpcb_create_local(struct sockaddr
*addr
,
167 size_t addrlen
, u32 version
)
169 struct rpc_create_args args
= {
170 .protocol
= XPRT_TRANSPORT_UDP
,
173 .servername
= "localhost",
174 .program
= &rpcb_program
,
176 .authflavor
= RPC_AUTH_UNIX
,
177 .flags
= RPC_CLNT_CREATE_NOPING
,
180 return rpc_create(&args
);
183 static struct rpc_clnt
*rpcb_create(char *hostname
, struct sockaddr
*srvaddr
,
184 size_t salen
, int proto
, u32 version
)
186 struct rpc_create_args args
= {
190 .servername
= hostname
,
191 .program
= &rpcb_program
,
193 .authflavor
= RPC_AUTH_UNIX
,
194 .flags
= (RPC_CLNT_CREATE_NOPING
|
195 RPC_CLNT_CREATE_NONPRIVPORT
),
198 switch (srvaddr
->sa_family
) {
200 ((struct sockaddr_in
*)srvaddr
)->sin_port
= htons(RPCBIND_PORT
);
203 ((struct sockaddr_in6
*)srvaddr
)->sin6_port
= htons(RPCBIND_PORT
);
209 return rpc_create(&args
);
212 static int rpcb_register_call(const u32 version
, struct rpc_message
*msg
)
214 struct sockaddr
*addr
= (struct sockaddr
*)&rpcb_inaddr_loopback
;
215 size_t addrlen
= sizeof(rpcb_inaddr_loopback
);
216 struct rpc_clnt
*rpcb_clnt
;
217 int result
, error
= 0;
219 msg
->rpc_resp
= &result
;
221 rpcb_clnt
= rpcb_create_local(addr
, addrlen
, version
);
222 if (!IS_ERR(rpcb_clnt
)) {
223 error
= rpc_call_sync(rpcb_clnt
, msg
, 0);
224 rpc_shutdown_client(rpcb_clnt
);
226 error
= PTR_ERR(rpcb_clnt
);
229 dprintk("RPC: failed to contact local rpcbind "
230 "server (errno %d).\n", -error
);
240 * rpcb_register - set or unset a port registration with the local rpcbind svc
241 * @prog: RPC program number to bind
242 * @vers: RPC version number to bind
243 * @prot: transport protocol to register
244 * @port: port value to register
246 * Returns zero if the registration request was dispatched successfully
247 * and the rpcbind daemon returned success. Otherwise, returns an errno
248 * value that reflects the nature of the error (request could not be
249 * dispatched, timed out, or rpcbind returned an error).
251 * RPC services invoke this function to advertise their contact
252 * information via the system's rpcbind daemon. RPC services
253 * invoke this function once for each [program, version, transport]
254 * tuple they wish to advertise.
256 * Callers may also unregister RPC services that are no longer
257 * available by setting the passed-in port to zero. This removes
258 * all registered transports for [program, version] from the local
261 * This function uses rpcbind protocol version 2 to contact the
262 * local rpcbind daemon.
264 * Registration works over both AF_INET and AF_INET6, and services
265 * registered via this function are advertised as available for any
266 * address. If the local rpcbind daemon is listening on AF_INET6,
267 * services registered via this function will be advertised on
268 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
271 int rpcb_register(u32 prog
, u32 vers
, int prot
, unsigned short port
)
273 struct rpcbind_args map
= {
279 struct rpc_message msg
= {
283 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
284 "rpcbind\n", (port
? "" : "un"),
285 prog
, vers
, prot
, port
);
287 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_UNSET
];
289 msg
.rpc_proc
= &rpcb_procedures2
[RPCBPROC_SET
];
291 return rpcb_register_call(RPCBVERS_2
, &msg
);
295 * Fill in AF_INET family-specific arguments to register
297 static int rpcb_register_inet4(const struct sockaddr
*sap
,
298 struct rpc_message
*msg
)
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
);
305 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
307 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
308 "local rpcbind\n", (port
? "" : "un"),
309 map
->r_prog
, map
->r_vers
,
310 map
->r_addr
, map
->r_netid
);
312 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
314 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
316 result
= rpcb_register_call(RPCBVERS_4
, msg
);
322 * Fill in AF_INET6 family-specific arguments to register
324 static int rpcb_register_inet6(const struct sockaddr
*sap
,
325 struct rpc_message
*msg
)
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
);
332 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
334 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
335 "local rpcbind\n", (port
? "" : "un"),
336 map
->r_prog
, map
->r_vers
,
337 map
->r_addr
, map
->r_netid
);
339 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
341 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_SET
];
343 result
= rpcb_register_call(RPCBVERS_4
, msg
);
348 static int rpcb_unregister_all_protofamilies(struct rpc_message
*msg
)
350 struct rpcbind_args
*map
= msg
->rpc_argp
;
352 dprintk("RPC: unregistering [%u, %u, '%s'] with "
354 map
->r_prog
, map
->r_vers
, map
->r_netid
);
357 msg
->rpc_proc
= &rpcb_procedures4
[RPCBPROC_UNSET
];
359 return rpcb_register_call(RPCBVERS_4
, msg
);
363 * rpcb_v4_register - set or unset a port registration with the local rpcbind
364 * @program: RPC program number of service to (un)register
365 * @version: RPC version number of service to (un)register
366 * @address: address family, IP address, and port to (un)register
367 * @netid: netid of transport protocol to (un)register
369 * Returns zero if the registration request was dispatched successfully
370 * and the rpcbind daemon returned success. Otherwise, returns an errno
371 * value that reflects the nature of the error (request could not be
372 * dispatched, timed out, or rpcbind returned an error).
374 * RPC services invoke this function to advertise their contact
375 * information via the system's rpcbind daemon. RPC services
376 * invoke this function once for each [program, version, address,
377 * netid] tuple they wish to advertise.
379 * Callers may also unregister RPC services that are registered at a
380 * specific address by setting the port number in @address to zero.
381 * They may unregister all registered protocol families at once for
382 * a service by passing a NULL @address argument. If @netid is ""
383 * then all netids for [program, version, address] are unregistered.
385 * This function uses rpcbind protocol version 4 to contact the
386 * local rpcbind daemon. The local rpcbind daemon must support
387 * version 4 of the rpcbind protocol in order for these functions
388 * to register a service successfully.
390 * Supported netids include "udp" and "tcp" for UDP and TCP over
391 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
394 * The contents of @address determine the address family and the
395 * port to be registered. The usual practice is to pass INADDR_ANY
396 * as the raw address, but specifying a non-zero address is also
397 * supported by this API if the caller wishes to advertise an RPC
398 * service on a specific network interface.
400 * Note that passing in INADDR_ANY does not create the same service
401 * registration as IN6ADDR_ANY. The former advertises an RPC
402 * service on any IPv4 address, but not on IPv6. The latter
403 * advertises the service on all IPv4 and IPv6 addresses.
405 int rpcb_v4_register(const u32 program
, const u32 version
,
406 const struct sockaddr
*address
, const char *netid
)
408 struct rpcbind_args map
= {
412 .r_owner
= RPCB_OWNER_STRING
,
414 struct rpc_message msg
= {
419 return rpcb_unregister_all_protofamilies(&msg
);
421 switch (address
->sa_family
) {
423 return rpcb_register_inet4(address
, &msg
);
425 return rpcb_register_inet6(address
, &msg
);
428 return -EAFNOSUPPORT
;
432 * rpcb_getport_sync - obtain the port for an RPC service on a given host
433 * @sin: address of remote peer
434 * @prog: RPC program number to bind
435 * @vers: RPC version number to bind
436 * @prot: transport protocol to use to make this request
438 * Return value is the requested advertised port number,
439 * 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.
444 * XXX: Needs to support IPv6
446 int rpcb_getport_sync(struct sockaddr_in
*sin
, u32 prog
, u32 vers
, int prot
)
448 struct rpcbind_args map
= {
454 struct rpc_message msg
= {
455 .rpc_proc
= &rpcb_procedures2
[RPCBPROC_GETPORT
],
459 struct rpc_clnt
*rpcb_clnt
;
462 dprintk("RPC: %s(%pI4, %u, %u, %d)\n",
463 __func__
, &sin
->sin_addr
.s_addr
, prog
, vers
, prot
);
465 rpcb_clnt
= rpcb_create(NULL
, (struct sockaddr
*)sin
,
466 sizeof(*sin
), prot
, RPCBVERS_2
);
467 if (IS_ERR(rpcb_clnt
))
468 return PTR_ERR(rpcb_clnt
);
470 status
= rpc_call_sync(rpcb_clnt
, &msg
, 0);
471 rpc_shutdown_client(rpcb_clnt
);
480 EXPORT_SYMBOL_GPL(rpcb_getport_sync
);
482 static struct rpc_task
*rpcb_call_async(struct rpc_clnt
*rpcb_clnt
, struct rpcbind_args
*map
, struct rpc_procinfo
*proc
)
484 struct rpc_message msg
= {
489 struct rpc_task_setup task_setup_data
= {
490 .rpc_client
= rpcb_clnt
,
492 .callback_ops
= &rpcb_getport_ops
,
493 .callback_data
= map
,
494 .flags
= RPC_TASK_ASYNC
,
497 return rpc_run_task(&task_setup_data
);
501 * In the case where rpc clients have been cloned, we want to make
502 * sure that we use the program number/version etc of the actual
503 * owner of the xprt. To do so, we walk back up the tree of parents
504 * to find whoever created the transport and/or whoever has the
507 static struct rpc_clnt
*rpcb_find_transport_owner(struct rpc_clnt
*clnt
)
509 struct rpc_clnt
*parent
= clnt
->cl_parent
;
511 while (parent
!= clnt
) {
512 if (parent
->cl_xprt
!= clnt
->cl_xprt
)
514 if (clnt
->cl_autobind
)
517 parent
= parent
->cl_parent
;
523 * rpcb_getport_async - obtain the port for a given RPC service on a given host
524 * @task: task that is waiting for portmapper request
526 * This one can be called for an ongoing RPC request, and can be used in
527 * an async (rpciod) context.
529 void rpcb_getport_async(struct rpc_task
*task
)
531 struct rpc_clnt
*clnt
;
532 struct rpc_procinfo
*proc
;
534 struct rpc_xprt
*xprt
;
535 struct rpc_clnt
*rpcb_clnt
;
536 static struct rpcbind_args
*map
;
537 struct rpc_task
*child
;
538 struct sockaddr_storage addr
;
539 struct sockaddr
*sap
= (struct sockaddr
*)&addr
;
543 clnt
= rpcb_find_transport_owner(task
->tk_client
);
544 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
);
550 /* Put self on the wait queue to ensure we get notified if
551 * some other task is already attempting to bind the port */
552 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__
);
560 /* Someone else may have bound if we slept */
561 if (xprt_bound(xprt
)) {
563 dprintk("RPC: %5u %s: already bound\n",
564 task
->tk_pid
, __func__
);
568 /* Parent transport's destination address */
569 salen
= rpc_peeraddr(clnt
, sap
, sizeof(addr
));
571 /* Don't ever use rpcbind v2 for AF_INET6 requests */
572 switch (sap
->sa_family
) {
574 proc
= rpcb_next_version
[xprt
->bind_index
].rpc_proc
;
575 bind_version
= rpcb_next_version
[xprt
->bind_index
].rpc_vers
;
578 proc
= rpcb_next_version6
[xprt
->bind_index
].rpc_proc
;
579 bind_version
= rpcb_next_version6
[xprt
->bind_index
].rpc_vers
;
582 status
= -EAFNOSUPPORT
;
583 dprintk("RPC: %5u %s: bad address family\n",
584 task
->tk_pid
, __func__
);
588 xprt
->bind_index
= 0;
589 status
= -EPFNOSUPPORT
;
590 dprintk("RPC: %5u %s: no more getport versions available\n",
591 task
->tk_pid
, __func__
);
595 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
596 task
->tk_pid
, __func__
, bind_version
);
598 rpcb_clnt
= rpcb_create(clnt
->cl_server
, sap
, salen
, xprt
->prot
,
600 if (IS_ERR(rpcb_clnt
)) {
601 status
= PTR_ERR(rpcb_clnt
);
602 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
603 task
->tk_pid
, __func__
, PTR_ERR(rpcb_clnt
));
607 map
= kzalloc(sizeof(struct rpcbind_args
), GFP_ATOMIC
);
610 dprintk("RPC: %5u %s: no memory available\n",
611 task
->tk_pid
, __func__
);
612 goto bailout_release_client
;
614 map
->r_prog
= clnt
->cl_prog
;
615 map
->r_vers
= clnt
->cl_vers
;
616 map
->r_prot
= xprt
->prot
;
618 map
->r_xprt
= xprt_get(xprt
);
619 map
->r_status
= -EIO
;
621 switch (bind_version
) {
624 map
->r_netid
= rpc_peeraddr2str(clnt
, RPC_DISPLAY_NETID
);
625 map
->r_addr
= rpc_sockaddr2uaddr(sap
);
635 child
= rpcb_call_async(rpcb_clnt
, map
, proc
);
636 rpc_release_client(rpcb_clnt
);
638 /* rpcb_map_release() has freed the arguments */
639 dprintk("RPC: %5u %s: rpc_run_task failed\n",
640 task
->tk_pid
, __func__
);
644 xprt
->stat
.bind_count
++;
648 bailout_release_client
:
649 rpc_release_client(rpcb_clnt
);
651 rpcb_wake_rpcbind_waiters(xprt
, status
);
652 task
->tk_status
= status
;
654 EXPORT_SYMBOL_GPL(rpcb_getport_async
);
657 * Rpcbind child task calls this callback via tk_exit.
659 static void rpcb_getport_done(struct rpc_task
*child
, void *data
)
661 struct rpcbind_args
*map
= data
;
662 struct rpc_xprt
*xprt
= map
->r_xprt
;
663 int status
= child
->tk_status
;
665 /* Garbage reply: retry with a lesser rpcbind version */
667 status
= -EPROTONOSUPPORT
;
669 /* rpcbind server doesn't support this rpcbind protocol version */
670 if (status
== -EPROTONOSUPPORT
)
674 /* rpcbind server not available on remote host? */
675 xprt
->ops
->set_port(xprt
, 0);
676 } else if (map
->r_port
== 0) {
677 /* Requested RPC service wasn't registered on remote host */
678 xprt
->ops
->set_port(xprt
, 0);
682 xprt
->ops
->set_port(xprt
, map
->r_port
);
683 xprt_set_bound(xprt
);
687 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
688 child
->tk_pid
, status
, map
->r_port
);
690 map
->r_status
= status
;
694 * XDR functions for rpcbind
697 static int rpcb_enc_mapping(struct rpc_rqst
*req
, __be32
*p
,
698 const struct rpcbind_args
*rpcb
)
700 struct rpc_task
*task
= req
->rq_task
;
701 struct xdr_stream xdr
;
703 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
704 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
705 rpcb
->r_prog
, rpcb
->r_vers
, rpcb
->r_prot
, rpcb
->r_port
);
707 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
709 p
= xdr_reserve_space(&xdr
, sizeof(__be32
) * RPCB_mappingargs_sz
);
710 if (unlikely(p
== NULL
))
713 *p
++ = htonl(rpcb
->r_prog
);
714 *p
++ = htonl(rpcb
->r_vers
);
715 *p
++ = htonl(rpcb
->r_prot
);
716 *p
= htonl(rpcb
->r_port
);
721 static int rpcb_dec_getport(struct rpc_rqst
*req
, __be32
*p
,
722 struct rpcbind_args
*rpcb
)
724 struct rpc_task
*task
= req
->rq_task
;
725 struct xdr_stream xdr
;
728 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
732 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
733 if (unlikely(p
== NULL
))
737 dprintk("RPC: %5u PMAP_%s result: %lu\n", task
->tk_pid
,
738 task
->tk_msg
.rpc_proc
->p_name
, port
);
739 if (unlikely(port
> USHORT_MAX
))
746 static int rpcb_dec_set(struct rpc_rqst
*req
, __be32
*p
,
749 struct rpc_task
*task
= req
->rq_task
;
750 struct xdr_stream xdr
;
752 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
754 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
755 if (unlikely(p
== NULL
))
762 dprintk("RPC: %5u RPCB_%s call %s\n",
763 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
764 (*boolp
? "succeeded" : "failed"));
768 static int encode_rpcb_string(struct xdr_stream
*xdr
, const char *string
,
774 if (unlikely(string
== NULL
))
776 len
= strlen(string
);
777 if (unlikely(len
> maxstrlen
))
780 p
= xdr_reserve_space(xdr
, sizeof(__be32
) + len
);
781 if (unlikely(p
== NULL
))
783 xdr_encode_opaque(p
, string
, len
);
788 static int rpcb_enc_getaddr(struct rpc_rqst
*req
, __be32
*p
,
789 const struct rpcbind_args
*rpcb
)
791 struct rpc_task
*task
= req
->rq_task
;
792 struct xdr_stream xdr
;
794 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
795 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
,
796 rpcb
->r_prog
, rpcb
->r_vers
,
797 rpcb
->r_netid
, rpcb
->r_addr
);
799 xdr_init_encode(&xdr
, &req
->rq_snd_buf
, p
);
801 p
= xdr_reserve_space(&xdr
,
802 sizeof(__be32
) * (RPCB_program_sz
+ RPCB_version_sz
));
803 if (unlikely(p
== NULL
))
805 *p
++ = htonl(rpcb
->r_prog
);
806 *p
= htonl(rpcb
->r_vers
);
808 if (encode_rpcb_string(&xdr
, rpcb
->r_netid
, RPCBIND_MAXNETIDLEN
))
810 if (encode_rpcb_string(&xdr
, rpcb
->r_addr
, RPCBIND_MAXUADDRLEN
))
812 if (encode_rpcb_string(&xdr
, rpcb
->r_owner
, RPCB_MAXOWNERLEN
))
818 static int rpcb_dec_getaddr(struct rpc_rqst
*req
, __be32
*p
,
819 struct rpcbind_args
*rpcb
)
821 struct sockaddr_storage address
;
822 struct sockaddr
*sap
= (struct sockaddr
*)&address
;
823 struct rpc_task
*task
= req
->rq_task
;
824 struct xdr_stream xdr
;
829 xdr_init_decode(&xdr
, &req
->rq_rcv_buf
, p
);
831 p
= xdr_inline_decode(&xdr
, sizeof(__be32
));
832 if (unlikely(p
== NULL
))
837 * If the returned universal address is a null string,
838 * the requested RPC service was not registered.
841 dprintk("RPC: %5u RPCB reply: program not registered\n",
846 if (unlikely(len
> RPCBIND_MAXUADDRLEN
))
849 p
= xdr_inline_decode(&xdr
, len
);
850 if (unlikely(p
== NULL
))
852 dprintk("RPC: %5u RPCB_%s reply: %s\n", task
->tk_pid
,
853 task
->tk_msg
.rpc_proc
->p_name
, (char *)p
);
855 if (rpc_uaddr2sockaddr((char *)p
, len
, sap
, sizeof(address
)) == 0)
857 rpcb
->r_port
= rpc_get_port(sap
);
862 dprintk("RPC: %5u malformed RPCB_%s reply\n",
863 task
->tk_pid
, task
->tk_msg
.rpc_proc
->p_name
);
868 * Not all rpcbind procedures described in RFC 1833 are implemented
869 * since the Linux kernel RPC code requires only these.
872 static struct rpc_procinfo rpcb_procedures2
[] = {
874 .p_proc
= RPCBPROC_SET
,
875 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
876 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
877 .p_arglen
= RPCB_mappingargs_sz
,
878 .p_replen
= RPCB_setres_sz
,
879 .p_statidx
= RPCBPROC_SET
,
884 .p_proc
= RPCBPROC_UNSET
,
885 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
886 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
887 .p_arglen
= RPCB_mappingargs_sz
,
888 .p_replen
= RPCB_setres_sz
,
889 .p_statidx
= RPCBPROC_UNSET
,
893 [RPCBPROC_GETPORT
] = {
894 .p_proc
= RPCBPROC_GETPORT
,
895 .p_encode
= (kxdrproc_t
)rpcb_enc_mapping
,
896 .p_decode
= (kxdrproc_t
)rpcb_dec_getport
,
897 .p_arglen
= RPCB_mappingargs_sz
,
898 .p_replen
= RPCB_getportres_sz
,
899 .p_statidx
= RPCBPROC_GETPORT
,
905 static struct rpc_procinfo rpcb_procedures3
[] = {
907 .p_proc
= RPCBPROC_SET
,
908 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
909 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
910 .p_arglen
= RPCB_getaddrargs_sz
,
911 .p_replen
= RPCB_setres_sz
,
912 .p_statidx
= RPCBPROC_SET
,
917 .p_proc
= RPCBPROC_UNSET
,
918 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
919 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
920 .p_arglen
= RPCB_getaddrargs_sz
,
921 .p_replen
= RPCB_setres_sz
,
922 .p_statidx
= RPCBPROC_UNSET
,
926 [RPCBPROC_GETADDR
] = {
927 .p_proc
= RPCBPROC_GETADDR
,
928 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
929 .p_decode
= (kxdrproc_t
)rpcb_dec_getaddr
,
930 .p_arglen
= RPCB_getaddrargs_sz
,
931 .p_replen
= RPCB_getaddrres_sz
,
932 .p_statidx
= RPCBPROC_GETADDR
,
938 static struct rpc_procinfo rpcb_procedures4
[] = {
940 .p_proc
= RPCBPROC_SET
,
941 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
942 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
943 .p_arglen
= RPCB_getaddrargs_sz
,
944 .p_replen
= RPCB_setres_sz
,
945 .p_statidx
= RPCBPROC_SET
,
950 .p_proc
= RPCBPROC_UNSET
,
951 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
952 .p_decode
= (kxdrproc_t
)rpcb_dec_set
,
953 .p_arglen
= RPCB_getaddrargs_sz
,
954 .p_replen
= RPCB_setres_sz
,
955 .p_statidx
= RPCBPROC_UNSET
,
959 [RPCBPROC_GETADDR
] = {
960 .p_proc
= RPCBPROC_GETADDR
,
961 .p_encode
= (kxdrproc_t
)rpcb_enc_getaddr
,
962 .p_decode
= (kxdrproc_t
)rpcb_dec_getaddr
,
963 .p_arglen
= RPCB_getaddrargs_sz
,
964 .p_replen
= RPCB_getaddrres_sz
,
965 .p_statidx
= RPCBPROC_GETADDR
,
971 static struct rpcb_info rpcb_next_version
[] = {
973 .rpc_vers
= RPCBVERS_2
,
974 .rpc_proc
= &rpcb_procedures2
[RPCBPROC_GETPORT
],
981 static struct rpcb_info rpcb_next_version6
[] = {
983 .rpc_vers
= RPCBVERS_4
,
984 .rpc_proc
= &rpcb_procedures4
[RPCBPROC_GETADDR
],
987 .rpc_vers
= RPCBVERS_3
,
988 .rpc_proc
= &rpcb_procedures3
[RPCBPROC_GETADDR
],
995 static struct rpc_version rpcb_version2
= {
996 .number
= RPCBVERS_2
,
997 .nrprocs
= RPCB_HIGHPROC_2
,
998 .procs
= rpcb_procedures2
1001 static struct rpc_version rpcb_version3
= {
1002 .number
= RPCBVERS_3
,
1003 .nrprocs
= RPCB_HIGHPROC_3
,
1004 .procs
= rpcb_procedures3
1007 static struct rpc_version rpcb_version4
= {
1008 .number
= RPCBVERS_4
,
1009 .nrprocs
= RPCB_HIGHPROC_4
,
1010 .procs
= rpcb_procedures4
1013 static struct rpc_version
*rpcb_version
[] = {
1021 static struct rpc_stat rpcb_stats
;
1023 static struct rpc_program rpcb_program
= {
1025 .number
= RPCBIND_PROGRAM
,
1026 .nrvers
= ARRAY_SIZE(rpcb_version
),
1027 .version
= rpcb_version
,
1028 .stats
= &rpcb_stats
,