Home | History | Annotate | Line # | Download | only in netinet
in.c revision 1.175
      1  1.175  christos /*	$NetBSD: in.c,v 1.175 2016/07/14 18:18:16 christos Exp $	*/
      2   1.48    itojun 
      3   1.48    itojun /*
      4   1.48    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5   1.48    itojun  * All rights reserved.
      6   1.77    itojun  *
      7   1.48    itojun  * Redistribution and use in source and binary forms, with or without
      8   1.48    itojun  * modification, are permitted provided that the following conditions
      9   1.48    itojun  * are met:
     10   1.48    itojun  * 1. Redistributions of source code must retain the above copyright
     11   1.48    itojun  *    notice, this list of conditions and the following disclaimer.
     12   1.48    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.48    itojun  *    notice, this list of conditions and the following disclaimer in the
     14   1.48    itojun  *    documentation and/or other materials provided with the distribution.
     15   1.48    itojun  * 3. Neither the name of the project nor the names of its contributors
     16   1.48    itojun  *    may be used to endorse or promote products derived from this software
     17   1.48    itojun  *    without specific prior written permission.
     18   1.77    itojun  *
     19   1.48    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20   1.48    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.48    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.48    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23   1.48    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.48    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.48    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.48    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.48    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.48    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.48    itojun  * SUCH DAMAGE.
     30   1.48    itojun  */
     31   1.14       cgd 
     32   1.46   thorpej /*-
     33   1.46   thorpej  * Copyright (c) 1998 The NetBSD Foundation, Inc.
     34   1.46   thorpej  * All rights reserved.
     35   1.46   thorpej  *
     36   1.46   thorpej  * This code is derived from software contributed to The NetBSD Foundation
     37   1.46   thorpej  * by Public Access Networks Corporation ("Panix").  It was developed under
     38   1.46   thorpej  * contract to Panix by Eric Haszlakiewicz and Thor Lancelot Simon.
     39   1.46   thorpej  *
     40   1.46   thorpej  * Redistribution and use in source and binary forms, with or without
     41   1.46   thorpej  * modification, are permitted provided that the following conditions
     42   1.46   thorpej  * are met:
     43   1.46   thorpej  * 1. Redistributions of source code must retain the above copyright
     44   1.46   thorpej  *    notice, this list of conditions and the following disclaimer.
     45   1.46   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     46   1.46   thorpej  *    notice, this list of conditions and the following disclaimer in the
     47   1.46   thorpej  *    documentation and/or other materials provided with the distribution.
     48   1.46   thorpej  *
     49   1.46   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     50   1.46   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     51   1.46   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     52   1.46   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     53   1.46   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     54   1.46   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     55   1.46   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     56   1.46   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     57   1.46   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     58   1.46   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     59   1.46   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     60   1.46   thorpej  */
     61   1.46   thorpej 
     62    1.1       cgd /*
     63   1.12   mycroft  * Copyright (c) 1982, 1986, 1991, 1993
     64   1.12   mycroft  *	The Regents of the University of California.  All rights reserved.
     65    1.1       cgd  *
     66    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     67    1.1       cgd  * modification, are permitted provided that the following conditions
     68    1.1       cgd  * are met:
     69    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     70    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     71    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     72    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     73    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     74   1.90       agc  * 3. Neither the name of the University nor the names of its contributors
     75    1.1       cgd  *    may be used to endorse or promote products derived from this software
     76    1.1       cgd  *    without specific prior written permission.
     77    1.1       cgd  *
     78    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     79    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     80    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     81    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     82    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     83    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     84    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     85    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     86    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     87    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     88    1.1       cgd  * SUCH DAMAGE.
     89    1.1       cgd  *
     90   1.36   thorpej  *	@(#)in.c	8.4 (Berkeley) 1/9/95
     91    1.1       cgd  */
     92   1.71     lukem 
     93   1.71     lukem #include <sys/cdefs.h>
     94  1.175  christos __KERNEL_RCSID(0, "$NetBSD: in.c,v 1.175 2016/07/14 18:18:16 christos Exp $");
     95   1.37    scottr 
     96  1.154     joerg #include "arp.h"
     97  1.157     pooka 
     98  1.157     pooka #ifdef _KERNEL_OPT
     99   1.41  jonathan #include "opt_inet.h"
    100   1.47  sommerfe #include "opt_inet_conf.h"
    101   1.37    scottr #include "opt_mrouting.h"
    102  1.157     pooka #endif
    103    1.1       cgd 
    104    1.6   mycroft #include <sys/param.h>
    105    1.6   mycroft #include <sys/ioctl.h>
    106   1.12   mycroft #include <sys/errno.h>
    107  1.152       roy #include <sys/kernel.h>
    108   1.12   mycroft #include <sys/malloc.h>
    109    1.6   mycroft #include <sys/socket.h>
    110    1.6   mycroft #include <sys/socketvar.h>
    111  1.114    dyoung #include <sys/sysctl.h>
    112   1.26  christos #include <sys/systm.h>
    113   1.27   mycroft #include <sys/proc.h>
    114   1.72  christos #include <sys/syslog.h>
    115  1.108      elad #include <sys/kauth.h>
    116  1.158     ozaki #include <sys/kmem.h>
    117    1.6   mycroft 
    118  1.141       tls #include <sys/cprng.h>
    119  1.141       tls 
    120    1.6   mycroft #include <net/if.h>
    121    1.6   mycroft #include <net/route.h>
    122  1.144     rmind #include <net/pfil.h>
    123    1.6   mycroft 
    124  1.159     ozaki #include <net/if_arp.h>
    125   1.34        is #include <net/if_ether.h>
    126  1.158     ozaki #include <net/if_types.h>
    127  1.158     ozaki #include <net/if_llatbl.h>
    128  1.158     ozaki #include <net/if_dl.h>
    129   1.34        is 
    130   1.12   mycroft #include <netinet/in_systm.h>
    131    1.6   mycroft #include <netinet/in.h>
    132    1.6   mycroft #include <netinet/in_var.h>
    133   1.84      matt #include <netinet/ip.h>
    134   1.84      matt #include <netinet/ip_var.h>
    135  1.114    dyoung #include <netinet/in_ifattach.h>
    136   1.84      matt #include <netinet/in_pcb.h>
    137  1.158     ozaki #include <netinet/in_selsrc.h>
    138   1.34        is #include <netinet/if_inarp.h>
    139   1.19   mycroft #include <netinet/ip_mroute.h>
    140   1.26  christos #include <netinet/igmp_var.h>
    141   1.13    chopps 
    142  1.114    dyoung #ifdef IPSELSRC
    143  1.114    dyoung #include <netinet/in_selsrc.h>
    144  1.114    dyoung #endif
    145  1.114    dyoung 
    146  1.145     rmind static u_int	in_mask2len(struct in_addr *);
    147  1.145     rmind static void	in_len2mask(struct in_addr *, u_int);
    148  1.145     rmind static int	in_lifaddr_ioctl(struct socket *, u_long, void *,
    149  1.147       rtr 	struct ifnet *);
    150   1.48    itojun 
    151  1.145     rmind static int	in_addprefix(struct in_ifaddr *, int);
    152  1.145     rmind static int	in_scrubprefix(struct in_ifaddr *);
    153  1.145     rmind static void	in_sysctl_init(struct sysctllog **);
    154   1.67    itojun 
    155    1.1       cgd #ifndef SUBNETSARELOCAL
    156    1.1       cgd #define	SUBNETSARELOCAL	1
    157    1.1       cgd #endif
    158   1.47  sommerfe 
    159   1.47  sommerfe #ifndef HOSTZEROBROADCAST
    160  1.166  christos #define HOSTZEROBROADCAST 0
    161   1.47  sommerfe #endif
    162   1.47  sommerfe 
    163  1.146     rmind /* Note: 61, 127, 251, 509, 1021, 2039 are good. */
    164  1.146     rmind #ifndef IN_MULTI_HASH_SIZE
    165  1.146     rmind #define IN_MULTI_HASH_SIZE	509
    166  1.146     rmind #endif
    167  1.146     rmind 
    168  1.145     rmind static int			subnetsarelocal = SUBNETSARELOCAL;
    169  1.145     rmind static int			hostzeroisbroadcast = HOSTZEROBROADCAST;
    170   1.30       mrg 
    171    1.1       cgd /*
    172   1.65     enami  * This list is used to keep track of in_multi chains which belong to
    173   1.65     enami  * deleted interface addresses.  We use in_ifaddr so that a chain head
    174   1.65     enami  * won't be deallocated until all multicast address record are deleted.
    175   1.64    itojun  */
    176  1.146     rmind 
    177  1.146     rmind LIST_HEAD(in_multihashhead, in_multi);		/* Type of the hash head */
    178  1.145     rmind 
    179  1.145     rmind static struct pool		inmulti_pool;
    180  1.145     rmind static u_int			in_multientries;
    181  1.146     rmind static struct in_multihashhead *in_multihashtbl;
    182  1.146     rmind static u_long			in_multihash;
    183  1.146     rmind static krwlock_t		in_multilock;
    184  1.146     rmind 
    185  1.146     rmind #define IN_MULTI_HASH(x, ifp) \
    186  1.146     rmind     (in_multihashtbl[(u_long)((x) ^ (ifp->if_index)) % IN_MULTI_HASH_SIZE])
    187  1.145     rmind 
    188  1.171     ozaki /* XXX DEPRECATED. Keep them to avoid breaking kvm(3) users. */
    189  1.145     rmind struct in_ifaddrhashhead *	in_ifaddrhashtbl;
    190  1.145     rmind u_long				in_ifaddrhash;
    191  1.145     rmind struct in_ifaddrhead		in_ifaddrhead;
    192  1.145     rmind 
    193  1.170     ozaki struct pslist_head *		in_ifaddrhashtbl_pslist;
    194  1.170     ozaki u_long				in_ifaddrhash_pslist;
    195  1.171     ozaki struct pslist_head		in_ifaddrhead_pslist;
    196  1.170     ozaki 
    197  1.145     rmind void
    198  1.145     rmind in_init(void)
    199  1.145     rmind {
    200  1.145     rmind 	pool_init(&inmulti_pool, sizeof(struct in_multi), 0, 0, 0, "inmltpl",
    201  1.145     rmind 	    NULL, IPL_SOFTNET);
    202  1.145     rmind 	TAILQ_INIT(&in_ifaddrhead);
    203  1.171     ozaki 	PSLIST_INIT(&in_ifaddrhead_pslist);
    204  1.145     rmind 
    205  1.145     rmind 	in_ifaddrhashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
    206  1.145     rmind 	    &in_ifaddrhash);
    207  1.170     ozaki 	in_ifaddrhashtbl_pslist = hashinit(IN_IFADDR_HASH_SIZE, HASH_PSLIST,
    208  1.170     ozaki 	    true, &in_ifaddrhash_pslist);
    209  1.145     rmind 	in_multihashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
    210  1.145     rmind 	    &in_multihash);
    211  1.146     rmind 	rw_init(&in_multilock);
    212  1.145     rmind 
    213  1.145     rmind 	in_sysctl_init(NULL);
    214  1.145     rmind }
    215   1.64    itojun 
    216   1.64    itojun /*
    217    1.1       cgd  * Return 1 if an internet address is for a ``local'' host
    218    1.1       cgd  * (one to which we have a connection).  If subnetsarelocal
    219    1.1       cgd  * is true, this includes other subnets of the local net.
    220    1.1       cgd  * Otherwise, it includes only the directly-connected (sub)nets.
    221    1.1       cgd  */
    222    1.8   mycroft int
    223  1.103     perry in_localaddr(struct in_addr in)
    224    1.1       cgd {
    225   1.59  augustss 	struct in_ifaddr *ia;
    226    1.1       cgd 
    227    1.1       cgd 	if (subnetsarelocal) {
    228  1.171     ozaki 		IN_ADDRLIST_READER_FOREACH(ia) {
    229   1.20   mycroft 			if ((in.s_addr & ia->ia_netmask) == ia->ia_net)
    230    1.1       cgd 				return (1);
    231  1.171     ozaki 		}
    232    1.1       cgd 	} else {
    233  1.171     ozaki 		IN_ADDRLIST_READER_FOREACH(ia) {
    234   1.20   mycroft 			if ((in.s_addr & ia->ia_subnetmask) == ia->ia_subnet)
    235    1.1       cgd 				return (1);
    236  1.171     ozaki 		}
    237    1.1       cgd 	}
    238    1.1       cgd 	return (0);
    239    1.1       cgd }
    240    1.1       cgd 
    241    1.1       cgd /*
    242    1.1       cgd  * Determine whether an IP address is in a reserved set of addresses
    243    1.1       cgd  * that may not be forwarded, or whether datagrams to that destination
    244    1.1       cgd  * may be forwarded.
    245    1.1       cgd  */
    246    1.8   mycroft int
    247  1.103     perry in_canforward(struct in_addr in)
    248    1.1       cgd {
    249   1.59  augustss 	u_int32_t net;
    250    1.1       cgd 
    251   1.20   mycroft 	if (IN_EXPERIMENTAL(in.s_addr) || IN_MULTICAST(in.s_addr))
    252    1.1       cgd 		return (0);
    253   1.20   mycroft 	if (IN_CLASSA(in.s_addr)) {
    254   1.20   mycroft 		net = in.s_addr & IN_CLASSA_NET;
    255   1.20   mycroft 		if (net == 0 || net == htonl(IN_LOOPBACKNET << IN_CLASSA_NSHIFT))
    256    1.1       cgd 			return (0);
    257    1.1       cgd 	}
    258    1.1       cgd 	return (1);
    259    1.1       cgd }
    260    1.1       cgd 
    261   1.12   mycroft /*
    262   1.12   mycroft  * Trim a mask in a sockaddr
    263   1.12   mycroft  */
    264   1.12   mycroft void
    265  1.103     perry in_socktrim(struct sockaddr_in *ap)
    266   1.12   mycroft {
    267   1.59  augustss 	char *cplim = (char *) &ap->sin_addr;
    268   1.59  augustss 	char *cp = (char *) (&ap->sin_addr + 1);
    269   1.12   mycroft 
    270   1.12   mycroft 	ap->sin_len = 0;
    271   1.15   mycroft 	while (--cp >= cplim)
    272   1.12   mycroft 		if (*cp) {
    273   1.12   mycroft 			(ap)->sin_len = cp - (char *) (ap) + 1;
    274   1.12   mycroft 			break;
    275   1.12   mycroft 		}
    276   1.40      matt }
    277   1.40      matt 
    278   1.40      matt /*
    279   1.40      matt  *  Routine to take an Internet address and convert into a
    280   1.40      matt  *  "dotted quad" representation for printing.
    281   1.40      matt  */
    282   1.40      matt const char *
    283  1.103     perry in_fmtaddr(struct in_addr addr)
    284   1.40      matt {
    285   1.40      matt 	static char buf[sizeof("123.456.789.123")];
    286   1.40      matt 
    287   1.40      matt 	addr.s_addr = ntohl(addr.s_addr);
    288   1.40      matt 
    289   1.94    itojun 	snprintf(buf, sizeof(buf), "%d.%d.%d.%d",
    290   1.40      matt 		(addr.s_addr >> 24) & 0xFF,
    291   1.40      matt 		(addr.s_addr >> 16) & 0xFF,
    292   1.40      matt 		(addr.s_addr >>  8) & 0xFF,
    293   1.40      matt 		(addr.s_addr >>  0) & 0xFF);
    294   1.40      matt 	return buf;
    295   1.12   mycroft }
    296   1.12   mycroft 
    297   1.35   thorpej /*
    298   1.35   thorpej  * Maintain the "in_maxmtu" variable, which is the largest
    299   1.35   thorpej  * mtu for non-local interfaces with AF_INET addresses assigned
    300   1.35   thorpej  * to them that are up.
    301   1.35   thorpej  */
    302   1.35   thorpej unsigned long in_maxmtu;
    303   1.35   thorpej 
    304   1.35   thorpej void
    305  1.103     perry in_setmaxmtu(void)
    306   1.35   thorpej {
    307   1.59  augustss 	struct in_ifaddr *ia;
    308   1.59  augustss 	struct ifnet *ifp;
    309   1.35   thorpej 	unsigned long maxmtu = 0;
    310   1.35   thorpej 
    311  1.171     ozaki 	IN_ADDRLIST_READER_FOREACH(ia) {
    312   1.35   thorpej 		if ((ifp = ia->ia_ifp) == 0)
    313   1.35   thorpej 			continue;
    314   1.35   thorpej 		if ((ifp->if_flags & (IFF_UP|IFF_LOOPBACK)) != IFF_UP)
    315   1.35   thorpej 			continue;
    316   1.35   thorpej 		if (ifp->if_mtu > maxmtu)
    317   1.38       tls 			maxmtu = ifp->if_mtu;
    318   1.35   thorpej 	}
    319   1.35   thorpej 	if (maxmtu)
    320   1.35   thorpej 		in_maxmtu = maxmtu;
    321   1.35   thorpej }
    322   1.35   thorpej 
    323   1.82   thorpej static u_int
    324  1.103     perry in_mask2len(struct in_addr *mask)
    325   1.48    itojun {
    326   1.82   thorpej 	u_int x, y;
    327   1.48    itojun 	u_char *p;
    328   1.48    itojun 
    329   1.48    itojun 	p = (u_char *)mask;
    330   1.48    itojun 	for (x = 0; x < sizeof(*mask); x++) {
    331   1.48    itojun 		if (p[x] != 0xff)
    332   1.48    itojun 			break;
    333   1.48    itojun 	}
    334   1.48    itojun 	y = 0;
    335   1.48    itojun 	if (x < sizeof(*mask)) {
    336  1.124    dyoung 		for (y = 0; y < NBBY; y++) {
    337   1.48    itojun 			if ((p[x] & (0x80 >> y)) == 0)
    338   1.48    itojun 				break;
    339   1.48    itojun 		}
    340   1.48    itojun 	}
    341  1.124    dyoung 	return x * NBBY + y;
    342   1.48    itojun }
    343   1.48    itojun 
    344   1.48    itojun static void
    345  1.103     perry in_len2mask(struct in_addr *mask, u_int len)
    346   1.48    itojun {
    347   1.82   thorpej 	u_int i;
    348   1.48    itojun 	u_char *p;
    349   1.48    itojun 
    350   1.48    itojun 	p = (u_char *)mask;
    351  1.132    cegger 	memset(mask, 0, sizeof(*mask));
    352  1.124    dyoung 	for (i = 0; i < len / NBBY; i++)
    353   1.48    itojun 		p[i] = 0xff;
    354  1.124    dyoung 	if (len % NBBY)
    355  1.124    dyoung 		p[i] = (0xff00 >> (len % NBBY)) & 0xff;
    356   1.48    itojun }
    357   1.48    itojun 
    358    1.1       cgd /*
    359    1.1       cgd  * Generic internet control operations (ioctl's).
    360    1.1       cgd  * Ifp is 0 if not an interface-specific ioctl.
    361    1.1       cgd  */
    362    1.1       cgd /* ARGSUSED */
    363    1.8   mycroft int
    364  1.147       rtr in_control(struct socket *so, u_long cmd, void *data, struct ifnet *ifp)
    365    1.1       cgd {
    366   1.59  augustss 	struct ifreq *ifr = (struct ifreq *)data;
    367  1.136    dyoung 	struct in_ifaddr *ia = NULL;
    368    1.1       cgd 	struct in_aliasreq *ifra = (struct in_aliasreq *)data;
    369    1.1       cgd 	struct sockaddr_in oldaddr;
    370    1.1       cgd 	int error, hostIsNew, maskIsNew;
    371  1.100      yamt 	int newifaddr = 0;
    372  1.169     ozaki 	bool run_hook = false;
    373  1.169     ozaki 	bool need_reinsert = false;
    374   1.48    itojun 
    375   1.48    itojun 	switch (cmd) {
    376   1.48    itojun 	case SIOCALIFADDR:
    377   1.48    itojun 	case SIOCDLIFADDR:
    378  1.135    dyoung 	case SIOCGLIFADDR:
    379  1.135    dyoung 		if (ifp == NULL)
    380  1.135    dyoung 			return EINVAL;
    381  1.147       rtr 		return in_lifaddr_ioctl(so, cmd, data, ifp);
    382  1.135    dyoung 	case SIOCGIFADDRPREF:
    383  1.114    dyoung 	case SIOCSIFADDRPREF:
    384  1.117    dyoung 		if (ifp == NULL)
    385   1.48    itojun 			return EINVAL;
    386  1.147       rtr 		return ifaddrpref_ioctl(so, cmd, data, ifp);
    387   1.48    itojun 	}
    388   1.48    itojun 
    389    1.1       cgd 	/*
    390    1.1       cgd 	 * Find address for this interface, if it exists.
    391    1.1       cgd 	 */
    392  1.117    dyoung 	if (ifp != NULL)
    393  1.173     ozaki 		ia = in_get_ia_from_ifp(ifp);
    394    1.1       cgd 
    395  1.153       roy 	hostIsNew = 1;		/* moved here to appease gcc */
    396    1.1       cgd 	switch (cmd) {
    397    1.1       cgd 	case SIOCAIFADDR:
    398    1.1       cgd 	case SIOCDIFADDR:
    399   1.43  christos 	case SIOCGIFALIAS:
    400  1.152       roy 	case SIOCGIFAFLAG_IN:
    401  1.170     ozaki 		if (ifra->ifra_addr.sin_family == AF_INET) {
    402  1.170     ozaki 			IN_ADDRHASH_READER_FOREACH(ia,
    403  1.170     ozaki 			    ifra->ifra_addr.sin_addr.s_addr) {
    404  1.117    dyoung 				if (ia->ia_ifp == ifp &&
    405   1.38       tls 				    in_hosteq(ia->ia_addr.sin_addr,
    406   1.38       tls 				    ifra->ifra_addr.sin_addr))
    407   1.28   mycroft 					break;
    408   1.28   mycroft 			}
    409  1.170     ozaki 		}
    410  1.152       roy 		if ((cmd == SIOCDIFADDR ||
    411  1.152       roy 		    cmd == SIOCGIFALIAS ||
    412  1.152       roy 		    cmd == SIOCGIFAFLAG_IN) &&
    413  1.152       roy 		    ia == NULL)
    414  1.105     seanb 			return (EADDRNOTAVAIL);
    415  1.105     seanb 
    416  1.105     seanb 		if (cmd == SIOCDIFADDR &&
    417  1.105     seanb 		    ifra->ifra_addr.sin_family == AF_UNSPEC) {
    418  1.105     seanb 			ifra->ifra_addr.sin_family = AF_INET;
    419  1.105     seanb 		}
    420    1.1       cgd 		/* FALLTHROUGH */
    421    1.1       cgd 	case SIOCSIFADDR:
    422  1.152       roy 		if (ia == NULL || ia->ia_addr.sin_family != AF_INET)
    423  1.152       roy 			;
    424  1.152       roy 		else if (ifra->ifra_addr.sin_len == 0) {
    425  1.152       roy 			ifra->ifra_addr = ia->ia_addr;
    426  1.152       roy 			hostIsNew = 0;
    427  1.152       roy 		} else if (in_hosteq(ia->ia_addr.sin_addr,
    428  1.152       roy 		           ifra->ifra_addr.sin_addr))
    429  1.152       roy 			hostIsNew = 0;
    430  1.152       roy 		/* FALLTHROUGH */
    431   1.52    itojun 	case SIOCSIFDSTADDR:
    432   1.54    itojun 		if (ifra->ifra_addr.sin_family != AF_INET)
    433   1.54    itojun 			return (EAFNOSUPPORT);
    434   1.54    itojun 		/* FALLTHROUGH */
    435    1.1       cgd 	case SIOCSIFNETMASK:
    436  1.117    dyoung 		if (ifp == NULL)
    437   1.44  christos 			panic("in_control");
    438   1.44  christos 
    439  1.152       roy 		if (cmd == SIOCGIFALIAS || cmd == SIOCGIFAFLAG_IN)
    440   1.44  christos 			break;
    441   1.44  christos 
    442  1.100      yamt 		if (ia == NULL &&
    443  1.100      yamt 		    (cmd == SIOCSIFNETMASK || cmd == SIOCSIFDSTADDR))
    444  1.100      yamt 			return (EADDRNOTAVAIL);
    445  1.100      yamt 
    446  1.147       rtr 		if (kauth_authorize_network(curlwp->l_cred, KAUTH_NETWORK_INTERFACE,
    447  1.113      elad 		    KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
    448  1.113      elad 		    NULL) != 0)
    449    1.1       cgd 			return (EPERM);
    450    1.1       cgd 
    451  1.136    dyoung 		if (ia == NULL) {
    452  1.129    cegger 			ia = malloc(sizeof(*ia), M_IFADDR, M_WAITOK|M_ZERO);
    453  1.136    dyoung 			if (ia == NULL)
    454    1.1       cgd 				return (ENOBUFS);
    455   1.21   mycroft 			ia->ia_ifa.ifa_addr = sintosa(&ia->ia_addr);
    456   1.21   mycroft 			ia->ia_ifa.ifa_dstaddr = sintosa(&ia->ia_dstaddr);
    457   1.21   mycroft 			ia->ia_ifa.ifa_netmask = sintosa(&ia->ia_sockmask);
    458  1.114    dyoung #ifdef IPSELSRC
    459  1.114    dyoung 			ia->ia_ifa.ifa_getifa = in_getifa;
    460  1.114    dyoung #else /* IPSELSRC */
    461  1.114    dyoung 			ia->ia_ifa.ifa_getifa = NULL;
    462  1.114    dyoung #endif /* IPSELSRC */
    463    1.1       cgd 			ia->ia_sockmask.sin_len = 8;
    464  1.149  christos 			ia->ia_sockmask.sin_family = AF_INET;
    465    1.1       cgd 			if (ifp->if_flags & IFF_BROADCAST) {
    466    1.1       cgd 				ia->ia_broadaddr.sin_len = sizeof(ia->ia_addr);
    467    1.1       cgd 				ia->ia_broadaddr.sin_family = AF_INET;
    468    1.1       cgd 			}
    469    1.1       cgd 			ia->ia_ifp = ifp;
    470  1.141       tls 			ia->ia_idsalt = cprng_fast32() % 65535;
    471   1.24   mycroft 			LIST_INIT(&ia->ia_multiaddrs);
    472  1.170     ozaki 			IN_ADDRHASH_ENTRY_INIT(ia);
    473  1.171     ozaki 			IN_ADDRLIST_ENTRY_INIT(ia);
    474  1.169     ozaki 
    475  1.100      yamt 			newifaddr = 1;
    476   1.81    simonb 		}
    477    1.1       cgd 		break;
    478    1.1       cgd 
    479    1.1       cgd 	case SIOCSIFBRDADDR:
    480  1.147       rtr 		if (kauth_authorize_network(curlwp->l_cred, KAUTH_NETWORK_INTERFACE,
    481  1.113      elad 		    KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, (void *)cmd,
    482  1.113      elad 		    NULL) != 0)
    483    1.1       cgd 			return (EPERM);
    484    1.1       cgd 		/* FALLTHROUGH */
    485    1.1       cgd 
    486    1.1       cgd 	case SIOCGIFADDR:
    487    1.1       cgd 	case SIOCGIFNETMASK:
    488    1.1       cgd 	case SIOCGIFDSTADDR:
    489    1.1       cgd 	case SIOCGIFBRDADDR:
    490  1.136    dyoung 		if (ia == NULL)
    491    1.1       cgd 			return (EADDRNOTAVAIL);
    492    1.1       cgd 		break;
    493    1.1       cgd 	}
    494  1.100      yamt 	error = 0;
    495    1.1       cgd 	switch (cmd) {
    496    1.1       cgd 
    497    1.1       cgd 	case SIOCGIFADDR:
    498  1.118    dyoung 		ifreq_setaddr(cmd, ifr, sintocsa(&ia->ia_addr));
    499    1.1       cgd 		break;
    500    1.1       cgd 
    501    1.1       cgd 	case SIOCGIFBRDADDR:
    502    1.1       cgd 		if ((ifp->if_flags & IFF_BROADCAST) == 0)
    503    1.1       cgd 			return (EINVAL);
    504  1.118    dyoung 		ifreq_setdstaddr(cmd, ifr, sintocsa(&ia->ia_broadaddr));
    505    1.1       cgd 		break;
    506    1.1       cgd 
    507    1.1       cgd 	case SIOCGIFDSTADDR:
    508    1.1       cgd 		if ((ifp->if_flags & IFF_POINTOPOINT) == 0)
    509    1.1       cgd 			return (EINVAL);
    510  1.118    dyoung 		ifreq_setdstaddr(cmd, ifr, sintocsa(&ia->ia_dstaddr));
    511    1.1       cgd 		break;
    512    1.1       cgd 
    513    1.1       cgd 	case SIOCGIFNETMASK:
    514  1.149  christos 		/*
    515  1.149  christos 		 * We keep the number of trailing zero bytes the sin_len field
    516  1.149  christos 		 * of ia_sockmask, so we fix this before we pass it back to
    517  1.149  christos 		 * userland.
    518  1.149  christos 		 */
    519  1.149  christos 		oldaddr = ia->ia_sockmask;
    520  1.149  christos 		oldaddr.sin_len = sizeof(struct sockaddr_in);
    521  1.149  christos 		ifreq_setaddr(cmd, ifr, (const void *)&oldaddr);
    522    1.1       cgd 		break;
    523    1.1       cgd 
    524    1.1       cgd 	case SIOCSIFDSTADDR:
    525    1.1       cgd 		if ((ifp->if_flags & IFF_POINTOPOINT) == 0)
    526    1.1       cgd 			return (EINVAL);
    527    1.1       cgd 		oldaddr = ia->ia_dstaddr;
    528  1.118    dyoung 		ia->ia_dstaddr = *satocsin(ifreq_getdstaddr(cmd, ifr));
    529  1.139    dyoung 		if ((error = if_addr_init(ifp, &ia->ia_ifa, false)) != 0) {
    530    1.1       cgd 			ia->ia_dstaddr = oldaddr;
    531  1.117    dyoung 			return error;
    532    1.1       cgd 		}
    533    1.1       cgd 		if (ia->ia_flags & IFA_ROUTE) {
    534   1.21   mycroft 			ia->ia_ifa.ifa_dstaddr = sintosa(&oldaddr);
    535  1.117    dyoung 			rtinit(&ia->ia_ifa, RTM_DELETE, RTF_HOST);
    536   1.21   mycroft 			ia->ia_ifa.ifa_dstaddr = sintosa(&ia->ia_dstaddr);
    537  1.117    dyoung 			rtinit(&ia->ia_ifa, RTM_ADD, RTF_HOST|RTF_UP);
    538    1.1       cgd 		}
    539    1.1       cgd 		break;
    540    1.1       cgd 
    541    1.1       cgd 	case SIOCSIFBRDADDR:
    542    1.1       cgd 		if ((ifp->if_flags & IFF_BROADCAST) == 0)
    543  1.117    dyoung 			return EINVAL;
    544  1.118    dyoung 		ia->ia_broadaddr = *satocsin(ifreq_getbroadaddr(cmd, ifr));
    545    1.1       cgd 		break;
    546    1.1       cgd 
    547    1.1       cgd 	case SIOCSIFADDR:
    548  1.169     ozaki 		if (!newifaddr) {
    549  1.169     ozaki 			LIST_REMOVE(ia, ia_hash);
    550  1.170     ozaki 			IN_ADDRHASH_WRITER_REMOVE(ia);
    551  1.169     ozaki 			need_reinsert = true;
    552  1.169     ozaki 		}
    553  1.118    dyoung 		error = in_ifinit(ifp, ia, satocsin(ifreq_getaddr(cmd, ifr)),
    554  1.152       roy 		    1, hostIsNew);
    555  1.169     ozaki 
    556  1.169     ozaki 		run_hook = true;
    557  1.100      yamt 		break;
    558    1.1       cgd 
    559    1.1       cgd 	case SIOCSIFNETMASK:
    560   1.97   mycroft 		in_ifscrub(ifp, ia);
    561  1.118    dyoung 		ia->ia_sockmask = *satocsin(ifreq_getaddr(cmd, ifr));
    562   1.97   mycroft 		ia->ia_subnetmask = ia->ia_sockmask.sin_addr.s_addr;
    563  1.169     ozaki 		if (!newifaddr) {
    564  1.169     ozaki 			LIST_REMOVE(ia, ia_hash);
    565  1.170     ozaki 			IN_ADDRHASH_WRITER_REMOVE(ia);
    566  1.169     ozaki 			need_reinsert = true;
    567  1.169     ozaki 		}
    568  1.152       roy 		error = in_ifinit(ifp, ia, NULL, 0, 0);
    569  1.100      yamt 		break;
    570    1.1       cgd 
    571    1.1       cgd 	case SIOCAIFADDR:
    572    1.1       cgd 		maskIsNew = 0;
    573    1.1       cgd 		if (ifra->ifra_mask.sin_len) {
    574  1.142       roy 			/* Only scrub if we control the prefix route,
    575  1.142       roy 			 * otherwise userland gets a bogus message */
    576  1.142       roy 			if ((ia->ia_flags & IFA_ROUTE))
    577  1.142       roy 				in_ifscrub(ifp, ia);
    578    1.1       cgd 			ia->ia_sockmask = ifra->ifra_mask;
    579   1.20   mycroft 			ia->ia_subnetmask = ia->ia_sockmask.sin_addr.s_addr;
    580    1.1       cgd 			maskIsNew = 1;
    581    1.1       cgd 		}
    582    1.1       cgd 		if ((ifp->if_flags & IFF_POINTOPOINT) &&
    583    1.1       cgd 		    (ifra->ifra_dstaddr.sin_family == AF_INET)) {
    584  1.142       roy 			/* Only scrub if we control the prefix route,
    585  1.142       roy 			 * otherwise userland gets a bogus message */
    586  1.142       roy 			if ((ia->ia_flags & IFA_ROUTE))
    587  1.142       roy 				in_ifscrub(ifp, ia);
    588    1.1       cgd 			ia->ia_dstaddr = ifra->ifra_dstaddr;
    589    1.1       cgd 			maskIsNew  = 1; /* We lie; but the effect's the same */
    590    1.1       cgd 		}
    591    1.1       cgd 		if (ifra->ifra_addr.sin_family == AF_INET &&
    592   1.56    itojun 		    (hostIsNew || maskIsNew)) {
    593  1.169     ozaki 			if (!newifaddr) {
    594  1.169     ozaki 				LIST_REMOVE(ia, ia_hash);
    595  1.170     ozaki 				IN_ADDRHASH_WRITER_REMOVE(ia);
    596  1.169     ozaki 				need_reinsert = true;
    597  1.169     ozaki 			}
    598  1.152       roy 			error = in_ifinit(ifp, ia, &ifra->ifra_addr, 0,
    599  1.152       roy 			    hostIsNew);
    600   1.56    itojun 		}
    601    1.1       cgd 		if ((ifp->if_flags & IFF_BROADCAST) &&
    602    1.1       cgd 		    (ifra->ifra_broadaddr.sin_family == AF_INET))
    603    1.1       cgd 			ia->ia_broadaddr = ifra->ifra_broadaddr;
    604  1.169     ozaki 		run_hook = true;
    605  1.100      yamt 		break;
    606   1.43  christos 
    607   1.43  christos 	case SIOCGIFALIAS:
    608   1.43  christos 		ifra->ifra_mask = ia->ia_sockmask;
    609   1.43  christos 		if ((ifp->if_flags & IFF_POINTOPOINT) &&
    610   1.43  christos 		    (ia->ia_dstaddr.sin_family == AF_INET))
    611   1.43  christos 			ifra->ifra_dstaddr = ia->ia_dstaddr;
    612   1.43  christos 		else if ((ifp->if_flags & IFF_BROADCAST) &&
    613   1.43  christos 		    (ia->ia_broadaddr.sin_family == AF_INET))
    614   1.43  christos 			ifra->ifra_broadaddr = ia->ia_broadaddr;
    615   1.43  christos 		else
    616  1.117    dyoung 			memset(&ifra->ifra_broadaddr, 0,
    617   1.48    itojun 			      sizeof(ifra->ifra_broadaddr));
    618  1.100      yamt 		break;
    619    1.1       cgd 
    620  1.152       roy 	case SIOCGIFAFLAG_IN:
    621  1.152       roy 		ifr->ifr_addrflags = ia->ia4_flags;
    622  1.152       roy 		break;
    623  1.152       roy 
    624    1.1       cgd 	case SIOCDIFADDR:
    625  1.121    dyoung 		in_purgeaddr(&ia->ia_ifa);
    626  1.169     ozaki 		run_hook = true;
    627    1.1       cgd 		break;
    628   1.19   mycroft 
    629   1.19   mycroft #ifdef MROUTING
    630   1.19   mycroft 	case SIOCGETVIFCNT:
    631   1.19   mycroft 	case SIOCGETSGCNT:
    632  1.100      yamt 		error = mrt_ioctl(so, cmd, data);
    633  1.100      yamt 		break;
    634   1.19   mycroft #endif /* MROUTING */
    635    1.1       cgd 
    636    1.1       cgd 	default:
    637  1.128    dyoung 		return ENOTTY;
    638  1.100      yamt 	}
    639  1.100      yamt 
    640  1.169     ozaki 	/*
    641  1.169     ozaki 	 * XXX insert regardless of error to make in_purgeaddr below work.
    642  1.169     ozaki 	 * Need to improve.
    643  1.169     ozaki 	 */
    644  1.169     ozaki 	if (newifaddr) {
    645  1.169     ozaki 		TAILQ_INSERT_TAIL(&in_ifaddrhead, ia, ia_list);
    646  1.169     ozaki 		ifaref(&ia->ia_ifa);
    647  1.169     ozaki 		ifa_insert(ifp, &ia->ia_ifa);
    648  1.171     ozaki 		IN_ADDRLIST_WRITER_INSERT_TAIL(ia);
    649  1.169     ozaki 		LIST_INSERT_HEAD(&IN_IFADDR_HASH(ia->ia_addr.sin_addr.s_addr),
    650  1.169     ozaki 		    ia, ia_hash);
    651  1.170     ozaki 		IN_ADDRHASH_WRITER_INSERT_HEAD(ia);
    652  1.169     ozaki 	} else if (need_reinsert) {
    653  1.169     ozaki 		LIST_INSERT_HEAD(&IN_IFADDR_HASH(ia->ia_addr.sin_addr.s_addr),
    654  1.169     ozaki 		    ia, ia_hash);
    655  1.170     ozaki 		IN_ADDRHASH_WRITER_INSERT_HEAD(ia);
    656  1.169     ozaki 	}
    657  1.169     ozaki 
    658  1.169     ozaki 	if (error == 0) {
    659  1.169     ozaki 		if (run_hook)
    660  1.169     ozaki 			(void)pfil_run_hooks(if_pfil,
    661  1.169     ozaki 			    (struct mbuf **)cmd, ifp, PFIL_IFADDR);
    662  1.169     ozaki 	} else if (newifaddr) {
    663  1.100      yamt 		KASSERT(ia != NULL);
    664  1.121    dyoung 		in_purgeaddr(&ia->ia_ifa);
    665    1.1       cgd 	}
    666  1.100      yamt 
    667  1.100      yamt 	return error;
    668   1.50   thorpej }
    669   1.50   thorpej 
    670  1.150       roy /* Add ownaddr as loopback rtentry. */
    671  1.150       roy static void
    672  1.150       roy in_ifaddlocal(struct ifaddr *ifa)
    673  1.150       roy {
    674  1.151       roy 	struct in_ifaddr *ia;
    675  1.151       roy 
    676  1.151       roy 	ia = (struct in_ifaddr *)ifa;
    677  1.151       roy 	if (ia->ia_addr.sin_addr.s_addr == INADDR_ANY ||
    678  1.151       roy 	    (ia->ia_ifp->if_flags & IFF_POINTOPOINT &&
    679  1.151       roy 	    in_hosteq(ia->ia_dstaddr.sin_addr, ia->ia_addr.sin_addr)))
    680  1.151       roy 	{
    681  1.151       roy 		rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
    682  1.151       roy 		return;
    683  1.151       roy 	}
    684  1.150       roy 
    685  1.150       roy 	rt_ifa_addlocal(ifa);
    686  1.150       roy }
    687  1.150       roy 
    688  1.168     ozaki /* Remove loopback entry of ownaddr */
    689  1.150       roy static void
    690  1.150       roy in_ifremlocal(struct ifaddr *ifa)
    691  1.150       roy {
    692  1.150       roy 	struct in_ifaddr *ia, *p;
    693  1.150       roy 	struct ifaddr *alt_ifa = NULL;
    694  1.150       roy 	int ia_count = 0;
    695  1.150       roy 
    696  1.150       roy 	ia = (struct in_ifaddr *)ifa;
    697  1.150       roy 	/* Delete the entry if exactly one ifaddr matches the
    698  1.150       roy 	 * address, ifa->ifa_addr. */
    699  1.171     ozaki 	IN_ADDRLIST_READER_FOREACH(p) {
    700  1.150       roy 		if (!in_hosteq(p->ia_addr.sin_addr, ia->ia_addr.sin_addr))
    701  1.150       roy 			continue;
    702  1.150       roy 		if (p->ia_ifp != ia->ia_ifp)
    703  1.150       roy 			alt_ifa = &p->ia_ifa;
    704  1.150       roy 		if (++ia_count > 1 && alt_ifa != NULL)
    705  1.150       roy 			break;
    706  1.150       roy 	}
    707  1.150       roy 
    708  1.150       roy 	if (ia_count == 0)
    709  1.150       roy 		return;
    710  1.150       roy 
    711  1.150       roy 	rt_ifa_remlocal(ifa, ia_count == 1 ? NULL : alt_ifa);
    712  1.150       roy }
    713  1.150       roy 
    714   1.50   thorpej void
    715  1.121    dyoung in_purgeaddr(struct ifaddr *ifa)
    716   1.50   thorpej {
    717  1.121    dyoung 	struct ifnet *ifp = ifa->ifa_ifp;
    718   1.50   thorpej 	struct in_ifaddr *ia = (void *) ifa;
    719   1.50   thorpej 
    720  1.154     joerg 	/* stop DAD processing */
    721  1.156       roy 	if (ia->ia_dad_stop != NULL)
    722  1.156       roy 		ia->ia_dad_stop(ifa);
    723  1.152       roy 
    724   1.50   thorpej 	in_ifscrub(ifp, ia);
    725  1.150       roy 	in_ifremlocal(ifa);
    726   1.50   thorpej 	LIST_REMOVE(ia, ia_hash);
    727  1.170     ozaki 	IN_ADDRHASH_WRITER_REMOVE(ia);
    728  1.170     ozaki 	IN_ADDRHASH_ENTRY_DESTROY(ia);
    729  1.122    dyoung 	ifa_remove(ifp, &ia->ia_ifa);
    730   1.93  jonathan 	TAILQ_REMOVE(&in_ifaddrhead, ia, ia_list);
    731  1.171     ozaki 	IN_ADDRLIST_WRITER_REMOVE(ia);
    732  1.171     ozaki 	IN_ADDRLIST_ENTRY_DESTROY(ia);
    733  1.171     ozaki 
    734   1.65     enami 	if (ia->ia_allhosts != NULL)
    735   1.65     enami 		in_delmulti(ia->ia_allhosts);
    736  1.148     rmind 	ifafree(&ia->ia_ifa);
    737   1.50   thorpej 	in_setmaxmtu();
    738   1.51   thorpej }
    739   1.51   thorpej 
    740   1.51   thorpej void
    741  1.111       tls in_purgeif(struct ifnet *ifp)		/* MUST be called at splsoftnet() */
    742   1.51   thorpej {
    743  1.121    dyoung 	if_purgeaddrs(ifp, AF_INET, in_purgeaddr);
    744  1.111       tls 	igmp_purgeif(ifp);		/* manipulates pools */
    745   1.89    itojun #ifdef MROUTING
    746   1.89    itojun 	ip_mrouter_detach(ifp);
    747   1.89    itojun #endif
    748   1.48    itojun }
    749   1.48    itojun 
    750   1.48    itojun /*
    751   1.48    itojun  * SIOC[GAD]LIFADDR.
    752   1.48    itojun  *	SIOCGLIFADDR: get first address. (???)
    753   1.48    itojun  *	SIOCGLIFADDR with IFLR_PREFIX:
    754   1.48    itojun  *		get first address that matches the specified prefix.
    755   1.48    itojun  *	SIOCALIFADDR: add the specified address.
    756   1.48    itojun  *	SIOCALIFADDR with IFLR_PREFIX:
    757   1.48    itojun  *		EINVAL since we can't deduce hostid part of the address.
    758   1.48    itojun  *	SIOCDLIFADDR: delete the specified address.
    759   1.48    itojun  *	SIOCDLIFADDR with IFLR_PREFIX:
    760   1.48    itojun  *		delete the first address that matches the specified prefix.
    761   1.48    itojun  * return values:
    762   1.48    itojun  *	EINVAL on invalid parameters
    763   1.48    itojun  *	EADDRNOTAVAIL on prefix match failed/specified address not found
    764   1.48    itojun  *	other values may be returned from in_ioctl()
    765   1.48    itojun  */
    766   1.48    itojun static int
    767  1.116  christos in_lifaddr_ioctl(struct socket *so, u_long cmd, void *data,
    768  1.147       rtr     struct ifnet *ifp)
    769   1.48    itojun {
    770   1.48    itojun 	struct if_laddrreq *iflr = (struct if_laddrreq *)data;
    771   1.48    itojun 	struct ifaddr *ifa;
    772   1.49    itojun 	struct sockaddr *sa;
    773   1.48    itojun 
    774   1.48    itojun 	/* sanity checks */
    775  1.119    dyoung 	if (data == NULL || ifp == NULL) {
    776   1.48    itojun 		panic("invalid argument to in_lifaddr_ioctl");
    777   1.48    itojun 		/*NOTRECHED*/
    778   1.48    itojun 	}
    779   1.48    itojun 
    780   1.48    itojun 	switch (cmd) {
    781   1.48    itojun 	case SIOCGLIFADDR:
    782   1.48    itojun 		/* address must be specified on GET with IFLR_PREFIX */
    783   1.48    itojun 		if ((iflr->flags & IFLR_PREFIX) == 0)
    784   1.48    itojun 			break;
    785   1.48    itojun 		/*FALLTHROUGH*/
    786   1.48    itojun 	case SIOCALIFADDR:
    787   1.48    itojun 	case SIOCDLIFADDR:
    788   1.48    itojun 		/* address must be specified on ADD and DELETE */
    789   1.49    itojun 		sa = (struct sockaddr *)&iflr->addr;
    790   1.49    itojun 		if (sa->sa_family != AF_INET)
    791   1.48    itojun 			return EINVAL;
    792   1.49    itojun 		if (sa->sa_len != sizeof(struct sockaddr_in))
    793   1.48    itojun 			return EINVAL;
    794   1.48    itojun 		/* XXX need improvement */
    795   1.49    itojun 		sa = (struct sockaddr *)&iflr->dstaddr;
    796  1.126    dyoung 		if (sa->sa_family != AF_UNSPEC && sa->sa_family != AF_INET)
    797   1.48    itojun 			return EINVAL;
    798  1.126    dyoung 		if (sa->sa_len != 0 && sa->sa_len != sizeof(struct sockaddr_in))
    799   1.48    itojun 			return EINVAL;
    800   1.48    itojun 		break;
    801   1.48    itojun 	default: /*shouldn't happen*/
    802   1.48    itojun #if 0
    803   1.48    itojun 		panic("invalid cmd to in_lifaddr_ioctl");
    804   1.48    itojun 		/*NOTREACHED*/
    805   1.48    itojun #else
    806   1.48    itojun 		return EOPNOTSUPP;
    807   1.48    itojun #endif
    808   1.48    itojun 	}
    809  1.124    dyoung 	if (sizeof(struct in_addr) * NBBY < iflr->prefixlen)
    810   1.48    itojun 		return EINVAL;
    811   1.48    itojun 
    812   1.48    itojun 	switch (cmd) {
    813   1.48    itojun 	case SIOCALIFADDR:
    814   1.48    itojun 	    {
    815   1.48    itojun 		struct in_aliasreq ifra;
    816   1.48    itojun 
    817   1.48    itojun 		if (iflr->flags & IFLR_PREFIX)
    818   1.48    itojun 			return EINVAL;
    819   1.48    itojun 
    820  1.110      elad 		/* copy args to in_aliasreq, perform ioctl(SIOCAIFADDR). */
    821  1.132    cegger 		memset(&ifra, 0, sizeof(ifra));
    822  1.134   tsutsui 		memcpy(ifra.ifra_name, iflr->iflr_name,
    823   1.48    itojun 			sizeof(ifra.ifra_name));
    824   1.48    itojun 
    825  1.134   tsutsui 		memcpy(&ifra.ifra_addr, &iflr->addr,
    826   1.49    itojun 			((struct sockaddr *)&iflr->addr)->sa_len);
    827   1.48    itojun 
    828   1.49    itojun 		if (((struct sockaddr *)&iflr->dstaddr)->sa_family) {	/*XXX*/
    829  1.134   tsutsui 			memcpy(&ifra.ifra_dstaddr, &iflr->dstaddr,
    830   1.49    itojun 				((struct sockaddr *)&iflr->dstaddr)->sa_len);
    831   1.48    itojun 		}
    832   1.48    itojun 
    833   1.48    itojun 		ifra.ifra_mask.sin_family = AF_INET;
    834   1.48    itojun 		ifra.ifra_mask.sin_len = sizeof(struct sockaddr_in);
    835   1.48    itojun 		in_len2mask(&ifra.ifra_mask.sin_addr, iflr->prefixlen);
    836   1.48    itojun 
    837  1.147       rtr 		return in_control(so, SIOCAIFADDR, &ifra, ifp);
    838   1.48    itojun 	    }
    839   1.48    itojun 	case SIOCGLIFADDR:
    840   1.48    itojun 	case SIOCDLIFADDR:
    841   1.48    itojun 	    {
    842   1.48    itojun 		struct in_ifaddr *ia;
    843   1.48    itojun 		struct in_addr mask, candidate, match;
    844   1.48    itojun 		struct sockaddr_in *sin;
    845   1.48    itojun 		int cmp;
    846   1.48    itojun 
    847  1.132    cegger 		memset(&mask, 0, sizeof(mask));
    848  1.132    cegger 		memset(&match, 0, sizeof(match));	/* XXX gcc */
    849   1.48    itojun 		if (iflr->flags & IFLR_PREFIX) {
    850   1.48    itojun 			/* lookup a prefix rather than address. */
    851   1.48    itojun 			in_len2mask(&mask, iflr->prefixlen);
    852   1.48    itojun 
    853   1.48    itojun 			sin = (struct sockaddr_in *)&iflr->addr;
    854   1.48    itojun 			match.s_addr = sin->sin_addr.s_addr;
    855   1.48    itojun 			match.s_addr &= mask.s_addr;
    856   1.48    itojun 
    857   1.48    itojun 			/* if you set extra bits, that's wrong */
    858   1.48    itojun 			if (match.s_addr != sin->sin_addr.s_addr)
    859   1.48    itojun 				return EINVAL;
    860   1.48    itojun 
    861   1.48    itojun 			cmp = 1;
    862   1.48    itojun 		} else {
    863   1.48    itojun 			if (cmd == SIOCGLIFADDR) {
    864   1.48    itojun 				/* on getting an address, take the 1st match */
    865   1.48    itojun 				cmp = 0;	/*XXX*/
    866   1.48    itojun 			} else {
    867   1.48    itojun 				/* on deleting an address, do exact match */
    868   1.48    itojun 				in_len2mask(&mask, 32);
    869   1.48    itojun 				sin = (struct sockaddr_in *)&iflr->addr;
    870   1.48    itojun 				match.s_addr = sin->sin_addr.s_addr;
    871   1.48    itojun 
    872   1.48    itojun 				cmp = 1;
    873   1.48    itojun 			}
    874   1.48    itojun 		}
    875   1.48    itojun 
    876  1.172     ozaki 		IFADDR_READER_FOREACH(ifa, ifp) {
    877   1.95    itojun 			if (ifa->ifa_addr->sa_family != AF_INET)
    878   1.48    itojun 				continue;
    879  1.119    dyoung 			if (cmp == 0)
    880   1.48    itojun 				break;
    881  1.143       gdt 			candidate.s_addr = ((struct sockaddr_in *)ifa->ifa_addr)->sin_addr.s_addr;
    882   1.48    itojun 			candidate.s_addr &= mask.s_addr;
    883   1.48    itojun 			if (candidate.s_addr == match.s_addr)
    884   1.48    itojun 				break;
    885   1.48    itojun 		}
    886  1.119    dyoung 		if (ifa == NULL)
    887   1.48    itojun 			return EADDRNOTAVAIL;
    888   1.48    itojun 		ia = (struct in_ifaddr *)ifa;
    889   1.48    itojun 
    890   1.48    itojun 		if (cmd == SIOCGLIFADDR) {
    891   1.48    itojun 			/* fill in the if_laddrreq structure */
    892  1.134   tsutsui 			memcpy(&iflr->addr, &ia->ia_addr, ia->ia_addr.sin_len);
    893   1.48    itojun 
    894   1.48    itojun 			if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
    895  1.134   tsutsui 				memcpy(&iflr->dstaddr, &ia->ia_dstaddr,
    896   1.48    itojun 					ia->ia_dstaddr.sin_len);
    897   1.48    itojun 			} else
    898  1.132    cegger 				memset(&iflr->dstaddr, 0, sizeof(iflr->dstaddr));
    899   1.48    itojun 
    900   1.48    itojun 			iflr->prefixlen =
    901   1.48    itojun 				in_mask2len(&ia->ia_sockmask.sin_addr);
    902   1.48    itojun 
    903   1.48    itojun 			iflr->flags = 0;	/*XXX*/
    904   1.48    itojun 
    905   1.48    itojun 			return 0;
    906   1.48    itojun 		} else {
    907   1.48    itojun 			struct in_aliasreq ifra;
    908   1.48    itojun 
    909  1.110      elad 			/* fill in_aliasreq and do ioctl(SIOCDIFADDR) */
    910  1.132    cegger 			memset(&ifra, 0, sizeof(ifra));
    911  1.134   tsutsui 			memcpy(ifra.ifra_name, iflr->iflr_name,
    912   1.48    itojun 				sizeof(ifra.ifra_name));
    913   1.48    itojun 
    914  1.134   tsutsui 			memcpy(&ifra.ifra_addr, &ia->ia_addr,
    915   1.48    itojun 				ia->ia_addr.sin_len);
    916   1.48    itojun 			if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
    917  1.134   tsutsui 				memcpy(&ifra.ifra_dstaddr, &ia->ia_dstaddr,
    918   1.48    itojun 					ia->ia_dstaddr.sin_len);
    919   1.48    itojun 			}
    920  1.134   tsutsui 			memcpy(&ifra.ifra_dstaddr, &ia->ia_sockmask,
    921   1.48    itojun 				ia->ia_sockmask.sin_len);
    922   1.48    itojun 
    923  1.147       rtr 			return in_control(so, SIOCDIFADDR, &ifra, ifp);
    924   1.48    itojun 		}
    925   1.48    itojun 	    }
    926   1.48    itojun 	}
    927   1.48    itojun 
    928   1.48    itojun 	return EOPNOTSUPP;	/*just for safety*/
    929    1.1       cgd }
    930    1.1       cgd 
    931    1.1       cgd /*
    932    1.1       cgd  * Delete any existing route for an interface.
    933    1.1       cgd  */
    934   1.12   mycroft void
    935  1.115  christos in_ifscrub(struct ifnet *ifp, struct in_ifaddr *ia)
    936    1.1       cgd {
    937    1.1       cgd 
    938   1.67    itojun 	in_scrubprefix(ia);
    939    1.1       cgd }
    940    1.1       cgd 
    941    1.1       cgd /*
    942    1.1       cgd  * Initialize an interface's internet address
    943    1.1       cgd  * and routing table entry.
    944    1.1       cgd  */
    945   1.12   mycroft int
    946  1.103     perry in_ifinit(struct ifnet *ifp, struct in_ifaddr *ia,
    947  1.152       roy     const struct sockaddr_in *sin, int scrub, int hostIsNew)
    948    1.1       cgd {
    949   1.97   mycroft 	u_int32_t i;
    950    1.1       cgd 	struct sockaddr_in oldaddr;
    951   1.66   thorpej 	int s = splnet(), flags = RTF_UP, error;
    952    1.1       cgd 
    953  1.118    dyoung 	if (sin == NULL)
    954   1.97   mycroft 		sin = &ia->ia_addr;
    955   1.97   mycroft 
    956   1.32   mycroft 	/*
    957   1.32   mycroft 	 * Set up new addresses.
    958   1.32   mycroft 	 */
    959    1.1       cgd 	oldaddr = ia->ia_addr;
    960    1.1       cgd 	ia->ia_addr = *sin;
    961   1.38       tls 
    962  1.156       roy 	/* Set IN_IFF flags early for if_addr_init() */
    963  1.152       roy 	if (hostIsNew && if_do_dad(ifp) && !in_nullhost(ia->ia_addr.sin_addr)) {
    964  1.152       roy 		if (ifp->if_link_state == LINK_STATE_DOWN)
    965  1.152       roy 			ia->ia4_flags |= IN_IFF_DETACHED;
    966  1.152       roy 		else
    967  1.156       roy 			/* State the intent to try DAD if possible */
    968  1.156       roy 			ia->ia4_flags |= IN_IFF_TRYTENTATIVE;
    969  1.152       roy 	}
    970  1.152       roy 
    971    1.1       cgd 	/*
    972    1.1       cgd 	 * Give the interface a chance to initialize
    973    1.1       cgd 	 * if this is its first address,
    974    1.1       cgd 	 * and to validate the address if necessary.
    975    1.1       cgd 	 */
    976  1.139    dyoung 	if ((error = if_addr_init(ifp, &ia->ia_ifa, true)) != 0)
    977   1.32   mycroft 		goto bad;
    978  1.156       roy 	/* Now clear the try tentative flag, it's job is done. */
    979  1.156       roy 	ia->ia4_flags &= ~IN_IFF_TRYTENTATIVE;
    980    1.1       cgd 	splx(s);
    981  1.156       roy 
    982    1.1       cgd 	if (scrub) {
    983   1.21   mycroft 		ia->ia_ifa.ifa_addr = sintosa(&oldaddr);
    984    1.1       cgd 		in_ifscrub(ifp, ia);
    985   1.21   mycroft 		ia->ia_ifa.ifa_addr = sintosa(&ia->ia_addr);
    986    1.1       cgd 	}
    987   1.35   thorpej 
    988  1.150       roy 	/* Add the local route to the address */
    989  1.150       roy 	in_ifaddlocal(&ia->ia_ifa);
    990  1.150       roy 
    991   1.97   mycroft 	i = ia->ia_addr.sin_addr.s_addr;
    992    1.1       cgd 	if (IN_CLASSA(i))
    993    1.1       cgd 		ia->ia_netmask = IN_CLASSA_NET;
    994    1.1       cgd 	else if (IN_CLASSB(i))
    995    1.1       cgd 		ia->ia_netmask = IN_CLASSB_NET;
    996    1.1       cgd 	else
    997    1.1       cgd 		ia->ia_netmask = IN_CLASSC_NET;
    998    1.1       cgd 	/*
    999   1.12   mycroft 	 * The subnet mask usually includes at least the standard network part,
   1000   1.12   mycroft 	 * but may may be smaller in the case of supernetting.
   1001   1.12   mycroft 	 * If it is set, we believe it.
   1002    1.1       cgd 	 */
   1003   1.12   mycroft 	if (ia->ia_subnetmask == 0) {
   1004   1.12   mycroft 		ia->ia_subnetmask = ia->ia_netmask;
   1005   1.20   mycroft 		ia->ia_sockmask.sin_addr.s_addr = ia->ia_subnetmask;
   1006   1.12   mycroft 	} else
   1007   1.12   mycroft 		ia->ia_netmask &= ia->ia_subnetmask;
   1008   1.35   thorpej 
   1009   1.12   mycroft 	ia->ia_net = i & ia->ia_netmask;
   1010    1.1       cgd 	ia->ia_subnet = i & ia->ia_subnetmask;
   1011   1.12   mycroft 	in_socktrim(&ia->ia_sockmask);
   1012   1.35   thorpej 	/* re-calculate the "in_maxmtu" value */
   1013   1.35   thorpej 	in_setmaxmtu();
   1014    1.1       cgd 	/*
   1015    1.1       cgd 	 * Add route for the network.
   1016    1.1       cgd 	 */
   1017   1.12   mycroft 	ia->ia_ifa.ifa_metric = ifp->if_metric;
   1018    1.1       cgd 	if (ifp->if_flags & IFF_BROADCAST) {
   1019   1.12   mycroft 		ia->ia_broadaddr.sin_addr.s_addr =
   1020   1.20   mycroft 			ia->ia_subnet | ~ia->ia_subnetmask;
   1021    1.1       cgd 		ia->ia_netbroadcast.s_addr =
   1022   1.20   mycroft 			ia->ia_net | ~ia->ia_netmask;
   1023    1.1       cgd 	} else if (ifp->if_flags & IFF_LOOPBACK) {
   1024   1.83      onoe 		ia->ia_dstaddr = ia->ia_addr;
   1025    1.1       cgd 		flags |= RTF_HOST;
   1026    1.1       cgd 	} else if (ifp->if_flags & IFF_POINTOPOINT) {
   1027    1.1       cgd 		if (ia->ia_dstaddr.sin_family != AF_INET)
   1028    1.1       cgd 			return (0);
   1029    1.1       cgd 		flags |= RTF_HOST;
   1030    1.1       cgd 	}
   1031   1.67    itojun 	error = in_addprefix(ia, flags);
   1032    1.5   hpeyerl 	/*
   1033    1.5   hpeyerl 	 * If the interface supports multicast, join the "all hosts"
   1034    1.5   hpeyerl 	 * multicast group on that interface.
   1035    1.5   hpeyerl 	 */
   1036   1.65     enami 	if ((ifp->if_flags & IFF_MULTICAST) != 0 && ia->ia_allhosts == NULL) {
   1037    1.5   hpeyerl 		struct in_addr addr;
   1038    1.5   hpeyerl 
   1039   1.20   mycroft 		addr.s_addr = INADDR_ALLHOSTS_GROUP;
   1040   1.65     enami 		ia->ia_allhosts = in_addmulti(&addr, ifp);
   1041    1.5   hpeyerl 	}
   1042  1.152       roy 
   1043  1.152       roy 	if (hostIsNew && if_do_dad(ifp) &&
   1044  1.152       roy 	    !in_nullhost(ia->ia_addr.sin_addr) &&
   1045  1.152       roy 	    ia->ia4_flags & IN_IFF_TENTATIVE)
   1046  1.156       roy 		ia->ia_dad_start((struct ifaddr *)ia);
   1047  1.152       roy 
   1048    1.1       cgd 	return (error);
   1049   1.32   mycroft bad:
   1050   1.32   mycroft 	splx(s);
   1051   1.32   mycroft 	ia->ia_addr = oldaddr;
   1052   1.32   mycroft 	return (error);
   1053    1.1       cgd }
   1054   1.67    itojun 
   1055   1.67    itojun #define rtinitflags(x) \
   1056   1.68    itojun 	((((x)->ia_ifp->if_flags & (IFF_LOOPBACK | IFF_POINTOPOINT)) != 0) \
   1057   1.68    itojun 	    ? RTF_HOST : 0)
   1058   1.67    itojun 
   1059   1.67    itojun /*
   1060   1.67    itojun  * add a route to prefix ("connected route" in cisco terminology).
   1061   1.67    itojun  * does nothing if there's some interface address with the same prefix already.
   1062   1.67    itojun  */
   1063   1.67    itojun static int
   1064  1.103     perry in_addprefix(struct in_ifaddr *target, int flags)
   1065   1.67    itojun {
   1066   1.67    itojun 	struct in_ifaddr *ia;
   1067   1.67    itojun 	struct in_addr prefix, mask, p;
   1068   1.67    itojun 	int error;
   1069   1.67    itojun 
   1070   1.67    itojun 	if ((flags & RTF_HOST) != 0)
   1071   1.67    itojun 		prefix = target->ia_dstaddr.sin_addr;
   1072   1.85    itojun 	else {
   1073   1.67    itojun 		prefix = target->ia_addr.sin_addr;
   1074   1.85    itojun 		mask = target->ia_sockmask.sin_addr;
   1075   1.85    itojun 		prefix.s_addr &= mask.s_addr;
   1076   1.85    itojun 	}
   1077   1.67    itojun 
   1078  1.171     ozaki 	IN_ADDRLIST_READER_FOREACH(ia) {
   1079   1.67    itojun 		if (rtinitflags(ia))
   1080   1.67    itojun 			p = ia->ia_dstaddr.sin_addr;
   1081   1.85    itojun 		else {
   1082   1.67    itojun 			p = ia->ia_addr.sin_addr;
   1083   1.85    itojun 			p.s_addr &= ia->ia_sockmask.sin_addr.s_addr;
   1084   1.85    itojun 		}
   1085   1.85    itojun 
   1086   1.67    itojun 		if (prefix.s_addr != p.s_addr)
   1087   1.67    itojun 			continue;
   1088   1.67    itojun 
   1089   1.67    itojun 		/*
   1090   1.67    itojun 		 * if we got a matching prefix route inserted by other
   1091   1.69    martin 		 * interface address, we don't need to bother
   1092  1.114    dyoung 		 *
   1093  1.114    dyoung 		 * XXX RADIX_MPATH implications here? -dyoung
   1094   1.67    itojun 		 */
   1095  1.150       roy 		if (ia->ia_flags & IFA_ROUTE)
   1096   1.67    itojun 			return 0;
   1097   1.67    itojun 	}
   1098   1.67    itojun 
   1099   1.67    itojun 	/*
   1100   1.67    itojun 	 * noone seem to have prefix route.  insert it.
   1101   1.67    itojun 	 */
   1102  1.119    dyoung 	error = rtinit(&target->ia_ifa, RTM_ADD, flags);
   1103  1.119    dyoung 	if (error == 0)
   1104   1.67    itojun 		target->ia_flags |= IFA_ROUTE;
   1105  1.130       roy 	else if (error == EEXIST) {
   1106  1.150       roy 		/*
   1107  1.130       roy 		 * the fact the route already exists is not an error.
   1108  1.150       roy 		 */
   1109  1.130       roy 		error = 0;
   1110  1.130       roy 	}
   1111   1.67    itojun 	return error;
   1112   1.67    itojun }
   1113   1.67    itojun 
   1114   1.67    itojun /*
   1115   1.67    itojun  * remove a route to prefix ("connected route" in cisco terminology).
   1116   1.67    itojun  * re-installs the route by using another interface address, if there's one
   1117   1.67    itojun  * with the same prefix (otherwise we lose the route mistakenly).
   1118   1.67    itojun  */
   1119   1.67    itojun static int
   1120  1.103     perry in_scrubprefix(struct in_ifaddr *target)
   1121   1.67    itojun {
   1122   1.67    itojun 	struct in_ifaddr *ia;
   1123   1.67    itojun 	struct in_addr prefix, mask, p;
   1124   1.67    itojun 	int error;
   1125   1.67    itojun 
   1126  1.142       roy 	/* If we don't have IFA_ROUTE we should still inform userland */
   1127  1.150       roy 	if ((target->ia_flags & IFA_ROUTE) == 0)
   1128   1.67    itojun 		return 0;
   1129   1.67    itojun 
   1130   1.67    itojun 	if (rtinitflags(target))
   1131   1.67    itojun 		prefix = target->ia_dstaddr.sin_addr;
   1132   1.85    itojun 	else {
   1133   1.67    itojun 		prefix = target->ia_addr.sin_addr;
   1134   1.85    itojun 		mask = target->ia_sockmask.sin_addr;
   1135   1.85    itojun 		prefix.s_addr &= mask.s_addr;
   1136   1.85    itojun 	}
   1137   1.67    itojun 
   1138  1.171     ozaki 	IN_ADDRLIST_READER_FOREACH(ia) {
   1139   1.67    itojun 		if (rtinitflags(ia))
   1140   1.67    itojun 			p = ia->ia_dstaddr.sin_addr;
   1141   1.85    itojun 		else {
   1142   1.67    itojun 			p = ia->ia_addr.sin_addr;
   1143   1.85    itojun 			p.s_addr &= ia->ia_sockmask.sin_addr.s_addr;
   1144   1.85    itojun 		}
   1145   1.85    itojun 
   1146   1.67    itojun 		if (prefix.s_addr != p.s_addr)
   1147   1.67    itojun 			continue;
   1148   1.67    itojun 
   1149   1.67    itojun 		/*
   1150   1.67    itojun 		 * if we got a matching prefix route, move IFA_ROUTE to him
   1151   1.67    itojun 		 */
   1152   1.67    itojun 		if ((ia->ia_flags & IFA_ROUTE) == 0) {
   1153  1.119    dyoung 			rtinit(&target->ia_ifa, RTM_DELETE,
   1154   1.67    itojun 			    rtinitflags(target));
   1155   1.67    itojun 			target->ia_flags &= ~IFA_ROUTE;
   1156   1.67    itojun 
   1157  1.119    dyoung 			error = rtinit(&ia->ia_ifa, RTM_ADD,
   1158   1.67    itojun 			    rtinitflags(ia) | RTF_UP);
   1159   1.67    itojun 			if (error == 0)
   1160   1.67    itojun 				ia->ia_flags |= IFA_ROUTE;
   1161   1.67    itojun 			return error;
   1162   1.67    itojun 		}
   1163   1.67    itojun 	}
   1164   1.67    itojun 
   1165   1.67    itojun 	/*
   1166   1.67    itojun 	 * noone seem to have prefix route.  remove it.
   1167   1.67    itojun 	 */
   1168  1.119    dyoung 	rtinit(&target->ia_ifa, RTM_DELETE, rtinitflags(target));
   1169   1.67    itojun 	target->ia_flags &= ~IFA_ROUTE;
   1170   1.67    itojun 	return 0;
   1171   1.67    itojun }
   1172   1.67    itojun 
   1173   1.67    itojun #undef rtinitflags
   1174    1.1       cgd 
   1175    1.1       cgd /*
   1176    1.1       cgd  * Return 1 if the address might be a local broadcast address.
   1177    1.1       cgd  */
   1178    1.8   mycroft int
   1179  1.103     perry in_broadcast(struct in_addr in, struct ifnet *ifp)
   1180    1.1       cgd {
   1181   1.59  augustss 	struct ifaddr *ifa;
   1182    1.1       cgd 
   1183   1.12   mycroft 	if (in.s_addr == INADDR_BROADCAST ||
   1184   1.32   mycroft 	    in_nullhost(in))
   1185   1.12   mycroft 		return 1;
   1186   1.12   mycroft 	if ((ifp->if_flags & IFF_BROADCAST) == 0)
   1187   1.12   mycroft 		return 0;
   1188    1.1       cgd 	/*
   1189    1.1       cgd 	 * Look through the list of addresses for a match
   1190    1.1       cgd 	 * with a broadcast address.
   1191    1.1       cgd 	 */
   1192   1.22   mycroft #define ia (ifatoia(ifa))
   1193  1.172     ozaki 	IFADDR_READER_FOREACH(ifa, ifp)
   1194   1.12   mycroft 		if (ifa->ifa_addr->sa_family == AF_INET &&
   1195   1.75    itojun 		    !in_hosteq(in, ia->ia_addr.sin_addr) &&
   1196   1.32   mycroft 		    (in_hosteq(in, ia->ia_broadaddr.sin_addr) ||
   1197   1.32   mycroft 		     in_hosteq(in, ia->ia_netbroadcast) ||
   1198   1.77    itojun 		     (hostzeroisbroadcast &&
   1199   1.47  sommerfe 		      /*
   1200   1.47  sommerfe 		       * Check for old-style (host 0) broadcast.
   1201   1.47  sommerfe 		       */
   1202   1.47  sommerfe 		      (in.s_addr == ia->ia_subnet ||
   1203   1.47  sommerfe 		       in.s_addr == ia->ia_net))))
   1204   1.47  sommerfe 			return 1;
   1205    1.1       cgd 	return (0);
   1206   1.12   mycroft #undef ia
   1207   1.64    itojun }
   1208   1.64    itojun 
   1209   1.64    itojun /*
   1210  1.152       roy  * perform DAD when interface becomes IFF_UP.
   1211  1.152       roy  */
   1212  1.152       roy void
   1213  1.152       roy in_if_link_up(struct ifnet *ifp)
   1214  1.152       roy {
   1215  1.152       roy 	struct ifaddr *ifa;
   1216  1.152       roy 	struct in_ifaddr *ia;
   1217  1.152       roy 
   1218  1.152       roy 	/* Ensure it's sane to run DAD */
   1219  1.152       roy 	if (ifp->if_link_state == LINK_STATE_DOWN)
   1220  1.152       roy 		return;
   1221  1.152       roy 	if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
   1222  1.152       roy 		return;
   1223  1.152       roy 
   1224  1.172     ozaki 	IFADDR_READER_FOREACH(ifa, ifp) {
   1225  1.152       roy 		if (ifa->ifa_addr->sa_family != AF_INET)
   1226  1.152       roy 			continue;
   1227  1.152       roy 		ia = (struct in_ifaddr *)ifa;
   1228  1.152       roy 
   1229  1.152       roy 		/* If detached then mark as tentative */
   1230  1.152       roy 		if (ia->ia4_flags & IN_IFF_DETACHED) {
   1231  1.152       roy 			ia->ia4_flags &= ~IN_IFF_DETACHED;
   1232  1.156       roy 			if (if_do_dad(ifp) && ia->ia_dad_start != NULL)
   1233  1.152       roy 				ia->ia4_flags |= IN_IFF_TENTATIVE;
   1234  1.156       roy 			else if ((ia->ia4_flags & IN_IFF_TENTATIVE) == 0)
   1235  1.152       roy 				rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
   1236  1.152       roy 		}
   1237  1.152       roy 
   1238  1.152       roy 		if (ia->ia4_flags & IN_IFF_TENTATIVE) {
   1239  1.152       roy 			/* Clear the duplicated flag as we're starting DAD. */
   1240  1.152       roy 			ia->ia4_flags &= ~IN_IFF_DUPLICATED;
   1241  1.156       roy 			ia->ia_dad_start(ifa);
   1242  1.152       roy 		}
   1243  1.152       roy 	}
   1244  1.152       roy }
   1245  1.152       roy 
   1246  1.152       roy void
   1247  1.152       roy in_if_up(struct ifnet *ifp)
   1248  1.152       roy {
   1249  1.152       roy 
   1250  1.152       roy 	/* interface may not support link state, so bring it up also */
   1251  1.152       roy 	in_if_link_up(ifp);
   1252  1.152       roy }
   1253  1.152       roy 
   1254  1.152       roy /*
   1255  1.152       roy  * Mark all addresses as detached.
   1256  1.152       roy  */
   1257  1.152       roy void
   1258  1.152       roy in_if_link_down(struct ifnet *ifp)
   1259  1.152       roy {
   1260  1.152       roy 	struct ifaddr *ifa;
   1261  1.152       roy 	struct in_ifaddr *ia;
   1262  1.152       roy 
   1263  1.172     ozaki 	IFADDR_READER_FOREACH(ifa, ifp) {
   1264  1.152       roy 		if (ifa->ifa_addr->sa_family != AF_INET)
   1265  1.152       roy 			continue;
   1266  1.152       roy 		ia = (struct in_ifaddr *)ifa;
   1267  1.152       roy 
   1268  1.152       roy 		/* Stop DAD processing */
   1269  1.156       roy 		if (ia->ia_dad_stop != NULL)
   1270  1.156       roy 			ia->ia_dad_stop(ifa);
   1271  1.152       roy 
   1272  1.152       roy 		/*
   1273  1.152       roy 		 * Mark the address as detached.
   1274  1.152       roy 		 */
   1275  1.152       roy 		if (!(ia->ia4_flags & IN_IFF_DETACHED)) {
   1276  1.152       roy 			ia->ia4_flags |= IN_IFF_DETACHED;
   1277  1.152       roy 			ia->ia4_flags &=
   1278  1.152       roy 			    ~(IN_IFF_TENTATIVE | IN_IFF_DUPLICATED);
   1279  1.152       roy 			rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
   1280  1.152       roy 		}
   1281  1.152       roy 	}
   1282  1.152       roy }
   1283  1.152       roy 
   1284  1.152       roy void
   1285  1.152       roy in_if_down(struct ifnet *ifp)
   1286  1.152       roy {
   1287  1.152       roy 
   1288  1.152       roy 	in_if_link_down(ifp);
   1289  1.152       roy }
   1290  1.152       roy 
   1291  1.152       roy void
   1292  1.152       roy in_if_link_state_change(struct ifnet *ifp, int link_state)
   1293  1.152       roy {
   1294  1.152       roy 
   1295  1.152       roy 	switch (link_state) {
   1296  1.152       roy 	case LINK_STATE_DOWN:
   1297  1.152       roy 		in_if_link_down(ifp);
   1298  1.152       roy 		break;
   1299  1.152       roy 	case LINK_STATE_UP:
   1300  1.152       roy 		in_if_link_up(ifp);
   1301  1.152       roy 		break;
   1302  1.152       roy 	}
   1303  1.152       roy }
   1304  1.152       roy 
   1305  1.152       roy /*
   1306  1.146     rmind  * in_lookup_multi: look up the in_multi record for a given IP
   1307  1.146     rmind  * multicast address on a given interface.  If no matching record is
   1308  1.146     rmind  * found, return NULL.
   1309  1.146     rmind  */
   1310  1.146     rmind struct in_multi *
   1311  1.146     rmind in_lookup_multi(struct in_addr addr, ifnet_t *ifp)
   1312  1.146     rmind {
   1313  1.146     rmind 	struct in_multi *inm;
   1314  1.146     rmind 
   1315  1.146     rmind 	KASSERT(rw_lock_held(&in_multilock));
   1316  1.146     rmind 
   1317  1.146     rmind 	LIST_FOREACH(inm, &IN_MULTI_HASH(addr.s_addr, ifp), inm_list) {
   1318  1.146     rmind 		if (in_hosteq(inm->inm_addr, addr) && inm->inm_ifp == ifp)
   1319  1.146     rmind 			break;
   1320  1.146     rmind 	}
   1321  1.146     rmind 	return inm;
   1322  1.146     rmind }
   1323  1.146     rmind 
   1324  1.146     rmind /*
   1325  1.146     rmind  * in_multi_group: check whether the address belongs to an IP multicast
   1326  1.146     rmind  * group we are joined on this interface.  Returns true or false.
   1327  1.146     rmind  */
   1328  1.146     rmind bool
   1329  1.146     rmind in_multi_group(struct in_addr addr, ifnet_t *ifp, int flags)
   1330  1.146     rmind {
   1331  1.146     rmind 	bool ingroup;
   1332  1.146     rmind 
   1333  1.146     rmind 	if (__predict_true(flags & IP_IGMP_MCAST) == 0) {
   1334  1.146     rmind 		rw_enter(&in_multilock, RW_READER);
   1335  1.146     rmind 		ingroup = in_lookup_multi(addr, ifp) != NULL;
   1336  1.146     rmind 		rw_exit(&in_multilock);
   1337  1.146     rmind 	} else {
   1338  1.146     rmind 		/* XXX Recursive call from ip_output(). */
   1339  1.146     rmind 		KASSERT(rw_lock_held(&in_multilock));
   1340  1.146     rmind 		ingroup = in_lookup_multi(addr, ifp) != NULL;
   1341  1.146     rmind 	}
   1342  1.146     rmind 	return ingroup;
   1343  1.146     rmind }
   1344  1.146     rmind 
   1345  1.146     rmind /*
   1346    1.5   hpeyerl  * Add an address to the list of IP multicast addresses for a given interface.
   1347    1.5   hpeyerl  */
   1348    1.5   hpeyerl struct in_multi *
   1349  1.146     rmind in_addmulti(struct in_addr *ap, ifnet_t *ifp)
   1350    1.5   hpeyerl {
   1351  1.118    dyoung 	struct sockaddr_in sin;
   1352   1.59  augustss 	struct in_multi *inm;
   1353    1.5   hpeyerl 
   1354    1.5   hpeyerl 	/*
   1355    1.5   hpeyerl 	 * See if address already in list.
   1356    1.5   hpeyerl 	 */
   1357  1.146     rmind 	rw_enter(&in_multilock, RW_WRITER);
   1358  1.146     rmind 	inm = in_lookup_multi(*ap, ifp);
   1359    1.5   hpeyerl 	if (inm != NULL) {
   1360    1.5   hpeyerl 		/*
   1361    1.5   hpeyerl 		 * Found it; just increment the reference count.
   1362    1.5   hpeyerl 		 */
   1363  1.146     rmind 		inm->inm_refcount++;
   1364  1.146     rmind 		rw_exit(&in_multilock);
   1365  1.146     rmind 		return inm;
   1366  1.146     rmind 	}
   1367  1.146     rmind 
   1368  1.146     rmind 	/*
   1369  1.146     rmind 	 * New address; allocate a new multicast record.
   1370  1.146     rmind 	 */
   1371  1.146     rmind 	inm = pool_get(&inmulti_pool, PR_NOWAIT);
   1372  1.146     rmind 	if (inm == NULL) {
   1373  1.146     rmind 		rw_exit(&in_multilock);
   1374  1.146     rmind 		return NULL;
   1375  1.146     rmind 	}
   1376  1.146     rmind 	inm->inm_addr = *ap;
   1377  1.146     rmind 	inm->inm_ifp = ifp;
   1378  1.146     rmind 	inm->inm_refcount = 1;
   1379  1.146     rmind 
   1380  1.146     rmind 	/*
   1381  1.146     rmind 	 * Ask the network driver to update its multicast reception
   1382  1.146     rmind 	 * filter appropriately for the new address.
   1383  1.146     rmind 	 */
   1384  1.146     rmind 	sockaddr_in_init(&sin, ap, 0);
   1385  1.146     rmind 	if (if_mcast_op(ifp, SIOCADDMULTI, sintosa(&sin)) != 0) {
   1386  1.146     rmind 		rw_exit(&in_multilock);
   1387  1.146     rmind 		pool_put(&inmulti_pool, inm);
   1388  1.146     rmind 		return NULL;
   1389  1.146     rmind 	}
   1390  1.146     rmind 
   1391  1.146     rmind 	/*
   1392  1.146     rmind 	 * Let IGMP know that we have joined a new IP multicast group.
   1393  1.146     rmind 	 */
   1394  1.146     rmind 	if (igmp_joingroup(inm) != 0) {
   1395  1.146     rmind 		rw_exit(&in_multilock);
   1396  1.146     rmind 		pool_put(&inmulti_pool, inm);
   1397  1.146     rmind 		return NULL;
   1398    1.5   hpeyerl 	}
   1399  1.146     rmind 	LIST_INSERT_HEAD(
   1400  1.146     rmind 	    &IN_MULTI_HASH(inm->inm_addr.s_addr, ifp),
   1401  1.146     rmind 	    inm, inm_list);
   1402  1.146     rmind 	in_multientries++;
   1403  1.146     rmind 	rw_exit(&in_multilock);
   1404  1.146     rmind 
   1405  1.146     rmind 	return inm;
   1406    1.5   hpeyerl }
   1407    1.5   hpeyerl 
   1408    1.5   hpeyerl /*
   1409    1.5   hpeyerl  * Delete a multicast address record.
   1410    1.5   hpeyerl  */
   1411   1.26  christos void
   1412  1.103     perry in_delmulti(struct in_multi *inm)
   1413    1.5   hpeyerl {
   1414  1.118    dyoung 	struct sockaddr_in sin;
   1415    1.5   hpeyerl 
   1416  1.146     rmind 	rw_enter(&in_multilock, RW_WRITER);
   1417  1.146     rmind 	if (--inm->inm_refcount > 0) {
   1418  1.146     rmind 		rw_exit(&in_multilock);
   1419  1.146     rmind 		return;
   1420  1.146     rmind 	}
   1421  1.146     rmind 
   1422  1.146     rmind 	/*
   1423  1.146     rmind 	 * No remaining claims to this record; let IGMP know that
   1424  1.146     rmind 	 * we are leaving the multicast group.
   1425  1.146     rmind 	 */
   1426  1.146     rmind 	igmp_leavegroup(inm);
   1427  1.146     rmind 
   1428  1.146     rmind 	/*
   1429  1.146     rmind 	 * Notify the network driver to update its multicast reception
   1430  1.146     rmind 	 * filter.
   1431  1.146     rmind 	 */
   1432  1.146     rmind 	sockaddr_in_init(&sin, &inm->inm_addr, 0);
   1433  1.146     rmind 	if_mcast_op(inm->inm_ifp, SIOCDELMULTI, sintosa(&sin));
   1434  1.146     rmind 
   1435  1.146     rmind 	/*
   1436  1.146     rmind 	 * Unlink from list.
   1437  1.146     rmind 	 */
   1438  1.146     rmind 	LIST_REMOVE(inm, inm_list);
   1439  1.146     rmind 	in_multientries--;
   1440  1.146     rmind 	rw_exit(&in_multilock);
   1441  1.146     rmind 
   1442  1.146     rmind 	pool_put(&inmulti_pool, inm);
   1443  1.146     rmind }
   1444  1.146     rmind 
   1445  1.146     rmind /*
   1446  1.146     rmind  * in_next_multi: step through all of the in_multi records, one at a time.
   1447  1.146     rmind  * The current position is remembered in "step", which the caller must
   1448  1.146     rmind  * provide.  in_first_multi(), below, must be called to initialize "step"
   1449  1.146     rmind  * and get the first record.  Both macros return a NULL "inm" when there
   1450  1.146     rmind  * are no remaining records.
   1451  1.146     rmind  */
   1452  1.146     rmind struct in_multi *
   1453  1.146     rmind in_next_multi(struct in_multistep *step)
   1454  1.146     rmind {
   1455  1.146     rmind 	struct in_multi *inm;
   1456  1.146     rmind 
   1457  1.146     rmind 	KASSERT(rw_lock_held(&in_multilock));
   1458  1.146     rmind 
   1459  1.146     rmind 	while (step->i_inm == NULL && step->i_n < IN_MULTI_HASH_SIZE) {
   1460  1.146     rmind 		step->i_inm = LIST_FIRST(&in_multihashtbl[++step->i_n]);
   1461  1.146     rmind 	}
   1462  1.146     rmind 	if ((inm = step->i_inm) != NULL) {
   1463  1.146     rmind 		step->i_inm = LIST_NEXT(inm, inm_list);
   1464    1.5   hpeyerl 	}
   1465  1.146     rmind 	return inm;
   1466  1.146     rmind }
   1467  1.146     rmind 
   1468  1.146     rmind struct in_multi *
   1469  1.146     rmind in_first_multi(struct in_multistep *step)
   1470  1.146     rmind {
   1471  1.146     rmind 	KASSERT(rw_lock_held(&in_multilock));
   1472  1.146     rmind 
   1473  1.146     rmind 	step->i_n = 0;
   1474  1.146     rmind 	step->i_inm = LIST_FIRST(&in_multihashtbl[0]);
   1475  1.146     rmind 	return in_next_multi(step);
   1476  1.146     rmind }
   1477  1.146     rmind 
   1478  1.146     rmind void
   1479  1.146     rmind in_multi_lock(int op)
   1480  1.146     rmind {
   1481  1.146     rmind 	rw_enter(&in_multilock, op);
   1482  1.146     rmind }
   1483  1.146     rmind 
   1484  1.146     rmind void
   1485  1.146     rmind in_multi_unlock(void)
   1486  1.146     rmind {
   1487  1.146     rmind 	rw_exit(&in_multilock);
   1488  1.146     rmind }
   1489  1.146     rmind 
   1490  1.146     rmind int
   1491  1.146     rmind in_multi_lock_held(void)
   1492  1.146     rmind {
   1493  1.146     rmind 	return rw_lock_held(&in_multilock);
   1494    1.5   hpeyerl }
   1495  1.145     rmind 
   1496  1.145     rmind struct sockaddr_in *
   1497  1.145     rmind in_selectsrc(struct sockaddr_in *sin, struct route *ro,
   1498  1.145     rmind     int soopts, struct ip_moptions *mopts, int *errorp)
   1499  1.145     rmind {
   1500  1.145     rmind 	struct rtentry *rt = NULL;
   1501  1.145     rmind 	struct in_ifaddr *ia = NULL;
   1502  1.145     rmind 
   1503  1.145     rmind 	/*
   1504  1.145     rmind          * If route is known or can be allocated now, take the
   1505  1.145     rmind          * source address from the interface.  Otherwise, punt.
   1506  1.145     rmind 	 */
   1507  1.145     rmind 	if ((soopts & SO_DONTROUTE) != 0)
   1508  1.145     rmind 		rtcache_free(ro);
   1509  1.145     rmind 	else {
   1510  1.145     rmind 		union {
   1511  1.145     rmind 			struct sockaddr		dst;
   1512  1.145     rmind 			struct sockaddr_in	dst4;
   1513  1.145     rmind 		} u;
   1514  1.145     rmind 
   1515  1.145     rmind 		sockaddr_in_init(&u.dst4, &sin->sin_addr, 0);
   1516  1.145     rmind 		rt = rtcache_lookup(ro, &u.dst);
   1517  1.145     rmind 	}
   1518  1.145     rmind 	/*
   1519  1.145     rmind 	 * If we found a route, use the address
   1520  1.145     rmind 	 * corresponding to the outgoing interface
   1521  1.145     rmind 	 * unless it is the loopback (in case a route
   1522  1.145     rmind 	 * to our address on another net goes to loopback).
   1523  1.145     rmind 	 *
   1524  1.145     rmind 	 * XXX Is this still true?  Do we care?
   1525  1.145     rmind 	 */
   1526  1.145     rmind 	if (rt != NULL && (rt->rt_ifp->if_flags & IFF_LOOPBACK) == 0)
   1527  1.145     rmind 		ia = ifatoia(rt->rt_ifa);
   1528  1.145     rmind 	if (ia == NULL) {
   1529  1.145     rmind 		u_int16_t fport = sin->sin_port;
   1530  1.145     rmind 
   1531  1.145     rmind 		sin->sin_port = 0;
   1532  1.145     rmind 		ia = ifatoia(ifa_ifwithladdr(sintosa(sin)));
   1533  1.145     rmind 		sin->sin_port = fport;
   1534  1.145     rmind 		if (ia == NULL) {
   1535  1.145     rmind 			/* Find 1st non-loopback AF_INET address */
   1536  1.171     ozaki 			IN_ADDRLIST_READER_FOREACH(ia) {
   1537  1.145     rmind 				if (!(ia->ia_ifp->if_flags & IFF_LOOPBACK))
   1538  1.145     rmind 					break;
   1539  1.145     rmind 			}
   1540  1.145     rmind 		}
   1541  1.145     rmind 		if (ia == NULL) {
   1542  1.145     rmind 			*errorp = EADDRNOTAVAIL;
   1543  1.145     rmind 			return NULL;
   1544  1.145     rmind 		}
   1545  1.145     rmind 	}
   1546  1.145     rmind 	/*
   1547  1.145     rmind 	 * If the destination address is multicast and an outgoing
   1548  1.145     rmind 	 * interface has been set as a multicast option, use the
   1549  1.145     rmind 	 * address of that interface as our source address.
   1550  1.145     rmind 	 */
   1551  1.145     rmind 	if (IN_MULTICAST(sin->sin_addr.s_addr) && mopts != NULL) {
   1552  1.145     rmind 		struct ip_moptions *imo;
   1553  1.145     rmind 
   1554  1.145     rmind 		imo = mopts;
   1555  1.167     ozaki 		if (imo->imo_multicast_if_index != 0) {
   1556  1.167     ozaki 			struct ifnet *ifp;
   1557  1.167     ozaki 			int s = pserialize_read_enter();
   1558  1.167     ozaki 
   1559  1.167     ozaki 			ifp = if_byindex(imo->imo_multicast_if_index);
   1560  1.167     ozaki 			if (ifp != NULL) {
   1561  1.173     ozaki 				ia = in_get_ia_from_ifp(ifp);		/* XXX */
   1562  1.167     ozaki 			} else
   1563  1.167     ozaki 				ia = NULL;
   1564  1.167     ozaki 			if (ia == NULL || ia->ia4_flags & IN_IFF_NOTREADY) {
   1565  1.167     ozaki 				pserialize_read_exit(s);
   1566  1.145     rmind 				*errorp = EADDRNOTAVAIL;
   1567  1.145     rmind 				return NULL;
   1568  1.145     rmind 			}
   1569  1.167     ozaki 			pserialize_read_exit(s);
   1570  1.145     rmind 		}
   1571  1.145     rmind 	}
   1572  1.145     rmind 	if (ia->ia_ifa.ifa_getifa != NULL) {
   1573  1.145     rmind 		ia = ifatoia((*ia->ia_ifa.ifa_getifa)(&ia->ia_ifa,
   1574  1.145     rmind 		                                      sintosa(sin)));
   1575  1.152       roy 		if (ia == NULL) {
   1576  1.152       roy 			*errorp = EADDRNOTAVAIL;
   1577  1.152       roy 			return NULL;
   1578  1.152       roy 		}
   1579  1.145     rmind 	}
   1580  1.145     rmind #ifdef GETIFA_DEBUG
   1581  1.145     rmind 	else
   1582  1.145     rmind 		printf("%s: missing ifa_getifa\n", __func__);
   1583  1.145     rmind #endif
   1584  1.145     rmind 	return satosin(&ia->ia_addr);
   1585  1.145     rmind }
   1586  1.145     rmind 
   1587  1.163     ozaki #if NARP > 0
   1588  1.161     ozaki 
   1589  1.158     ozaki struct in_llentry {
   1590  1.158     ozaki 	struct llentry		base;
   1591  1.158     ozaki };
   1592  1.158     ozaki 
   1593  1.158     ozaki #define	IN_LLTBL_DEFAULT_HSIZE	32
   1594  1.158     ozaki #define	IN_LLTBL_HASH(k, h) \
   1595  1.158     ozaki 	(((((((k >> 8) ^ k) >> 8) ^ k) >> 8) ^ k) & ((h) - 1))
   1596  1.158     ozaki 
   1597  1.158     ozaki /*
   1598  1.158     ozaki  * Do actual deallocation of @lle.
   1599  1.158     ozaki  * Called by LLE_FREE_LOCKED when number of references
   1600  1.158     ozaki  * drops to zero.
   1601  1.158     ozaki  */
   1602  1.158     ozaki static void
   1603  1.158     ozaki in_lltable_destroy_lle(struct llentry *lle)
   1604  1.158     ozaki {
   1605  1.158     ozaki 
   1606  1.158     ozaki 	LLE_WUNLOCK(lle);
   1607  1.158     ozaki 	LLE_LOCK_DESTROY(lle);
   1608  1.158     ozaki 	kmem_intr_free(lle, sizeof(*lle));
   1609  1.158     ozaki }
   1610  1.158     ozaki 
   1611  1.158     ozaki static struct llentry *
   1612  1.158     ozaki in_lltable_new(struct in_addr addr4, u_int flags)
   1613  1.158     ozaki {
   1614  1.158     ozaki 	struct in_llentry *lle;
   1615  1.158     ozaki 
   1616  1.158     ozaki 	lle = kmem_intr_zalloc(sizeof(*lle), KM_NOSLEEP);
   1617  1.158     ozaki 	if (lle == NULL)		/* NB: caller generates msg */
   1618  1.158     ozaki 		return NULL;
   1619  1.158     ozaki 
   1620  1.158     ozaki 	/*
   1621  1.158     ozaki 	 * For IPv4 this will trigger "arpresolve" to generate
   1622  1.158     ozaki 	 * an ARP request.
   1623  1.158     ozaki 	 */
   1624  1.158     ozaki 	lle->base.la_expire = time_uptime; /* mark expired */
   1625  1.158     ozaki 	lle->base.r_l3addr.addr4 = addr4;
   1626  1.158     ozaki 	lle->base.lle_refcnt = 1;
   1627  1.158     ozaki 	lle->base.lle_free = in_lltable_destroy_lle;
   1628  1.158     ozaki 	LLE_LOCK_INIT(&lle->base);
   1629  1.159     ozaki 	callout_init(&lle->base.la_timer, CALLOUT_MPSAFE);
   1630  1.158     ozaki 
   1631  1.158     ozaki 	return (&lle->base);
   1632  1.158     ozaki }
   1633  1.158     ozaki 
   1634  1.158     ozaki #define IN_ARE_MASKED_ADDR_EQUAL(d, a, m)	(			\
   1635  1.158     ozaki 	    (((ntohl((d).s_addr) ^ (a)->sin_addr.s_addr) & (m)->sin_addr.s_addr)) == 0 )
   1636  1.158     ozaki 
   1637  1.158     ozaki static int
   1638  1.158     ozaki in_lltable_match_prefix(const struct sockaddr *prefix,
   1639  1.158     ozaki     const struct sockaddr *mask, u_int flags, struct llentry *lle)
   1640  1.158     ozaki {
   1641  1.158     ozaki 	const struct sockaddr_in *pfx = (const struct sockaddr_in *)prefix;
   1642  1.158     ozaki 	const struct sockaddr_in *msk = (const struct sockaddr_in *)mask;
   1643  1.158     ozaki 
   1644  1.158     ozaki 	/*
   1645  1.158     ozaki 	 * (flags & LLE_STATIC) means deleting all entries
   1646  1.158     ozaki 	 * including static ARP entries.
   1647  1.158     ozaki 	 */
   1648  1.158     ozaki 	if (IN_ARE_MASKED_ADDR_EQUAL(lle->r_l3addr.addr4, pfx, msk) &&
   1649  1.158     ozaki 	    ((flags & LLE_STATIC) || !(lle->la_flags & LLE_STATIC)))
   1650  1.158     ozaki 		return (1);
   1651  1.158     ozaki 
   1652  1.158     ozaki 	return (0);
   1653  1.158     ozaki }
   1654  1.158     ozaki 
   1655  1.158     ozaki static void
   1656  1.158     ozaki in_lltable_free_entry(struct lltable *llt, struct llentry *lle)
   1657  1.158     ozaki {
   1658  1.160     ozaki 	struct ifnet *ifp __diagused;
   1659  1.158     ozaki 	size_t pkts_dropped;
   1660  1.158     ozaki 
   1661  1.158     ozaki 	LLE_WLOCK_ASSERT(lle);
   1662  1.158     ozaki 	KASSERT(llt != NULL);
   1663  1.158     ozaki 
   1664  1.158     ozaki 	/* Unlink entry from table if not already */
   1665  1.158     ozaki 	if ((lle->la_flags & LLE_LINKED) != 0) {
   1666  1.158     ozaki 		ifp = llt->llt_ifp;
   1667  1.158     ozaki 		IF_AFDATA_WLOCK_ASSERT(ifp);
   1668  1.158     ozaki 		lltable_unlink_entry(llt, lle);
   1669  1.158     ozaki 	}
   1670  1.158     ozaki 
   1671  1.158     ozaki 	/* cancel timer */
   1672  1.164     ozaki 	if (callout_halt(&lle->lle_timer, &lle->lle_lock))
   1673  1.158     ozaki 		LLE_REMREF(lle);
   1674  1.158     ozaki 
   1675  1.158     ozaki 	/* Drop hold queue */
   1676  1.158     ozaki 	pkts_dropped = llentry_free(lle);
   1677  1.159     ozaki 	arp_stat_add(ARP_STAT_DFRDROPPED, (uint64_t)pkts_dropped);
   1678  1.158     ozaki }
   1679  1.158     ozaki 
   1680  1.158     ozaki static int
   1681  1.158     ozaki in_lltable_rtcheck(struct ifnet *ifp, u_int flags, const struct sockaddr *l3addr)
   1682  1.158     ozaki {
   1683  1.158     ozaki 	struct rtentry *rt;
   1684  1.158     ozaki 	int error = EINVAL;
   1685  1.158     ozaki 
   1686  1.158     ozaki 	KASSERTMSG(l3addr->sa_family == AF_INET,
   1687  1.158     ozaki 	    "sin_family %d", l3addr->sa_family);
   1688  1.158     ozaki 
   1689  1.158     ozaki 	rt = rtalloc1(l3addr, 0);
   1690  1.158     ozaki 	if (rt == NULL)
   1691  1.158     ozaki 		return error;
   1692  1.158     ozaki 
   1693  1.158     ozaki 	/*
   1694  1.158     ozaki 	 * If the gateway for an existing host route matches the target L3
   1695  1.158     ozaki 	 * address, which is a special route inserted by some implementation
   1696  1.158     ozaki 	 * such as MANET, and the interface is of the correct type, then
   1697  1.158     ozaki 	 * allow for ARP to proceed.
   1698  1.158     ozaki 	 */
   1699  1.158     ozaki 	if (rt->rt_flags & RTF_GATEWAY) {
   1700  1.158     ozaki 		if (!(rt->rt_flags & RTF_HOST) || !rt->rt_ifp ||
   1701  1.158     ozaki 		    rt->rt_ifp->if_type != IFT_ETHER ||
   1702  1.158     ozaki #ifdef __FreeBSD__
   1703  1.158     ozaki 		    (rt->rt_ifp->if_flags & (IFF_NOARP | IFF_STATICARP)) != 0 ||
   1704  1.159     ozaki #else
   1705  1.158     ozaki 		    (rt->rt_ifp->if_flags & IFF_NOARP) != 0 ||
   1706  1.158     ozaki #endif
   1707  1.158     ozaki 		    memcmp(rt->rt_gateway->sa_data, l3addr->sa_data,
   1708  1.158     ozaki 		    sizeof(in_addr_t)) != 0) {
   1709  1.158     ozaki 			goto error;
   1710  1.158     ozaki 		}
   1711  1.158     ozaki 	}
   1712  1.158     ozaki 
   1713  1.158     ozaki 	/*
   1714  1.158     ozaki 	 * Make sure that at least the destination address is covered
   1715  1.158     ozaki 	 * by the route. This is for handling the case where 2 or more
   1716  1.158     ozaki 	 * interfaces have the same prefix. An incoming packet arrives
   1717  1.158     ozaki 	 * on one interface and the corresponding outgoing packet leaves
   1718  1.158     ozaki 	 * another interface.
   1719  1.158     ozaki 	 */
   1720  1.158     ozaki 	if (!(rt->rt_flags & RTF_HOST) && rt->rt_ifp != ifp) {
   1721  1.158     ozaki 		const char *sa, *mask, *addr, *lim;
   1722  1.158     ozaki 		int len;
   1723  1.158     ozaki 
   1724  1.158     ozaki 		mask = (const char *)rt_mask(rt);
   1725  1.158     ozaki 		/*
   1726  1.158     ozaki 		 * Just being extra cautious to avoid some custom
   1727  1.158     ozaki 		 * code getting into trouble.
   1728  1.158     ozaki 		 */
   1729  1.158     ozaki 		if (mask == NULL)
   1730  1.158     ozaki 			goto error;
   1731  1.158     ozaki 
   1732  1.158     ozaki 		sa = (const char *)rt_getkey(rt);
   1733  1.158     ozaki 		addr = (const char *)l3addr;
   1734  1.158     ozaki 		len = ((const struct sockaddr_in *)l3addr)->sin_len;
   1735  1.158     ozaki 		lim = addr + len;
   1736  1.158     ozaki 
   1737  1.158     ozaki 		for ( ; addr < lim; sa++, mask++, addr++) {
   1738  1.158     ozaki 			if ((*sa ^ *addr) & *mask) {
   1739  1.158     ozaki #ifdef DIAGNOSTIC
   1740  1.158     ozaki 				log(LOG_INFO, "IPv4 address: \"%s\" is not on the network\n",
   1741  1.158     ozaki 				    inet_ntoa(((const struct sockaddr_in *)l3addr)->sin_addr));
   1742  1.158     ozaki #endif
   1743  1.158     ozaki 				goto error;
   1744  1.158     ozaki 			}
   1745  1.158     ozaki 		}
   1746  1.158     ozaki 	}
   1747  1.158     ozaki 
   1748  1.158     ozaki 	error = 0;
   1749  1.158     ozaki error:
   1750  1.162     ozaki 	rtfree(rt);
   1751  1.158     ozaki 	return error;
   1752  1.158     ozaki }
   1753  1.158     ozaki 
   1754  1.158     ozaki static inline uint32_t
   1755  1.158     ozaki in_lltable_hash_dst(const struct in_addr dst, uint32_t hsize)
   1756  1.158     ozaki {
   1757  1.158     ozaki 
   1758  1.158     ozaki 	return (IN_LLTBL_HASH(dst.s_addr, hsize));
   1759  1.158     ozaki }
   1760  1.158     ozaki 
   1761  1.158     ozaki static uint32_t
   1762  1.158     ozaki in_lltable_hash(const struct llentry *lle, uint32_t hsize)
   1763  1.158     ozaki {
   1764  1.158     ozaki 
   1765  1.158     ozaki 	return (in_lltable_hash_dst(lle->r_l3addr.addr4, hsize));
   1766  1.158     ozaki }
   1767  1.158     ozaki 
   1768  1.158     ozaki static void
   1769  1.158     ozaki in_lltable_fill_sa_entry(const struct llentry *lle, struct sockaddr *sa)
   1770  1.158     ozaki {
   1771  1.158     ozaki 	struct sockaddr_in *sin;
   1772  1.158     ozaki 
   1773  1.158     ozaki 	sin = (struct sockaddr_in *)sa;
   1774  1.158     ozaki 	memset(sin, 0, sizeof(*sin));
   1775  1.158     ozaki 	sin->sin_family = AF_INET;
   1776  1.158     ozaki 	sin->sin_len = sizeof(*sin);
   1777  1.158     ozaki 	sin->sin_addr = lle->r_l3addr.addr4;
   1778  1.158     ozaki }
   1779  1.158     ozaki 
   1780  1.158     ozaki static inline struct llentry *
   1781  1.158     ozaki in_lltable_find_dst(struct lltable *llt, struct in_addr dst)
   1782  1.158     ozaki {
   1783  1.158     ozaki 	struct llentry *lle;
   1784  1.158     ozaki 	struct llentries *lleh;
   1785  1.158     ozaki 	u_int hashidx;
   1786  1.158     ozaki 
   1787  1.158     ozaki 	hashidx = in_lltable_hash_dst(dst, llt->llt_hsize);
   1788  1.158     ozaki 	lleh = &llt->lle_head[hashidx];
   1789  1.158     ozaki 	LIST_FOREACH(lle, lleh, lle_next) {
   1790  1.158     ozaki 		if (lle->la_flags & LLE_DELETED)
   1791  1.158     ozaki 			continue;
   1792  1.158     ozaki 		if (lle->r_l3addr.addr4.s_addr == dst.s_addr)
   1793  1.158     ozaki 			break;
   1794  1.158     ozaki 	}
   1795  1.158     ozaki 
   1796  1.158     ozaki 	return (lle);
   1797  1.158     ozaki }
   1798  1.158     ozaki 
   1799  1.158     ozaki static int
   1800  1.158     ozaki in_lltable_delete(struct lltable *llt, u_int flags,
   1801  1.158     ozaki     const struct sockaddr *l3addr)
   1802  1.158     ozaki {
   1803  1.158     ozaki 	const struct sockaddr_in *sin = (const struct sockaddr_in *)l3addr;
   1804  1.160     ozaki 	struct ifnet *ifp __diagused = llt->llt_ifp;
   1805  1.158     ozaki 	struct llentry *lle;
   1806  1.158     ozaki 
   1807  1.158     ozaki 	IF_AFDATA_WLOCK_ASSERT(ifp);
   1808  1.158     ozaki 	KASSERTMSG(l3addr->sa_family == AF_INET,
   1809  1.158     ozaki 	    "sin_family %d", l3addr->sa_family);
   1810  1.158     ozaki 
   1811  1.158     ozaki 	lle = in_lltable_find_dst(llt, sin->sin_addr);
   1812  1.158     ozaki 	if (lle == NULL) {
   1813  1.158     ozaki #ifdef DIAGNOSTIC
   1814  1.158     ozaki 		log(LOG_INFO, "interface address is missing from cache = %p  in delete\n", lle);
   1815  1.158     ozaki #endif
   1816  1.158     ozaki 		return (ENOENT);
   1817  1.158     ozaki 	}
   1818  1.158     ozaki 
   1819  1.165     ozaki 	LLE_WLOCK(lle);
   1820  1.165     ozaki 	lle->la_flags |= LLE_DELETED;
   1821  1.158     ozaki #ifdef DIAGNOSTIC
   1822  1.165     ozaki 	log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle);
   1823  1.158     ozaki #endif
   1824  1.165     ozaki 	if ((lle->la_flags & (LLE_STATIC | LLE_IFADDR)) == LLE_STATIC)
   1825  1.165     ozaki 		llentry_free(lle);
   1826  1.165     ozaki 	else
   1827  1.165     ozaki 		LLE_WUNLOCK(lle);
   1828  1.158     ozaki 
   1829  1.158     ozaki 	return (0);
   1830  1.158     ozaki }
   1831  1.158     ozaki 
   1832  1.158     ozaki static struct llentry *
   1833  1.158     ozaki in_lltable_create(struct lltable *llt, u_int flags, const struct sockaddr *l3addr)
   1834  1.158     ozaki {
   1835  1.158     ozaki 	const struct sockaddr_in *sin = (const struct sockaddr_in *)l3addr;
   1836  1.158     ozaki 	struct ifnet *ifp = llt->llt_ifp;
   1837  1.158     ozaki 	struct llentry *lle;
   1838  1.158     ozaki 
   1839  1.158     ozaki 	IF_AFDATA_WLOCK_ASSERT(ifp);
   1840  1.158     ozaki 	KASSERTMSG(l3addr->sa_family == AF_INET,
   1841  1.158     ozaki 	    "sin_family %d", l3addr->sa_family);
   1842  1.158     ozaki 
   1843  1.158     ozaki 	lle = in_lltable_find_dst(llt, sin->sin_addr);
   1844  1.158     ozaki 
   1845  1.158     ozaki 	if (lle != NULL) {
   1846  1.158     ozaki 		LLE_WLOCK(lle);
   1847  1.158     ozaki 		return (lle);
   1848  1.158     ozaki 	}
   1849  1.158     ozaki 
   1850  1.158     ozaki 	/* no existing record, we need to create new one */
   1851  1.158     ozaki 
   1852  1.158     ozaki 	/*
   1853  1.158     ozaki 	 * A route that covers the given address must have
   1854  1.158     ozaki 	 * been installed 1st because we are doing a resolution,
   1855  1.158     ozaki 	 * verify this.
   1856  1.158     ozaki 	 */
   1857  1.158     ozaki 	if (!(flags & LLE_IFADDR) &&
   1858  1.158     ozaki 	    in_lltable_rtcheck(ifp, flags, l3addr) != 0)
   1859  1.158     ozaki 		return (NULL);
   1860  1.158     ozaki 
   1861  1.158     ozaki 	lle = in_lltable_new(sin->sin_addr, flags);
   1862  1.158     ozaki 	if (lle == NULL) {
   1863  1.158     ozaki 		log(LOG_INFO, "lla_lookup: new lle malloc failed\n");
   1864  1.158     ozaki 		return (NULL);
   1865  1.158     ozaki 	}
   1866  1.158     ozaki 	lle->la_flags = flags;
   1867  1.158     ozaki 	if ((flags & LLE_IFADDR) == LLE_IFADDR) {
   1868  1.158     ozaki 		memcpy(&lle->ll_addr, CLLADDR(ifp->if_sadl), ifp->if_addrlen);
   1869  1.158     ozaki 		lle->la_flags |= (LLE_VALID | LLE_STATIC);
   1870  1.158     ozaki 	}
   1871  1.158     ozaki 
   1872  1.158     ozaki 	lltable_link_entry(llt, lle);
   1873  1.158     ozaki 	LLE_WLOCK(lle);
   1874  1.158     ozaki 
   1875  1.158     ozaki 	return (lle);
   1876  1.158     ozaki }
   1877  1.158     ozaki 
   1878  1.158     ozaki /*
   1879  1.158     ozaki  * Return NULL if not found or marked for deletion.
   1880  1.158     ozaki  * If found return lle read locked.
   1881  1.158     ozaki  */
   1882  1.158     ozaki static struct llentry *
   1883  1.158     ozaki in_lltable_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr)
   1884  1.158     ozaki {
   1885  1.158     ozaki 	const struct sockaddr_in *sin = (const struct sockaddr_in *)l3addr;
   1886  1.158     ozaki 	struct llentry *lle;
   1887  1.158     ozaki 
   1888  1.158     ozaki 	IF_AFDATA_LOCK_ASSERT(llt->llt_ifp);
   1889  1.158     ozaki 	KASSERTMSG(l3addr->sa_family == AF_INET,
   1890  1.158     ozaki 	    "sin_family %d", l3addr->sa_family);
   1891  1.158     ozaki 
   1892  1.158     ozaki 	lle = in_lltable_find_dst(llt, sin->sin_addr);
   1893  1.158     ozaki 
   1894  1.158     ozaki 	if (lle == NULL)
   1895  1.158     ozaki 		return NULL;
   1896  1.158     ozaki 
   1897  1.158     ozaki 	if (flags & LLE_EXCLUSIVE)
   1898  1.158     ozaki 		LLE_WLOCK(lle);
   1899  1.158     ozaki 	else
   1900  1.158     ozaki 		LLE_RLOCK(lle);
   1901  1.158     ozaki 
   1902  1.158     ozaki 	return lle;
   1903  1.158     ozaki }
   1904  1.158     ozaki 
   1905  1.165     ozaki static int
   1906  1.165     ozaki in_lltable_dump_entry(struct lltable *llt, struct llentry *lle,
   1907  1.165     ozaki     struct rt_walkarg *w)
   1908  1.165     ozaki {
   1909  1.165     ozaki 	struct sockaddr_in sin;
   1910  1.165     ozaki 
   1911  1.165     ozaki 	LLTABLE_LOCK_ASSERT();
   1912  1.165     ozaki 
   1913  1.165     ozaki 	/* skip deleted entries */
   1914  1.165     ozaki 	if (lle->la_flags & LLE_DELETED)
   1915  1.165     ozaki 		return 0;
   1916  1.165     ozaki 
   1917  1.165     ozaki 	sockaddr_in_init(&sin, &lle->r_l3addr.addr4, 0);
   1918  1.165     ozaki 
   1919  1.165     ozaki 	return lltable_dump_entry(llt, lle, w, sintosa(&sin));
   1920  1.165     ozaki }
   1921  1.165     ozaki 
   1922  1.163     ozaki #endif /* NARP > 0 */
   1923  1.161     ozaki 
   1924  1.175  christos static int
   1925  1.175  christos in_multicast_sysctl(SYSCTLFN_ARGS)
   1926  1.175  christos {
   1927  1.175  christos 	struct ifnet *ifp;
   1928  1.175  christos 	struct ifaddr *ifa;
   1929  1.175  christos 	struct in_ifaddr *ifa4;
   1930  1.175  christos 	struct in_multi *inm;
   1931  1.175  christos 	uint32_t tmp;
   1932  1.175  christos 	int error;
   1933  1.175  christos 	size_t written;
   1934  1.175  christos 	struct psref psref;
   1935  1.175  christos 	int bound;
   1936  1.175  christos 
   1937  1.175  christos 	if (namelen != 1)
   1938  1.175  christos 		return EINVAL;
   1939  1.175  christos 
   1940  1.175  christos 	bound = curlwp_bind();
   1941  1.175  christos 	ifp = if_get_byindex(name[0], &psref);
   1942  1.175  christos 	if (ifp == NULL) {
   1943  1.175  christos 		curlwp_bindx(bound);
   1944  1.175  christos 		return ENODEV;
   1945  1.175  christos 	}
   1946  1.175  christos 
   1947  1.175  christos 	if (oldp == NULL) {
   1948  1.175  christos 		*oldlenp = 0;
   1949  1.175  christos 		IFADDR_FOREACH(ifa, ifp) {
   1950  1.175  christos 			if (ifa->ifa_addr->sa_family != AF_INET)
   1951  1.175  christos 				continue;
   1952  1.175  christos 			ifa4 = (void *)ifa;
   1953  1.175  christos 			LIST_FOREACH(inm, &ifa4->ia_multiaddrs, inm_list) {
   1954  1.175  christos 				*oldlenp += 2 * sizeof(struct in_addr) +
   1955  1.175  christos 				    sizeof(uint32_t);
   1956  1.175  christos 			}
   1957  1.175  christos 		}
   1958  1.175  christos 		if_put(ifp, &psref);
   1959  1.175  christos 		curlwp_bindx(bound);
   1960  1.175  christos 		return 0;
   1961  1.175  christos 	}
   1962  1.175  christos 
   1963  1.175  christos 	error = 0;
   1964  1.175  christos 	written = 0;
   1965  1.175  christos 	IFADDR_FOREACH(ifa, ifp) {
   1966  1.175  christos 		if (ifa->ifa_addr->sa_family != AF_INET)
   1967  1.175  christos 			continue;
   1968  1.175  christos 		ifa4 = (void *)ifa;
   1969  1.175  christos 		LIST_FOREACH(inm, &ifa4->ia_multiaddrs, inm_list) {
   1970  1.175  christos 			if (written + 2 * sizeof(struct in_addr) +
   1971  1.175  christos 			    sizeof(uint32_t) > *oldlenp)
   1972  1.175  christos 				goto done;
   1973  1.175  christos 			error = sysctl_copyout(l, &ifa4->ia_addr.sin_addr,
   1974  1.175  christos 			    oldp, sizeof(struct in_addr));
   1975  1.175  christos 			if (error)
   1976  1.175  christos 				goto done;
   1977  1.175  christos 			oldp = (char *)oldp + sizeof(struct in_addr);
   1978  1.175  christos 			written += sizeof(struct in_addr);
   1979  1.175  christos 			error = sysctl_copyout(l, &inm->inm_addr,
   1980  1.175  christos 			    oldp, sizeof(struct in_addr));
   1981  1.175  christos 			if (error)
   1982  1.175  christos 				goto done;
   1983  1.175  christos 			oldp = (char *)oldp + sizeof(struct in_addr);
   1984  1.175  christos 			written += sizeof(struct in_addr);
   1985  1.175  christos 			tmp = inm->inm_refcount;
   1986  1.175  christos 			error = sysctl_copyout(l, &tmp, oldp, sizeof(tmp));
   1987  1.175  christos 			if (error)
   1988  1.175  christos 				goto done;
   1989  1.175  christos 			oldp = (char *)oldp + sizeof(tmp);
   1990  1.175  christos 			written += sizeof(tmp);
   1991  1.175  christos 		}
   1992  1.175  christos 	}
   1993  1.175  christos done:
   1994  1.175  christos 	if_put(ifp, &psref);
   1995  1.175  christos 	curlwp_bindx(bound);
   1996  1.175  christos 	*oldlenp = written;
   1997  1.175  christos 	return error;
   1998  1.175  christos }
   1999  1.175  christos 
   2000  1.145     rmind static void
   2001  1.145     rmind in_sysctl_init(struct sysctllog **clog)
   2002  1.145     rmind {
   2003  1.145     rmind 	sysctl_createv(clog, 0, NULL, NULL,
   2004  1.145     rmind 		       CTLFLAG_PERMANENT,
   2005  1.145     rmind 		       CTLTYPE_NODE, "inet",
   2006  1.145     rmind 		       SYSCTL_DESCR("PF_INET related settings"),
   2007  1.145     rmind 		       NULL, 0, NULL, 0,
   2008  1.145     rmind 		       CTL_NET, PF_INET, CTL_EOL);
   2009  1.145     rmind 	sysctl_createv(clog, 0, NULL, NULL,
   2010  1.145     rmind 		       CTLFLAG_PERMANENT,
   2011  1.175  christos 		       CTLTYPE_NODE, "multicast",
   2012  1.175  christos 		       SYSCTL_DESCR("Multicast information"),
   2013  1.175  christos 		       in_multicast_sysctl, 0, NULL, 0,
   2014  1.175  christos 		       CTL_NET, PF_INET, CTL_CREATE, CTL_EOL);
   2015  1.175  christos 	sysctl_createv(clog, 0, NULL, NULL,
   2016  1.175  christos 		       CTLFLAG_PERMANENT,
   2017  1.145     rmind 		       CTLTYPE_NODE, "ip",
   2018  1.145     rmind 		       SYSCTL_DESCR("IPv4 related settings"),
   2019  1.145     rmind 		       NULL, 0, NULL, 0,
   2020  1.145     rmind 		       CTL_NET, PF_INET, IPPROTO_IP, CTL_EOL);
   2021  1.145     rmind 
   2022  1.145     rmind 	sysctl_createv(clog, 0, NULL, NULL,
   2023  1.145     rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   2024  1.145     rmind 		       CTLTYPE_INT, "subnetsarelocal",
   2025  1.145     rmind 		       SYSCTL_DESCR("Whether logical subnets are considered "
   2026  1.145     rmind 				    "local"),
   2027  1.145     rmind 		       NULL, 0, &subnetsarelocal, 0,
   2028  1.145     rmind 		       CTL_NET, PF_INET, IPPROTO_IP,
   2029  1.145     rmind 		       IPCTL_SUBNETSARELOCAL, CTL_EOL);
   2030  1.145     rmind 	sysctl_createv(clog, 0, NULL, NULL,
   2031  1.145     rmind 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   2032  1.145     rmind 		       CTLTYPE_INT, "hostzerobroadcast",
   2033  1.145     rmind 		       SYSCTL_DESCR("All zeroes address is broadcast address"),
   2034  1.145     rmind 		       NULL, 0, &hostzeroisbroadcast, 0,
   2035  1.145     rmind 		       CTL_NET, PF_INET, IPPROTO_IP,
   2036  1.145     rmind 		       IPCTL_HOSTZEROBROADCAST, CTL_EOL);
   2037  1.145     rmind }
   2038  1.158     ozaki 
   2039  1.163     ozaki #if NARP > 0
   2040  1.163     ozaki 
   2041  1.158     ozaki static struct lltable *
   2042  1.158     ozaki in_lltattach(struct ifnet *ifp)
   2043  1.158     ozaki {
   2044  1.158     ozaki 	struct lltable *llt;
   2045  1.158     ozaki 
   2046  1.158     ozaki 	llt = lltable_allocate_htbl(IN_LLTBL_DEFAULT_HSIZE);
   2047  1.158     ozaki 	llt->llt_af = AF_INET;
   2048  1.158     ozaki 	llt->llt_ifp = ifp;
   2049  1.158     ozaki 
   2050  1.158     ozaki 	llt->llt_lookup = in_lltable_lookup;
   2051  1.158     ozaki 	llt->llt_create = in_lltable_create;
   2052  1.158     ozaki 	llt->llt_delete = in_lltable_delete;
   2053  1.158     ozaki 	llt->llt_dump_entry = in_lltable_dump_entry;
   2054  1.158     ozaki 	llt->llt_hash = in_lltable_hash;
   2055  1.158     ozaki 	llt->llt_fill_sa_entry = in_lltable_fill_sa_entry;
   2056  1.158     ozaki 	llt->llt_free_entry = in_lltable_free_entry;
   2057  1.158     ozaki 	llt->llt_match_prefix = in_lltable_match_prefix;
   2058  1.158     ozaki 	lltable_link(llt);
   2059  1.158     ozaki 
   2060  1.158     ozaki 	return (llt);
   2061  1.158     ozaki }
   2062  1.163     ozaki 
   2063  1.163     ozaki #endif /* NARP > 0 */
   2064  1.158     ozaki 
   2065  1.158     ozaki void *
   2066  1.158     ozaki in_domifattach(struct ifnet *ifp)
   2067  1.158     ozaki {
   2068  1.158     ozaki 	struct in_ifinfo *ii;
   2069  1.158     ozaki 
   2070  1.158     ozaki 	ii = kmem_zalloc(sizeof(struct in_ifinfo), KM_SLEEP);
   2071  1.158     ozaki 	KASSERT(ii != NULL);
   2072  1.158     ozaki 
   2073  1.163     ozaki #if NARP > 0
   2074  1.158     ozaki 	ii->ii_llt = in_lltattach(ifp);
   2075  1.161     ozaki #endif
   2076  1.158     ozaki 
   2077  1.158     ozaki #ifdef IPSELSRC
   2078  1.158     ozaki 	ii->ii_selsrc = in_selsrc_domifattach(ifp);
   2079  1.158     ozaki 	KASSERT(ii->ii_selsrc != NULL);
   2080  1.158     ozaki #endif
   2081  1.158     ozaki 
   2082  1.158     ozaki 	return ii;
   2083  1.158     ozaki }
   2084  1.158     ozaki 
   2085  1.158     ozaki void
   2086  1.158     ozaki in_domifdetach(struct ifnet *ifp, void *aux)
   2087  1.158     ozaki {
   2088  1.158     ozaki 	struct in_ifinfo *ii = aux;
   2089  1.158     ozaki 
   2090  1.158     ozaki #ifdef IPSELSRC
   2091  1.158     ozaki 	in_selsrc_domifdetach(ifp, ii->ii_selsrc);
   2092  1.158     ozaki #endif
   2093  1.163     ozaki #if NARP > 0
   2094  1.158     ozaki 	lltable_free(ii->ii_llt);
   2095  1.161     ozaki #endif
   2096  1.158     ozaki 	kmem_free(ii, sizeof(struct in_ifinfo));
   2097  1.158     ozaki }
   2098