2 * Provide a variety of APIs that query an rpcbind daemon to
3 * discover RPC service ports and allowed protocol version
6 * Copyright (C) 2008 Oracle Corporation. All rights reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 021110-1307, USA.
29 #include <sys/types.h>
35 #include <sys/socket.h>
36 #include <netinet/in.h>
38 #include <arpa/inet.h>
41 #include <rpc/pmap_prot.h>
44 #include <netconfig.h>
45 #include <rpc/rpcb_prot.h>
51 * Try a local socket first to access the local rpcbind daemon
53 * Rpcbind's local socket service does not seem to be working.
54 * Disable this logic for now.
58 #else /* !HAVE_LIBTIRPC */
60 #endif /* !HAVE_LIBTIRPC */
63 static const rpcvers_t default_rpcb_version = RPCBVERS_4;
64 #else /* !HAVE_LIBTIRPC */
65 static const rpcvers_t default_rpcb_version = PMAPVERS;
66 #endif /* !HAVE_LIBTIRPC */
68 #ifdef HAVE_DECL_AI_ADDRCONFIG
70 * getaddrinfo(3) generates a usable loopback address based on how the
71 * local network interfaces are configured. RFC 3484 requires that the
72 * results are sorted so that the first result has the best likelihood
73 * of working, so we try just that first result.
75 * Returns TRUE on success.
77 static int nfs_gp_loopback_address(struct sockaddr *sap, socklen_t *salen)
79 struct addrinfo *gai_results;
80 struct addrinfo gai_hint = {
81 .ai_flags = AI_ADDRCONFIG,
83 socklen_t len = *salen;
86 if (getaddrinfo(NULL, "sunrpc", &gai_hint, &gai_results))
89 switch (gai_results->ai_addr->sa_family) {
92 if (len >= gai_results->ai_addrlen) {
93 memcpy(sap, gai_results->ai_addr,
94 gai_results->ai_addrlen);
95 *salen = gai_results->ai_addrlen;
100 freeaddrinfo(gai_results);
105 * Old versions of getaddrinfo(3) don't support AI_ADDRCONFIG, so we
106 * have a fallback for building on legacy systems.
108 static int nfs_gp_loopback_address(struct sockaddr *sap, socklen_t *salen)
110 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
112 memset(sin, 0, sizeof(*sin));
114 sin->sin_family = AF_INET;
115 sin->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
116 *salen = sizeof(*sin);
123 * Plant port number in @sap. @port is already in network byte order.
125 static void nfs_gp_set_port(struct sockaddr *sap, const in_port_t port)
127 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
128 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
130 switch (sap->sa_family) {
132 sin->sin_port = port;
135 sin6->sin6_port = port;
141 * Look up a network service in /etc/services and return the
142 * network-order port number of that service.
144 static in_port_t nfs_gp_getservbyname(const char *service,
145 const unsigned short protocol)
147 const struct addrinfo gai_hint = {
148 .ai_family = AF_INET,
149 .ai_protocol = protocol,
150 .ai_flags = AI_PASSIVE,
152 struct addrinfo *gai_results;
153 const struct sockaddr_in *sin;
156 if (getaddrinfo(NULL, service, &gai_hint, &gai_results) != 0)
159 sin = (const struct sockaddr_in *)gai_results->ai_addr;
160 port = sin->sin_port;
162 freeaddrinfo(gai_results);
167 * Discover the port number that should be used to contact an
168 * rpcbind service. This will detect if the port has a local
169 * value that may have been set in /etc/services.
171 * Returns network byte-order port number of rpcbind service
174 static in_port_t nfs_gp_get_rpcb_port(const unsigned short protocol)
176 static const char *rpcb_netnametbl[] = {
184 for (i = 0; rpcb_netnametbl[i] != NULL; i++) {
187 port = nfs_gp_getservbyname(rpcb_netnametbl[i], protocol);
192 return (in_port_t)htons((uint16_t)PMAPPORT);
196 * Set up an RPC client for communicating with an rpcbind daemon at
197 * @sap over @transport with protocol version @version.
199 * Returns a pointer to a prepared RPC client if successful, and
200 * @timeout is initialized; caller must destroy a non-NULL returned RPC
201 * client. Otherwise returns NULL, and rpc_createerr.cf_stat is set to
204 static CLIENT *nfs_gp_get_rpcbclient(const struct sockaddr *sap,
205 const socklen_t salen,
206 const unsigned short transport,
207 const rpcvers_t version,
208 struct timeval *timeout)
210 static const char *rpcb_pgmtbl[] = {
217 struct sockaddr_storage address;
218 struct sockaddr *saddr = (struct sockaddr *)&address;
219 rpcprog_t rpcb_prog = nfs_getrpcbyname(RPCBPROG, rpcb_pgmtbl);
221 memcpy(saddr, sap, (size_t)salen);
222 nfs_gp_set_port(saddr, nfs_gp_get_rpcb_port(transport));
224 return nfs_get_rpcclient(saddr, salen, transport, rpcb_prog,
229 * One of the arguments passed when querying remote rpcbind services
230 * via rpcbind v3 or v4 is a netid string. This replaces the pm_prot
231 * field used in legacy PMAP_GETPORT calls.
233 * RFC 1833 says netids are not standard but rather defined on the local
234 * host. There are, however, standard definitions for nc_protofmly and
235 * nc_proto that can be used to derive a netid string on the local host,
236 * based on the contents of /etc/netconfig.
238 * Walk through the local netconfig database and grab the netid of the
239 * first entry that matches @family and @protocol and whose netid string
240 * fits in the provided buffer.
242 * Returns a '\0'-terminated string if successful; otherwise NULL.
243 * rpc_createerr.cf_stat is set to reflect the error.
247 static char *nfs_gp_get_netid(const sa_family_t family,
248 const unsigned short protocol)
250 char *nc_protofmly, *nc_proto, *nc_netid;
251 struct netconfig *nconf;
252 struct protoent *proto;
258 nc_protofmly = NC_INET;
261 nc_protofmly = NC_INET6;
267 proto = getprotobynumber(protocol);
270 nc_proto = proto->p_name;
272 handle = setnetconfig();
273 while ((nconf = getnetconfig(handle)) != NULL) {
275 if (nconf->nc_protofmly != NULL &&
276 strcmp(nconf->nc_protofmly, nc_protofmly) != 0)
278 if (nconf->nc_proto != NULL &&
279 strcmp(nconf->nc_proto, nc_proto) != 0)
282 nc_netid = strdup(nconf->nc_netid);
283 endnetconfig(handle);
286 endnetconfig(handle);
289 rpc_createerr.cf_stat = RPC_UNKNOWNPROTO;
293 #endif /* HAVE_LIBTIRPC */
296 * Extract a port number from a universal address, and terminate the
297 * string in @addrstr just after the address part.
299 * Returns -1 if unsuccesful; otherwise a decoded port number (possibly 0)
302 static int nfs_gp_universal_porthelper(char *addrstr)
305 unsigned long portlo, porthi;
308 p = strrchr(addrstr, '.');
311 portlo = strtoul(p + 1, &endptr, 10);
312 if (*endptr != '\0' || portlo > 255)
316 p = strrchr(addrstr, '.');
319 porthi = strtoul(p + 1, &endptr, 10);
320 if (*endptr != '\0' || porthi > 255)
323 port = (porthi << 8) | portlo;
330 * nfs_universal2port - extract port number from a "universal address"
331 * @uaddr: '\0'-terminated C string containing a universal address
333 * Universal addresses (defined in RFC 1833) are used when calling an
334 * rpcbind daemon via protocol versions 3 or 4..
336 * Returns -1 if unsuccesful; otherwise a decoded port number (possibly 0)
339 int nfs_universal2port(const char *uaddr)
344 addrstr = strdup(uaddr);
345 if (addrstr != NULL) {
346 port = nfs_gp_universal_porthelper(addrstr);
353 * nfs_sockaddr2universal - convert a sockaddr to a "universal address"
354 * @sap: pointer to a socket address
355 * @salen: length of socket address
357 * Universal addresses (defined in RFC 1833) are used when calling an
358 * rpcbind daemon via protocol versions 3 or 4..
360 * Returns a '\0'-terminated string if successful; caller must free
361 * the returned string. Otherwise NULL is returned and
362 * rpc_createerr.cf_stat is set to reflect the error.
365 #ifdef HAVE_GETNAMEINFO
367 char *nfs_sockaddr2universal(const struct sockaddr *sap,
368 const socklen_t salen)
370 struct sockaddr_un *sun = (struct sockaddr_un *)sap;
371 char buf[NI_MAXHOST];
374 switch (sap->sa_family) {
376 return strndup(sun->sun_path, sizeof(sun->sun_path));
378 if (getnameinfo(sap, salen, buf, (socklen_t)sizeof(buf),
379 NULL, 0, NI_NUMERICHOST) != 0)
381 port = ntohs(((struct sockaddr_in *)sap)->sin_port);
384 if (getnameinfo(sap, salen, buf, (socklen_t)sizeof(buf),
385 NULL, 0, NI_NUMERICHOST) != 0)
387 port = ntohs(((struct sockaddr_in6 *)sap)->sin6_port);
393 (void)snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), ".%u.%u",
394 (unsigned)(port >> 8), (unsigned)(port & 0xff));
399 rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;
403 #else /* HAVE_GETNAMEINFO */
405 char *nfs_sockaddr2universal(const struct sockaddr *sap,
406 const socklen_t salen)
408 struct sockaddr_un *sun = (struct sockaddr_un *)sap;
409 char buf[NI_MAXHOST];
413 switch (sap->sa_family) {
415 return strndup(sun->sun_path, sizeof(sun->sun_path));
417 addr = inet_ntoa(((struct sockaddr_in *)sap)->sin_addr);
418 if (addr != NULL && strlen(addr) > sizeof(buf))
421 port = ntohs(((struct sockaddr_in *)sap)->sin_port);
427 (void)snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), ".%u.%u",
428 (unsigned)(port >> 8), (unsigned)(port & 0xff));
433 rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;
437 #endif /* HAVE_GETNAMEINFO */
440 * Send a NULL request to the indicated RPC service.
442 * Returns 1 if the service responded; otherwise 0;
444 static int nfs_gp_ping(CLIENT *client, struct timeval timeout)
446 enum clnt_stat status;
448 status = CLNT_CALL(client, NULLPROC,
449 (xdrproc_t)xdr_void, NULL,
450 (xdrproc_t)xdr_void, NULL,
453 return (int)(status == RPC_SUCCESS);
459 * Initialize the rpcb argument for a GETADDR request.
461 * The rpcbind daemon ignores the parms.r_owner field in GETADDR
462 * requests, but we plant an eye-catcher to help distinguish these
463 * requests in network traces.
465 * Returns 1 if successful, and caller must free strings pointed
466 * to by r_netid and r_addr; otherwise 0.
468 static int nfs_gp_init_rpcb_parms(const struct sockaddr *sap,
469 const socklen_t salen,
470 const rpcprog_t program,
471 const rpcvers_t version,
472 const unsigned short protocol,
477 netid = nfs_gp_get_netid(sap->sa_family, protocol);
481 addr = nfs_sockaddr2universal(sap, salen);
487 memset(parms, 0, sizeof(*parms));
488 parms->r_prog = program;
489 parms->r_vers = version;
490 parms->r_netid = netid;
491 parms->r_addr = addr;
492 parms->r_owner = "nfs-utils"; /* eye-catcher */
497 static void nfs_gp_free_rpcb_parms(struct rpcb *parms)
499 free(parms->r_netid);
504 * Try rpcbind GETADDR via version 4. If that fails, try same
505 * request via version 3.
507 * Returns non-zero port number on success; otherwise returns
508 * zero. rpccreateerr is set to reflect the nature of the error.
510 static unsigned short nfs_gp_rpcb_getaddr(CLIENT *client,
512 struct timeval timeout)
514 rpcvers_t rpcb_version;
515 struct rpc_err rpcerr;
518 for (rpcb_version = RPCBVERS_4;
519 rpcb_version >= RPCBVERS_3;
521 enum clnt_stat status;
524 CLNT_CONTROL(client, CLSET_VERS, (void *)&rpcb_version);
525 status = CLNT_CALL(client, (rpcproc_t)RPCBPROC_GETADDR,
526 (xdrproc_t)xdr_rpcb, (void *)parms,
527 (xdrproc_t)xdr_wrapstring, (void *)&uaddr,
532 if ((uaddr == NULL) || (uaddr[0] == '\0')) {
533 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
537 port = nfs_universal2port(uaddr);
538 xdr_free((xdrproc_t)xdr_wrapstring, (char *)&uaddr);
540 rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;
543 return (unsigned short)port;
544 case RPC_PROGVERSMISMATCH:
545 clnt_geterr(client, &rpcerr);
546 if (rpcerr.re_vers.low > RPCBVERS4)
549 case RPC_PROCUNAVAIL:
550 case RPC_PROGUNAVAIL:
553 /* Most likely RPC_TIMEDOUT or RPC_CANTRECV */
554 rpc_createerr.cf_stat = status;
555 clnt_geterr(client, &rpc_createerr.cf_error);
562 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
563 clnt_geterr(client, &rpc_createerr.cf_error);
568 #endif /* HAVE_LIBTIRPC */
571 * Try GETPORT request via rpcbind version 2.
573 * Returns non-zero port number on success; otherwise returns
574 * zero. rpccreateerr is set to reflect the nature of the error.
576 static unsigned long nfs_gp_pmap_getport(CLIENT *client,
578 struct timeval timeout)
580 enum clnt_stat status;
583 status = CLNT_CALL(client, (rpcproc_t)PMAPPROC_GETPORT,
584 (xdrproc_t)xdr_pmap, (void *)parms,
585 (xdrproc_t)xdr_u_long, (void *)&port,
588 if (status != RPC_SUCCESS) {
589 rpc_createerr.cf_stat = status;
590 clnt_geterr(client, &rpc_createerr.cf_error);
592 } else if (port == 0)
593 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
600 static unsigned short nfs_gp_getport_rpcb(CLIENT *client,
601 const struct sockaddr *sap,
602 const socklen_t salen,
603 const rpcprog_t program,
604 const rpcvers_t version,
605 const unsigned short protocol,
606 struct timeval timeout)
608 unsigned short port = 0;
611 if (nfs_gp_init_rpcb_parms(sap, salen, program,
612 version, protocol, &parms) != 0) {
613 port = nfs_gp_rpcb_getaddr(client, &parms, timeout);
614 nfs_gp_free_rpcb_parms(&parms);
620 #endif /* HAVE_LIBTIRPC */
622 static unsigned long nfs_gp_getport_pmap(CLIENT *client,
623 const rpcprog_t program,
624 const rpcvers_t version,
625 const unsigned short protocol,
626 struct timeval timeout)
628 struct pmap parms = {
633 rpcvers_t pmap_version = PMAPVERS;
635 CLNT_CONTROL(client, CLSET_VERS, (void *)&pmap_version);
636 return nfs_gp_pmap_getport(client, &parms, timeout);
640 * Try an AF_INET6 request via rpcbind v4/v3; try an AF_INET
641 * request via rpcbind v2.
643 * Returns non-zero port number on success; otherwise returns
644 * zero. rpccreateerr is set to reflect the nature of the error.
646 static unsigned short nfs_gp_getport(CLIENT *client,
647 const struct sockaddr *sap,
648 const socklen_t salen,
649 const rpcprog_t program,
650 const rpcvers_t version,
651 const unsigned short protocol,
652 struct timeval timeout)
654 switch (sap->sa_family) {
657 return nfs_gp_getport_rpcb(client, sap, salen, program,
658 version, protocol, timeout);
659 #endif /* HAVE_LIBTIRPC */
661 return nfs_gp_getport_pmap(client, program, version,
665 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
670 * nfs_rcp_ping - Determine if RPC service is responding to requests
671 * @sap: pointer to address of server to query (port is already filled in)
672 * @salen: length of server address
673 * @program: requested RPC program number
674 * @version: requested RPC version number
675 * @protocol: requested IPPROTO_ value of transport protocol
676 * @timeout: pointer to request timeout (NULL means use default timeout)
678 * Returns 1 if the remote service responded without an error; otherwise
681 int nfs_rpc_ping(const struct sockaddr *sap, const socklen_t salen,
682 const rpcprog_t program, const rpcvers_t version,
683 const unsigned short protocol, const struct timeval *timeout)
686 struct timeval tout = { -1, 0 };
692 client = nfs_get_rpcclient(sap, salen, protocol, program, version, &tout);
693 if (client != NULL) {
694 result = nfs_gp_ping(client, tout);
695 CLNT_DESTROY(client);
702 * nfs_getport - query server's rpcbind to get port number for an RPC service
703 * @sap: pointer to address of server to query
704 * @salen: length of server's address
705 * @program: requested RPC program number
706 * @version: requested RPC version number
707 * @protocol: IPPROTO_ value of requested transport protocol
709 * Uses any acceptable rpcbind version to discover the port number for the
710 * RPC service described by the given [program, version, transport] tuple.
711 * Uses a quick timeout and an ephemeral source port. Supports AF_INET and
712 * AF_INET6 server addresses.
714 * Returns a positive integer representing the port number of the RPC
715 * service advertised by the server (in host byte order), or zero if the
716 * service is not advertised or there was some problem querying the server's
717 * rpcbind daemon. rpccreateerr is set to reflect the underlying cause of
720 * There are a variety of ways to choose which transport and rpcbind versions
721 * to use. We chose to conserve local resources and try to avoid incurring
725 * To provide rudimentary support for traversing firewalls, query the remote
726 * using the same transport as the requested service. This provides some
727 * guarantee that the requested transport is available between this client
728 * and the server, and if the caller specifically requests TCP, for example,
729 * this may be becuase a firewall is in place that blocks UDP traffic. We
730 * could try both, but that could involve a lengthy timeout in several cases,
731 * and would often consume an extra ephemeral port.
734 * To avoid using up too many ephemeral ports, AF_INET queries use tried-and-
735 * true rpcbindv2, and don't try the newer versions; and AF_INET6 queries use
736 * rpcbindv4, then rpcbindv3 on the same socket. The newer rpcbind protocol
737 * versions can adequately detect if a remote RPC service does not support
738 * AF_INET6 at all. The rpcbind socket is re-used in an attempt to keep the
739 * overall number of consumed ephemeral ports low.
741 unsigned short nfs_getport(const struct sockaddr *sap,
742 const socklen_t salen,
743 const rpcprog_t program,
744 const rpcvers_t version,
745 const unsigned short protocol)
747 struct timeval timeout = { -1, 0 };
748 unsigned short port = 0;
751 client = nfs_gp_get_rpcbclient(sap, salen, protocol,
752 default_rpcb_version, &timeout);
753 if (client != NULL) {
754 port = nfs_gp_getport(client, sap, salen, program,
755 version, protocol, timeout);
756 CLNT_DESTROY(client);
763 * nfs_getport_ping - query server's rpcbind and do RPC ping to verify result
764 * @sap: IN: pointer to address of server to query;
765 * OUT: pointer to updated address
766 * @salen: length of server's address
767 * @program: requested RPC program number
768 * @version: requested RPC version number
769 * @protocol: IPPROTO_ value of requested transport protocol
771 * Uses any acceptable rpcbind version to discover the port number for the
772 * RPC service described by the given [program, version, transport] tuple.
773 * Uses a quick timeout and an ephemeral source port. Supports AF_INET and
774 * AF_INET6 server addresses.
776 * Returns a 1 and sets the port number in the passed-in server address
777 * if both the query and the ping were successful; otherwise zero.
778 * rpccreateerr is set to reflect the underlying cause of the error.
780 int nfs_getport_ping(struct sockaddr *sap, const socklen_t salen,
781 const rpcprog_t program, const rpcvers_t version,
782 const unsigned short protocol)
784 struct timeval timeout = { -1, 0 };
785 unsigned short port = 0;
789 client = nfs_gp_get_rpcbclient(sap, salen, protocol,
790 default_rpcb_version, &timeout);
791 if (client != NULL) {
792 port = nfs_gp_getport(client, sap, salen, program,
793 version, protocol, timeout);
794 CLNT_DESTROY(client);
799 struct sockaddr_storage address;
800 struct sockaddr *saddr = (struct sockaddr *)&address;
802 memcpy(saddr, sap, (size_t)salen);
803 nfs_gp_set_port(saddr, htons(port));
805 client = nfs_get_rpcclient(saddr, salen, protocol,
806 program, version, &timeout);
807 if (client != NULL) {
808 result = nfs_gp_ping(client, timeout);
809 CLNT_DESTROY(client);
814 nfs_gp_set_port(sap, htons(port));
820 * nfs_getlocalport - query local rpcbind to get port number for an RPC service
821 * @program: requested RPC program number
822 * @version: requested RPC version number
823 * @protocol: IPPROTO_ value of requested transport protocol
825 * Uses any acceptable rpcbind version to discover the port number for the
826 * RPC service described by the given [program, version, transport] tuple.
827 * Uses a quick timeout and an ephemeral source port. Supports AF_INET and
828 * AF_INET6 local addresses.
830 * Returns a positive integer representing the port number of the RPC
831 * service advertised by the server (in host byte order), or zero if the
832 * service is not advertised or there was some problem querying the server's
833 * rpcbind daemon. rpccreateerr is set to reflect the underlying cause of
836 * Try an AF_LOCAL connection first. The rpcbind daemon implementation should
837 * listen on AF_LOCAL.
839 * If that doesn't work (for example, if portmapper is running, or rpcbind
840 * isn't listening on /var/run/rpcbind.sock), send a query via UDP to localhost
841 * (UDP doesn't leave a socket in TIME_WAIT, and the timeout is a relatively
844 * getaddrinfo(3) generates a usable loopback address. RFC 3484 requires that
845 * the results are sorted so that the first result has the best likelihood of
846 * working, so we try just that first result. If IPv6 is all that is
847 * available, we are sure to generate an AF_INET6 loopback address and use
848 * rpcbindv4/v3 GETADDR. AF_INET6 requests go via rpcbind v4/3 in order to
849 * detect if the requested RPC service supports AF_INET6 or not.
851 unsigned short nfs_getlocalport(const rpcprot_t program,
852 const rpcvers_t version,
853 const unsigned short protocol)
855 struct sockaddr_storage address;
856 struct sockaddr *lb_addr = (struct sockaddr *)&address;
857 socklen_t lb_len = sizeof(*lb_addr);
858 unsigned short port = 0;
861 const struct sockaddr_un sun = {
862 .sun_family = AF_LOCAL,
863 .sun_path = _PATH_RPCBINDSOCK,
865 const struct sockaddr *sap = (struct sockaddr *)&sun;
866 const socklen_t salen = SUN_LEN(&sun);
868 struct timeval timeout = { -1, 0 };
870 client = nfs_gp_get_rpcbclient(sap, salen, 0, RPCBVERS_4, &timeout);
871 if (client != NULL) {
874 if (nfs_gp_init_rpcb_parms(sap, salen, program, version,
875 protocol, &parms) != 0) {
876 port = nfs_gp_rpcb_getaddr(client, &parms, timeout);
877 nfs_gp_free_rpcb_parms(&parms);
879 CLNT_DESTROY(client);
881 #endif /* NFS_GP_LOCAL */
884 if (nfs_gp_loopback_address(lb_addr, &lb_len)) {
885 port = nfs_getport(lb_addr, lb_len,
886 program, version, protocol);
888 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
895 * nfs_rpcb_getaddr - query rpcbind via rpcbind versions 4 and 3
896 * @sap: pointer to address of server to query
897 * @salen: length of server address
898 * @transport: transport protocol to use for the query
899 * @addr: pointer to r_addr address
900 * @addrlen: length of address
901 * @program: requested RPC program number
902 * @version: requested RPC version number
903 * @protocol: requested IPPROTO_ value of transport protocol
904 * @timeout: pointer to request timeout (NULL means use default timeout)
906 * Returns a positive integer representing the port number of the RPC
907 * service advertised by the server (in host byte order), or zero if the
908 * service is not advertised or there was some problem querying the
909 * server's rpcbind daemon. rpccreateerr is set to reflect the
910 * underlying cause of the error.
912 * This function provides similar functionality to nfs_pmap_getport(),
913 * but performs the rpcbind lookup via rpcbind version 4. If the server
914 * doesn't support rpcbind version 4, it will retry with version 3.
915 * The GETADDR procedure is exactly the same in these two versions of
916 * the rpcbind protocol, so the socket, RPC client, and arguments are
917 * re-used when retrying, saving ephemeral port space.
919 * These RPC procedures take a universal address as an argument, so the
920 * query will fail if the remote rpcbind daemon doesn't find an entry
921 * with a matching address. A matching address includes an ANYADDR
922 * address of the same address family. In this way an RPC server can
923 * advertise via rpcbind that it does not support AF_INET6.
927 unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap,
928 const socklen_t salen,
929 const unsigned short transport,
930 const struct sockaddr *addr,
931 const socklen_t addrlen,
932 const rpcprog_t program,
933 const rpcvers_t version,
934 const unsigned short protocol,
935 const struct timeval *timeout)
939 struct timeval tout = { -1, 0 };
940 unsigned short port = 0;
945 client = nfs_gp_get_rpcbclient(sap, salen, transport, RPCBVERS_4, &tout);
946 if (client != NULL) {
947 if (nfs_gp_init_rpcb_parms(addr, addrlen, program, version,
948 protocol, &parms) != 0) {
949 port = nfs_gp_rpcb_getaddr(client, &parms, tout);
950 nfs_gp_free_rpcb_parms(&parms);
952 CLNT_DESTROY(client);
958 #else /* !HAVE_LIBTIRPC */
960 unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap,
961 const socklen_t salen,
962 const unsigned short transport,
963 const struct sockaddr *addr,
964 const socklen_t addrlen,
965 const rpcprog_t program,
966 const rpcvers_t version,
967 const unsigned short protocol,
968 const struct timeval *timeout)
970 rpc_createerr.cf_stat = RPC_UNKNOWNADDR;
974 #endif /* !HAVE_LIBTIRPC */
977 * nfs_pmap_getport - query rpcbind via the portmap protocol (rpcbindv2)
978 * @sin: pointer to AF_INET address of server to query
979 * @transport: transport protocol to use for the query
980 * @program: requested RPC program number
981 * @version: requested RPC version number
982 * @protocol: requested IPPROTO_ value of transport protocol
983 * @timeout: pointer to request timeout (NULL means use default timeout)
985 * Returns a positive integer representing the port number of the RPC service
986 * advertised by the server (in host byte order), or zero if the service is
987 * not advertised or there was some problem querying the server's rpcbind
988 * daemon. rpccreateerr is set to reflect the underlying cause of the error.
990 * nfs_pmap_getport() is very similar to pmap_getport(), except that:
992 * 1. This version always tries to use an ephemeral port, since reserved
993 * ports are not needed for GETPORT queries. This conserves the very
994 * limited reserved port space, helping reduce failed socket binds
995 * during mount storms.
997 * 2. This version times out quickly by default. It time-limits the
998 * connect process as well as the actual RPC call, and even allows the
999 * caller to specify the timeout.
1001 * 3. This version shares code with the rpcbindv3 and rpcbindv4 query
1002 * functions. It can use a TI-RPC generated CLIENT.
1004 unsigned long nfs_pmap_getport(const struct sockaddr_in *sin,
1005 const unsigned short transport,
1006 const unsigned long program,
1007 const unsigned long version,
1008 const unsigned long protocol,
1009 const struct timeval *timeout)
1012 struct pmap parms = {
1015 .pm_prot = protocol,
1017 struct timeval tout = { -1, 0 };
1018 unsigned long port = 0;
1020 if (timeout != NULL)
1023 client = nfs_gp_get_rpcbclient((struct sockaddr *)sin,
1024 (socklen_t)sizeof(*sin),
1025 transport, PMAPVERS, &tout);
1026 if (client != NULL) {
1027 port = nfs_gp_pmap_getport(client, &parms, tout);
1028 CLNT_DESTROY(client);