This source file includes following definitions.
- nd6_ns_input
- nd6_ns_output
- nd6_na_input
- nd6_na_output
- nd6_ifptomac
- nd6_dad_find
- nd6_dad_starttimer
- nd6_dad_stoptimer
- nd6_dad_start
- nd6_dad_stop
- nd6_dad_timer
- nd6_dad_duplicated
- nd6_dad_ns_output
- nd6_dad_ns_input
- nd6_dad_na_input
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/malloc.h>
36 #include <sys/mbuf.h>
37 #include <sys/socket.h>
38 #include <sys/sockio.h>
39 #include <sys/time.h>
40 #include <sys/kernel.h>
41 #include <sys/errno.h>
42 #include <sys/ioctl.h>
43 #include <sys/syslog.h>
44 #include <sys/queue.h>
45 #include <sys/timeout.h>
46
47 #include <net/if.h>
48 #include <net/if_types.h>
49 #include <net/if_dl.h>
50 #include <net/route.h>
51
52 #include <netinet/in.h>
53 #include <netinet/in_var.h>
54 #include <netinet6/in6_var.h>
55 #include <netinet/ip6.h>
56 #include <netinet6/ip6_var.h>
57 #include <netinet6/nd6.h>
58 #include <netinet/icmp6.h>
59
60 #include <dev/rndvar.h>
61
62 #include "carp.h"
63 #if NCARP > 0
64 #include <netinet/ip_carp.h>
65 #endif
66
67 #define SDL(s) ((struct sockaddr_dl *)s)
68
69 struct dadq;
70 static struct dadq *nd6_dad_find(struct ifaddr *);
71 static void nd6_dad_starttimer(struct dadq *, int);
72 static void nd6_dad_stoptimer(struct dadq *);
73 static void nd6_dad_timer(struct ifaddr *);
74 static void nd6_dad_ns_output(struct dadq *, struct ifaddr *);
75 static void nd6_dad_ns_input(struct ifaddr *);
76 static void nd6_dad_na_input(struct ifaddr *);
77
78 static int dad_ignore_ns = 0;
79 static int dad_maxtry = 15;
80
81
82
83
84
85
86
87 void
88 nd6_ns_input(m, off, icmp6len)
89 struct mbuf *m;
90 int off, icmp6len;
91 {
92 struct ifnet *ifp = m->m_pkthdr.rcvif;
93 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
94 struct nd_neighbor_solicit *nd_ns;
95 struct in6_addr saddr6 = ip6->ip6_src;
96 struct in6_addr daddr6 = ip6->ip6_dst;
97 struct in6_addr taddr6;
98 struct in6_addr myaddr6;
99 char *lladdr = NULL;
100 struct ifaddr *ifa = NULL;
101 int lladdrlen = 0;
102 int anycast = 0, proxy = 0, tentative = 0;
103 int router = ip6_forwarding;
104 int tlladdr;
105 union nd_opts ndopts;
106 struct sockaddr_dl *proxydl = NULL;
107
108 IP6_EXTHDR_GET(nd_ns, struct nd_neighbor_solicit *, m, off, icmp6len);
109 if (nd_ns == NULL) {
110 icmp6stat.icp6s_tooshort++;
111 return;
112 }
113 ip6 = mtod(m, struct ip6_hdr *);
114 taddr6 = nd_ns->nd_ns_target;
115
116 if (ip6->ip6_hlim != 255) {
117 nd6log((LOG_ERR,
118 "nd6_ns_input: invalid hlim (%d) from %s to %s on %s\n",
119 ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
120 ip6_sprintf(&ip6->ip6_dst), ifp->if_xname));
121 goto bad;
122 }
123
124 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
125
126
127 if (daddr6.s6_addr16[0] == IPV6_ADDR_INT16_MLL &&
128 daddr6.s6_addr32[1] == 0 &&
129 daddr6.s6_addr32[2] == IPV6_ADDR_INT32_ONE &&
130 daddr6.s6_addr8[12] == 0xff) {
131 ;
132 } else {
133 nd6log((LOG_INFO, "nd6_ns_input: bad DAD packet "
134 "(wrong ip6 dst)\n"));
135 goto bad;
136 }
137 }
138
139 if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
140 nd6log((LOG_INFO, "nd6_ns_input: bad NS target (multicast)\n"));
141 goto bad;
142 }
143
144 if (IN6_IS_SCOPE_EMBED(&taddr6))
145 taddr6.s6_addr16[1] = htons(ifp->if_index);
146
147 icmp6len -= sizeof(*nd_ns);
148 nd6_option_init(nd_ns + 1, icmp6len, &ndopts);
149 if (nd6_options(&ndopts) < 0) {
150 nd6log((LOG_INFO,
151 "nd6_ns_input: invalid ND option, ignored\n"));
152
153 goto freeit;
154 }
155
156 if (ndopts.nd_opts_src_lladdr) {
157 lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
158 lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
159 }
160
161 if (IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src) && lladdr) {
162 nd6log((LOG_INFO, "nd6_ns_input: bad DAD packet "
163 "(link-layer address option)\n"));
164 goto bad;
165 }
166
167
168
169
170
171
172
173
174
175
176
177 #if 0
178 ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &daddr6);
179 if (ifa && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST))
180 tlladdr = 0;
181 else
182 #endif
183 if (!IN6_IS_ADDR_MULTICAST(&daddr6))
184 tlladdr = 0;
185 else
186 tlladdr = 1;
187
188
189
190
191
192
193
194
195 #if NCARP > 0
196 if (ifp->if_type == IFT_CARP) {
197 ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
198 if (ifa && !carp_iamatch6(ifp, ifa))
199 ifa = NULL;
200 } else {
201 ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
202 }
203 #else
204 ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
205 #endif
206
207
208 if (!ifa) {
209 struct rtentry *rt;
210 struct sockaddr_in6 tsin6;
211
212 bzero(&tsin6, sizeof tsin6);
213 tsin6.sin6_len = sizeof(struct sockaddr_in6);
214 tsin6.sin6_family = AF_INET6;
215 tsin6.sin6_addr = taddr6;
216
217 rt = rtalloc1((struct sockaddr *)&tsin6, 0, 0);
218 if (rt && (rt->rt_flags & RTF_ANNOUNCE) != 0 &&
219 rt->rt_gateway->sa_family == AF_LINK) {
220
221
222
223 ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp,
224 IN6_IFF_NOTREADY|IN6_IFF_ANYCAST);
225 if (ifa) {
226 proxy = 1;
227 proxydl = SDL(rt->rt_gateway);
228 router = 0;
229 }
230 }
231 if (rt)
232 rtfree(rt);
233 }
234 if (!ifa) {
235
236
237
238
239
240 goto freeit;
241 }
242 myaddr6 = *IFA_IN6(ifa);
243 anycast = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST;
244 tentative = ((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE;
245 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DUPLICATED)
246 goto freeit;
247
248 if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
249 nd6log((LOG_INFO, "nd6_ns_input: lladdrlen mismatch for %s "
250 "(if %d, NS packet %d)\n",
251 ip6_sprintf(&taddr6), ifp->if_addrlen, lladdrlen - 2));
252 goto bad;
253 }
254
255 if (IN6_ARE_ADDR_EQUAL(&myaddr6, &saddr6)) {
256 log(LOG_INFO, "nd6_ns_input: duplicate IP6 address %s\n",
257 ip6_sprintf(&saddr6));
258 goto freeit;
259 }
260
261
262
263
264
265
266
267
268
269
270
271
272
273 if (tentative) {
274
275
276
277
278
279
280
281 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
282 nd6_dad_ns_input(ifa);
283
284 goto freeit;
285 }
286
287
288
289
290
291
292
293
294
295 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) {
296 saddr6 = in6addr_linklocal_allnodes;
297 saddr6.s6_addr16[1] = htons(ifp->if_index);
298 nd6_na_output(ifp, &saddr6, &taddr6,
299 ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
300 (router ? ND_NA_FLAG_ROUTER : 0),
301 tlladdr, (struct sockaddr *)proxydl);
302 goto freeit;
303 }
304
305 nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_NEIGHBOR_SOLICIT, 0);
306
307 nd6_na_output(ifp, &saddr6, &taddr6,
308 ((anycast || proxy || !tlladdr) ? 0 : ND_NA_FLAG_OVERRIDE) |
309 (router ? ND_NA_FLAG_ROUTER : 0) | ND_NA_FLAG_SOLICITED,
310 tlladdr, (struct sockaddr *)proxydl);
311 freeit:
312 m_freem(m);
313 return;
314
315 bad:
316 nd6log((LOG_ERR, "nd6_ns_input: src=%s\n", ip6_sprintf(&saddr6)));
317 nd6log((LOG_ERR, "nd6_ns_input: dst=%s\n", ip6_sprintf(&daddr6)));
318 nd6log((LOG_ERR, "nd6_ns_input: tgt=%s\n", ip6_sprintf(&taddr6)));
319 icmp6stat.icp6s_badns++;
320 m_freem(m);
321 }
322
323
324
325
326
327
328
329
330
331
332 void
333 nd6_ns_output(ifp, daddr6, taddr6, ln, dad)
334 struct ifnet *ifp;
335 struct in6_addr *daddr6, *taddr6;
336 struct llinfo_nd6 *ln;
337 int dad;
338 {
339 struct mbuf *m;
340 struct ip6_hdr *ip6;
341 struct nd_neighbor_solicit *nd_ns;
342 struct sockaddr_in6 src_sa, dst_sa;
343 struct ip6_moptions im6o;
344 int icmp6len;
345 int maxlen;
346 caddr_t mac;
347 struct route_in6 ro;
348
349 bzero(&ro, sizeof(ro));
350
351 if (IN6_IS_ADDR_MULTICAST(taddr6))
352 return;
353
354
355 maxlen = sizeof(*ip6) + sizeof(*nd_ns);
356 maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
357 #ifdef DIAGNOSTIC
358 if (max_linkhdr + maxlen >= MCLBYTES) {
359 printf("nd6_ns_output: max_linkhdr + maxlen >= MCLBYTES "
360 "(%d + %d > %d)\n", max_linkhdr, maxlen, MCLBYTES);
361 panic("nd6_ns_output: insufficient MCLBYTES");
362
363 }
364 #endif
365
366 MGETHDR(m, M_DONTWAIT, MT_DATA);
367 if (m && max_linkhdr + maxlen >= MHLEN) {
368 MCLGET(m, M_DONTWAIT);
369 if ((m->m_flags & M_EXT) == 0) {
370 m_free(m);
371 m = NULL;
372 }
373 }
374 if (m == NULL)
375 return;
376 m->m_pkthdr.rcvif = NULL;
377
378 if (daddr6 == NULL || IN6_IS_ADDR_MULTICAST(daddr6)) {
379 m->m_flags |= M_MCAST;
380 im6o.im6o_multicast_ifp = ifp;
381 im6o.im6o_multicast_hlim = 255;
382 im6o.im6o_multicast_loop = 0;
383 }
384
385 icmp6len = sizeof(*nd_ns);
386 m->m_pkthdr.len = m->m_len = sizeof(*ip6) + icmp6len;
387 m->m_data += max_linkhdr;
388
389
390 ip6 = mtod(m, struct ip6_hdr *);
391 ip6->ip6_flow = 0;
392 ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
393 ip6->ip6_vfc |= IPV6_VERSION;
394
395 ip6->ip6_nxt = IPPROTO_ICMPV6;
396 ip6->ip6_hlim = 255;
397
398 bzero(&src_sa, sizeof(src_sa));
399 bzero(&dst_sa, sizeof(dst_sa));
400 src_sa.sin6_family = dst_sa.sin6_family = AF_INET6;
401 src_sa.sin6_len = dst_sa.sin6_len = sizeof(struct sockaddr_in6);
402 if (daddr6)
403 dst_sa.sin6_addr = *daddr6;
404 else {
405 dst_sa.sin6_addr.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
406 dst_sa.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
407 dst_sa.sin6_addr.s6_addr32[1] = 0;
408 dst_sa.sin6_addr.s6_addr32[2] = IPV6_ADDR_INT32_ONE;
409 dst_sa.sin6_addr.s6_addr32[3] = taddr6->s6_addr32[3];
410 dst_sa.sin6_addr.s6_addr8[12] = 0xff;
411 }
412 ip6->ip6_dst = dst_sa.sin6_addr;
413 if (!dad) {
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429 struct ip6_hdr *hip6;
430 struct in6_addr *saddr6;
431
432 if (ln && ln->ln_hold) {
433 hip6 = mtod(ln->ln_hold, struct ip6_hdr *);
434
435 if (sizeof(*hip6) < ln->ln_hold->m_len)
436 saddr6 = &hip6->ip6_src;
437 else
438 saddr6 = NULL;
439 } else
440 saddr6 = NULL;
441 if (saddr6 && in6ifa_ifpwithaddr(ifp, saddr6))
442 src_sa.sin6_addr = *saddr6;
443 else {
444 struct in6_addr *src0;
445 int error;
446
447 bcopy(&dst_sa, &ro.ro_dst, sizeof(dst_sa));
448 src0 = in6_selectsrc(&dst_sa, NULL, NULL, &ro, NULL,
449 &error);
450 if (src0 == NULL) {
451 nd6log((LOG_DEBUG,
452 "nd6_ns_output: source can't be "
453 "determined: dst=%s, error=%d\n",
454 ip6_sprintf(&dst_sa.sin6_addr), error));
455 goto bad;
456 }
457 src_sa.sin6_addr = *src0;
458 }
459 } else {
460
461
462
463
464
465
466
467 bzero(&src_sa.sin6_addr, sizeof(src_sa.sin6_addr));
468 }
469 ip6->ip6_src = src_sa.sin6_addr;
470 nd_ns = (struct nd_neighbor_solicit *)(ip6 + 1);
471 nd_ns->nd_ns_type = ND_NEIGHBOR_SOLICIT;
472 nd_ns->nd_ns_code = 0;
473 nd_ns->nd_ns_reserved = 0;
474 nd_ns->nd_ns_target = *taddr6;
475
476 if (IN6_IS_SCOPE_EMBED(&nd_ns->nd_ns_target))
477 nd_ns->nd_ns_target.s6_addr16[1] = 0;
478
479
480
481
482
483
484
485
486
487
488
489
490
491 if (!dad && (mac = nd6_ifptomac(ifp))) {
492 int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
493 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_ns + 1);
494
495 optlen = (optlen + 7) & ~7;
496
497 m->m_pkthdr.len += optlen;
498 m->m_len += optlen;
499 icmp6len += optlen;
500 bzero((caddr_t)nd_opt, optlen);
501 nd_opt->nd_opt_type = ND_OPT_SOURCE_LINKADDR;
502 nd_opt->nd_opt_len = optlen >> 3;
503 bcopy(mac, (caddr_t)(nd_opt + 1), ifp->if_addrlen);
504 }
505
506 ip6->ip6_plen = htons((u_short)icmp6len);
507 nd_ns->nd_ns_cksum = 0;
508 nd_ns->nd_ns_cksum =
509 in6_cksum(m, IPPROTO_ICMPV6, sizeof(*ip6), icmp6len);
510
511 ip6_output(m, NULL, &ro, dad ? IPV6_UNSPECSRC : 0, &im6o, NULL, NULL);
512 icmp6_ifstat_inc(ifp, ifs6_out_msg);
513 icmp6_ifstat_inc(ifp, ifs6_out_neighborsolicit);
514 icmp6stat.icp6s_outhist[ND_NEIGHBOR_SOLICIT]++;
515
516 if (ro.ro_rt) {
517 RTFREE(ro.ro_rt);
518 }
519 return;
520
521 bad:
522 if (ro.ro_rt) {
523 RTFREE(ro.ro_rt);
524 }
525 m_freem(m);
526 return;
527 }
528
529
530
531
532
533
534
535
536
537
538
539 void
540 nd6_na_input(m, off, icmp6len)
541 struct mbuf *m;
542 int off, icmp6len;
543 {
544 struct ifnet *ifp = m->m_pkthdr.rcvif;
545 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
546 struct nd_neighbor_advert *nd_na;
547 #if 0
548 struct in6_addr saddr6 = ip6->ip6_src;
549 #endif
550 struct in6_addr daddr6 = ip6->ip6_dst;
551 struct in6_addr taddr6;
552 int flags;
553 int is_router;
554 int is_solicited;
555 int is_override;
556 char *lladdr = NULL;
557 int lladdrlen = 0;
558 struct ifaddr *ifa;
559 struct llinfo_nd6 *ln;
560 struct rtentry *rt;
561 struct sockaddr_dl *sdl;
562 union nd_opts ndopts;
563
564 if (ip6->ip6_hlim != 255) {
565 nd6log((LOG_ERR,
566 "nd6_na_input: invalid hlim (%d) from %s to %s on %s\n",
567 ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
568 ip6_sprintf(&ip6->ip6_dst), ifp->if_xname));
569 goto bad;
570 }
571
572 IP6_EXTHDR_GET(nd_na, struct nd_neighbor_advert *, m, off, icmp6len);
573 if (nd_na == NULL) {
574 icmp6stat.icp6s_tooshort++;
575 return;
576 }
577 taddr6 = nd_na->nd_na_target;
578 flags = nd_na->nd_na_flags_reserved;
579 is_router = ((flags & ND_NA_FLAG_ROUTER) != 0);
580 is_solicited = ((flags & ND_NA_FLAG_SOLICITED) != 0);
581 is_override = ((flags & ND_NA_FLAG_OVERRIDE) != 0);
582
583 if (IN6_IS_SCOPE_EMBED(&taddr6))
584 taddr6.s6_addr16[1] = htons(ifp->if_index);
585
586 if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
587 nd6log((LOG_ERR,
588 "nd6_na_input: invalid target address %s\n",
589 ip6_sprintf(&taddr6)));
590 goto bad;
591 }
592 if (is_solicited && IN6_IS_ADDR_MULTICAST(&daddr6)) {
593 nd6log((LOG_ERR,
594 "nd6_na_input: a solicited adv is multicasted\n"));
595 goto bad;
596 }
597
598 icmp6len -= sizeof(*nd_na);
599 nd6_option_init(nd_na + 1, icmp6len, &ndopts);
600 if (nd6_options(&ndopts) < 0) {
601 nd6log((LOG_INFO,
602 "nd6_na_input: invalid ND option, ignored\n"));
603
604 goto freeit;
605 }
606
607 if (ndopts.nd_opts_tgt_lladdr) {
608 lladdr = (char *)(ndopts.nd_opts_tgt_lladdr + 1);
609 lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3;
610 }
611
612 ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &taddr6);
613
614
615
616
617
618
619
620
621
622
623 if (ifa
624 && (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE)) {
625 nd6_dad_na_input(ifa);
626 goto freeit;
627 }
628
629
630 if (ifa) {
631 log(LOG_ERR,
632 "nd6_na_input: duplicate IP6 address %s\n",
633 ip6_sprintf(&taddr6));
634 goto freeit;
635 }
636
637 if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
638 nd6log((LOG_INFO, "nd6_na_input: lladdrlen mismatch for %s "
639 "(if %d, NA packet %d)\n", ip6_sprintf(&taddr6),
640 ifp->if_addrlen, lladdrlen - 2));
641 goto bad;
642 }
643
644
645
646
647
648 rt = nd6_lookup(&taddr6, 0, ifp);
649 if ((rt == NULL) ||
650 ((ln = (struct llinfo_nd6 *)rt->rt_llinfo) == NULL) ||
651 ((sdl = SDL(rt->rt_gateway)) == NULL))
652 goto freeit;
653
654 if (ln->ln_state == ND6_LLINFO_INCOMPLETE) {
655
656
657
658
659 if (ifp->if_addrlen && !lladdr)
660 goto freeit;
661
662
663
664
665 sdl->sdl_alen = ifp->if_addrlen;
666 bcopy(lladdr, LLADDR(sdl), ifp->if_addrlen);
667 if (is_solicited) {
668 ln->ln_state = ND6_LLINFO_REACHABLE;
669 ln->ln_byhint = 0;
670 if (!ND6_LLINFO_PERMANENT(ln)) {
671 nd6_llinfo_settimer(ln,
672 (long)ND_IFINFO(rt->rt_ifp)->reachable * hz);
673 }
674 } else {
675 ln->ln_state = ND6_LLINFO_STALE;
676 nd6_llinfo_settimer(ln, (long)nd6_gctimer * hz);
677 }
678 if ((ln->ln_router = is_router) != 0) {
679
680
681
682
683
684 pfxlist_onlink_check();
685 }
686 } else {
687 int llchange;
688
689
690
691
692 if (!lladdr)
693 llchange = 0;
694 else {
695 if (sdl->sdl_alen) {
696 if (bcmp(lladdr, LLADDR(sdl), ifp->if_addrlen))
697 llchange = 1;
698 else
699 llchange = 0;
700 } else
701 llchange = 1;
702 }
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723 if (!is_override && (lladdr && llchange)) {
724
725
726
727
728 if (ln->ln_state == ND6_LLINFO_REACHABLE) {
729 ln->ln_state = ND6_LLINFO_STALE;
730 nd6_llinfo_settimer(ln, (long)nd6_gctimer * hz);
731 }
732 goto freeit;
733 } else if (is_override
734 || (!is_override && (lladdr && !llchange))
735 || !lladdr) {
736
737
738
739 if (lladdr) {
740 sdl->sdl_alen = ifp->if_addrlen;
741 bcopy(lladdr, LLADDR(sdl), ifp->if_addrlen);
742 }
743
744
745
746
747
748
749 if (is_solicited) {
750 ln->ln_state = ND6_LLINFO_REACHABLE;
751 ln->ln_byhint = 0;
752 if (!ND6_LLINFO_PERMANENT(ln)) {
753 nd6_llinfo_settimer(ln,
754 (long)ND_IFINFO(ifp)->reachable * hz);
755 }
756 } else {
757 if (lladdr && llchange) {
758 ln->ln_state = ND6_LLINFO_STALE;
759 nd6_llinfo_settimer(ln,
760 (long)nd6_gctimer * hz);
761 }
762 }
763 }
764
765 if (ln->ln_router && !is_router) {
766
767
768
769
770
771 struct nd_defrouter *dr;
772 struct in6_addr *in6;
773 int s;
774
775 in6 = &((struct sockaddr_in6 *)rt_key(rt))->sin6_addr;
776
777
778
779
780
781
782
783 s = splsoftnet();
784 dr = defrouter_lookup(in6, rt->rt_ifp);
785 if (dr)
786 defrtrlist_del(dr);
787 else if (!ip6_forwarding) {
788
789
790
791
792
793
794
795 rt6_flush(&ip6->ip6_src, rt->rt_ifp);
796 }
797 splx(s);
798 }
799 ln->ln_router = is_router;
800 }
801 rt->rt_flags &= ~RTF_REJECT;
802 ln->ln_asked = 0;
803 if (ln->ln_hold) {
804
805
806
807
808 nd6_output(ifp, ifp, ln->ln_hold,
809 (struct sockaddr_in6 *)rt_key(rt), rt);
810 ln->ln_hold = NULL;
811 }
812
813 freeit:
814 m_freem(m);
815 return;
816
817 bad:
818 icmp6stat.icp6s_badna++;
819 m_freem(m);
820 }
821
822
823
824
825
826
827
828
829
830
831 void
832 nd6_na_output(ifp, daddr6, taddr6, flags, tlladdr, sdl0)
833 struct ifnet *ifp;
834 struct in6_addr *daddr6, *taddr6;
835 u_long flags;
836 int tlladdr;
837 struct sockaddr *sdl0;
838 {
839 struct mbuf *m;
840 struct ip6_hdr *ip6;
841 struct nd_neighbor_advert *nd_na;
842 struct ip6_moptions im6o;
843 struct sockaddr_in6 src_sa, dst_sa;
844 struct in6_addr *src0;
845 int icmp6len, maxlen, error;
846 caddr_t mac;
847 struct route_in6 ro;
848
849 mac = NULL;
850 bzero(&ro, sizeof(ro));
851
852
853 maxlen = sizeof(*ip6) + sizeof(*nd_na);
854 maxlen += (sizeof(struct nd_opt_hdr) + ifp->if_addrlen + 7) & ~7;
855 #ifdef DIAGNOSTIC
856 if (max_linkhdr + maxlen >= MCLBYTES) {
857 printf("nd6_na_output: max_linkhdr + maxlen >= MCLBYTES "
858 "(%d + %d > %d)\n", max_linkhdr, maxlen, MCLBYTES);
859 panic("nd6_na_output: insufficient MCLBYTES");
860
861 }
862 #endif
863
864 MGETHDR(m, M_DONTWAIT, MT_DATA);
865 if (m && max_linkhdr + maxlen >= MHLEN) {
866 MCLGET(m, M_DONTWAIT);
867 if ((m->m_flags & M_EXT) == 0) {
868 m_free(m);
869 m = NULL;
870 }
871 }
872 if (m == NULL)
873 return;
874 m->m_pkthdr.rcvif = NULL;
875
876 if (IN6_IS_ADDR_MULTICAST(daddr6)) {
877 m->m_flags |= M_MCAST;
878 im6o.im6o_multicast_ifp = ifp;
879 im6o.im6o_multicast_hlim = 255;
880 im6o.im6o_multicast_loop = 0;
881 }
882
883 icmp6len = sizeof(*nd_na);
884 m->m_pkthdr.len = m->m_len = sizeof(struct ip6_hdr) + icmp6len;
885 m->m_data += max_linkhdr;
886
887
888 ip6 = mtod(m, struct ip6_hdr *);
889 ip6->ip6_flow = 0;
890 ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
891 ip6->ip6_vfc |= IPV6_VERSION;
892 ip6->ip6_nxt = IPPROTO_ICMPV6;
893 ip6->ip6_hlim = 255;
894 bzero(&src_sa, sizeof(src_sa));
895 bzero(&dst_sa, sizeof(dst_sa));
896 src_sa.sin6_len = dst_sa.sin6_len = sizeof(struct sockaddr_in6);
897 src_sa.sin6_family = dst_sa.sin6_family = AF_INET6;
898 dst_sa.sin6_addr = *daddr6;
899 if (IN6_IS_ADDR_UNSPECIFIED(daddr6)) {
900
901 dst_sa.sin6_addr.s6_addr16[0] = IPV6_ADDR_INT16_MLL;
902 dst_sa.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
903 dst_sa.sin6_addr.s6_addr32[1] = 0;
904 dst_sa.sin6_addr.s6_addr32[2] = 0;
905 dst_sa.sin6_addr.s6_addr32[3] = IPV6_ADDR_INT32_ONE;
906
907 flags &= ~ND_NA_FLAG_SOLICITED;
908 }
909 ip6->ip6_dst = dst_sa.sin6_addr;
910
911
912
913
914 bcopy(&dst_sa, &ro.ro_dst, sizeof(dst_sa));
915 src0 = in6_selectsrc(&dst_sa, NULL, NULL, &ro, NULL, &error);
916 if (src0 == NULL) {
917 nd6log((LOG_DEBUG, "nd6_na_output: source can't be "
918 "determined: dst=%s, error=%d\n",
919 ip6_sprintf(&dst_sa.sin6_addr), error));
920 goto bad;
921 }
922 src_sa.sin6_addr = *src0;
923 ip6->ip6_src = src_sa.sin6_addr;
924 nd_na = (struct nd_neighbor_advert *)(ip6 + 1);
925 nd_na->nd_na_type = ND_NEIGHBOR_ADVERT;
926 nd_na->nd_na_code = 0;
927 nd_na->nd_na_target = *taddr6;
928 if (IN6_IS_SCOPE_EMBED(&nd_na->nd_na_target))
929 nd_na->nd_na_target.s6_addr16[1] = 0;
930
931
932
933
934
935
936
937 if (tlladdr) {
938
939
940
941
942
943 if (sdl0 == NULL) {
944 mac = nd6_ifptomac(ifp);
945 } else if (sdl0->sa_family == AF_LINK) {
946 struct sockaddr_dl *sdl;
947 sdl = (struct sockaddr_dl *)sdl0;
948 if (sdl->sdl_alen == ifp->if_addrlen)
949 mac = LLADDR(sdl);
950 }
951 }
952 if (tlladdr && mac) {
953 int optlen = sizeof(struct nd_opt_hdr) + ifp->if_addrlen;
954 struct nd_opt_hdr *nd_opt = (struct nd_opt_hdr *)(nd_na + 1);
955
956
957 optlen = (optlen + 7) & ~7;
958
959 m->m_pkthdr.len += optlen;
960 m->m_len += optlen;
961 icmp6len += optlen;
962 bzero((caddr_t)nd_opt, optlen);
963 nd_opt->nd_opt_type = ND_OPT_TARGET_LINKADDR;
964 nd_opt->nd_opt_len = optlen >> 3;
965 bcopy(mac, (caddr_t)(nd_opt + 1), ifp->if_addrlen);
966 } else
967 flags &= ~ND_NA_FLAG_OVERRIDE;
968
969 ip6->ip6_plen = htons((u_short)icmp6len);
970 nd_na->nd_na_flags_reserved = flags;
971 nd_na->nd_na_cksum = 0;
972 nd_na->nd_na_cksum =
973 in6_cksum(m, IPPROTO_ICMPV6, sizeof(struct ip6_hdr), icmp6len);
974
975 ip6_output(m, NULL, &ro, 0, &im6o, NULL, NULL);
976
977 icmp6_ifstat_inc(ifp, ifs6_out_msg);
978 icmp6_ifstat_inc(ifp, ifs6_out_neighboradvert);
979 icmp6stat.icp6s_outhist[ND_NEIGHBOR_ADVERT]++;
980
981 if (ro.ro_rt) {
982 RTFREE(ro.ro_rt);
983 }
984 return;
985
986 bad:
987 if (ro.ro_rt) {
988 RTFREE(ro.ro_rt);
989 }
990 m_freem(m);
991 return;
992 }
993
994 caddr_t
995 nd6_ifptomac(ifp)
996 struct ifnet *ifp;
997 {
998 switch (ifp->if_type) {
999 case IFT_ETHER:
1000 case IFT_FDDI:
1001 case IFT_IEEE1394:
1002 case IFT_PROPVIRTUAL:
1003 case IFT_CARP:
1004 case IFT_L2VLAN:
1005 case IFT_IEEE80211:
1006 return ((caddr_t)(ifp + 1));
1007 default:
1008 return NULL;
1009 }
1010 }
1011
1012 TAILQ_HEAD(dadq_head, dadq);
1013 struct dadq {
1014 TAILQ_ENTRY(dadq) dad_list;
1015 struct ifaddr *dad_ifa;
1016 int dad_count;
1017 int dad_ns_tcount;
1018 int dad_ns_ocount;
1019 int dad_ns_icount;
1020 int dad_na_icount;
1021 struct timeout dad_timer_ch;
1022 };
1023
1024 static struct dadq_head dadq;
1025 static int dad_init = 0;
1026
1027 static struct dadq *
1028 nd6_dad_find(ifa)
1029 struct ifaddr *ifa;
1030 {
1031 struct dadq *dp;
1032
1033 TAILQ_FOREACH(dp, &dadq, dad_list) {
1034 if (dp->dad_ifa == ifa)
1035 return dp;
1036 }
1037 return NULL;
1038 }
1039
1040 static void
1041 nd6_dad_starttimer(dp, ticks)
1042 struct dadq *dp;
1043 int ticks;
1044 {
1045
1046 timeout_set(&dp->dad_timer_ch, (void (*)(void *))nd6_dad_timer,
1047 (void *)dp->dad_ifa);
1048 timeout_add(&dp->dad_timer_ch, ticks);
1049 }
1050
1051 static void
1052 nd6_dad_stoptimer(dp)
1053 struct dadq *dp;
1054 {
1055
1056 timeout_del(&dp->dad_timer_ch);
1057 }
1058
1059
1060
1061
1062 void
1063 nd6_dad_start(ifa, tick)
1064 struct ifaddr *ifa;
1065 int *tick;
1066 {
1067 struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1068 struct dadq *dp;
1069
1070 if (!dad_init) {
1071 TAILQ_INIT(&dadq);
1072 dad_init++;
1073 }
1074
1075
1076
1077
1078
1079
1080
1081 if (!(ia->ia6_flags & IN6_IFF_TENTATIVE)) {
1082 log(LOG_DEBUG,
1083 "nd6_dad_start: called with non-tentative address "
1084 "%s(%s)\n",
1085 ip6_sprintf(&ia->ia_addr.sin6_addr),
1086 ifa->ifa_ifp ? ifa->ifa_ifp->if_xname : "???");
1087 return;
1088 }
1089 if (ia->ia6_flags & IN6_IFF_ANYCAST) {
1090 ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1091 return;
1092 }
1093 if (!ip6_dad_count) {
1094 ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1095 return;
1096 }
1097 if (!ifa->ifa_ifp)
1098 panic("nd6_dad_start: ifa->ifa_ifp == NULL");
1099 if (!(ifa->ifa_ifp->if_flags & IFF_UP))
1100 return;
1101 if (nd6_dad_find(ifa) != NULL) {
1102
1103 return;
1104 }
1105
1106 dp = malloc(sizeof(*dp), M_IP6NDP, M_NOWAIT);
1107 if (dp == NULL) {
1108 log(LOG_ERR, "nd6_dad_start: memory allocation failed for "
1109 "%s(%s)\n",
1110 ip6_sprintf(&ia->ia_addr.sin6_addr),
1111 ifa->ifa_ifp ? ifa->ifa_ifp->if_xname : "???");
1112 return;
1113 }
1114 bzero(dp, sizeof(*dp));
1115 bzero(&dp->dad_timer_ch, sizeof(dp->dad_timer_ch));
1116 TAILQ_INSERT_TAIL(&dadq, (struct dadq *)dp, dad_list);
1117
1118 nd6log((LOG_DEBUG, "%s: starting DAD for %s\n", ifa->ifa_ifp->if_xname,
1119 ip6_sprintf(&ia->ia_addr.sin6_addr)));
1120
1121
1122
1123
1124
1125
1126
1127 dp->dad_ifa = ifa;
1128 ifa->ifa_refcnt++;
1129 dp->dad_count = ip6_dad_count;
1130 dp->dad_ns_icount = dp->dad_na_icount = 0;
1131 dp->dad_ns_ocount = dp->dad_ns_tcount = 0;
1132 if (tick == NULL) {
1133 nd6_dad_ns_output(dp, ifa);
1134 nd6_dad_starttimer(dp,
1135 (long)ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
1136 } else {
1137 int ntick;
1138
1139 if (*tick == 0)
1140 ntick = arc4random() % (MAX_RTR_SOLICITATION_DELAY * hz);
1141 else
1142 ntick = *tick + arc4random() % (hz / 2);
1143 *tick = ntick;
1144 nd6_dad_starttimer(dp, ntick);
1145 }
1146 }
1147
1148
1149
1150
1151 void
1152 nd6_dad_stop(ifa)
1153 struct ifaddr *ifa;
1154 {
1155 struct dadq *dp;
1156
1157 if (!dad_init)
1158 return;
1159 dp = nd6_dad_find(ifa);
1160 if (!dp) {
1161
1162 return;
1163 }
1164
1165 nd6_dad_stoptimer(dp);
1166
1167 TAILQ_REMOVE(&dadq, (struct dadq *)dp, dad_list);
1168 free(dp, M_IP6NDP);
1169 dp = NULL;
1170 IFAFREE(ifa);
1171 }
1172
1173 static void
1174 nd6_dad_timer(ifa)
1175 struct ifaddr *ifa;
1176 {
1177 int s;
1178 struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1179 struct dadq *dp;
1180
1181 s = splsoftnet();
1182
1183
1184 if (ia == NULL) {
1185 log(LOG_ERR, "nd6_dad_timer: called with null parameter\n");
1186 goto done;
1187 }
1188 dp = nd6_dad_find(ifa);
1189 if (dp == NULL) {
1190 log(LOG_ERR, "nd6_dad_timer: DAD structure not found\n");
1191 goto done;
1192 }
1193 if (ia->ia6_flags & IN6_IFF_DUPLICATED) {
1194 log(LOG_ERR, "nd6_dad_timer: called with duplicated address "
1195 "%s(%s)\n",
1196 ip6_sprintf(&ia->ia_addr.sin6_addr),
1197 ifa->ifa_ifp ? ifa->ifa_ifp->if_xname : "???");
1198 goto done;
1199 }
1200 if ((ia->ia6_flags & IN6_IFF_TENTATIVE) == 0) {
1201 log(LOG_ERR, "nd6_dad_timer: called with non-tentative address "
1202 "%s(%s)\n",
1203 ip6_sprintf(&ia->ia_addr.sin6_addr),
1204 ifa->ifa_ifp ? ifa->ifa_ifp->if_xname : "???");
1205 goto done;
1206 }
1207
1208
1209 if (dp->dad_ns_tcount > dad_maxtry) {
1210 nd6log((LOG_INFO, "%s: could not run DAD, driver problem?\n",
1211 ifa->ifa_ifp->if_xname));
1212
1213 TAILQ_REMOVE(&dadq, (struct dadq *)dp, dad_list);
1214 free(dp, M_IP6NDP);
1215 dp = NULL;
1216 IFAFREE(ifa);
1217 goto done;
1218 }
1219
1220
1221 if (dp->dad_ns_ocount < dp->dad_count) {
1222
1223
1224
1225 nd6_dad_ns_output(dp, ifa);
1226 nd6_dad_starttimer(dp,
1227 (long)ND_IFINFO(ifa->ifa_ifp)->retrans * hz / 1000);
1228 } else {
1229
1230
1231
1232
1233 int duplicate;
1234
1235 duplicate = 0;
1236
1237 if (dp->dad_na_icount) {
1238
1239
1240
1241
1242 duplicate++;
1243 }
1244
1245 if (dp->dad_ns_icount) {
1246
1247 duplicate++;
1248 }
1249
1250 if (duplicate) {
1251
1252 dp = NULL;
1253 nd6_dad_duplicated(ifa);
1254 } else {
1255
1256
1257
1258
1259 ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1260
1261 nd6log((LOG_DEBUG,
1262 "%s: DAD complete for %s - no duplicates found\n",
1263 ifa->ifa_ifp->if_xname,
1264 ip6_sprintf(&ia->ia_addr.sin6_addr)));
1265
1266 TAILQ_REMOVE(&dadq, (struct dadq *)dp, dad_list);
1267 free(dp, M_IP6NDP);
1268 dp = NULL;
1269 IFAFREE(ifa);
1270 }
1271 }
1272
1273 done:
1274 splx(s);
1275 }
1276
1277 void
1278 nd6_dad_duplicated(ifa)
1279 struct ifaddr *ifa;
1280 {
1281 struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1282 struct dadq *dp;
1283
1284 dp = nd6_dad_find(ifa);
1285 if (dp == NULL) {
1286 log(LOG_ERR, "nd6_dad_duplicated: DAD structure not found\n");
1287 return;
1288 }
1289
1290 log(LOG_ERR, "%s: DAD detected duplicate IPv6 address %s: "
1291 "NS in/out=%d/%d, NA in=%d\n",
1292 ifa->ifa_ifp->if_xname, ip6_sprintf(&ia->ia_addr.sin6_addr),
1293 dp->dad_ns_icount, dp->dad_ns_ocount, dp->dad_na_icount);
1294
1295 ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
1296 ia->ia6_flags |= IN6_IFF_DUPLICATED;
1297
1298
1299 nd6_dad_stoptimer(dp);
1300
1301 log(LOG_ERR, "%s: DAD complete for %s - duplicate found\n",
1302 ifa->ifa_ifp->if_xname, ip6_sprintf(&ia->ia_addr.sin6_addr));
1303 log(LOG_ERR, "%s: manual intervention required\n",
1304 ifa->ifa_ifp->if_xname);
1305
1306 TAILQ_REMOVE(&dadq, (struct dadq *)dp, dad_list);
1307 free(dp, M_IP6NDP);
1308 dp = NULL;
1309 IFAFREE(ifa);
1310 }
1311
1312 static void
1313 nd6_dad_ns_output(dp, ifa)
1314 struct dadq *dp;
1315 struct ifaddr *ifa;
1316 {
1317 struct in6_ifaddr *ia = (struct in6_ifaddr *)ifa;
1318 struct ifnet *ifp = ifa->ifa_ifp;
1319
1320 dp->dad_ns_tcount++;
1321 if ((ifp->if_flags & IFF_UP) == 0) {
1322 #if 0
1323 printf("%s: interface down?\n", ifp->if_xname);
1324 #endif
1325 return;
1326 }
1327 if ((ifp->if_flags & IFF_RUNNING) == 0) {
1328 #if 0
1329 printf("%s: interface not running?\n", ifp->if_xname);
1330 #endif
1331 return;
1332 }
1333
1334 dp->dad_ns_ocount++;
1335 nd6_ns_output(ifp, NULL, &ia->ia_addr.sin6_addr, NULL, 1);
1336 }
1337
1338 static void
1339 nd6_dad_ns_input(ifa)
1340 struct ifaddr *ifa;
1341 {
1342 struct in6_ifaddr *ia;
1343 struct ifnet *ifp;
1344 struct in6_addr *taddr6;
1345 struct dadq *dp;
1346 int duplicate;
1347
1348 if (!ifa)
1349 panic("ifa == NULL in nd6_dad_ns_input");
1350
1351 ia = (struct in6_ifaddr *)ifa;
1352 ifp = ifa->ifa_ifp;
1353 taddr6 = &ia->ia_addr.sin6_addr;
1354 duplicate = 0;
1355 dp = nd6_dad_find(ifa);
1356
1357
1358 if (dad_ignore_ns) {
1359 nd6log((LOG_INFO,
1360 "nd6_dad_ns_input: ignoring DAD NS packet for "
1361 "address %s(%s)\n", ip6_sprintf(taddr6),
1362 ifa->ifa_ifp->if_xname));
1363 return;
1364 }
1365
1366
1367
1368
1369
1370 if (!dp || dp->dad_ns_ocount == 0)
1371 duplicate++;
1372
1373
1374
1375 if (duplicate) {
1376 dp = NULL;
1377 nd6_dad_duplicated(ifa);
1378 } else {
1379
1380
1381
1382
1383 if (dp)
1384 dp->dad_ns_icount++;
1385 }
1386 }
1387
1388 static void
1389 nd6_dad_na_input(ifa)
1390 struct ifaddr *ifa;
1391 {
1392 struct dadq *dp;
1393
1394 if (!ifa)
1395 panic("ifa == NULL in nd6_dad_na_input");
1396
1397 dp = nd6_dad_find(ifa);
1398 if (dp)
1399 dp->dad_na_icount++;
1400
1401
1402 nd6_dad_duplicated(ifa);
1403 }