1 /* $FreeBSD: src/sys/netinet6/nd6_rtr.c,v 1.2.2.3 2001/07/03 11:01:54 ume Exp $ */
2 /* $KAME: nd6_rtr.c,v 1.111 2001/04/27 01:37:15 jinmei 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
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/malloc.h>
38 #include <sys/socket.h>
39 #include <sys/sockio.h>
41 #include <sys/kernel.h>
42 #include <sys/errno.h>
43 #include <sys/syslog.h>
44 #include <sys/queue.h>
47 #include <net/if_types.h>
48 #include <net/if_dl.h>
49 #include <net/route.h>
50 #include <net/radix.h>
52 #include <netinet/in.h>
53 #include <netinet6/in6_var.h>
54 #include <netinet6/in6_ifattach.h>
55 #include <netinet/ip6.h>
56 #include <netinet6/ip6_var.h>
57 #include <netinet6/nd6.h>
58 #include <netinet/icmp6.h>
59 #include <netinet6/scope6_var.h>
61 #include <net/net_osdep.h>
63 #define SDL(s) ((struct sockaddr_dl *)s)
65 static struct nd_defrouter
*defrtrlist_update
__P((struct nd_defrouter
*));
66 static struct in6_ifaddr
*in6_ifadd
__P((struct nd_prefix
*,
68 static struct nd_pfxrouter
*pfxrtr_lookup
__P((struct nd_prefix
*,
69 struct nd_defrouter
*));
70 static void pfxrtr_add
__P((struct nd_prefix
*, struct nd_defrouter
*));
71 static void pfxrtr_del
__P((struct nd_pfxrouter
*));
72 static struct nd_pfxrouter
*find_pfxlist_reachable_router
73 __P((struct nd_prefix
*));
74 static void defrouter_addifreq
__P((struct ifnet
*));
75 static void nd6_rtmsg
__P((int, struct rtentry
*));
77 static void in6_init_address_ltimes
__P((struct nd_prefix
*ndpr
,
78 struct in6_addrlifetime
*lt6
));
80 static int rt6_deleteroute
__P((struct radix_node
*, void *));
82 extern int nd6_recalc_reachtm_interval
;
84 static struct ifnet
*nd6_defifp
;
87 int ip6_use_tempaddr
= 0;
89 int ip6_desync_factor
;
90 u_int32_t ip6_temp_preferred_lifetime
= DEF_TEMP_PREFERRED_LIFETIME
;
91 u_int32_t ip6_temp_valid_lifetime
= DEF_TEMP_VALID_LIFETIME
;
93 * shorter lifetimes for debugging purposes.
94 int ip6_temp_preferred_lifetime = 800;
95 static int ip6_temp_valid_lifetime = 1800;
97 int ip6_temp_regen_advance
= TEMPADDR_REGEN_ADVANCE
;
100 * Receive Router Solicitation Message - just for routers.
101 * Router solicitation/advertisement is mostly managed by userland program
102 * (rtadvd) so here we have no function like nd6_ra_output().
107 nd6_rs_input(m
, off
, icmp6len
)
111 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
112 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
113 struct nd_router_solicit
*nd_rs
;
114 struct in6_addr saddr6
= ip6
->ip6_src
;
116 struct in6_addr daddr6
= ip6
->ip6_dst
;
121 struct sockaddr_dl
*sdl
= (struct sockaddr_dl
*)NULL
;
122 struct llinfo_nd6
*ln
= (struct llinfo_nd6
*)NULL
;
123 struct rtentry
*rt
= NULL
;
126 union nd_opts ndopts
;
128 /* If I'm not a router, ignore it. */
129 if (ip6_accept_rtadv
!= 0 || ip6_forwarding
!= 1)
133 if (ip6
->ip6_hlim
!= 255) {
135 "nd6_rs_input: invalid hlim (%d) from %s to %s on %s\n",
136 ip6
->ip6_hlim
, ip6_sprintf(&ip6
->ip6_src
),
137 ip6_sprintf(&ip6
->ip6_dst
), if_name(ifp
)));
142 * Don't update the neighbor cache, if src = ::.
143 * This indicates that the src has no IP address assigned yet.
145 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6
))
148 #ifndef PULLDOWN_TEST
149 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
150 nd_rs
= (struct nd_router_solicit
*)((caddr_t
)ip6
+ off
);
152 IP6_EXTHDR_GET(nd_rs
, struct nd_router_solicit
*, m
, off
, icmp6len
);
154 icmp6stat
.icp6s_tooshort
++;
159 icmp6len
-= sizeof(*nd_rs
);
160 nd6_option_init(nd_rs
+ 1, icmp6len
, &ndopts
);
161 if (nd6_options(&ndopts
) < 0) {
163 "nd6_rs_input: invalid ND option, ignored\n"));
164 /* nd6_options have incremented stats */
168 if (ndopts
.nd_opts_src_lladdr
) {
169 lladdr
= (char *)(ndopts
.nd_opts_src_lladdr
+ 1);
170 lladdrlen
= ndopts
.nd_opts_src_lladdr
->nd_opt_len
<< 3;
173 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
175 "nd6_rs_input: lladdrlen mismatch for %s "
176 "(if %d, RS packet %d)\n",
177 ip6_sprintf(&saddr6
), ifp
->if_addrlen
, lladdrlen
- 2));
181 nd6_cache_lladdr(ifp
, &saddr6
, lladdr
, lladdrlen
, ND_ROUTER_SOLICIT
, 0);
188 icmp6stat
.icp6s_badrs
++;
193 * Receive Router Advertisement Message.
196 * TODO: on-link bit on prefix information
197 * TODO: ND_RA_FLAG_{OTHER,MANAGED} processing
200 nd6_ra_input(m
, off
, icmp6len
)
204 struct ifnet
*ifp
= m
->m_pkthdr
.rcvif
;
205 struct nd_ifinfo
*ndi
= &nd_ifinfo
[ifp
->if_index
];
206 struct ip6_hdr
*ip6
= mtod(m
, struct ip6_hdr
*);
207 struct nd_router_advert
*nd_ra
;
208 struct in6_addr saddr6
= ip6
->ip6_src
;
210 struct in6_addr daddr6
= ip6
->ip6_dst
;
211 int flags
; /* = nd_ra->nd_ra_flags_reserved; */
212 int is_managed
= ((flags
& ND_RA_FLAG_MANAGED
) != 0);
213 int is_other
= ((flags
& ND_RA_FLAG_OTHER
) != 0);
215 union nd_opts ndopts
;
216 struct nd_defrouter
*dr
;
218 if (ip6_accept_rtadv
== 0)
221 if (ip6
->ip6_hlim
!= 255) {
223 "nd6_ra_input: invalid hlim (%d) from %s to %s on %s\n",
224 ip6
->ip6_hlim
, ip6_sprintf(&ip6
->ip6_src
),
225 ip6_sprintf(&ip6
->ip6_dst
), if_name(ifp
)));
229 if (!IN6_IS_ADDR_LINKLOCAL(&saddr6
)) {
231 "nd6_ra_input: src %s is not link-local\n",
232 ip6_sprintf(&saddr6
)));
236 #ifndef PULLDOWN_TEST
237 IP6_EXTHDR_CHECK(m
, off
, icmp6len
,);
238 nd_ra
= (struct nd_router_advert
*)((caddr_t
)ip6
+ off
);
240 IP6_EXTHDR_GET(nd_ra
, struct nd_router_advert
*, m
, off
, icmp6len
);
242 icmp6stat
.icp6s_tooshort
++;
247 icmp6len
-= sizeof(*nd_ra
);
248 nd6_option_init(nd_ra
+ 1, icmp6len
, &ndopts
);
249 if (nd6_options(&ndopts
) < 0) {
251 "nd6_ra_input: invalid ND option, ignored\n"));
252 /* nd6_options have incremented stats */
257 struct nd_defrouter dr0
;
258 u_int32_t advreachable
= nd_ra
->nd_ra_reachable
;
261 dr0
.flags
= nd_ra
->nd_ra_flags_reserved
;
262 dr0
.rtlifetime
= ntohs(nd_ra
->nd_ra_router_lifetime
);
263 dr0
.expire
= time_second
+ dr0
.rtlifetime
;
265 dr0
.advint
= 0; /* Mobile IPv6 */
266 dr0
.advint_expire
= 0; /* Mobile IPv6 */
267 dr0
.advints_lost
= 0; /* Mobile IPv6 */
268 /* unspecified or not? (RFC 2461 6.3.4) */
271 if (advreachable
<= MAX_REACHABLE_TIME
&&
272 ndi
->basereachable
!= advreachable
) {
273 ndi
->basereachable
= advreachable
;
274 ndi
->reachable
= ND_COMPUTE_RTIME(ndi
->basereachable
);
275 ndi
->recalctm
= nd6_recalc_reachtm_interval
; /* reset */
278 if (nd_ra
->nd_ra_retransmit
)
279 ndi
->retrans
= ntohl(nd_ra
->nd_ra_retransmit
);
280 if (nd_ra
->nd_ra_curhoplimit
)
281 ndi
->chlim
= nd_ra
->nd_ra_curhoplimit
;
282 dr
= defrtrlist_update(&dr0
);
288 if (ndopts
.nd_opts_pi
) {
289 struct nd_opt_hdr
*pt
;
290 struct nd_opt_prefix_info
*pi
= NULL
;
293 for (pt
= (struct nd_opt_hdr
*)ndopts
.nd_opts_pi
;
294 pt
<= (struct nd_opt_hdr
*)ndopts
.nd_opts_pi_end
;
295 pt
= (struct nd_opt_hdr
*)((caddr_t
)pt
+
296 (pt
->nd_opt_len
<< 3))) {
297 if (pt
->nd_opt_type
!= ND_OPT_PREFIX_INFORMATION
)
299 pi
= (struct nd_opt_prefix_info
*)pt
;
301 if (pi
->nd_opt_pi_len
!= 4) {
303 "nd6_ra_input: invalid option "
304 "len %d for prefix information option, "
305 "ignored\n", pi
->nd_opt_pi_len
));
309 if (128 < pi
->nd_opt_pi_prefix_len
) {
311 "nd6_ra_input: invalid prefix "
312 "len %d for prefix information option, "
313 "ignored\n", pi
->nd_opt_pi_prefix_len
));
317 if (IN6_IS_ADDR_MULTICAST(&pi
->nd_opt_pi_prefix
)
318 || IN6_IS_ADDR_LINKLOCAL(&pi
->nd_opt_pi_prefix
)) {
320 "nd6_ra_input: invalid prefix "
322 ip6_sprintf(&pi
->nd_opt_pi_prefix
)));
326 /* aggregatable unicast address, rfc2374 */
327 if ((pi
->nd_opt_pi_prefix
.s6_addr8
[0] & 0xe0) == 0x20
328 && pi
->nd_opt_pi_prefix_len
!= 64) {
330 "nd6_ra_input: invalid prefixlen "
331 "%d for rfc2374 prefix %s, ignored\n",
332 pi
->nd_opt_pi_prefix_len
,
333 ip6_sprintf(&pi
->nd_opt_pi_prefix
)));
337 bzero(&pr
, sizeof(pr
));
338 pr
.ndpr_prefix
.sin6_family
= AF_INET6
;
339 pr
.ndpr_prefix
.sin6_len
= sizeof(pr
.ndpr_prefix
);
340 pr
.ndpr_prefix
.sin6_addr
= pi
->nd_opt_pi_prefix
;
341 pr
.ndpr_ifp
= (struct ifnet
*)m
->m_pkthdr
.rcvif
;
343 pr
.ndpr_raf_onlink
= (pi
->nd_opt_pi_flags_reserved
&
344 ND_OPT_PI_FLAG_ONLINK
) ? 1 : 0;
345 pr
.ndpr_raf_auto
= (pi
->nd_opt_pi_flags_reserved
&
346 ND_OPT_PI_FLAG_AUTO
) ? 1 : 0;
347 pr
.ndpr_plen
= pi
->nd_opt_pi_prefix_len
;
348 pr
.ndpr_vltime
= ntohl(pi
->nd_opt_pi_valid_time
);
350 ntohl(pi
->nd_opt_pi_preferred_time
);
352 if (in6_init_prefix_ltimes(&pr
))
353 continue; /* prefix lifetime init failed */
355 (void)prelist_update(&pr
, dr
, m
);
362 if (ndopts
.nd_opts_mtu
&& ndopts
.nd_opts_mtu
->nd_opt_mtu_len
== 1) {
363 u_int32_t mtu
= ntohl(ndopts
.nd_opts_mtu
->nd_opt_mtu_mtu
);
366 if (mtu
< IPV6_MMTU
) {
367 nd6log((LOG_INFO
, "nd6_ra_input: bogus mtu option "
368 "mtu=%d sent from %s, ignoring\n",
369 mtu
, ip6_sprintf(&ip6
->ip6_src
)));
375 if (mtu
<= ndi
->maxmtu
) {
376 int change
= (ndi
->linkmtu
!= mtu
);
379 if (change
) /* in6_maxmtu may change */
382 nd6log((LOG_INFO
, "nd6_ra_input: bogus mtu "
383 "mtu=%d sent from %s; "
384 "exceeds maxmtu %d, ignoring\n",
385 mtu
, ip6_sprintf(&ip6
->ip6_src
),
389 nd6log((LOG_INFO
, "nd6_ra_input: mtu option "
390 "mtu=%d sent from %s; maxmtu unknown, "
392 mtu
, ip6_sprintf(&ip6
->ip6_src
)));
405 if (ndopts
.nd_opts_src_lladdr
) {
406 lladdr
= (char *)(ndopts
.nd_opts_src_lladdr
+ 1);
407 lladdrlen
= ndopts
.nd_opts_src_lladdr
->nd_opt_len
<< 3;
410 if (lladdr
&& ((ifp
->if_addrlen
+ 2 + 7) & ~7) != lladdrlen
) {
412 "nd6_ra_input: lladdrlen mismatch for %s "
413 "(if %d, RA packet %d)\n",
414 ip6_sprintf(&saddr6
), ifp
->if_addrlen
, lladdrlen
- 2));
418 nd6_cache_lladdr(ifp
, &saddr6
, lladdr
, lladdrlen
, ND_ROUTER_ADVERT
, 0);
421 * Installing a link-layer address might change the state of the
422 * router's neighbor cache, which might also affect our on-link
423 * detection of adveritsed prefixes.
425 pfxlist_onlink_check();
433 icmp6stat
.icp6s_badra
++;
438 * default router list proccessing sub routines
441 /* tell the change to user processes watching the routing socket. */
447 struct rt_addrinfo info
;
449 bzero((caddr_t
)&info
, sizeof(info
));
450 info
.rti_info
[RTAX_DST
] = rt_key(rt
);
451 info
.rti_info
[RTAX_GATEWAY
] = rt
->rt_gateway
;
452 info
.rti_info
[RTAX_NETMASK
] = rt_mask(rt
);
453 info
.rti_info
[RTAX_IFP
] =
454 (struct sockaddr
*)TAILQ_FIRST(&rt
->rt_ifp
->if_addrlist
);
455 info
.rti_info
[RTAX_IFA
] = rt
->rt_ifa
->ifa_addr
;
457 rt_missmsg(cmd
, &info
, rt
->rt_flags
, 0);
461 defrouter_addreq(new)
462 struct nd_defrouter
*new;
464 struct sockaddr_in6 def
, mask
, gate
;
465 struct rtentry
*newrt
= NULL
;
468 Bzero(&def
, sizeof(def
));
469 Bzero(&mask
, sizeof(mask
));
470 Bzero(&gate
, sizeof(gate
));
472 def
.sin6_len
= mask
.sin6_len
= gate
.sin6_len
473 = sizeof(struct sockaddr_in6
);
474 def
.sin6_family
= mask
.sin6_family
= gate
.sin6_family
= AF_INET6
;
475 gate
.sin6_addr
= new->rtaddr
;
478 (void)rtrequest(RTM_ADD
, (struct sockaddr
*)&def
,
479 (struct sockaddr
*)&gate
, (struct sockaddr
*)&mask
,
480 RTF_GATEWAY
, &newrt
);
482 nd6_rtmsg(RTM_ADD
, newrt
); /* tell user process */
489 /* Add a route to a given interface as default */
491 defrouter_addifreq(ifp
)
494 struct sockaddr_in6 def
, mask
;
496 struct rtentry
*newrt
= NULL
;
499 bzero(&def
, sizeof(def
));
500 bzero(&mask
, sizeof(mask
));
502 def
.sin6_len
= mask
.sin6_len
= sizeof(struct sockaddr_in6
);
503 def
.sin6_family
= mask
.sin6_family
= AF_INET6
;
506 * Search for an ifaddr beloging to the specified interface.
507 * XXX: An IPv6 address are required to be assigned on the interface.
509 if ((ifa
= ifaof_ifpforaddr((struct sockaddr
*)&def
, ifp
)) == NULL
) {
510 nd6log((LOG_ERR
, /* better error? */
511 "defrouter_addifreq: failed to find an ifaddr "
512 "to install a route to interface %s\n",
517 flags
= ifa
->ifa_flags
;
518 error
= rtrequest(RTM_ADD
, (struct sockaddr
*)&def
, ifa
->ifa_addr
,
519 (struct sockaddr
*)&mask
, flags
, &newrt
);
522 "defrouter_addifreq: failed to install a route to "
523 "interface %s (errno = %d)\n",
524 if_name(ifp
), error
));
526 if (newrt
) /* maybe unnecessary, but do it for safety */
530 nd6_rtmsg(RTM_ADD
, newrt
);
533 in6_post_msg(ifp
, KEV_INET6_DEFROUTER
, &def
);
537 struct nd_defrouter
*
538 defrouter_lookup(addr
, ifp
)
539 struct in6_addr
*addr
;
542 struct nd_defrouter
*dr
;
544 for (dr
= TAILQ_FIRST(&nd_defrouter
); dr
;
545 dr
= TAILQ_NEXT(dr
, dr_entry
)) {
546 if (dr
->ifp
== ifp
&& IN6_ARE_ADDR_EQUAL(addr
, &dr
->rtaddr
))
550 return(NULL
); /* search failed */
554 defrouter_delreq(dr
, dofree
)
555 struct nd_defrouter
*dr
;
558 struct sockaddr_in6 def
, mask
, gate
;
559 struct rtentry
*oldrt
= NULL
;
561 Bzero(&def
, sizeof(def
));
562 Bzero(&mask
, sizeof(mask
));
563 Bzero(&gate
, sizeof(gate
));
565 def
.sin6_len
= mask
.sin6_len
= gate
.sin6_len
566 = sizeof(struct sockaddr_in6
);
567 def
.sin6_family
= mask
.sin6_family
= gate
.sin6_family
= AF_INET6
;
568 gate
.sin6_addr
= dr
->rtaddr
;
570 rtrequest(RTM_DELETE
, (struct sockaddr
*)&def
,
571 (struct sockaddr
*)&gate
,
572 (struct sockaddr
*)&mask
,
573 RTF_GATEWAY
, &oldrt
);
575 nd6_rtmsg(RTM_DELETE
, oldrt
);
576 if (oldrt
->rt_refcnt
<= 0) {
578 * XXX: borrowed from the RTM_DELETE case of
586 if (dofree
) /* XXX: necessary? */
592 struct nd_defrouter
*dr
;
594 struct nd_defrouter
*deldr
= NULL
;
595 struct nd_prefix
*pr
;
598 * Flush all the routing table entries that use the router
601 if (!ip6_forwarding
&& ip6_accept_rtadv
) {
602 /* above is a good condition? */
603 rt6_flush(&dr
->rtaddr
, dr
->ifp
);
606 if (dr
== TAILQ_FIRST(&nd_defrouter
))
607 deldr
= dr
; /* The router is primary. */
609 TAILQ_REMOVE(&nd_defrouter
, dr
, dr_entry
);
612 * Also delete all the pointers to the router in each prefix lists.
614 for (pr
= nd_prefix
.lh_first
; pr
; pr
= pr
->ndpr_next
) {
615 struct nd_pfxrouter
*pfxrtr
;
616 if ((pfxrtr
= pfxrtr_lookup(pr
, dr
)) != NULL
)
619 pfxlist_onlink_check();
622 * If the router is the primary one, choose a new one.
623 * Note that defrouter_select() will remove the current gateway
624 * from the routing table.
633 * Default Router Selection according to Section 6.3.6 of RFC 2461:
634 * 1) Routers that are reachable or probably reachable should be
636 * 2) When no routers on the list are known to be reachable or
637 * probably reachable, routers SHOULD be selected in a round-robin
639 * 3) If the Default Router List is empty, assume that all
640 * destinations are on-link.
646 struct nd_defrouter
*dr
, anydr
;
647 struct rtentry
*rt
= NULL
;
648 struct llinfo_nd6
*ln
= NULL
;
651 * Search for a (probably) reachable router from the list.
653 for (dr
= TAILQ_FIRST(&nd_defrouter
); dr
;
654 dr
= TAILQ_NEXT(dr
, dr_entry
)) {
655 if ((rt
= nd6_lookup(&dr
->rtaddr
, 0, dr
->ifp
)) &&
656 (ln
= (struct llinfo_nd6
*)rt
->rt_llinfo
) &&
657 ND6_IS_LLINFO_PROBREACH(ln
)) {
658 /* Got it, and move it to the head */
659 TAILQ_REMOVE(&nd_defrouter
, dr
, dr_entry
);
660 TAILQ_INSERT_HEAD(&nd_defrouter
, dr
, dr_entry
);
665 if ((dr
= TAILQ_FIRST(&nd_defrouter
))) {
667 * De-install the previous default gateway and install
669 * Note that if there is no reachable router in the list,
670 * the head entry will be used anyway.
671 * XXX: do we have to check the current routing table entry?
673 bzero(&anydr
, sizeof(anydr
));
674 defrouter_delreq(&anydr
, 0);
675 defrouter_addreq(dr
);
679 * The Default Router List is empty, so install the default
680 * route to an inteface.
681 * XXX: The specification does not say this mechanism should
682 * be restricted to hosts, but this would be not useful
683 * (even harmful) for routers.
685 if (!ip6_forwarding
) {
687 * De-install the current default route
690 bzero(&anydr
, sizeof(anydr
));
691 defrouter_delreq(&anydr
, 0);
694 * Install a route to the default interface
696 * XXX: we enable this for host only, because
697 * this may override a default route installed
698 * a user process (e.g. routing daemon) in a
701 defrouter_addifreq(nd6_defifp
);
703 nd6log((LOG_INFO
, "defrouter_select: "
704 "there's no default router and no default"
714 static struct nd_defrouter
*
715 defrtrlist_update(new)
716 struct nd_defrouter
*new;
718 struct nd_defrouter
*dr
, *n
;
721 if ((dr
= defrouter_lookup(&new->rtaddr
, new->ifp
)) != NULL
) {
723 if (new->rtlifetime
== 0) {
728 dr
->flags
= new->flags
; /* xxx flag check */
729 dr
->rtlifetime
= new->rtlifetime
;
730 dr
->expire
= new->expire
;
736 /* entry does not exist */
737 if (new->rtlifetime
== 0) {
742 n
= (struct nd_defrouter
*)_MALLOC(sizeof(*n
), M_IP6NDP
, M_NOWAIT
);
747 bzero(n
, sizeof(*n
));
751 * Insert the new router at the end of the Default Router List.
752 * If there is no other router, install it anyway. Otherwise,
753 * just continue to use the current default router.
755 TAILQ_INSERT_TAIL(&nd_defrouter
, n
, dr_entry
);
756 if (TAILQ_FIRST(&nd_defrouter
) == n
)
763 static struct nd_pfxrouter
*
764 pfxrtr_lookup(pr
, dr
)
765 struct nd_prefix
*pr
;
766 struct nd_defrouter
*dr
;
768 struct nd_pfxrouter
*search
;
770 for (search
= pr
->ndpr_advrtrs
.lh_first
; search
; search
= search
->pfr_next
) {
771 if (search
->router
== dr
)
780 struct nd_prefix
*pr
;
781 struct nd_defrouter
*dr
;
783 struct nd_pfxrouter
*new;
785 new = (struct nd_pfxrouter
*)_MALLOC(sizeof(*new), M_IP6NDP
, M_NOWAIT
);
788 bzero(new, sizeof(*new));
791 LIST_INSERT_HEAD(&pr
->ndpr_advrtrs
, new, pfr_entry
);
793 pfxlist_onlink_check();
798 struct nd_pfxrouter
*pfr
;
800 LIST_REMOVE(pfr
, pfr_entry
);
805 nd6_prefix_lookup(pr
)
806 struct nd_prefix
*pr
;
808 struct nd_prefix
*search
;
810 for (search
= nd_prefix
.lh_first
; search
; search
= search
->ndpr_next
) {
811 if (pr
->ndpr_ifp
== search
->ndpr_ifp
&&
812 pr
->ndpr_plen
== search
->ndpr_plen
&&
813 in6_are_prefix_equal(&pr
->ndpr_prefix
.sin6_addr
,
814 &search
->ndpr_prefix
.sin6_addr
,
825 nd6_prelist_add(pr
, dr
, newp
)
826 struct nd_prefix
*pr
, **newp
;
827 struct nd_defrouter
*dr
;
829 struct nd_prefix
*new = NULL
;
832 new = (struct nd_prefix
*)_MALLOC(sizeof(*new), M_IP6NDP
, M_NOWAIT
);
835 bzero(new, sizeof(*new));
841 LIST_INIT(&new->ndpr_advrtrs
);
842 in6_prefixlen2mask(&new->ndpr_mask
, new->ndpr_plen
);
843 /* make prefix in the canonical form */
844 for (i
= 0; i
< 4; i
++)
845 new->ndpr_prefix
.sin6_addr
.s6_addr32
[i
] &=
846 new->ndpr_mask
.s6_addr32
[i
];
849 /* link ndpr_entry to nd_prefix list */
850 LIST_INSERT_HEAD(&nd_prefix
, new, ndpr_entry
);
853 /* ND_OPT_PI_FLAG_ONLINK processing */
854 if (new->ndpr_raf_onlink
) {
857 if ((e
= nd6_prefix_onlink(new)) != 0) {
858 nd6log((LOG_ERR
, "nd6_prelist_add: failed to make "
859 "the prefix %s/%d on-link on %s (errno=%d)\n",
860 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
861 pr
->ndpr_plen
, if_name(pr
->ndpr_ifp
), e
));
862 /* proceed anyway. XXX: is it correct? */
875 struct nd_prefix
*pr
;
877 struct nd_pfxrouter
*pfr
, *next
;
880 /* make sure to invalidate the prefix until it is really freed. */
885 * Though these flags are now meaningless, we'd rather keep the value
886 * not to confuse users when executing "ndp -p".
888 pr
->ndpr_raf_onlink
= 0;
889 pr
->ndpr_raf_auto
= 0;
891 if ((pr
->ndpr_stateflags
& NDPRF_ONLINK
) != 0 &&
892 (e
= nd6_prefix_offlink(pr
)) != 0) {
893 nd6log((LOG_ERR
, "prelist_remove: failed to make %s/%d offlink "
895 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
896 pr
->ndpr_plen
, if_name(pr
->ndpr_ifp
), e
));
897 /* what should we do? */
900 if (pr
->ndpr_refcnt
> 0)
901 return; /* notice here? */
905 /* unlink ndpr_entry from nd_prefix list */
906 LIST_REMOVE(pr
, ndpr_entry
);
908 /* free list of routers that adversed the prefix */
909 for (pfr
= pr
->ndpr_advrtrs
.lh_first
; pfr
; pfr
= next
) {
910 next
= pfr
->pfr_next
;
918 pfxlist_onlink_check();
922 prelist_update(new, dr
, m
)
923 struct nd_prefix
*new;
924 struct nd_defrouter
*dr
; /* may be NULL */
927 struct in6_ifaddr
*ia6
= NULL
, *ia6_match
= NULL
;
929 struct ifnet
*ifp
= new->ndpr_ifp
;
930 struct nd_prefix
*pr
;
935 struct in6_addrlifetime lt6_tmp
;
940 * Authenticity for NA consists authentication for
941 * both IP header and IP datagrams, doesn't it ?
943 #if defined(M_AUTHIPHDR) && defined(M_AUTHIPDGM)
944 auth
= (m
->m_flags
& M_AUTHIPHDR
945 && m
->m_flags
& M_AUTHIPDGM
) ? 1 : 0;
950 if ((pr
= nd6_prefix_lookup(new)) != NULL
) {
952 * nd6_prefix_lookup() ensures that pr and new have the same
953 * prefix on a same interface.
957 * Update prefix information. Note that the on-link (L) bit
958 * and the autonomous (A) bit should NOT be changed from 1
961 if (new->ndpr_raf_onlink
== 1)
962 pr
->ndpr_raf_onlink
= 1;
963 if (new->ndpr_raf_auto
== 1)
964 pr
->ndpr_raf_auto
= 1;
965 if (new->ndpr_raf_onlink
) {
966 pr
->ndpr_vltime
= new->ndpr_vltime
;
967 pr
->ndpr_pltime
= new->ndpr_pltime
;
968 pr
->ndpr_preferred
= new->ndpr_preferred
;
969 pr
->ndpr_expire
= new->ndpr_expire
;
972 if (new->ndpr_raf_onlink
&&
973 (pr
->ndpr_stateflags
& NDPRF_ONLINK
) == 0) {
976 if ((e
= nd6_prefix_onlink(pr
)) != 0) {
978 "prelist_update: failed to make "
979 "the prefix %s/%d on-link on %s "
981 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
982 pr
->ndpr_plen
, if_name(pr
->ndpr_ifp
), e
));
983 /* proceed anyway. XXX: is it correct? */
987 if (dr
&& pfxrtr_lookup(pr
, dr
) == NULL
)
990 struct nd_prefix
*newpr
= NULL
;
994 if (new->ndpr_vltime
== 0)
996 if (new->ndpr_raf_onlink
== 0 && new->ndpr_raf_auto
== 0)
999 bzero(&new->ndpr_addr
, sizeof(struct in6_addr
));
1001 error
= nd6_prelist_add(new, dr
, &newpr
);
1002 if (error
!= 0 || newpr
== NULL
) {
1003 nd6log((LOG_NOTICE
, "prelist_update: "
1004 "nd6_prelist_add failed for %s/%d on %s "
1005 "errno=%d, returnpr=%p\n",
1006 ip6_sprintf(&new->ndpr_prefix
.sin6_addr
),
1007 new->ndpr_plen
, if_name(new->ndpr_ifp
),
1009 goto end
; /* we should just give up in this case. */
1013 * XXX: from the ND point of view, we can ignore a prefix
1014 * with the on-link bit being zero. However, we need a
1015 * prefix structure for references from autoconfigured
1016 * addresses. Thus, we explicitly make suret that the prefix
1017 * itself expires now.
1019 if (newpr
->ndpr_raf_onlink
== 0) {
1020 newpr
->ndpr_vltime
= 0;
1021 newpr
->ndpr_pltime
= 0;
1022 in6_init_prefix_ltimes(newpr
);
1029 * Address autoconfiguration based on Section 5.5.3 of RFC 2462.
1030 * Note that pr must be non NULL at this point.
1033 /* 5.5.3 (a). Ignore the prefix without the A bit set. */
1034 if (!new->ndpr_raf_auto
)
1038 * 5.5.3 (b). the link-local prefix should have been ignored in
1043 * 5.5.3 (c). Consistency check on lifetimes: pltime <= vltime.
1044 * This should have been done in nd6_ra_input.
1048 * 5.5.3 (d). If the prefix advertised does not match the prefix of an
1049 * address already in the list, and the Valid Lifetime is not 0,
1050 * form an address. Note that even a manually configured address
1051 * should reject autoconfiguration of a new address.
1053 TAILQ_FOREACH(ifa
, &ifp
->if_addrlist
, ifa_list
)
1055 struct in6_ifaddr
*ifa6
;
1057 u_int32_t storedlifetime
;
1059 if (ifa
->ifa_addr
->sa_family
!= AF_INET6
)
1062 ifa6
= (struct in6_ifaddr
*)ifa
;
1065 * Spec is not clear here, but I believe we should concentrate
1066 * on unicast (i.e. not anycast) addresses.
1067 * XXX: other ia6_flags? detached or duplicated?
1069 if ((ifa6
->ia6_flags
& IN6_IFF_ANYCAST
) != 0)
1072 ifa_plen
= in6_mask2len(&ifa6
->ia_prefixmask
.sin6_addr
, NULL
);
1073 if (ifa_plen
!= new->ndpr_plen
||
1074 !in6_are_prefix_equal(&ifa6
->ia_addr
.sin6_addr
,
1075 &new->ndpr_prefix
.sin6_addr
,
1079 if (ia6_match
== NULL
) /* remember the first one */
1082 if ((ifa6
->ia6_flags
& IN6_IFF_AUTOCONF
) == 0)
1086 * An already autoconfigured address matched. Now that we
1087 * are sure there is at least one matched address, we can
1088 * proceed to 5.5.3. (e): update the lifetimes according to the
1089 * "two hours" rule and the privacy extension.
1091 #define TWOHOUR (120*60)
1092 lt6_tmp
= ifa6
->ia6_lifetime
;
1094 storedlifetime
= IFA6_IS_INVALID(ifa6
) ? 0 :
1095 (lt6_tmp
.ia6t_expire
- time_second
);
1097 if (TWOHOUR
< new->ndpr_vltime
||
1098 storedlifetime
< new->ndpr_vltime
) {
1099 lt6_tmp
.ia6t_vltime
= new->ndpr_vltime
;
1100 } else if (storedlifetime
<= TWOHOUR
1103 * This condition is logically redundant, so we just
1105 * See IPng 6712, 6717, and 6721.
1107 && new->ndpr_vltime
<= storedlifetime
1111 lt6_tmp
.ia6t_vltime
= new->ndpr_vltime
;
1115 * new->ndpr_vltime <= TWOHOUR &&
1116 * TWOHOUR < storedlifetime
1118 lt6_tmp
.ia6t_vltime
= TWOHOUR
;
1121 /* The 2 hour rule is not imposed for preferred lifetime. */
1122 lt6_tmp
.ia6t_pltime
= new->ndpr_pltime
;
1124 in6_init_address_ltimes(pr
, <6_tmp
);
1127 * When adjusting the lifetimes of an existing temporary
1128 * address, only lower the lifetimes.
1129 * RFC 3041 3.3. (1).
1130 * XXX: how should we modify ia6t_[pv]ltime?
1132 if ((ifa6
->ia6_flags
& IN6_IFF_TEMPORARY
) != 0) {
1133 if (lt6_tmp
.ia6t_expire
== 0 || /* no expire */
1134 lt6_tmp
.ia6t_expire
>
1135 ifa6
->ia6_lifetime
.ia6t_expire
) {
1136 lt6_tmp
.ia6t_expire
=
1137 ifa6
->ia6_lifetime
.ia6t_expire
;
1139 if (lt6_tmp
.ia6t_preferred
== 0 || /* no expire */
1140 lt6_tmp
.ia6t_preferred
>
1141 ifa6
->ia6_lifetime
.ia6t_preferred
) {
1142 lt6_tmp
.ia6t_preferred
=
1143 ifa6
->ia6_lifetime
.ia6t_preferred
;
1147 ifa6
->ia6_lifetime
= lt6_tmp
;
1149 if (ia6_match
== NULL
&& new->ndpr_vltime
) {
1151 * No address matched and the valid lifetime is non-zero.
1152 * Create a new address.
1154 if ((ia6
= in6_ifadd(new, NULL
)) != NULL
) {
1156 * note that we should use pr (not new) for reference.
1162 /* XXXYYY Don't do this, according to Jinmei. */
1163 pr
->ndpr_addr
= new->ndpr_addr
;
1168 * When a new public address is created as described
1169 * in RFC2462, also create a new temporary address.
1172 * When an interface connects to a new link, a new
1173 * randomized interface identifier should be generated
1174 * immediately together with a new set of temporary
1175 * addresses. Thus, we specifiy 1 as the 2nd arg of
1178 if (ip6_use_tempaddr
) {
1180 if ((e
= in6_tmpifadd(ia6
, 1)) != 0) {
1181 nd6log((LOG_NOTICE
, "prelist_update: "
1182 "failed to create a temporary "
1183 "address, errno=%d\n",
1189 * A newly added address might affect the status
1190 * of other addresses, so we check and update it.
1191 * XXX: what if address duplication happens?
1193 pfxlist_onlink_check();
1195 /* just set an error. do not bark here. */
1196 error
= EADDRNOTAVAIL
; /* XXX: might be unused. */
1208 * A supplement function used in the on-link detection below;
1209 * detect if a given prefix has a (probably) reachable advertising router.
1210 * XXX: lengthy function name...
1212 static struct nd_pfxrouter
*
1213 find_pfxlist_reachable_router(pr
)
1214 struct nd_prefix
*pr
;
1216 struct nd_pfxrouter
*pfxrtr
;
1218 struct llinfo_nd6
*ln
;
1220 for (pfxrtr
= LIST_FIRST(&pr
->ndpr_advrtrs
); pfxrtr
;
1221 pfxrtr
= LIST_NEXT(pfxrtr
, pfr_entry
)) {
1222 if ((rt
= nd6_lookup(&pfxrtr
->router
->rtaddr
, 0,
1223 pfxrtr
->router
->ifp
)) &&
1224 (ln
= (struct llinfo_nd6
*)rt
->rt_llinfo
) &&
1225 ND6_IS_LLINFO_PROBREACH(ln
))
1234 * Check if each prefix in the prefix list has at least one available router
1235 * that advertised the prefix (a router is "available" if its neighbor cache
1236 * entry is reachable or probably reachable).
1237 * If the check fails, the prefix may be off-link, because, for example,
1238 * we have moved from the network but the lifetime of the prefix has not
1239 * expired yet. So we should not use the prefix if there is another prefix
1240 * that has an available router.
1241 * But, if there is no prefix that has an available router, we still regards
1242 * all the prefixes as on-link. This is because we can't tell if all the
1243 * routers are simply dead or if we really moved from the network and there
1244 * is no router around us.
1247 pfxlist_onlink_check()
1249 struct nd_prefix
*pr
;
1250 struct in6_ifaddr
*ifa
;
1253 * Check if there is a prefix that has a reachable advertising
1256 for (pr
= nd_prefix
.lh_first
; pr
; pr
= pr
->ndpr_next
) {
1257 if (pr
->ndpr_raf_onlink
&& find_pfxlist_reachable_router(pr
))
1263 * There is at least one prefix that has a reachable router.
1264 * Detach prefixes which have no reachable advertising
1265 * router, and attach other prefixes.
1267 for (pr
= nd_prefix
.lh_first
; pr
; pr
= pr
->ndpr_next
) {
1268 /* XXX: a link-local prefix should never be detached */
1269 if (IN6_IS_ADDR_LINKLOCAL(&pr
->ndpr_prefix
.sin6_addr
))
1273 * we aren't interested in prefixes without the L bit
1276 if (pr
->ndpr_raf_onlink
== 0)
1279 if ((pr
->ndpr_stateflags
& NDPRF_DETACHED
) == 0 &&
1280 find_pfxlist_reachable_router(pr
) == NULL
)
1281 pr
->ndpr_stateflags
|= NDPRF_DETACHED
;
1282 if ((pr
->ndpr_stateflags
& NDPRF_DETACHED
) != 0 &&
1283 find_pfxlist_reachable_router(pr
) != 0)
1284 pr
->ndpr_stateflags
&= ~NDPRF_DETACHED
;
1287 /* there is no prefix that has a reachable router */
1288 for (pr
= nd_prefix
.lh_first
; pr
; pr
= pr
->ndpr_next
) {
1289 if (IN6_IS_ADDR_LINKLOCAL(&pr
->ndpr_prefix
.sin6_addr
))
1292 if (pr
->ndpr_raf_onlink
== 0)
1295 if ((pr
->ndpr_stateflags
& NDPRF_DETACHED
) != 0)
1296 pr
->ndpr_stateflags
&= ~NDPRF_DETACHED
;
1301 * Remove each interface route associated with a (just) detached
1302 * prefix, and reinstall the interface route for a (just) attached
1303 * prefix. Note that all attempt of reinstallation does not
1304 * necessarily success, when a same prefix is shared among multiple
1305 * interfaces. Such cases will be handled in nd6_prefix_onlink,
1306 * so we don't have to care about them.
1308 for (pr
= nd_prefix
.lh_first
; pr
; pr
= pr
->ndpr_next
) {
1311 if (IN6_IS_ADDR_LINKLOCAL(&pr
->ndpr_prefix
.sin6_addr
))
1314 if (pr
->ndpr_raf_onlink
== 0)
1317 if ((pr
->ndpr_stateflags
& NDPRF_DETACHED
) != 0 &&
1318 (pr
->ndpr_stateflags
& NDPRF_ONLINK
) != 0) {
1319 if ((e
= nd6_prefix_offlink(pr
)) != 0) {
1321 "pfxlist_onlink_check: failed to "
1322 "make %s/%d offlink, errno=%d\n",
1323 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
1327 if ((pr
->ndpr_stateflags
& NDPRF_DETACHED
) == 0 &&
1328 (pr
->ndpr_stateflags
& NDPRF_ONLINK
) == 0 &&
1329 pr
->ndpr_raf_onlink
) {
1330 if ((e
= nd6_prefix_onlink(pr
)) != 0) {
1332 "pfxlist_onlink_check: failed to "
1333 "make %s/%d offlink, errno=%d\n",
1334 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
1341 * Changes on the prefix status might affect address status as well.
1342 * Make sure that all addresses derived from an attached prefix are
1343 * attached, and that all addresses derived from a detached prefix are
1344 * detached. Note, however, that a manually configured address should
1345 * always be attached.
1346 * The precise detection logic is same as the one for prefixes.
1348 for (ifa
= in6_ifaddr
; ifa
; ifa
= ifa
->ia_next
) {
1349 if ((ifa
->ia6_flags
& IN6_IFF_AUTOCONF
) == 0)
1352 if (ifa
->ia6_ndpr
== NULL
) {
1354 * This can happen when we first configure the address
1355 * (i.e. the address exists, but the prefix does not).
1356 * XXX: complicated relationships...
1361 if (find_pfxlist_reachable_router(ifa
->ia6_ndpr
))
1365 for (ifa
= in6_ifaddr
; ifa
; ifa
= ifa
->ia_next
) {
1366 if ((ifa
->ia6_flags
& IN6_IFF_AUTOCONF
) == 0)
1369 if (ifa
->ia6_ndpr
== NULL
) /* XXX: see above. */
1372 if (find_pfxlist_reachable_router(ifa
->ia6_ndpr
))
1373 ifa
->ia6_flags
&= ~IN6_IFF_DETACHED
;
1375 ifa
->ia6_flags
|= IN6_IFF_DETACHED
;
1379 for (ifa
= in6_ifaddr
; ifa
; ifa
= ifa
->ia_next
) {
1380 if ((ifa
->ia6_flags
& IN6_IFF_AUTOCONF
) == 0)
1383 ifa
->ia6_flags
&= ~IN6_IFF_DETACHED
;
1389 nd6_prefix_onlink(pr
)
1390 struct nd_prefix
*pr
;
1393 struct ifnet
*ifp
= pr
->ndpr_ifp
;
1394 struct sockaddr_in6 mask6
;
1395 struct nd_prefix
*opr
;
1398 struct rtentry
*rt
= NULL
;
1401 if ((pr
->ndpr_stateflags
& NDPRF_ONLINK
) != 0) {
1403 "nd6_prefix_onlink: %s/%d is already on-link\n",
1404 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
), pr
->ndpr_plen
);
1409 * Add the interface route associated with the prefix. Before
1410 * installing the route, check if there's the same prefix on another
1411 * interface, and the prefix has already installed the interface route.
1412 * Although such a configuration is expected to be rare, we explicitly
1415 for (opr
= nd_prefix
.lh_first
; opr
; opr
= opr
->ndpr_next
) {
1419 if ((opr
->ndpr_stateflags
& NDPRF_ONLINK
) == 0)
1422 if (opr
->ndpr_plen
== pr
->ndpr_plen
&&
1423 in6_are_prefix_equal(&pr
->ndpr_prefix
.sin6_addr
,
1424 &opr
->ndpr_prefix
.sin6_addr
,
1430 * We prefer link-local addresses as the associated interface address.
1432 /* search for a link-local addr */
1433 ifa
= (struct ifaddr
*)in6ifa_ifpforlinklocal(ifp
,
1437 /* XXX: freebsd does not have ifa_ifwithaf */
1438 TAILQ_FOREACH(ifa
, &ifp
->if_addrlist
, ifa_list
)
1440 if (ifa
->ifa_addr
->sa_family
== AF_INET6
)
1443 /* should we care about ia6_flags? */
1447 * This can still happen, when, for example, we receive an RA
1448 * containing a prefix with the L bit set and the A bit clear,
1449 * after removing all IPv6 addresses on the receiving
1450 * interface. This should, of course, be rare though.
1453 "nd6_prefix_onlink: failed to find any ifaddr"
1454 " to add route for a prefix(%s/%d) on %s\n",
1455 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
1456 pr
->ndpr_plen
, if_name(ifp
)));
1461 * in6_ifinit() sets nd6_rtrequest to ifa_rtrequest for all ifaddrs.
1462 * ifa->ifa_rtrequest = nd6_rtrequest;
1464 bzero(&mask6
, sizeof(mask6
));
1465 mask6
.sin6_len
= sizeof(mask6
);
1466 mask6
.sin6_addr
= pr
->ndpr_mask
;
1467 rtflags
= ifa
->ifa_flags
| RTF_CLONING
| RTF_UP
;
1468 if (nd6_need_cache(ifp
)) {
1469 /* explicitly set in case ifa_flags does not set the flag. */
1470 rtflags
|= RTF_CLONING
;
1473 * explicitly clear the cloning bit in case ifa_flags sets it.
1475 rtflags
&= ~RTF_CLONING
;
1477 error
= rtrequest(RTM_ADD
, (struct sockaddr
*)&pr
->ndpr_prefix
,
1478 ifa
->ifa_addr
, (struct sockaddr
*)&mask6
,
1481 if (rt
!= NULL
) /* this should be non NULL, though */
1482 nd6_rtmsg(RTM_ADD
, rt
);
1483 pr
->ndpr_stateflags
|= NDPRF_ONLINK
;
1486 nd6log((LOG_ERR
, "nd6_prefix_onlink: failed to add route for a"
1487 " prefix (%s/%d) on %s, gw=%s, mask=%s, flags=%lx "
1489 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
),
1490 pr
->ndpr_plen
, if_name(ifp
),
1491 ip6_sprintf(&((struct sockaddr_in6
*)ifa
->ifa_addr
)->sin6_addr
),
1492 ip6_sprintf(&mask6
.sin6_addr
), rtflags
, error
));
1502 nd6_prefix_offlink(pr
)
1503 struct nd_prefix
*pr
;
1506 struct ifnet
*ifp
= pr
->ndpr_ifp
;
1507 struct nd_prefix
*opr
;
1508 struct sockaddr_in6 sa6
, mask6
;
1509 struct rtentry
*rt
= NULL
;
1512 if ((pr
->ndpr_stateflags
& NDPRF_ONLINK
) == 0) {
1514 "nd6_prefix_offlink: %s/%d is already off-link\n",
1515 ip6_sprintf(&pr
->ndpr_prefix
.sin6_addr
), pr
->ndpr_plen
));
1519 bzero(&sa6
, sizeof(sa6
));
1520 sa6
.sin6_family
= AF_INET6
;
1521 sa6
.sin6_len
= sizeof(sa6
);
1522 bcopy(&pr
->ndpr_prefix
.sin6_addr
, &sa6
.sin6_addr
,
1523 sizeof(struct in6_addr
));
1524 bzero(&mask6
, sizeof(mask6
));
1525 mask6
.sin6_family
= AF_INET6
;
1526 mask6
.sin6_len
= sizeof(sa6
);
1527 bcopy(&pr
->ndpr_mask
, &mask6
.sin6_addr
, sizeof(struct in6_addr
));
1528 error
= rtrequest(RTM_DELETE
, (struct sockaddr
*)&sa6
, NULL
,
1529 (struct sockaddr
*)&mask6
, 0, &rt
);
1531 pr
->ndpr_stateflags
&= ~NDPRF_ONLINK
;
1533 /* report the route deletion to the routing socket. */
1535 nd6_rtmsg(RTM_DELETE
, rt
);
1538 * There might be the same prefix on another interface,
1539 * the prefix which could not be on-link just because we have
1540 * the interface route (see comments in nd6_prefix_onlink).
1541 * If there's one, try to make the prefix on-link on the
1544 for (opr
= nd_prefix
.lh_first
; opr
; opr
= opr
->ndpr_next
) {
1548 if ((opr
->ndpr_stateflags
& NDPRF_ONLINK
) != 0)
1552 * KAME specific: detached prefixes should not be
1555 if ((opr
->ndpr_stateflags
& NDPRF_DETACHED
) != 0)
1558 if (opr
->ndpr_plen
== pr
->ndpr_plen
&&
1559 in6_are_prefix_equal(&pr
->ndpr_prefix
.sin6_addr
,
1560 &opr
->ndpr_prefix
.sin6_addr
,
1564 if ((e
= nd6_prefix_onlink(opr
)) != 0) {
1566 "nd6_prefix_offlink: failed to "
1567 "recover a prefix %s/%d from %s "
1568 "to %s (errno = %d)\n",
1569 ip6_sprintf(&opr
->ndpr_prefix
.sin6_addr
),
1570 opr
->ndpr_plen
, if_name(ifp
),
1571 if_name(opr
->ndpr_ifp
), e
));
1577 /* XXX: can we still set the NDPRF_ONLINK flag? */
1579 "nd6_prefix_offlink: failed to delete route: "
1580 "%s/%d on %s (errno = %d)\n",
1581 ip6_sprintf(&sa6
.sin6_addr
), pr
->ndpr_plen
, if_name(ifp
),
1586 if (rt
->rt_refcnt
<= 0) {
1587 /* XXX: we should free the entry ourselves. */
1596 static struct in6_ifaddr
*
1598 struct nd_prefix
*pr
;
1599 struct in6_addr
*ifid
; /* Mobile IPv6 addition */
1601 struct ifnet
*ifp
= pr
->ndpr_ifp
;
1603 struct in6_aliasreq ifra
;
1604 struct in6_ifaddr
*ia
, *ib
;
1606 struct in6_addr mask
;
1607 int prefixlen
= pr
->ndpr_plen
;
1609 in6_len2mask(&mask
, prefixlen
);
1612 * find a link-local address (will be interface ID).
1613 * Is it really mandatory? Theoretically, a global or a site-local
1614 * address can be configured without a link-local address, if we
1615 * have a unique interface identifier...
1617 * it is not mandatory to have a link-local address, we can generate
1618 * interface identifier on the fly. we do this because:
1619 * (1) it should be the easiest way to find interface identifier.
1620 * (2) RFC2462 5.4 suggesting the use of the same interface identifier
1621 * for multiple addresses on a single interface, and possible shortcut
1622 * of DAD. we omitted DAD for this reason in the past.
1623 * (3) a user can prevent autoconfiguration of global address
1624 * by removing link-local address by hand (this is partly because we
1625 * don't have other way to control the use of IPv6 on a interface.
1626 * this has been our design choice - cf. NRL's "ifconfig auto").
1627 * (4) it is easier to manage when an interface has addresses
1628 * with the same interface identifier, than to have multiple addresses
1629 * with different interface identifiers.
1631 * Mobile IPv6 addition: allow for caller to specify a wished interface
1632 * ID. This is to not break connections when moving addresses between
1635 ifa
= (struct ifaddr
*)in6ifa_ifpforlinklocal(ifp
, 0);/* 0 is OK? */
1637 ib
= (struct in6_ifaddr
*)ifa
;
1641 #if 0 /* don't care link local addr state, and always do DAD */
1642 /* if link-local address is not eligible, do not autoconfigure. */
1643 if (((struct in6_ifaddr
*)ifa
)->ia6_flags
& IN6_IFF_NOTREADY
) {
1644 printf("in6_ifadd: link-local address not ready\n");
1649 /* prefixlen + ifidlen must be equal to 128 */
1650 plen0
= in6_mask2len(&ib
->ia_prefixmask
.sin6_addr
, NULL
);
1651 if (prefixlen
!= plen0
) {
1652 nd6log((LOG_INFO
, "in6_ifadd: wrong prefixlen for %s "
1653 "(prefix=%d ifid=%d)\n",
1654 if_name(ifp
), prefixlen
, 128 - plen0
));
1660 bzero(&ifra
, sizeof(ifra
));
1662 * in6_update_ifa() does not use ifra_name, but we accurately set it
1665 strncpy(ifra
.ifra_name
, if_name(ifp
), sizeof(ifra
.ifra_name
));
1666 ifra
.ifra_addr
.sin6_family
= AF_INET6
;
1667 ifra
.ifra_addr
.sin6_len
= sizeof(struct sockaddr_in6
);
1669 bcopy(&pr
->ndpr_prefix
.sin6_addr
, &ifra
.ifra_addr
.sin6_addr
,
1670 sizeof(ifra
.ifra_addr
.sin6_addr
));
1671 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[0] &= mask
.s6_addr32
[0];
1672 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[1] &= mask
.s6_addr32
[1];
1673 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[2] &= mask
.s6_addr32
[2];
1674 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[3] &= mask
.s6_addr32
[3];
1677 if (ifid
== NULL
|| IN6_IS_ADDR_UNSPECIFIED(ifid
))
1678 ifid
= &ib
->ia_addr
.sin6_addr
;
1679 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[0]
1680 |= (ifid
->s6_addr32
[0] & ~mask
.s6_addr32
[0]);
1681 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[1]
1682 |= (ifid
->s6_addr32
[1] & ~mask
.s6_addr32
[1]);
1683 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[2]
1684 |= (ifid
->s6_addr32
[2] & ~mask
.s6_addr32
[2]);
1685 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[3]
1686 |= (ifid
->s6_addr32
[3] & ~mask
.s6_addr32
[3]);
1688 /* new prefix mask. */
1689 ifra
.ifra_prefixmask
.sin6_len
= sizeof(struct sockaddr_in6
);
1690 ifra
.ifra_prefixmask
.sin6_family
= AF_INET6
;
1691 bcopy(&mask
, &ifra
.ifra_prefixmask
.sin6_addr
,
1692 sizeof(ifra
.ifra_prefixmask
.sin6_addr
));
1696 * XXX: in6_init_address_ltimes would override these values later.
1697 * We should reconsider this logic.
1699 ifra
.ifra_lifetime
.ia6t_vltime
= pr
->ndpr_vltime
;
1700 ifra
.ifra_lifetime
.ia6t_pltime
= pr
->ndpr_pltime
;
1702 /* XXX: scope zone ID? */
1704 ifra
.ifra_flags
|= IN6_IFF_AUTOCONF
; /* obey autoconf */
1706 * temporarily set the nopfx flag to avoid conflict.
1707 * XXX: we should reconsider the entire mechanism about prefix
1710 ifra
.ifra_flags
|= IN6_IFF_NOPFX
;
1713 * keep the new address, regardless of the result of in6_update_ifa.
1714 * XXX: this address is now meaningless.
1715 * We should reconsider its role.
1717 pr
->ndpr_addr
= ifra
.ifra_addr
.sin6_addr
;
1719 /* allocate ifaddr structure, link into chain, etc. */
1720 if ((error
= in6_update_ifa(ifp
, &ifra
, NULL
)) != 0) {
1722 "in6_ifadd: failed to make ifaddr %s on %s (errno=%d)\n",
1723 ip6_sprintf(&ifra
.ifra_addr
.sin6_addr
), if_name(ifp
),
1725 return(NULL
); /* ifaddr must not have been allocated. */
1728 ia
= in6ifa_ifpwithaddr(ifp
, &ifra
.ifra_addr
.sin6_addr
);
1730 in6_post_msg(ifp
, KEV_INET6_NEW_RTADV_ADDR
, ia
);
1732 return(ia
); /* this must NOT be NULL. */
1736 in6_tmpifadd(ia0
, forcegen
)
1737 const struct in6_ifaddr
*ia0
; /* corresponding public address */
1739 struct ifnet
*ifp
= ia0
->ia_ifa
.ifa_ifp
;
1740 struct in6_ifaddr
*newia
;
1741 struct in6_aliasreq ifra
;
1743 int trylimit
= 3; /* XXX: adhoc value */
1744 u_int32_t randid
[2];
1745 time_t vltime0
, pltime0
;
1747 bzero(&ifra
, sizeof(ifra
));
1748 strncpy(ifra
.ifra_name
, if_name(ifp
), sizeof(ifra
.ifra_name
));
1749 ifra
.ifra_addr
= ia0
->ia_addr
;
1750 /* copy prefix mask */
1751 ifra
.ifra_prefixmask
= ia0
->ia_prefixmask
;
1752 /* clear the old IFID */
1753 for (i
= 0; i
< 4; i
++) {
1754 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[i
]
1755 &= ifra
.ifra_prefixmask
.sin6_addr
.s6_addr32
[i
];
1759 in6_get_tmpifid(ifp
, (u_int8_t
*)randid
,
1760 (const u_int8_t
*)&ia0
->ia_addr
.sin6_addr
.s6_addr
[8],
1762 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[2]
1763 |= (randid
[0] & ~(ifra
.ifra_prefixmask
.sin6_addr
.s6_addr32
[2]));
1764 ifra
.ifra_addr
.sin6_addr
.s6_addr32
[3]
1765 |= (randid
[1] & ~(ifra
.ifra_prefixmask
.sin6_addr
.s6_addr32
[3]));
1768 * If by chance the new temporary address is the same as an address
1769 * already assigned to the interface, generate a new randomized
1770 * interface identifier and repeat this step.
1773 if (in6ifa_ifpwithaddr(ifp
, &ifra
.ifra_addr
.sin6_addr
) != NULL
) {
1774 if (trylimit
-- == 0) {
1775 nd6log((LOG_NOTICE
, "in6_tmpifadd: failed to find "
1776 "a unique random IFID\n"));
1784 * The Valid Lifetime is the lower of the Valid Lifetime of the
1785 * public address or TEMP_VALID_LIFETIME.
1786 * The Preferred Lifetime is the lower of the Preferred Lifetime
1787 * of the public address or TEMP_PREFERRED_LIFETIME -
1790 if (ia0
->ia6_lifetime
.ia6t_expire
!= 0) {
1791 vltime0
= IFA6_IS_INVALID(ia0
) ? 0 :
1792 (ia0
->ia6_lifetime
.ia6t_expire
- time_second
);
1793 if (vltime0
> ip6_temp_valid_lifetime
)
1794 vltime0
= ip6_temp_valid_lifetime
;
1796 vltime0
= ip6_temp_valid_lifetime
;
1797 if (ia0
->ia6_lifetime
.ia6t_preferred
!= 0) {
1798 pltime0
= IFA6_IS_DEPRECATED(ia0
) ? 0 :
1799 (ia0
->ia6_lifetime
.ia6t_preferred
- time_second
);
1800 if (pltime0
> ip6_temp_preferred_lifetime
- ip6_desync_factor
){
1801 pltime0
= ip6_temp_preferred_lifetime
-
1805 pltime0
= ip6_temp_preferred_lifetime
- ip6_desync_factor
;
1806 ifra
.ifra_lifetime
.ia6t_vltime
= vltime0
;
1807 ifra
.ifra_lifetime
.ia6t_pltime
= pltime0
;
1810 * A temporary address is created only if this calculated Preferred
1811 * Lifetime is greater than REGEN_ADVANCE time units.
1813 if (ifra
.ifra_lifetime
.ia6t_pltime
<= ip6_temp_regen_advance
)
1816 /* XXX: scope zone ID? */
1818 ifra
.ifra_flags
|= (IN6_IFF_AUTOCONF
|IN6_IFF_TEMPORARY
);
1820 /* allocate ifaddr structure, link into chain, etc. */
1821 if ((error
= in6_update_ifa(ifp
, &ifra
, NULL
)) != 0)
1824 newia
= in6ifa_ifpwithaddr(ifp
, &ifra
.ifra_addr
.sin6_addr
);
1825 if (newia
== NULL
) { /* XXX: can it happen? */
1827 "in6_tmpifadd: ifa update succeeded, but we got "
1829 return(EINVAL
); /* XXX */
1831 newia
->ia6_ndpr
= ia0
->ia6_ndpr
;
1832 newia
->ia6_ndpr
->ndpr_refcnt
++;
1838 in6_init_prefix_ltimes(struct nd_prefix
*ndpr
)
1840 /* check if preferred lifetime > valid lifetime. RFC2462 5.5.3 (c) */
1841 if (ndpr
->ndpr_pltime
> ndpr
->ndpr_vltime
) {
1842 nd6log((LOG_INFO
, "in6_init_prefix_ltimes: preferred lifetime"
1843 "(%d) is greater than valid lifetime(%d)\n",
1844 (u_int
)ndpr
->ndpr_pltime
, (u_int
)ndpr
->ndpr_vltime
));
1847 if (ndpr
->ndpr_pltime
== ND6_INFINITE_LIFETIME
)
1848 ndpr
->ndpr_preferred
= 0;
1850 ndpr
->ndpr_preferred
= time_second
+ ndpr
->ndpr_pltime
;
1851 if (ndpr
->ndpr_vltime
== ND6_INFINITE_LIFETIME
)
1852 ndpr
->ndpr_expire
= 0;
1854 ndpr
->ndpr_expire
= time_second
+ ndpr
->ndpr_vltime
;
1860 in6_init_address_ltimes(struct nd_prefix
*new, struct in6_addrlifetime
*lt6
)
1862 /* Valid lifetime must not be updated unless explicitly specified. */
1863 /* init ia6t_expire */
1864 if (lt6
->ia6t_vltime
== ND6_INFINITE_LIFETIME
)
1865 lt6
->ia6t_expire
= 0;
1867 lt6
->ia6t_expire
= time_second
;
1868 lt6
->ia6t_expire
+= lt6
->ia6t_vltime
;
1871 /* init ia6t_preferred */
1872 if (lt6
->ia6t_pltime
== ND6_INFINITE_LIFETIME
)
1873 lt6
->ia6t_preferred
= 0;
1875 lt6
->ia6t_preferred
= time_second
;
1876 lt6
->ia6t_preferred
+= lt6
->ia6t_pltime
;
1881 * Delete all the routing table entries that use the specified gateway.
1882 * XXX: this function causes search through all entries of routing table, so
1883 * it shouldn't be called when acting as a router.
1886 rt6_flush(gateway
, ifp
)
1887 struct in6_addr
*gateway
;
1890 struct radix_node_head
*rnh
= rt_tables
[AF_INET6
];
1893 /* We'll care only link-local addresses */
1894 if (!IN6_IS_ADDR_LINKLOCAL(gateway
)) {
1898 /* XXX: hack for KAME's link-local address kludge */
1899 gateway
->s6_addr16
[1] = htons(ifp
->if_index
);
1901 rnh
->rnh_walktree(rnh
, rt6_deleteroute
, (void *)gateway
);
1906 rt6_deleteroute(rn
, arg
)
1907 struct radix_node
*rn
;
1910 #define SIN6(s) ((struct sockaddr_in6 *)s)
1911 struct rtentry
*rt
= (struct rtentry
*)rn
;
1912 struct in6_addr
*gate
= (struct in6_addr
*)arg
;
1914 if (rt
->rt_gateway
== NULL
|| rt
->rt_gateway
->sa_family
!= AF_INET6
)
1917 if (!IN6_ARE_ADDR_EQUAL(gate
, &SIN6(rt
->rt_gateway
)->sin6_addr
))
1921 * Do not delete a static route.
1922 * XXX: this seems to be a bit ad-hoc. Should we consider the
1923 * 'cloned' bit instead?
1925 if ((rt
->rt_flags
& RTF_STATIC
) != 0)
1929 * We delete only host route. This means, in particular, we don't
1930 * delete default route.
1932 if ((rt
->rt_flags
& RTF_HOST
) == 0)
1935 return(rtrequest(RTM_DELETE
, rt_key(rt
),
1936 rt
->rt_gateway
, rt_mask(rt
), rt
->rt_flags
, 0));
1941 nd6_setdefaultiface(ifindex
)
1946 if (ifindex
< 0 || if_index
< ifindex
)
1949 if (nd6_defifindex
!= ifindex
) {
1950 nd6_defifindex
= ifindex
;
1951 if (nd6_defifindex
> 0)
1952 nd6_defifp
= ifindex2ifnet
[nd6_defifindex
];
1957 * If the Default Router List is empty, install a route
1958 * to the specified interface as default or remove the default
1959 * route when the default interface becomes canceled.
1960 * The check for the queue is actually redundant, but
1961 * we do this here to avoid re-install the default route
1962 * if the list is NOT empty.
1964 if (TAILQ_FIRST(&nd_defrouter
) == NULL
)
1968 * Our current implementation assumes one-to-one maping between
1969 * interfaces and links, so it would be natural to use the
1970 * default interface as the default link.
1972 scope6_setdefault(nd6_defifp
);