1 /* $KAME: nd6_nbr.c,v 1.32 2000/03/21 11:37:30 itojun Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #if (defined(__FreeBSD__) && __FreeBSD__ >= 3) || defined(__NetBSD__)
34 #if __NetBSD__ /*XXX*/
35 #include "opt_ipsec.h"
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/malloc.h>
43 #include <sys/socket.h>
44 #include <sys/sockio.h>
46 #include <sys/kernel.h>
47 #include <sys/errno.h>
48 #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3)
49 #include <sys/ioctl.h>
51 #include <sys/syslog.h>
52 #include <kern/queue.h>
55 #include <net/if_types.h>
56 #include <net/if_dl.h>
57 #include <net/route.h>
59 #include <netinet/in.h>
60 #include <netinet/in_var.h>
61 #include <netinet6/in6_var.h>
62 #include <netinet/ip6.h>
63 #include <netinet6/ip6_var.h>
64 #include <netinet6/nd6.h>
65 #include <netinet/icmp6.h>
67 #ifdef __OpenBSD__ /*don't confuse KAME ipsec with OpenBSD ipsec*/
72 #include <netinet6/ipsec.h>
75 #include <net/net_osdep.h>
77 #define SDL(s) ((struct sockaddr_dl *)s)
80 static struct dadq
*nd6_dad_find
__P((struct ifaddr
*));
81 static void nd6_dad_timer
__P((struct ifaddr
*));
82 static void nd6_dad_timer_funnel
__P((struct ifaddr
*));
83 static void nd6_dad_ns_output
__P((struct dadq
*, struct ifaddr
*));
84 static void nd6_dad_ns_input
__P((struct ifaddr
*));
85 static void nd6_dad_na_input
__P((struct ifaddr
*));
87 static int dad_ignore_ns
= 0; /* ignore NS in DAD - specwise incorrect*/
88 static int dad_maxtry
= 15; /* max # of *tries* to transmit DAD packet */
91 * Input an Neighbor Solicitation Message.
94 * Based on RFC 2462 (duplicated address detection)
97 nd6_ns_input(m
, off
, icmp6len
)
101 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
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
;
111 int anycast
= 0, proxy
= 0, tentative
= 0;
113 union nd_opts ndopts
;
114 struct sockaddr_dl
*proxydl
= NULL
;
116 if (ip6
->ip6_hlim
!= 255) {
118 "nd6_ns_input: invalid hlim %d\n", ip6
->ip6_hlim
);
122 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
)) {
123 /* dst has to be solicited node multicast address. */
124 if (daddr6
.s6_addr16
[0] == IPV6_ADDR_INT16_MLL
125 /*don't check ifindex portion*/
126 && daddr6
.s6_addr32
[1] == 0
127 && daddr6
.s6_addr32
[2] == IPV6_ADDR_INT32_ONE
128 && daddr6
.s6_addr8
[12] == 0xff) {
131 log(LOG_INFO
, "nd6_ns_input: bad DAD packet "
132 "(wrong ip6 dst)\n");
137 #ifndef PULLDOWN_TEST
138 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
139 nd_ns
= (struct nd_neighbor_solicit
*)((caddr_t
)ip6
+ off
);
141 IP6_EXTHDR_GET(nd_ns
, struct nd_neighbor_solicit
*, m
, off
, icmp6len
);
143 icmp6stat
.icp6s_tooshort
++;
147 taddr6
= nd_ns
->nd_ns_target
;
149 if (IN6_IS_ADDR_MULTICAST(&taddr6
)) {
150 log(LOG_INFO
, "nd6_ns_input: bad NS target (multicast)\n");
154 if (IN6_IS_SCOPE_LINKLOCAL(&taddr6
))
155 taddr6
.s6_addr16
[1] = htons(ifp
->if_index
);
157 icmp6len
-= sizeof(*nd_ns
);
158 nd6_option_init(nd_ns
+ 1, icmp6len
, &ndopts
);
159 if (nd6_options(&ndopts
) < 0) {
160 log(LOG_INFO
, "nd6_ns_input: invalid ND option, ignored\n");
164 if (ndopts
.nd_opts_src_lladdr
) {
165 lladdr
= (char *)(ndopts
.nd_opts_src_lladdr
+1);
166 lladdrlen
= ndopts
.nd_opts_src_lladdr
->nd_opt_len
<< 3;
169 if (IN6_IS_ADDR_UNSPECIFIED(&ip6
->ip6_src
) && lladdr
) {
170 log(LOG_INFO
, "nd6_ns_input: bad DAD packet "
171 "(link-layer address option)\n");
176 * Attaching target link-layer address to the NA?
179 * NS IP dst is unicast/anycast MUST NOT add
180 * NS IP dst is solicited-node multicast MUST add
182 * In implementation, we add target link-layer address by default.
183 * We do not add one in MUST NOT cases.
185 #if 0 /* too much! */
186 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &daddr6
);
187 if (ifa
&& (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_ANYCAST
))
191 if (!IN6_IS_ADDR_MULTICAST(&daddr6
))
197 * Target address (taddr6) must be either:
198 * (1) Valid unicast/anycast address for my receiving interface,
199 * (2) Unicast address for which I'm offering proxy service, or
200 * (3) "tentative" address on which DAD is being performed.
202 /* (1) and (3) check. */
203 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &taddr6
);
208 struct sockaddr_in6 tsin6
;
210 bzero(&tsin6
, sizeof tsin6
);
211 tsin6
.sin6_len
= sizeof(struct sockaddr_in6
);
212 tsin6
.sin6_family
= AF_INET6
;
213 tsin6
.sin6_addr
= taddr6
;
215 rt
= rtalloc1((struct sockaddr
*)&tsin6
, 0
216 #if __FreeBSD__ || defined (__APPLE__)
218 #endif /* __FreeBSD__ */
220 if (rt
&& (rt
->rt_flags
& RTF_ANNOUNCE
) != 0 &&
221 rt
->rt_gateway
->sa_family
== AF_LINK
) {
223 * proxy NDP for single entry
225 ifa
= (struct ifaddr
*)in6ifa_ifpforlinklocal(ifp
,
226 IN6_IFF_NOTREADY
|IN6_IFF_ANYCAST
);
229 proxydl
= SDL(rt
->rt_gateway
);
237 * We've got a NS packet, and we don't have that adddress
238 * assigned for us. We MUST silently ignore it.
243 myaddr6
= *IFA_IN6(ifa
);
244 anycast
= ((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_ANYCAST
;
245 tentative
= ((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_TENTATIVE
;
246 if (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_DUPLICATED
)
249 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
251 "nd6_ns_input: lladdrlen mismatch for %s "
252 "(if %d, NS packet %d)\n",
253 ip6_sprintf(&taddr6
), ifp
->if_addrlen
, lladdrlen
- 2);
256 if (IN6_ARE_ADDR_EQUAL(&myaddr6
, &saddr6
)) {
258 "nd6_ns_input: duplicate IP6 address %s\n",
259 ip6_sprintf(&saddr6
));
264 * We have neighbor solicitation packet, with target address equals to
265 * one of my tentative address.
267 * src addr how to process?
269 * multicast of course, invalid (rejected in ip6_input)
270 * unicast somebody is doing address resolution -> ignore
271 * unspec dup address detection
273 * The processing is defined in RFC 2462.
277 * If source address is unspecified address, it is for
278 * duplicated address detection.
280 * If not, the packet is for addess resolution;
281 * silently ignore it.
283 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
))
284 nd6_dad_ns_input(ifa
);
290 * If the source address is unspecified address, entries must not
291 * be created or updated.
292 * It looks that sender is performing DAD. Output NA toward
293 * all-node multicast address, to tell the sender that I'm using
295 * S bit ("solicited") must be zero.
297 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
)) {
298 saddr6
= in6addr_linklocal_allnodes
;
299 saddr6
.s6_addr16
[1] = htons(ifp
->if_index
);
300 nd6_na_output(ifp
, &saddr6
, &taddr6
,
301 ((anycast
|| proxy
|| !tlladdr
)
302 ? 0 : ND_NA_FLAG_OVERRIDE
)
303 | (ip6_forwarding
? ND_NA_FLAG_ROUTER
: 0),
304 tlladdr
, (struct sockaddr
*)proxydl
);
308 nd6_cache_lladdr(ifp
, &saddr6
, lladdr
, lladdrlen
, ND_NEIGHBOR_SOLICIT
, 0);
310 nd6_na_output(ifp
, &saddr6
, &taddr6
,
311 ((anycast
|| proxy
|| !tlladdr
) ? 0 : ND_NA_FLAG_OVERRIDE
)
312 | (ip6_forwarding
? ND_NA_FLAG_ROUTER
: 0)
313 | ND_NA_FLAG_SOLICITED
,
314 tlladdr
, (struct sockaddr
*)proxydl
);
320 log(LOG_ERR
, "nd6_ns_input: src=%s\n", ip6_sprintf(&saddr6
));
321 log(LOG_ERR
, "nd6_ns_input: dst=%s\n", ip6_sprintf(&daddr6
));
322 log(LOG_ERR
, "nd6_ns_input: tgt=%s\n", ip6_sprintf(&taddr6
));
327 * Output an Neighbor Solicitation Message. Caller specifies:
328 * - ICMP6 header source IP6 address
329 * - ND6 header target IP6 address
330 * - ND6 header source datalink address
333 * Based on RFC 2462 (duplicated address detection)
336 nd6_ns_output(ifp
, daddr6
, taddr6
, ln
, dad
)
338 struct in6_addr
*daddr6
, *taddr6
;
339 struct llinfo_nd6
*ln
; /* for source address determination */
340 int dad
; /* duplicated address detection */
344 struct nd_neighbor_solicit
*nd_ns
;
345 struct in6_ifaddr
*ia
= NULL
;
346 struct ip6_moptions im6o
;
350 struct ifnet
*outif
= NULL
;
352 if (IN6_IS_ADDR_MULTICAST(taddr6
))
355 /* estimate the size of message */
356 maxlen
= sizeof(*ip6
) + sizeof(*nd_ns
);
357 maxlen
+= (sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
+ 7) & ~7;
358 if (max_linkhdr
+ maxlen
>= MCLBYTES
) {
360 printf("nd6_ns_output: max_linkhdr + maxlen >= MCLBYTES "
361 "(%d + %d > %d)\n", max_linkhdr
, maxlen
, MCLBYTES
);
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) {
377 if (daddr6
== NULL
|| IN6_IS_ADDR_MULTICAST(daddr6
)) {
378 m
->m_flags
|= M_MCAST
;
379 im6o
.im6o_multicast_ifp
= ifp
;
380 im6o
.im6o_multicast_hlim
= 255;
381 im6o
.im6o_multicast_loop
= 0;
384 icmp6len
= sizeof(*nd_ns
);
385 m
->m_pkthdr
.len
= m
->m_len
= sizeof(*ip6
) + icmp6len
;
386 m
->m_data
+= max_linkhdr
; /*or MH_ALIGN() equivalent?*/
388 /* fill neighbor solicitation packet */
389 ip6
= mtod(m
, struct ip6_hdr
*);
391 ip6
->ip6_vfc
&= ~IPV6_VERSION_MASK
;
392 ip6
->ip6_vfc
|= IPV6_VERSION
;
393 /* ip6->ip6_plen will be set later */
394 ip6
->ip6_nxt
= IPPROTO_ICMPV6
;
397 ip6
->ip6_dst
= *daddr6
;
399 ip6
->ip6_dst
.s6_addr16
[0] = IPV6_ADDR_INT16_MLL
;
400 ip6
->ip6_dst
.s6_addr16
[1] = htons(ifp
->if_index
);
401 ip6
->ip6_dst
.s6_addr32
[1] = 0;
402 ip6
->ip6_dst
.s6_addr32
[2] = IPV6_ADDR_INT32_ONE
;
403 ip6
->ip6_dst
.s6_addr32
[3] = taddr6
->s6_addr32
[3];
404 ip6
->ip6_dst
.s6_addr8
[12] = 0xff;
407 #if 0 /* KAME way, exact address scope match */
409 * Select a source whose scope is the same as that of the dest.
410 * Typically, the dest is link-local solicitation multicast
411 * (i.e. neighbor discovery) or link-local/global unicast
412 * (i.e. neighbor un-reachability detection).
414 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
419 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
420 #else /* spec-wise correct */
423 * "If the source address of the packet prompting the
424 * solicitation is the same as one of the addresses assigned
425 * to the outgoing interface, that address SHOULD be placed
426 * in the IP Source Address of the outgoing solicitation.
427 * Otherwise, any one of the addresses assigned to the
428 * interface should be used."
430 * We use the source address for the prompting packet
432 * - saddr6 is given from the caller (by giving "ln"), and
433 * - saddr6 belongs to the outgoing interface.
434 * Otherwise, we perform a scope-wise match.
436 struct ip6_hdr
*hip6
; /*hold ip6*/
437 struct in6_addr
*saddr6
;
439 if (ln
&& ln
->ln_hold
) {
440 hip6
= mtod(ln
->ln_hold
, struct ip6_hdr
*);
442 if (sizeof(*hip6
) < ln
->ln_hold
->m_len
)
443 saddr6
= &hip6
->ip6_src
;
448 if (saddr6
&& in6ifa_ifpwithaddr(ifp
, saddr6
))
449 bcopy(saddr6
, &ip6
->ip6_src
, sizeof(*saddr6
));
451 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
456 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
461 * Source address for DAD packet must always be IPv6
462 * unspecified address. (0::0)
464 bzero(&ip6
->ip6_src
, sizeof(ip6
->ip6_src
));
466 nd_ns
= (struct nd_neighbor_solicit
*)(ip6
+ 1);
467 nd_ns
->nd_ns_type
= ND_NEIGHBOR_SOLICIT
;
468 nd_ns
->nd_ns_code
= 0;
469 nd_ns
->nd_ns_reserved
= 0;
470 nd_ns
->nd_ns_target
= *taddr6
;
472 if (IN6_IS_SCOPE_LINKLOCAL(&nd_ns
->nd_ns_target
))
473 nd_ns
->nd_ns_target
.s6_addr16
[1] = 0;
476 * Add source link-layer address option.
478 * spec implementation
480 * DAD packet MUST NOT do not add the option
481 * there's no link layer address:
482 * impossible do not add the option
483 * there's link layer address:
484 * Multicast NS MUST add one add the option
485 * Unicast NS SHOULD add one add the option
487 if (!dad
&& (mac
= nd6_ifptomac(ifp
))) {
488 int optlen
= sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
;
489 struct nd_opt_hdr
*nd_opt
= (struct nd_opt_hdr
*)(nd_ns
+ 1);
490 /* 8 byte alignments... */
491 optlen
= (optlen
+ 7) & ~7;
493 m
->m_pkthdr
.len
+= optlen
;
496 bzero((caddr_t
)nd_opt
, optlen
);
497 nd_opt
->nd_opt_type
= ND_OPT_SOURCE_LINKADDR
;
498 nd_opt
->nd_opt_len
= optlen
>> 3;
499 bcopy(mac
, (caddr_t
)(nd_opt
+ 1), ifp
->if_addrlen
);
502 ip6
->ip6_plen
= htons((u_short
)icmp6len
);
503 nd_ns
->nd_ns_cksum
= 0;
505 = in6_cksum(m
, IPPROTO_ICMPV6
, sizeof(*ip6
), icmp6len
);
508 /* Don't lookup socket */
509 ipsec_setsocket(m
, NULL
);
511 ip6_output(m
, NULL
, NULL
, dad
? IPV6_DADOUTPUT
: 0, &im6o
, &outif
);
513 icmp6_ifstat_inc(outif
, ifs6_out_msg
);
514 icmp6_ifstat_inc(outif
, ifs6_out_neighborsolicit
);
516 icmp6stat
.icp6s_outhist
[ND_NEIGHBOR_SOLICIT
]++;
520 * Neighbor advertisement input handling.
523 * Based on RFC 2462 (duplicated address detection)
525 * the following items are not implemented yet:
526 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
527 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
530 nd6_na_input(m
, off
, icmp6len
)
534 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
535 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
536 struct nd_neighbor_advert
*nd_na
;
538 struct in6_addr saddr6
= ip6
->ip6_src
;
540 struct in6_addr daddr6
= ip6
->ip6_dst
;
541 struct in6_addr taddr6
;
549 struct llinfo_nd6
*ln
;
551 struct sockaddr_dl
*sdl
;
552 union nd_opts ndopts
;
554 if (ip6
->ip6_hlim
!= 255) {
556 "nd6_na_input: invalid hlim %d\n", ip6
->ip6_hlim
);
560 #ifndef PULLDOWN_TEST
561 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
562 nd_na
= (struct nd_neighbor_advert
*)((caddr_t
)ip6
+ off
);
564 IP6_EXTHDR_GET(nd_na
, struct nd_neighbor_advert
*, m
, off
, icmp6len
);
566 icmp6stat
.icp6s_tooshort
++;
570 taddr6
= nd_na
->nd_na_target
;
571 flags
= nd_na
->nd_na_flags_reserved
;
572 is_router
= ((flags
& ND_NA_FLAG_ROUTER
) != 0);
573 is_solicited
= ((flags
& ND_NA_FLAG_SOLICITED
) != 0);
574 is_override
= ((flags
& ND_NA_FLAG_OVERRIDE
) != 0);
576 if (IN6_IS_SCOPE_LINKLOCAL(&taddr6
))
577 taddr6
.s6_addr16
[1] = htons(ifp
->if_index
);
579 if (IN6_IS_ADDR_MULTICAST(&taddr6
)) {
581 "nd6_na_input: invalid target address %s\n",
582 ip6_sprintf(&taddr6
));
585 if (IN6_IS_ADDR_MULTICAST(&daddr6
))
588 "nd6_na_input: a solicited adv is multicasted\n");
592 icmp6len
-= sizeof(*nd_na
);
593 nd6_option_init(nd_na
+ 1, icmp6len
, &ndopts
);
594 if (nd6_options(&ndopts
) < 0) {
595 log(LOG_INFO
, "nd6_na_input: invalid ND option, ignored\n");
599 if (ndopts
.nd_opts_tgt_lladdr
) {
600 lladdr
= (char *)(ndopts
.nd_opts_tgt_lladdr
+ 1);
601 lladdrlen
= ndopts
.nd_opts_tgt_lladdr
->nd_opt_len
<< 3;
604 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &taddr6
);
607 * Target address matches one of my interface address.
609 * If my address is tentative, this means that there's somebody
610 * already using the same address as mine. This indicates DAD failure.
611 * This is defined in RFC 2462.
613 * Otherwise, process as defined in RFC 2461.
616 && (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_TENTATIVE
)) {
617 nd6_dad_na_input(ifa
);
621 /* Just for safety, maybe unnecessery. */
624 "nd6_na_input: duplicate IP6 address %s\n",
625 ip6_sprintf(&taddr6
));
629 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
631 "nd6_na_input: lladdrlen mismatch for %s "
632 "(if %d, NA packet %d)\n",
633 ip6_sprintf(&taddr6
), ifp
->if_addrlen
, lladdrlen
- 2);
637 * If no neighbor cache entry is found, NA SHOULD silently be discarded.
639 rt
= nd6_lookup(&taddr6
, 0, ifp
);
641 ((ln
= (struct llinfo_nd6
*)rt
->rt_llinfo
) == NULL
) ||
642 ((sdl
= SDL(rt
->rt_gateway
)) == NULL
))
645 if (ln
->ln_state
== ND6_LLINFO_INCOMPLETE
) {
647 * If the link-layer has address, and no lladdr option came,
648 * discard the packet.
650 if (ifp
->if_addrlen
&& !lladdr
)
654 * Record link-layer address, and update the state.
656 sdl
->sdl_alen
= ifp
->if_addrlen
;
657 bcopy(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
);
659 ln
->ln_state
= ND6_LLINFO_REACHABLE
;
661 #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3) && !defined(__APPLE__)
662 ln
->ln_expire
= time
.tv_sec
+
664 ln
->ln_expire
= time_second
+
666 nd_ifinfo
[rt
->rt_ifp
->if_index
].reachable
;
668 ln
->ln_state
= ND6_LLINFO_STALE
;
669 ln
->ln_router
= is_router
;
674 * Check if the link-layer address has changed or not.
680 if (bcmp(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
))
689 * This is VERY complex. Look at it with care.
691 * override solicit lladdr llchange action
696 * 0 0 y y (1) REACHABLE->STALE
697 * 0 1 n -- (2c) *->REACHABLE
698 * 0 1 y n (2b) L *->REACHABLE
699 * 0 1 y y (1) REACHABLE->STALE
702 * 1 0 y y (2a) L *->STALE
703 * 1 1 n -- (2a) *->REACHABLE
704 * 1 1 y n (2a) L *->REACHABLE
705 * 1 1 y y (2a) L *->REACHABLE
707 if (!is_override
&& (lladdr
&& llchange
)) { /* (1) */
709 * If state is REACHABLE, make it STALE.
710 * no other updates should be done.
712 if (ln
->ln_state
== ND6_LLINFO_REACHABLE
)
713 ln
->ln_state
= ND6_LLINFO_STALE
;
715 } else if (is_override
/* (2a) */
716 || (!is_override
&& (lladdr
&& !llchange
)) /* (2b) */
717 || !lladdr
) { /* (2c) */
719 * Update link-local address, if any.
722 sdl
->sdl_alen
= ifp
->if_addrlen
;
723 bcopy(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
);
727 * If solicited, make the state REACHABLE.
728 * If not solicited and the link-layer address was
729 * changed, make it STALE.
732 ln
->ln_state
= ND6_LLINFO_REACHABLE
;
734 #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3) && !defined(__APPLE__)
735 ln
->ln_expire
= time
.tv_sec
+
737 ln
->ln_expire
= time_second
+
739 nd_ifinfo
[ifp
->if_index
].reachable
;
742 if (lladdr
&& llchange
)
743 ln
->ln_state
= ND6_LLINFO_STALE
;
747 if (ln
->ln_router
&& !is_router
) {
749 * The peer dropped the router flag.
750 * Remove the sender from the Default Router List and
751 * update the Destination Cache entries.
753 struct nd_defrouter
*dr
;
754 struct in6_addr
*in6
;
757 in6
= &((struct sockaddr_in6
*)rt_key(rt
))->sin6_addr
;
763 dr
= defrouter_lookup(in6
, rt
->rt_ifp
);
766 else if (!ip6_forwarding
&& ip6_accept_rtadv
) {
768 * Even if the neighbor is not in the default
769 * router list, the neighbor may be used
770 * as a next hop for some destinations
771 * (e.g. redirect case). So we must
772 * call rt6_flush explicitly.
774 rt6_flush(&ip6
->ip6_src
, rt
->rt_ifp
);
778 ln
->ln_router
= is_router
;
780 rt
->rt_flags
&= ~RTF_REJECT
;
784 (*ifp
->if_output
)(ifp
, ln
->ln_hold
, rt_key(rt
), rt
);
786 nd6_output(ifp
, ln
->ln_hold
,
787 (struct sockaddr_in6
*)rt_key(rt
), rt
);
797 * Neighbor advertisement output handling.
801 * the following items are not implemented yet:
802 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
803 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
806 nd6_na_output(ifp
, daddr6
, taddr6
, flags
, tlladdr
, sdl0
)
808 struct in6_addr
*daddr6
, *taddr6
;
810 int tlladdr
; /* 1 if include target link-layer address */
811 struct sockaddr
*sdl0
; /* sockaddr_dl (= proxy NA) or NULL */
815 struct nd_neighbor_advert
*nd_na
;
816 struct in6_ifaddr
*ia
= NULL
;
817 struct ip6_moptions im6o
;
821 struct ifnet
*outif
= NULL
;
823 /* estimate the size of message */
824 maxlen
= sizeof(*ip6
) + sizeof(*nd_na
);
825 maxlen
+= (sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
+ 7) & ~7;
826 if (max_linkhdr
+ maxlen
>= MCLBYTES
) {
828 printf("nd6_na_output: max_linkhdr + maxlen >= MCLBYTES "
829 "(%d + %d > %d)\n", max_linkhdr
, maxlen
, MCLBYTES
);
834 MGETHDR(m
, M_DONTWAIT
, MT_DATA
);
835 if (m
&& max_linkhdr
+ maxlen
>= MHLEN
) {
836 MCLGET(m
, M_DONTWAIT
);
837 if ((m
->m_flags
& M_EXT
) == 0) {
845 if (IN6_IS_ADDR_MULTICAST(daddr6
)) {
846 m
->m_flags
|= M_MCAST
;
847 im6o
.im6o_multicast_ifp
= ifp
;
848 im6o
.im6o_multicast_hlim
= 255;
849 im6o
.im6o_multicast_loop
= 0;
852 icmp6len
= sizeof(*nd_na
);
853 m
->m_pkthdr
.len
= m
->m_len
= sizeof(struct ip6_hdr
) + icmp6len
;
854 m
->m_data
+= max_linkhdr
; /*or MH_ALIGN() equivalent?*/
856 /* fill neighbor advertisement packet */
857 ip6
= mtod(m
, struct ip6_hdr
*);
859 ip6
->ip6_vfc
&= ~IPV6_VERSION_MASK
;
860 ip6
->ip6_vfc
|= IPV6_VERSION
;
861 ip6
->ip6_nxt
= IPPROTO_ICMPV6
;
863 if (IN6_IS_ADDR_UNSPECIFIED(daddr6
)) {
865 ip6
->ip6_dst
.s6_addr16
[0] = IPV6_ADDR_INT16_MLL
;
866 ip6
->ip6_dst
.s6_addr16
[1] = htons(ifp
->if_index
);
867 ip6
->ip6_dst
.s6_addr32
[1] = 0;
868 ip6
->ip6_dst
.s6_addr32
[2] = 0;
869 ip6
->ip6_dst
.s6_addr32
[3] = IPV6_ADDR_INT32_ONE
;
870 flags
&= ~ND_NA_FLAG_SOLICITED
;
872 ip6
->ip6_dst
= *daddr6
;
875 * Select a source whose scope is the same as that of the dest.
877 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
882 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
883 nd_na
= (struct nd_neighbor_advert
*)(ip6
+ 1);
884 nd_na
->nd_na_type
= ND_NEIGHBOR_ADVERT
;
885 nd_na
->nd_na_code
= 0;
886 nd_na
->nd_na_target
= *taddr6
;
887 if (IN6_IS_SCOPE_LINKLOCAL(&nd_na
->nd_na_target
))
888 nd_na
->nd_na_target
.s6_addr16
[1] = 0;
891 * "tlladdr" indicates NS's condition for adding tlladdr or not.
892 * see nd6_ns_input() for details.
893 * Basically, if NS packet is sent to unicast/anycast addr,
894 * target lladdr option SHOULD NOT be included.
899 * sdl0 != NULL indicates proxy NA. If we do proxy, use
900 * lladdr in sdl0. If we are not proxying (sending NA for
901 * my address) use lladdr configured for the interface.
904 mac
= nd6_ifptomac(ifp
);
905 else if (sdl0
->sa_family
== AF_LINK
) {
906 struct sockaddr_dl
*sdl
;
907 sdl
= (struct sockaddr_dl
*)sdl0
;
908 if (sdl
->sdl_alen
== ifp
->if_addrlen
)
912 if (tlladdr
&& mac
) {
913 int optlen
= sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
;
914 struct nd_opt_hdr
*nd_opt
= (struct nd_opt_hdr
*)(nd_na
+ 1);
916 /* roundup to 8 bytes alignment! */
917 optlen
= (optlen
+ 7) & ~7;
919 m
->m_pkthdr
.len
+= optlen
;
922 bzero((caddr_t
)nd_opt
, optlen
);
923 nd_opt
->nd_opt_type
= ND_OPT_TARGET_LINKADDR
;
924 nd_opt
->nd_opt_len
= optlen
>> 3;
925 bcopy(mac
, (caddr_t
)(nd_opt
+ 1), ifp
->if_addrlen
);
927 flags
&= ~ND_NA_FLAG_OVERRIDE
;
929 ip6
->ip6_plen
= htons((u_short
)icmp6len
);
930 nd_na
->nd_na_flags_reserved
= flags
;
931 nd_na
->nd_na_cksum
= 0;
933 in6_cksum(m
, IPPROTO_ICMPV6
, sizeof(struct ip6_hdr
), icmp6len
);
936 /* Don't lookup socket */
937 ipsec_setsocket(m
, NULL
);
939 ip6_output(m
, NULL
, NULL
, 0, &im6o
, &outif
);
941 icmp6_ifstat_inc(outif
, ifs6_out_msg
);
942 icmp6_ifstat_inc(outif
, ifs6_out_neighboradvert
);
944 icmp6stat
.icp6s_outhist
[ND_NEIGHBOR_ADVERT
]++;
951 switch (ifp
->if_type
) {
956 return LLADDR(ifp
->if_sadl
);
958 return ((caddr_t
)(ifp
+ 1));
966 TAILQ_HEAD(dadq_head
, dadq
);
968 TAILQ_ENTRY(dadq
) dad_list
;
969 struct ifaddr
*dad_ifa
;
970 int dad_count
; /* max NS to send */
971 int dad_ns_tcount
; /* # of trials to send NS */
972 int dad_ns_ocount
; /* NS sent so far */
975 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
976 struct callout_handle dad_timer
;
980 static struct dadq_head dadq
;
988 for (dp
= dadq
.tqh_first
; dp
; dp
= dp
->dad_list
.tqe_next
) {
989 if (dp
->dad_ifa
== ifa
)
996 * Start Duplicated Address Detection (DAD) for specified interface address.
999 nd6_dad_start(ifa
, tick
)
1001 int *tick
; /* minimum delay ticks for IFF_UP event */
1003 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1005 static int dad_init
= 0;
1013 * If we don't need DAD, don't do it.
1014 * There are several cases:
1015 * - DAD is disabled (ip6_dad_count == 0)
1016 * - the interface address is anycast
1018 if (!(ia
->ia6_flags
& IN6_IFF_TENTATIVE
)) {
1020 "nd6_dad_start: called with non-tentative address "
1022 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1023 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1026 if (ia
->ia6_flags
& IN6_IFF_ANYCAST
) {
1027 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1030 if (!ip6_dad_count
) {
1031 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1035 panic("nd6_dad_start: ifa->ifa_ifp == NULL");
1036 if (!(ifa
->ifa_ifp
->if_flags
& IFF_UP
))
1038 if (nd6_dad_find(ifa
) != NULL
) {
1039 /* DAD already in progress */
1043 dp
= _MALLOC(sizeof(*dp
), M_IP6NDP
, M_NOWAIT
);
1045 log(LOG_ERR
, "nd6_dad_start: memory allocation failed for "
1047 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1048 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1051 bzero(dp
, sizeof(*dp
));
1052 TAILQ_INSERT_TAIL(&dadq
, (struct dadq
*)dp
, dad_list
);
1055 log(LOG_DEBUG
, "%s: starting DAD for %s\n", if_name(ifa
->ifa_ifp
),
1056 ip6_sprintf(&ia
->ia_addr
.sin6_addr
));
1060 * Send NS packet for DAD, ip6_dad_count times.
1061 * Note that we must delay the first transmission, if this is the
1062 * first packet to be sent from the interface after interface
1063 * (re)initialization.
1066 ifa
->ifa_refcnt
++; /*just for safety*/
1067 dp
->dad_count
= ip6_dad_count
;
1068 dp
->dad_ns_icount
= dp
->dad_na_icount
= 0;
1069 dp
->dad_ns_ocount
= dp
->dad_ns_tcount
= 0;
1071 nd6_dad_ns_output(dp
, ifa
);
1072 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1075 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1076 nd_ifinfo
[ifa
->ifa_ifp
->if_index
].retrans
* hz
/ 1000);
1081 ntick
= random() % (MAX_RTR_SOLICITATION_DELAY
* hz
);
1083 ntick
= *tick
+ random() % (hz
/ 2);
1085 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1088 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1094 nd6_dad_timer_funnel(ifa
)
1099 boolean_t funnel_state
;
1100 funnel_state
= thread_funnel_set(network_flock
, TRUE
);
1104 (void) thread_funnel_set(network_flock
, FALSE
);
1114 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1118 s
= splsoftnet(); /*XXX*/
1120 s
= splnet(); /*XXX*/
1125 log(LOG_ERR
, "nd6_dad_timer: called with null parameter\n");
1128 dp
= nd6_dad_find(ifa
);
1130 log(LOG_ERR
, "nd6_dad_timer: DAD structure not found\n");
1133 if (ia
->ia6_flags
& IN6_IFF_DUPLICATED
) {
1134 log(LOG_ERR
, "nd6_dad_timer: called with duplicated address "
1136 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1137 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1140 if ((ia
->ia6_flags
& IN6_IFF_TENTATIVE
) == 0) {
1141 log(LOG_ERR
, "nd6_dad_timer: called with non-tentative address "
1143 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1144 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1148 /* timeouted with IFF_{RUNNING,UP} check */
1149 if (dp
->dad_ns_tcount
> dad_maxtry
) {
1150 log(LOG_ERR
, "%s: could not run DAD, driver problem?\n",
1151 if_name(ifa
->ifa_ifp
));
1153 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1154 _FREE(dp
, M_IP6NDP
);
1160 /* Need more checks? */
1161 if (dp
->dad_ns_ocount
< dp
->dad_count
) {
1163 * We have more NS to go. Send NS packet for DAD.
1165 nd6_dad_ns_output(dp
, ifa
);
1166 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1169 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1170 nd_ifinfo
[ifa
->ifa_ifp
->if_index
].retrans
* hz
/ 1000);
1173 * We have transmitted sufficient number of DAD packets.
1174 * See what we've got.
1180 if (dp
->dad_na_icount
) {
1182 * the check is in nd6_dad_na_input(),
1188 if (dp
->dad_ns_icount
) {
1189 #if 0 /*heuristics*/
1192 * - we have sent many(?) DAD NS, and
1193 * - the number of NS we sent equals to the
1194 * number of NS we've got, and
1196 * we may have a faulty network card/driver which
1197 * loops back multicasts to myself.
1199 if (3 < dp
->dad_count
1200 && dp
->dad_ns_icount
== dp
->dad_count
1201 && dp
->dad_na_icount
== 0) {
1202 log(LOG_INFO
, "DAD questionable for %s(%s): "
1203 "network card loops back multicast?\n",
1204 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1205 if_name(ifa
->ifa_ifp
));
1206 /* XXX consider it a duplicate or not? */
1209 /* We've seen NS, means DAD has failed. */
1213 /* We've seen NS, means DAD has failed. */
1219 /* (*dp) will be freed in nd6_dad_duplicated() */
1221 nd6_dad_duplicated(ifa
);
1224 * We are done with DAD. No NA came, no NS came.
1225 * duplicated address found.
1227 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1231 "%s: DAD complete for %s - no duplicates found\n",
1232 if_name(ifa
->ifa_ifp
),
1233 ip6_sprintf(&ia
->ia_addr
.sin6_addr
));
1236 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1237 _FREE(dp
, M_IP6NDP
);
1248 nd6_dad_duplicated(ifa
)
1251 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1254 dp
= nd6_dad_find(ifa
);
1256 log(LOG_ERR
, "nd6_dad_duplicated: DAD structure not found\n");
1260 log(LOG_ERR
, "%s: DAD detected duplicate IPv6 address %s: %d NS, "
1261 "%d NA\n", if_name(ifa
->ifa_ifp
),
1262 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1263 dp
->dad_ns_icount
, dp
->dad_na_icount
);
1265 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1266 ia
->ia6_flags
|= IN6_IFF_DUPLICATED
;
1268 /* We are done with DAD, with duplicated address found. (failure) */
1269 untimeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
1270 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1275 log(LOG_ERR
, "%s: DAD complete for %s - duplicate found\n",
1276 if_name(ifa
->ifa_ifp
), ip6_sprintf(&ia
->ia_addr
.sin6_addr
));
1277 log(LOG_ERR
, "%s: manual intervention required\n",
1278 if_name(ifa
->ifa_ifp
));
1280 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1281 _FREE(dp
, M_IP6NDP
);
1287 nd6_dad_ns_output(dp
, ifa
)
1291 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1292 struct ifnet
*ifp
= ifa
->ifa_ifp
;
1294 dp
->dad_ns_tcount
++;
1295 if ((ifp
->if_flags
& IFF_UP
) == 0) {
1297 printf("%s: interface down?\n", if_name(ifp
));
1301 if ((ifp
->if_flags
& IFF_RUNNING
) == 0) {
1303 printf("%s: interface not running?\n", if_name(ifp
));
1308 dp
->dad_ns_ocount
++;
1309 nd6_ns_output(ifp
, NULL
, &ia
->ia_addr
.sin6_addr
, NULL
, 1);
1313 nd6_dad_ns_input(ifa
)
1316 struct in6_ifaddr
*ia
;
1318 struct in6_addr
*taddr6
;
1323 panic("ifa == NULL in nd6_dad_ns_input");
1325 ia
= (struct in6_ifaddr
*)ifa
;
1327 taddr6
= &ia
->ia_addr
.sin6_addr
;
1329 dp
= nd6_dad_find(ifa
);
1332 * If it is from myself, ignore this.
1334 if (ifp
&& (ifp
->if_flags
& IFF_LOOPBACK
))
1337 /* Quickhack - completely ignore DAD NS packets */
1338 if (dad_ignore_ns
) {
1339 log(LOG_INFO
, "nd6_dad_ns_input: ignoring DAD NS packet for "
1340 "address %s(%s)\n", ip6_sprintf(taddr6
),
1341 if_name(ifa
->ifa_ifp
));
1346 * if I'm yet to start DAD, someone else started using this address
1347 * first. I have a duplicate and you win.
1349 if (!dp
|| dp
->dad_ns_ocount
== 0)
1352 /* XXX more checks for loopback situation - see nd6_dad_timer too */
1355 dp
= NULL
; /* will be freed in nd6_dad_duplicated() */
1356 nd6_dad_duplicated(ifa
);
1359 * not sure if I got a duplicate.
1360 * increment ns count and see what happens.
1363 dp
->dad_ns_icount
++;
1368 nd6_dad_na_input(ifa
)
1374 panic("ifa == NULL in nd6_dad_na_input");
1376 dp
= nd6_dad_find(ifa
);
1378 dp
->dad_na_icount
++;
1380 /* remove the address. */
1381 nd6_dad_duplicated(ifa
);