]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/pmap_clnt.c
sparc (64bit): Regenerate ulps
[thirdparty/glibc.git] / sunrpc / pmap_clnt.c
CommitLineData
28f540f4 1/*
a7ab6ec8 2 * Copyright (c) 2010, Oracle America, Inc.
cb636bb2 3 *
a7ab6ec8
UD
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
cb636bb2 7 *
a7ab6ec8
UD
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials
13 * provided with the distribution.
14 * * Neither the name of the "Oracle America, Inc." nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
cbd3dceb 17 *
a7ab6ec8
UD
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
925ed47c 30 */
28f540f4
RM
31/*
32 * pmap_clnt.c
33 * Client interface to pmap rpc service.
28f540f4
RM
34 */
35
925ed47c
UD
36#include <stdio.h>
37#include <unistd.h>
4360eafd 38#include <libintl.h>
925ed47c 39#include <net/if.h>
412c954a 40#include <ifaddrs.h>
925ed47c
UD
41#include <sys/ioctl.h>
42#include <sys/socket.h>
43#include <netinet/in.h>
44#include <arpa/inet.h>
28f540f4
RM
45#include <rpc/rpc.h>
46#include <rpc/pmap_prot.h>
47#include <rpc/pmap_clnt.h>
82f43dd2 48#include <shlib-compat.h>
28f540f4 49
925ed47c
UD
50/*
51 * Same as get_myaddress, but we try to use the loopback
52 * interface. portmap caches interfaces, and on DHCP clients,
53 * it could be that only loopback is started at this time.
54 */
ec28fc7c 55static bool_t
925ed47c
UD
56__get_myaddress (struct sockaddr_in *addr)
57{
412c954a 58 struct ifaddrs *ifa;
925ed47c 59
21ae57c4 60 if (getifaddrs (&ifa) != 0)
925ed47c 61 {
412c954a 62 perror ("get_myaddress: getifaddrs");
925ed47c
UD
63 exit (1);
64 }
65
412c954a
UD
66 int loopback = 1;
67 struct ifaddrs *run;
68
925ed47c 69 again:
412c954a
UD
70 run = ifa;
71 while (run != NULL)
925ed47c 72 {
f7e7a396
UD
73 if ((run->ifa_flags & IFF_UP)
74 && run->ifa_addr != NULL
75 && run->ifa_addr->sa_family == AF_INET
412c954a
UD
76 && ((run->ifa_flags & IFF_LOOPBACK) || loopback == 0))
77 {
78 *addr = *((struct sockaddr_in *) run->ifa_addr);
79 addr->sin_port = htons (PMAPPORT);
80 goto out;
81 }
82
83 run = run->ifa_next;
925ed47c 84 }
412c954a 85
925ed47c
UD
86 if (loopback == 1)
87 {
88 loopback = 0;
89 goto again;
90 }
412c954a
UD
91 out:
92 freeifaddrs (ifa);
93
94 return run == NULL ? FALSE : TRUE;
925ed47c
UD
95}
96
97
e7fd8a39
UD
98static const struct timeval timeout = {5, 0};
99static const struct timeval tottimeout = {60, 0};
28f540f4
RM
100
101/*
102 * Set a mapping between program,version and port.
103 * Calls the pmap service remotely to do the mapping.
104 */
105bool_t
e7fd8a39 106pmap_set (u_long program, u_long version, int protocol, u_short port)
28f540f4 107{
e7fd8a39
UD
108 struct sockaddr_in myaddress;
109 int socket = -1;
110 CLIENT *client;
111 struct pmap parms;
112 bool_t rslt;
28f540f4 113
ec28fc7c
UD
114 if (!__get_myaddress (&myaddress))
115 return FALSE;
7b57bfe5
UD
116 client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS, timeout, &socket,
117 RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
e7fd8a39
UD
118 if (client == (CLIENT *) NULL)
119 return (FALSE);
120 parms.pm_prog = program;
121 parms.pm_vers = version;
122 parms.pm_prot = protocol;
123 parms.pm_port = port;
7b57bfe5
UD
124 if (CLNT_CALL (client, PMAPPROC_SET, (xdrproc_t)xdr_pmap,
125 (caddr_t)&parms, (xdrproc_t)xdr_bool, (caddr_t)&rslt,
e7fd8a39
UD
126 tottimeout) != RPC_SUCCESS)
127 {
128 clnt_perror (client, _("Cannot register service"));
5bd4d368 129 rslt = FALSE;
e7fd8a39
UD
130 }
131 CLNT_DESTROY (client);
132 /* (void)close(socket); CLNT_DESTROY closes it */
133 return rslt;
28f540f4 134}
021db4be 135libc_hidden_nolink_sunrpc (pmap_set, GLIBC_2_0)
28f540f4
RM
136
137/*
138 * Remove the mapping between program,version and port.
139 * Calls the pmap service remotely to do the un-mapping.
140 */
141bool_t
e7fd8a39 142pmap_unset (u_long program, u_long version)
28f540f4 143{
e7fd8a39
UD
144 struct sockaddr_in myaddress;
145 int socket = -1;
146 CLIENT *client;
147 struct pmap parms;
148 bool_t rslt;
28f540f4 149
ec28fc7c
UD
150 if (!__get_myaddress (&myaddress))
151 return FALSE;
7b57bfe5
UD
152 client = clntudp_bufcreate (&myaddress, PMAPPROG, PMAPVERS, timeout, &socket,
153 RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
e7fd8a39
UD
154 if (client == (CLIENT *) NULL)
155 return FALSE;
156 parms.pm_prog = program;
157 parms.pm_vers = version;
158 parms.pm_port = parms.pm_prot = 0;
7b57bfe5
UD
159 CLNT_CALL (client, PMAPPROC_UNSET, (xdrproc_t)xdr_pmap,
160 (caddr_t)&parms, (xdrproc_t)xdr_bool, (caddr_t)&rslt,
77fe0b9c 161 tottimeout);
e7fd8a39
UD
162 CLNT_DESTROY (client);
163 /* (void)close(socket); CLNT_DESTROY already closed it */
164 return rslt;
28f540f4 165}
021db4be 166libc_hidden_nolink_sunrpc (pmap_unset, GLIBC_2_0)