Home | History | Annotate | Line # | Download | only in rpcbind
util.c revision 1.21.4.1
      1  1.21.4.1  christos /*	$NetBSD: util.c,v 1.21.4.1 2019/06/10 22:10:36 christos Exp $	*/
      2      1.21  christos /* $FreeBSD: head/usr.sbin/rpcbind/util.c 300973 2016-05-29 20:28:01Z ngie $ */
      3       1.1      fvdl 
      4       1.1      fvdl /*-
      5       1.1      fvdl  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      6       1.1      fvdl  * All rights reserved.
      7       1.1      fvdl  *
      8       1.1      fvdl  * This code is derived from software contributed to The NetBSD Foundation
      9       1.1      fvdl  * by Frank van der Linden.
     10       1.1      fvdl  *
     11       1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     12       1.1      fvdl  * modification, are permitted provided that the following conditions
     13       1.1      fvdl  * are met:
     14       1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     15       1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     16       1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     18       1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     19       1.1      fvdl  *
     20       1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1      fvdl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1      fvdl  */
     32       1.1      fvdl 
     33       1.1      fvdl #include <sys/types.h>
     34       1.1      fvdl #include <sys/socket.h>
     35       1.1      fvdl #include <sys/queue.h>
     36       1.1      fvdl #include <net/if.h>
     37       1.1      fvdl #include <netinet/in.h>
     38      1.12  christos #include <assert.h>
     39       1.1      fvdl #include <ifaddrs.h>
     40       1.8    itojun #include <poll.h>
     41       1.1      fvdl #include <rpc/rpc.h>
     42       1.1      fvdl #include <errno.h>
     43       1.1      fvdl #include <stdlib.h>
     44       1.2   thorpej #include <string.h>
     45       1.1      fvdl #include <unistd.h>
     46       1.1      fvdl #include <netdb.h>
     47       1.1      fvdl #include <netconfig.h>
     48       1.1      fvdl #include <stdio.h>
     49       1.1      fvdl #include <arpa/inet.h>
     50      1.19  dholland #include <err.h>
     51       1.1      fvdl 
     52      1.20  christos #ifdef RPCBIND_RUMP
     53      1.20  christos #include <rump/rump.h>
     54      1.20  christos #include <rump/rump_syscalls.h>
     55      1.20  christos #endif
     56      1.20  christos 
     57       1.1      fvdl #include "rpcbind.h"
     58       1.1      fvdl 
     59       1.1      fvdl static struct sockaddr_in *local_in4;
     60       1.1      fvdl #ifdef INET6
     61       1.1      fvdl static struct sockaddr_in6 *local_in6;
     62       1.1      fvdl #endif
     63       1.1      fvdl 
     64      1.13  christos static int bitmaskcmp(void *, void *, void *, int);
     65       1.1      fvdl 
     66       1.1      fvdl /*
     67       1.1      fvdl  * For all bits set in "mask", compare the corresponding bits in
     68      1.21  christos  * "dst" and "src", and see if they match. Returns 0 if the addresses
     69      1.21  christos  * match.
     70       1.1      fvdl  */
     71       1.1      fvdl static int
     72       1.1      fvdl bitmaskcmp(void *dst, void *src, void *mask, int bytelen)
     73       1.1      fvdl {
     74       1.1      fvdl 	int i, j;
     75       1.1      fvdl 	u_int8_t *p1 = dst, *p2 = src, *netmask = mask;
     76       1.1      fvdl 	u_int8_t bitmask;
     77       1.1      fvdl 
     78       1.1      fvdl 	for (i = 0; i < bytelen; i++) {
     79       1.1      fvdl 		for (j = 0; j < 8; j++) {
     80       1.1      fvdl 			bitmask = 1 << j;
     81       1.1      fvdl 			if (!(netmask[i] & bitmask))
     82       1.1      fvdl 				continue;
     83       1.1      fvdl 			if ((p1[i] & bitmask) != (p2[i] & bitmask))
     84       1.1      fvdl 				return 1;
     85       1.1      fvdl 		}
     86       1.1      fvdl 	}
     87       1.1      fvdl 
     88       1.1      fvdl 	return 0;
     89       1.1      fvdl }
     90       1.1      fvdl 
     91       1.1      fvdl char *
     92       1.1      fvdl addrmerge(struct netbuf *caller, char *serv_uaddr, char *clnt_uaddr,
     93      1.21  christos     const char *netid)
     94       1.1      fvdl {
     95       1.4      fvdl 	struct ifaddrs *ifap, *ifp, *bestif;
     96       1.1      fvdl #ifdef INET6
     97       1.1      fvdl 	struct sockaddr_in6 *servsin6, *sin6mask, *clntsin6, *ifsin6, *realsin6;
     98       1.1      fvdl 	struct sockaddr_in6 *newsin6;
     99       1.1      fvdl #endif
    100       1.1      fvdl 	struct sockaddr_in *servsin, *sinmask, *clntsin, *newsin, *ifsin;
    101       1.1      fvdl 	struct netbuf *serv_nbp, *clnt_nbp = NULL, tbuf;
    102       1.1      fvdl 	struct sockaddr *serv_sa;
    103       1.1      fvdl 	struct sockaddr *clnt_sa;
    104       1.1      fvdl 	struct sockaddr_storage ss;
    105       1.1      fvdl 	struct netconfig *nconf;
    106       1.1      fvdl 	struct sockaddr *clnt = caller->buf;
    107       1.1      fvdl 	char *ret = NULL;
    108       1.1      fvdl 
    109      1.11     lukem #ifdef INET6
    110      1.10     lukem 	servsin6 = ifsin6 = newsin6 = NULL;	/* XXXGCC -Wuninitialized */
    111      1.11     lukem #endif
    112      1.10     lukem 	servsin = newsin = NULL;		/* XXXGCC -Wuninitialized */
    113      1.10     lukem 
    114      1.14       dsl #ifdef RPCBIND_DEBUG
    115       1.1      fvdl 	if (debugging)
    116       1.1      fvdl 		fprintf(stderr, "addrmerge(caller, %s, %s, %s\n", serv_uaddr,
    117       1.1      fvdl 		    clnt_uaddr, netid);
    118       1.1      fvdl #endif
    119       1.1      fvdl 	nconf = getnetconfigent(netid);
    120       1.1      fvdl 	if (nconf == NULL)
    121       1.1      fvdl 		return NULL;
    122       1.1      fvdl 
    123       1.4      fvdl 	/*
    124       1.4      fvdl 	 * Local merge, just return a duplicate.
    125       1.4      fvdl 	 */
    126       1.4      fvdl 	if (clnt_uaddr != NULL && strncmp(clnt_uaddr, "0.0.0.0.", 8) == 0)
    127       1.4      fvdl 		return strdup(clnt_uaddr);
    128       1.4      fvdl 
    129       1.1      fvdl 	serv_nbp = uaddr2taddr(nconf, serv_uaddr);
    130       1.1      fvdl 	if (serv_nbp == NULL)
    131       1.1      fvdl 		return NULL;
    132       1.1      fvdl 
    133  1.21.4.1  christos 	serv_sa = serv_nbp->buf;
    134       1.1      fvdl 	if (clnt_uaddr != NULL) {
    135       1.1      fvdl 		clnt_nbp = uaddr2taddr(nconf, clnt_uaddr);
    136       1.6      fvdl 		if (clnt_nbp == NULL) {
    137       1.6      fvdl 			free(serv_nbp);
    138       1.6      fvdl 			return NULL;
    139       1.6      fvdl 		}
    140  1.21.4.1  christos 		clnt_sa = clnt_nbp->buf;
    141       1.6      fvdl 		if (clnt_sa->sa_family == AF_LOCAL) {
    142       1.6      fvdl 			free(serv_nbp);
    143       1.6      fvdl 			free(clnt_nbp);
    144       1.6      fvdl 			free(clnt_sa);
    145       1.7      fvdl 			return strdup(serv_uaddr);
    146       1.6      fvdl 		}
    147       1.1      fvdl 	} else {
    148  1.21.4.1  christos 		clnt_sa = malloc(clnt->sa_len);
    149  1.21.4.1  christos 		if (clnt_sa == NULL) {
    150  1.21.4.1  christos 			free(serv_nbp);
    151  1.21.4.1  christos 			return NULL;
    152  1.21.4.1  christos 		}
    153       1.1      fvdl 		memcpy(clnt_sa, clnt, clnt->sa_len);
    154       1.1      fvdl 	}
    155       1.1      fvdl 
    156       1.6      fvdl 	if (getifaddrs(&ifp) < 0) {
    157       1.6      fvdl 		free(serv_nbp);
    158       1.6      fvdl 		free(clnt_sa);
    159       1.6      fvdl 		if (clnt_nbp != NULL)
    160       1.6      fvdl 			free(clnt_nbp);
    161       1.1      fvdl 		return 0;
    162       1.6      fvdl 	}
    163       1.1      fvdl 
    164       1.1      fvdl 	/*
    165       1.1      fvdl 	 * Loop through all interfaces. For each interface, see if the
    166       1.1      fvdl 	 * network portion of its address is equal to that of the client.
    167       1.1      fvdl 	 * If so, we have found the interface that we want to use.
    168       1.1      fvdl 	 */
    169       1.1      fvdl 	for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
    170       1.1      fvdl 		if (ifap->ifa_addr->sa_family != clnt->sa_family ||
    171       1.1      fvdl 		    !(ifap->ifa_flags & IFF_UP))
    172       1.1      fvdl 			continue;
    173       1.1      fvdl 
    174       1.1      fvdl 		switch (clnt->sa_family) {
    175       1.1      fvdl 		case AF_INET:
    176       1.1      fvdl 			/*
    177       1.1      fvdl 			 * realsin: address that recvfrom gave us.
    178       1.1      fvdl 			 * ifsin: address of interface being examined.
    179       1.1      fvdl 			 * clntsin: address that client want us to contact
    180       1.1      fvdl 			 *           it on
    181       1.1      fvdl 			 * servsin: local address of RPC service.
    182       1.1      fvdl 			 * sinmask: netmask of this interface
    183       1.1      fvdl 			 * newsin: initially a copy of clntsin, eventually
    184       1.1      fvdl 			 *         the merged address
    185       1.1      fvdl 			 */
    186       1.1      fvdl 			servsin = (struct sockaddr_in *)serv_sa;
    187       1.1      fvdl 			clntsin = (struct sockaddr_in *)clnt_sa;
    188       1.1      fvdl 			sinmask = (struct sockaddr_in *)ifap->ifa_netmask;
    189       1.1      fvdl 			newsin = (struct sockaddr_in *)&ss;
    190       1.1      fvdl 			ifsin = (struct sockaddr_in *)ifap->ifa_addr;
    191       1.1      fvdl 			if (!bitmaskcmp(&ifsin->sin_addr, &clntsin->sin_addr,
    192       1.1      fvdl 			    &sinmask->sin_addr, sizeof (struct in_addr))) {
    193       1.1      fvdl 				goto found;
    194       1.1      fvdl 			}
    195       1.1      fvdl 			break;
    196       1.1      fvdl #ifdef INET6
    197       1.1      fvdl 		case AF_INET6:
    198       1.1      fvdl 			/*
    199       1.1      fvdl 			 * realsin6: address that recvfrom gave us.
    200       1.1      fvdl 			 * ifsin6: address of interface being examined.
    201       1.1      fvdl 			 * clntsin6: address that client want us to contact
    202       1.1      fvdl 			 *           it on
    203       1.1      fvdl 			 * servsin6: local address of RPC service.
    204       1.1      fvdl 			 * sin6mask: netmask of this interface
    205       1.1      fvdl 			 * newsin6: initially a copy of clntsin, eventually
    206       1.1      fvdl 			 *          the merged address
    207       1.1      fvdl 			 *
    208       1.1      fvdl 			 * For v6 link local addresses, if the client contacted
    209       1.1      fvdl 			 * us via a link-local address, and wants us to reply
    210       1.1      fvdl 			 * to one, use the scope id to see which one.
    211       1.1      fvdl 			 */
    212       1.1      fvdl 			realsin6 = (struct sockaddr_in6 *)clnt;
    213       1.1      fvdl 			ifsin6 = (struct sockaddr_in6 *)ifap->ifa_addr;
    214      1.17  christos 			inet6_getscopeid(ifsin6, 1);
    215       1.1      fvdl 			clntsin6 = (struct sockaddr_in6 *)clnt_sa;
    216       1.1      fvdl 			servsin6 = (struct sockaddr_in6 *)serv_sa;
    217       1.1      fvdl 			sin6mask = (struct sockaddr_in6 *)ifap->ifa_netmask;
    218       1.1      fvdl 			newsin6 = (struct sockaddr_in6 *)&ss;
    219       1.1      fvdl 			if (IN6_IS_ADDR_LINKLOCAL(&ifsin6->sin6_addr) &&
    220       1.1      fvdl 			    IN6_IS_ADDR_LINKLOCAL(&realsin6->sin6_addr) &&
    221       1.1      fvdl 			    IN6_IS_ADDR_LINKLOCAL(&clntsin6->sin6_addr)) {
    222       1.1      fvdl 				if (ifsin6->sin6_scope_id !=
    223       1.1      fvdl 				    realsin6->sin6_scope_id)
    224       1.1      fvdl 					continue;
    225       1.1      fvdl 				goto found;
    226       1.1      fvdl 			}
    227       1.1      fvdl 			if (!bitmaskcmp(&ifsin6->sin6_addr,
    228       1.1      fvdl 			    &clntsin6->sin6_addr, &sin6mask->sin6_addr,
    229       1.1      fvdl 			    sizeof (struct in6_addr)))
    230       1.5       jmc 				goto found;
    231       1.1      fvdl 			break;
    232       1.1      fvdl #endif
    233       1.1      fvdl 		default:
    234       1.1      fvdl 			goto freeit;
    235       1.1      fvdl 		}
    236       1.1      fvdl 	}
    237       1.4      fvdl 	/*
    238       1.4      fvdl 	 * Didn't find anything. Get the first possibly useful interface,
    239       1.4      fvdl 	 * preferring "normal" interfaces to point-to-point and loopback
    240       1.4      fvdl 	 * ones.
    241       1.4      fvdl 	 */
    242       1.4      fvdl 	bestif = NULL;
    243       1.4      fvdl 	for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
    244       1.4      fvdl 		if (ifap->ifa_addr->sa_family != clnt->sa_family ||
    245       1.4      fvdl 		    !(ifap->ifa_flags & IFF_UP))
    246       1.4      fvdl 			continue;
    247       1.4      fvdl 		if (!(ifap->ifa_flags & IFF_LOOPBACK) &&
    248       1.4      fvdl 		    !(ifap->ifa_flags & IFF_POINTOPOINT)) {
    249       1.4      fvdl 			bestif = ifap;
    250       1.4      fvdl 			break;
    251       1.4      fvdl 		}
    252       1.4      fvdl 		if (bestif == NULL)
    253       1.4      fvdl 			bestif = ifap;
    254       1.4      fvdl 		else if ((bestif->ifa_flags & IFF_LOOPBACK) &&
    255       1.4      fvdl 		    !(ifap->ifa_flags & IFF_LOOPBACK))
    256       1.4      fvdl 			bestif = ifap;
    257       1.4      fvdl 	}
    258       1.4      fvdl 	ifap = bestif;
    259       1.1      fvdl found:
    260       1.5       jmc 	switch (clnt->sa_family) {
    261       1.5       jmc 	case AF_INET:
    262       1.5       jmc 		memcpy(newsin, ifap->ifa_addr, clnt_sa->sa_len);
    263       1.5       jmc 		newsin->sin_port = servsin->sin_port;
    264       1.5       jmc 		tbuf.len = clnt_sa->sa_len;
    265       1.5       jmc 		tbuf.maxlen = sizeof (struct sockaddr_storage);
    266       1.5       jmc 		tbuf.buf = newsin;
    267       1.5       jmc 		break;
    268       1.5       jmc #ifdef INET6
    269       1.5       jmc 	case AF_INET6:
    270       1.5       jmc 		memcpy(newsin6, ifsin6, clnt_sa->sa_len);
    271       1.5       jmc 		newsin6->sin6_port = servsin6->sin6_port;
    272       1.5       jmc 		tbuf.maxlen = sizeof (struct sockaddr_storage);
    273       1.5       jmc 		tbuf.len = clnt_sa->sa_len;
    274       1.5       jmc 		tbuf.buf = newsin6;
    275       1.5       jmc 		break;
    276       1.5       jmc #endif
    277       1.5       jmc 	default:
    278       1.5       jmc 		goto freeit;
    279       1.5       jmc 	}
    280       1.1      fvdl 	if (ifap != NULL)
    281       1.1      fvdl 		ret = taddr2uaddr(nconf, &tbuf);
    282       1.1      fvdl freeit:
    283       1.3      fvdl 	freenetconfigent(nconf);
    284       1.1      fvdl 	free(serv_sa);
    285       1.1      fvdl 	free(serv_nbp);
    286       1.1      fvdl 	if (clnt_sa != NULL)
    287       1.1      fvdl 		free(clnt_sa);
    288       1.1      fvdl 	if (clnt_nbp != NULL)
    289       1.1      fvdl 		free(clnt_nbp);
    290       1.1      fvdl 	freeifaddrs(ifp);
    291       1.1      fvdl 
    292      1.14       dsl #ifdef RPCBIND_DEBUG
    293       1.1      fvdl 	if (debugging)
    294       1.1      fvdl 		fprintf(stderr, "addrmerge: returning %s\n", ret);
    295       1.1      fvdl #endif
    296       1.1      fvdl 	return ret;
    297       1.1      fvdl }
    298       1.1      fvdl 
    299       1.1      fvdl void
    300       1.1      fvdl network_init()
    301       1.1      fvdl {
    302       1.1      fvdl #ifdef INET6
    303       1.1      fvdl 	struct ifaddrs *ifap, *ifp;
    304       1.1      fvdl 	struct ipv6_mreq mreq6;
    305      1.16     lukem 	unsigned int ifindex;
    306      1.16     lukem 	int s;
    307       1.1      fvdl #endif
    308       1.1      fvdl 	int ecode;
    309       1.1      fvdl 	struct addrinfo hints, *res;
    310       1.1      fvdl 
    311       1.1      fvdl 	memset(&hints, 0, sizeof hints);
    312       1.1      fvdl 	hints.ai_family = AF_INET;
    313       1.1      fvdl 	if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
    314       1.1      fvdl 		if (debugging)
    315       1.1      fvdl 			fprintf(stderr, "can't get local ip4 address: %s\n",
    316       1.1      fvdl 			    gai_strerror(ecode));
    317       1.1      fvdl 	} else {
    318  1.21.4.1  christos 		local_in4 = malloc(sizeof(*local_in4));
    319       1.1      fvdl 		if (local_in4 == NULL) {
    320       1.1      fvdl 			if (debugging)
    321       1.1      fvdl 				fprintf(stderr, "can't alloc local ip4 addr\n");
    322       1.1      fvdl 		}
    323       1.1      fvdl 		memcpy(local_in4, res->ai_addr, sizeof *local_in4);
    324       1.1      fvdl 	}
    325       1.1      fvdl 
    326       1.1      fvdl #ifdef INET6
    327       1.1      fvdl 	hints.ai_family = AF_INET6;
    328       1.1      fvdl 	if ((ecode = getaddrinfo(NULL, "sunrpc", &hints, &res))) {
    329       1.1      fvdl 		if (debugging)
    330       1.1      fvdl 			fprintf(stderr, "can't get local ip6 address: %s\n",
    331       1.1      fvdl 			    gai_strerror(ecode));
    332       1.1      fvdl 	} else {
    333  1.21.4.1  christos 		local_in6 = malloc(sizeof(*local_in6));
    334       1.1      fvdl 		if (local_in6 == NULL) {
    335       1.1      fvdl 			if (debugging)
    336       1.1      fvdl 				fprintf(stderr, "can't alloc local ip6 addr\n");
    337       1.1      fvdl 		}
    338       1.1      fvdl 		memcpy(local_in6, res->ai_addr, sizeof *local_in6);
    339       1.1      fvdl 	}
    340       1.1      fvdl 
    341       1.1      fvdl 	/*
    342       1.1      fvdl 	 * Now join the RPC ipv6 multicast group on all interfaces.
    343       1.1      fvdl 	 */
    344       1.1      fvdl 	if (getifaddrs(&ifp) < 0)
    345       1.1      fvdl 		return;
    346       1.1      fvdl 
    347       1.1      fvdl 	mreq6.ipv6mr_interface = 0;
    348       1.1      fvdl 	inet_pton(AF_INET6, RPCB_MULTICAST_ADDR, &mreq6.ipv6mr_multiaddr);
    349       1.1      fvdl 
    350       1.1      fvdl 	s = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
    351       1.1      fvdl 
    352       1.1      fvdl 	/*
    353       1.1      fvdl 	 * Loop through all interfaces. For each interface, see if the
    354       1.1      fvdl 	 * network portion of its address is equal to that of the client.
    355       1.1      fvdl 	 * If so, we have found the interface that we want to use.
    356       1.1      fvdl 	 */
    357       1.1      fvdl 	for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
    358       1.1      fvdl 		if (ifap->ifa_addr->sa_family != AF_INET6 ||
    359       1.1      fvdl 		    !(ifap->ifa_flags & IFF_MULTICAST))
    360       1.1      fvdl 			continue;
    361       1.1      fvdl 		ifindex = if_nametoindex(ifap->ifa_name);
    362       1.1      fvdl 		if (ifindex == mreq6.ipv6mr_interface)
    363       1.1      fvdl 			/*
    364       1.1      fvdl 			 * Already did this one.
    365       1.1      fvdl 			 */
    366       1.1      fvdl 			continue;
    367       1.1      fvdl 		mreq6.ipv6mr_interface = ifindex;
    368       1.1      fvdl 		if (setsockopt(s, IPPROTO_IPV6, IPV6_JOIN_GROUP, &mreq6,
    369       1.1      fvdl 		    sizeof mreq6) < 0)
    370       1.1      fvdl 			if (debugging)
    371      1.19  dholland 				warn("setsockopt v6 multicast");
    372       1.1      fvdl 	}
    373      1.18  christos 	freeifaddrs(ifp);
    374       1.1      fvdl #endif
    375       1.1      fvdl 
    376       1.1      fvdl 	/* close(s); */
    377       1.1      fvdl }
    378       1.1      fvdl 
    379       1.1      fvdl struct sockaddr *
    380       1.1      fvdl local_sa(int af)
    381       1.1      fvdl {
    382       1.1      fvdl 	switch (af) {
    383       1.1      fvdl 	case AF_INET:
    384       1.1      fvdl 		return (struct sockaddr *)local_in4;
    385       1.1      fvdl #ifdef INET6
    386       1.1      fvdl 	case AF_INET6:
    387       1.1      fvdl 		return (struct sockaddr *)local_in6;
    388       1.1      fvdl #endif
    389       1.1      fvdl 	default:
    390       1.1      fvdl 		return NULL;
    391       1.1      fvdl 	}
    392       1.1      fvdl }
    393