1 /* $FreeBSD: src/sys/netinet6/nd6_nbr.c,v 1.4.2.4 2001/07/06 05:32:25 sumikawa Exp $ */
2 /* $KAME: nd6_nbr.c,v 1.64 2001/05/17 03:48:30 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/malloc.h>
37 #include <sys/socket.h>
38 #include <sys/sockio.h>
40 #include <sys/kernel.h>
41 #include <sys/errno.h>
42 #include <sys/syslog.h>
43 #include <kern/queue.h>
46 #include <net/if_types.h>
47 #include <net/if_dl.h>
48 #include <net/route.h>
50 #include <netinet/in.h>
51 #include <netinet/in_var.h>
52 #include <netinet6/in6_var.h>
53 #include <netinet/ip6.h>
54 #include <netinet6/ip6_var.h>
55 #include <netinet6/nd6.h>
56 #include <netinet/icmp6.h>
59 #include <netinet6/ipsec.h>
61 #include <netinet6/ipsec6.h>
63 extern int ipsec_bypass
;
66 #include <net/net_osdep.h>
68 #define SDL(s) ((struct sockaddr_dl *)s)
71 static struct dadq
*nd6_dad_find
__P((struct ifaddr
*));
73 static void nd6_dad_starttimer
__P((struct dadq
*, int));
74 static void nd6_dad_stoptimer
__P((struct dadq
*));
76 void nd6_dad_stoptimer
__P((struct ifaddr
*));
78 static void nd6_dad_timer
__P((struct ifaddr
*));
79 static void nd6_dad_timer_funnel
__P((struct ifaddr
*));
80 static void nd6_dad_ns_output
__P((struct dadq
*, struct ifaddr
*));
81 static void nd6_dad_ns_input
__P((struct ifaddr
*));
82 static void nd6_dad_na_input
__P((struct ifaddr
*));
84 static int dad_ignore_ns
= 0; /* ignore NS in DAD - specwise incorrect*/
85 static int dad_maxtry
= 15; /* max # of *tries* to transmit DAD packet */
88 * Input an Neighbor Solicitation Message.
91 * Based on RFC 2462 (duplicated address detection)
94 nd6_ns_input(m
, off
, icmp6len
)
98 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
99 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
100 struct nd_neighbor_solicit
*nd_ns
;
101 struct in6_addr saddr6
= ip6
->ip6_src
;
102 struct in6_addr daddr6
= ip6
->ip6_dst
;
103 struct in6_addr taddr6
;
104 struct in6_addr myaddr6
;
108 int anycast
= 0, proxy
= 0, tentative
= 0;
110 union nd_opts ndopts
;
111 struct sockaddr_dl
*proxydl
= NULL
;
113 #ifndef PULLDOWN_TEST
114 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
115 nd_ns
= (struct nd_neighbor_solicit
*)((caddr_t
)ip6
+ off
);
117 IP6_EXTHDR_GET(nd_ns
, struct nd_neighbor_solicit
*, m
, off
, icmp6len
);
119 icmp6stat
.icp6s_tooshort
++;
123 ip6
= mtod(m
, struct ip6_hdr
*); /* adjust pointer for safety */
124 taddr6
= nd_ns
->nd_ns_target
;
126 if (ip6
->ip6_hlim
!= 255) {
128 "nd6_ns_input: invalid hlim (%d) from %s to %s on %s\n",
129 ip6
->ip6_hlim
, ip6_sprintf(&ip6
->ip6_src
),
130 ip6_sprintf(&ip6
->ip6_dst
), if_name(ifp
)));
134 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
)) {
135 /* dst has to be solicited node multicast address. */
136 if (daddr6
.s6_addr16
[0] == IPV6_ADDR_INT16_MLL
137 /*don't check ifindex portion*/
138 && daddr6
.s6_addr32
[1] == 0
139 && daddr6
.s6_addr32
[2] == IPV6_ADDR_INT32_ONE
140 && daddr6
.s6_addr8
[12] == 0xff) {
143 nd6log((LOG_INFO
, "nd6_ns_input: bad DAD packet "
144 "(wrong ip6 dst)\n"));
149 if (IN6_IS_ADDR_MULTICAST(&taddr6
)) {
150 nd6log((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) {
161 "nd6_ns_input: invalid ND option, ignored\n"));
162 /* nd6_options have incremented stats */
166 if (ndopts
.nd_opts_src_lladdr
) {
167 lladdr
= (char *)(ndopts
.nd_opts_src_lladdr
+1);
168 lladdrlen
= ndopts
.nd_opts_src_lladdr
->nd_opt_len
<< 3;
171 if (IN6_IS_ADDR_UNSPECIFIED(&ip6
->ip6_src
) && lladdr
) {
172 nd6log((LOG_INFO
, "nd6_ns_input: bad DAD packet "
173 "(link-layer address option)\n"));
178 * Attaching target link-layer address to the NA?
181 * NS IP dst is unicast/anycast MUST NOT add
182 * NS IP dst is solicited-node multicast MUST add
184 * In implementation, we add target link-layer address by default.
185 * We do not add one in MUST NOT cases.
187 #if 0 /* too much! */
188 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &daddr6
);
189 if (ifa
&& (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_ANYCAST
))
193 if (!IN6_IS_ADDR_MULTICAST(&daddr6
))
199 * Target address (taddr6) must be either:
200 * (1) Valid unicast/anycast address for my receiving interface,
201 * (2) Unicast address for which I'm offering proxy service, or
202 * (3) "tentative" address on which DAD is being performed.
204 /* (1) and (3) check. */
205 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &taddr6
);
210 struct sockaddr_in6 tsin6
;
212 bzero(&tsin6
, sizeof tsin6
);
213 tsin6
.sin6_len
= sizeof(struct sockaddr_in6
);
214 tsin6
.sin6_family
= AF_INET6
;
215 tsin6
.sin6_addr
= taddr6
;
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
) {
221 * proxy NDP for single entry
223 ifa
= (struct ifaddr
*)in6ifa_ifpforlinklocal(ifp
,
224 IN6_IFF_NOTREADY
|IN6_IFF_ANYCAST
);
227 proxydl
= SDL(rt
->rt_gateway
);
235 * We've got an NS packet, and we don't have that adddress
236 * assigned for us. We MUST silently ignore it.
241 myaddr6
= *IFA_IN6(ifa
);
242 anycast
= ((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_ANYCAST
;
243 tentative
= ((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_TENTATIVE
;
244 if (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_DUPLICATED
)
247 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
249 "nd6_ns_input: lladdrlen mismatch for %s "
250 "(if %d, NS packet %d)\n",
251 ip6_sprintf(&taddr6
), ifp
->if_addrlen
, lladdrlen
- 2));
255 if (IN6_ARE_ADDR_EQUAL(&myaddr6
, &saddr6
)) {
257 "nd6_ns_input: duplicate IP6 address %s\n",
258 ip6_sprintf(&saddr6
));
263 * We have neighbor solicitation packet, with target address equals to
264 * one of my tentative address.
266 * src addr how to process?
268 * multicast of course, invalid (rejected in ip6_input)
269 * unicast somebody is doing address resolution -> ignore
270 * unspec dup address detection
272 * The processing is defined in RFC 2462.
276 * If source address is unspecified address, it is for
277 * duplicated address detection.
279 * If not, the packet is for addess resolution;
280 * silently ignore it.
282 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
))
283 nd6_dad_ns_input(ifa
);
289 * If the source address is unspecified address, entries must not
290 * be created or updated.
291 * It looks that sender is performing DAD. Output NA toward
292 * all-node multicast address, to tell the sender that I'm using
294 * S bit ("solicited") must be zero.
296 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
)) {
297 saddr6
= in6addr_linklocal_allnodes
;
298 saddr6
.s6_addr16
[1] = htons(ifp
->if_index
);
299 nd6_na_output(ifp
, &saddr6
, &taddr6
,
300 ((anycast
|| proxy
|| !tlladdr
)
301 ? 0 : ND_NA_FLAG_OVERRIDE
)
302 | (ip6_forwarding
? ND_NA_FLAG_ROUTER
: 0),
303 tlladdr
, (struct sockaddr
*)proxydl
);
307 nd6_cache_lladdr(ifp
, &saddr6
, lladdr
, lladdrlen
, ND_NEIGHBOR_SOLICIT
, 0);
309 nd6_na_output(ifp
, &saddr6
, &taddr6
,
310 ((anycast
|| proxy
|| !tlladdr
) ? 0 : ND_NA_FLAG_OVERRIDE
)
311 | (ip6_forwarding
? ND_NA_FLAG_ROUTER
: 0)
312 | ND_NA_FLAG_SOLICITED
,
313 tlladdr
, (struct sockaddr
*)proxydl
);
319 nd6log((LOG_ERR
, "nd6_ns_input: src=%s\n", ip6_sprintf(&saddr6
)));
320 nd6log((LOG_ERR
, "nd6_ns_input: dst=%s\n", ip6_sprintf(&daddr6
)));
321 nd6log((LOG_ERR
, "nd6_ns_input: tgt=%s\n", ip6_sprintf(&taddr6
)));
322 icmp6stat
.icp6s_badns
++;
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 const 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) {
376 m
->m_pkthdr
.rcvif
= NULL
;
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;
385 icmp6len
= sizeof(*nd_ns
);
386 m
->m_pkthdr
.len
= m
->m_len
= sizeof(*ip6
) + icmp6len
;
387 m
->m_data
+= max_linkhdr
; /*or MH_ALIGN() equivalent?*/
389 /* fill neighbor solicitation packet */
390 ip6
= mtod(m
, struct ip6_hdr
*);
392 ip6
->ip6_vfc
&= ~IPV6_VERSION_MASK
;
393 ip6
->ip6_vfc
|= IPV6_VERSION
;
394 /* ip6->ip6_plen will be set later */
395 ip6
->ip6_nxt
= IPPROTO_ICMPV6
;
398 ip6
->ip6_dst
= *daddr6
;
400 ip6
->ip6_dst
.s6_addr16
[0] = IPV6_ADDR_INT16_MLL
;
401 ip6
->ip6_dst
.s6_addr16
[1] = htons(ifp
->if_index
);
402 ip6
->ip6_dst
.s6_addr32
[1] = 0;
403 ip6
->ip6_dst
.s6_addr32
[2] = IPV6_ADDR_INT32_ONE
;
404 ip6
->ip6_dst
.s6_addr32
[3] = taddr6
->s6_addr32
[3];
405 ip6
->ip6_dst
.s6_addr8
[12] = 0xff;
408 #if 0 /* KAME way, exact address scope match */
410 * Select a source whose scope is the same as that of the dest.
411 * Typically, the dest is link-local solicitation multicast
412 * (i.e. neighbor discovery) or link-local/global unicast
413 * (i.e. neighbor un-reachability detection).
415 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
420 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
421 #else /* spec-wise correct */
424 * "If the source address of the packet prompting the
425 * solicitation is the same as one of the addresses assigned
426 * to the outgoing interface, that address SHOULD be placed
427 * in the IP Source Address of the outgoing solicitation.
428 * Otherwise, any one of the addresses assigned to the
429 * interface should be used."
431 * We use the source address for the prompting packet
433 * - saddr6 is given from the caller (by giving "ln"), and
434 * - saddr6 belongs to the outgoing interface.
435 * Otherwise, we perform a scope-wise match.
437 struct ip6_hdr
*hip6
; /*hold ip6*/
438 struct in6_addr
*saddr6
;
440 if (ln
&& ln
->ln_hold
) {
441 hip6
= mtod(ln
->ln_hold
, struct ip6_hdr
*);
443 if (sizeof(*hip6
) < ln
->ln_hold
->m_len
)
444 saddr6
= &hip6
->ip6_src
;
449 if (saddr6
&& in6ifa_ifpwithaddr(ifp
, saddr6
))
450 bcopy(saddr6
, &ip6
->ip6_src
, sizeof(*saddr6
));
452 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
457 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
462 * Source address for DAD packet must always be IPv6
463 * unspecified address. (0::0)
465 bzero(&ip6
->ip6_src
, sizeof(ip6
->ip6_src
));
467 nd_ns
= (struct nd_neighbor_solicit
*)(ip6
+ 1);
468 nd_ns
->nd_ns_type
= ND_NEIGHBOR_SOLICIT
;
469 nd_ns
->nd_ns_code
= 0;
470 nd_ns
->nd_ns_reserved
= 0;
471 nd_ns
->nd_ns_target
= *taddr6
;
473 if (IN6_IS_SCOPE_LINKLOCAL(&nd_ns
->nd_ns_target
))
474 nd_ns
->nd_ns_target
.s6_addr16
[1] = 0;
477 * Add source link-layer address option.
479 * spec implementation
481 * DAD packet MUST NOT do not add the option
482 * there's no link layer address:
483 * impossible do not add the option
484 * there's link layer address:
485 * Multicast NS MUST add one add the option
486 * Unicast NS SHOULD add one add the option
488 if (!dad
&& (mac
= nd6_ifptomac(ifp
))) {
489 int optlen
= sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
;
490 struct nd_opt_hdr
*nd_opt
= (struct nd_opt_hdr
*)(nd_ns
+ 1);
491 /* 8 byte alignments... */
492 optlen
= (optlen
+ 7) & ~7;
494 m
->m_pkthdr
.len
+= optlen
;
497 bzero((caddr_t
)nd_opt
, optlen
);
498 nd_opt
->nd_opt_type
= ND_OPT_SOURCE_LINKADDR
;
499 nd_opt
->nd_opt_len
= optlen
>> 3;
500 bcopy(mac
, (caddr_t
)(nd_opt
+ 1), ifp
->if_addrlen
);
503 ip6
->ip6_plen
= htons((u_short
)icmp6len
);
504 nd_ns
->nd_ns_cksum
= 0;
506 = in6_cksum(m
, IPPROTO_ICMPV6
, sizeof(*ip6
), icmp6len
);
509 /* Don't lookup socket */
510 if (ipsec_bypass
== 0)
511 (void)ipsec_setsocket(m
, NULL
);
513 ip6_output(m
, NULL
, NULL
, dad
? IPV6_DADOUTPUT
: 0, &im6o
, &outif
);
515 icmp6_ifstat_inc(outif
, ifs6_out_msg
);
516 icmp6_ifstat_inc(outif
, ifs6_out_neighborsolicit
);
518 icmp6stat
.icp6s_outhist
[ND_NEIGHBOR_SOLICIT
]++;
522 * Neighbor advertisement input handling.
525 * Based on RFC 2462 (duplicated address detection)
527 * the following items are not implemented yet:
528 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
529 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
532 nd6_na_input(m
, off
, icmp6len
)
536 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
537 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
538 struct nd_neighbor_advert
*nd_na
;
540 struct in6_addr saddr6
= ip6
->ip6_src
;
542 struct in6_addr daddr6
= ip6
->ip6_dst
;
543 struct in6_addr taddr6
;
551 struct llinfo_nd6
*ln
;
553 struct sockaddr_dl
*sdl
;
554 union nd_opts ndopts
;
556 if (ip6
->ip6_hlim
!= 255) {
558 "nd6_na_input: invalid hlim (%d) from %s to %s on %s\n",
559 ip6
->ip6_hlim
, ip6_sprintf(&ip6
->ip6_src
),
560 ip6_sprintf(&ip6
->ip6_dst
), if_name(ifp
)));
564 #ifndef PULLDOWN_TEST
565 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
566 nd_na
= (struct nd_neighbor_advert
*)((caddr_t
)ip6
+ off
);
568 IP6_EXTHDR_GET(nd_na
, struct nd_neighbor_advert
*, m
, off
, icmp6len
);
570 icmp6stat
.icp6s_tooshort
++;
574 taddr6
= nd_na
->nd_na_target
;
575 flags
= nd_na
->nd_na_flags_reserved
;
576 is_router
= ((flags
& ND_NA_FLAG_ROUTER
) != 0);
577 is_solicited
= ((flags
& ND_NA_FLAG_SOLICITED
) != 0);
578 is_override
= ((flags
& ND_NA_FLAG_OVERRIDE
) != 0);
580 if (IN6_IS_SCOPE_LINKLOCAL(&taddr6
))
581 taddr6
.s6_addr16
[1] = htons(ifp
->if_index
);
583 if (IN6_IS_ADDR_MULTICAST(&taddr6
)) {
585 "nd6_na_input: invalid target address %s\n",
586 ip6_sprintf(&taddr6
)));
589 if (IN6_IS_ADDR_MULTICAST(&daddr6
))
592 "nd6_na_input: a solicited adv is multicasted\n"));
596 icmp6len
-= sizeof(*nd_na
);
597 nd6_option_init(nd_na
+ 1, icmp6len
, &ndopts
);
598 if (nd6_options(&ndopts
) < 0) {
600 "nd6_na_input: invalid ND option, ignored\n"));
601 /* nd6_options have incremented stats */
605 if (ndopts
.nd_opts_tgt_lladdr
) {
606 lladdr
= (char *)(ndopts
.nd_opts_tgt_lladdr
+ 1);
607 lladdrlen
= ndopts
.nd_opts_tgt_lladdr
->nd_opt_len
<< 3;
610 ifa
= (struct ifaddr
*)in6ifa_ifpwithaddr(ifp
, &taddr6
);
613 * Target address matches one of my interface address.
615 * If my address is tentative, this means that there's somebody
616 * already using the same address as mine. This indicates DAD failure.
617 * This is defined in RFC 2462.
619 * Otherwise, process as defined in RFC 2461.
622 && (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_TENTATIVE
)) {
623 nd6_dad_na_input(ifa
);
627 /* Just for safety, maybe unnecessery. */
630 "nd6_na_input: duplicate IP6 address %s\n",
631 ip6_sprintf(&taddr6
));
635 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
637 "nd6_na_input: lladdrlen mismatch for %s "
638 "(if %d, NA packet %d)\n",
639 ip6_sprintf(&taddr6
), ifp
->if_addrlen
, lladdrlen
- 2));
644 * If no neighbor cache entry is found, NA SHOULD silently be discarded.
646 rt
= nd6_lookup(&taddr6
, 0, ifp
);
648 ((ln
= (struct llinfo_nd6
*)rt
->rt_llinfo
) == NULL
) ||
649 ((sdl
= SDL(rt
->rt_gateway
)) == NULL
))
652 if (ln
->ln_state
== ND6_LLINFO_INCOMPLETE
) {
654 * If the link-layer has address, and no lladdr option came,
655 * discard the packet.
657 if (ifp
->if_addrlen
&& !lladdr
)
661 * Record link-layer address, and update the state.
663 sdl
->sdl_alen
= ifp
->if_addrlen
;
664 bcopy(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
);
666 ln
->ln_state
= ND6_LLINFO_REACHABLE
;
669 ln
->ln_expire
= time_second
+
670 nd_ifinfo
[rt
->rt_ifp
->if_index
].reachable
;
672 ln
->ln_state
= ND6_LLINFO_STALE
;
673 ln
->ln_expire
= time_second
+ nd6_gctimer
;
675 if ((ln
->ln_router
= is_router
) != 0) {
677 * This means a router's state has changed from
678 * non-reachable to probably reachable, and might
679 * affect the status of associated prefixes..
681 pfxlist_onlink_check();
687 * Check if the link-layer address has changed or not.
693 if (bcmp(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
))
702 * This is VERY complex. Look at it with care.
704 * override solicit lladdr llchange action
709 * 0 0 y y (1) REACHABLE->STALE
710 * 0 1 n -- (2c) *->REACHABLE
711 * 0 1 y n (2b) L *->REACHABLE
712 * 0 1 y y (1) REACHABLE->STALE
715 * 1 0 y y (2a) L *->STALE
716 * 1 1 n -- (2a) *->REACHABLE
717 * 1 1 y n (2a) L *->REACHABLE
718 * 1 1 y y (2a) L *->REACHABLE
720 if (!is_override
&& (lladdr
&& llchange
)) { /* (1) */
722 * If state is REACHABLE, make it STALE.
723 * no other updates should be done.
725 if (ln
->ln_state
== ND6_LLINFO_REACHABLE
) {
726 ln
->ln_state
= ND6_LLINFO_STALE
;
727 ln
->ln_expire
= time_second
+ nd6_gctimer
;
730 } else if (is_override
/* (2a) */
731 || (!is_override
&& (lladdr
&& !llchange
)) /* (2b) */
732 || !lladdr
) { /* (2c) */
734 * Update link-local address, if any.
737 sdl
->sdl_alen
= ifp
->if_addrlen
;
738 bcopy(lladdr
, LLADDR(sdl
), ifp
->if_addrlen
);
742 * If solicited, make the state REACHABLE.
743 * If not solicited and the link-layer address was
744 * changed, make it STALE.
747 ln
->ln_state
= ND6_LLINFO_REACHABLE
;
750 ln
->ln_expire
= time_second
+
751 nd_ifinfo
[ifp
->if_index
].reachable
;
754 if (lladdr
&& llchange
) {
755 ln
->ln_state
= ND6_LLINFO_STALE
;
756 ln
->ln_expire
= time_second
+ nd6_gctimer
;
761 if (ln
->ln_router
&& !is_router
) {
763 * The peer dropped the router flag.
764 * Remove the sender from the Default Router List and
765 * update the Destination Cache entries.
767 struct nd_defrouter
*dr
;
768 struct in6_addr
*in6
;
771 in6
= &((struct sockaddr_in6
*)rt_key(rt
))->sin6_addr
;
773 dr
= defrouter_lookup(in6
, rt
->rt_ifp
);
776 else if (!ip6_forwarding
&& ip6_accept_rtadv
) {
778 * Even if the neighbor is not in the default
779 * router list, the neighbor may be used
780 * as a next hop for some destinations
781 * (e.g. redirect case). So we must
782 * call rt6_flush explicitly.
784 rt6_flush(&ip6
->ip6_src
, rt
->rt_ifp
);
788 ln
->ln_router
= is_router
;
790 rt
->rt_flags
&= ~RTF_REJECT
;
794 * we assume ifp is not a p2p here, so just set the 2nd
795 * argument as the 1st one.
797 nd6_output(ifp
, ifp
, ln
->ln_hold
,
798 (struct sockaddr_in6
*)rt_key(rt
), rt
);
807 icmp6stat
.icp6s_badna
++;
812 * Neighbor advertisement output handling.
816 * the following items are not implemented yet:
817 * - proxy advertisement delay rule (RFC2461 7.2.8, last paragraph, SHOULD)
818 * - anycast advertisement delay rule (RFC2461 7.2.7, SHOULD)
821 nd6_na_output(ifp
, daddr6
, taddr6
, flags
, tlladdr
, sdl0
)
823 const struct in6_addr
*daddr6
, *taddr6
;
825 int tlladdr
; /* 1 if include target link-layer address */
826 struct sockaddr
*sdl0
; /* sockaddr_dl (= proxy NA) or NULL */
830 struct nd_neighbor_advert
*nd_na
;
831 struct in6_ifaddr
*ia
= NULL
;
832 struct ip6_moptions im6o
;
836 struct ifnet
*outif
= NULL
;
838 /* estimate the size of message */
839 maxlen
= sizeof(*ip6
) + sizeof(*nd_na
);
840 maxlen
+= (sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
+ 7) & ~7;
841 if (max_linkhdr
+ maxlen
>= MCLBYTES
) {
843 printf("nd6_na_output: max_linkhdr + maxlen >= MCLBYTES "
844 "(%d + %d > %d)\n", max_linkhdr
, maxlen
, MCLBYTES
);
849 MGETHDR(m
, M_DONTWAIT
, MT_DATA
);
850 if (m
&& max_linkhdr
+ maxlen
>= MHLEN
) {
851 MCLGET(m
, M_DONTWAIT
);
852 if ((m
->m_flags
& M_EXT
) == 0) {
859 m
->m_pkthdr
.rcvif
= NULL
;
861 if (IN6_IS_ADDR_MULTICAST(daddr6
)) {
862 m
->m_flags
|= M_MCAST
;
863 im6o
.im6o_multicast_ifp
= ifp
;
864 im6o
.im6o_multicast_hlim
= 255;
865 im6o
.im6o_multicast_loop
= 0;
868 icmp6len
= sizeof(*nd_na
);
869 m
->m_pkthdr
.len
= m
->m_len
= sizeof(struct ip6_hdr
) + icmp6len
;
870 m
->m_data
+= max_linkhdr
; /*or MH_ALIGN() equivalent?*/
872 /* fill neighbor advertisement packet */
873 ip6
= mtod(m
, struct ip6_hdr
*);
875 ip6
->ip6_vfc
&= ~IPV6_VERSION_MASK
;
876 ip6
->ip6_vfc
|= IPV6_VERSION
;
877 ip6
->ip6_nxt
= IPPROTO_ICMPV6
;
879 if (IN6_IS_ADDR_UNSPECIFIED(daddr6
)) {
881 ip6
->ip6_dst
.s6_addr16
[0] = IPV6_ADDR_INT16_MLL
;
882 ip6
->ip6_dst
.s6_addr16
[1] = htons(ifp
->if_index
);
883 ip6
->ip6_dst
.s6_addr32
[1] = 0;
884 ip6
->ip6_dst
.s6_addr32
[2] = 0;
885 ip6
->ip6_dst
.s6_addr32
[3] = IPV6_ADDR_INT32_ONE
;
886 flags
&= ~ND_NA_FLAG_SOLICITED
;
888 ip6
->ip6_dst
= *daddr6
;
891 * Select a source whose scope is the same as that of the dest.
893 ia
= in6_ifawithifp(ifp
, &ip6
->ip6_dst
);
898 ip6
->ip6_src
= ia
->ia_addr
.sin6_addr
;
899 nd_na
= (struct nd_neighbor_advert
*)(ip6
+ 1);
900 nd_na
->nd_na_type
= ND_NEIGHBOR_ADVERT
;
901 nd_na
->nd_na_code
= 0;
902 nd_na
->nd_na_target
= *taddr6
;
903 if (IN6_IS_SCOPE_LINKLOCAL(&nd_na
->nd_na_target
))
904 nd_na
->nd_na_target
.s6_addr16
[1] = 0;
907 * "tlladdr" indicates NS's condition for adding tlladdr or not.
908 * see nd6_ns_input() for details.
909 * Basically, if NS packet is sent to unicast/anycast addr,
910 * target lladdr option SHOULD NOT be included.
915 * sdl0 != NULL indicates proxy NA. If we do proxy, use
916 * lladdr in sdl0. If we are not proxying (sending NA for
917 * my address) use lladdr configured for the interface.
920 mac
= nd6_ifptomac(ifp
);
921 else if (sdl0
->sa_family
== AF_LINK
) {
922 struct sockaddr_dl
*sdl
;
923 sdl
= (struct sockaddr_dl
*)sdl0
;
924 if (sdl
->sdl_alen
== ifp
->if_addrlen
)
928 if (tlladdr
&& mac
) {
929 int optlen
= sizeof(struct nd_opt_hdr
) + ifp
->if_addrlen
;
930 struct nd_opt_hdr
*nd_opt
= (struct nd_opt_hdr
*)(nd_na
+ 1);
932 /* roundup to 8 bytes alignment! */
933 optlen
= (optlen
+ 7) & ~7;
935 m
->m_pkthdr
.len
+= optlen
;
938 bzero((caddr_t
)nd_opt
, optlen
);
939 nd_opt
->nd_opt_type
= ND_OPT_TARGET_LINKADDR
;
940 nd_opt
->nd_opt_len
= optlen
>> 3;
941 bcopy(mac
, (caddr_t
)(nd_opt
+ 1), ifp
->if_addrlen
);
943 flags
&= ~ND_NA_FLAG_OVERRIDE
;
945 ip6
->ip6_plen
= htons((u_short
)icmp6len
);
946 nd_na
->nd_na_flags_reserved
= flags
;
947 nd_na
->nd_na_cksum
= 0;
949 in6_cksum(m
, IPPROTO_ICMPV6
, sizeof(struct ip6_hdr
), icmp6len
);
952 /* Don't lookup socket */
953 if (ipsec_bypass
== 0)
954 (void)ipsec_setsocket(m
, NULL
);
956 ip6_output(m
, NULL
, NULL
, 0, &im6o
, &outif
);
958 icmp6_ifstat_inc(outif
, ifs6_out_msg
);
959 icmp6_ifstat_inc(outif
, ifs6_out_neighboradvert
);
961 icmp6stat
.icp6s_outhist
[ND_NEIGHBOR_ADVERT
]++;
968 switch (ifp
->if_type
) {
979 return ((caddr_t
)(ifp
+ 1));
986 TAILQ_HEAD(dadq_head
, dadq
);
988 TAILQ_ENTRY(dadq
) dad_list
;
989 struct ifaddr
*dad_ifa
;
990 int dad_count
; /* max NS to send */
991 int dad_ns_tcount
; /* # of trials to send NS */
992 int dad_ns_ocount
; /* NS sent so far */
995 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
996 struct callout_handle dad_timer
;
1000 static struct dadq_head dadq
;
1001 static int dad_init
= 0;
1003 static struct dadq
*
1009 for (dp
= dadq
.tqh_first
; dp
; dp
= dp
->dad_list
.tqe_next
) {
1010 if (dp
->dad_ifa
== ifa
)
1018 nd6_dad_stoptimer(ifa
)
1022 untimeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
);
1026 nd6_dad_starttimer(dp
, ticks
)
1031 callout_reset(&dp
->dad_timer_ch
, ticks
,
1032 (void (*) __P((void *)))nd6_dad_timer
, (void *)dp
->dad_ifa
);
1035 nd6_dad_stoptimer(dp
)
1039 callout_stop(&dp
->dad_timer_ch
);
1044 * Start Duplicated Address Detection (DAD) for specified interface address.
1047 nd6_dad_start(ifa
, tick
)
1049 int *tick
; /* minimum delay ticks for IFF_UP event */
1051 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1060 * If we don't need DAD, don't do it.
1061 * There are several cases:
1062 * - DAD is disabled (ip6_dad_count == 0)
1063 * - the interface address is anycast
1065 if (!(ia
->ia6_flags
& IN6_IFF_TENTATIVE
)) {
1067 "nd6_dad_start: called with non-tentative address "
1069 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1070 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1073 if (ia
->ia6_flags
& IN6_IFF_ANYCAST
) {
1074 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1077 if (!ip6_dad_count
) {
1078 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1082 panic("nd6_dad_start: ifa->ifa_ifp == NULL");
1083 if (!(ifa
->ifa_ifp
->if_flags
& IFF_UP
))
1085 if (nd6_dad_find(ifa
) != NULL
) {
1086 /* DAD already in progress */
1090 dp
= _MALLOC(sizeof(*dp
), M_IP6NDP
, M_NOWAIT
);
1092 log(LOG_ERR
, "nd6_dad_start: memory allocation failed for "
1094 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1095 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1098 bzero(dp
, sizeof(*dp
));
1099 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1100 callout_init(&dp
->dad_timer_ch
);
1102 TAILQ_INSERT_TAIL(&dadq
, (struct dadq
*)dp
, dad_list
);
1104 nd6log((LOG_DEBUG
, "%s: starting DAD for %s\n", if_name(ifa
->ifa_ifp
),
1105 ip6_sprintf(&ia
->ia_addr
.sin6_addr
)));
1108 * Send NS packet for DAD, ip6_dad_count times.
1109 * Note that we must delay the first transmission, if this is the
1110 * first packet to be sent from the interface after interface
1111 * (re)initialization.
1114 ifaref(ifa
); /*just for safety*/
1115 dp
->dad_count
= ip6_dad_count
;
1116 dp
->dad_ns_icount
= dp
->dad_na_icount
= 0;
1117 dp
->dad_ns_ocount
= dp
->dad_ns_tcount
= 0;
1119 nd6_dad_ns_output(dp
, ifa
);
1120 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1123 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1124 nd_ifinfo
[ifa
->ifa_ifp
->if_index
].retrans
* hz
/ 1000);
1129 ntick
= random() % (MAX_RTR_SOLICITATION_DELAY
* hz
);
1131 ntick
= *tick
+ random() % (hz
/ 2);
1133 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1136 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1142 * terminate DAD unconditionally. used for address removals.
1152 dp
= nd6_dad_find(ifa
);
1154 /* DAD wasn't started yet */
1158 untimeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
);
1160 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1168 nd6_dad_timer_funnel(ifa
)
1173 boolean_t funnel_state
;
1174 funnel_state
= thread_funnel_set(network_flock
, TRUE
);
1178 (void) thread_funnel_set(network_flock
, FALSE
);
1188 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1191 s
= splnet(); /*XXX*/
1195 log(LOG_ERR
, "nd6_dad_timer: called with null parameter\n");
1198 dp
= nd6_dad_find(ifa
);
1200 log(LOG_ERR
, "nd6_dad_timer: DAD structure not found\n");
1203 if (ia
->ia6_flags
& IN6_IFF_DUPLICATED
) {
1204 log(LOG_ERR
, "nd6_dad_timer: called with duplicated address "
1206 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1207 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1210 if ((ia
->ia6_flags
& IN6_IFF_TENTATIVE
) == 0) {
1211 log(LOG_ERR
, "nd6_dad_timer: called with non-tentative address "
1213 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1214 ifa
->ifa_ifp
? if_name(ifa
->ifa_ifp
) : "???");
1218 /* timeouted with IFF_{RUNNING,UP} check */
1219 if (dp
->dad_ns_tcount
> dad_maxtry
) {
1220 nd6log((LOG_INFO
, "%s: could not run DAD, driver problem?\n",
1221 if_name(ifa
->ifa_ifp
)));
1223 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1230 /* Need more checks? */
1231 if (dp
->dad_ns_ocount
< dp
->dad_count
) {
1233 * We have more NS to go. Send NS packet for DAD.
1235 nd6_dad_ns_output(dp
, ifa
);
1236 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
1239 timeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
,
1240 nd_ifinfo
[ifa
->ifa_ifp
->if_index
].retrans
* hz
/ 1000);
1243 * We have transmitted sufficient number of DAD packets.
1244 * See what we've got.
1250 if (dp
->dad_na_icount
) {
1252 * the check is in nd6_dad_na_input(),
1258 if (dp
->dad_ns_icount
) {
1259 #if 0 /*heuristics*/
1262 * - we have sent many(?) DAD NS, and
1263 * - the number of NS we sent equals to the
1264 * number of NS we've got, and
1266 * we may have a faulty network card/driver which
1267 * loops back multicasts to myself.
1269 if (3 < dp
->dad_count
1270 && dp
->dad_ns_icount
== dp
->dad_count
1271 && dp
->dad_na_icount
== 0) {
1272 log(LOG_INFO
, "DAD questionable for %s(%s): "
1273 "network card loops back multicast?\n",
1274 ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1275 if_name(ifa
->ifa_ifp
));
1276 /* XXX consider it a duplicate or not? */
1279 /* We've seen NS, means DAD has failed. */
1283 /* We've seen NS, means DAD has failed. */
1289 /* (*dp) will be freed in nd6_dad_duplicated() */
1291 nd6_dad_duplicated(ifa
);
1294 * We are done with DAD. No NA came, no NS came.
1295 * duplicated address found.
1297 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1300 "%s: DAD complete for %s - no duplicates found\n",
1301 if_name(ifa
->ifa_ifp
),
1302 ip6_sprintf(&ia
->ia_addr
.sin6_addr
)));
1304 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1316 nd6_dad_duplicated(ifa
)
1319 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1322 dp
= nd6_dad_find(ifa
);
1324 log(LOG_ERR
, "nd6_dad_duplicated: DAD structure not found\n");
1328 log(LOG_ERR
, "%s: DAD detected duplicate IPv6 address %s: "
1329 "NS in/out=%d/%d, NA in=%d\n",
1330 if_name(ifa
->ifa_ifp
), ip6_sprintf(&ia
->ia_addr
.sin6_addr
),
1331 dp
->dad_ns_icount
, dp
->dad_ns_ocount
, dp
->dad_na_icount
);
1333 ia
->ia6_flags
&= ~IN6_IFF_TENTATIVE
;
1334 ia
->ia6_flags
|= IN6_IFF_DUPLICATED
;
1336 /* We are done with DAD, with duplicated address found. (failure) */
1337 untimeout((void (*) __P((void *)))nd6_dad_timer_funnel
, (void *)ifa
);
1340 log(LOG_ERR
, "%s: DAD complete for %s - duplicate found\n",
1341 if_name(ifa
->ifa_ifp
), ip6_sprintf(&ia
->ia_addr
.sin6_addr
));
1342 log(LOG_ERR
, "%s: manual intervention required\n",
1343 if_name(ifa
->ifa_ifp
));
1345 TAILQ_REMOVE(&dadq
, (struct dadq
*)dp
, dad_list
);
1352 nd6_dad_ns_output(dp
, ifa
)
1356 struct in6_ifaddr
*ia
= (struct in6_ifaddr
*)ifa
;
1357 struct ifnet
*ifp
= ifa
->ifa_ifp
;
1359 dp
->dad_ns_tcount
++;
1360 if ((ifp
->if_flags
& IFF_UP
) == 0) {
1362 printf("%s: interface down?\n", if_name(ifp
));
1366 if ((ifp
->if_flags
& IFF_RUNNING
) == 0) {
1368 printf("%s: interface not running?\n", if_name(ifp
));
1373 dp
->dad_ns_ocount
++;
1374 nd6_ns_output(ifp
, NULL
, &ia
->ia_addr
.sin6_addr
, NULL
, 1);
1378 nd6_dad_ns_input(ifa
)
1381 struct in6_ifaddr
*ia
;
1383 const struct in6_addr
*taddr6
;
1388 panic("ifa == NULL in nd6_dad_ns_input");
1390 ia
= (struct in6_ifaddr
*)ifa
;
1392 taddr6
= &ia
->ia_addr
.sin6_addr
;
1394 dp
= nd6_dad_find(ifa
);
1396 /* Quickhack - completely ignore DAD NS packets */
1397 if (dad_ignore_ns
) {
1399 "nd6_dad_ns_input: ignoring DAD NS packet for "
1400 "address %s(%s)\n", ip6_sprintf(taddr6
),
1401 if_name(ifa
->ifa_ifp
)));
1406 * if I'm yet to start DAD, someone else started using this address
1407 * first. I have a duplicate and you win.
1409 if (!dp
|| dp
->dad_ns_ocount
== 0)
1412 /* XXX more checks for loopback situation - see nd6_dad_timer too */
1415 dp
= NULL
; /* will be freed in nd6_dad_duplicated() */
1416 nd6_dad_duplicated(ifa
);
1419 * not sure if I got a duplicate.
1420 * increment ns count and see what happens.
1423 dp
->dad_ns_icount
++;
1428 nd6_dad_na_input(ifa
)
1434 panic("ifa == NULL in nd6_dad_na_input");
1436 dp
= nd6_dad_find(ifa
);
1438 dp
->dad_na_icount
++;
1440 /* remove the address. */
1441 nd6_dad_duplicated(ifa
);