Home | History | Annotate | Line # | Download | only in netinet6
nd6_nbr.c revision 1.151
      1 /*	$NetBSD: nd6_nbr.c,v 1.151 2018/03/07 01:37:24 ozaki-r Exp $	*/
      2 /*	$KAME: nd6_nbr.c,v 1.61 2001/02/10 16:06:14 jinmei Exp $	*/
      3 
      4 /*
      5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6  * All rights reserved.
      7  *
      8  * Redistribution and use in source and binary forms, with or without
      9  * modification, are permitted provided that the following conditions
     10  * are met:
     11  * 1. Redistributions of source code must retain the above copyright
     12  *    notice, this list of conditions and the following disclaimer.
     13  * 2. Redistributions in binary form must reproduce the above copyright
     14  *    notice, this list of conditions and the following disclaimer in the
     15  *    documentation and/or other materials provided with the distribution.
     16  * 3. Neither the name of the project nor the names of its contributors
     17  *    may be used to endorse or promote products derived from this software
     18  *    without specific prior written permission.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  * SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.151 2018/03/07 01:37:24 ozaki-r Exp $");
     35 
     36 #ifdef _KERNEL_OPT
     37 #include "opt_inet.h"
     38 #include "opt_net_mpsafe.h"
     39 #endif
     40 
     41 #include <sys/param.h>
     42 #include <sys/systm.h>
     43 #include <sys/kmem.h>
     44 #include <sys/mbuf.h>
     45 #include <sys/socket.h>
     46 #include <sys/socketvar.h>
     47 #include <sys/sockio.h>
     48 #include <sys/time.h>
     49 #include <sys/kernel.h>
     50 #include <sys/errno.h>
     51 #include <sys/ioctl.h>
     52 #include <sys/syslog.h>
     53 #include <sys/queue.h>
     54 #include <sys/callout.h>
     55 #include <sys/cprng.h>
     56 
     57 #include <net/if.h>
     58 #include <net/if_types.h>
     59 #include <net/if_dl.h>
     60 #include <net/route.h>
     61 
     62 #include <netinet/in.h>
     63 #include <netinet/in_var.h>
     64 #include <netinet6/in6_var.h>
     65 #include <netinet6/in6_ifattach.h>
     66 #include <netinet/ip6.h>
     67 #include <netinet6/ip6_var.h>
     68 #include <netinet6/scope6_var.h>
     69 #include <netinet6/nd6.h>
     70 #include <netinet/icmp6.h>
     71 #include <netinet6/icmp6_private.h>
     72 
     73 #include "carp.h"
     74 #if NCARP > 0
     75 #include <netinet/ip_carp.h>
     76 #endif
     77 
     78 #include <net/net_osdep.h>
     79 
     80 struct dadq;
     81 static struct dadq *nd6_dad_find(struct ifaddr *, struct nd_opt_nonce *);
     82 static void nd6_dad_starttimer(struct dadq *, int);
     83 static void nd6_dad_destroytimer(struct dadq *);
     84 static void nd6_dad_timer(struct dadq *);
     85 static void nd6_dad_ns_output(struct dadq *, struct ifaddr *);
     86 static void nd6_dad_ns_input(struct ifaddr *, struct nd_opt_nonce *);
     87 static void nd6_dad_na_input(struct ifaddr *);
     88 static void nd6_dad_duplicated(struct dadq *);
     89 
     90 static int dad_maxtry = 15;	/* max # of *tries* to transmit DAD packet */
     91 
     92 /*
     93  * Input a Neighbor Solicitation Message.
     94  *
     95  * Based on RFC 2461
     96  * Based on RFC 2462 (duplicate address detection)
     97  */
     98 void
     99 nd6_ns_input(struct mbuf *m, int off, int icmp6len)
    100 {
    101 	struct ifnet *ifp;
    102 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
    103 	struct nd_neighbor_solicit *nd_ns;
    104 	struct in6_addr saddr6 = ip6->ip6_src;
    105 	struct in6_addr daddr6 = ip6->ip6_dst;
    106 	struct in6_addr taddr6;
    107 	struct in6_addr myaddr6;
    108 	char *lladdr = NULL;
    109 	struct ifaddr *ifa = NULL;
    110 	int lladdrlen = 0;
    111 	int anycast = 0, proxy = 0, tentative = 0;
    112 	int router = ip6_forwarding;
    113 	int tlladdr;
    114 	union nd_opts ndopts;
    115 	const struct sockaddr_dl *proxydl = NULL;
    116 	struct psref psref;
    117 	struct psref psref_ia;
    118 	char ip6buf[INET6_ADDRSTRLEN], ip6buf2[INET6_ADDRSTRLEN];
    119 
    120 	ifp = m_get_rcvif_psref(m, &psref);
    121 	if (ifp == NULL)
    122 		goto freeit;
    123 
    124 	IP6_EXTHDR_GET(nd_ns, struct nd_neighbor_solicit *, m, off, icmp6len);
    125 	if (nd_ns == NULL) {
    126 		ICMP6_STATINC(ICMP6_STAT_TOOSHORT);
    127 		m_put_rcvif_psref(ifp, &psref);
    128 		return;
    129 	}
    130 	ip6 = mtod(m, struct ip6_hdr *); /* adjust pointer for safety */
    131 	taddr6 = nd_ns->nd_ns_target;
    132 	if (in6_setscope(&taddr6, ifp, NULL) != 0)
    133 		goto bad;
    134 
    135 	if (ip6->ip6_hlim != 255) {
    136 		nd6log(LOG_ERR, "invalid hlim (%d) from %s to %s on %s\n",
    137 		    ip6->ip6_hlim, IN6_PRINT(ip6buf, &ip6->ip6_src),
    138 		    IN6_PRINT(ip6buf2, &ip6->ip6_dst), if_name(ifp));
    139 		goto bad;
    140 	}
    141 
    142 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
    143 		/* dst has to be a solicited node multicast address. */
    144 		/* don't check ifindex portion */
    145 		if (daddr6.s6_addr16[0] == IPV6_ADDR_INT16_MLL &&
    146 		    daddr6.s6_addr32[1] == 0 &&
    147 		    daddr6.s6_addr32[2] == IPV6_ADDR_INT32_ONE &&
    148 		    daddr6.s6_addr8[12] == 0xff) {
    149 			; /* good */
    150 		} else {
    151 			nd6log(LOG_INFO, "bad DAD packet (wrong ip6 dst)\n");
    152 			goto bad;
    153 		}
    154 	} else {
    155 		struct sockaddr_in6 ssin6;
    156 
    157 		/*
    158 		 * Make sure the source address is from a neighbor's address.
    159 		 */
    160 		sockaddr_in6_init(&ssin6, &saddr6, 0, 0, 0);
    161 		if (nd6_is_addr_neighbor(&ssin6, ifp) == 0) {
    162 			nd6log(LOG_INFO,
    163 			    "NS packet from non-neighbor %s on %s\n",
    164 			    IN6_PRINT(ip6buf, &saddr6), if_name(ifp));
    165 			goto bad;
    166 		}
    167 	}
    168 
    169 
    170 	if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
    171 		nd6log(LOG_INFO, "bad NS target (multicast)\n");
    172 		goto bad;
    173 	}
    174 
    175 	icmp6len -= sizeof(*nd_ns);
    176 	nd6_option_init(nd_ns + 1, icmp6len, &ndopts);
    177 	if (nd6_options(&ndopts) < 0) {
    178 		nd6log(LOG_INFO, "invalid ND option, ignored\n");
    179 		/* nd6_options have incremented stats */
    180 		goto freeit;
    181 	}
    182 
    183 	if (ndopts.nd_opts_src_lladdr) {
    184 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
    185 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
    186 	}
    187 
    188 	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src) && lladdr) {
    189 		nd6log(LOG_INFO,
    190 		    "bad DAD packet (link-layer address option)\n");
    191 		goto bad;
    192 	}
    193 
    194 	/*
    195 	 * Attaching target link-layer address to the NA?
    196 	 * (RFC 2461 7.2.4)
    197 	 *
    198 	 * NS IP dst is multicast			MUST add
    199 	 * Otherwise					MAY be omitted
    200 	 *
    201 	 * In this implementation, we omit the target link-layer address
    202 	 * in the "MAY" case.
    203 	 */
    204 #if 0 /* too much! */
    205 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &daddr6);
    206 	if (ifa && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST))
    207 		tlladdr = 0;
    208 	else
    209 #endif
    210 	if (!IN6_IS_ADDR_MULTICAST(&daddr6))
    211 		tlladdr = 0;
    212 	else
    213 		tlladdr = 1;
    214 
    215 	/*
    216 	 * Target address (taddr6) must be either:
    217 	 * (1) Valid unicast/anycast address for my receiving interface,
    218 	 * (2) Unicast address for which I'm offering proxy service, or
    219 	 * (3) "tentative" address on which DAD is being performed.
    220 	 */
    221 	/* (1) and (3) check. */
    222 #if NCARP > 0
    223 	if (ifp->if_carp && ifp->if_type != IFT_CARP) {
    224 		int s = pserialize_read_enter();
    225 		ifa = carp_iamatch6(ifp->if_carp, &taddr6);
    226 		if (ifa != NULL)
    227 			ifa_acquire(ifa, &psref_ia);
    228 		pserialize_read_exit(s);
    229 	} else
    230 		ifa = NULL;
    231 	if (!ifa)
    232 		ifa = (struct ifaddr *)in6ifa_ifpwithaddr_psref(ifp, &taddr6,
    233 		    &psref_ia);
    234 #else
    235 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr_psref(ifp, &taddr6,
    236 	    &psref_ia);
    237 #endif
    238 
    239 	/* (2) check. */
    240 	if (ifa == NULL) {
    241 		struct rtentry *rt;
    242 		struct sockaddr_in6 tsin6;
    243 
    244 		sockaddr_in6_init(&tsin6, &taddr6, 0, 0, 0);
    245 
    246 		rt = rtalloc1(sin6tosa(&tsin6), 0);
    247 		if (rt && (rt->rt_flags & RTF_ANNOUNCE) != 0 &&
    248 		    rt->rt_gateway->sa_family == AF_LINK) {
    249 			/*
    250 			 * proxy NDP for single entry
    251 			 */
    252 			ifa = (struct ifaddr *)in6ifa_ifpforlinklocal_psref(ifp,
    253 				IN6_IFF_NOTREADY|IN6_IFF_ANYCAST, &psref_ia);
    254 			if (ifa) {
    255 				proxy = 1;
    256 				proxydl = satocsdl(rt->rt_gateway);
    257 				router = 0;	/* XXX */
    258 			}
    259 		}
    260 		if (rt)
    261 			rt_unref(rt);
    262 	}
    263 	if (ifa == NULL) {
    264 		/*
    265 		 * We've got an NS packet, and we don't have that address
    266 		 * assigned for us.  We MUST silently ignore it.
    267 		 * See RFC2461 7.2.3.
    268 		 */
    269 		goto freeit;
    270 	}
    271 	myaddr6 = *IFA_IN6(ifa);
    272 	anycast = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST;
    273 	tentative = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE;
    274 	if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DUPLICATED)
    275 		goto freeit;
    276 
    277 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
    278 		nd6log(LOG_INFO, "lladdrlen mismatch for %s "
    279 		    "(if %d, NS packet %d)\n",
    280 		    IN6_PRINT(ip6buf, &taddr6),
    281 		    ifp->if_addrlen, lladdrlen - 2);
    282 		goto bad;
    283 	}
    284 
    285 	if (IN6_ARE_ADDR_EQUAL(&myaddr6, &saddr6)) {
    286 		nd6log(LOG_INFO, "duplicate IP6 address %s\n",
    287 		    IN6_PRINT(ip6buf, &saddr6));
    288 		goto freeit;
    289 	}
    290 
    291 	/*
    292 	 * We have neighbor solicitation packet, with target address equals to
    293 	 * one of my tentative address.
    294 	 *
    295 	 * src addr	how to process?
    296 	 * ---		---
    297 	 * multicast	of course, invalid (rejected in ip6_input)
    298 	 * unicast	somebody is doing address resolution -> ignore
    299 	 * unspec	dup address detection
    300 	 *
    301 	 * The processing is defined in RFC 2462.
    302 	 */
    303 	if (tentative) {
    304 		/*
    305 		 * If source address is unspecified address, it is for
    306 		 * duplicate address detection.
    307 		 *
    308 		 * If not, the packet is for addess resolution;
    309 		 * silently ignore it.
    310 		 */
    311 		if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
    312 			nd6_dad_ns_input(ifa, ndopts.nd_opts_nonce);
    313 		ifa_release(ifa, &psref_ia);
    314 		ifa = NULL;
    315 
    316 		goto freeit;
    317 	}
    318 	ifa_release(ifa, &psref_ia);
    319 	ifa = NULL;
    320 
    321 	/*
    322 	 * If the source address is unspecified address, entries must not
    323 	 * be created or updated.
    324 	 * It looks that sender is performing DAD.  Output NA toward
    325 	 * all-node multicast address, to tell the sender that I'm using
    326 	 * the address.
    327 	 * S bit ("solicited") must be zero.
    328 	 */
    329 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
    330 		struct in6_addr in6_all;
    331 
    332 		in6_all = in6addr_linklocal_allnodes;
    333 		if (in6_setscope(&in6_all, ifp, NULL) != 0)
    334 			goto bad;
    335 		nd6_na_output(ifp, &in6_all, &taddr6,
    336 		    ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
    337 		    (ip6_forwarding ? ND_NA_FLAG_ROUTER : 0),
    338 		    tlladdr, (const struct sockaddr *)proxydl);
    339 		goto freeit;
    340 	}
    341 
    342 	nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_NEIGHBOR_SOLICIT, 0);
    343 
    344 	nd6_na_output(ifp, &saddr6, &taddr6,
    345 	    ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
    346 	    (router ? ND_NA_FLAG_ROUTER : 0) | ND_NA_FLAG_SOLICITED,
    347 	    tlladdr, (const struct sockaddr *)proxydl);
    348  freeit:
    349 	ifa_release(ifa, &psref_ia);
    350 	m_put_rcvif_psref(ifp, &psref);
    351 	m_freem(m);
    352 	return;
    353 
    354  bad:
    355 	nd6log(LOG_ERR, "src=%s\n", IN6_PRINT(ip6buf, &saddr6));
    356 	nd6log(LOG_ERR, "dst=%s\n", IN6_PRINT(ip6buf, &daddr6));
    357 	nd6log(LOG_ERR, "tgt=%s\n", IN6_PRINT(ip6buf, &taddr6));
    358 	ICMP6_STATINC(ICMP6_STAT_BADNS);
    359 	ifa_release(ifa, &psref_ia);
    360 	m_put_rcvif_psref(ifp, &psref);
    361 	m_freem(m);
    362 }
    363 
    364 /*
    365  * Output a Neighbor Solicitation Message. Caller specifies:
    366  *	- ICMP6 header source IP6 address
    367  *	- ND6 header target IP6 address
    368  *	- ND6 header source datalink address
    369  *
    370  * Based on RFC 2461
    371  * Based on RFC 2462 (duplicate address detection)
    372  */
    373 void
    374 nd6_ns_output(struct ifnet *ifp, const struct in6_addr *daddr6,
    375     const struct in6_addr *taddr6,
    376     struct in6_addr *hsrc,
    377     uint8_t *nonce		/* duplicate address detection */)
    378 {
    379 	struct mbuf *m;
    380 	struct ip6_hdr *ip6;
    381 	struct nd_neighbor_solicit *nd_ns;
    382 	struct in6_addr *src, src_in;
    383 	struct ip6_moptions im6o;
    384 	int icmp6len;
    385 	int maxlen;
    386 	const void *mac;
    387 	struct route ro;
    388 
    389 	if (IN6_IS_ADDR_MULTICAST(taddr6))
    390 		return;
    391 
    392 	memset(&ro, 0, sizeof(ro));
    393 
    394 	/* estimate the size of message */
    395 	maxlen = sizeof(*ip6) + sizeof(*nd_ns);
    396 	maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
    397 	KASSERTMSG(max_linkhdr + maxlen < MCLBYTES,
    398 	    "max_linkhdr + maxlen >= MCLBYTES (%d + %d >= %d)",
    399 	    max_linkhdr, maxlen, MCLBYTES);
    400 
    401 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    402 	if (m && max_linkhdr + maxlen >= MHLEN) {
    403 		MCLGET(m, M_DONTWAIT);
    404 		if ((m->m_flags & M_EXT) == 0) {
    405 			m_free(m);
    406 			m = NULL;
    407 		}
    408 	}
    409 	if (m == NULL)
    410 		return;
    411 	m_reset_rcvif(m);
    412 
    413 	if (daddr6 == NULL || IN6_IS_ADDR_MULTICAST(daddr6)) {
    414 		m->m_flags |= M_MCAST;
    415 		im6o.im6o_multicast_if_index = if_get_index(ifp);
    416 		im6o.im6o_multicast_hlim = 255;
    417 		im6o.im6o_multicast_loop = 0;
    418 	}
    419 
    420 	icmp6len = sizeof(*nd_ns);
    421 	m->m_pkthdr.len = m->m_len = sizeof(*ip6) + icmp6len;
    422 	m->m_data += max_linkhdr;	/* or MH_ALIGN() equivalent? */
    423 
    424 	/* fill neighbor solicitation packet */
    425 	ip6 = mtod(m, struct ip6_hdr *);
    426 	ip6->ip6_flow = 0;
    427 	ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
    428 	ip6->ip6_vfc |= IPV6_VERSION;
    429 	/* ip6->ip6_plen will be set later */
    430 	ip6->ip6_nxt = IPPROTO_ICMPV6;
    431 	ip6->ip6_hlim = 255;
    432 	if (daddr6)
    433 		ip6->ip6_dst = *daddr6;
    434 	else {
    435 		ip6->ip6_dst.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
    436 		ip6->ip6_dst.s6_addr16[1] = 0;
    437 		ip6->ip6_dst.s6_addr32[1] = 0;
    438 		ip6->ip6_dst.s6_addr32[2] = IPV6_ADDR_INT32_ONE;
    439 		ip6->ip6_dst.s6_addr32[3] = taddr6->s6_addr32[3];
    440 		ip6->ip6_dst.s6_addr8[12] = 0xff;
    441 		if (in6_setscope(&ip6->ip6_dst, ifp, NULL) != 0)
    442 			goto bad;
    443 	}
    444 	if (nonce == NULL) {
    445 		int s;
    446 		/*
    447 		 * RFC2461 7.2.2:
    448 		 * "If the source address of the packet prompting the
    449 		 * solicitation is the same as one of the addresses assigned
    450 		 * to the outgoing interface, that address SHOULD be placed
    451 		 * in the IP Source Address of the outgoing solicitation.
    452 		 * Otherwise, any one of the addresses assigned to the
    453 		 * interface should be used."
    454 		 *
    455 		 * We use the source address for the prompting packet
    456 		 * (hsrc), if:
    457 		 * - hsrc is given from the caller (by giving "ln"), and
    458 		 * - hsrc belongs to the outgoing interface.
    459 		 * Otherwise, we perform the source address selection as usual.
    460 		 */
    461 		s = pserialize_read_enter();
    462 		if (hsrc && in6ifa_ifpwithaddr(ifp, hsrc))
    463 			src = hsrc;
    464 		else {
    465 			int error;
    466 			struct sockaddr_in6 dst_sa;
    467 
    468 			sockaddr_in6_init(&dst_sa, &ip6->ip6_dst, 0, 0, 0);
    469 
    470 			error = in6_selectsrc(&dst_sa, NULL,
    471 			    NULL, &ro, NULL, NULL, NULL, &src_in);
    472 			if (error != 0) {
    473 				char ip6buf[INET6_ADDRSTRLEN];
    474 				nd6log(LOG_DEBUG, "source can't be "
    475 				    "determined: dst=%s, error=%d\n",
    476 				    IN6_PRINT(ip6buf, &dst_sa.sin6_addr),
    477 				    error);
    478 				pserialize_read_exit(s);
    479 				goto bad;
    480 			}
    481 			src = &src_in;
    482 		}
    483 		pserialize_read_exit(s);
    484 	} else {
    485 		/*
    486 		 * Source address for DAD packet must always be IPv6
    487 		 * unspecified address. (0::0)
    488 		 * We actually don't have to 0-clear the address (we did it
    489 		 * above), but we do so here explicitly to make the intention
    490 		 * clearer.
    491 		 */
    492 		memset(&src_in, 0, sizeof(src_in));
    493 		src = &src_in;
    494 	}
    495 	ip6->ip6_src = *src;
    496 	nd_ns = (struct nd_neighbor_solicit *)(ip6 + 1);
    497 	nd_ns->nd_ns_type = ND_NEIGHBOR_SOLICIT;
    498 	nd_ns->nd_ns_code = 0;
    499 	nd_ns->nd_ns_reserved = 0;
    500 	nd_ns->nd_ns_target = *taddr6;
    501 	in6_clearscope(&nd_ns->nd_ns_target); /* XXX */
    502 
    503 	/*
    504 	 * Add source link-layer address option.
    505 	 *
    506 	 *				spec		implementation
    507 	 *				---		---
    508 	 * DAD packet			MUST NOT	do not add the option
    509 	 * there's no link layer address:
    510 	 *				impossible	do not add the option
    511 	 * there's link layer address:
    512 	 *	Multicast NS		MUST add one	add the option
    513 	 *	Unicast NS		SHOULD add one	add the option
    514 	 */
    515 	if (nonce == NULL && (mac = nd6_ifptomac(ifp))) {
    516 		int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
    517 		struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_ns + 1);
    518 		/* 8 byte alignments... */
    519 		optlen = (optlen + 7) & ~7;
    520 
    521 		m->m_pkthdr.len += optlen;
    522 		m->m_len += optlen;
    523 		icmp6len += optlen;
    524 		memset((void *)nd_opt, 0, optlen);
    525 		nd_opt->nd_opt_type = ND_OPT_SOURCE_LINKADDR;
    526 		nd_opt->nd_opt_len = optlen >> 3;
    527 		memcpy((void *)(nd_opt + 1), mac, ifp->if_addrlen);
    528 	}
    529 
    530 	/* Add a nonce option (RFC 3971) to detect looped back NS messages.
    531 	 * This behavior is documented in RFC 7527. */
    532 	if (nonce != NULL) {
    533 		int optlen = sizeof(struct nd_opt_hdr) + ND_OPT_NONCE_LEN;
    534 		struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_ns + 1);
    535 
    536 		/* 8-byte alignment is required. */
    537 		optlen = (optlen + 7) & ~7;
    538 		m->m_pkthdr.len += optlen;
    539 		m->m_len += optlen;
    540 		icmp6len += optlen;
    541 		memset(nd_opt, 0, optlen);
    542 		nd_opt->nd_opt_type = ND_OPT_NONCE;
    543 		nd_opt->nd_opt_len = optlen >> 3;
    544 		memcpy(nd_opt + 1, nonce, ND_OPT_NONCE_LEN);
    545 	}
    546 
    547 	ip6->ip6_plen = htons((u_int16_t)icmp6len);
    548 	nd_ns->nd_ns_cksum = 0;
    549 	nd_ns->nd_ns_cksum =
    550 	    in6_cksum(m, IPPROTO_ICMPV6, sizeof(*ip6), icmp6len);
    551 
    552 	ip6_output(m, NULL, &ro, nonce != NULL ? IPV6_UNSPECSRC : 0,
    553 	    &im6o, NULL, NULL);
    554 	icmp6_ifstat_inc(ifp, ifs6_out_msg);
    555 	icmp6_ifstat_inc(ifp, ifs6_out_neighborsolicit);
    556 	ICMP6_STATINC(ICMP6_STAT_OUTHIST + ND_NEIGHBOR_SOLICIT);
    557 
    558 	rtcache_free(&ro);
    559 	return;
    560 
    561   bad:
    562 	rtcache_free(&ro);
    563 	m_freem(m);
    564 	return;
    565 }
    566 
    567 /*
    568  * Neighbor advertisement input handling.
    569  *
    570  * Based on RFC 2461
    571  * Based on RFC 2462 (duplicate address detection)
    572  *
    573  * the following items are not implemented yet:
    574  * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
    575  * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
    576  */
    577 void
    578 nd6_na_input(struct mbuf *m, int off, int icmp6len)
    579 {
    580 	struct ifnet *ifp;
    581 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
    582 	struct nd_neighbor_advert *nd_na;
    583 	struct in6_addr saddr6 = ip6->ip6_src;
    584 	struct in6_addr daddr6 = ip6->ip6_dst;
    585 	struct in6_addr taddr6;
    586 	int flags;
    587 	int is_router;
    588 	int is_solicited;
    589 	int is_override;
    590 	char *lladdr = NULL;
    591 	int lladdrlen = 0;
    592 	struct ifaddr *ifa;
    593 	struct llentry *ln = NULL;
    594 	union nd_opts ndopts;
    595 	struct sockaddr_in6 ssin6;
    596 	int rt_announce;
    597 	bool checklink = false;
    598 	struct psref psref;
    599 	struct psref psref_ia;
    600 	char ip6buf[INET6_ADDRSTRLEN], ip6buf2[INET6_ADDRSTRLEN];
    601 
    602 	ifp = m_get_rcvif_psref(m, &psref);
    603 	if (ifp == NULL)
    604 		goto freeit;
    605 
    606 	if (ip6->ip6_hlim != 255) {
    607 		nd6log(LOG_ERR,
    608 		    "invalid hlim (%d) from %s to %s on %s\n",
    609 		    ip6->ip6_hlim, IN6_PRINT(ip6buf, &ip6->ip6_src),
    610 		    IN6_PRINT(ip6buf2, &ip6->ip6_dst), if_name(ifp));
    611 		goto bad;
    612 	}
    613 
    614 	IP6_EXTHDR_GET(nd_na, struct nd_neighbor_advert *, m, off, icmp6len);
    615 	if (nd_na == NULL) {
    616 		m_put_rcvif_psref(ifp, &psref);
    617 		ICMP6_STATINC(ICMP6_STAT_TOOSHORT);
    618 		return;
    619 	}
    620 
    621 	flags = nd_na->nd_na_flags_reserved;
    622 	is_router = ((flags & ND_NA_FLAG_ROUTER) != 0);
    623 	is_solicited = ((flags & ND_NA_FLAG_SOLICITED) != 0);
    624 	is_override = ((flags & ND_NA_FLAG_OVERRIDE) != 0);
    625 
    626 	taddr6 = nd_na->nd_na_target;
    627 	if (in6_setscope(&taddr6, ifp, NULL)) {
    628 		goto bad;
    629 	}
    630 
    631 	if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
    632 		nd6log(LOG_ERR, "invalid target address %s\n",
    633 		    IN6_PRINT(ip6buf, &taddr6));
    634 		goto bad;
    635 	}
    636 	if (is_solicited && IN6_IS_ADDR_MULTICAST(&daddr6)) {
    637 		nd6log(LOG_ERR, "a solicited adv is multicasted\n");
    638 		goto bad;
    639 	}
    640 
    641 	icmp6len -= sizeof(*nd_na);
    642 	nd6_option_init(nd_na + 1, icmp6len, &ndopts);
    643 	if (nd6_options(&ndopts) < 0) {
    644 		nd6log(LOG_INFO, "invalid ND option, ignored\n");
    645 		/* nd6_options have incremented stats */
    646 		goto freeit;
    647 	}
    648 
    649 	if (ndopts.nd_opts_tgt_lladdr) {
    650 		lladdr = (char *)(ndopts.nd_opts_tgt_lladdr + 1);
    651 		lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3;
    652 	}
    653 
    654 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr_psref(ifp, &taddr6, &psref_ia);
    655 
    656 	/*
    657 	 * Target address matches one of my interface address.
    658 	 *
    659 	 * If my address is tentative, this means that there's somebody
    660 	 * already using the same address as mine.  This indicates DAD failure.
    661 	 * This is defined in RFC 2462.
    662 	 *
    663 	 * Otherwise, process as defined in RFC 2461.
    664 	 */
    665 	if (ifa
    666 	 && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE)) {
    667 		nd6_dad_na_input(ifa);
    668 		ifa_release(ifa, &psref_ia);
    669 		ifa = NULL;
    670 		goto freeit;
    671 	}
    672 
    673 	/* Just for safety, maybe unnecessary. */
    674 	if (ifa) {
    675 		log(LOG_ERR,
    676 		    "nd6_na_input: duplicate IP6 address %s\n",
    677 		    IN6_PRINT(ip6buf, &taddr6));
    678 		ifa_release(ifa, &psref_ia);
    679 		ifa = NULL;
    680 		goto freeit;
    681 	}
    682 
    683 	/*
    684 	 * Make sure the source address is from a neighbor's address.
    685 	 */
    686 	sockaddr_in6_init(&ssin6, &saddr6, 0, 0, 0);
    687 	if (nd6_is_addr_neighbor(&ssin6, ifp) == 0) {
    688 		nd6log(LOG_INFO, "ND packet from non-neighbor %s on %s\n",
    689 		    IN6_PRINT(ip6buf, &saddr6), if_name(ifp));
    690 		goto bad;
    691 	}
    692 
    693 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
    694 		nd6log(LOG_INFO, "lladdrlen mismatch for %s "
    695 		    "(if %d, NA packet %d)\n", IN6_PRINT(ip6buf, &taddr6),
    696 		    ifp->if_addrlen, lladdrlen - 2);
    697 		goto bad;
    698 	}
    699 
    700 	/*
    701 	 * If no neighbor cache entry is found, NA SHOULD silently be
    702 	 * discarded.
    703 	 */
    704 	ln = nd6_lookup(&taddr6, ifp, true);
    705 	if (ln == NULL)
    706 		goto freeit;
    707 
    708 	rt_announce = 0;
    709 	if (ln->ln_state == ND6_LLINFO_INCOMPLETE) {
    710 		/*
    711 		 * If the link-layer has address, and no lladdr option came,
    712 		 * discard the packet.
    713 		 */
    714 		if (ifp->if_addrlen && !lladdr)
    715 			goto freeit;
    716 
    717 		/*
    718 		 * Record link-layer address, and update the state.
    719 		 */
    720 		memcpy(&ln->ll_addr, lladdr, ifp->if_addrlen);
    721 		ln->la_flags |= LLE_VALID;
    722 		rt_announce = 1;
    723 		if (is_solicited) {
    724 			ln->ln_state = ND6_LLINFO_REACHABLE;
    725 			ln->ln_byhint = 0;
    726 			if (!ND6_LLINFO_PERMANENT(ln)) {
    727 				nd6_llinfo_settimer(ln,
    728 				    ND_IFINFO(ln->lle_tbl->llt_ifp)->reachable * hz);
    729 			}
    730 		} else {
    731 			ln->ln_state = ND6_LLINFO_STALE;
    732 			nd6_llinfo_settimer(ln, nd6_gctimer * hz);
    733 		}
    734 		if ((ln->ln_router = is_router) != 0) {
    735 			/*
    736 			 * This means a router's state has changed from
    737 			 * non-reachable to probably reachable, and might
    738 			 * affect the status of associated prefixes..
    739 			 */
    740 			checklink = true;
    741 		}
    742 	} else {
    743 		int llchange;
    744 
    745 		/*
    746 		 * Check if the link-layer address has changed or not.
    747 		 */
    748 		if (lladdr == NULL)
    749 			llchange = 0;
    750 		else {
    751 			if (ln->la_flags & LLE_VALID) {
    752 				if (memcmp(lladdr, &ln->ll_addr, ifp->if_addrlen))
    753 					llchange = rt_announce = 1;
    754 				else
    755 					llchange = 0;
    756 			} else
    757 				llchange = rt_announce = 1;
    758 		}
    759 
    760 		/*
    761 		 * This is VERY complex.  Look at it with care.
    762 		 *
    763 		 * override solicit lladdr llchange	action
    764 		 *					(L: record lladdr)
    765 		 *
    766 		 *	0	0	n	--	(2c)
    767 		 *	0	0	y	n	(2b) L
    768 		 *	0	0	y	y	(1)    REACHABLE->STALE
    769 		 *	0	1	n	--	(2c)   *->REACHABLE
    770 		 *	0	1	y	n	(2b) L *->REACHABLE
    771 		 *	0	1	y	y	(1)    REACHABLE->STALE
    772 		 *	1	0	n	--	(2a)
    773 		 *	1	0	y	n	(2a) L
    774 		 *	1	0	y	y	(2a) L *->STALE
    775 		 *	1	1	n	--	(2a)   *->REACHABLE
    776 		 *	1	1	y	n	(2a) L *->REACHABLE
    777 		 *	1	1	y	y	(2a) L *->REACHABLE
    778 		 */
    779 		if (!is_override && lladdr != NULL && llchange) { /* (1) */
    780 			/*
    781 			 * If state is REACHABLE, make it STALE.
    782 			 * no other updates should be done.
    783 			 */
    784 			if (ln->ln_state == ND6_LLINFO_REACHABLE) {
    785 				ln->ln_state = ND6_LLINFO_STALE;
    786 				nd6_llinfo_settimer(ln, nd6_gctimer * hz);
    787 			}
    788 			goto freeit;
    789 		} else if (is_override				   /* (2a) */
    790 		    || (!is_override && lladdr != NULL && !llchange) /* (2b) */
    791 		    || lladdr == NULL) {			   /* (2c) */
    792 			/*
    793 			 * Update link-local address, if any.
    794 			 */
    795 			if (lladdr != NULL) {
    796 				memcpy(&ln->ll_addr, lladdr, ifp->if_addrlen);
    797 				ln->la_flags |= LLE_VALID;
    798 			}
    799 
    800 			/*
    801 			 * If solicited, make the state REACHABLE.
    802 			 * If not solicited and the link-layer address was
    803 			 * changed, make it STALE.
    804 			 */
    805 			if (is_solicited) {
    806 				ln->ln_state = ND6_LLINFO_REACHABLE;
    807 				ln->ln_byhint = 0;
    808 				if (!ND6_LLINFO_PERMANENT(ln)) {
    809 					nd6_llinfo_settimer(ln,
    810 					    ND_IFINFO(ifp)->reachable * hz);
    811 				}
    812 			} else {
    813 				if (lladdr && llchange) {
    814 					ln->ln_state = ND6_LLINFO_STALE;
    815 					nd6_llinfo_settimer(ln,
    816 					    nd6_gctimer * hz);
    817 				}
    818 			}
    819 		}
    820 
    821 		if (ln->ln_router && !is_router) {
    822 			/*
    823 			 * The peer dropped the router flag.
    824 			 * Remove the sender from the Default Router List and
    825 			 * update the Destination Cache entries.
    826 			 */
    827 			struct nd_defrouter *dr;
    828 			const struct in6_addr *in6;
    829 
    830 			in6 = &ln->r_l3addr.addr6;
    831 
    832 			ND6_WLOCK();
    833 			dr = nd6_defrouter_lookup(in6, ln->lle_tbl->llt_ifp);
    834 			if (dr)
    835 				nd6_defrtrlist_del(dr, NULL);
    836 			else if (!ip6_forwarding) {
    837 				/*
    838 				 * Even if the neighbor is not in the default
    839 				 * router list, the neighbor may be used
    840 				 * as a next hop for some destinations
    841 				 * (e.g. redirect case). So we must
    842 				 * call nd6_rt_flush explicitly.
    843 				 */
    844 				nd6_rt_flush(&ip6->ip6_src, ln->lle_tbl->llt_ifp);
    845 			}
    846 			ND6_UNLOCK();
    847 		}
    848 		ln->ln_router = is_router;
    849 	}
    850         /*
    851 	 * XXX: does this matter?
    852 	 * rt->rt_flags &= ~RTF_REJECT;
    853 	 */
    854 	ln->ln_asked = 0;
    855 	nd6_llinfo_release_pkts(ln, ifp);
    856 	/* FIXME */
    857 #if 0
    858 	if (rt_announce) /* tell user process about any new lladdr */
    859 		rt_newmsg(RTM_CHANGE, rt);
    860 #endif
    861 
    862  freeit:
    863 	if (ln != NULL)
    864 		LLE_WUNLOCK(ln);
    865 
    866 	if (checklink) {
    867 		ND6_WLOCK();
    868 		nd6_pfxlist_onlink_check();
    869 		ND6_UNLOCK();
    870 	}
    871 
    872 	m_put_rcvif_psref(ifp, &psref);
    873 	m_freem(m);
    874 	return;
    875 
    876  bad:
    877 	if (ln != NULL)
    878 		LLE_WUNLOCK(ln);
    879 
    880 	ICMP6_STATINC(ICMP6_STAT_BADNA);
    881 	m_put_rcvif_psref(ifp, &psref);
    882 	m_freem(m);
    883 }
    884 
    885 /*
    886  * Neighbor advertisement output handling.
    887  *
    888  * Based on RFC 2461
    889  *
    890  * the following items are not implemented yet:
    891  * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
    892  * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
    893  */
    894 void
    895 nd6_na_output(
    896 	struct ifnet *ifp,
    897 	const struct in6_addr *daddr6_0,
    898 	const struct in6_addr *taddr6,
    899 	u_long flags,
    900 	int tlladdr,		/* 1 if include target link-layer address */
    901 	const struct sockaddr *sdl0)	/* sockaddr_dl (= proxy NA) or NULL */
    902 {
    903 	struct mbuf *m;
    904 	struct ip6_hdr *ip6;
    905 	struct nd_neighbor_advert *nd_na;
    906 	struct ip6_moptions im6o;
    907 	struct sockaddr *dst;
    908 	union {
    909 		struct sockaddr		dst;
    910 		struct sockaddr_in6	dst6;
    911 	} u;
    912 	struct in6_addr daddr6;
    913 	int icmp6len, maxlen, error;
    914 	const void *mac;
    915 	struct route ro;
    916 
    917 	mac = NULL;
    918 	memset(&ro, 0, sizeof(ro));
    919 
    920 	daddr6 = *daddr6_0;	/* make a local copy for modification */
    921 
    922 	/* estimate the size of message */
    923 	maxlen = sizeof(*ip6) + sizeof(*nd_na);
    924 	maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
    925 	KASSERTMSG(max_linkhdr + maxlen < MCLBYTES,
    926 	    "max_linkhdr + maxlen >= MCLBYTES (%d + %d >= %d)",
    927 	    max_linkhdr, maxlen, MCLBYTES);
    928 
    929 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    930 	if (m && max_linkhdr + maxlen >= MHLEN) {
    931 		MCLGET(m, M_DONTWAIT);
    932 		if ((m->m_flags & M_EXT) == 0) {
    933 			m_free(m);
    934 			m = NULL;
    935 		}
    936 	}
    937 	if (m == NULL)
    938 		return;
    939 	m_reset_rcvif(m);
    940 
    941 	if (IN6_IS_ADDR_MULTICAST(&daddr6)) {
    942 		m->m_flags |= M_MCAST;
    943 		im6o.im6o_multicast_if_index = if_get_index(ifp);
    944 		im6o.im6o_multicast_hlim = 255;
    945 		im6o.im6o_multicast_loop = 0;
    946 	}
    947 
    948 	icmp6len = sizeof(*nd_na);
    949 	m->m_pkthdr.len = m->m_len = sizeof(struct ip6_hdr) + icmp6len;
    950 	m->m_data += max_linkhdr;	/* or MH_ALIGN() equivalent? */
    951 
    952 	/* fill neighbor advertisement packet */
    953 	ip6 = mtod(m, struct ip6_hdr *);
    954 	ip6->ip6_flow = 0;
    955 	ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
    956 	ip6->ip6_vfc |= IPV6_VERSION;
    957 	ip6->ip6_nxt = IPPROTO_ICMPV6;
    958 	ip6->ip6_hlim = 255;
    959 	if (IN6_IS_ADDR_UNSPECIFIED(&daddr6)) {
    960 		/* reply to DAD */
    961 		daddr6.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
    962 		daddr6.s6_addr16[1] = 0;
    963 		daddr6.s6_addr32[1] = 0;
    964 		daddr6.s6_addr32[2] = 0;
    965 		daddr6.s6_addr32[3] = IPV6_ADDR_INT32_ONE;
    966 		if (in6_setscope(&daddr6, ifp, NULL))
    967 			goto bad;
    968 
    969 		flags &= ~ND_NA_FLAG_SOLICITED;
    970 	}
    971 	ip6->ip6_dst = daddr6;
    972 	sockaddr_in6_init(&u.dst6, &daddr6, 0, 0, 0);
    973 	dst = &u.dst;
    974 	if (rtcache_setdst(&ro, dst) != 0)
    975 		goto bad;
    976 
    977 	/*
    978 	 * Select a source whose scope is the same as that of the dest.
    979 	 */
    980 	error = in6_selectsrc(satosin6(dst), NULL, NULL, &ro, NULL, NULL, NULL,
    981 	    &ip6->ip6_src);
    982 	if (error != 0) {
    983 		char ip6buf[INET6_ADDRSTRLEN];
    984 		nd6log(LOG_DEBUG, "source can't be "
    985 		    "determined: dst=%s, error=%d\n",
    986 		    IN6_PRINT(ip6buf, &satocsin6(dst)->sin6_addr), error);
    987 		goto bad;
    988 	}
    989 	nd_na = (struct nd_neighbor_advert *)(ip6 + 1);
    990 	nd_na->nd_na_type = ND_NEIGHBOR_ADVERT;
    991 	nd_na->nd_na_code = 0;
    992 	nd_na->nd_na_target = *taddr6;
    993 	in6_clearscope(&nd_na->nd_na_target); /* XXX */
    994 
    995 	/*
    996 	 * "tlladdr" indicates NS's condition for adding tlladdr or not.
    997 	 * see nd6_ns_input() for details.
    998 	 * Basically, if NS packet is sent to unicast/anycast addr,
    999 	 * target lladdr option SHOULD NOT be included.
   1000 	 */
   1001 	if (tlladdr) {
   1002 		/*
   1003 		 * sdl0 != NULL indicates proxy NA.  If we do proxy, use
   1004 		 * lladdr in sdl0.  If we are not proxying (sending NA for
   1005 		 * my address) use lladdr configured for the interface.
   1006 		 */
   1007 		if (sdl0 == NULL)
   1008 			mac = nd6_ifptomac(ifp);
   1009 		else if (sdl0->sa_family == AF_LINK) {
   1010 			const struct sockaddr_dl *sdl;
   1011 			sdl = satocsdl(sdl0);
   1012 			if (sdl->sdl_alen == ifp->if_addrlen)
   1013 				mac = CLLADDR(sdl);
   1014 		}
   1015 	}
   1016 	if (tlladdr && mac) {
   1017 		int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
   1018 		struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_na + 1);
   1019 
   1020 		/* roundup to 8 bytes alignment! */
   1021 		optlen = (optlen + 7) & ~7;
   1022 
   1023 		m->m_pkthdr.len += optlen;
   1024 		m->m_len += optlen;
   1025 		icmp6len += optlen;
   1026 		memset((void *)nd_opt, 0, optlen);
   1027 		nd_opt->nd_opt_type = ND_OPT_TARGET_LINKADDR;
   1028 		nd_opt->nd_opt_len = optlen >> 3;
   1029 		memcpy((void *)(nd_opt + 1), mac, ifp->if_addrlen);
   1030 	} else
   1031 		flags &= ~ND_NA_FLAG_OVERRIDE;
   1032 
   1033 	ip6->ip6_plen = htons((u_int16_t)icmp6len);
   1034 	nd_na->nd_na_flags_reserved = flags;
   1035 	nd_na->nd_na_cksum = 0;
   1036 	nd_na->nd_na_cksum =
   1037 	    in6_cksum(m, IPPROTO_ICMPV6, sizeof(struct ip6_hdr), icmp6len);
   1038 
   1039 	ip6_output(m, NULL, NULL, 0, &im6o, NULL, NULL);
   1040 
   1041 	icmp6_ifstat_inc(ifp, ifs6_out_msg);
   1042 	icmp6_ifstat_inc(ifp, ifs6_out_neighboradvert);
   1043 	ICMP6_STATINC(ICMP6_STAT_OUTHIST + ND_NEIGHBOR_ADVERT);
   1044 
   1045 	rtcache_free(&ro);
   1046 	return;
   1047 
   1048   bad:
   1049 	rtcache_free(&ro);
   1050 	m_freem(m);
   1051 	return;
   1052 }
   1053 
   1054 const void *
   1055 nd6_ifptomac(const struct ifnet *ifp)
   1056 {
   1057 	switch (ifp->if_type) {
   1058 	case IFT_ARCNET:
   1059 	case IFT_ETHER:
   1060 	case IFT_FDDI:
   1061 	case IFT_IEEE1394:
   1062 	case IFT_PROPVIRTUAL:
   1063 	case IFT_CARP:
   1064 	case IFT_L2VLAN:
   1065 	case IFT_IEEE80211:
   1066 		return CLLADDR(ifp->if_sadl);
   1067 	default:
   1068 		return NULL;
   1069 	}
   1070 }
   1071 
   1072 TAILQ_HEAD(dadq_head, dadq);
   1073 struct dadq {
   1074 	TAILQ_ENTRY(dadq) dad_list;
   1075 	struct ifaddr *dad_ifa;
   1076 	int dad_count;			/* max NS to send */
   1077 	int dad_ns_tcount;		/* # of trials to send NS */
   1078 	int dad_ns_ocount;		/* NS sent so far */
   1079 	int dad_ns_icount;
   1080 	int dad_na_icount;
   1081 	int dad_ns_lcount;		/* looped back NS */
   1082 	struct callout dad_timer_ch;
   1083 #define	ND_OPT_NONCE_STORE	3	/* dad_count should not exceed this */
   1084 	/*
   1085 	 * The default ip6_dad_count is 1 as specified by RFC 4862 and
   1086 	 * practically must users won't exceed this.
   1087 	 * A storage of 3 is defaulted to here, in-case the administrator wants
   1088 	 * to match the equivalent behaviour in our ARP implementation.
   1089 	 * This constraint could be removed by sending the on wire nonce as
   1090 	 * hmac(key, dad_ns_ocount), but that would increase the nonce size
   1091 	 * sent on the wire.
   1092 	 */
   1093 	uint8_t dad_nonce[ND_OPT_NONCE_STORE][ND_OPT_NONCE_LEN];
   1094 };
   1095 
   1096 static struct dadq_head dadq;
   1097 static int dad_init = 0;
   1098 static kmutex_t nd6_dad_lock;
   1099 
   1100 static struct dadq *
   1101 nd6_dad_find(struct ifaddr *ifa, struct nd_opt_nonce *nonce)
   1102 {
   1103 	struct dadq *dp;
   1104 	int i, nonce_max;
   1105 
   1106 	KASSERT(mutex_owned(&nd6_dad_lock));
   1107 
   1108 	TAILQ_FOREACH(dp, &dadq, dad_list) {
   1109 		if (dp->dad_ifa != ifa)
   1110 			continue;
   1111 
   1112 		if (nonce == NULL ||
   1113 		    nonce->nd_opt_nonce_len != (ND_OPT_NONCE_LEN + 2) / 8)
   1114 			break;
   1115 
   1116 		nonce_max = MIN(dp->dad_ns_ocount, ND_OPT_NONCE_STORE);
   1117 		for (i = 0; i < nonce_max; i++) {
   1118 			if (memcmp(nonce->nd_opt_nonce,
   1119 			    dp->dad_nonce[i],
   1120 			    ND_OPT_NONCE_LEN) == 0)
   1121 				break;
   1122 		}
   1123 		if (i < nonce_max) {
   1124 			char ip6buf[INET6_ADDRSTRLEN];
   1125 
   1126 			log(LOG_DEBUG,
   1127 			    "%s: detected a looped back NS message for %s\n",
   1128 			    ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???",
   1129 			    IN6_PRINT(ip6buf, IFA_IN6(ifa)));
   1130 			dp->dad_ns_lcount++;
   1131 			continue;
   1132 		}
   1133 
   1134 		break;
   1135 	}
   1136 	return dp;
   1137 }
   1138 
   1139 static void
   1140 nd6_dad_starttimer(struct dadq *dp, int ticks)
   1141 {
   1142 
   1143 	callout_reset(&dp->dad_timer_ch, ticks,
   1144 	    (void (*)(void *))nd6_dad_timer, dp);
   1145 }
   1146 
   1147 static void
   1148 nd6_dad_destroytimer(struct dadq *dp)
   1149 {
   1150 	struct ifaddr *ifa;
   1151 
   1152 	TAILQ_REMOVE(&dadq, dp, dad_list);
   1153 	/* Request the timer to destroy dp. */
   1154 	ifa = dp->dad_ifa;
   1155 	dp->dad_ifa = NULL;
   1156 	ifafree(ifa);
   1157 	callout_reset(&dp->dad_timer_ch, 0,
   1158 	    (void (*)(void *))nd6_dad_timer, dp);
   1159 }
   1160 
   1161 /*
   1162  * Start Duplicate Address Detection (DAD) for specified interface address.
   1163  *
   1164  * Note that callout is used when xtick > 0 and not when xtick == 0.
   1165  *
   1166  * xtick: minimum delay ticks for IFF_UP event
   1167  */
   1168 void
   1169 nd6_dad_start(struct ifaddr *ifa, int xtick)
   1170 {
   1171 	struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
   1172 	struct dadq *dp;
   1173 	char ip6buf[INET6_ADDRSTRLEN];
   1174 
   1175 	if (!dad_init) {
   1176 		TAILQ_INIT(&dadq);
   1177 		mutex_init(&nd6_dad_lock, MUTEX_DEFAULT, IPL_NONE);
   1178 		dad_init++;
   1179 	}
   1180 
   1181 	/*
   1182 	 * If we don't need DAD, don't do it.
   1183 	 * There are several cases:
   1184 	 * - DAD is disabled (ip6_dad_count == 0)
   1185 	 * - the interface address is anycast
   1186 	 */
   1187 	if (!(ia->ia6_flags & IN6_IFF_TENTATIVE)) {
   1188 		log(LOG_DEBUG,
   1189 			"nd6_dad_start: called with non-tentative address "
   1190 			"%s(%s)\n",
   1191 			IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr),
   1192 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
   1193 		return;
   1194 	}
   1195 	if (ia->ia6_flags & IN6_IFF_ANYCAST || !ip6_dad_count) {
   1196 		ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
   1197 		rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
   1198 		return;
   1199 	}
   1200 	KASSERT(ifa->ifa_ifp != NULL);
   1201 	if (!(ifa->ifa_ifp->if_flags & IFF_UP))
   1202 		return;
   1203 
   1204 	dp = kmem_intr_alloc(sizeof(*dp), KM_NOSLEEP);
   1205 
   1206 	mutex_enter(&nd6_dad_lock);
   1207 	if (nd6_dad_find(ifa, NULL) != NULL) {
   1208 		mutex_exit(&nd6_dad_lock);
   1209 		/* DAD already in progress */
   1210 		if (dp != NULL)
   1211 			kmem_intr_free(dp, sizeof(*dp));
   1212 		return;
   1213 	}
   1214 
   1215 	if (dp == NULL) {
   1216 		mutex_exit(&nd6_dad_lock);
   1217 		log(LOG_ERR, "nd6_dad_start: memory allocation failed for "
   1218 			"%s(%s)\n",
   1219 			IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr),
   1220 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
   1221 		return;
   1222 	}
   1223 
   1224 	/*
   1225 	 * Send NS packet for DAD, ip6_dad_count times.
   1226 	 * Note that we must delay the first transmission, if this is the
   1227 	 * first packet to be sent from the interface after interface
   1228 	 * (re)initialization.
   1229 	 */
   1230 	callout_init(&dp->dad_timer_ch, CALLOUT_MPSAFE);
   1231 	dp->dad_ifa = ifa;
   1232 	ifaref(ifa);	/* just for safety */
   1233 	dp->dad_count = ip6_dad_count;
   1234 	dp->dad_ns_icount = dp->dad_na_icount = 0;
   1235 	dp->dad_ns_ocount = dp->dad_ns_tcount = 0;
   1236 	dp->dad_ns_lcount = 0;
   1237 	TAILQ_INSERT_TAIL(&dadq, (struct dadq *)dp, dad_list);
   1238 
   1239 	nd6log(LOG_DEBUG, "%s: starting DAD for %s\n", if_name(ifa->ifa_ifp),
   1240 	    IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr));
   1241 
   1242 	if (xtick == 0) {
   1243 		nd6_dad_ns_output(dp, ifa);
   1244 		nd6_dad_starttimer(dp,
   1245 		    (long)ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
   1246 	} else
   1247 		nd6_dad_starttimer(dp, xtick);
   1248 	mutex_exit(&nd6_dad_lock);
   1249 }
   1250 
   1251 /*
   1252  * terminate DAD unconditionally.  used for address removals.
   1253  */
   1254 void
   1255 nd6_dad_stop(struct ifaddr *ifa)
   1256 {
   1257 	struct dadq *dp;
   1258 
   1259 	if (!dad_init)
   1260 		return;
   1261 
   1262 	mutex_enter(&nd6_dad_lock);
   1263 	dp = nd6_dad_find(ifa, NULL);
   1264 	if (dp == NULL) {
   1265 		mutex_exit(&nd6_dad_lock);
   1266 		/* DAD wasn't started yet */
   1267 		return;
   1268 	}
   1269 
   1270 	/* Prevent the timer from running anymore. */
   1271 	nd6_dad_destroytimer(dp);
   1272 
   1273 	mutex_exit(&nd6_dad_lock);
   1274 }
   1275 
   1276 static void
   1277 nd6_dad_timer(struct dadq *dp)
   1278 {
   1279 	struct ifaddr *ifa;
   1280 	struct in6_ifaddr *ia;
   1281 	int duplicate = 0;
   1282 	char ip6buf[INET6_ADDRSTRLEN];
   1283 	bool need_free = false;
   1284 
   1285 	SOFTNET_KERNEL_LOCK_UNLESS_NET_MPSAFE();
   1286 	mutex_enter(&nd6_dad_lock);
   1287 
   1288 	ifa = dp->dad_ifa;
   1289 	if (ifa == NULL) {
   1290 		/*
   1291 		 * ifa is being deleted and the callout is already scheduled
   1292 		 * again, so we cannot destroy dp in this run.
   1293 		 */
   1294 		goto done;
   1295 	}
   1296 
   1297 	ia = (struct in6_ifaddr *)ifa;
   1298 	if (ia->ia6_flags & IN6_IFF_DUPLICATED) {
   1299 		log(LOG_ERR, "nd6_dad_timer: called with duplicate address "
   1300 			"%s(%s)\n",
   1301 			IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr),
   1302 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
   1303 		goto done;
   1304 	}
   1305 	if ((ia->ia6_flags & IN6_IFF_TENTATIVE) == 0) {
   1306 		log(LOG_ERR, "nd6_dad_timer: called with non-tentative address "
   1307 			"%s(%s)\n",
   1308 			IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr),
   1309 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
   1310 		goto done;
   1311 	}
   1312 
   1313 	/* timeouted with IFF_{RUNNING,UP} check */
   1314 	if (dp->dad_ns_tcount > dad_maxtry) {
   1315 		nd6log(LOG_INFO, "%s: could not run DAD, driver problem?\n",
   1316 			if_name(ifa->ifa_ifp));
   1317 
   1318 		TAILQ_REMOVE(&dadq, dp, dad_list);
   1319 		need_free = true;
   1320 		goto done;
   1321 	}
   1322 
   1323 	/* Need more checks? */
   1324 	if (dp->dad_ns_ocount < dp->dad_count) {
   1325 		/*
   1326 		 * We have more NS to go.  Send NS packet for DAD.
   1327 		 */
   1328 		nd6_dad_ns_output(dp, ifa);
   1329 		nd6_dad_starttimer(dp,
   1330 		    (long)ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
   1331 	} else {
   1332 		/*
   1333 		 * We have transmitted sufficient number of DAD packets.
   1334 		 * See what we've got.
   1335 		 */
   1336 		if (dp->dad_na_icount) {
   1337 			/*
   1338 			 * the check is in nd6_dad_na_input(),
   1339 			 * but just in case
   1340 			 */
   1341 			duplicate++;
   1342 		}
   1343 
   1344 		if (dp->dad_ns_icount) {
   1345 			/* We've seen NS, means DAD has failed. */
   1346 			duplicate++;
   1347 		}
   1348 
   1349 		if (duplicate) {
   1350 			nd6_dad_duplicated(dp);
   1351 			/* (*dp) has been freed in nd6_dad_duplicated() */
   1352 			dp = NULL;
   1353 		} else {
   1354 			/*
   1355 			 * We are done with DAD.  No NA came, no NS came.
   1356 			 * No duplicate address found.
   1357 			 */
   1358 			ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
   1359 			rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
   1360 
   1361 			nd6log(LOG_DEBUG,
   1362 			    "%s: DAD complete for %s - no duplicates found\n",
   1363 			    if_name(ifa->ifa_ifp),
   1364 			    IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr));
   1365 
   1366 			TAILQ_REMOVE(&dadq, dp, dad_list);
   1367 			need_free = true;
   1368 		}
   1369 	}
   1370 done:
   1371 	mutex_exit(&nd6_dad_lock);
   1372 
   1373 	if (need_free) {
   1374 		callout_destroy(&dp->dad_timer_ch);
   1375 		kmem_intr_free(dp, sizeof(*dp));
   1376 		if (ifa != NULL)
   1377 			ifafree(ifa);
   1378 	}
   1379 
   1380 	SOFTNET_KERNEL_UNLOCK_UNLESS_NET_MPSAFE();
   1381 }
   1382 
   1383 static void
   1384 nd6_dad_duplicated(struct dadq *dp)
   1385 {
   1386 	struct ifaddr *ifa = dp->dad_ifa;
   1387 	struct in6_ifaddr *ia;
   1388 	struct ifnet *ifp;
   1389 	char ip6buf[INET6_ADDRSTRLEN];
   1390 
   1391 	KASSERT(mutex_owned(&nd6_dad_lock));
   1392 	KASSERT(ifa != NULL);
   1393 
   1394 	ifp = ifa->ifa_ifp;
   1395 	ia = (struct in6_ifaddr *)ifa;
   1396 	log(LOG_ERR, "%s: DAD detected duplicate IPv6 address %s: "
   1397 	    "NS in/out/loopback=%d/%d/%d, NA in=%d\n",
   1398 	    if_name(ifp), IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr),
   1399 	    dp->dad_ns_icount, dp->dad_ns_ocount, dp->dad_ns_lcount,
   1400 	    dp->dad_na_icount);
   1401 
   1402 	ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
   1403 	ia->ia6_flags |= IN6_IFF_DUPLICATED;
   1404 
   1405 	log(LOG_ERR, "%s: DAD complete for %s - duplicate found\n",
   1406 	    if_name(ifp), IN6_PRINT(ip6buf, &ia->ia_addr.sin6_addr));
   1407 	log(LOG_ERR, "%s: manual intervention required\n",
   1408 	    if_name(ifp));
   1409 
   1410 	/* Inform the routing socket that DAD has completed */
   1411 	rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
   1412 
   1413 	/*
   1414 	 * If the address is a link-local address formed from an interface
   1415 	 * identifier based on the hardware address which is supposed to be
   1416 	 * uniquely assigned (e.g., EUI-64 for an Ethernet interface), IP
   1417 	 * operation on the interface SHOULD be disabled.
   1418 	 * [rfc2462bis-03 Section 5.4.5]
   1419 	 */
   1420 	if (IN6_IS_ADDR_LINKLOCAL(&ia->ia_addr.sin6_addr)) {
   1421 		struct in6_addr in6;
   1422 
   1423 		/*
   1424 		 * To avoid over-reaction, we only apply this logic when we are
   1425 		 * very sure that hardware addresses are supposed to be unique.
   1426 		 */
   1427 		switch (ifp->if_type) {
   1428 		case IFT_ETHER:
   1429 		case IFT_FDDI:
   1430 		case IFT_ATM:
   1431 		case IFT_IEEE1394:
   1432 		case IFT_IEEE80211:
   1433 			in6 = ia->ia_addr.sin6_addr;
   1434 			if (in6_get_hw_ifid(ifp, &in6) == 0 &&
   1435 			    IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr, &in6)) {
   1436 				ND_IFINFO(ifp)->flags |= ND6_IFF_IFDISABLED;
   1437 				log(LOG_ERR, "%s: possible hardware address "
   1438 				    "duplication detected, disable IPv6\n",
   1439 				    if_name(ifp));
   1440 			}
   1441 			break;
   1442 		}
   1443 	}
   1444 
   1445 	/* We are done with DAD, with duplicated address found. (failure) */
   1446 	nd6_dad_destroytimer(dp);
   1447 }
   1448 
   1449 static void
   1450 nd6_dad_ns_output(struct dadq *dp, struct ifaddr *ifa)
   1451 {
   1452 	struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
   1453 	struct ifnet *ifp = ifa->ifa_ifp;
   1454 	uint8_t *nonce;
   1455 
   1456 	dp->dad_ns_tcount++;
   1457 	if ((ifp->if_flags & IFF_UP) == 0) {
   1458 #if 0
   1459 		printf("%s: interface down?\n", if_name(ifp));
   1460 #endif
   1461 		return;
   1462 	}
   1463 	if ((ifp->if_flags & IFF_RUNNING) == 0) {
   1464 #if 0
   1465 		printf("%s: interface not running?\n", if_name(ifp));
   1466 #endif
   1467 		return;
   1468 	}
   1469 
   1470 	dp->dad_ns_tcount = 0;
   1471 	nonce = dp->dad_nonce[dp->dad_ns_ocount % ND_OPT_NONCE_STORE];
   1472 	cprng_fast(nonce, ND_OPT_NONCE_LEN);
   1473 	dp->dad_ns_ocount++;
   1474 
   1475 	nd6_ns_output(ifp, NULL, &ia->ia_addr.sin6_addr, NULL, nonce);
   1476 }
   1477 
   1478 static void
   1479 nd6_dad_ns_input(struct ifaddr *ifa, struct nd_opt_nonce *nonce)
   1480 {
   1481 	struct dadq *dp;
   1482 	int duplicate;
   1483 
   1484 	if (ifa == NULL)
   1485 		panic("ifa == NULL in nd6_dad_ns_input");
   1486 
   1487 	duplicate = 0;
   1488 
   1489 	mutex_enter(&nd6_dad_lock);
   1490 	dp = nd6_dad_find(ifa, nonce);
   1491 
   1492 	/*
   1493 	 * if I'm yet to start DAD, someone else started using this address
   1494 	 * first.  I have a duplicate and you win.
   1495 	 */
   1496 	if (dp == NULL || dp->dad_ns_ocount == 0)
   1497 		duplicate++;
   1498 
   1499 	/* XXX more checks for loopback situation - see nd6_dad_timer too */
   1500 
   1501 	if (duplicate) {
   1502 		if (dp)
   1503 			nd6_dad_duplicated(dp);
   1504 	} else {
   1505 		/*
   1506 		 * not sure if I got a duplicate.
   1507 		 * increment ns count and see what happens.
   1508 		 */
   1509 		if (dp)
   1510 			dp->dad_ns_icount++;
   1511 	}
   1512 	mutex_exit(&nd6_dad_lock);
   1513 }
   1514 
   1515 static void
   1516 nd6_dad_na_input(struct ifaddr *ifa)
   1517 {
   1518 	struct dadq *dp;
   1519 
   1520 	KASSERT(ifa != NULL);
   1521 
   1522 	mutex_enter(&nd6_dad_lock);
   1523 	dp = nd6_dad_find(ifa, NULL);
   1524 	if (dp) {
   1525 		dp->dad_na_icount++;
   1526 
   1527 		/* remove the address. */
   1528 		nd6_dad_duplicated(dp);
   1529 	}
   1530 
   1531 	mutex_exit(&nd6_dad_lock);
   1532 }
   1533