xref: /dragonfly/sys/netinet6/nd6_nbr.c (revision a42bad2d)
1 /*	$FreeBSD: src/sys/netinet6/nd6_nbr.c,v 1.4.2.6 2003/01/23 21:06:47 sam Exp $	*/
2 /*	$KAME: nd6_nbr.c,v 1.86 2002/01/21 02:33:04 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 "opt_inet.h"
34 #include "opt_inet6.h"
35 #include "opt_carp.h"
36 
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/malloc.h>
40 #include <sys/mbuf.h>
41 #include <sys/socket.h>
42 #include <sys/sockio.h>
43 #include <sys/time.h>
44 #include <sys/kernel.h>
45 #include <sys/errno.h>
46 #include <sys/syslog.h>
47 #include <sys/queue.h>
48 #include <sys/callout.h>
49 #include <sys/mutex.h>
50 
51 #include <sys/thread2.h>
52 #include <sys/mutex2.h>
53 
54 #include <net/if.h>
55 #include <net/if_types.h>
56 #include <net/if_dl.h>
57 #include <net/route.h>
58 #include <net/netisr2.h>
59 #include <net/netmsg2.h>
60 
61 #include <netinet/in.h>
62 #include <netinet/in_var.h>
63 #include <netinet6/in6_var.h>
64 #include <netinet/ip6.h>
65 #include <netinet6/ip6_var.h>
66 #include <netinet6/nd6.h>
67 #include <netinet/icmp6.h>
68 
69 #include <net/net_osdep.h>
70 
71 #ifdef CARP
72 #include <netinet/ip_carp.h>
73 #endif
74 
75 
76 #define SDL(s) ((struct sockaddr_dl *)s)
77 
78 struct dadq;
79 static struct dadq *nd6_dad_find(struct ifaddr *);
80 static void nd6_dad_starttimer(struct dadq *, int);
81 static void nd6_dad_stoptimer(struct dadq *);
82 static void nd6_dad_timer(void *);
83 static void nd6_dad_timer_handler(netmsg_t);
84 static void nd6_dad_ns_output(struct dadq *);
85 static void nd6_dad_ns_input(struct ifaddr *);
86 static void nd6_dad_na_input(struct ifaddr *);
87 static struct dadq *nd6_dad_create(struct ifaddr *);
88 static void nd6_dad_destroy(struct dadq *);
89 static void nd6_dad_duplicated(struct ifaddr *);
90 
91 static int dad_ignore_ns = 0;	/* ignore NS in DAD - specwise incorrect*/
92 static int dad_maxtry = 15;	/* max # of *tries* to transmit DAD packet */
93 
94 /*
95  * Input an Neighbor Solicitation Message.
96  *
97  * Based on RFC 2461
98  * Based on RFC 2462 (duplicated address detection)
99  */
100 void
101 nd6_ns_input(struct mbuf *m, int off, int icmp6len)
102 {
103 	struct ifnet *ifp = m->m_pkthdr.rcvif;
104 	struct ifnet *cmpifp;
105 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
106 	struct nd_neighbor_solicit *nd_ns;
107 	struct in6_addr saddr6 = ip6->ip6_src;
108 	struct in6_addr daddr6 = ip6->ip6_dst;
109 	struct in6_addr taddr6;
110 	struct in6_addr myaddr6;
111 	char *lladdr = NULL;
112 	struct ifaddr *ifa = NULL;
113 	int lladdrlen = 0;
114 	int anycast = 0, proxy = 0, tentative = 0;
115 	int tlladdr;
116 	union nd_opts ndopts;
117 	struct sockaddr_dl *proxydl = NULL;
118 
119 	/*
120 	 * Collapse interfaces to the bridge for comparison and
121 	 * mac (llinfo) purposes.
122 	 */
123 	cmpifp = ifp;
124 	if (ifp->if_bridge)
125 		cmpifp = ifp->if_bridge;
126 
127 #ifndef PULLDOWN_TEST
128 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
129 	nd_ns = (struct nd_neighbor_solicit *)((caddr_t)ip6 + off);
130 #else
131 	IP6_EXTHDR_GET(nd_ns, struct nd_neighbor_solicit *, m, off, icmp6len);
132 	if (nd_ns == NULL) {
133 		icmp6stat.icp6s_tooshort++;
134 		return;
135 	}
136 #endif
137 	ip6 = mtod(m, struct ip6_hdr *); /* adjust pointer for safety */
138 	taddr6 = nd_ns->nd_ns_target;
139 
140 	if (ip6->ip6_hlim != 255) {
141 		nd6log((LOG_ERR,
142 		    "nd6_ns_input: invalid hlim (%d) from %s to %s on %s\n",
143 		    ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
144 		    ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
145 		goto bad;
146 	}
147 
148 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
149 		/* dst has to be solicited node multicast address. */
150 		if (daddr6.s6_addr16[0] == IPV6_ADDR_INT16_MLL &&
151 		    /* don't check ifindex portion */
152 		    daddr6.s6_addr32[1] == 0 &&
153 		    daddr6.s6_addr32[2] == IPV6_ADDR_INT32_ONE &&
154 		    daddr6.s6_addr8[12] == 0xff) {
155 			; /* good */
156 		} else {
157 			nd6log((LOG_INFO, "nd6_ns_input: bad DAD packet "
158 			    "(wrong ip6 dst)\n"));
159 			goto bad;
160 		}
161 	} else if (!nd6_onlink_ns_rfc4861) {
162 		/*
163 		 * Make sure the source address is from a neighbor's address.
164 		 *
165 		 * XXX probably only need to check cmpifp.
166 		 */
167 		if (in6ifa_ifplocaladdr(cmpifp, &saddr6) == NULL &&
168 		    in6ifa_ifplocaladdr(ifp, &saddr6) == NULL) {
169 			nd6log((LOG_INFO, "nd6_ns_input: "
170 			    "NS packet from non-neighbor\n"));
171 			goto bad;
172 		}
173 	}
174 
175 	if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
176 		nd6log((LOG_INFO, "nd6_ns_input: bad NS target (multicast)\n"));
177 		goto bad;
178 	}
179 
180 	if (IN6_IS_SCOPE_LINKLOCAL(&taddr6))
181 		taddr6.s6_addr16[1] = htons(ifp->if_index);
182 
183 	icmp6len -= sizeof(*nd_ns);
184 	nd6_option_init(nd_ns + 1, icmp6len, &ndopts);
185 	if (nd6_options(&ndopts) < 0) {
186 		nd6log((LOG_INFO,
187 		    "nd6_ns_input: invalid ND option, ignored\n"));
188 		/* nd6_options have incremented stats */
189 		goto freeit;
190 	}
191 
192 	if (ndopts.nd_opts_src_lladdr) {
193 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
194 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
195 	}
196 
197 	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src) && lladdr) {
198 		nd6log((LOG_INFO, "nd6_ns_input: bad DAD packet "
199 		    "(link-layer address option)\n"));
200 		goto bad;
201 	}
202 
203 	/*
204 	 * Attaching target link-layer address to the NA?
205 	 * (RFC 2461 7.2.4)
206 	 *
207 	 * NS IP dst is unicast/anycast			MUST NOT add
208 	 * NS IP dst is solicited-node multicast	MUST add
209 	 *
210 	 * In implementation, we add target link-layer address by default.
211 	 * We do not add one in MUST NOT cases.
212 	 */
213 #if 0 /* too much! */
214 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &daddr6);
215 	if (ifa && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST))
216 		tlladdr = 0;
217 	else
218 #endif
219 	if (!IN6_IS_ADDR_MULTICAST(&daddr6))
220 		tlladdr = 0;
221 	else
222 		tlladdr = 1;
223 
224 	/*
225 	 * Target address (taddr6) must be either:
226 	 * (1) Valid unicast/anycast address for my receiving interface.
227 	 * (2) Unicast or anycast address for which I'm offering proxy
228 	 *     service.
229 	 * (3) "tentative" address on which DAD is being performed.
230 	 */
231 	/* (1) and (3) check. */
232 #ifdef CARP
233 	if (ifp->if_carp)
234 		ifa = carp_iamatch6(ifp->if_carp, &taddr6);
235 	if (!ifa)
236 		ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
237 #else
238 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
239 #endif
240 
241 	/*
242 	 * (2) Check proxying.  Requires ip6_forwarding to be turned on.
243 	 *
244 	 *     If the packet is anycast the target route must be on a
245 	 *     different interface because the anycast will get anything
246 	 *     on the current interface.
247 	 *
248 	 *     If the packet is unicast the target route may be on the
249 	 *     same interface.  If the gateway is a (typically manually
250 	 *     configured) link address we can directly offer it.
251 	 *     XXX for now we don't do this but instead offer ours and
252 	 *     presumably relay.
253 	 *
254 	 *     WARNING! Since this is a subnet proxy the interface proxying
255 	 *     the ND6 must be in promiscuous mode or it will not see the
256 	 *     solicited multicast requests for various hosts being proxied.
257 	 *
258 	 *     WARNING! Since this is a subnet proxy we have to treat bridge
259 	 *     interfaces as being the bridge itself so we do not proxy-nd6
260 	 *     between bridge interfaces (which are effectively switched).
261 	 *
262 	 *     (In the specific-host-proxy case via RTF_ANNOUNCE, which is
263 	 *     a bitch to configure, a specific multicast route is already
264 	 *     added for that host <-- NOT RECOMMENDED).
265 	 */
266 	if (!ifa && ip6_forwarding) {
267 		struct rtentry *rt;
268 		struct sockaddr_in6 tsin6;
269 		struct ifnet *rtifp;
270 
271 		bzero(&tsin6, sizeof tsin6);
272 		tsin6.sin6_len = sizeof(struct sockaddr_in6);
273 		tsin6.sin6_family = AF_INET6;
274 		tsin6.sin6_addr = taddr6;
275 
276 		rt = rtpurelookup((struct sockaddr *)&tsin6);
277 		rtifp = rt ? rt->rt_ifp : NULL;
278 		if (rtifp && rtifp->if_bridge)
279 			rtifp = rtifp->if_bridge;
280 
281 		if (rt != NULL &&
282 		    (cmpifp != rtifp || (m->m_flags & M_MCAST) == 0)) {
283 			ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(cmpifp,
284 				IN6_IFF_NOTREADY|IN6_IFF_ANYCAST);
285 			nd6log((LOG_INFO,
286 			       "nd6_ns_input: nd6 proxy %s(%s)<-%s ifa %p\n",
287 			       if_name(cmpifp), if_name(ifp),
288 			       if_name(rtifp), ifa));
289 			if (ifa) {
290 				proxy = 1;
291 				/*
292 				 * Manual link address on same interface
293 				 * w/announce flag will proxy-arp using
294 				 * target mac, else our mac is used.
295 				 */
296 				if (cmpifp == rtifp &&
297 				    (rt->rt_flags & RTF_ANNOUNCE) &&
298 				    rt->rt_gateway->sa_family == AF_LINK) {
299 					proxydl = SDL(rt->rt_gateway);
300 				}
301 			}
302 		}
303 		if (rt != NULL)
304 			--rt->rt_refcnt;
305 	}
306 	if (ifa == NULL) {
307 		/*
308 		 * We've got an NS packet, and we don't have that adddress
309 		 * assigned for us.  We MUST silently ignore it.
310 		 * See RFC2461 7.2.3.
311 		 */
312 		goto freeit;
313 	}
314 	myaddr6 = *IFA_IN6(ifa);
315 	anycast = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST;
316 	tentative = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE;
317 	if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DUPLICATED)
318 		goto freeit;
319 
320 	if (lladdr && ((cmpifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
321 		nd6log((LOG_INFO, "nd6_ns_input: lladdrlen mismatch for %s "
322 		    "(if %d, NS packet %d)\n",
323 		    ip6_sprintf(&taddr6), cmpifp->if_addrlen, lladdrlen - 2));
324 		goto bad;
325 	}
326 
327 	if (IN6_ARE_ADDR_EQUAL(&myaddr6, &saddr6)) {
328 		nd6log((LOG_INFO, "nd6_ns_input: duplicate IP6 address %s\n",
329 		    ip6_sprintf(&saddr6)));
330 		goto freeit;
331 	}
332 
333 	/*
334 	 * We have neighbor solicitation packet, with target address equals to
335 	 * one of my tentative address.
336 	 *
337 	 * src addr	how to process?
338 	 * ---		---
339 	 * multicast	of course, invalid (rejected in ip6_input)
340 	 * unicast	somebody is doing address resolution -> ignore
341 	 * unspec	dup address detection
342 	 *
343 	 * The processing is defined in RFC 2462.
344 	 */
345 	if (tentative) {
346 		/*
347 		 * If source address is unspecified address, it is for
348 		 * duplicated address detection.
349 		 *
350 		 * If not, the packet is for addess resolution;
351 		 * silently ignore it.
352 		 */
353 		if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
354 			nd6_dad_ns_input(ifa);
355 
356 		goto freeit;
357 	}
358 
359 	/*
360 	 * If the source address is unspecified address, entries must not
361 	 * be created or updated.
362 	 * It looks that sender is performing DAD.  Output NA toward
363 	 * all-node multicast address, to tell the sender that I'm using
364 	 * the address.
365 	 * S bit ("solicited") must be zero.
366 	 */
367 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
368 		saddr6 = kin6addr_linklocal_allnodes;
369 		saddr6.s6_addr16[1] = htons(cmpifp->if_index);
370 		nd6_na_output(cmpifp, &saddr6, &taddr6,
371 		    ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
372 		    (ip6_forwarding ? ND_NA_FLAG_ROUTER : 0),
373 		    tlladdr, (struct sockaddr *)proxydl);
374 		goto freeit;
375 	}
376 
377 	nd6_cache_lladdr(cmpifp, &saddr6, lladdr, lladdrlen,
378 	    ND_NEIGHBOR_SOLICIT, 0);
379 
380 	nd6_na_output(ifp, &saddr6, &taddr6,
381 	    ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
382 	    (ip6_forwarding ? ND_NA_FLAG_ROUTER : 0) | ND_NA_FLAG_SOLICITED,
383 	    tlladdr, (struct sockaddr *)proxydl);
384 freeit:
385 	m_freem(m);
386 	return;
387 
388 bad:
389 	nd6log((LOG_ERR, "nd6_ns_input: src=%s\n", ip6_sprintf(&saddr6)));
390 	nd6log((LOG_ERR, "nd6_ns_input: dst=%s\n", ip6_sprintf(&daddr6)));
391 	nd6log((LOG_ERR, "nd6_ns_input: tgt=%s\n", ip6_sprintf(&taddr6)));
392 	icmp6stat.icp6s_badns++;
393 	m_freem(m);
394 }
395 
396 /*
397  * Output an Neighbor Solicitation Message. Caller specifies:
398  *	- ICMP6 header source IP6 address
399  *	- ND6 header target IP6 address
400  *	- ND6 header source datalink address
401  *
402  * Based on RFC 2461
403  * Based on RFC 2462 (duplicated address detection)
404  */
405 void
406 nd6_ns_output(struct ifnet *ifp, const struct in6_addr *daddr6,
407 	      const struct in6_addr *taddr6,
408 	      struct llinfo_nd6 *ln,	/* for source address determination */
409 	      int dad)			/* duplicated address detection */
410 {
411 	struct mbuf *m;
412 	struct ip6_hdr *ip6;
413 	struct nd_neighbor_solicit *nd_ns;
414 	struct in6_ifaddr *ia = NULL;
415 	struct ip6_moptions im6o;
416 	int icmp6len;
417 	int maxlen;
418 	caddr_t mac;
419 	struct ifnet *outif = NULL;
420 
421 	if (IN6_IS_ADDR_MULTICAST(taddr6))
422 		return;
423 
424 	/* estimate the size of message */
425 	maxlen = sizeof(*ip6) + sizeof(*nd_ns);
426 	maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
427 	if (max_linkhdr + maxlen > MCLBYTES) {
428 #ifdef DIAGNOSTIC
429 		kprintf("nd6_ns_output: max_linkhdr + maxlen > MCLBYTES "
430 		    "(%d + %d > %d)\n", max_linkhdr, maxlen, MCLBYTES);
431 #endif
432 		return;
433 	}
434 
435 	m = m_getb(max_linkhdr + maxlen, M_NOWAIT, MT_DATA, M_PKTHDR);
436 	if (m == NULL)
437 		return;
438 
439 	if (daddr6 == NULL || IN6_IS_ADDR_MULTICAST(daddr6)) {
440 		m->m_flags |= M_MCAST;
441 		im6o.im6o_multicast_ifp = ifp;
442 		im6o.im6o_multicast_hlim = 255;
443 		im6o.im6o_multicast_loop = 0;
444 	}
445 
446 	icmp6len = sizeof(*nd_ns);
447 	m->m_pkthdr.len = m->m_len = sizeof(*ip6) + icmp6len;
448 	m->m_data += max_linkhdr;	/* or MH_ALIGN() equivalent? */
449 
450 	/* fill neighbor solicitation packet */
451 	ip6 = mtod(m, struct ip6_hdr *);
452 	ip6->ip6_flow = 0;
453 	ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
454 	ip6->ip6_vfc |= IPV6_VERSION;
455 	/* ip6->ip6_plen will be set later */
456 	ip6->ip6_nxt = IPPROTO_ICMPV6;
457 	ip6->ip6_hlim = 255;
458 	if (daddr6)
459 		ip6->ip6_dst = *daddr6;
460 	else {
461 		ip6->ip6_dst.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
462 		ip6->ip6_dst.s6_addr16[1] = htons(ifp->if_index);
463 		ip6->ip6_dst.s6_addr32[1] = 0;
464 		ip6->ip6_dst.s6_addr32[2] = IPV6_ADDR_INT32_ONE;
465 		ip6->ip6_dst.s6_addr32[3] = taddr6->s6_addr32[3];
466 		ip6->ip6_dst.s6_addr8[12] = 0xff;
467 	}
468 	if (!dad) {
469 		/*
470 		 * RFC2461 7.2.2:
471 		 * "If the source address of the packet prompting the
472 		 * solicitation is the same as one of the addresses assigned
473 		 * to the outgoing interface, that address SHOULD be placed
474 		 * in the IP Source Address of the outgoing solicitation.
475 		 * Otherwise, any one of the addresses assigned to the
476 		 * interface should be used."
477 		 *
478 		 * We use the source address for the prompting packet
479 		 * (saddr6), if:
480 		 * - saddr6 is given from the caller (by giving "ln"), and
481 		 * - saddr6 belongs to the outgoing interface.
482 		 * Otherwise, we perform a scope-wise match.
483 		 */
484 		struct ip6_hdr *hip6;		/* hold ip6 */
485 		struct in6_addr *saddr6;
486 
487 		if (ln && ln->ln_hold) {
488 			hip6 = mtod(ln->ln_hold, struct ip6_hdr *);
489 			/* XXX pullup? */
490 			if (sizeof(*hip6) < ln->ln_hold->m_len)
491 				saddr6 = &hip6->ip6_src;
492 			else
493 				saddr6 = NULL;
494 		} else
495 			saddr6 = NULL;
496 		if (saddr6 && in6ifa_ifpwithaddr(ifp, saddr6))
497 			bcopy(saddr6, &ip6->ip6_src, sizeof(*saddr6));
498 		else {
499 			ia = in6_ifawithifp(ifp, &ip6->ip6_dst);
500 			if (ia == NULL) {
501 				m_freem(m);
502 				return;
503 			}
504 			ip6->ip6_src = ia->ia_addr.sin6_addr;
505 		}
506 	} else {
507 		/*
508 		 * Source address for DAD packet must always be IPv6
509 		 * unspecified address. (0::0)
510 		 */
511 		bzero(&ip6->ip6_src, sizeof(ip6->ip6_src));
512 	}
513 	nd_ns = (struct nd_neighbor_solicit *)(ip6 + 1);
514 	nd_ns->nd_ns_type = ND_NEIGHBOR_SOLICIT;
515 	nd_ns->nd_ns_code = 0;
516 	nd_ns->nd_ns_reserved = 0;
517 	nd_ns->nd_ns_target = *taddr6;
518 	in6_clearscope(&nd_ns->nd_ns_target); /* XXX */
519 
520 	/*
521 	 * Add source link-layer address option.
522 	 *
523 	 *				spec		implementation
524 	 *				---		---
525 	 * DAD packet			MUST NOT	do not add the option
526 	 * there's no link layer address:
527 	 *				impossible	do not add the option
528 	 * there's link layer address:
529 	 *	Multicast NS		MUST add one	add the option
530 	 *	Unicast NS		SHOULD add one	add the option
531 	 */
532 	if (!dad && (mac = nd6_ifptomac(ifp))) {
533 		int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
534 		struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_ns + 1);
535 		/* 8 byte alignments... */
536 		optlen = (optlen + 7) & ~7;
537 
538 		m->m_pkthdr.len += optlen;
539 		m->m_len += optlen;
540 		icmp6len += optlen;
541 		bzero((caddr_t)nd_opt, optlen);
542 		nd_opt->nd_opt_type = ND_OPT_SOURCE_LINKADDR;
543 		nd_opt->nd_opt_len = optlen >> 3;
544 		bcopy(mac, (caddr_t)(nd_opt + 1), ifp->if_addrlen);
545 	}
546 
547 	ip6->ip6_plen = htons((u_short)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, NULL, dad ? IPV6_DADOUTPUT : 0, &im6o, &outif, NULL);
553 	if (outif) {
554 		icmp6_ifstat_inc(outif, ifs6_out_msg);
555 		icmp6_ifstat_inc(outif, ifs6_out_neighborsolicit);
556 	}
557 	icmp6stat.icp6s_outhist[ND_NEIGHBOR_SOLICIT]++;
558 }
559 
560 /*
561  * Neighbor advertisement input handling.
562  *
563  * Based on RFC 2461
564  * Based on RFC 2462 (duplicated address detection)
565  *
566  * the following items are not implemented yet:
567  * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
568  * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
569  */
570 void
571 nd6_na_input(struct mbuf *m, int off, int icmp6len)
572 {
573 	struct ifnet *ifp = m->m_pkthdr.rcvif;
574 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
575 	struct nd_neighbor_advert *nd_na;
576 	struct in6_addr saddr6 = ip6->ip6_src;
577 	struct in6_addr daddr6 = ip6->ip6_dst;
578 	struct in6_addr taddr6;
579 	int flags;
580 	int is_router;
581 	int is_solicited;
582 	int is_override;
583 	char *lladdr = NULL;
584 	int lladdrlen = 0;
585 	struct ifaddr *ifa;
586 	struct llinfo_nd6 *ln;
587 	struct rtentry *rt;
588 	struct sockaddr_dl *sdl;
589 	union nd_opts ndopts;
590 
591 	if (ip6->ip6_hlim != 255) {
592 		nd6log((LOG_ERR,
593 		    "nd6_na_input: invalid hlim (%d) from %s to %s on %s\n",
594 		    ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
595 		    ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
596 		goto bad;
597 	}
598 
599 #ifndef PULLDOWN_TEST
600 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
601 	nd_na = (struct nd_neighbor_advert *)((caddr_t)ip6 + off);
602 #else
603 	IP6_EXTHDR_GET(nd_na, struct nd_neighbor_advert *, m, off, icmp6len);
604 	if (nd_na == NULL) {
605 		icmp6stat.icp6s_tooshort++;
606 		return;
607 	}
608 #endif
609 	taddr6 = nd_na->nd_na_target;
610 	flags = nd_na->nd_na_flags_reserved;
611 	is_router = ((flags & ND_NA_FLAG_ROUTER) != 0);
612 	is_solicited = ((flags & ND_NA_FLAG_SOLICITED) != 0);
613 	is_override = ((flags & ND_NA_FLAG_OVERRIDE) != 0);
614 
615 	if (IN6_IS_SCOPE_LINKLOCAL(&taddr6))
616 		taddr6.s6_addr16[1] = htons(ifp->if_index);
617 
618 	if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
619 		nd6log((LOG_ERR,
620 		    "nd6_na_input: invalid target address %s\n",
621 		    ip6_sprintf(&taddr6)));
622 		goto bad;
623 	}
624 	if (IN6_IS_ADDR_MULTICAST(&daddr6))
625 		if (is_solicited) {
626 			nd6log((LOG_ERR,
627 			    "nd6_na_input: a solicited adv is multicasted\n"));
628 			goto bad;
629 		}
630 
631 	icmp6len -= sizeof(*nd_na);
632 	nd6_option_init(nd_na + 1, icmp6len, &ndopts);
633 	if (nd6_options(&ndopts) < 0) {
634 		nd6log((LOG_INFO,
635 		    "nd6_na_input: invalid ND option, ignored\n"));
636 		/* nd6_options have incremented stats */
637 		goto freeit;
638 	}
639 
640 	if (ndopts.nd_opts_tgt_lladdr) {
641 		lladdr = (char *)(ndopts.nd_opts_tgt_lladdr + 1);
642 		lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3;
643 	}
644 
645 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
646 
647 	/*
648 	 * Target address matches one of my interface address.
649 	 *
650 	 * If my address is tentative, this means that there's somebody
651 	 * already using the same address as mine.  This indicates DAD failure.
652 	 * This is defined in RFC 2462.
653 	 *
654 	 * Otherwise, process as defined in RFC 2461.
655 	 */
656 	if (ifa
657 	 && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE)) {
658 		nd6_dad_na_input(ifa);
659 		goto freeit;
660 	}
661 
662 	/* Just for safety, maybe unnecessary. */
663 	if (ifa) {
664 		log(LOG_ERR,
665 		    "nd6_na_input: duplicate IP6 address %s\n",
666 		    ip6_sprintf(&taddr6));
667 		goto freeit;
668 	}
669 
670 	if (!nd6_onlink_ns_rfc4861) {
671 		/*
672 		 * Make sure the source address is from a neighbor's address.
673 		 */
674 		if (in6ifa_ifplocaladdr(ifp, &saddr6) == NULL) {
675 			nd6log((LOG_INFO, "nd6_na_input: "
676 			    "NA packet from non-neighbor\n"));
677 			goto bad;
678 		}
679 	}
680 
681 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
682 		nd6log((LOG_INFO, "nd6_na_input: lladdrlen mismatch for %s "
683 		    "(if %d, NA packet %d)\n", ip6_sprintf(&taddr6),
684 		    ifp->if_addrlen, lladdrlen - 2));
685 		goto bad;
686 	}
687 
688 	/*
689 	 * If no neighbor cache entry is found, NA SHOULD silently be discarded.
690 	 */
691 	rt = nd6_lookup(&taddr6, 0, ifp);
692 	if ((rt == NULL) ||
693 	   ((ln = (struct llinfo_nd6 *)rt->rt_llinfo) == NULL) ||
694 	   ((sdl = SDL(rt->rt_gateway)) == NULL))
695 		goto freeit;
696 
697 	if (ln->ln_state == ND6_LLINFO_INCOMPLETE) {
698 		/*
699 		 * If the link-layer has address, and no lladdr option came,
700 		 * discard the packet.
701 		 */
702 		if (ifp->if_addrlen && !lladdr)
703 			goto freeit;
704 
705 		/*
706 		 * Record link-layer address, and update the state.
707 		 */
708 		sdl->sdl_alen = ifp->if_addrlen;
709 		bcopy(lladdr, LLADDR(sdl), ifp->if_addrlen);
710 		if (is_solicited) {
711 			ln->ln_state = ND6_LLINFO_REACHABLE;
712 			ln->ln_byhint = 0;
713 			if (ln->ln_expire) {
714 				ln->ln_expire = time_uptime +
715 				    ND_IFINFO(rt->rt_ifp)->reachable;
716 			}
717 		} else {
718 			ln->ln_state = ND6_LLINFO_STALE;
719 			ln->ln_expire = time_uptime + nd6_gctimer;
720 		}
721 		if ((ln->ln_router = is_router) != 0) {
722 			/*
723 			 * This means a router's state has changed from
724 			 * non-reachable to probably reachable, and might
725 			 * affect the status of associated prefixes..
726 			 */
727 			pfxlist_onlink_check();
728 		}
729 	} else {
730 		int llchange;
731 
732 		/*
733 		 * Check if the link-layer address has changed or not.
734 		 */
735 		if (!lladdr)
736 			llchange = 0;
737 		else {
738 			if (sdl->sdl_alen) {
739 				if (bcmp(lladdr, LLADDR(sdl), ifp->if_addrlen))
740 					llchange = 1;
741 				else
742 					llchange = 0;
743 			} else
744 				llchange = 1;
745 		}
746 
747 		/*
748 		 * This is VERY complex.  Look at it with care.
749 		 *
750 		 * override solicit lladdr llchange	action
751 		 *					(L: record lladdr)
752 		 *
753 		 *	0	0	n	--	(2c)
754 		 *	0	0	y	n	(2b) L
755 		 *	0	0	y	y	(1)    REACHABLE->STALE
756 		 *	0	1	n	--	(2c)   *->REACHABLE
757 		 *	0	1	y	n	(2b) L *->REACHABLE
758 		 *	0	1	y	y	(1)    REACHABLE->STALE
759 		 *	1	0	n	--	(2a)
760 		 *	1	0	y	n	(2a) L
761 		 *	1	0	y	y	(2a) L *->STALE
762 		 *	1	1	n	--	(2a)   *->REACHABLE
763 		 *	1	1	y	n	(2a) L *->REACHABLE
764 		 *	1	1	y	y	(2a) L *->REACHABLE
765 		 */
766 		if (!is_override && (lladdr && llchange)) {	   /* (1) */
767 			/*
768 			 * If state is REACHABLE, make it STALE.
769 			 * no other updates should be done.
770 			 */
771 			if (ln->ln_state == ND6_LLINFO_REACHABLE) {
772 				ln->ln_state = ND6_LLINFO_STALE;
773 				ln->ln_expire = time_uptime + nd6_gctimer;
774 			}
775 			goto freeit;
776 		} else if (is_override				   /* (2a) */
777 			|| (lladdr && !llchange)                   /* (2b) */
778 			|| !lladdr) {				   /* (2c) */
779 			/*
780 			 * Update link-local address, if any.
781 			 */
782 			if (lladdr) {
783 				sdl->sdl_alen = ifp->if_addrlen;
784 				bcopy(lladdr, LLADDR(sdl), ifp->if_addrlen);
785 			}
786 
787 			/*
788 			 * If solicited, make the state REACHABLE.
789 			 * If not solicited and the link-layer address was
790 			 * changed, make it STALE.
791 			 */
792 			if (is_solicited) {
793 				ln->ln_state = ND6_LLINFO_REACHABLE;
794 				ln->ln_byhint = 0;
795 				if (ln->ln_expire) {
796 					ln->ln_expire = time_uptime +
797 					    ND_IFINFO(ifp)->reachable;
798 				}
799 			} else {
800 				if (lladdr && llchange) {
801 					ln->ln_state = ND6_LLINFO_STALE;
802 					ln->ln_expire = time_uptime + nd6_gctimer;
803 				}
804 			}
805 		}
806 
807 		if (ln->ln_router && !is_router) {
808 			/*
809 			 * The peer dropped the router flag.
810 			 * Remove the sender from the Default Router List and
811 			 * update the Destination Cache entries.
812 			 */
813 			struct nd_defrouter *dr;
814 			struct in6_addr *in6;
815 
816 			in6 = &((struct sockaddr_in6 *)rt_key(rt))->sin6_addr;
817 
818 			/*
819 			 * Lock to protect the default router list.
820 			 * XXX: this might be unnecessary, since this function
821 			 * is only called under the network software interrupt
822 			 * context.  However, we keep it just for safety.
823 			 */
824 			mtx_lock(&nd6_mtx);
825 			dr = defrouter_lookup(in6, rt->rt_ifp);
826 			if (dr)
827 				defrtrlist_del(dr);
828 			mtx_unlock(&nd6_mtx);
829 
830 			if (dr == NULL && !ip6_forwarding && ip6_accept_rtadv) {
831 				/*
832 				 * Even if the neighbor is not in the default
833 				 * router list, the neighbor may be used
834 				 * as a next hop for some destinations
835 				 * (e.g. redirect case). So we must
836 				 * call rt6_flush explicitly.
837 				 */
838 				rt6_flush(&ip6->ip6_src, rt->rt_ifp);
839 			}
840 		}
841 		ln->ln_router = is_router;
842 	}
843 	rt->rt_flags &= ~RTF_REJECT;
844 	ln->ln_asked = 0;
845 	if (ln->ln_hold) {
846 		/*
847 		 * we assume ifp is not a loopback here, so just set the 2nd
848 		 * argument as the 1st one.
849 		 */
850 		nd6_output(ifp, ifp, ln->ln_hold,
851 			   (struct sockaddr_in6 *)rt_key(rt), rt);
852 		ln->ln_hold = NULL;
853 	}
854 
855 freeit:
856 	m_freem(m);
857 	return;
858 
859 bad:
860 	icmp6stat.icp6s_badna++;
861 	m_freem(m);
862 }
863 
864 /*
865  * Neighbor advertisement output handling.
866  *
867  * Based on RFC 2461
868  *
869  * the following items are not implemented yet:
870  * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
871  * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
872  */
873 void
874 nd6_na_output(struct ifnet *ifp, const struct in6_addr *daddr6,
875 	      const struct in6_addr *taddr6, u_long flags,
876 	      int tlladdr,	/* 1 if include target link-layer address */
877 	      struct sockaddr *sdl0)	/* sockaddr_dl (= proxy NA) or NULL */
878 {
879 	struct mbuf *m;
880 	struct ip6_hdr *ip6;
881 	struct nd_neighbor_advert *nd_na;
882 	struct in6_ifaddr *ia = NULL;
883 	struct ip6_moptions im6o;
884 	int icmp6len;
885 	int maxlen;
886 	caddr_t mac;
887 	struct ifnet *outif = NULL;
888 
889 	/* estimate the size of message */
890 	maxlen = sizeof(*ip6) + sizeof(*nd_na);
891 	maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
892 	if (max_linkhdr + maxlen > MCLBYTES) {
893 #ifdef DIAGNOSTIC
894 		kprintf("nd6_na_output: max_linkhdr + maxlen > MCLBYTES "
895 		    "(%d + %d > %d)\n", max_linkhdr, maxlen, MCLBYTES);
896 #endif
897 		return;
898 	}
899 
900 	m = m_getb(max_linkhdr + maxlen, M_NOWAIT, MT_DATA, M_PKTHDR);
901 	if (m == NULL)
902 		return;
903 
904 	if (IN6_IS_ADDR_MULTICAST(daddr6)) {
905 		m->m_flags |= M_MCAST;
906 		im6o.im6o_multicast_ifp = ifp;
907 		im6o.im6o_multicast_hlim = 255;
908 		im6o.im6o_multicast_loop = 0;
909 	}
910 
911 	icmp6len = sizeof(*nd_na);
912 	m->m_pkthdr.len = m->m_len = sizeof(struct ip6_hdr) + icmp6len;
913 	m->m_data += max_linkhdr;	/* or MH_ALIGN() equivalent? */
914 
915 	/* fill neighbor advertisement packet */
916 	ip6 = mtod(m, struct ip6_hdr *);
917 	ip6->ip6_flow = 0;
918 	ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
919 	ip6->ip6_vfc |= IPV6_VERSION;
920 	ip6->ip6_nxt = IPPROTO_ICMPV6;
921 	ip6->ip6_hlim = 255;
922 	if (IN6_IS_ADDR_UNSPECIFIED(daddr6)) {
923 		/* reply to DAD */
924 		ip6->ip6_dst.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
925 		ip6->ip6_dst.s6_addr16[1] = htons(ifp->if_index);
926 		ip6->ip6_dst.s6_addr32[1] = 0;
927 		ip6->ip6_dst.s6_addr32[2] = 0;
928 		ip6->ip6_dst.s6_addr32[3] = IPV6_ADDR_INT32_ONE;
929 		flags &= ~ND_NA_FLAG_SOLICITED;
930 	} else
931 		ip6->ip6_dst = *daddr6;
932 
933 	/*
934 	 * Select a source whose scope is the same as that of the dest.
935 	 */
936 	ia = in6_ifawithifp(ifp, &ip6->ip6_dst);
937 	if (ia == NULL) {
938 		m_freem(m);
939 		return;
940 	}
941 	ip6->ip6_src = ia->ia_addr.sin6_addr;
942 	nd_na = (struct nd_neighbor_advert *)(ip6 + 1);
943 	nd_na->nd_na_type = ND_NEIGHBOR_ADVERT;
944 	nd_na->nd_na_code = 0;
945 	nd_na->nd_na_target = *taddr6;
946 	in6_clearscope(&nd_na->nd_na_target); /* XXX */
947 
948 	/*
949 	 * "tlladdr" indicates NS's condition for adding tlladdr or not.
950 	 * see nd6_ns_input() for details.
951 	 * Basically, if NS packet is sent to unicast/anycast addr,
952 	 * target lladdr option SHOULD NOT be included.
953 	 */
954 	mac = NULL;
955 	if (tlladdr) {
956 		/*
957 		 * sdl0 != NULL indicates proxy NA.  If we do proxy, use
958 		 * lladdr in sdl0.  If we are not proxying (sending NA for
959 		 * my address) use lladdr configured for the interface.
960 		 */
961 		if (sdl0 == NULL) {
962 #ifdef CARP
963 			if (ifp->if_carp)
964 				mac = carp_macmatch6(ifp->if_carp, m, taddr6);
965 			if (mac == NULL)
966 				mac = nd6_ifptomac(ifp);
967 #else
968 			mac = nd6_ifptomac(ifp);
969 #endif
970 		} else if (sdl0->sa_family == AF_LINK) {
971 			struct sockaddr_dl *sdl;
972 			sdl = (struct sockaddr_dl *)sdl0;
973 			if (sdl->sdl_alen == ifp->if_addrlen)
974 				mac = LLADDR(sdl);
975 		}
976 	}
977 	if (mac != NULL) {
978 		int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
979 		struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_na + 1);
980 
981 		/* roundup to 8 bytes alignment! */
982 		optlen = (optlen + 7) & ~7;
983 
984 		m->m_pkthdr.len += optlen;
985 		m->m_len += optlen;
986 		icmp6len += optlen;
987 		bzero((caddr_t)nd_opt, optlen);
988 		nd_opt->nd_opt_type = ND_OPT_TARGET_LINKADDR;
989 		nd_opt->nd_opt_len = optlen >> 3;
990 		bcopy(mac, (caddr_t)(nd_opt + 1), ifp->if_addrlen);
991 	} else
992 		flags &= ~ND_NA_FLAG_OVERRIDE;
993 
994 	ip6->ip6_plen = htons((u_short)icmp6len);
995 	nd_na->nd_na_flags_reserved = flags;
996 	nd_na->nd_na_cksum = 0;
997 	nd_na->nd_na_cksum =
998 	    in6_cksum(m, IPPROTO_ICMPV6, sizeof(struct ip6_hdr), icmp6len);
999 
1000 	ip6_output(m, NULL, NULL, 0, &im6o, &outif, NULL);
1001 	if (outif) {
1002 		icmp6_ifstat_inc(outif, ifs6_out_msg);
1003 		icmp6_ifstat_inc(outif, ifs6_out_neighboradvert);
1004 	}
1005 	icmp6stat.icp6s_outhist[ND_NEIGHBOR_ADVERT]++;
1006 }
1007 
1008 caddr_t
1009 nd6_ifptomac(struct ifnet *ifp)
1010 {
1011 	switch (ifp->if_type) {
1012 	case IFT_ETHER:
1013 	case IFT_IEEE1394:
1014 #ifdef IFT_L2VLAN
1015 	case IFT_L2VLAN:
1016 #endif
1017 #ifdef IFT_IEEE80211
1018 	case IFT_IEEE80211:
1019 #endif
1020 #ifdef IFT_CARP
1021 	case IFT_CARP:
1022 #endif
1023 		return ((caddr_t)(ifp + 1));
1024 	default:
1025 		return NULL;
1026 	}
1027 }
1028 
1029 struct netmsg_dad {
1030 	struct netmsg_base	base;
1031 	struct dadq		*dadq;
1032 };
1033 
1034 struct dadq {
1035 	TAILQ_ENTRY(dadq) dad_list;
1036 	struct ifaddr *dad_ifa;
1037 	int dad_count;		/* max NS to send */
1038 	int dad_ns_tcount;	/* # of trials to send NS */
1039 	int dad_ns_ocount;	/* NS sent so far */
1040 	int dad_ns_icount;
1041 	int dad_na_icount;
1042 	struct callout dad_timer_ch;
1043 	struct netmsg_dad dad_nmsg;
1044 };
1045 TAILQ_HEAD(dadq_head, dadq);
1046 
1047 static struct dadq_head dadq = TAILQ_HEAD_INITIALIZER(dadq);
1048 
1049 static struct dadq *
1050 nd6_dad_find(struct ifaddr *ifa)
1051 {
1052 	struct dadq *dp;
1053 
1054 	ASSERT_NETISR0;
1055 
1056 	TAILQ_FOREACH(dp, &dadq, dad_list) {
1057 		if (dp->dad_ifa == ifa)
1058 			return dp;
1059 	}
1060 	return NULL;
1061 }
1062 
1063 static void
1064 nd6_dad_starttimer(struct dadq *dp, int ticks)
1065 {
1066 	ASSERT_NETISR0;
1067 	callout_reset(&dp->dad_timer_ch, ticks, nd6_dad_timer, dp);
1068 }
1069 
1070 static void
1071 nd6_dad_stoptimer(struct dadq *dp)
1072 {
1073 	ASSERT_NETISR0;
1074 	callout_stop(&dp->dad_timer_ch);
1075 }
1076 
1077 /*
1078  * Start Duplicated Address Detection (DAD) for specified interface address.
1079  */
1080 void
1081 nd6_dad_start(struct ifaddr *ifa,
1082 	      int *tick)	/* minimum delay ticks for IFF_UP event */
1083 {
1084 	struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1085 	struct dadq *dp;
1086 
1087 	ASSERT_NETISR0;
1088 
1089 	/*
1090 	 * If we don't need DAD, don't do it.
1091 	 * There are several cases:
1092 	 * - DAD is disabled (ip6_dad_count == 0)
1093 	 * - the interface address is anycast
1094 	 */
1095 	if (!(ia->ia6_flags & IN6_IFF_TENTATIVE)) {
1096 		log(LOG_DEBUG,
1097 			"nd6_dad_start: called with non-tentative address "
1098 			"%s(%s)\n",
1099 			ip6_sprintf(&ia->ia_addr.sin6_addr),
1100 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
1101 		return;
1102 	}
1103 	if (ia->ia6_flags & IN6_IFF_ANYCAST) {
1104 		ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1105 		return;
1106 	}
1107 	if (!ip6_dad_count) {
1108 		ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1109 		return;
1110 	}
1111 	if (!ifa->ifa_ifp)
1112 		panic("nd6_dad_start: ifa->ifa_ifp == NULL");
1113 	if (!(ifa->ifa_ifp->if_flags & IFF_UP))
1114 		return;
1115 	if (nd6_dad_find(ifa) != NULL) {
1116 		/* DAD already in progress */
1117 		return;
1118 	}
1119 
1120 	dp = nd6_dad_create(ifa);
1121 	nd6log((LOG_DEBUG, "%s: starting DAD for %s\n", if_name(ifa->ifa_ifp),
1122 	    ip6_sprintf(&ia->ia_addr.sin6_addr)));
1123 
1124 	/*
1125 	 * Send NS packet for DAD, dp->dad_count times.
1126 	 * Note that we must delay the first transmission, if this is the
1127 	 * first packet to be sent from the interface after interface
1128 	 * (re)initialization.
1129 	 */
1130 	if (tick == NULL) {
1131 		nd6_dad_ns_output(dp);
1132 		nd6_dad_starttimer(dp,
1133 		    ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
1134 	} else {
1135 		int ntick;
1136 
1137 		if (*tick == 0)
1138 			ntick = krandom() % (MAX_RTR_SOLICITATION_DELAY * hz);
1139 		else
1140 			ntick = *tick + krandom() % (hz / 2);
1141 		*tick = ntick;
1142 		nd6_dad_starttimer(dp, ntick);
1143 	}
1144 }
1145 
1146 /*
1147  * Terminate DAD unconditionally.  Used for address removals.
1148  */
1149 void
1150 nd6_dad_stop(struct ifaddr *ifa)
1151 {
1152 	struct dadq *dp;
1153 
1154 	ASSERT_NETISR0;
1155 
1156 	dp = nd6_dad_find(ifa);
1157 	if (!dp) {
1158 		/* DAD wasn't started yet */
1159 		return;
1160 	}
1161 	nd6_dad_destroy(dp);
1162 }
1163 
1164 static struct dadq *
1165 nd6_dad_create(struct ifaddr *ifa)
1166 {
1167 	struct netmsg_dad *dm;
1168 	struct dadq *dp;
1169 
1170 	ASSERT_NETISR0;
1171 
1172 	dp = kmalloc(sizeof(*dp), M_IP6NDP, M_INTWAIT | M_ZERO);
1173 	callout_init_mp(&dp->dad_timer_ch);
1174 
1175 	dm = &dp->dad_nmsg;
1176 	netmsg_init(&dm->base, NULL, &netisr_adone_rport,
1177 	    MSGF_DROPABLE | MSGF_PRIORITY, nd6_dad_timer_handler);
1178 	dm->dadq = dp;
1179 
1180 	dp->dad_ifa = ifa;
1181 	IFAREF(ifa);	/* just for safety */
1182 
1183 	/* Send NS packet for DAD, ip6_dad_count times. */
1184 	dp->dad_count = ip6_dad_count;
1185 
1186 	TAILQ_INSERT_TAIL(&dadq, dp, dad_list);
1187 
1188 	return dp;
1189 }
1190 
1191 static void
1192 nd6_dad_destroy(struct dadq *dp)
1193 {
1194 	struct lwkt_msg *lmsg = &dp->dad_nmsg.base.lmsg;
1195 
1196 	ASSERT_NETISR0;
1197 
1198 	TAILQ_REMOVE(&dadq, dp, dad_list);
1199 
1200 	nd6_dad_stoptimer(dp);
1201 
1202 	crit_enter();
1203 	if ((lmsg->ms_flags & MSGF_DONE) == 0)
1204 		lwkt_dropmsg(lmsg);
1205 	crit_exit();
1206 
1207 	IFAFREE(dp->dad_ifa);
1208 	kfree(dp, M_IP6NDP);
1209 }
1210 
1211 static void
1212 nd6_dad_timer(void *xdp)
1213 {
1214 	struct dadq *dp = xdp;
1215 	struct lwkt_msg *lmsg = &dp->dad_nmsg.base.lmsg;
1216 
1217 	KASSERT(mycpuid == 0, ("dad timer not on cpu0"));
1218 
1219 	crit_enter();
1220 	if (lmsg->ms_flags & MSGF_DONE)
1221 		lwkt_sendmsg_oncpu(netisr_cpuport(0), lmsg);
1222 	crit_exit();
1223 }
1224 
1225 static void
1226 nd6_dad_timer_handler(netmsg_t msg)
1227 {
1228 	struct netmsg_dad *dm = (struct netmsg_dad *)msg;
1229 	struct dadq *dp = dm->dadq;
1230 	struct ifaddr *ifa = dp->dad_ifa;
1231 	struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1232 
1233 	ASSERT_NETISR0;
1234 
1235 	/* Reply ASAP */
1236 	crit_enter();
1237 	lwkt_replymsg(&dm->base.lmsg, 0);
1238 	crit_exit();
1239 
1240 	if (ia->ia6_flags & IN6_IFF_DUPLICATED) {
1241 		log(LOG_ERR, "nd6_dad_timer: called with duplicated address "
1242 			"%s(%s)\n",
1243 			ip6_sprintf(&ia->ia_addr.sin6_addr),
1244 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
1245 		goto destroy;
1246 	}
1247 	if (!(ia->ia6_flags & IN6_IFF_TENTATIVE)) {
1248 		log(LOG_ERR, "nd6_dad_timer: called with non-tentative address "
1249 			"%s(%s)\n",
1250 			ip6_sprintf(&ia->ia_addr.sin6_addr),
1251 			ifa->ifa_ifp ? if_name(ifa->ifa_ifp) : "???");
1252 		goto destroy;
1253 	}
1254 
1255 	/* Timed out with IFF_{RUNNING,UP} check */
1256 	if (dp->dad_ns_tcount > dad_maxtry) {
1257 		nd6log((LOG_INFO, "%s: could not run DAD, driver problem?\n",
1258 		    if_name(ifa->ifa_ifp)));
1259 		goto destroy;
1260 	}
1261 
1262 	/* Need more checks? */
1263 	if (dp->dad_ns_ocount < dp->dad_count) {
1264 		/*
1265 		 * We have more NS to go.  Send NS packet for DAD.
1266 		 */
1267 		nd6_dad_ns_output(dp);
1268 		nd6_dad_starttimer(dp,
1269 		    ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
1270 	} else {
1271 		/*
1272 		 * We have transmitted sufficient number of DAD packets.
1273 		 * See what we've got.
1274 		 */
1275 		int duplicate;
1276 
1277 		duplicate = 0;
1278 
1279 		if (dp->dad_na_icount) {
1280 			/*
1281 			 * the check is in nd6_dad_na_input(),
1282 			 * but just in case
1283 			 */
1284 			duplicate++;
1285 		}
1286 
1287 		if (dp->dad_ns_icount) {
1288 #if 0 /* heuristics */
1289 			/*
1290 			 * if
1291 			 * - we have sent many(?) DAD NS, and
1292 			 * - the number of NS we sent equals to the
1293 			 *   number of NS we've got, and
1294 			 * - we've got no NA
1295 			 * we may have a faulty network card/driver which
1296 			 * loops back multicasts to myself.
1297 			 */
1298 			if (3 < dp->dad_count
1299 			 && dp->dad_ns_icount == dp->dad_count
1300 			 && dp->dad_na_icount == 0) {
1301 				log(LOG_INFO, "DAD questionable for %s(%s): "
1302 				    "network card loops back multicast?\n",
1303 				    ip6_sprintf(&ia->ia_addr.sin6_addr),
1304 				    if_name(ifa->ifa_ifp));
1305 				/* XXX consider it a duplicate or not? */
1306 				/* duplicate++; */
1307 			} else {
1308 				/* We've seen NS, means DAD has failed. */
1309 				duplicate++;
1310 			}
1311 #else
1312 			/* We've seen NS, means DAD has failed. */
1313 			duplicate++;
1314 #endif
1315 		}
1316 
1317 		if (duplicate) {
1318 			/* dp will be freed in nd6_dad_duplicated() */
1319 			dp = NULL;
1320 			nd6_dad_duplicated(ifa);
1321 		} else {
1322 			/*
1323 			 * We are done with DAD.  No NA came, no NS came.
1324 			 * duplicated address found.
1325 			 */
1326 			ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1327 			nd6log((LOG_DEBUG,
1328 			    "%s: DAD complete for %s - no duplicates found\n",
1329 			    if_name(ifa->ifa_ifp),
1330 			    ip6_sprintf(&ia->ia_addr.sin6_addr)));
1331 			goto destroy;
1332 		}
1333 	}
1334 	return;
1335 destroy:
1336 	nd6_dad_destroy(dp);
1337 }
1338 
1339 static void
1340 nd6_dad_duplicated(struct ifaddr *ifa)
1341 {
1342 	struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1343 	struct dadq *dp;
1344 
1345 	ASSERT_NETISR0;
1346 
1347 	dp = nd6_dad_find(ifa);
1348 	if (dp == NULL) {
1349 		log(LOG_ERR, "nd6_dad_duplicated: DAD structure not found\n");
1350 		return;
1351 	}
1352 
1353 	/*
1354 	 * We are done with DAD, with duplicated address found. (failure)
1355 	 */
1356 	log(LOG_ERR, "%s: DAD detected duplicate IPv6 address %s: "
1357 	    "NS in/out=%d/%d, NA in=%d\n",
1358 	    if_name(ifa->ifa_ifp), ip6_sprintf(&ia->ia_addr.sin6_addr),
1359 	    dp->dad_ns_icount, dp->dad_ns_ocount, dp->dad_na_icount);
1360 
1361 	ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1362 	ia->ia6_flags |= IN6_IFF_DUPLICATED;
1363 
1364 	log(LOG_ERR, "%s: DAD complete for %s - duplicate found\n",
1365 	    if_name(ifa->ifa_ifp), ip6_sprintf(&ia->ia_addr.sin6_addr));
1366 	log(LOG_ERR, "%s: manual intervention required\n",
1367 	    if_name(ifa->ifa_ifp));
1368 
1369 	nd6_dad_destroy(dp);
1370 }
1371 
1372 static void
1373 nd6_dad_ns_output(struct dadq *dp)
1374 {
1375 	struct in6_ifaddr *ia = (struct in6_ifaddr *)dp->dad_ifa;
1376 	struct ifnet *ifp = dp->dad_ifa->ifa_ifp;
1377 
1378 	ASSERT_NETISR0;
1379 
1380 	dp->dad_ns_tcount++;
1381 	if (!(ifp->if_flags & IFF_UP)) {
1382 #if 0
1383 		kprintf("%s: interface down?\n", if_name(ifp));
1384 #endif
1385 		return;
1386 	}
1387 	if (!(ifp->if_flags & IFF_RUNNING)) {
1388 #if 0
1389 		kprintf("%s: interface not running?\n", if_name(ifp));
1390 #endif
1391 		return;
1392 	}
1393 
1394 	dp->dad_ns_ocount++;
1395 	nd6_ns_output(ifp, NULL, &ia->ia_addr.sin6_addr, NULL, 1);
1396 }
1397 
1398 static void
1399 nd6_dad_ns_input(struct ifaddr *ifa)
1400 {
1401 	struct in6_ifaddr *ia;
1402 	const struct in6_addr *taddr6;
1403 	struct dadq *dp;
1404 	int duplicate;
1405 
1406 	ASSERT_NETISR0;
1407 
1408 	if (!ifa)
1409 		panic("ifa == NULL in nd6_dad_ns_input");
1410 
1411 	ia = (struct in6_ifaddr *)ifa;
1412 	taddr6 = &ia->ia_addr.sin6_addr;
1413 	duplicate = 0;
1414 	dp = nd6_dad_find(ifa);
1415 
1416 	/* Quickhack - completely ignore DAD NS packets */
1417 	if (dad_ignore_ns) {
1418 		nd6log((LOG_INFO,
1419 		    "nd6_dad_ns_input: ignoring DAD NS packet for "
1420 		    "address %s(%s)\n", ip6_sprintf(taddr6),
1421 		    if_name(ifa->ifa_ifp)));
1422 		return;
1423 	}
1424 
1425 	/*
1426 	 * if I'm yet to start DAD, someone else started using this address
1427 	 * first.  I have a duplicate and you win.
1428 	 */
1429 	if (!dp || dp->dad_ns_ocount == 0)
1430 		duplicate++;
1431 
1432 	/* XXX more checks for loopback situation - see nd6_dad_timer too */
1433 
1434 	if (duplicate) {
1435 		dp = NULL;	/* will be freed in nd6_dad_duplicated() */
1436 		nd6_dad_duplicated(ifa);
1437 	} else {
1438 		/*
1439 		 * not sure if I got a duplicate.
1440 		 * increment ns count and see what happens.
1441 		 */
1442 		if (dp)
1443 			dp->dad_ns_icount++;
1444 	}
1445 }
1446 
1447 static void
1448 nd6_dad_na_input(struct ifaddr *ifa)
1449 {
1450 	struct dadq *dp;
1451 
1452 	ASSERT_NETISR0;
1453 
1454 	if (!ifa)
1455 		panic("ifa == NULL in nd6_dad_na_input");
1456 
1457 	dp = nd6_dad_find(ifa);
1458 	if (dp)
1459 		dp->dad_na_icount++;
1460 
1461 	/* remove the address. */
1462 	nd6_dad_duplicated(ifa);
1463 }
1464