]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/rpcbind/util.c
The NetBSD Foundation has given permission to remove clause 3 and 4
[FreeBSD/FreeBSD.git] / usr.sbin / rpcbind / util.c
1 /*
2  * $NetBSD: util.c,v 1.4 2000/08/03 00:04:30 fvdl Exp $
3  * $FreeBSD$
4  */
5
6 /*-
7  * Copyright (c) 2000 The NetBSD Foundation, Inc.
8  * All rights reserved.
9  *
10  * This code is derived from software contributed to The NetBSD Foundation
11  * by Frank van der Linden.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #include <sys/queue.h>
38 #include <net/if.h>
39 #include <netinet/in.h>
40 #include <ifaddrs.h>
41 #include <sys/poll.h>
42 #include <rpc/rpc.h>
43 #include <errno.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <unistd.h>
47 #include <netdb.h>
48 #include <netconfig.h>
49 #include <stdio.h>
50 #include <arpa/inet.h>
51
52 #include "rpcbind.h"
53
54 static struct sockaddr_in *local_in4;
55 #ifdef INET6
56 static struct sockaddr_in6 *local_in6;
57 #endif
58
59 static int bitmaskcmp(void *, void *, void *, int);
60 #ifdef INET6
61 static void in6_fillscopeid(struct sockaddr_in6 *);
62 #endif
63
64 /*
65  * For all bits set in "mask", compare the corresponding bits in
66  * "dst" and "src", and see if they match. Returns 0 if the addresses
67  * match.
68  */
69 static int
70 bitmaskcmp(void *dst, void *src, void *mask, int bytelen)
71 {
72         int i;
73         u_int8_t *p1 = dst, *p2 = src, *netmask = mask;
74
75         for (i = 0; i < bytelen; i++)
76                 if ((p1[i] & netmask[i]) != (p2[i] & netmask[i]))
77                         return (1);
78         return (0);
79 }
80
81 /*
82  * Similar to code in ifconfig.c. Fill in the scope ID for link-local
83  * addresses returned by getifaddrs().
84  */
85 #ifdef INET6
86 static void
87 in6_fillscopeid(struct sockaddr_in6 *sin6)
88 {
89         u_int16_t ifindex;
90
91         if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
92                 ifindex = ntohs(*(u_int16_t *)&sin6->sin6_addr.s6_addr[2]);
93                 if (sin6->sin6_scope_id == 0 && ifindex != 0) {
94                         sin6->sin6_scope_id = ifindex;
95                         *(u_int16_t *)&sin6->sin6_addr.s6_addr[2] = 0;
96                 }
97         }
98 }
99 #endif
100
101 /*
102  * Find a server address that can be used by `caller' to contact
103  * the local service specified by `serv_uaddr'. If `clnt_uaddr' is
104  * non-NULL, it is used instead of `caller' as a hint suggesting
105  * the best address (e.g. the `r_addr' field of an rpc, which
106  * contains the rpcbind server address that the caller used).
107  *
108  * Returns the best server address as a malloc'd "universal address"
109  * string which should be freed by the caller. On error, returns NULL.
110  */
111 char *
112 addrmerge(struct netbuf *caller, char *serv_uaddr, char *clnt_uaddr,
113           char *netid)
114 {
115         struct ifaddrs *ifap, *ifp = NULL, *bestif;
116         struct netbuf *serv_nbp = NULL, *hint_nbp = NULL, tbuf;
117         struct sockaddr *caller_sa, *hint_sa, *ifsa, *ifmasksa, *serv_sa;
118         struct sockaddr_storage ss;
119         struct netconfig *nconf;
120         char *caller_uaddr = NULL, *hint_uaddr = NULL;
121         char *ret = NULL;
122
123 #ifdef ND_DEBUG
124         if (debugging)
125                 fprintf(stderr, "addrmerge(caller, %s, %s, %s\n", serv_uaddr,
126                     clnt_uaddr == NULL ? "NULL" : clnt_uaddr, netid);
127 #endif
128         caller_sa = caller->buf;
129         if ((nconf = rpcbind_get_conf(netid)) == NULL)
130                 goto freeit;
131         if ((caller_uaddr = taddr2uaddr(nconf, caller)) == NULL)
132                 goto freeit;
133
134         /*
135          * Use `clnt_uaddr' as the hint if non-NULL, but ignore it if its
136          * address family is different from that of the caller.
137          */
138         hint_sa = NULL;
139         if (clnt_uaddr != NULL) {
140                 hint_uaddr = clnt_uaddr;
141                 if ((hint_nbp = uaddr2taddr(nconf, clnt_uaddr)) == NULL)
142                         goto freeit;
143                 hint_sa = hint_nbp->buf;
144         }
145         if (hint_sa == NULL || hint_sa->sa_family != caller_sa->sa_family) {
146                 hint_uaddr = caller_uaddr;
147                 hint_sa = caller->buf;
148         }
149
150 #ifdef ND_DEBUG
151         if (debugging)
152                 fprintf(stderr, "addrmerge: hint %s\n", hint_uaddr);
153 #endif
154         /* Local caller, just return the server address. */
155         if (strncmp(caller_uaddr, "0.0.0.0.", 8) == 0 ||
156             strncmp(caller_uaddr, "::.", 3) == 0 || caller_uaddr[0] == '/') {
157                 ret = strdup(serv_uaddr);
158                 goto freeit;
159         }
160
161         if (getifaddrs(&ifp) < 0)
162                 goto freeit;
163
164         /*
165          * Loop through all interfaces. For each interface, see if it
166          * is either the loopback interface (which we always listen
167          * on) or is one of the addresses the program bound to (the
168          * wildcard by default, or a subset if -h is specified) and
169          * the network portion of its address is equal to that of the
170          * client.  If so, we have found the interface that we want to
171          * use.
172          */
173         bestif = NULL;
174         for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
175                 ifsa = ifap->ifa_addr;
176                 ifmasksa = ifap->ifa_netmask;
177
178                 if (ifsa == NULL || ifsa->sa_family != hint_sa->sa_family ||
179                     !(ifap->ifa_flags & IFF_UP))
180                         continue;
181                 if (!addr_is_bound(ifsa))
182                         continue;
183
184                 if (!(ifap->ifa_flags & IFF_LOOPBACK) && !listen_addr(ifsa))
185                         continue;
186
187                 switch (hint_sa->sa_family) {
188                 case AF_INET:
189                         /*
190                          * If the hint address matches this interface
191                          * address/netmask, then we're done.
192                          */
193                         if (!bitmaskcmp(&SA2SINADDR(ifsa),
194                             &SA2SINADDR(hint_sa), &SA2SINADDR(ifmasksa),
195                             sizeof(struct in_addr))) {
196                                 bestif = ifap;
197                                 goto found;
198                         }
199                         break;
200 #ifdef INET6
201                 case AF_INET6:
202                         /*
203                          * For v6 link local addresses, if the caller is on
204                          * a link-local address then use the scope id to see
205                          * which one.
206                          */
207                         in6_fillscopeid(SA2SIN6(ifsa));
208                         if (IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(ifsa)) &&
209                             IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(caller_sa)) &&
210                             IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(hint_sa))) {
211                                 if (SA2SIN6(ifsa)->sin6_scope_id ==
212                                     SA2SIN6(caller_sa)->sin6_scope_id) {
213                                         bestif = ifap;
214                                         goto found;
215                                 }
216                         } else if (!bitmaskcmp(&SA2SIN6ADDR(ifsa),
217                             &SA2SIN6ADDR(hint_sa), &SA2SIN6ADDR(ifmasksa),
218                             sizeof(struct in6_addr))) {
219                                 bestif = ifap;
220                                 goto found;
221                         }
222                         break;
223 #endif
224                 default:
225                         continue;
226                 }
227
228                 /*
229                  * Remember the first possibly useful interface, preferring
230                  * "normal" to point-to-point and loopback ones.
231                  */
232                 if (bestif == NULL ||
233                     (!(ifap->ifa_flags & (IFF_LOOPBACK | IFF_POINTOPOINT)) &&
234                     (bestif->ifa_flags & (IFF_LOOPBACK | IFF_POINTOPOINT))))
235                         bestif = ifap;
236         }
237         if (bestif == NULL)
238                 goto freeit;
239
240 found:
241         /*
242          * Construct the new address using the the address from
243          * `bestif', and the port number from `serv_uaddr'.
244          */
245         serv_nbp = uaddr2taddr(nconf, serv_uaddr);
246         if (serv_nbp == NULL)
247                 goto freeit;
248         serv_sa = serv_nbp->buf;
249
250         memcpy(&ss, bestif->ifa_addr, bestif->ifa_addr->sa_len);
251         switch (ss.ss_family) {
252         case AF_INET:
253                 SA2SIN(&ss)->sin_port = SA2SIN(serv_sa)->sin_port;
254                 break;
255 #ifdef INET6
256         case AF_INET6:
257                 SA2SIN6(&ss)->sin6_port = SA2SIN6(serv_sa)->sin6_port;
258                 break;
259 #endif
260         }
261         tbuf.len = ss.ss_len;
262         tbuf.maxlen = sizeof(ss);
263         tbuf.buf = &ss;
264         ret = taddr2uaddr(nconf, &tbuf);
265
266 freeit:
267         if (caller_uaddr != NULL)
268                 free(caller_uaddr);
269         if (hint_nbp != NULL) {
270                 free(hint_nbp->buf);
271                 free(hint_nbp);
272         }
273         if (serv_nbp != NULL) {
274                 free(serv_nbp->buf);
275                 free(serv_nbp);
276         }
277         if (ifp != NULL)
278                 freeifaddrs(ifp);
279
280 #ifdef ND_DEBUG
281         if (debugging)
282                 fprintf(stderr, "addrmerge: returning %s\n", ret);
283 #endif
284         return ret;
285 }
286
287 void
288 network_init()
289 {
290 #ifdef INET6
291         struct ifaddrs *ifap, *ifp;
292         struct ipv6_mreq mreq6;
293         unsigned int ifindex;
294         int s;
295 #endif
296         int ecode;
297         struct addrinfo hints, *res;
298
299         memset(&hints, 0, sizeof hints);
300         hints.ai_family = AF_INET;
301         if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
302                 if (debugging)
303                         fprintf(stderr, "can't get local ip4 address: %s\n",
304                             gai_strerror(ecode));
305         } else {
306                 local_in4 = (struct sockaddr_in *)malloc(sizeof *local_in4);
307                 if (local_in4 == NULL) {
308                         if (debugging)
309                                 fprintf(stderr, "can't alloc local ip4 addr\n");
310                 }
311                 memcpy(local_in4, res->ai_addr, sizeof *local_in4);
312         }
313
314 #ifdef INET6
315         hints.ai_family = AF_INET6;
316         if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
317                 if (debugging)
318                         fprintf(stderr, "can't get local ip6 address: %s\n",
319                             gai_strerror(ecode));
320         } else {
321                 local_in6 = (struct sockaddr_in6 *)malloc(sizeof *local_in6);
322                 if (local_in6 == NULL) {
323                         if (debugging)
324                                 fprintf(stderr, "can't alloc local ip6 addr\n");
325                 }
326                 memcpy(local_in6, res->ai_addr, sizeof *local_in6);
327         }
328
329         /*
330          * Now join the RPC ipv6 multicast group on all interfaces.
331          */
332         if (getifaddrs(&ifp) < 0)
333                 return;
334
335         mreq6.ipv6mr_interface = 0;
336         inet_pton(AF_INET6, RPCB_MULTICAST_ADDR, &mreq6.ipv6mr_multiaddr);
337
338         s = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
339
340         /*
341          * Loop through all interfaces. For each IPv6 multicast-capable
342          * interface, join the RPC multicast group on that interface.
343          */
344         for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
345                 if (ifap->ifa_addr->sa_family != AF_INET6 ||
346                     !(ifap->ifa_flags & IFF_MULTICAST))
347                         continue;
348                 ifindex = if_nametoindex(ifap->ifa_name);
349                 if (ifindex == mreq6.ipv6mr_interface)
350                         /*
351                          * Already did this one.
352                          */
353                         continue;
354                 mreq6.ipv6mr_interface = ifindex;
355                 if (setsockopt(s, IPPROTO_IPV6, IPV6_JOIN_GROUP, &mreq6,
356                     sizeof mreq6) < 0)
357                         if (debugging)
358                                 perror("setsockopt v6 multicast");
359         }
360 #endif
361
362         /* close(s); */
363 }
364
365 struct sockaddr *
366 local_sa(int af)
367 {
368         switch (af) {
369         case AF_INET:
370                 return (struct sockaddr *)local_in4;
371 #ifdef INET6
372         case AF_INET6:
373                 return (struct sockaddr *)local_in6;
374 #endif
375         default:
376                 return NULL;
377         }
378 }