xref: /dragonfly/sys/netinet6/nd6_rtr.c (revision 783d47c4)
1 /*	$FreeBSD: src/sys/netinet6/nd6_rtr.c,v 1.2.2.5 2003/04/05 10:28:53 ume Exp $	*/
2 /*	$KAME: nd6_rtr.c,v 1.111 2001/04/27 01:37:15 jinmei Exp $	*/
3 
4 /*
5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the project nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #include "opt_inet.h"
34 #include "opt_inet6.h"
35 
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/malloc.h>
39 #include <sys/mbuf.h>
40 #include <sys/socket.h>
41 #include <sys/sockio.h>
42 #include <sys/time.h>
43 #include <sys/kernel.h>
44 #include <sys/errno.h>
45 #include <sys/syslog.h>
46 #include <sys/queue.h>
47 #include <sys/globaldata.h>
48 #include <sys/mutex.h>
49 
50 #include <sys/thread2.h>
51 #include <sys/mutex2.h>
52 
53 #include <net/if.h>
54 #include <net/if_types.h>
55 #include <net/if_dl.h>
56 #include <net/route.h>
57 #include <net/radix.h>
58 
59 #include <netinet/in.h>
60 #include <netinet6/in6_var.h>
61 #include <netinet6/in6_ifattach.h>
62 #include <netinet/ip6.h>
63 #include <netinet6/ip6_var.h>
64 #include <netinet6/nd6.h>
65 #include <netinet/icmp6.h>
66 #include <netinet6/scope6_var.h>
67 
68 #include <net/net_osdep.h>
69 
70 #define SDL(s)	((struct sockaddr_dl *)s)
71 
72 static struct nd_defrouter *defrtrlist_update (struct nd_defrouter *);
73 static struct in6_ifaddr *in6_ifadd (struct nd_prefix *,
74 	struct in6_addr *);
75 static struct nd_pfxrouter *pfxrtr_lookup (struct nd_prefix *,
76 	struct nd_defrouter *);
77 static void pfxrtr_add (struct nd_prefix *, struct nd_defrouter *);
78 static void pfxrtr_del (struct nd_pfxrouter *);
79 static struct nd_pfxrouter *find_pfxlist_reachable_router
80 	(struct nd_prefix *);
81 static void defrouter_addifreq (struct ifnet *);
82 
83 static void in6_init_address_ltimes (struct nd_prefix *ndpr,
84 					 struct in6_addrlifetime *lt6);
85 
86 static int rt6_deleteroute (struct radix_node *, void *);
87 
88 extern int nd6_recalc_reachtm_interval;
89 
90 static struct ifnet *nd6_defifp;
91 int nd6_defifindex;
92 
93 int ip6_use_tempaddr = 0;
94 
95 int ip6_desync_factor;
96 u_int32_t ip6_temp_preferred_lifetime = DEF_TEMP_PREFERRED_LIFETIME;
97 u_int32_t ip6_temp_valid_lifetime = DEF_TEMP_VALID_LIFETIME;
98 /*
99  * shorter lifetimes for debugging purposes.
100 int ip6_temp_preferred_lifetime = 800;
101 static int ip6_temp_valid_lifetime = 1800;
102 */
103 int ip6_temp_regen_advance = TEMPADDR_REGEN_ADVANCE;
104 
105 /*
106  * Receive Router Solicitation Message - just for routers.
107  * Router solicitation/advertisement is mostly managed by userland program
108  * (rtadvd) so here we have no function like nd6_ra_output().
109  *
110  * Based on RFC 2461
111  */
112 void
113 nd6_rs_input(struct mbuf *m, int off, int icmp6len)
114 {
115 	struct ifnet *ifp = m->m_pkthdr.rcvif;
116 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
117 	struct nd_router_solicit *nd_rs;
118 	struct in6_addr saddr6 = ip6->ip6_src;
119 #if 0
120 	struct in6_addr daddr6 = ip6->ip6_dst;
121 #endif
122 	char *lladdr = NULL;
123 	int lladdrlen = 0;
124 #if 0
125 	struct sockaddr_dl *sdl = NULL;
126 	struct llinfo_nd6 *ln = NULL;
127 	struct rtentry *rt = NULL;
128 	int is_newentry;
129 #endif
130 	union nd_opts ndopts;
131 
132 	/* If I'm not a router, ignore it. */
133 	if (ip6_accept_rtadv != 0 || ip6_forwarding != 1)
134 		goto freeit;
135 
136 	/* Sanity checks */
137 	if (ip6->ip6_hlim != 255) {
138 		nd6log((LOG_ERR,
139 		    "nd6_rs_input: invalid hlim (%d) from %s to %s on %s\n",
140 		    ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
141 		    ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
142 		goto bad;
143 	}
144 
145 	/*
146 	 * Don't update the neighbor cache, if src = ::.
147 	 * This indicates that the src has no IP address assigned yet.
148 	 */
149 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
150 		goto freeit;
151 
152 #ifndef PULLDOWN_TEST
153 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
154 	nd_rs = (struct nd_router_solicit *)((caddr_t)ip6 + off);
155 #else
156 	IP6_EXTHDR_GET(nd_rs, struct nd_router_solicit *, m, off, icmp6len);
157 	if (nd_rs == NULL) {
158 		icmp6stat.icp6s_tooshort++;
159 		return;
160 	}
161 #endif
162 
163 	icmp6len -= sizeof(*nd_rs);
164 	nd6_option_init(nd_rs + 1, icmp6len, &ndopts);
165 	if (nd6_options(&ndopts) < 0) {
166 		nd6log((LOG_INFO,
167 		    "nd6_rs_input: invalid ND option, ignored\n"));
168 		/* nd6_options have incremented stats */
169 		goto freeit;
170 	}
171 
172 	if (ndopts.nd_opts_src_lladdr) {
173 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
174 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
175 	}
176 
177 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
178 		nd6log((LOG_INFO,
179 		    "nd6_rs_input: lladdrlen mismatch for %s "
180 		    "(if %d, RS packet %d)\n",
181 			ip6_sprintf(&saddr6), ifp->if_addrlen, lladdrlen - 2));
182 		goto bad;
183 	}
184 
185 	nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_SOLICIT, 0);
186 
187 freeit:
188 	m_freem(m);
189 	return;
190 
191 bad:
192 	icmp6stat.icp6s_badrs++;
193 	m_freem(m);
194 }
195 
196 /*
197  * Receive Router Advertisement Message.
198  *
199  * Based on RFC 2461
200  * TODO: on-link bit on prefix information
201  * TODO: ND_RA_FLAG_{OTHER,MANAGED} processing
202  */
203 void
204 nd6_ra_input(struct mbuf *m, int off, int icmp6len)
205 {
206 	struct ifnet *ifp = m->m_pkthdr.rcvif;
207 	struct nd_ifinfo *ndi = ND_IFINFO(ifp);
208 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
209 	struct nd_router_advert *nd_ra;
210 	struct in6_addr saddr6 = ip6->ip6_src;
211 #if 0
212 	struct in6_addr daddr6 = ip6->ip6_dst;
213 	int flags; /* = nd_ra->nd_ra_flags_reserved; */
214 	int is_managed = ((flags & ND_RA_FLAG_MANAGED) != 0);
215 	int is_other = ((flags & ND_RA_FLAG_OTHER) != 0);
216 #endif
217 	union nd_opts ndopts;
218 	struct nd_defrouter *dr;
219 
220 	/*
221 	 * We only accept RAs only when
222 	 * the system-wide variable allows the acceptance, and
223 	 * per-interface variable allows RAs on the receiving interface.
224 	 */
225 	if (ip6_accept_rtadv == 0)
226 		goto freeit;
227 	if (!(ndi->flags & ND6_IFF_ACCEPT_RTADV))
228 		goto freeit;
229 
230 	if (ip6->ip6_hlim != 255) {
231 		nd6log((LOG_ERR,
232 		    "nd6_ra_input: invalid hlim (%d) from %s to %s on %s\n",
233 		    ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
234 		    ip6_sprintf(&ip6->ip6_dst), if_name(ifp)));
235 		goto bad;
236 	}
237 
238 	if (!IN6_IS_ADDR_LINKLOCAL(&saddr6)) {
239 		nd6log((LOG_ERR,
240 		    "nd6_ra_input: src %s is not link-local\n",
241 		    ip6_sprintf(&saddr6)));
242 		goto bad;
243 	}
244 
245 #ifndef PULLDOWN_TEST
246 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
247 	nd_ra = (struct nd_router_advert *)((caddr_t)ip6 + off);
248 #else
249 	IP6_EXTHDR_GET(nd_ra, struct nd_router_advert *, m, off, icmp6len);
250 	if (nd_ra == NULL) {
251 		icmp6stat.icp6s_tooshort++;
252 		return;
253 	}
254 #endif
255 
256 	icmp6len -= sizeof(*nd_ra);
257 	nd6_option_init(nd_ra + 1, icmp6len, &ndopts);
258 	if (nd6_options(&ndopts) < 0) {
259 		nd6log((LOG_INFO,
260 		    "nd6_ra_input: invalid ND option, ignored\n"));
261 		/* nd6_options have incremented stats */
262 		goto freeit;
263 	}
264 
265     {
266 	struct nd_defrouter dr0;
267 	u_int32_t advreachable = nd_ra->nd_ra_reachable;
268 
269 	dr0.rtaddr = saddr6;
270 	dr0.flags  = nd_ra->nd_ra_flags_reserved;
271 	dr0.rtlifetime = ntohs(nd_ra->nd_ra_router_lifetime);
272 	dr0.expire = time_second + dr0.rtlifetime;
273 	dr0.ifp = ifp;
274 	dr0.advint = 0;		/* Mobile IPv6 */
275 	dr0.advint_expire = 0;	/* Mobile IPv6 */
276 	dr0.advints_lost = 0;	/* Mobile IPv6 */
277 	/* unspecified or not? (RFC 2461 6.3.4) */
278 	if (advreachable) {
279 		advreachable = ntohl(advreachable);
280 		if (advreachable <= MAX_REACHABLE_TIME &&
281 		    ndi->basereachable != advreachable) {
282 			ndi->basereachable = advreachable;
283 			ndi->reachable = ND_COMPUTE_RTIME(ndi->basereachable);
284 			ndi->recalctm = nd6_recalc_reachtm_interval; /* reset */
285 		}
286 	}
287 	if (nd_ra->nd_ra_retransmit)
288 		ndi->retrans = ntohl(nd_ra->nd_ra_retransmit);
289 	if (nd_ra->nd_ra_curhoplimit)
290 		ndi->chlim = nd_ra->nd_ra_curhoplimit;
291 	dr = defrtrlist_update(&dr0);
292     }
293 
294 	/*
295 	 * prefix
296 	 */
297 	if (ndopts.nd_opts_pi) {
298 		struct nd_opt_hdr *pt;
299 		struct nd_opt_prefix_info *pi = NULL;
300 		struct nd_prefix pr;
301 
302 		for (pt = (struct nd_opt_hdr *)ndopts.nd_opts_pi;
303 		     pt <= (struct nd_opt_hdr *)ndopts.nd_opts_pi_end;
304 		     pt = (struct nd_opt_hdr *)((caddr_t)pt +
305 						(pt->nd_opt_len << 3))) {
306 			if (pt->nd_opt_type != ND_OPT_PREFIX_INFORMATION)
307 				continue;
308 			pi = (struct nd_opt_prefix_info *)pt;
309 
310 			if (pi->nd_opt_pi_len != 4) {
311 				nd6log((LOG_INFO,
312 				    "nd6_ra_input: invalid option "
313 				    "len %d for prefix information option, "
314 				    "ignored\n", pi->nd_opt_pi_len));
315 				continue;
316 			}
317 
318 			if (128 < pi->nd_opt_pi_prefix_len) {
319 				nd6log((LOG_INFO,
320 				    "nd6_ra_input: invalid prefix "
321 				    "len %d for prefix information option, "
322 				    "ignored\n", pi->nd_opt_pi_prefix_len));
323 				continue;
324 			}
325 
326 			if (IN6_IS_ADDR_MULTICAST(&pi->nd_opt_pi_prefix)
327 			 || IN6_IS_ADDR_LINKLOCAL(&pi->nd_opt_pi_prefix)) {
328 				nd6log((LOG_INFO,
329 				    "nd6_ra_input: invalid prefix "
330 				    "%s, ignored\n",
331 				    ip6_sprintf(&pi->nd_opt_pi_prefix)));
332 				continue;
333 			}
334 
335 			/* aggregatable unicast address, rfc2374 */
336 			if ((pi->nd_opt_pi_prefix.s6_addr8[0] & 0xe0) == 0x20
337 			 && pi->nd_opt_pi_prefix_len != 64) {
338 				nd6log((LOG_INFO,
339 				    "nd6_ra_input: invalid prefixlen "
340 				    "%d for rfc2374 prefix %s, ignored\n",
341 				    pi->nd_opt_pi_prefix_len,
342 				    ip6_sprintf(&pi->nd_opt_pi_prefix)));
343 				continue;
344 			}
345 
346 			bzero(&pr, sizeof(pr));
347 			pr.ndpr_prefix.sin6_family = AF_INET6;
348 			pr.ndpr_prefix.sin6_len = sizeof(pr.ndpr_prefix);
349 			pr.ndpr_prefix.sin6_addr = pi->nd_opt_pi_prefix;
350 			pr.ndpr_ifp = (struct ifnet *)m->m_pkthdr.rcvif;
351 
352 			pr.ndpr_raf_onlink = (pi->nd_opt_pi_flags_reserved &
353 					      ND_OPT_PI_FLAG_ONLINK) ? 1 : 0;
354 			pr.ndpr_raf_auto = (pi->nd_opt_pi_flags_reserved &
355 					    ND_OPT_PI_FLAG_AUTO) ? 1 : 0;
356 			pr.ndpr_plen = pi->nd_opt_pi_prefix_len;
357 			pr.ndpr_vltime = ntohl(pi->nd_opt_pi_valid_time);
358 			pr.ndpr_pltime =
359 				ntohl(pi->nd_opt_pi_preferred_time);
360 
361 			if (in6_init_prefix_ltimes(&pr))
362 				continue; /* prefix lifetime init failed */
363 
364 			prelist_update(&pr, dr, m);
365 		}
366 	}
367 
368 	/*
369 	 * MTU
370 	 */
371 	if (ndopts.nd_opts_mtu && ndopts.nd_opts_mtu->nd_opt_mtu_len == 1) {
372 		u_int32_t mtu = ntohl(ndopts.nd_opts_mtu->nd_opt_mtu_mtu);
373 
374 		/* lower bound */
375 		if (mtu < IPV6_MMTU) {
376 			nd6log((LOG_INFO, "nd6_ra_input: bogus mtu option "
377 			    "mtu=%d sent from %s, ignoring\n",
378 			    mtu, ip6_sprintf(&ip6->ip6_src)));
379 			goto skip;
380 		}
381 
382 		/* upper bound */
383 		if (ndi->maxmtu) {
384 			if (mtu <= ndi->maxmtu) {
385 				int change = (ndi->linkmtu != mtu);
386 
387 				ndi->linkmtu = mtu;
388 				if (change) /* in6_maxmtu may change */
389 					in6_setmaxmtu();
390 			} else {
391 				nd6log((LOG_INFO, "nd6_ra_input: bogus mtu "
392 				    "mtu=%d sent from %s; "
393 				    "exceeds maxmtu %d, ignoring\n",
394 				    mtu, ip6_sprintf(&ip6->ip6_src),
395 				    ndi->maxmtu));
396 			}
397 		} else {
398 			nd6log((LOG_INFO, "nd6_ra_input: mtu option "
399 			    "mtu=%d sent from %s; maxmtu unknown, "
400 			    "ignoring\n",
401 			    mtu, ip6_sprintf(&ip6->ip6_src)));
402 		}
403 	}
404 
405 skip:
406 
407 	/*
408 	 * Source link layer address
409 	 */
410     {
411 	char *lladdr = NULL;
412 	int lladdrlen = 0;
413 
414 	if (ndopts.nd_opts_src_lladdr) {
415 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
416 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
417 	}
418 
419 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
420 		nd6log((LOG_INFO,
421 		    "nd6_ra_input: lladdrlen mismatch for %s "
422 		    "(if %d, RA packet %d)\n",
423 			ip6_sprintf(&saddr6), ifp->if_addrlen, lladdrlen - 2));
424 		goto bad;
425 	}
426 
427 	nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_ADVERT, 0);
428 
429 	/*
430 	 * Installing a link-layer address might change the state of the
431 	 * router's neighbor cache, which might also affect our on-link
432 	 * detection of adveritsed prefixes.
433 	 */
434 	pfxlist_onlink_check();
435     }
436 
437 freeit:
438 	m_freem(m);
439 	return;
440 
441 bad:
442 	icmp6stat.icp6s_badra++;
443 	m_freem(m);
444 }
445 
446 /*
447  * default router list proccessing sub routines
448  */
449 
450 #if 0
451 /* tell the change to user processes watching the routing socket. */
452 static void
453 nd6_rtmsg(int cmd, struct rtentry *rt)
454 {
455 	struct rt_addrinfo info;
456 
457 	bzero((caddr_t)&info, sizeof(info));
458 	info.rti_info[RTAX_DST] = rt_key(rt);
459 	info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
460 	info.rti_info[RTAX_NETMASK] = rt_mask(rt);
461 	if (TAILQ_EMPTY(&rt->rt_ifp->if_addrheads[mycpuid])) {
462 		info.rti_info[RTAX_IFP] = NULL;
463 	} else {
464 		info.rti_info[RTAX_IFP] =
465 		(struct sockaddr *)
466 		TAILQ_FIRST(&rt->rt_ifp->if_addrheads[mycpuid])->ifa;
467 	}
468 	info.rti_info[RTAX_IFA] = rt->rt_ifa->ifa_addr;
469 
470 	rt_missmsg(cmd, &info, rt->rt_flags, 0);
471 }
472 #endif
473 
474 void
475 defrouter_addreq(struct nd_defrouter *new)
476 {
477 	struct sockaddr_in6 def, mask, gate;
478 
479 	bzero(&def, sizeof(def));
480 	bzero(&mask, sizeof(mask));
481 	bzero(&gate, sizeof(gate));
482 
483 	def.sin6_len = mask.sin6_len = gate.sin6_len
484 		= sizeof(struct sockaddr_in6);
485 	def.sin6_family = mask.sin6_family = gate.sin6_family = AF_INET6;
486 	gate.sin6_addr = new->rtaddr;
487 
488 	rtrequest_global(RTM_ADD, (struct sockaddr *)&def,
489 			 (struct sockaddr *)&gate, (struct sockaddr *)&mask,
490 			 RTF_GATEWAY);
491 	return;
492 }
493 
494 /* Add a route to a given interface as default */
495 void
496 defrouter_addifreq(struct ifnet *ifp)
497 {
498 	struct sockaddr_in6 def, mask;
499 	struct ifaddr *ifa;
500 	int error, flags;
501 
502 	bzero(&def, sizeof(def));
503 	bzero(&mask, sizeof(mask));
504 
505 	def.sin6_len = mask.sin6_len = sizeof(struct sockaddr_in6);
506 	def.sin6_family = mask.sin6_family = AF_INET6;
507 
508 	/*
509 	 * Search for an ifaddr beloging to the specified interface.
510 	 * XXX: An IPv6 address are required to be assigned on the interface.
511 	 */
512 	if ((ifa = ifaof_ifpforaddr((struct sockaddr *)&def, ifp)) == NULL) {
513 		nd6log((LOG_ERR,	/* better error? */
514 		    "defrouter_addifreq: failed to find an ifaddr "
515 		    "to install a route to interface %s\n",
516 		    if_name(ifp)));
517 		return;
518 	}
519 
520 	flags = ifa->ifa_flags;
521 	error = rtrequest_global(RTM_ADD,
522 				 (struct sockaddr *)&def,
523 				 ifa->ifa_addr,
524 				 (struct sockaddr *)&mask,
525 				 flags);
526 	if (error != 0) {
527 		nd6log((LOG_ERR,
528 		    "defrouter_addifreq: failed to install a route to "
529 		    "interface %s (errno = %d)\n",
530 		    if_name(ifp), error));
531 	}
532 }
533 
534 struct nd_defrouter *
535 defrouter_lookup(struct in6_addr *addr, struct ifnet *ifp)
536 {
537 	struct nd_defrouter *dr;
538 
539 	for (dr = TAILQ_FIRST(&nd_defrouter); dr;
540 	     dr = TAILQ_NEXT(dr, dr_entry)) {
541 		if (dr->ifp == ifp && IN6_ARE_ADDR_EQUAL(addr, &dr->rtaddr))
542 			return (dr);
543 	}
544 
545 	return (NULL);		/* search failed */
546 }
547 
548 void
549 defrouter_delreq(struct nd_defrouter *dr, int dofree)
550 {
551 	struct sockaddr_in6 def, mask, gate;
552 
553 	bzero(&def, sizeof(def));
554 	bzero(&mask, sizeof(mask));
555 	bzero(&gate, sizeof(gate));
556 
557 	def.sin6_len = mask.sin6_len = gate.sin6_len
558 		= sizeof(struct sockaddr_in6);
559 	def.sin6_family = mask.sin6_family = gate.sin6_family = AF_INET6;
560 	gate.sin6_addr = dr->rtaddr;
561 
562 	rtrequest_global(RTM_DELETE,
563 			 (struct sockaddr *)&def,
564 			 (struct sockaddr *)&gate,
565 			 (struct sockaddr *)&mask,
566 			 RTF_GATEWAY);
567 	if (dofree)		/* XXX: necessary? */
568 		kfree(dr, M_IP6NDP);
569 }
570 
571 void
572 defrtrlist_del(struct nd_defrouter *dr)
573 {
574 	struct nd_defrouter *deldr = NULL;
575 	struct nd_prefix *pr;
576 
577 	/*
578 	 * Flush all the routing table entries that use the router
579 	 * as a next hop.
580 	 */
581 	if (!ip6_forwarding && ip6_accept_rtadv) {
582 		/* above is a good condition? */
583 		rt6_flush(&dr->rtaddr, dr->ifp);
584 	}
585 
586 	if (dr == TAILQ_FIRST(&nd_defrouter))
587 		deldr = dr;	/* The router is primary. */
588 
589 	TAILQ_REMOVE(&nd_defrouter, dr, dr_entry);
590 
591 	/*
592 	 * Also delete all the pointers to the router in each prefix lists.
593 	 */
594 	for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
595 		struct nd_pfxrouter *pfxrtr;
596 		if ((pfxrtr = pfxrtr_lookup(pr, dr)) != NULL)
597 			pfxrtr_del(pfxrtr);
598 	}
599 	pfxlist_onlink_check();
600 
601 	/*
602 	 * If the router is the primary one, choose a new one.
603 	 * Note that defrouter_select() will remove the current gateway
604 	 * from the routing table.
605 	 */
606 	if (deldr)
607 		defrouter_select();
608 
609 	kfree(dr, M_IP6NDP);
610 }
611 
612 /*
613  * Default Router Selection according to Section 6.3.6 of RFC 2461:
614  * 1) Routers that are reachable or probably reachable should be
615  *    preferred.
616  * 2) When no routers on the list are known to be reachable or
617  *    probably reachable, routers SHOULD be selected in a round-robin
618  *    fashion.
619  * 3) If the Default Router List is empty, assume that all
620  *    destinations are on-link.
621  */
622 void
623 defrouter_select(void)
624 {
625 	struct nd_defrouter *dr, anydr;
626 	struct rtentry *rt = NULL;
627 	struct llinfo_nd6 *ln = NULL;
628 
629 	mtx_lock(&nd6_mtx);
630 
631 	/*
632 	 * Search for a (probably) reachable router from the list.
633 	 */
634 	for (dr = TAILQ_FIRST(&nd_defrouter); dr;
635 	     dr = TAILQ_NEXT(dr, dr_entry)) {
636 		if ((rt = nd6_lookup(&dr->rtaddr, 0, dr->ifp)) &&
637 		    (ln = (struct llinfo_nd6 *)rt->rt_llinfo) &&
638 		    ND6_IS_LLINFO_PROBREACH(ln)) {
639 			/* Got it, and move it to the head */
640 			TAILQ_REMOVE(&nd_defrouter, dr, dr_entry);
641 			TAILQ_INSERT_HEAD(&nd_defrouter, dr, dr_entry);
642 			break;
643 		}
644 	}
645 
646 	if ((dr = TAILQ_FIRST(&nd_defrouter))) {
647 		/*
648 		 * De-install the previous default gateway and install
649 		 * a new one.
650 		 * Note that if there is no reachable router in the list,
651 		 * the head entry will be used anyway.
652 		 * XXX: do we have to check the current routing table entry?
653 		 */
654 		bzero(&anydr, sizeof(anydr));
655 		defrouter_delreq(&anydr, 0);
656 		defrouter_addreq(dr);
657 	}
658 	else {
659 		/*
660 		 * The Default Router List is empty, so install the default
661 		 * route to an inteface.
662 		 * XXX: The specification does not say this mechanism should
663 		 * be restricted to hosts, but this would be not useful
664 		 * (even harmful) for routers.
665 		 */
666 		if (!ip6_forwarding) {
667 			/*
668 			 * De-install the current default route
669 			 * in advance.
670 			 */
671 			bzero(&anydr, sizeof(anydr));
672 			defrouter_delreq(&anydr, 0);
673 			if (nd6_defifp) {
674 				/*
675 				 * Install a route to the default interface
676 				 * as default route.
677 				 * XXX: we enable this for host only, because
678 				 * this may override a default route installed
679 				 * a user process (e.g. routing daemon) in a
680 				 * router case.
681 				 */
682 				defrouter_addifreq(nd6_defifp);
683 			} else {
684 				nd6log((LOG_INFO, "defrouter_select: "
685 				    "there's no default router and no default"
686 				    " interface\n"));
687 			}
688 		}
689 	}
690 	mtx_unlock(&nd6_mtx);
691 	return;
692 }
693 
694 static struct nd_defrouter *
695 defrtrlist_update(struct nd_defrouter *new)
696 {
697 	struct nd_defrouter *dr, *n;
698 
699 	mtx_lock(&nd6_mtx);
700 
701 	if ((dr = defrouter_lookup(&new->rtaddr, new->ifp)) != NULL) {
702 		/* entry exists */
703 		if (new->rtlifetime == 0) {
704 			defrtrlist_del(dr);
705 			dr = NULL;
706 		} else {
707 			/* override */
708 			dr->flags = new->flags; /* xxx flag check */
709 			dr->rtlifetime = new->rtlifetime;
710 			dr->expire = new->expire;
711 		}
712 		mtx_unlock(&nd6_mtx);
713 		return (dr);
714 	}
715 
716 	/* entry does not exist */
717 	if (new->rtlifetime == 0) {
718 		mtx_unlock(&nd6_mtx);
719 		return (NULL);
720 	}
721 
722 	n = (struct nd_defrouter *)kmalloc(sizeof(*n), M_IP6NDP,
723 	    M_NOWAIT | M_ZERO);
724 	if (n == NULL) {
725 		mtx_unlock(&nd6_mtx);
726 		return (NULL);
727 	}
728 	*n = *new;
729 
730 	/*
731 	 * Insert the new router at the end of the Default Router List.
732 	 * If there is no other router, install it anyway. Otherwise,
733 	 * just continue to use the current default router.
734 	 */
735 	TAILQ_INSERT_TAIL(&nd_defrouter, n, dr_entry);
736 	if (TAILQ_FIRST(&nd_defrouter) == n)
737 		defrouter_select();
738 	mtx_unlock(&nd6_mtx);
739 	return (n);
740 }
741 
742 static struct nd_pfxrouter *
743 pfxrtr_lookup(struct nd_prefix *pr, struct nd_defrouter *dr)
744 {
745 	struct nd_pfxrouter *search;
746 
747 	for (search = pr->ndpr_advrtrs.lh_first; search; search = search->pfr_next) {
748 		if (search->router == dr)
749 			break;
750 	}
751 
752 	return (search);
753 }
754 
755 static void
756 pfxrtr_add(struct nd_prefix *pr, struct nd_defrouter *dr)
757 {
758 	struct nd_pfxrouter *new;
759 
760 	new = (struct nd_pfxrouter *)kmalloc(sizeof(*new), M_IP6NDP,
761 	    M_NOWAIT | M_ZERO);
762 	if (new == NULL)
763 		return;
764 	new->router = dr;
765 
766 	LIST_INSERT_HEAD(&pr->ndpr_advrtrs, new, pfr_entry);
767 
768 	pfxlist_onlink_check();
769 }
770 
771 static void
772 pfxrtr_del(struct nd_pfxrouter *pfr)
773 {
774 	LIST_REMOVE(pfr, pfr_entry);
775 	kfree(pfr, M_IP6NDP);
776 }
777 
778 struct nd_prefix *
779 nd6_prefix_lookup(struct nd_prefix *pr)
780 {
781 	struct nd_prefix *search;
782 
783 	for (search = nd_prefix.lh_first; search; search = search->ndpr_next) {
784 		if (pr->ndpr_ifp == search->ndpr_ifp &&
785 		    pr->ndpr_plen == search->ndpr_plen &&
786 		    in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
787 					 &search->ndpr_prefix.sin6_addr,
788 					 pr->ndpr_plen)
789 		    ) {
790 			break;
791 		}
792 	}
793 
794 	return (search);
795 }
796 
797 int
798 nd6_prelist_add(struct nd_prefix *pr, struct nd_defrouter *dr,
799 		struct nd_prefix **newp)
800 {
801 	struct nd_prefix *new = NULL;
802 	int i;
803 
804 	new = (struct nd_prefix *)kmalloc(sizeof(*new), M_IP6NDP,
805 	    M_NOWAIT | M_ZERO);
806 	if (new == NULL)
807 		return ENOMEM;
808 	*new = *pr;
809 	if (newp != NULL)
810 		*newp = new;
811 
812 	/* initilization */
813 	LIST_INIT(&new->ndpr_advrtrs);
814 	in6_prefixlen2mask(&new->ndpr_mask, new->ndpr_plen);
815 	/* make prefix in the canonical form */
816 	for (i = 0; i < 4; i++)
817 		new->ndpr_prefix.sin6_addr.s6_addr32[i] &=
818 			new->ndpr_mask.s6_addr32[i];
819 
820 	mtx_lock(&nd6_mtx);
821 	/* link ndpr_entry to nd_prefix list */
822 	LIST_INSERT_HEAD(&nd_prefix, new, ndpr_entry);
823 	mtx_unlock(&nd6_mtx);
824 
825 	/* ND_OPT_PI_FLAG_ONLINK processing */
826 	if (new->ndpr_raf_onlink) {
827 		int e;
828 
829 		if ((e = nd6_prefix_onlink(new)) != 0) {
830 			nd6log((LOG_ERR, "nd6_prelist_add: failed to make "
831 			    "the prefix %s/%d on-link on %s (errno=%d)\n",
832 			    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
833 			    pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
834 			/* proceed anyway. XXX: is it correct? */
835 		}
836 	}
837 
838 	if (dr) {
839 		pfxrtr_add(new, dr);
840 	}
841 
842 	return 0;
843 }
844 
845 void
846 prelist_remove(struct nd_prefix *pr)
847 {
848 	struct nd_pfxrouter *pfr, *next;
849 	int e;
850 
851 	/* make sure to invalidate the prefix until it is really freed. */
852 	pr->ndpr_vltime = 0;
853 	pr->ndpr_pltime = 0;
854 #if 0
855 	/*
856 	 * Though these flags are now meaningless, we'd rather keep the value
857 	 * not to confuse users when executing "ndp -p".
858 	 */
859 	pr->ndpr_raf_onlink = 0;
860 	pr->ndpr_raf_auto = 0;
861 #endif
862 	if ((pr->ndpr_stateflags & NDPRF_ONLINK) &&
863 	    (e = nd6_prefix_offlink(pr)) != 0) {
864 		nd6log((LOG_ERR, "prelist_remove: failed to make %s/%d offlink "
865 		    "on %s, errno=%d\n",
866 		    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
867 		    pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
868 		/* what should we do? */
869 	}
870 
871 	if (pr->ndpr_refcnt > 0)
872 		return;		/* notice here? */
873 
874 	mtx_lock(&nd6_mtx);
875 
876 	/* unlink ndpr_entry from nd_prefix list */
877 	LIST_REMOVE(pr, ndpr_entry);
878 
879 	/* free list of routers that adversed the prefix */
880 	for (pfr = pr->ndpr_advrtrs.lh_first; pfr; pfr = next) {
881 		next = pfr->pfr_next;
882 
883 		kfree(pfr, M_IP6NDP);
884 	}
885 	mtx_unlock(&nd6_mtx);
886 
887 	kfree(pr, M_IP6NDP);
888 
889 	pfxlist_onlink_check();
890 }
891 
892 /*
893  * Parameters:
894  *	dr:	may be NULL
895  */
896 int
897 prelist_update(struct nd_prefix *new, struct nd_defrouter *dr, struct mbuf *m)
898 {
899 	struct in6_ifaddr *ia6 = NULL, *ia6_match = NULL;
900 	struct ifaddr_container *ifac;
901 	struct ifnet *ifp = new->ndpr_ifp;
902 	struct nd_prefix *pr;
903 	int error = 0;
904 	int newprefix = 0;
905 	int auth;
906 	struct in6_addrlifetime lt6_tmp;
907 
908 	auth = 0;
909 	mtx_lock(&nd6_mtx);
910 	if (m) {
911 		/*
912 		 * Authenticity for NA consists authentication for
913 		 * both IP header and IP datagrams, doesn't it ?
914 		 */
915 #if defined(M_AUTHIPHDR) && defined(M_AUTHIPDGM)
916 		auth = (m->m_flags & M_AUTHIPHDR
917 		     && m->m_flags & M_AUTHIPDGM) ? 1 : 0;
918 #endif
919 	}
920 
921 
922 	if ((pr = nd6_prefix_lookup(new)) != NULL) {
923 		/*
924 		 * nd6_prefix_lookup() ensures that pr and new have the same
925 		 * prefix on a same interface.
926 		 */
927 
928 		/*
929 		 * Update prefix information.  Note that the on-link (L) bit
930 		 * and the autonomous (A) bit should NOT be changed from 1
931 		 * to 0.
932 		 */
933 		if (new->ndpr_raf_onlink == 1)
934 			pr->ndpr_raf_onlink = 1;
935 		if (new->ndpr_raf_auto == 1)
936 			pr->ndpr_raf_auto = 1;
937 		if (new->ndpr_raf_onlink) {
938 			pr->ndpr_vltime = new->ndpr_vltime;
939 			pr->ndpr_pltime = new->ndpr_pltime;
940 			pr->ndpr_preferred = new->ndpr_preferred;
941 			pr->ndpr_expire = new->ndpr_expire;
942 		}
943 
944 		if (new->ndpr_raf_onlink &&
945 		    !(pr->ndpr_stateflags & NDPRF_ONLINK)) {
946 			int e;
947 
948 			if ((e = nd6_prefix_onlink(pr)) != 0) {
949 				nd6log((LOG_ERR,
950 				    "prelist_update: failed to make "
951 				    "the prefix %s/%d on-link on %s "
952 				    "(errno=%d)\n",
953 				    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
954 				    pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
955 				/* proceed anyway. XXX: is it correct? */
956 			}
957 		}
958 
959 		if (dr && pfxrtr_lookup(pr, dr) == NULL)
960 			pfxrtr_add(pr, dr);
961 	} else {
962 		struct nd_prefix *newpr = NULL;
963 
964 		newprefix = 1;
965 
966 		if (new->ndpr_vltime == 0)
967 			goto end;
968 		if (new->ndpr_raf_onlink == 0 && new->ndpr_raf_auto == 0)
969 			goto end;
970 
971 		bzero(&new->ndpr_addr, sizeof(struct in6_addr));
972 
973 		error = nd6_prelist_add(new, dr, &newpr);
974 		if (error != 0 || newpr == NULL) {
975 			nd6log((LOG_NOTICE, "prelist_update: "
976 			    "nd6_prelist_add failed for %s/%d on %s "
977 			    "errno=%d, returnpr=%p\n",
978 			    ip6_sprintf(&new->ndpr_prefix.sin6_addr),
979 					new->ndpr_plen, if_name(new->ndpr_ifp),
980 					error, newpr));
981 			goto end; /* we should just give up in this case. */
982 		}
983 
984 		/*
985 		 * XXX: from the ND point of view, we can ignore a prefix
986 		 * with the on-link bit being zero.  However, we need a
987 		 * prefix structure for references from autoconfigured
988 		 * addresses.  Thus, we explicitly make suret that the prefix
989 		 * itself expires now.
990 		 */
991 		if (newpr->ndpr_raf_onlink == 0) {
992 			newpr->ndpr_vltime = 0;
993 			newpr->ndpr_pltime = 0;
994 			in6_init_prefix_ltimes(newpr);
995 		}
996 
997 		pr = newpr;
998 	}
999 
1000 	/*
1001 	 * Address autoconfiguration based on Section 5.5.3 of RFC 2462.
1002 	 * Note that pr must be non NULL at this point.
1003 	 */
1004 
1005 	/* 5.5.3 (a). Ignore the prefix without the A bit set. */
1006 	if (!new->ndpr_raf_auto)
1007 		goto afteraddrconf;
1008 
1009 	/*
1010 	 * 5.5.3 (b). the link-local prefix should have been ignored in
1011 	 * nd6_ra_input.
1012 	 */
1013 
1014 	/*
1015 	 * 5.5.3 (c). Consistency check on lifetimes: pltime <= vltime.
1016 	 * This should have been done in nd6_ra_input.
1017 	 */
1018 
1019  	/*
1020 	 * 5.5.3 (d). If the prefix advertised does not match the prefix of an
1021 	 * address already in the list, and the Valid Lifetime is not 0,
1022 	 * form an address.  Note that even a manually configured address
1023 	 * should reject autoconfiguration of a new address.
1024 	 */
1025 	TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1026 		struct ifaddr *ifa = ifac->ifa;
1027 		struct in6_ifaddr *ifa6;
1028 		int ifa_plen;
1029 		u_int32_t storedlifetime;
1030 
1031 		if (ifa->ifa_addr->sa_family != AF_INET6)
1032 			continue;
1033 
1034 		ifa6 = (struct in6_ifaddr *)ifa;
1035 
1036 		/*
1037 		 * Spec is not clear here, but I believe we should concentrate
1038 		 * on unicast (i.e. not anycast) addresses.
1039 		 * XXX: other ia6_flags? detached or duplicated?
1040 		 */
1041 		if (ifa6->ia6_flags & IN6_IFF_ANYCAST)
1042 			continue;
1043 
1044 		ifa_plen = in6_mask2len(&ifa6->ia_prefixmask.sin6_addr, NULL);
1045 		if (ifa_plen != new->ndpr_plen ||
1046 		    !in6_are_prefix_equal(&ifa6->ia_addr.sin6_addr,
1047 					  &new->ndpr_prefix.sin6_addr,
1048 					  ifa_plen))
1049 			continue;
1050 
1051 		if (ia6_match == NULL) /* remember the first one */
1052 			ia6_match = ifa6;
1053 
1054 		if (!(ifa6->ia6_flags & IN6_IFF_AUTOCONF))
1055 			continue;
1056 
1057 		/*
1058 		 * An already autoconfigured address matched.  Now that we
1059 		 * are sure there is at least one matched address, we can
1060 		 * proceed to 5.5.3. (e): update the lifetimes according to the
1061 		 * "two hours" rule and the privacy extension.
1062 		 */
1063 #define TWOHOUR		(120*60)
1064 		lt6_tmp = ifa6->ia6_lifetime;
1065 
1066 		if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME)
1067 			storedlifetime = ND6_INFINITE_LIFETIME;
1068 		else if (IFA6_IS_INVALID(ifa6))
1069 			storedlifetime = 0;
1070 		else
1071 			storedlifetime = lt6_tmp.ia6t_expire - time_second;
1072 
1073 		/* when not updating, keep the current stored lifetime. */
1074 		lt6_tmp.ia6t_vltime = storedlifetime;
1075 
1076 		if (TWOHOUR < new->ndpr_vltime ||
1077 		    storedlifetime < new->ndpr_vltime) {
1078 			lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1079 		} else if (storedlifetime <= TWOHOUR
1080 #if 0
1081 			   /*
1082 			    * This condition is logically redundant, so we just
1083 			    * omit it.
1084 			    * See IPng 6712, 6717, and 6721.
1085 			    */
1086 			   && new->ndpr_vltime <= storedlifetime
1087 #endif
1088 			) {
1089 			if (auth) {
1090 				lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1091 			}
1092 		} else {
1093 			/*
1094 			 * new->ndpr_vltime <= TWOHOUR &&
1095 			 * TWOHOUR < storedlifetime
1096 			 */
1097 			lt6_tmp.ia6t_vltime = TWOHOUR;
1098 		}
1099 
1100 		/* The 2 hour rule is not imposed for preferred lifetime. */
1101 		lt6_tmp.ia6t_pltime = new->ndpr_pltime;
1102 
1103 		in6_init_address_ltimes(pr, &lt6_tmp);
1104 
1105 		/*
1106 		 * When adjusting the lifetimes of an existing temporary
1107 		 * address, only lower the lifetimes.
1108 		 * RFC 3041 3.3. (1).
1109 		 * XXX: how should we modify ia6t_[pv]ltime?
1110 		 */
1111 		if (ifa6->ia6_flags & IN6_IFF_TEMPORARY) {
1112 			if (lt6_tmp.ia6t_expire == 0 || /* no expire */
1113 			    lt6_tmp.ia6t_expire >
1114 			    ifa6->ia6_lifetime.ia6t_expire) {
1115 				lt6_tmp.ia6t_expire =
1116 					ifa6->ia6_lifetime.ia6t_expire;
1117 			}
1118 			if (lt6_tmp.ia6t_preferred == 0 || /* no expire */
1119 			    lt6_tmp.ia6t_preferred >
1120 			    ifa6->ia6_lifetime.ia6t_preferred) {
1121 				lt6_tmp.ia6t_preferred =
1122 					ifa6->ia6_lifetime.ia6t_preferred;
1123 			}
1124 		}
1125 
1126 		ifa6->ia6_lifetime = lt6_tmp;
1127 	}
1128 	if (ia6_match == NULL && new->ndpr_vltime) {
1129 		/*
1130 		 * No address matched and the valid lifetime is non-zero.
1131 		 * Create a new address.
1132 		 */
1133 		if ((ia6 = in6_ifadd(new, NULL)) != NULL) {
1134 			/*
1135 			 * note that we should use pr (not new) for reference.
1136 			 */
1137 			pr->ndpr_refcnt++;
1138 			ia6->ia6_ndpr = pr;
1139 
1140 #if 0
1141 			/* XXXYYY Don't do this, according to Jinmei. */
1142 			pr->ndpr_addr = new->ndpr_addr;
1143 #endif
1144 
1145 			/*
1146 			 * RFC 3041 3.3 (2).
1147 			 * When a new public address is created as described
1148 			 * in RFC2462, also create a new temporary address.
1149 			 *
1150 			 * RFC 3041 3.5.
1151 			 * When an interface connects to a new link, a new
1152 			 * randomized interface identifier should be generated
1153 			 * immediately together with a new set of temporary
1154 			 * addresses.  Thus, we specifiy 1 as the 2nd arg of
1155 			 * in6_tmpifadd().
1156 			 */
1157 			if (ip6_use_tempaddr) {
1158 				int e;
1159 				if ((e = in6_tmpifadd(ia6, 1)) != 0) {
1160 					nd6log((LOG_NOTICE, "prelist_update: "
1161 					    "failed to create a temporary "
1162 					    "address, errno=%d\n",
1163 					    e));
1164 				}
1165 			}
1166 
1167 			/*
1168 			 * A newly added address might affect the status
1169 			 * of other addresses, so we check and update it.
1170 			 * XXX: what if address duplication happens?
1171 			 */
1172 			pfxlist_onlink_check();
1173 		} else {
1174 			/* just set an error. do not bark here. */
1175 			error = EADDRNOTAVAIL; /* XXX: might be unused. */
1176 		}
1177 	}
1178 
1179 afteraddrconf:
1180 
1181 end:
1182 	mtx_unlock(&nd6_mtx);
1183 	return error;
1184 }
1185 
1186 /*
1187  * A supplement function used in the on-link detection below;
1188  * detect if a given prefix has a (probably) reachable advertising router.
1189  * XXX: lengthy function name...
1190  */
1191 static struct nd_pfxrouter *
1192 find_pfxlist_reachable_router(struct nd_prefix *pr)
1193 {
1194 	struct nd_pfxrouter *pfxrtr;
1195 	struct rtentry *rt;
1196 	struct llinfo_nd6 *ln;
1197 
1198 	for (pfxrtr = LIST_FIRST(&pr->ndpr_advrtrs); pfxrtr;
1199 	     pfxrtr = LIST_NEXT(pfxrtr, pfr_entry)) {
1200 		if ((rt = nd6_lookup(&pfxrtr->router->rtaddr, 0,
1201 				     pfxrtr->router->ifp)) &&
1202 		    (ln = (struct llinfo_nd6 *)rt->rt_llinfo) &&
1203 		    ND6_IS_LLINFO_PROBREACH(ln))
1204 			break;	/* found */
1205 	}
1206 
1207 	return (pfxrtr);
1208 
1209 }
1210 
1211 /*
1212  * Check if each prefix in the prefix list has at least one available router
1213  * that advertised the prefix (a router is "available" if its neighbor cache
1214  * entry is reachable or probably reachable).
1215  * If the check fails, the prefix may be off-link, because, for example,
1216  * we have moved from the network but the lifetime of the prefix has not
1217  * expired yet.  So we should not use the prefix if there is another prefix
1218  * that has an available router.
1219  * But, if there is no prefix that has an available router, we still regards
1220  * all the prefixes as on-link.  This is because we can't tell if all the
1221  * routers are simply dead or if we really moved from the network and there
1222  * is no router around us.
1223  */
1224 void
1225 pfxlist_onlink_check(void)
1226 {
1227 	struct nd_prefix *pr;
1228 	struct in6_ifaddr *ifa;
1229 
1230 	/*
1231 	 * Check if there is a prefix that has a reachable advertising
1232 	 * router.
1233 	 */
1234 	for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1235 		if (pr->ndpr_raf_onlink && find_pfxlist_reachable_router(pr))
1236 			break;
1237 	}
1238 
1239 	if (pr) {
1240 		/*
1241 		 * There is at least one prefix that has a reachable router.
1242 		 * Detach prefixes which have no reachable advertising
1243 		 * router, and attach other prefixes.
1244 		 */
1245 		for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1246 			/* XXX: a link-local prefix should never be detached */
1247 			if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1248 				continue;
1249 
1250 			/*
1251 			 * we aren't interested in prefixes without the L bit
1252 			 * set.
1253 			 */
1254 			if (pr->ndpr_raf_onlink == 0)
1255 				continue;
1256 
1257 			if (!(pr->ndpr_stateflags & NDPRF_DETACHED) &&
1258 			    find_pfxlist_reachable_router(pr) == NULL)
1259 				pr->ndpr_stateflags |= NDPRF_DETACHED;
1260 			if ((pr->ndpr_stateflags & NDPRF_DETACHED) &&
1261 			    find_pfxlist_reachable_router(pr) != NULL)
1262 				pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1263 		}
1264 	} else {
1265 		/* there is no prefix that has a reachable router */
1266 		for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1267 			if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1268 				continue;
1269 
1270 			if (pr->ndpr_raf_onlink == 0)
1271 				continue;
1272 
1273 			if (pr->ndpr_stateflags & NDPRF_DETACHED)
1274 				pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1275 		}
1276 	}
1277 
1278 	/*
1279 	 * Remove each interface route associated with a (just) detached
1280 	 * prefix, and reinstall the interface route for a (just) attached
1281 	 * prefix.  Note that all attempt of reinstallation does not
1282 	 * necessarily success, when a same prefix is shared among multiple
1283 	 * interfaces.  Such cases will be handled in nd6_prefix_onlink,
1284 	 * so we don't have to care about them.
1285 	 */
1286 	for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
1287 		int e;
1288 
1289 		if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1290 			continue;
1291 
1292 		if (pr->ndpr_raf_onlink == 0)
1293 			continue;
1294 
1295 		if ((pr->ndpr_stateflags & NDPRF_DETACHED) &&
1296 		    (pr->ndpr_stateflags & NDPRF_ONLINK)) {
1297 			if ((e = nd6_prefix_offlink(pr)) != 0) {
1298 				nd6log((LOG_ERR,
1299 				    "pfxlist_onlink_check: failed to "
1300 				    "make %s/%d offlink, errno=%d\n",
1301 				    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1302 				    pr->ndpr_plen, e));
1303 			}
1304 		}
1305 		if (!(pr->ndpr_stateflags & NDPRF_DETACHED) &&
1306 		    !(pr->ndpr_stateflags & NDPRF_ONLINK) &&
1307 		    pr->ndpr_raf_onlink) {
1308 			if ((e = nd6_prefix_onlink(pr)) != 0) {
1309 				nd6log((LOG_ERR,
1310 				    "pfxlist_onlink_check: failed to "
1311 				    "make %s/%d offlink, errno=%d\n",
1312 				    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1313 				    pr->ndpr_plen, e));
1314 			}
1315 		}
1316 	}
1317 
1318 	/*
1319 	 * Changes on the prefix status might affect address status as well.
1320 	 * Make sure that all addresses derived from an attached prefix are
1321 	 * attached, and that all addresses derived from a detached prefix are
1322 	 * detached.  Note, however, that a manually configured address should
1323 	 * always be attached.
1324 	 * The precise detection logic is same as the one for prefixes.
1325 	 */
1326 	for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1327 		if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF))
1328 			continue;
1329 
1330 		if (ifa->ia6_ndpr == NULL) {
1331 			/*
1332 			 * This can happen when we first configure the address
1333 			 * (i.e. the address exists, but the prefix does not).
1334 			 * XXX: complicated relationships...
1335 			 */
1336 			continue;
1337 		}
1338 
1339 		if (find_pfxlist_reachable_router(ifa->ia6_ndpr))
1340 			break;
1341 	}
1342 	if (ifa) {
1343 		for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1344 			if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF))
1345 				continue;
1346 
1347 			if (ifa->ia6_ndpr == NULL) /* XXX: see above. */
1348 				continue;
1349 
1350 			if (find_pfxlist_reachable_router(ifa->ia6_ndpr))
1351 				ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1352 			else
1353 				ifa->ia6_flags |= IN6_IFF_DETACHED;
1354 		}
1355 	}
1356 	else {
1357 		for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) {
1358 			if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF))
1359 				continue;
1360 
1361 			ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1362 		}
1363 	}
1364 }
1365 
1366 int
1367 nd6_prefix_onlink(struct nd_prefix *pr)
1368 {
1369 	struct ifaddr *ifa;
1370 	struct ifnet *ifp = pr->ndpr_ifp;
1371 	struct sockaddr_in6 mask6;
1372 	struct nd_prefix *opr;
1373 	u_long rtflags;
1374 	int error = 0;
1375 
1376 	/* sanity check */
1377 	if (pr->ndpr_stateflags & NDPRF_ONLINK) {
1378 		nd6log((LOG_ERR,
1379 		    "nd6_prefix_onlink: %s/%d is already on-link\n",
1380 		    ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen);
1381 		return (EEXIST));
1382 	}
1383 
1384 	/*
1385 	 * Add the interface route associated with the prefix.  Before
1386 	 * installing the route, check if there's the same prefix on another
1387 	 * interface, and the prefix has already installed the interface route.
1388 	 * Although such a configuration is expected to be rare, we explicitly
1389 	 * allow it.
1390 	 */
1391 	for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) {
1392 		if (opr == pr)
1393 			continue;
1394 
1395 		if (!(opr->ndpr_stateflags & NDPRF_ONLINK))
1396 			continue;
1397 
1398 		if (opr->ndpr_plen == pr->ndpr_plen &&
1399 		    in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1400 					 &opr->ndpr_prefix.sin6_addr,
1401 					 pr->ndpr_plen))
1402 			return (0);
1403 	}
1404 
1405 	/*
1406 	 * We prefer link-local addresses as the associated interface address.
1407 	 */
1408 	/* search for a link-local addr */
1409 	ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp,
1410 						      IN6_IFF_NOTREADY|
1411 						      IN6_IFF_ANYCAST);
1412 	if (ifa == NULL) {
1413 		struct ifaddr_container *ifac;
1414 
1415 		/* XXX: freebsd does not have ifa_ifwithaf */
1416 		TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1417 			if (ifac->ifa->ifa_addr->sa_family == AF_INET6) {
1418 				ifa = ifac->ifa;
1419 				break;
1420 			}
1421 		}
1422 		/* should we care about ia6_flags? */
1423 	}
1424 	if (ifa == NULL) {
1425 		/*
1426 		 * This can still happen, when, for example, we receive an RA
1427 		 * containing a prefix with the L bit set and the A bit clear,
1428 		 * after removing all IPv6 addresses on the receiving
1429 		 * interface.  This should, of course, be rare though.
1430 		 */
1431 		nd6log((LOG_NOTICE,
1432 		    "nd6_prefix_onlink: failed to find any ifaddr"
1433 		    " to add route for a prefix(%s/%d) on %s\n",
1434 		    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1435 		    pr->ndpr_plen, if_name(ifp)));
1436 		return (0);
1437 	}
1438 
1439 	/*
1440 	 * in6_ifinit() sets nd6_rtrequest to ifa_rtrequest for all ifaddrs.
1441 	 * ifa->ifa_rtrequest = nd6_rtrequest;
1442 	 */
1443 	bzero(&mask6, sizeof(mask6));
1444 	mask6.sin6_len = sizeof(mask6);
1445 	mask6.sin6_addr = pr->ndpr_mask;
1446 	rtflags = ifa->ifa_flags | RTF_CLONING | RTF_UP;
1447 	if (nd6_need_cache(ifp)) {
1448 		/* explicitly set in case ifa_flags does not set the flag. */
1449 		rtflags |= RTF_CLONING;
1450 	} else {
1451 		/*
1452 		 * explicitly clear the cloning bit in case ifa_flags sets it.
1453 		 */
1454 		rtflags &= ~RTF_CLONING;
1455 	}
1456 	error = rtrequest_global(RTM_ADD,
1457 				 (struct sockaddr *)&pr->ndpr_prefix,
1458 				 ifa->ifa_addr,
1459 				 (struct sockaddr *)&mask6,
1460 				 rtflags);
1461 	if (error == 0) {
1462 		pr->ndpr_stateflags |= NDPRF_ONLINK;
1463 	}
1464 	else {
1465 		nd6log((LOG_ERR, "nd6_prefix_onlink: failed to add route for a"
1466 		    " prefix (%s/%d) on %s, gw=%s, mask=%s, flags=%lx "
1467 		    "errno = %d\n",
1468 		    ip6_sprintf(&pr->ndpr_prefix.sin6_addr),
1469 		    pr->ndpr_plen, if_name(ifp),
1470 		    ip6_sprintf(&((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr),
1471 		    ip6_sprintf(&mask6.sin6_addr), rtflags, error));
1472 	}
1473 	return (error);
1474 }
1475 
1476 int
1477 nd6_prefix_offlink(struct nd_prefix *pr)
1478 {
1479 	int error = 0;
1480 	struct ifnet *ifp = pr->ndpr_ifp;
1481 	struct nd_prefix *opr;
1482 	struct sockaddr_in6 sa6, mask6;
1483 
1484 	/* sanity check */
1485 	if (!(pr->ndpr_stateflags & NDPRF_ONLINK)) {
1486 		nd6log((LOG_ERR,
1487 		    "nd6_prefix_offlink: %s/%d is already off-link\n",
1488 		    ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen));
1489 		return (EEXIST);
1490 	}
1491 
1492 	bzero(&sa6, sizeof(sa6));
1493 	sa6.sin6_family = AF_INET6;
1494 	sa6.sin6_len = sizeof(sa6);
1495 	bcopy(&pr->ndpr_prefix.sin6_addr, &sa6.sin6_addr,
1496 	      sizeof(struct in6_addr));
1497 	bzero(&mask6, sizeof(mask6));
1498 	mask6.sin6_family = AF_INET6;
1499 	mask6.sin6_len = sizeof(sa6);
1500 	bcopy(&pr->ndpr_mask, &mask6.sin6_addr, sizeof(struct in6_addr));
1501 	error = rtrequest_global(RTM_DELETE,
1502 				 (struct sockaddr *)&sa6,
1503 				 NULL,
1504 				 (struct sockaddr *)&mask6,
1505 				 0);
1506 	if (error == 0) {
1507 		pr->ndpr_stateflags &= ~NDPRF_ONLINK;
1508 
1509 		/*
1510 		 * There might be the same prefix on another interface,
1511 		 * the prefix which could not be on-link just because we have
1512 		 * the interface route (see comments in nd6_prefix_onlink).
1513 		 * If there's one, try to make the prefix on-link on the
1514 		 * interface.
1515 		 */
1516 		for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) {
1517 			if (opr == pr)
1518 				continue;
1519 
1520 			if (opr->ndpr_stateflags & NDPRF_ONLINK)
1521 				continue;
1522 
1523 			/*
1524 			 * KAME specific: detached prefixes should not be
1525 			 * on-link.
1526 			 */
1527 			if (opr->ndpr_stateflags & NDPRF_DETACHED)
1528 				continue;
1529 
1530 			if (opr->ndpr_plen == pr->ndpr_plen &&
1531 			    in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1532 						 &opr->ndpr_prefix.sin6_addr,
1533 						 pr->ndpr_plen)) {
1534 				int e;
1535 
1536 				if ((e = nd6_prefix_onlink(opr)) != 0) {
1537 					nd6log((LOG_ERR,
1538 					    "nd6_prefix_offlink: failed to "
1539 					    "recover a prefix %s/%d from %s "
1540 					    "to %s (errno = %d)\n",
1541 					    ip6_sprintf(&opr->ndpr_prefix.sin6_addr),
1542 					    opr->ndpr_plen, if_name(ifp),
1543 					    if_name(opr->ndpr_ifp), e));
1544 				}
1545 			}
1546 		}
1547 	}
1548 	else {
1549 		/* XXX: can we still set the NDPRF_ONLINK flag? */
1550 		nd6log((LOG_ERR,
1551 		    "nd6_prefix_offlink: failed to delete route: "
1552 		    "%s/%d on %s (errno = %d)\n",
1553 		    ip6_sprintf(&sa6.sin6_addr), pr->ndpr_plen, if_name(ifp),
1554 		    error));
1555 	}
1556 
1557 	return (error);
1558 }
1559 
1560 /*
1561  * Parameters:
1562  *	ifid:	Mobile IPv6 addition
1563  */
1564 static struct in6_ifaddr *
1565 in6_ifadd(struct nd_prefix *pr, struct in6_addr *ifid)
1566 {
1567 	struct ifnet *ifp = pr->ndpr_ifp;
1568 	struct ifaddr *ifa;
1569 	struct in6_aliasreq ifra;
1570 	struct in6_ifaddr *ia, *ib;
1571 	int error, plen0;
1572 	struct in6_addr mask;
1573 	int prefixlen = pr->ndpr_plen;
1574 
1575 	in6_len2mask(&mask, prefixlen);
1576 
1577 	/*
1578 	 * find a link-local address (will be interface ID).
1579 	 * Is it really mandatory? Theoretically, a global or a site-local
1580 	 * address can be configured without a link-local address, if we
1581 	 * have a unique interface identifier...
1582 	 *
1583 	 * it is not mandatory to have a link-local address, we can generate
1584 	 * interface identifier on the fly.  we do this because:
1585 	 * (1) it should be the easiest way to find interface identifier.
1586 	 * (2) RFC2462 5.4 suggesting the use of the same interface identifier
1587 	 * for multiple addresses on a single interface, and possible shortcut
1588 	 * of DAD.  we omitted DAD for this reason in the past.
1589 	 * (3) a user can prevent autoconfiguration of global address
1590 	 * by removing link-local address by hand (this is partly because we
1591 	 * don't have other way to control the use of IPv6 on a interface.
1592 	 * this has been our design choice - cf. NRL's "ifconfig auto").
1593 	 * (4) it is easier to manage when an interface has addresses
1594 	 * with the same interface identifier, than to have multiple addresses
1595 	 * with different interface identifiers.
1596 	 *
1597 	 * Mobile IPv6 addition: allow for caller to specify a wished interface
1598 	 * ID. This is to not break connections when moving addresses between
1599 	 * interfaces.
1600 	 */
1601 	ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 0);/* 0 is OK? */
1602 	if (ifa)
1603 		ib = (struct in6_ifaddr *)ifa;
1604 	else
1605 		return NULL;
1606 
1607 #if 0 /* don't care link local addr state, and always do DAD */
1608 	/* if link-local address is not eligible, do not autoconfigure. */
1609 	if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_NOTREADY) {
1610 		kprintf("in6_ifadd: link-local address not ready\n");
1611 		return NULL;
1612 	}
1613 #endif
1614 
1615 	/* prefixlen + ifidlen must be equal to 128 */
1616 	plen0 = in6_mask2len(&ib->ia_prefixmask.sin6_addr, NULL);
1617 	if (prefixlen != plen0) {
1618 		nd6log((LOG_INFO, "in6_ifadd: wrong prefixlen for %s "
1619 		    "(prefix=%d ifid=%d)\n",
1620 		    if_name(ifp), prefixlen, 128 - plen0));
1621 		return NULL;
1622 	}
1623 
1624 	/* make ifaddr */
1625 
1626 	bzero(&ifra, sizeof(ifra));
1627 	/*
1628 	 * in6_update_ifa() does not use ifra_name, but we accurately set it
1629 	 * for safety.
1630 	 */
1631 	strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name));
1632 	ifra.ifra_addr.sin6_family = AF_INET6;
1633 	ifra.ifra_addr.sin6_len = sizeof(struct sockaddr_in6);
1634 	/* prefix */
1635 	bcopy(&pr->ndpr_prefix.sin6_addr, &ifra.ifra_addr.sin6_addr,
1636 	      sizeof(ifra.ifra_addr.sin6_addr));
1637 	ifra.ifra_addr.sin6_addr.s6_addr32[0] &= mask.s6_addr32[0];
1638 	ifra.ifra_addr.sin6_addr.s6_addr32[1] &= mask.s6_addr32[1];
1639 	ifra.ifra_addr.sin6_addr.s6_addr32[2] &= mask.s6_addr32[2];
1640 	ifra.ifra_addr.sin6_addr.s6_addr32[3] &= mask.s6_addr32[3];
1641 
1642 	/* interface ID */
1643 	if (ifid == NULL || IN6_IS_ADDR_UNSPECIFIED(ifid))
1644 		ifid = &ib->ia_addr.sin6_addr;
1645 	ifra.ifra_addr.sin6_addr.s6_addr32[0]
1646 		|= (ifid->s6_addr32[0] & ~mask.s6_addr32[0]);
1647 	ifra.ifra_addr.sin6_addr.s6_addr32[1]
1648 		|= (ifid->s6_addr32[1] & ~mask.s6_addr32[1]);
1649 	ifra.ifra_addr.sin6_addr.s6_addr32[2]
1650 		|= (ifid->s6_addr32[2] & ~mask.s6_addr32[2]);
1651 	ifra.ifra_addr.sin6_addr.s6_addr32[3]
1652 		|= (ifid->s6_addr32[3] & ~mask.s6_addr32[3]);
1653 
1654 	/* new prefix mask. */
1655 	ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
1656 	ifra.ifra_prefixmask.sin6_family = AF_INET6;
1657 	bcopy(&mask, &ifra.ifra_prefixmask.sin6_addr,
1658 	      sizeof(ifra.ifra_prefixmask.sin6_addr));
1659 
1660 	/*
1661 	 * lifetime.
1662 	 * XXX: in6_init_address_ltimes would override these values later.
1663 	 * We should reconsider this logic.
1664 	 */
1665 	ifra.ifra_lifetime.ia6t_vltime = pr->ndpr_vltime;
1666 	ifra.ifra_lifetime.ia6t_pltime = pr->ndpr_pltime;
1667 
1668 	/* XXX: scope zone ID? */
1669 
1670 	ifra.ifra_flags |= IN6_IFF_AUTOCONF; /* obey autoconf */
1671 	/*
1672 	 * temporarily set the nopfx flag to avoid conflict.
1673 	 * XXX: we should reconsider the entire mechanism about prefix
1674 	 * manipulation.
1675 	 */
1676 	ifra.ifra_flags |= IN6_IFF_NOPFX;
1677 
1678 	/*
1679 	 * keep the new address, regardless of the result of in6_update_ifa.
1680 	 * XXX: this address is now meaningless.
1681 	 * We should reconsider its role.
1682 	 */
1683 	pr->ndpr_addr = ifra.ifra_addr.sin6_addr;
1684 
1685 	/* allocate ifaddr structure, link into chain, etc. */
1686 	if ((error = in6_update_ifa(ifp, &ifra, NULL)) != 0) {
1687 		nd6log((LOG_ERR,
1688 		    "in6_ifadd: failed to make ifaddr %s on %s (errno=%d)\n",
1689 		    ip6_sprintf(&ifra.ifra_addr.sin6_addr), if_name(ifp),
1690 		    error));
1691 		return (NULL);	/* ifaddr must not have been allocated. */
1692 	}
1693 
1694 	ia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
1695 
1696 	return (ia);		/* this must NOT be NULL. */
1697 }
1698 
1699 /*
1700  * Parameters:
1701  *	ia0:	corresponding public address
1702  */
1703 int
1704 in6_tmpifadd(const struct in6_ifaddr *ia0, int forcegen)
1705 {
1706 	struct ifnet *ifp = ia0->ia_ifa.ifa_ifp;
1707 	struct in6_ifaddr *newia;
1708 	struct in6_aliasreq ifra;
1709 	int i, error;
1710 	int trylimit = 3;	/* XXX: adhoc value */
1711 	u_int32_t randid[2];
1712 	time_t vltime0, pltime0;
1713 
1714 	bzero(&ifra, sizeof(ifra));
1715 	strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name));
1716 	ifra.ifra_addr = ia0->ia_addr;
1717 	/* copy prefix mask */
1718 	ifra.ifra_prefixmask = ia0->ia_prefixmask;
1719 	/* clear the old IFID */
1720 	for (i = 0; i < 4; i++) {
1721 		ifra.ifra_addr.sin6_addr.s6_addr32[i]
1722 			&= ifra.ifra_prefixmask.sin6_addr.s6_addr32[i];
1723 	}
1724 
1725 again:
1726 	in6_get_tmpifid(ifp, (u_int8_t *)randid,
1727 			(const u_int8_t *)&ia0->ia_addr.sin6_addr.s6_addr[8],
1728 			forcegen);
1729 	ifra.ifra_addr.sin6_addr.s6_addr32[2]
1730 		|= (randid[0] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[2]));
1731 	ifra.ifra_addr.sin6_addr.s6_addr32[3]
1732 		|= (randid[1] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[3]));
1733 
1734 	/*
1735 	 * If by chance the new temporary address is the same as an address
1736 	 * already assigned to the interface, generate a new randomized
1737 	 * interface identifier and repeat this step.
1738 	 * RFC 3041 3.3 (4).
1739 	 */
1740 	if (in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr) != NULL) {
1741 		if (trylimit-- == 0) {
1742 			nd6log((LOG_NOTICE, "in6_tmpifadd: failed to find "
1743 			    "a unique random IFID\n"));
1744 			return (EEXIST);
1745 		}
1746 		forcegen = 1;
1747 		goto again;
1748 	}
1749 
1750 	/*
1751 	 * The Valid Lifetime is the lower of the Valid Lifetime of the
1752          * public address or TEMP_VALID_LIFETIME.
1753 	 * The Preferred Lifetime is the lower of the Preferred Lifetime
1754          * of the public address or TEMP_PREFERRED_LIFETIME -
1755          * DESYNC_FACTOR.
1756 	 */
1757 	if (ia0->ia6_lifetime.ia6t_expire != 0) {
1758 		vltime0 = IFA6_IS_INVALID(ia0) ? 0 :
1759 			(ia0->ia6_lifetime.ia6t_expire - time_second);
1760 		if (vltime0 > ip6_temp_valid_lifetime)
1761 			vltime0 = ip6_temp_valid_lifetime;
1762 	} else
1763 		vltime0 = ip6_temp_valid_lifetime;
1764 	if (ia0->ia6_lifetime.ia6t_preferred != 0) {
1765 		pltime0 = IFA6_IS_DEPRECATED(ia0) ? 0 :
1766 			(ia0->ia6_lifetime.ia6t_preferred - time_second);
1767 		if (pltime0 > ip6_temp_preferred_lifetime - ip6_desync_factor) {
1768 			pltime0 = ip6_temp_preferred_lifetime -
1769 				ip6_desync_factor;
1770 		}
1771 	} else
1772 		pltime0 = ip6_temp_preferred_lifetime - ip6_desync_factor;
1773 	ifra.ifra_lifetime.ia6t_vltime = vltime0;
1774 	ifra.ifra_lifetime.ia6t_pltime = pltime0;
1775 
1776 	/*
1777 	 * A temporary address is created only if this calculated Preferred
1778 	 * Lifetime is greater than REGEN_ADVANCE time units.
1779 	 */
1780 	if (ifra.ifra_lifetime.ia6t_pltime <= ip6_temp_regen_advance)
1781 		return (0);
1782 
1783 	/* XXX: scope zone ID? */
1784 
1785 	ifra.ifra_flags |= (IN6_IFF_AUTOCONF|IN6_IFF_TEMPORARY);
1786 
1787 	/* allocate ifaddr structure, link into chain, etc. */
1788 	if ((error = in6_update_ifa(ifp, &ifra, NULL)) != 0)
1789 		return (error);
1790 
1791 	newia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
1792 	if (newia == NULL) {	/* XXX: can it happen? */
1793 		nd6log((LOG_ERR,
1794 		    "in6_tmpifadd: ifa update succeeded, but we got "
1795 		    "no ifaddr\n"));
1796 		return (EINVAL); /* XXX */
1797 	}
1798 	newia->ia6_ndpr = ia0->ia6_ndpr;
1799 	newia->ia6_ndpr->ndpr_refcnt++;
1800 
1801 	return (0);
1802 }
1803 
1804 int
1805 in6_init_prefix_ltimes(struct nd_prefix *ndpr)
1806 {
1807 	/* check if preferred lifetime > valid lifetime.  RFC2462 5.5.3 (c) */
1808 	if (ndpr->ndpr_pltime > ndpr->ndpr_vltime) {
1809 		nd6log((LOG_INFO, "in6_init_prefix_ltimes: preferred lifetime"
1810 		    "(%d) is greater than valid lifetime(%d)\n",
1811 		    (u_int)ndpr->ndpr_pltime, (u_int)ndpr->ndpr_vltime));
1812 		return (EINVAL);
1813 	}
1814 	if (ndpr->ndpr_pltime == ND6_INFINITE_LIFETIME)
1815 		ndpr->ndpr_preferred = 0;
1816 	else
1817 		ndpr->ndpr_preferred = time_second + ndpr->ndpr_pltime;
1818 	if (ndpr->ndpr_vltime == ND6_INFINITE_LIFETIME)
1819 		ndpr->ndpr_expire = 0;
1820 	else
1821 		ndpr->ndpr_expire = time_second + ndpr->ndpr_vltime;
1822 
1823 	return 0;
1824 }
1825 
1826 static void
1827 in6_init_address_ltimes(struct nd_prefix *new, struct in6_addrlifetime *lt6)
1828 {
1829 	/* init ia6t_expire */
1830 	if (lt6->ia6t_vltime == ND6_INFINITE_LIFETIME)
1831 		lt6->ia6t_expire = 0;
1832 	else {
1833 		lt6->ia6t_expire = time_second;
1834 		lt6->ia6t_expire += lt6->ia6t_vltime;
1835 	}
1836 
1837 	/* init ia6t_preferred */
1838 	if (lt6->ia6t_pltime == ND6_INFINITE_LIFETIME)
1839 		lt6->ia6t_preferred = 0;
1840 	else {
1841 		lt6->ia6t_preferred = time_second;
1842 		lt6->ia6t_preferred += lt6->ia6t_pltime;
1843 	}
1844 }
1845 
1846 /*
1847  * Delete all the routing table entries that use the specified gateway.
1848  *
1849  * XXX: this function causes search through all entries of routing table, so
1850  * it shouldn't be called when acting as a router.
1851  */
1852 void
1853 rt6_flush(struct in6_addr *gateway, struct ifnet *ifp)
1854 {
1855 	struct radix_node_head *rnh = rt_tables[mycpuid][AF_INET6];
1856 
1857 	/* We'll care only link-local addresses */
1858 	if (!IN6_IS_ADDR_LINKLOCAL(gateway))
1859 		return;
1860 	/* XXX: hack for KAME's link-local address kludge */
1861 	gateway->s6_addr16[1] = htons(ifp->if_index);
1862 
1863 	rnh->rnh_walktree(rnh, rt6_deleteroute, (void *)gateway);
1864 }
1865 
1866 static int
1867 rt6_deleteroute(struct radix_node *rn, void *arg)
1868 {
1869 #define SIN6(s)	((struct sockaddr_in6 *)s)
1870 	struct rtentry *rt = (struct rtentry *)rn;
1871 	struct in6_addr *gate = (struct in6_addr *)arg;
1872 
1873 	if (rt->rt_gateway == NULL || rt->rt_gateway->sa_family != AF_INET6)
1874 		return (0);
1875 
1876 	if (!IN6_ARE_ADDR_EQUAL(gate, &SIN6(rt->rt_gateway)->sin6_addr))
1877 		return (0);
1878 
1879 	/*
1880 	 * Do not delete a static route.
1881 	 * XXX: this seems to be a bit ad-hoc. Should we consider the
1882 	 * 'cloned' bit instead?
1883 	 */
1884 	if (rt->rt_flags & RTF_STATIC)
1885 		return (0);
1886 
1887 	/*
1888 	 * We delete only host route. This means, in particular, we don't
1889 	 * delete default route.
1890 	 */
1891 	if (!(rt->rt_flags & RTF_HOST))
1892 		return (0);
1893 
1894 	return (rtrequest(RTM_DELETE, rt_key(rt),
1895 			 rt->rt_gateway, rt_mask(rt), rt->rt_flags, 0));
1896 #undef SIN6
1897 }
1898 
1899 int
1900 nd6_setdefaultiface(int ifindex)
1901 {
1902 	int error = 0;
1903 
1904 	if (ifindex < 0 || if_index < ifindex)
1905 		return (EINVAL);
1906 
1907 	if (nd6_defifindex != ifindex) {
1908 		nd6_defifindex = ifindex;
1909 		if (nd6_defifindex > 0)
1910 			nd6_defifp = ifindex2ifnet[nd6_defifindex];
1911 		else
1912 			nd6_defifp = NULL;
1913 
1914 		/*
1915 		 * If the Default Router List is empty, install a route
1916 		 * to the specified interface as default or remove the default
1917 		 * route when the default interface becomes canceled.
1918 		 * The check for the queue is actually redundant, but
1919 		 * we do this here to avoid re-install the default route
1920 		 * if the list is NOT empty.
1921 		 */
1922 		if (TAILQ_FIRST(&nd_defrouter) == NULL)
1923 			defrouter_select();
1924 
1925 		/*
1926 		 * Our current implementation assumes one-to-one maping between
1927 		 * interfaces and links, so it would be natural to use the
1928 		 * default interface as the default link.
1929 		 */
1930 		scope6_setdefault(nd6_defifp);
1931 	}
1932 
1933 	return (error);
1934 }
1935