Home | History | Annotate | Line # | Download | only in netinet
in.c revision 1.85
      1 /*	$NetBSD: in.c,v 1.85 2003/06/18 06:42:34 itojun Exp $	*/
      2 
      3 /*
      4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. Neither the name of the project nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  */
     31 
     32 /*-
     33  * Copyright (c) 1998 The NetBSD Foundation, Inc.
     34  * All rights reserved.
     35  *
     36  * This code is derived from software contributed to The NetBSD Foundation
     37  * by Public Access Networks Corporation ("Panix").  It was developed under
     38  * contract to Panix by Eric Haszlakiewicz and Thor Lancelot Simon.
     39  *
     40  * Redistribution and use in source and binary forms, with or without
     41  * modification, are permitted provided that the following conditions
     42  * are met:
     43  * 1. Redistributions of source code must retain the above copyright
     44  *    notice, this list of conditions and the following disclaimer.
     45  * 2. Redistributions in binary form must reproduce the above copyright
     46  *    notice, this list of conditions and the following disclaimer in the
     47  *    documentation and/or other materials provided with the distribution.
     48  * 3. All advertising materials mentioning features or use of this software
     49  *    must display the following acknowledgement:
     50  *	This product includes software developed by the NetBSD
     51  *	Foundation, Inc. and its contributors.
     52  * 4. Neither the name of The NetBSD Foundation nor the names of its
     53  *    contributors may be used to endorse or promote products derived
     54  *    from this software without specific prior written permission.
     55  *
     56  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     57  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     58  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     59  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     60  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     61  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     62  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     63  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     64  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     65  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     66  * POSSIBILITY OF SUCH DAMAGE.
     67  */
     68 
     69 /*
     70  * Copyright (c) 1982, 1986, 1991, 1993
     71  *	The Regents of the University of California.  All rights reserved.
     72  *
     73  * Redistribution and use in source and binary forms, with or without
     74  * modification, are permitted provided that the following conditions
     75  * are met:
     76  * 1. Redistributions of source code must retain the above copyright
     77  *    notice, this list of conditions and the following disclaimer.
     78  * 2. Redistributions in binary form must reproduce the above copyright
     79  *    notice, this list of conditions and the following disclaimer in the
     80  *    documentation and/or other materials provided with the distribution.
     81  * 3. All advertising materials mentioning features or use of this software
     82  *    must display the following acknowledgement:
     83  *	This product includes software developed by the University of
     84  *	California, Berkeley and its contributors.
     85  * 4. Neither the name of the University nor the names of its contributors
     86  *    may be used to endorse or promote products derived from this software
     87  *    without specific prior written permission.
     88  *
     89  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     90  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     91  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     92  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     93  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     94  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     95  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     96  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     97  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     98  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     99  * SUCH DAMAGE.
    100  *
    101  *	@(#)in.c	8.4 (Berkeley) 1/9/95
    102  */
    103 
    104 #include <sys/cdefs.h>
    105 __KERNEL_RCSID(0, "$NetBSD: in.c,v 1.85 2003/06/18 06:42:34 itojun Exp $");
    106 
    107 #include "opt_inet.h"
    108 #include "opt_inet_conf.h"
    109 #include "opt_mrouting.h"
    110 
    111 #include <sys/param.h>
    112 #include <sys/ioctl.h>
    113 #include <sys/errno.h>
    114 #include <sys/malloc.h>
    115 #include <sys/socket.h>
    116 #include <sys/socketvar.h>
    117 #include <sys/systm.h>
    118 #include <sys/proc.h>
    119 #include <sys/syslog.h>
    120 
    121 #include <net/if.h>
    122 #include <net/route.h>
    123 
    124 #include <net/if_ether.h>
    125 
    126 #include <netinet/in_systm.h>
    127 #include <netinet/in.h>
    128 #include <netinet/in_var.h>
    129 #include <netinet/ip.h>
    130 #include <netinet/ip_var.h>
    131 #include <netinet/in_pcb.h>
    132 #include <netinet/if_inarp.h>
    133 #include <netinet/ip_mroute.h>
    134 #include <netinet/igmp_var.h>
    135 
    136 #ifdef INET
    137 
    138 static u_int in_mask2len __P((struct in_addr *));
    139 static void in_len2mask __P((struct in_addr *, u_int));
    140 static int in_lifaddr_ioctl __P((struct socket *, u_long, caddr_t,
    141 	struct ifnet *, struct proc *));
    142 
    143 static int in_addprefix __P((struct in_ifaddr *, int));
    144 static int in_scrubprefix __P((struct in_ifaddr *));
    145 
    146 #ifndef SUBNETSARELOCAL
    147 #define	SUBNETSARELOCAL	1
    148 #endif
    149 
    150 #ifndef HOSTZEROBROADCAST
    151 #define HOSTZEROBROADCAST 1
    152 #endif
    153 
    154 int subnetsarelocal = SUBNETSARELOCAL;
    155 int hostzeroisbroadcast = HOSTZEROBROADCAST;
    156 
    157 /*
    158  * This list is used to keep track of in_multi chains which belong to
    159  * deleted interface addresses.  We use in_ifaddr so that a chain head
    160  * won't be deallocated until all multicast address record are deleted.
    161  */
    162 static TAILQ_HEAD(, in_ifaddr) in_mk = TAILQ_HEAD_INITIALIZER(in_mk);
    163 
    164 /*
    165  * Return 1 if an internet address is for a ``local'' host
    166  * (one to which we have a connection).  If subnetsarelocal
    167  * is true, this includes other subnets of the local net.
    168  * Otherwise, it includes only the directly-connected (sub)nets.
    169  */
    170 int
    171 in_localaddr(in)
    172 	struct in_addr in;
    173 {
    174 	struct in_ifaddr *ia;
    175 
    176 	if (subnetsarelocal) {
    177 		TAILQ_FOREACH(ia, &in_ifaddr, ia_list)
    178 			if ((in.s_addr & ia->ia_netmask) == ia->ia_net)
    179 				return (1);
    180 	} else {
    181 		TAILQ_FOREACH(ia, &in_ifaddr, ia_list)
    182 			if ((in.s_addr & ia->ia_subnetmask) == ia->ia_subnet)
    183 				return (1);
    184 	}
    185 	return (0);
    186 }
    187 
    188 /*
    189  * Determine whether an IP address is in a reserved set of addresses
    190  * that may not be forwarded, or whether datagrams to that destination
    191  * may be forwarded.
    192  */
    193 int
    194 in_canforward(in)
    195 	struct in_addr in;
    196 {
    197 	u_int32_t net;
    198 
    199 	if (IN_EXPERIMENTAL(in.s_addr) || IN_MULTICAST(in.s_addr))
    200 		return (0);
    201 	if (IN_CLASSA(in.s_addr)) {
    202 		net = in.s_addr & IN_CLASSA_NET;
    203 		if (net == 0 || net == htonl(IN_LOOPBACKNET << IN_CLASSA_NSHIFT))
    204 			return (0);
    205 	}
    206 	return (1);
    207 }
    208 
    209 /*
    210  * Trim a mask in a sockaddr
    211  */
    212 void
    213 in_socktrim(ap)
    214 	struct sockaddr_in *ap;
    215 {
    216 	char *cplim = (char *) &ap->sin_addr;
    217 	char *cp = (char *) (&ap->sin_addr + 1);
    218 
    219 	ap->sin_len = 0;
    220 	while (--cp >= cplim)
    221 		if (*cp) {
    222 			(ap)->sin_len = cp - (char *) (ap) + 1;
    223 			break;
    224 		}
    225 }
    226 
    227 /*
    228  *  Routine to take an Internet address and convert into a
    229  *  "dotted quad" representation for printing.
    230  */
    231 const char *
    232 in_fmtaddr(addr)
    233 	struct in_addr addr;
    234 {
    235 	static char buf[sizeof("123.456.789.123")];
    236 
    237 	addr.s_addr = ntohl(addr.s_addr);
    238 
    239 	sprintf(buf, "%d.%d.%d.%d",
    240 		(addr.s_addr >> 24) & 0xFF,
    241 		(addr.s_addr >> 16) & 0xFF,
    242 		(addr.s_addr >>  8) & 0xFF,
    243 		(addr.s_addr >>  0) & 0xFF);
    244 	return buf;
    245 }
    246 
    247 /*
    248  * Maintain the "in_maxmtu" variable, which is the largest
    249  * mtu for non-local interfaces with AF_INET addresses assigned
    250  * to them that are up.
    251  */
    252 unsigned long in_maxmtu;
    253 
    254 void
    255 in_setmaxmtu()
    256 {
    257 	struct in_ifaddr *ia;
    258 	struct ifnet *ifp;
    259 	unsigned long maxmtu = 0;
    260 
    261 	TAILQ_FOREACH(ia, &in_ifaddr, ia_list) {
    262 		if ((ifp = ia->ia_ifp) == 0)
    263 			continue;
    264 		if ((ifp->if_flags & (IFF_UP|IFF_LOOPBACK)) != IFF_UP)
    265 			continue;
    266 		if (ifp->if_mtu > maxmtu)
    267 			maxmtu = ifp->if_mtu;
    268 	}
    269 	if (maxmtu)
    270 		in_maxmtu = maxmtu;
    271 }
    272 
    273 static u_int
    274 in_mask2len(mask)
    275 	struct in_addr *mask;
    276 {
    277 	u_int x, y;
    278 	u_char *p;
    279 
    280 	p = (u_char *)mask;
    281 	for (x = 0; x < sizeof(*mask); x++) {
    282 		if (p[x] != 0xff)
    283 			break;
    284 	}
    285 	y = 0;
    286 	if (x < sizeof(*mask)) {
    287 		for (y = 0; y < 8; y++) {
    288 			if ((p[x] & (0x80 >> y)) == 0)
    289 				break;
    290 		}
    291 	}
    292 	return x * 8 + y;
    293 }
    294 
    295 static void
    296 in_len2mask(mask, len)
    297 	struct in_addr *mask;
    298 	u_int len;
    299 {
    300 	u_int i;
    301 	u_char *p;
    302 
    303 	p = (u_char *)mask;
    304 	bzero(mask, sizeof(*mask));
    305 	for (i = 0; i < len / 8; i++)
    306 		p[i] = 0xff;
    307 	if (len % 8)
    308 		p[i] = (0xff00 >> (len % 8)) & 0xff;
    309 }
    310 
    311 /*
    312  * Generic internet control operations (ioctl's).
    313  * Ifp is 0 if not an interface-specific ioctl.
    314  */
    315 /* ARGSUSED */
    316 int
    317 in_control(so, cmd, data, ifp, p)
    318 	struct socket *so;
    319 	u_long cmd;
    320 	caddr_t data;
    321 	struct ifnet *ifp;
    322 	struct proc *p;
    323 {
    324 	struct ifreq *ifr = (struct ifreq *)data;
    325 	struct in_ifaddr *ia = 0;
    326 	struct in_aliasreq *ifra = (struct in_aliasreq *)data;
    327 	struct sockaddr_in oldaddr;
    328 	int error, hostIsNew, maskIsNew;
    329 
    330 	switch (cmd) {
    331 	case SIOCALIFADDR:
    332 	case SIOCDLIFADDR:
    333 		if (p == 0 || (error = suser(p->p_ucred, &p->p_acflag)))
    334 			return (EPERM);
    335 		/*fall through*/
    336 	case SIOCGLIFADDR:
    337 		if (!ifp)
    338 			return EINVAL;
    339 		return in_lifaddr_ioctl(so, cmd, data, ifp, p);
    340 	}
    341 
    342 	/*
    343 	 * Find address for this interface, if it exists.
    344 	 */
    345 	if (ifp)
    346 		IFP_TO_IA(ifp, ia);
    347 
    348 	switch (cmd) {
    349 
    350 	case SIOCAIFADDR:
    351 	case SIOCDIFADDR:
    352 	case SIOCGIFALIAS:
    353 		if (ifra->ifra_addr.sin_family == AF_INET)
    354 			LIST_FOREACH(ia,
    355 			    &IN_IFADDR_HASH(ifra->ifra_addr.sin_addr.s_addr),
    356 			    ia_hash) {
    357 				if (ia->ia_ifp == ifp  &&
    358 				    in_hosteq(ia->ia_addr.sin_addr,
    359 				    ifra->ifra_addr.sin_addr))
    360 					break;
    361 			}
    362 		if (cmd == SIOCDIFADDR) {
    363 			if (ia == 0)
    364 				return (EADDRNOTAVAIL);
    365 #if 1 /*def COMPAT_43*/
    366 			if (ifra->ifra_addr.sin_family == AF_UNSPEC)
    367 				ifra->ifra_addr.sin_family = AF_INET;
    368 #endif
    369 		}
    370 		/* FALLTHROUGH */
    371 	case SIOCSIFADDR:
    372 	case SIOCSIFDSTADDR:
    373 		if (ifra->ifra_addr.sin_family != AF_INET)
    374 			return (EAFNOSUPPORT);
    375 		/* FALLTHROUGH */
    376 	case SIOCSIFNETMASK:
    377 		if (ifp == 0)
    378 			panic("in_control");
    379 
    380 		if (cmd == SIOCGIFALIAS)
    381 			break;
    382 
    383 		if (p == 0 || (error = suser(p->p_ucred, &p->p_acflag)))
    384 			return (EPERM);
    385 
    386 		if (ia == 0) {
    387 			MALLOC(ia, struct in_ifaddr *, sizeof(*ia),
    388 			       M_IFADDR, M_WAITOK);
    389 			if (ia == 0)
    390 				return (ENOBUFS);
    391 			bzero((caddr_t)ia, sizeof *ia);
    392 			TAILQ_INSERT_TAIL(&in_ifaddr, ia, ia_list);
    393 			IFAREF(&ia->ia_ifa);
    394 			TAILQ_INSERT_TAIL(&ifp->if_addrlist, &ia->ia_ifa,
    395 			    ifa_list);
    396 			IFAREF(&ia->ia_ifa);
    397 			ia->ia_ifa.ifa_addr = sintosa(&ia->ia_addr);
    398 			ia->ia_ifa.ifa_dstaddr = sintosa(&ia->ia_dstaddr);
    399 			ia->ia_ifa.ifa_netmask = sintosa(&ia->ia_sockmask);
    400 			ia->ia_sockmask.sin_len = 8;
    401 			if (ifp->if_flags & IFF_BROADCAST) {
    402 				ia->ia_broadaddr.sin_len = sizeof(ia->ia_addr);
    403 				ia->ia_broadaddr.sin_family = AF_INET;
    404 			}
    405 			ia->ia_ifp = ifp;
    406 			LIST_INIT(&ia->ia_multiaddrs);
    407 		}
    408 		break;
    409 
    410 	case SIOCSIFBRDADDR:
    411 		if (p == 0 || (error = suser(p->p_ucred, &p->p_acflag)))
    412 			return (EPERM);
    413 		/* FALLTHROUGH */
    414 
    415 	case SIOCGIFADDR:
    416 	case SIOCGIFNETMASK:
    417 	case SIOCGIFDSTADDR:
    418 	case SIOCGIFBRDADDR:
    419 		if (ia == 0)
    420 			return (EADDRNOTAVAIL);
    421 		break;
    422 	}
    423 	switch (cmd) {
    424 
    425 	case SIOCGIFADDR:
    426 		*satosin(&ifr->ifr_addr) = ia->ia_addr;
    427 		break;
    428 
    429 	case SIOCGIFBRDADDR:
    430 		if ((ifp->if_flags & IFF_BROADCAST) == 0)
    431 			return (EINVAL);
    432 		*satosin(&ifr->ifr_dstaddr) = ia->ia_broadaddr;
    433 		break;
    434 
    435 	case SIOCGIFDSTADDR:
    436 		if ((ifp->if_flags & IFF_POINTOPOINT) == 0)
    437 			return (EINVAL);
    438 		*satosin(&ifr->ifr_dstaddr) = ia->ia_dstaddr;
    439 		break;
    440 
    441 	case SIOCGIFNETMASK:
    442 		*satosin(&ifr->ifr_addr) = ia->ia_sockmask;
    443 		break;
    444 
    445 	case SIOCSIFDSTADDR:
    446 		if ((ifp->if_flags & IFF_POINTOPOINT) == 0)
    447 			return (EINVAL);
    448 		oldaddr = ia->ia_dstaddr;
    449 		ia->ia_dstaddr = *satosin(&ifr->ifr_dstaddr);
    450 		if (ifp->if_ioctl && (error = (*ifp->if_ioctl)
    451 					(ifp, SIOCSIFDSTADDR, (caddr_t)ia))) {
    452 			ia->ia_dstaddr = oldaddr;
    453 			return (error);
    454 		}
    455 		if (ia->ia_flags & IFA_ROUTE) {
    456 			ia->ia_ifa.ifa_dstaddr = sintosa(&oldaddr);
    457 			rtinit(&(ia->ia_ifa), (int)RTM_DELETE, RTF_HOST);
    458 			ia->ia_ifa.ifa_dstaddr = sintosa(&ia->ia_dstaddr);
    459 			rtinit(&(ia->ia_ifa), (int)RTM_ADD, RTF_HOST|RTF_UP);
    460 		}
    461 		break;
    462 
    463 	case SIOCSIFBRDADDR:
    464 		if ((ifp->if_flags & IFF_BROADCAST) == 0)
    465 			return (EINVAL);
    466 		ia->ia_broadaddr = *satosin(&ifr->ifr_broadaddr);
    467 		break;
    468 
    469 	case SIOCSIFADDR:
    470 		error = in_ifinit(ifp, ia, satosin(&ifr->ifr_addr), 1);
    471 		return error;
    472 
    473 	case SIOCSIFNETMASK:
    474 		ia->ia_subnetmask = ia->ia_sockmask.sin_addr.s_addr =
    475 		    ifra->ifra_addr.sin_addr.s_addr;
    476 		break;
    477 
    478 	case SIOCAIFADDR:
    479 		maskIsNew = 0;
    480 		hostIsNew = 1;
    481 		error = 0;
    482 		if (ia->ia_addr.sin_family == AF_INET) {
    483 			if (ifra->ifra_addr.sin_len == 0) {
    484 				ifra->ifra_addr = ia->ia_addr;
    485 				hostIsNew = 0;
    486 			} else if (in_hosteq(ia->ia_addr.sin_addr, ifra->ifra_addr.sin_addr))
    487 				hostIsNew = 0;
    488 		}
    489 		if (ifra->ifra_mask.sin_len) {
    490 			in_ifscrub(ifp, ia);
    491 			ia->ia_sockmask = ifra->ifra_mask;
    492 			ia->ia_subnetmask = ia->ia_sockmask.sin_addr.s_addr;
    493 			maskIsNew = 1;
    494 		}
    495 		if ((ifp->if_flags & IFF_POINTOPOINT) &&
    496 		    (ifra->ifra_dstaddr.sin_family == AF_INET)) {
    497 			in_ifscrub(ifp, ia);
    498 			ia->ia_dstaddr = ifra->ifra_dstaddr;
    499 			maskIsNew  = 1; /* We lie; but the effect's the same */
    500 		}
    501 		if (ifra->ifra_addr.sin_family == AF_INET &&
    502 		    (hostIsNew || maskIsNew)) {
    503 			error = in_ifinit(ifp, ia, &ifra->ifra_addr, 0);
    504 		}
    505 		if ((ifp->if_flags & IFF_BROADCAST) &&
    506 		    (ifra->ifra_broadaddr.sin_family == AF_INET))
    507 			ia->ia_broadaddr = ifra->ifra_broadaddr;
    508 		return (error);
    509 
    510 	case SIOCGIFALIAS:
    511 		ifra->ifra_mask = ia->ia_sockmask;
    512 		if ((ifp->if_flags & IFF_POINTOPOINT) &&
    513 		    (ia->ia_dstaddr.sin_family == AF_INET))
    514 			ifra->ifra_dstaddr = ia->ia_dstaddr;
    515 		else if ((ifp->if_flags & IFF_BROADCAST) &&
    516 		    (ia->ia_broadaddr.sin_family == AF_INET))
    517 			ifra->ifra_broadaddr = ia->ia_broadaddr;
    518 		else
    519 			bzero(&ifra->ifra_broadaddr,
    520 			      sizeof(ifra->ifra_broadaddr));
    521 		return 0;
    522 
    523 	case SIOCDIFADDR:
    524 		in_purgeaddr(&ia->ia_ifa, ifp);
    525 		break;
    526 
    527 #ifdef MROUTING
    528 	case SIOCGETVIFCNT:
    529 	case SIOCGETSGCNT:
    530 		return (mrt_ioctl(so, cmd, data));
    531 #endif /* MROUTING */
    532 
    533 	default:
    534 		if (ifp == 0 || ifp->if_ioctl == 0)
    535 			return (EOPNOTSUPP);
    536 		error = (*ifp->if_ioctl)(ifp, cmd, data);
    537 		in_setmaxmtu();
    538 		return (error);
    539 	}
    540 	return (0);
    541 }
    542 
    543 void
    544 in_purgeaddr(ifa, ifp)
    545 	struct ifaddr *ifa;
    546 	struct ifnet *ifp;
    547 {
    548 	struct in_ifaddr *ia = (void *) ifa;
    549         struct in_ifaddr *nia;
    550         struct inpcb *inp, *inp_ialink;
    551 
    552 	in_ifscrub(ifp, ia);
    553 
    554         nia = ia;
    555         NEXT_IA_WITH_SAME_ADDR(nia);
    556         /*
    557          * Kick all the sockets!
    558          */
    559         for (inp = LIST_FIRST(&ia->ia_inpcbs); inp != NULL; inp = inp_ialink) {
    560                 inp_ialink = LIST_NEXT(inp, inp_ialink);
    561                 KASSERT(inp != inp_ialink);
    562                 LIST_REMOVE(inp, inp_ialink);
    563                 IFAFREE(&ia->ia_ifa);
    564                 inp->inp_ia = NULL;
    565                 if (nia != NULL) {
    566                         KASSERT(nia != ia);
    567                         inp->inp_ia = nia;
    568                         IFAREF(&nia->ia_ifa);
    569                         LIST_INSERT_HEAD(&nia->ia_inpcbs, inp, inp_ialink);
    570                 } else if (inp->inp_socket != NULL) {
    571                         if ((inp->inp_socket->so_state & SS_NOFDREF) &&
    572                             inp->inp_socket->so_head == NULL) {
    573                                 soabort(inp->inp_socket);
    574                         } else {
    575                                 inp->inp_socket->so_error = ECONNABORTED;
    576                                 sorwakeup(inp->inp_socket);
    577                                 sowwakeup(inp->inp_socket);
    578                         }
    579                 }
    580         }
    581 
    582 	LIST_REMOVE(ia, ia_hash);
    583 	TAILQ_REMOVE(&ifp->if_addrlist, &ia->ia_ifa, ifa_list);
    584 	IFAFREE(&ia->ia_ifa);
    585 	TAILQ_REMOVE(&in_ifaddr, ia, ia_list);
    586 	if (ia->ia_allhosts != NULL)
    587 		in_delmulti(ia->ia_allhosts);
    588 	IFAFREE(&ia->ia_ifa);
    589 	in_setmaxmtu();
    590 }
    591 
    592 void
    593 in_purgeif(ifp)
    594 	struct ifnet *ifp;
    595 {
    596 	struct ifaddr *ifa, *nifa;
    597 
    598 	for (ifa = TAILQ_FIRST(&ifp->if_addrlist); ifa != NULL; ifa = nifa) {
    599 		nifa = TAILQ_NEXT(ifa, ifa_list);
    600 		if (ifa->ifa_addr->sa_family != AF_INET)
    601 			continue;
    602 		in_purgeaddr(ifa, ifp);
    603 	}
    604 }
    605 
    606 /*
    607  * SIOC[GAD]LIFADDR.
    608  *	SIOCGLIFADDR: get first address. (???)
    609  *	SIOCGLIFADDR with IFLR_PREFIX:
    610  *		get first address that matches the specified prefix.
    611  *	SIOCALIFADDR: add the specified address.
    612  *	SIOCALIFADDR with IFLR_PREFIX:
    613  *		EINVAL since we can't deduce hostid part of the address.
    614  *	SIOCDLIFADDR: delete the specified address.
    615  *	SIOCDLIFADDR with IFLR_PREFIX:
    616  *		delete the first address that matches the specified prefix.
    617  * return values:
    618  *	EINVAL on invalid parameters
    619  *	EADDRNOTAVAIL on prefix match failed/specified address not found
    620  *	other values may be returned from in_ioctl()
    621  */
    622 static int
    623 in_lifaddr_ioctl(so, cmd, data, ifp, p)
    624 	struct socket *so;
    625 	u_long cmd;
    626 	caddr_t	data;
    627 	struct ifnet *ifp;
    628 	struct proc *p;
    629 {
    630 	struct if_laddrreq *iflr = (struct if_laddrreq *)data;
    631 	struct ifaddr *ifa;
    632 	struct sockaddr *sa;
    633 
    634 	/* sanity checks */
    635 	if (!data || !ifp) {
    636 		panic("invalid argument to in_lifaddr_ioctl");
    637 		/*NOTRECHED*/
    638 	}
    639 
    640 	switch (cmd) {
    641 	case SIOCGLIFADDR:
    642 		/* address must be specified on GET with IFLR_PREFIX */
    643 		if ((iflr->flags & IFLR_PREFIX) == 0)
    644 			break;
    645 		/*FALLTHROUGH*/
    646 	case SIOCALIFADDR:
    647 	case SIOCDLIFADDR:
    648 		/* address must be specified on ADD and DELETE */
    649 		sa = (struct sockaddr *)&iflr->addr;
    650 		if (sa->sa_family != AF_INET)
    651 			return EINVAL;
    652 		if (sa->sa_len != sizeof(struct sockaddr_in))
    653 			return EINVAL;
    654 		/* XXX need improvement */
    655 		sa = (struct sockaddr *)&iflr->dstaddr;
    656 		if (sa->sa_family
    657 		 && sa->sa_family != AF_INET)
    658 			return EINVAL;
    659 		if (sa->sa_len && sa->sa_len != sizeof(struct sockaddr_in))
    660 			return EINVAL;
    661 		break;
    662 	default: /*shouldn't happen*/
    663 #if 0
    664 		panic("invalid cmd to in_lifaddr_ioctl");
    665 		/*NOTREACHED*/
    666 #else
    667 		return EOPNOTSUPP;
    668 #endif
    669 	}
    670 	if (sizeof(struct in_addr) * 8 < iflr->prefixlen)
    671 		return EINVAL;
    672 
    673 	switch (cmd) {
    674 	case SIOCALIFADDR:
    675 	    {
    676 		struct in_aliasreq ifra;
    677 
    678 		if (iflr->flags & IFLR_PREFIX)
    679 			return EINVAL;
    680 
    681 		/* copy args to in_aliasreq, perform ioctl(SIOCAIFADDR_IN6). */
    682 		bzero(&ifra, sizeof(ifra));
    683 		bcopy(iflr->iflr_name, ifra.ifra_name,
    684 			sizeof(ifra.ifra_name));
    685 
    686 		bcopy(&iflr->addr, &ifra.ifra_addr,
    687 			((struct sockaddr *)&iflr->addr)->sa_len);
    688 
    689 		if (((struct sockaddr *)&iflr->dstaddr)->sa_family) {	/*XXX*/
    690 			bcopy(&iflr->dstaddr, &ifra.ifra_dstaddr,
    691 				((struct sockaddr *)&iflr->dstaddr)->sa_len);
    692 		}
    693 
    694 		ifra.ifra_mask.sin_family = AF_INET;
    695 		ifra.ifra_mask.sin_len = sizeof(struct sockaddr_in);
    696 		in_len2mask(&ifra.ifra_mask.sin_addr, iflr->prefixlen);
    697 
    698 		return in_control(so, SIOCAIFADDR, (caddr_t)&ifra, ifp, p);
    699 	    }
    700 	case SIOCGLIFADDR:
    701 	case SIOCDLIFADDR:
    702 	    {
    703 		struct in_ifaddr *ia;
    704 		struct in_addr mask, candidate, match;
    705 		struct sockaddr_in *sin;
    706 		int cmp;
    707 
    708 		bzero(&mask, sizeof(mask));
    709 		if (iflr->flags & IFLR_PREFIX) {
    710 			/* lookup a prefix rather than address. */
    711 			in_len2mask(&mask, iflr->prefixlen);
    712 
    713 			sin = (struct sockaddr_in *)&iflr->addr;
    714 			match.s_addr = sin->sin_addr.s_addr;
    715 			match.s_addr &= mask.s_addr;
    716 
    717 			/* if you set extra bits, that's wrong */
    718 			if (match.s_addr != sin->sin_addr.s_addr)
    719 				return EINVAL;
    720 
    721 			cmp = 1;
    722 		} else {
    723 			if (cmd == SIOCGLIFADDR) {
    724 				/* on getting an address, take the 1st match */
    725 				cmp = 0;	/*XXX*/
    726 			} else {
    727 				/* on deleting an address, do exact match */
    728 				in_len2mask(&mask, 32);
    729 				sin = (struct sockaddr_in *)&iflr->addr;
    730 				match.s_addr = sin->sin_addr.s_addr;
    731 
    732 				cmp = 1;
    733 			}
    734 		}
    735 
    736 		TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) {
    737 			if (ifa->ifa_addr->sa_family != AF_INET6)
    738 				continue;
    739 			if (!cmp)
    740 				break;
    741 			candidate.s_addr = ((struct sockaddr_in *)&ifa->ifa_addr)->sin_addr.s_addr;
    742 			candidate.s_addr &= mask.s_addr;
    743 			if (candidate.s_addr == match.s_addr)
    744 				break;
    745 		}
    746 		if (!ifa)
    747 			return EADDRNOTAVAIL;
    748 		ia = (struct in_ifaddr *)ifa;
    749 
    750 		if (cmd == SIOCGLIFADDR) {
    751 			/* fill in the if_laddrreq structure */
    752 			bcopy(&ia->ia_addr, &iflr->addr, ia->ia_addr.sin_len);
    753 
    754 			if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
    755 				bcopy(&ia->ia_dstaddr, &iflr->dstaddr,
    756 					ia->ia_dstaddr.sin_len);
    757 			} else
    758 				bzero(&iflr->dstaddr, sizeof(iflr->dstaddr));
    759 
    760 			iflr->prefixlen =
    761 				in_mask2len(&ia->ia_sockmask.sin_addr);
    762 
    763 			iflr->flags = 0;	/*XXX*/
    764 
    765 			return 0;
    766 		} else {
    767 			struct in_aliasreq ifra;
    768 
    769 			/* fill in_aliasreq and do ioctl(SIOCDIFADDR_IN6) */
    770 			bzero(&ifra, sizeof(ifra));
    771 			bcopy(iflr->iflr_name, ifra.ifra_name,
    772 				sizeof(ifra.ifra_name));
    773 
    774 			bcopy(&ia->ia_addr, &ifra.ifra_addr,
    775 				ia->ia_addr.sin_len);
    776 			if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
    777 				bcopy(&ia->ia_dstaddr, &ifra.ifra_dstaddr,
    778 					ia->ia_dstaddr.sin_len);
    779 			}
    780 			bcopy(&ia->ia_sockmask, &ifra.ifra_dstaddr,
    781 				ia->ia_sockmask.sin_len);
    782 
    783 			return in_control(so, SIOCDIFADDR, (caddr_t)&ifra,
    784 				ifp, p);
    785 		}
    786 	    }
    787 	}
    788 
    789 	return EOPNOTSUPP;	/*just for safety*/
    790 }
    791 
    792 /*
    793  * Delete any existing route for an interface.
    794  */
    795 void
    796 in_ifscrub(ifp, ia)
    797 	struct ifnet *ifp;
    798 	struct in_ifaddr *ia;
    799 {
    800 
    801 	in_scrubprefix(ia);
    802 }
    803 
    804 /*
    805  * Initialize an interface's internet address
    806  * and routing table entry.
    807  */
    808 int
    809 in_ifinit(ifp, ia, sin, scrub)
    810 	struct ifnet *ifp;
    811 	struct in_ifaddr *ia;
    812 	struct sockaddr_in *sin;
    813 	int scrub;
    814 {
    815 	u_int32_t i = sin->sin_addr.s_addr;
    816 	struct sockaddr_in oldaddr;
    817 	int s = splnet(), flags = RTF_UP, error;
    818 
    819 	/*
    820 	 * Set up new addresses.
    821 	 */
    822 	oldaddr = ia->ia_addr;
    823 	if (ia->ia_addr.sin_family == AF_INET)
    824 		LIST_REMOVE(ia, ia_hash);
    825 	ia->ia_addr = *sin;
    826 	LIST_INSERT_HEAD(&IN_IFADDR_HASH(ia->ia_addr.sin_addr.s_addr), ia, ia_hash);
    827 
    828 	/*
    829 	 * Give the interface a chance to initialize
    830 	 * if this is its first address,
    831 	 * and to validate the address if necessary.
    832 	 */
    833 	if (ifp->if_ioctl &&
    834 	    (error = (*ifp->if_ioctl)(ifp, SIOCSIFADDR, (caddr_t)ia)))
    835 		goto bad;
    836 	splx(s);
    837 	if (scrub) {
    838 		ia->ia_ifa.ifa_addr = sintosa(&oldaddr);
    839 		in_ifscrub(ifp, ia);
    840 		ia->ia_ifa.ifa_addr = sintosa(&ia->ia_addr);
    841 	}
    842 
    843 	if (IN_CLASSA(i))
    844 		ia->ia_netmask = IN_CLASSA_NET;
    845 	else if (IN_CLASSB(i))
    846 		ia->ia_netmask = IN_CLASSB_NET;
    847 	else
    848 		ia->ia_netmask = IN_CLASSC_NET;
    849 	/*
    850 	 * The subnet mask usually includes at least the standard network part,
    851 	 * but may may be smaller in the case of supernetting.
    852 	 * If it is set, we believe it.
    853 	 */
    854 	if (ia->ia_subnetmask == 0) {
    855 		ia->ia_subnetmask = ia->ia_netmask;
    856 		ia->ia_sockmask.sin_addr.s_addr = ia->ia_subnetmask;
    857 	} else
    858 		ia->ia_netmask &= ia->ia_subnetmask;
    859 
    860 	ia->ia_net = i & ia->ia_netmask;
    861 	ia->ia_subnet = i & ia->ia_subnetmask;
    862 	in_socktrim(&ia->ia_sockmask);
    863 	/* re-calculate the "in_maxmtu" value */
    864 	in_setmaxmtu();
    865 	/*
    866 	 * Add route for the network.
    867 	 */
    868 	ia->ia_ifa.ifa_metric = ifp->if_metric;
    869 	if (ifp->if_flags & IFF_BROADCAST) {
    870 		ia->ia_broadaddr.sin_addr.s_addr =
    871 			ia->ia_subnet | ~ia->ia_subnetmask;
    872 		ia->ia_netbroadcast.s_addr =
    873 			ia->ia_net | ~ia->ia_netmask;
    874 	} else if (ifp->if_flags & IFF_LOOPBACK) {
    875 		ia->ia_dstaddr = ia->ia_addr;
    876 		flags |= RTF_HOST;
    877 	} else if (ifp->if_flags & IFF_POINTOPOINT) {
    878 		if (ia->ia_dstaddr.sin_family != AF_INET)
    879 			return (0);
    880 		flags |= RTF_HOST;
    881 	}
    882 	error = in_addprefix(ia, flags);
    883 	/*
    884 	 * If the interface supports multicast, join the "all hosts"
    885 	 * multicast group on that interface.
    886 	 */
    887 	if ((ifp->if_flags & IFF_MULTICAST) != 0 && ia->ia_allhosts == NULL) {
    888 		struct in_addr addr;
    889 
    890 		addr.s_addr = INADDR_ALLHOSTS_GROUP;
    891 		ia->ia_allhosts = in_addmulti(&addr, ifp);
    892 	}
    893 	return (error);
    894 bad:
    895 	splx(s);
    896 	LIST_REMOVE(ia, ia_hash);
    897 	ia->ia_addr = oldaddr;
    898 	if (ia->ia_addr.sin_family == AF_INET)
    899 		LIST_INSERT_HEAD(&IN_IFADDR_HASH(ia->ia_addr.sin_addr.s_addr),
    900 		    ia, ia_hash);
    901 	return (error);
    902 }
    903 
    904 #define rtinitflags(x) \
    905 	((((x)->ia_ifp->if_flags & (IFF_LOOPBACK | IFF_POINTOPOINT)) != 0) \
    906 	    ? RTF_HOST : 0)
    907 
    908 /*
    909  * add a route to prefix ("connected route" in cisco terminology).
    910  * does nothing if there's some interface address with the same prefix already.
    911  */
    912 static int
    913 in_addprefix(target, flags)
    914 	struct in_ifaddr *target;
    915 	int flags;
    916 {
    917 	struct in_ifaddr *ia;
    918 	struct in_addr prefix, mask, p;
    919 	int error;
    920 
    921 	if ((flags & RTF_HOST) != 0)
    922 		prefix = target->ia_dstaddr.sin_addr;
    923 	else {
    924 		prefix = target->ia_addr.sin_addr;
    925 		mask = target->ia_sockmask.sin_addr;
    926 		prefix.s_addr &= mask.s_addr;
    927 	}
    928 
    929 	TAILQ_FOREACH(ia, &in_ifaddr, ia_list) {
    930 		if (rtinitflags(ia))
    931 			p = ia->ia_dstaddr.sin_addr;
    932 		else {
    933 			p = ia->ia_addr.sin_addr;
    934 			p.s_addr &= ia->ia_sockmask.sin_addr.s_addr;
    935 		}
    936 
    937 		if (prefix.s_addr != p.s_addr)
    938 			continue;
    939 
    940 		/*
    941 		 * if we got a matching prefix route inserted by other
    942 		 * interface address, we don't need to bother
    943 		 */
    944 		if (ia->ia_flags & IFA_ROUTE)
    945 			return 0;
    946 	}
    947 
    948 	/*
    949 	 * noone seem to have prefix route.  insert it.
    950 	 */
    951 	error = rtinit(&target->ia_ifa, (int)RTM_ADD, flags);
    952 	if (!error)
    953 		target->ia_flags |= IFA_ROUTE;
    954 	return error;
    955 }
    956 
    957 /*
    958  * remove a route to prefix ("connected route" in cisco terminology).
    959  * re-installs the route by using another interface address, if there's one
    960  * with the same prefix (otherwise we lose the route mistakenly).
    961  */
    962 static int
    963 in_scrubprefix(target)
    964 	struct in_ifaddr *target;
    965 {
    966 	struct in_ifaddr *ia;
    967 	struct in_addr prefix, mask, p;
    968 	int error;
    969 
    970 	if ((target->ia_flags & IFA_ROUTE) == 0)
    971 		return 0;
    972 
    973 	if (rtinitflags(target))
    974 		prefix = target->ia_dstaddr.sin_addr;
    975 	else {
    976 		prefix = target->ia_addr.sin_addr;
    977 		mask = target->ia_sockmask.sin_addr;
    978 		prefix.s_addr &= mask.s_addr;
    979 	}
    980 
    981 	TAILQ_FOREACH(ia, &in_ifaddr, ia_list) {
    982 		if (rtinitflags(ia))
    983 			p = ia->ia_dstaddr.sin_addr;
    984 		else {
    985 			p = ia->ia_addr.sin_addr;
    986 			p.s_addr &= ia->ia_sockmask.sin_addr.s_addr;
    987 		}
    988 
    989 		if (prefix.s_addr != p.s_addr)
    990 			continue;
    991 
    992 		/*
    993 		 * if we got a matching prefix route, move IFA_ROUTE to him
    994 		 */
    995 		if ((ia->ia_flags & IFA_ROUTE) == 0) {
    996 			rtinit(&(target->ia_ifa), (int)RTM_DELETE,
    997 			    rtinitflags(target));
    998 			target->ia_flags &= ~IFA_ROUTE;
    999 
   1000 			error = rtinit(&ia->ia_ifa, (int)RTM_ADD,
   1001 			    rtinitflags(ia) | RTF_UP);
   1002 			if (error == 0)
   1003 				ia->ia_flags |= IFA_ROUTE;
   1004 			return error;
   1005 		}
   1006 	}
   1007 
   1008 	/*
   1009 	 * noone seem to have prefix route.  remove it.
   1010 	 */
   1011 	rtinit(&(target->ia_ifa), (int)RTM_DELETE, rtinitflags(target));
   1012 	target->ia_flags &= ~IFA_ROUTE;
   1013 	return 0;
   1014 }
   1015 
   1016 #undef rtinitflags
   1017 
   1018 /*
   1019  * Return 1 if the address might be a local broadcast address.
   1020  */
   1021 int
   1022 in_broadcast(in, ifp)
   1023 	struct in_addr in;
   1024 	struct ifnet *ifp;
   1025 {
   1026 	struct ifaddr *ifa;
   1027 
   1028 	if (in.s_addr == INADDR_BROADCAST ||
   1029 	    in_nullhost(in))
   1030 		return 1;
   1031 	if ((ifp->if_flags & IFF_BROADCAST) == 0)
   1032 		return 0;
   1033 	/*
   1034 	 * Look through the list of addresses for a match
   1035 	 * with a broadcast address.
   1036 	 */
   1037 #define ia (ifatoia(ifa))
   1038 	TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list)
   1039 		if (ifa->ifa_addr->sa_family == AF_INET &&
   1040 		    !in_hosteq(in, ia->ia_addr.sin_addr) &&
   1041 		    (in_hosteq(in, ia->ia_broadaddr.sin_addr) ||
   1042 		     in_hosteq(in, ia->ia_netbroadcast) ||
   1043 		     (hostzeroisbroadcast &&
   1044 		      /*
   1045 		       * Check for old-style (host 0) broadcast.
   1046 		       */
   1047 		      (in.s_addr == ia->ia_subnet ||
   1048 		       in.s_addr == ia->ia_net))))
   1049 			return 1;
   1050 	return (0);
   1051 #undef ia
   1052 }
   1053 
   1054 /*
   1055  * Add an address to the list of IP multicast addresses for a given interface.
   1056  */
   1057 struct in_multi *
   1058 in_addmulti(ap, ifp)
   1059 	struct in_addr *ap;
   1060 	struct ifnet *ifp;
   1061 {
   1062 	struct in_multi *inm;
   1063 	struct ifreq ifr;
   1064 	int s = splsoftnet();
   1065 
   1066 	/*
   1067 	 * See if address already in list.
   1068 	 */
   1069 	IN_LOOKUP_MULTI(*ap, ifp, inm);
   1070 	if (inm != NULL) {
   1071 		/*
   1072 		 * Found it; just increment the reference count.
   1073 		 */
   1074 		++inm->inm_refcount;
   1075 	} else {
   1076 		/*
   1077 		 * New address; allocate a new multicast record
   1078 		 * and link it into the interface's multicast list.
   1079 		 */
   1080 		inm = pool_get(&inmulti_pool, PR_NOWAIT);
   1081 		if (inm == NULL) {
   1082 			splx(s);
   1083 			return (NULL);
   1084 		}
   1085 		inm->inm_addr = *ap;
   1086 		inm->inm_ifp = ifp;
   1087 		inm->inm_refcount = 1;
   1088                 LIST_INSERT_HEAD(
   1089                     &IN_MULTI_HASH(inm->inm_addr.s_addr, ifp),
   1090                     inm, inm_list);
   1091 		/*
   1092 		 * Ask the network driver to update its multicast reception
   1093 		 * filter appropriately for the new address.
   1094 		 */
   1095 		satosin(&ifr.ifr_addr)->sin_len = sizeof(struct sockaddr_in);
   1096 		satosin(&ifr.ifr_addr)->sin_family = AF_INET;
   1097 		satosin(&ifr.ifr_addr)->sin_addr = *ap;
   1098 		if ((ifp->if_ioctl == NULL) ||
   1099 		    (*ifp->if_ioctl)(ifp, SIOCADDMULTI,(caddr_t)&ifr) != 0) {
   1100 			LIST_REMOVE(inm, inm_list);
   1101 			pool_put(&inmulti_pool, inm);
   1102 			splx(s);
   1103 			return (NULL);
   1104 		}
   1105 		/*
   1106 		 * Let IGMP know that we have joined a new IP multicast group.
   1107 		 */
   1108 		if (igmp_joingroup(inm) != 0) {
   1109 			LIST_REMOVE(inm, inm_list);
   1110 			pool_put(&inmulti_pool, inm);
   1111 			splx(s);
   1112 			return (NULL);
   1113 		}
   1114 	}
   1115 	splx(s);
   1116 	return (inm);
   1117 }
   1118 
   1119 /*
   1120  * Delete a multicast address record.
   1121  */
   1122 void
   1123 in_delmulti(inm)
   1124 	struct in_multi *inm;
   1125 {
   1126 	struct ifreq ifr;
   1127 	int s = splsoftnet();
   1128 
   1129 	if (--inm->inm_refcount == 0) {
   1130 		/*
   1131 		 * No remaining claims to this record; let IGMP know that
   1132 		 * we are leaving the multicast group.
   1133 		 */
   1134 		igmp_leavegroup(inm);
   1135 		/*
   1136 		 * Unlink from list.
   1137 		 */
   1138 		LIST_REMOVE(inm, inm_list);
   1139 		/*
   1140 		 * Notify the network driver to update its multicast reception
   1141 		 * filter.
   1142 		 */
   1143 		satosin(&ifr.ifr_addr)->sin_family = AF_INET;
   1144 		satosin(&ifr.ifr_addr)->sin_addr = inm->inm_addr;
   1145 		(*inm->inm_ifp->if_ioctl)(inm->inm_ifp, SIOCDELMULTI,
   1146 							     (caddr_t)&ifr);
   1147 		pool_put(&inmulti_pool, inm);
   1148 	}
   1149 	splx(s);
   1150 }
   1151 #endif
   1152