]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.sbin/rpcbind/util.c
MFstable/10 r296994:
[FreeBSD/stable/9.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(struct sockaddr *, struct sockaddr *, struct sockaddr *);
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(struct sockaddr *dst, struct sockaddr *src, struct sockaddr *mask)
71 {
72         int i;
73         u_int8_t *p1, *p2, *netmask;
74         int bytelen;
75
76         if (dst->sa_family != src->sa_family ||
77             dst->sa_family != mask->sa_family)
78                 return (1);
79
80         switch (dst->sa_family) {
81         case AF_INET:
82                 p1 = (uint8_t*) &SA2SINADDR(dst);
83                 p2 = (uint8_t*) &SA2SINADDR(src);
84                 netmask = (uint8_t*) &SA2SINADDR(mask);
85                 bytelen = sizeof(struct in_addr);
86                 break;
87 #ifdef INET6
88         case AF_INET6:
89                 p1 = (uint8_t*) &SA2SIN6ADDR(dst);
90                 p2 = (uint8_t*) &SA2SIN6ADDR(src);
91                 netmask = (uint8_t*) &SA2SIN6ADDR(mask);
92                 bytelen = sizeof(struct in6_addr);
93                 break;
94 #endif
95         default:
96                 return (1);
97         }
98
99         for (i = 0; i < bytelen; i++)
100                 if ((p1[i] & netmask[i]) != (p2[i] & netmask[i]))
101                         return (1);
102         return (0);
103 }
104
105 /*
106  * Similar to code in ifconfig.c. Fill in the scope ID for link-local
107  * addresses returned by getifaddrs().
108  */
109 #ifdef INET6
110 static void
111 in6_fillscopeid(struct sockaddr_in6 *sin6)
112 {
113         u_int16_t ifindex;
114
115         if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
116                 ifindex = ntohs(*(u_int16_t *)&sin6->sin6_addr.s6_addr[2]);
117                 if (sin6->sin6_scope_id == 0 && ifindex != 0) {
118                         sin6->sin6_scope_id = ifindex;
119                         *(u_int16_t *)&sin6->sin6_addr.s6_addr[2] = 0;
120                 }
121         }
122 }
123 #endif
124
125 /*
126  * Find a server address that can be used by `caller' to contact
127  * the local service specified by `serv_uaddr'. If `clnt_uaddr' is
128  * non-NULL, it is used instead of `caller' as a hint suggesting
129  * the best address (e.g. the `r_addr' field of an rpc, which
130  * contains the rpcbind server address that the caller used).
131  *
132  * Returns the best server address as a malloc'd "universal address"
133  * string which should be freed by the caller. On error, returns NULL.
134  */
135 char *
136 addrmerge(struct netbuf *caller, const char *serv_uaddr, const char *clnt_uaddr,
137           const char *netid)
138 {
139         struct ifaddrs *ifap, *ifp = NULL, *bestif;
140         struct netbuf *serv_nbp = NULL, *hint_nbp = NULL, tbuf;
141         struct sockaddr *caller_sa, *hint_sa, *ifsa, *ifmasksa, *serv_sa;
142         struct sockaddr_storage ss;
143         struct netconfig *nconf;
144         char *caller_uaddr = NULL;
145         const char *hint_uaddr = NULL;
146         char *ret = NULL;
147         int bestif_goodness;
148
149 #ifdef ND_DEBUG
150         if (debugging)
151                 fprintf(stderr, "addrmerge(caller, %s, %s, %s\n", serv_uaddr,
152                     clnt_uaddr == NULL ? "NULL" : clnt_uaddr, netid);
153 #endif
154         caller_sa = caller->buf;
155         if ((nconf = rpcbind_get_conf(netid)) == NULL)
156                 goto freeit;
157         if ((caller_uaddr = taddr2uaddr(nconf, caller)) == NULL)
158                 goto freeit;
159
160         /*
161          * Use `clnt_uaddr' as the hint if non-NULL, but ignore it if its
162          * address family is different from that of the caller.
163          */
164         hint_sa = NULL;
165         if (clnt_uaddr != NULL) {
166                 hint_uaddr = clnt_uaddr;
167                 if ((hint_nbp = uaddr2taddr(nconf, clnt_uaddr)) == NULL)
168                         goto freeit;
169                 hint_sa = hint_nbp->buf;
170         }
171         if (hint_sa == NULL || hint_sa->sa_family != caller_sa->sa_family) {
172                 hint_uaddr = caller_uaddr;
173                 hint_sa = caller->buf;
174         }
175
176 #ifdef ND_DEBUG
177         if (debugging)
178                 fprintf(stderr, "addrmerge: hint %s\n", hint_uaddr);
179 #endif
180         /* Local caller, just return the server address. */
181         if (strncmp(caller_uaddr, "0.0.0.0.", 8) == 0 ||
182             strncmp(caller_uaddr, "::.", 3) == 0 || caller_uaddr[0] == '/') {
183                 ret = strdup(serv_uaddr);
184                 goto freeit;
185         }
186
187         if (getifaddrs(&ifp) < 0)
188                 goto freeit;
189
190         /*
191          * Loop through all interface addresses.  We are listening to an address
192          * if any of the following are true:
193          * a) It's a loopback address
194          * b) It was specified with the -h command line option
195          * c) There were no -h command line options.
196          *
197          * Among addresses on which we are listening, choose in order of
198          * preference an address that is:
199          *
200          * a) Equal to the hint
201          * b) A link local address with the same scope ID as the client's
202          *    address, if the client's address is also link local
203          * c) An address on the same subnet as the client's address
204          * d) A non-localhost, non-p2p address
205          * e) Any usable address
206          */
207         bestif = NULL;
208         bestif_goodness = 0;
209         for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
210                 ifsa = ifap->ifa_addr;
211                 ifmasksa = ifap->ifa_netmask;
212
213                 /* Skip addresses where we don't listen */
214                 if (ifsa == NULL || ifsa->sa_family != hint_sa->sa_family ||
215                     !(ifap->ifa_flags & IFF_UP))
216                         continue;
217
218                 if (!(ifap->ifa_flags & IFF_LOOPBACK) && !listen_addr(ifsa))
219                         continue;
220
221                 if ((hint_sa->sa_family == AF_INET) &&
222                     ((((struct sockaddr_in*)hint_sa)->sin_addr.s_addr == 
223                       ((struct sockaddr_in*)ifsa)->sin_addr.s_addr))) {
224                         const int goodness = 4;
225
226                         bestif_goodness = goodness;
227                         bestif = ifap;
228                         goto found;
229                 }
230 #ifdef INET6
231                 if ((hint_sa->sa_family == AF_INET6) &&
232                     (0 == memcmp(&((struct sockaddr_in6*)hint_sa)->sin6_addr,
233                                  &((struct sockaddr_in6*)ifsa)->sin6_addr,
234                                  sizeof(struct in6_addr))) &&
235                     (((struct sockaddr_in6*)hint_sa)->sin6_scope_id ==
236                     (((struct sockaddr_in6*)ifsa)->sin6_scope_id))) {
237                         const int goodness = 4;
238
239                         bestif_goodness = goodness;
240                         bestif = ifap;
241                         goto found;
242                 }
243                 if (hint_sa->sa_family == AF_INET6) {
244                         /*
245                          * For v6 link local addresses, if the caller is on
246                          * a link-local address then use the scope id to see
247                          * which one.
248                          */
249                         in6_fillscopeid(SA2SIN6(ifsa));
250                         if (IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(ifsa)) &&
251                             IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(caller_sa)) &&
252                             IN6_IS_ADDR_LINKLOCAL(&SA2SIN6ADDR(hint_sa))) {
253                                 if (SA2SIN6(ifsa)->sin6_scope_id ==
254                                     SA2SIN6(caller_sa)->sin6_scope_id) {
255                                         const int goodness = 3;
256
257                                         if (bestif_goodness < goodness) {
258                                                 bestif = ifap;
259                                                 bestif_goodness = goodness;
260                                         }
261                                 }
262                         }
263                 }
264 #endif /* INET6 */
265                 if (0 == bitmaskcmp(hint_sa, ifsa, ifmasksa)) {
266                         const int goodness = 2;
267
268                         if (bestif_goodness < goodness) {
269                                 bestif = ifap;
270                                 bestif_goodness = goodness;
271                         }
272                 }
273                 if (!(ifap->ifa_flags & (IFF_LOOPBACK | IFF_POINTOPOINT))) {
274                         const int goodness = 1;
275
276                         if (bestif_goodness < goodness) {
277                                 bestif = ifap;
278                                 bestif_goodness = goodness;
279                         }
280                 }
281                 if (bestif == NULL)
282                         bestif = ifap;
283         }
284         if (bestif == NULL)
285                 goto freeit;
286
287 found:
288         /*
289          * Construct the new address using the address from
290          * `bestif', and the port number from `serv_uaddr'.
291          */
292         serv_nbp = uaddr2taddr(nconf, serv_uaddr);
293         if (serv_nbp == NULL)
294                 goto freeit;
295         serv_sa = serv_nbp->buf;
296
297         memcpy(&ss, bestif->ifa_addr, bestif->ifa_addr->sa_len);
298         switch (ss.ss_family) {
299         case AF_INET:
300                 SA2SIN(&ss)->sin_port = SA2SIN(serv_sa)->sin_port;
301                 break;
302 #ifdef INET6
303         case AF_INET6:
304                 SA2SIN6(&ss)->sin6_port = SA2SIN6(serv_sa)->sin6_port;
305                 break;
306 #endif
307         }
308         tbuf.len = ss.ss_len;
309         tbuf.maxlen = sizeof(ss);
310         tbuf.buf = &ss;
311         ret = taddr2uaddr(nconf, &tbuf);
312
313 freeit:
314         if (caller_uaddr != NULL)
315                 free(caller_uaddr);
316         if (hint_nbp != NULL) {
317                 free(hint_nbp->buf);
318                 free(hint_nbp);
319         }
320         if (serv_nbp != NULL) {
321                 free(serv_nbp->buf);
322                 free(serv_nbp);
323         }
324         if (ifp != NULL)
325                 freeifaddrs(ifp);
326
327 #ifdef ND_DEBUG
328         if (debugging)
329                 fprintf(stderr, "addrmerge: returning %s\n", ret);
330 #endif
331         return ret;
332 }
333
334 void
335 network_init(void)
336 {
337 #ifdef INET6
338         struct ifaddrs *ifap, *ifp;
339         struct ipv6_mreq mreq6;
340         unsigned int ifindex;
341         int s;
342 #endif
343         int ecode;
344         struct addrinfo hints, *res;
345
346         memset(&hints, 0, sizeof hints);
347         hints.ai_family = AF_INET;
348         if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
349                 if (debugging)
350                         fprintf(stderr, "can't get local ip4 address: %s\n",
351                             gai_strerror(ecode));
352         } else {
353                 local_in4 = (struct sockaddr_in *)malloc(sizeof *local_in4);
354                 if (local_in4 == NULL) {
355                         if (debugging)
356                                 fprintf(stderr, "can't alloc local ip4 addr\n");
357                 }
358                 memcpy(local_in4, res->ai_addr, sizeof *local_in4);
359         }
360
361 #ifdef INET6
362         hints.ai_family = AF_INET6;
363         if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
364                 if (debugging)
365                         fprintf(stderr, "can't get local ip6 address: %s\n",
366                             gai_strerror(ecode));
367         } else {
368                 local_in6 = (struct sockaddr_in6 *)malloc(sizeof *local_in6);
369                 if (local_in6 == NULL) {
370                         if (debugging)
371                                 fprintf(stderr, "can't alloc local ip6 addr\n");
372                 }
373                 memcpy(local_in6, res->ai_addr, sizeof *local_in6);
374         }
375
376         /*
377          * Now join the RPC ipv6 multicast group on all interfaces.
378          */
379         if (getifaddrs(&ifp) < 0)
380                 return;
381
382         mreq6.ipv6mr_interface = 0;
383         inet_pton(AF_INET6, RPCB_MULTICAST_ADDR, &mreq6.ipv6mr_multiaddr);
384
385         s = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
386
387         /*
388          * Loop through all interfaces. For each IPv6 multicast-capable
389          * interface, join the RPC multicast group on that interface.
390          */
391         for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
392                 if (ifap->ifa_addr->sa_family != AF_INET6 ||
393                     !(ifap->ifa_flags & IFF_MULTICAST))
394                         continue;
395                 ifindex = if_nametoindex(ifap->ifa_name);
396                 if (ifindex == mreq6.ipv6mr_interface)
397                         /*
398                          * Already did this one.
399                          */
400                         continue;
401                 mreq6.ipv6mr_interface = ifindex;
402                 if (setsockopt(s, IPPROTO_IPV6, IPV6_JOIN_GROUP, &mreq6,
403                     sizeof mreq6) < 0)
404                         if (debugging)
405                                 perror("setsockopt v6 multicast");
406         }
407 #endif
408
409         /* close(s); */
410 }
411
412 struct sockaddr *
413 local_sa(int af)
414 {
415         switch (af) {
416         case AF_INET:
417                 return (struct sockaddr *)local_in4;
418 #ifdef INET6
419         case AF_INET6:
420                 return (struct sockaddr *)local_in6;
421 #endif
422         default:
423                 return NULL;
424         }
425 }