xref: /freebsd/sys/netinet6/nd6_rtr.c (revision 052d159a8b83f03d7dc5eb31cd9a9b4a6fe3d9da)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the project nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  *	$KAME: nd6_rtr.c,v 1.111 2001/04/27 01:37:15 jinmei Exp $
32  */
33 
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36 
37 #include "opt_inet.h"
38 #include "opt_inet6.h"
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/malloc.h>
43 #include <sys/mbuf.h>
44 #include <sys/refcount.h>
45 #include <sys/socket.h>
46 #include <sys/sockio.h>
47 #include <sys/time.h>
48 #include <sys/kernel.h>
49 #include <sys/lock.h>
50 #include <sys/errno.h>
51 #include <sys/rmlock.h>
52 #include <sys/rwlock.h>
53 #include <sys/syslog.h>
54 #include <sys/queue.h>
55 
56 #include <net/if.h>
57 #include <net/if_var.h>
58 #include <net/if_types.h>
59 #include <net/if_dl.h>
60 #include <net/route.h>
61 #include <net/route_var.h>
62 #include <net/radix.h>
63 #include <net/vnet.h>
64 
65 #include <netinet/in.h>
66 #include <net/if_llatbl.h>
67 #include <netinet6/in6_var.h>
68 #include <netinet6/in6_ifattach.h>
69 #include <netinet/ip6.h>
70 #include <netinet6/ip6_var.h>
71 #include <netinet6/nd6.h>
72 #include <netinet/icmp6.h>
73 #include <netinet6/scope6_var.h>
74 
75 static int rtpref(struct nd_defrouter *);
76 static struct nd_defrouter *defrtrlist_update(struct nd_defrouter *);
77 static int prelist_update(struct nd_prefixctl *, struct nd_defrouter *,
78     struct mbuf *, int);
79 static struct in6_ifaddr *in6_ifadd(struct nd_prefixctl *, int);
80 static struct nd_pfxrouter *pfxrtr_lookup(struct nd_prefix *,
81     struct nd_defrouter *);
82 static void pfxrtr_add(struct nd_prefix *, struct nd_defrouter *);
83 static void pfxrtr_del(struct nd_pfxrouter *);
84 static struct nd_pfxrouter *find_pfxlist_reachable_router(struct nd_prefix *);
85 static void defrouter_delreq(struct nd_defrouter *);
86 static void nd6_rtmsg(int, struct rtentry *);
87 
88 static int in6_init_prefix_ltimes(struct nd_prefix *);
89 static void in6_init_address_ltimes(struct nd_prefix *,
90     struct in6_addrlifetime *);
91 
92 static int rt6_deleteroute(const struct rtentry *, void *);
93 
94 VNET_DECLARE(int, nd6_recalc_reachtm_interval);
95 #define	V_nd6_recalc_reachtm_interval	VNET(nd6_recalc_reachtm_interval)
96 
97 VNET_DEFINE_STATIC(struct ifnet *, nd6_defifp);
98 VNET_DEFINE(int, nd6_defifindex);
99 #define	V_nd6_defifp			VNET(nd6_defifp)
100 
101 VNET_DEFINE(int, ip6_use_tempaddr) = 0;
102 
103 VNET_DEFINE(int, ip6_desync_factor);
104 VNET_DEFINE(u_int32_t, ip6_temp_preferred_lifetime) = DEF_TEMP_PREFERRED_LIFETIME;
105 VNET_DEFINE(u_int32_t, ip6_temp_valid_lifetime) = DEF_TEMP_VALID_LIFETIME;
106 
107 VNET_DEFINE(int, ip6_temp_regen_advance) = TEMPADDR_REGEN_ADVANCE;
108 
109 #ifdef EXPERIMENTAL
110 VNET_DEFINE(int, nd6_ignore_ipv6_only_ra) = 1;
111 #endif
112 
113 /* RTPREF_MEDIUM has to be 0! */
114 #define RTPREF_HIGH	1
115 #define RTPREF_MEDIUM	0
116 #define RTPREF_LOW	(-1)
117 #define RTPREF_RESERVED	(-2)
118 #define RTPREF_INVALID	(-3)	/* internal */
119 
120 /*
121  * Receive Router Solicitation Message - just for routers.
122  * Router solicitation/advertisement is mostly managed by userland program
123  * (rtadvd) so here we have no function like nd6_ra_output().
124  *
125  * Based on RFC 2461
126  */
127 void
128 nd6_rs_input(struct mbuf *m, int off, int icmp6len)
129 {
130 	struct ifnet *ifp = m->m_pkthdr.rcvif;
131 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
132 	struct nd_router_solicit *nd_rs;
133 	struct in6_addr saddr6 = ip6->ip6_src;
134 	char *lladdr = NULL;
135 	int lladdrlen = 0;
136 	union nd_opts ndopts;
137 	char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
138 
139 	/*
140 	 * Accept RS only when V_ip6_forwarding=1 and the interface has
141 	 * no ND6_IFF_ACCEPT_RTADV.
142 	 */
143 	if (!V_ip6_forwarding || ND_IFINFO(ifp)->flags & ND6_IFF_ACCEPT_RTADV)
144 		goto freeit;
145 
146 	/* RFC 6980: Nodes MUST silently ignore fragments */
147 	if(m->m_flags & M_FRAGMENTED)
148 		goto freeit;
149 
150 	/* Sanity checks */
151 	if (ip6->ip6_hlim != 255) {
152 		nd6log((LOG_ERR,
153 		    "nd6_rs_input: invalid hlim (%d) from %s to %s on %s\n",
154 		    ip6->ip6_hlim, ip6_sprintf(ip6bufs, &ip6->ip6_src),
155 		    ip6_sprintf(ip6bufd, &ip6->ip6_dst), if_name(ifp)));
156 		goto bad;
157 	}
158 
159 	/*
160 	 * Don't update the neighbor cache, if src = ::.
161 	 * This indicates that the src has no IP address assigned yet.
162 	 */
163 	if (IN6_IS_ADDR_UNSPECIFIED(&saddr6))
164 		goto freeit;
165 
166 #ifndef PULLDOWN_TEST
167 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
168 	nd_rs = (struct nd_router_solicit *)((caddr_t)ip6 + off);
169 #else
170 	IP6_EXTHDR_GET(nd_rs, struct nd_router_solicit *, m, off, icmp6len);
171 	if (nd_rs == NULL) {
172 		ICMP6STAT_INC(icp6s_tooshort);
173 		return;
174 	}
175 #endif
176 
177 	icmp6len -= sizeof(*nd_rs);
178 	nd6_option_init(nd_rs + 1, icmp6len, &ndopts);
179 	if (nd6_options(&ndopts) < 0) {
180 		nd6log((LOG_INFO,
181 		    "nd6_rs_input: invalid ND option, ignored\n"));
182 		/* nd6_options have incremented stats */
183 		goto freeit;
184 	}
185 
186 	if (ndopts.nd_opts_src_lladdr) {
187 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
188 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
189 	}
190 
191 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
192 		nd6log((LOG_INFO,
193 		    "nd6_rs_input: lladdrlen mismatch for %s "
194 		    "(if %d, RS packet %d)\n",
195 		    ip6_sprintf(ip6bufs, &saddr6),
196 		    ifp->if_addrlen, lladdrlen - 2));
197 		goto bad;
198 	}
199 
200 	nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_SOLICIT, 0);
201 
202  freeit:
203 	m_freem(m);
204 	return;
205 
206  bad:
207 	ICMP6STAT_INC(icp6s_badrs);
208 	m_freem(m);
209 }
210 
211 #ifdef EXPERIMENTAL
212 /*
213  * An initial update routine for draft-ietf-6man-ipv6only-flag.
214  * We need to iterate over all default routers for the given
215  * interface to see whether they are all advertising the "S"
216  * (IPv6-Only) flag.  If they do set, otherwise unset, the
217  * interface flag we later use to filter on.
218  */
219 static void
220 defrtr_ipv6_only_ifp(struct ifnet *ifp)
221 {
222 	struct nd_defrouter *dr;
223 	bool ipv6_only, ipv6_only_old;
224 #ifdef INET
225 	struct epoch_tracker et;
226 	struct ifaddr *ifa;
227 	bool has_ipv4_addr;
228 #endif
229 
230 	if (V_nd6_ignore_ipv6_only_ra != 0)
231 		return;
232 
233 	ipv6_only = true;
234 	ND6_RLOCK();
235 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry)
236 		if (dr->ifp == ifp &&
237 		    (dr->raflags & ND_RA_FLAG_IPV6_ONLY) == 0)
238 			ipv6_only = false;
239 	ND6_RUNLOCK();
240 
241 	IF_AFDATA_WLOCK(ifp);
242 	ipv6_only_old = ND_IFINFO(ifp)->flags & ND6_IFF_IPV6_ONLY;
243 	IF_AFDATA_WUNLOCK(ifp);
244 
245 	/* If nothing changed, we have an early exit. */
246 	if (ipv6_only == ipv6_only_old)
247 		return;
248 
249 #ifdef INET
250 	/*
251 	 * Should we want to set the IPV6-ONLY flag, check if the
252 	 * interface has a non-0/0 and non-link-local IPv4 address
253 	 * configured on it.  If it has we will assume working
254 	 * IPv4 operations and will clear the interface flag.
255 	 */
256 	has_ipv4_addr = false;
257 	if (ipv6_only) {
258 		NET_EPOCH_ENTER(et);
259 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
260 			if (ifa->ifa_addr->sa_family != AF_INET)
261 				continue;
262 			if (in_canforward(
263 			    satosin(ifa->ifa_addr)->sin_addr)) {
264 				has_ipv4_addr = true;
265 				break;
266 			}
267 		}
268 		NET_EPOCH_EXIT(et);
269 	}
270 	if (ipv6_only && has_ipv4_addr) {
271 		log(LOG_NOTICE, "%s rcvd RA w/ IPv6-Only flag set but has IPv4 "
272 		    "configured, ignoring IPv6-Only flag.\n", ifp->if_xname);
273 		ipv6_only = false;
274 	}
275 #endif
276 
277 	IF_AFDATA_WLOCK(ifp);
278 	if (ipv6_only)
279 		ND_IFINFO(ifp)->flags |= ND6_IFF_IPV6_ONLY;
280 	else
281 		ND_IFINFO(ifp)->flags &= ~ND6_IFF_IPV6_ONLY;
282 	IF_AFDATA_WUNLOCK(ifp);
283 
284 #ifdef notyet
285 	/* Send notification of flag change. */
286 #endif
287 }
288 #endif	/* EXPERIMENTAL */
289 
290 /*
291  * Receive Router Advertisement Message.
292  *
293  * Based on RFC 2461
294  * TODO: on-link bit on prefix information
295  * TODO: ND_RA_FLAG_{OTHER,MANAGED} processing
296  */
297 void
298 nd6_ra_input(struct mbuf *m, int off, int icmp6len)
299 {
300 	struct ifnet *ifp = m->m_pkthdr.rcvif;
301 	struct nd_ifinfo *ndi = ND_IFINFO(ifp);
302 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
303 	struct nd_router_advert *nd_ra;
304 	struct in6_addr saddr6 = ip6->ip6_src;
305 	int mcast = 0;
306 	union nd_opts ndopts;
307 	struct nd_defrouter *dr;
308 	char ip6bufs[INET6_ADDRSTRLEN], ip6bufd[INET6_ADDRSTRLEN];
309 
310 	dr = NULL;
311 
312 	/*
313 	 * We only accept RAs only when the per-interface flag
314 	 * ND6_IFF_ACCEPT_RTADV is on the receiving interface.
315 	 */
316 	if (!(ndi->flags & ND6_IFF_ACCEPT_RTADV))
317 		goto freeit;
318 
319 	/* RFC 6980: Nodes MUST silently ignore fragments */
320 	if(m->m_flags & M_FRAGMENTED)
321 		goto freeit;
322 
323 	if (ip6->ip6_hlim != 255) {
324 		nd6log((LOG_ERR,
325 		    "nd6_ra_input: invalid hlim (%d) from %s to %s on %s\n",
326 		    ip6->ip6_hlim, ip6_sprintf(ip6bufs, &ip6->ip6_src),
327 		    ip6_sprintf(ip6bufd, &ip6->ip6_dst), if_name(ifp)));
328 		goto bad;
329 	}
330 
331 	if (!IN6_IS_ADDR_LINKLOCAL(&saddr6)) {
332 		nd6log((LOG_ERR,
333 		    "nd6_ra_input: src %s is not link-local\n",
334 		    ip6_sprintf(ip6bufs, &saddr6)));
335 		goto bad;
336 	}
337 
338 #ifndef PULLDOWN_TEST
339 	IP6_EXTHDR_CHECK(m, off, icmp6len,);
340 	nd_ra = (struct nd_router_advert *)((caddr_t)ip6 + off);
341 #else
342 	IP6_EXTHDR_GET(nd_ra, struct nd_router_advert *, m, off, icmp6len);
343 	if (nd_ra == NULL) {
344 		ICMP6STAT_INC(icp6s_tooshort);
345 		return;
346 	}
347 #endif
348 
349 	icmp6len -= sizeof(*nd_ra);
350 	nd6_option_init(nd_ra + 1, icmp6len, &ndopts);
351 	if (nd6_options(&ndopts) < 0) {
352 		nd6log((LOG_INFO,
353 		    "nd6_ra_input: invalid ND option, ignored\n"));
354 		/* nd6_options have incremented stats */
355 		goto freeit;
356 	}
357 
358     {
359 	struct nd_defrouter dr0;
360 	u_int32_t advreachable = nd_ra->nd_ra_reachable;
361 
362 	/* remember if this is a multicasted advertisement */
363 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst))
364 		mcast = 1;
365 
366 	bzero(&dr0, sizeof(dr0));
367 	dr0.rtaddr = saddr6;
368 	dr0.raflags = nd_ra->nd_ra_flags_reserved;
369 	/*
370 	 * Effectively-disable routes from RA messages when
371 	 * ND6_IFF_NO_RADR enabled on the receiving interface or
372 	 * (ip6.forwarding == 1 && ip6.rfc6204w3 != 1).
373 	 */
374 	if (ndi->flags & ND6_IFF_NO_RADR)
375 		dr0.rtlifetime = 0;
376 	else if (V_ip6_forwarding && !V_ip6_rfc6204w3)
377 		dr0.rtlifetime = 0;
378 	else
379 		dr0.rtlifetime = ntohs(nd_ra->nd_ra_router_lifetime);
380 	dr0.expire = time_uptime + dr0.rtlifetime;
381 	dr0.ifp = ifp;
382 	/* unspecified or not? (RFC 2461 6.3.4) */
383 	if (advreachable) {
384 		advreachable = ntohl(advreachable);
385 		if (advreachable <= MAX_REACHABLE_TIME &&
386 		    ndi->basereachable != advreachable) {
387 			ndi->basereachable = advreachable;
388 			ndi->reachable = ND_COMPUTE_RTIME(ndi->basereachable);
389 			ndi->recalctm = V_nd6_recalc_reachtm_interval; /* reset */
390 		}
391 	}
392 	if (nd_ra->nd_ra_retransmit)
393 		ndi->retrans = ntohl(nd_ra->nd_ra_retransmit);
394 	if (nd_ra->nd_ra_curhoplimit) {
395 		if (ndi->chlim < nd_ra->nd_ra_curhoplimit)
396 			ndi->chlim = nd_ra->nd_ra_curhoplimit;
397 		else if (ndi->chlim != nd_ra->nd_ra_curhoplimit) {
398 			log(LOG_ERR, "RA with a lower CurHopLimit sent from "
399 			    "%s on %s (current = %d, received = %d). "
400 			    "Ignored.\n", ip6_sprintf(ip6bufs, &ip6->ip6_src),
401 			    if_name(ifp), ndi->chlim, nd_ra->nd_ra_curhoplimit);
402 		}
403 	}
404 	dr = defrtrlist_update(&dr0);
405 #ifdef EXPERIMENTAL
406 	defrtr_ipv6_only_ifp(ifp);
407 #endif
408     }
409 
410 	/*
411 	 * prefix
412 	 */
413 	if (ndopts.nd_opts_pi) {
414 		struct nd_opt_hdr *pt;
415 		struct nd_opt_prefix_info *pi = NULL;
416 		struct nd_prefixctl pr;
417 
418 		for (pt = (struct nd_opt_hdr *)ndopts.nd_opts_pi;
419 		     pt <= (struct nd_opt_hdr *)ndopts.nd_opts_pi_end;
420 		     pt = (struct nd_opt_hdr *)((caddr_t)pt +
421 						(pt->nd_opt_len << 3))) {
422 			if (pt->nd_opt_type != ND_OPT_PREFIX_INFORMATION)
423 				continue;
424 			pi = (struct nd_opt_prefix_info *)pt;
425 
426 			if (pi->nd_opt_pi_len != 4) {
427 				nd6log((LOG_INFO,
428 				    "nd6_ra_input: invalid option "
429 				    "len %d for prefix information option, "
430 				    "ignored\n", pi->nd_opt_pi_len));
431 				continue;
432 			}
433 
434 			if (128 < pi->nd_opt_pi_prefix_len) {
435 				nd6log((LOG_INFO,
436 				    "nd6_ra_input: invalid prefix "
437 				    "len %d for prefix information option, "
438 				    "ignored\n", pi->nd_opt_pi_prefix_len));
439 				continue;
440 			}
441 
442 			if (IN6_IS_ADDR_MULTICAST(&pi->nd_opt_pi_prefix)
443 			 || IN6_IS_ADDR_LINKLOCAL(&pi->nd_opt_pi_prefix)) {
444 				nd6log((LOG_INFO,
445 				    "nd6_ra_input: invalid prefix "
446 				    "%s, ignored\n",
447 				    ip6_sprintf(ip6bufs,
448 					&pi->nd_opt_pi_prefix)));
449 				continue;
450 			}
451 
452 			bzero(&pr, sizeof(pr));
453 			pr.ndpr_prefix.sin6_family = AF_INET6;
454 			pr.ndpr_prefix.sin6_len = sizeof(pr.ndpr_prefix);
455 			pr.ndpr_prefix.sin6_addr = pi->nd_opt_pi_prefix;
456 			pr.ndpr_ifp = (struct ifnet *)m->m_pkthdr.rcvif;
457 
458 			pr.ndpr_raf_onlink = (pi->nd_opt_pi_flags_reserved &
459 			    ND_OPT_PI_FLAG_ONLINK) ? 1 : 0;
460 			pr.ndpr_raf_auto = (pi->nd_opt_pi_flags_reserved &
461 			    ND_OPT_PI_FLAG_AUTO) ? 1 : 0;
462 			pr.ndpr_plen = pi->nd_opt_pi_prefix_len;
463 			pr.ndpr_vltime = ntohl(pi->nd_opt_pi_valid_time);
464 			pr.ndpr_pltime = ntohl(pi->nd_opt_pi_preferred_time);
465 			(void)prelist_update(&pr, dr, m, mcast);
466 		}
467 	}
468 	if (dr != NULL) {
469 		defrouter_rele(dr);
470 		dr = NULL;
471 	}
472 
473 	/*
474 	 * MTU
475 	 */
476 	if (ndopts.nd_opts_mtu && ndopts.nd_opts_mtu->nd_opt_mtu_len == 1) {
477 		u_long mtu;
478 		u_long maxmtu;
479 
480 		mtu = (u_long)ntohl(ndopts.nd_opts_mtu->nd_opt_mtu_mtu);
481 
482 		/* lower bound */
483 		if (mtu < IPV6_MMTU) {
484 			nd6log((LOG_INFO, "nd6_ra_input: bogus mtu option "
485 			    "mtu=%lu sent from %s, ignoring\n",
486 			    mtu, ip6_sprintf(ip6bufs, &ip6->ip6_src)));
487 			goto skip;
488 		}
489 
490 		/* upper bound */
491 		maxmtu = (ndi->maxmtu && ndi->maxmtu < ifp->if_mtu)
492 		    ? ndi->maxmtu : ifp->if_mtu;
493 		if (mtu <= maxmtu) {
494 			int change = (ndi->linkmtu != mtu);
495 
496 			ndi->linkmtu = mtu;
497 			if (change) {
498 				/* in6_maxmtu may change */
499 				in6_setmaxmtu();
500 				rt_updatemtu(ifp);
501 			}
502 		} else {
503 			nd6log((LOG_INFO, "nd6_ra_input: bogus mtu "
504 			    "mtu=%lu sent from %s; "
505 			    "exceeds maxmtu %lu, ignoring\n",
506 			    mtu, ip6_sprintf(ip6bufs, &ip6->ip6_src), maxmtu));
507 		}
508 	}
509 
510  skip:
511 
512 	/*
513 	 * Source link layer address
514 	 */
515     {
516 	char *lladdr = NULL;
517 	int lladdrlen = 0;
518 
519 	if (ndopts.nd_opts_src_lladdr) {
520 		lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1);
521 		lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3;
522 	}
523 
524 	if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) {
525 		nd6log((LOG_INFO,
526 		    "nd6_ra_input: lladdrlen mismatch for %s "
527 		    "(if %d, RA packet %d)\n", ip6_sprintf(ip6bufs, &saddr6),
528 		    ifp->if_addrlen, lladdrlen - 2));
529 		goto bad;
530 	}
531 
532 	nd6_cache_lladdr(ifp, &saddr6, lladdr,
533 	    lladdrlen, ND_ROUTER_ADVERT, 0);
534 
535 	/*
536 	 * Installing a link-layer address might change the state of the
537 	 * router's neighbor cache, which might also affect our on-link
538 	 * detection of adveritsed prefixes.
539 	 */
540 	pfxlist_onlink_check();
541     }
542 
543  freeit:
544 	m_freem(m);
545 	return;
546 
547  bad:
548 	ICMP6STAT_INC(icp6s_badra);
549 	m_freem(m);
550 }
551 
552 /* tell the change to user processes watching the routing socket. */
553 static void
554 nd6_rtmsg(int cmd, struct rtentry *rt)
555 {
556 	struct rt_addrinfo info;
557 	struct ifnet *ifp;
558 	struct ifaddr *ifa;
559 
560 	bzero((caddr_t)&info, sizeof(info));
561 	info.rti_info[RTAX_DST] = rt_key(rt);
562 	info.rti_info[RTAX_GATEWAY] = rt->rt_gateway;
563 	info.rti_info[RTAX_NETMASK] = rt_mask(rt);
564 	ifp = rt->rt_ifp;
565 	if (ifp != NULL) {
566 		struct epoch_tracker et;
567 
568 		NET_EPOCH_ENTER(et);
569 		ifa = CK_STAILQ_FIRST(&ifp->if_addrhead);
570 		info.rti_info[RTAX_IFP] = ifa->ifa_addr;
571 		ifa_ref(ifa);
572 		NET_EPOCH_EXIT(et);
573 		info.rti_info[RTAX_IFA] = rt->rt_ifa->ifa_addr;
574 	} else
575 		ifa = NULL;
576 
577 	rt_missmsg_fib(cmd, &info, rt->rt_flags, 0, rt->rt_fibnum);
578 	if (ifa != NULL)
579 		ifa_free(ifa);
580 }
581 
582 /*
583  * default router list processing sub routines
584  */
585 
586 static void
587 defrouter_addreq(struct nd_defrouter *new)
588 {
589 	struct sockaddr_in6 def, mask, gate;
590 	struct rtentry *newrt = NULL;
591 	int error;
592 
593 	bzero(&def, sizeof(def));
594 	bzero(&mask, sizeof(mask));
595 	bzero(&gate, sizeof(gate));
596 
597 	def.sin6_len = mask.sin6_len = gate.sin6_len =
598 	    sizeof(struct sockaddr_in6);
599 	def.sin6_family = gate.sin6_family = AF_INET6;
600 	gate.sin6_addr = new->rtaddr;
601 
602 	error = in6_rtrequest(RTM_ADD, (struct sockaddr *)&def,
603 	    (struct sockaddr *)&gate, (struct sockaddr *)&mask,
604 	    RTF_GATEWAY, &newrt, new->ifp->if_fib);
605 	if (newrt) {
606 		nd6_rtmsg(RTM_ADD, newrt); /* tell user process */
607 		RTFREE(newrt);
608 	}
609 	if (error == 0)
610 		new->installed = 1;
611 }
612 
613 struct nd_defrouter *
614 defrouter_lookup_locked(struct in6_addr *addr, struct ifnet *ifp)
615 {
616 	struct nd_defrouter *dr;
617 
618 	ND6_LOCK_ASSERT();
619 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry)
620 		if (dr->ifp == ifp && IN6_ARE_ADDR_EQUAL(addr, &dr->rtaddr)) {
621 			defrouter_ref(dr);
622 			return (dr);
623 		}
624 	return (NULL);
625 }
626 
627 struct nd_defrouter *
628 defrouter_lookup(struct in6_addr *addr, struct ifnet *ifp)
629 {
630 	struct nd_defrouter *dr;
631 
632 	ND6_RLOCK();
633 	dr = defrouter_lookup_locked(addr, ifp);
634 	ND6_RUNLOCK();
635 	return (dr);
636 }
637 
638 void
639 defrouter_ref(struct nd_defrouter *dr)
640 {
641 
642 	refcount_acquire(&dr->refcnt);
643 }
644 
645 void
646 defrouter_rele(struct nd_defrouter *dr)
647 {
648 
649 	if (refcount_release(&dr->refcnt))
650 		free(dr, M_IP6NDP);
651 }
652 
653 /*
654  * Remove the default route for a given router.
655  * This is just a subroutine function for defrouter_select_fib(), and
656  * should not be called from anywhere else.
657  */
658 static void
659 defrouter_delreq(struct nd_defrouter *dr)
660 {
661 	struct sockaddr_in6 def, mask, gate;
662 	struct rtentry *oldrt = NULL;
663 
664 	bzero(&def, sizeof(def));
665 	bzero(&mask, sizeof(mask));
666 	bzero(&gate, sizeof(gate));
667 
668 	def.sin6_len = mask.sin6_len = gate.sin6_len =
669 	    sizeof(struct sockaddr_in6);
670 	def.sin6_family = gate.sin6_family = AF_INET6;
671 	gate.sin6_addr = dr->rtaddr;
672 
673 	in6_rtrequest(RTM_DELETE, (struct sockaddr *)&def,
674 	    (struct sockaddr *)&gate,
675 	    (struct sockaddr *)&mask, RTF_GATEWAY, &oldrt, dr->ifp->if_fib);
676 	if (oldrt) {
677 		nd6_rtmsg(RTM_DELETE, oldrt);
678 		RTFREE(oldrt);
679 	}
680 
681 	dr->installed = 0;
682 }
683 
684 /*
685  * Remove all default routes from default router list.
686  */
687 void
688 defrouter_reset(void)
689 {
690 	struct nd_defrouter *dr, **dra;
691 	int count, i;
692 
693 	count = i = 0;
694 
695 	/*
696 	 * We can't delete routes with the ND lock held, so make a copy of the
697 	 * current default router list and use that when deleting routes.
698 	 */
699 	ND6_RLOCK();
700 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry)
701 		count++;
702 	ND6_RUNLOCK();
703 
704 	dra = malloc(count * sizeof(*dra), M_TEMP, M_WAITOK | M_ZERO);
705 
706 	ND6_RLOCK();
707 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry) {
708 		if (i == count)
709 			break;
710 		defrouter_ref(dr);
711 		dra[i++] = dr;
712 	}
713 	ND6_RUNLOCK();
714 
715 	for (i = 0; i < count && dra[i] != NULL; i++) {
716 		defrouter_delreq(dra[i]);
717 		defrouter_rele(dra[i]);
718 	}
719 	free(dra, M_TEMP);
720 
721 	/*
722 	 * XXX should we also nuke any default routers in the kernel, by
723 	 * going through them by rtalloc1()?
724 	 */
725 }
726 
727 /*
728  * Look up a matching default router list entry and remove it. Returns true if a
729  * matching entry was found, false otherwise.
730  */
731 bool
732 defrouter_remove(struct in6_addr *addr, struct ifnet *ifp)
733 {
734 	struct nd_defrouter *dr;
735 
736 	ND6_WLOCK();
737 	dr = defrouter_lookup_locked(addr, ifp);
738 	if (dr == NULL) {
739 		ND6_WUNLOCK();
740 		return (false);
741 	}
742 
743 	defrouter_unlink(dr, NULL);
744 	ND6_WUNLOCK();
745 	defrouter_del(dr);
746 	defrouter_rele(dr);
747 	return (true);
748 }
749 
750 /*
751  * Remove a router from the global list and optionally stash it in a
752  * caller-supplied queue.
753  *
754  * The ND lock must be held.
755  */
756 void
757 defrouter_unlink(struct nd_defrouter *dr, struct nd_drhead *drq)
758 {
759 
760 	ND6_WLOCK_ASSERT();
761 	TAILQ_REMOVE(&V_nd_defrouter, dr, dr_entry);
762 	V_nd6_list_genid++;
763 	if (drq != NULL)
764 		TAILQ_INSERT_TAIL(drq, dr, dr_entry);
765 }
766 
767 void
768 defrouter_del(struct nd_defrouter *dr)
769 {
770 	struct nd_defrouter *deldr = NULL;
771 	struct nd_prefix *pr;
772 	struct nd_pfxrouter *pfxrtr;
773 
774 	ND6_UNLOCK_ASSERT();
775 
776 	/*
777 	 * Flush all the routing table entries that use the router
778 	 * as a next hop.
779 	 */
780 	if (ND_IFINFO(dr->ifp)->flags & ND6_IFF_ACCEPT_RTADV)
781 		rt6_flush(&dr->rtaddr, dr->ifp);
782 
783 #ifdef EXPERIMENTAL
784 	defrtr_ipv6_only_ifp(dr->ifp);
785 #endif
786 
787 	if (dr->installed) {
788 		deldr = dr;
789 		defrouter_delreq(dr);
790 	}
791 
792 	/*
793 	 * Also delete all the pointers to the router in each prefix lists.
794 	 */
795 	ND6_WLOCK();
796 	LIST_FOREACH(pr, &V_nd_prefix, ndpr_entry) {
797 		if ((pfxrtr = pfxrtr_lookup(pr, dr)) != NULL)
798 			pfxrtr_del(pfxrtr);
799 	}
800 	ND6_WUNLOCK();
801 
802 	pfxlist_onlink_check();
803 
804 	/*
805 	 * If the router is the primary one, choose a new one.
806 	 * Note that defrouter_select_fib() will remove the current
807          * gateway from the routing table.
808 	 */
809 	if (deldr)
810 		defrouter_select_fib(deldr->ifp->if_fib);
811 
812 	/*
813 	 * Release the list reference.
814 	 */
815 	defrouter_rele(dr);
816 }
817 
818 /*
819  * Default Router Selection according to Section 6.3.6 of RFC 2461 and
820  * draft-ietf-ipngwg-router-selection:
821  * 1) Routers that are reachable or probably reachable should be preferred.
822  *    If we have more than one (probably) reachable router, prefer ones
823  *    with the highest router preference.
824  * 2) When no routers on the list are known to be reachable or
825  *    probably reachable, routers SHOULD be selected in a round-robin
826  *    fashion, regardless of router preference values.
827  * 3) If the Default Router List is empty, assume that all
828  *    destinations are on-link.
829  *
830  * We assume nd_defrouter is sorted by router preference value.
831  * Since the code below covers both with and without router preference cases,
832  * we do not need to classify the cases by ifdef.
833  *
834  * At this moment, we do not try to install more than one default router,
835  * even when the multipath routing is available, because we're not sure about
836  * the benefits for stub hosts comparing to the risk of making the code
837  * complicated and the possibility of introducing bugs.
838  *
839  * We maintain a single list of routers for multiple FIBs, only considering one
840  * at a time based on the receiving interface's FIB. If @fibnum is RT_ALL_FIBS,
841  * we do the whole thing multiple times.
842  */
843 void
844 defrouter_select_fib(int fibnum)
845 {
846 	struct epoch_tracker et;
847 	struct nd_defrouter *dr, *selected_dr, *installed_dr;
848 	struct llentry *ln = NULL;
849 
850 	if (fibnum == RT_ALL_FIBS) {
851 		for (fibnum = 0; fibnum < rt_numfibs; fibnum++) {
852 			defrouter_select_fib(fibnum);
853 		}
854 	}
855 
856 	ND6_RLOCK();
857 	/*
858 	 * Let's handle easy case (3) first:
859 	 * If default router list is empty, there's nothing to be done.
860 	 */
861 	if (TAILQ_EMPTY(&V_nd_defrouter)) {
862 		ND6_RUNLOCK();
863 		return;
864 	}
865 
866 	/*
867 	 * Search for a (probably) reachable router from the list.
868 	 * We just pick up the first reachable one (if any), assuming that
869 	 * the ordering rule of the list described in defrtrlist_update().
870 	 */
871 	selected_dr = installed_dr = NULL;
872 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry) {
873 		NET_EPOCH_ENTER(et);
874 		if (selected_dr == NULL && dr->ifp->if_fib == fibnum &&
875 		    (ln = nd6_lookup(&dr->rtaddr, 0, dr->ifp)) &&
876 		    ND6_IS_LLINFO_PROBREACH(ln)) {
877 			selected_dr = dr;
878 			defrouter_ref(selected_dr);
879 		}
880 		NET_EPOCH_EXIT(et);
881 		if (ln != NULL) {
882 			LLE_RUNLOCK(ln);
883 			ln = NULL;
884 		}
885 
886 		if (dr->installed && dr->ifp->if_fib == fibnum) {
887 			if (installed_dr == NULL) {
888 				installed_dr = dr;
889 				defrouter_ref(installed_dr);
890 			} else {
891 				/*
892 				 * this should not happen.
893 				 * warn for diagnosis.
894 				 */
895 				log(LOG_ERR, "defrouter_select_fib: more than "
896 				             "one router is installed\n");
897 			}
898 		}
899 	}
900 	/*
901 	 * If none of the default routers was found to be reachable,
902 	 * round-robin the list regardless of preference.
903 	 * Otherwise, if we have an installed router, check if the selected
904 	 * (reachable) router should really be preferred to the installed one.
905 	 * We only prefer the new router when the old one is not reachable
906 	 * or when the new one has a really higher preference value.
907 	 */
908 	if (selected_dr == NULL) {
909 		if (installed_dr == NULL ||
910 		    TAILQ_NEXT(installed_dr, dr_entry) == NULL)
911 			dr = TAILQ_FIRST(&V_nd_defrouter);
912 		else
913 			dr = TAILQ_NEXT(installed_dr, dr_entry);
914 
915 		/* Ensure we select a router for this FIB. */
916 		TAILQ_FOREACH_FROM(dr, &V_nd_defrouter, dr_entry) {
917 			if (dr->ifp->if_fib == fibnum) {
918 				selected_dr = dr;
919 				defrouter_ref(selected_dr);
920 				break;
921 			}
922 		}
923 	} else if (installed_dr != NULL) {
924 		NET_EPOCH_ENTER(et);
925 		if ((ln = nd6_lookup(&installed_dr->rtaddr, 0,
926 		                     installed_dr->ifp)) &&
927 		    ND6_IS_LLINFO_PROBREACH(ln) &&
928 		    installed_dr->ifp->if_fib == fibnum &&
929 		    rtpref(selected_dr) <= rtpref(installed_dr)) {
930 			defrouter_rele(selected_dr);
931 			selected_dr = installed_dr;
932 		}
933 		NET_EPOCH_EXIT(et);
934 		if (ln != NULL)
935 			LLE_RUNLOCK(ln);
936 	}
937 	ND6_RUNLOCK();
938 
939 	/*
940 	 * If we selected a router for this FIB and it's different
941 	 * than the installed one, remove the installed router and
942 	 * install the selected one in its place.
943 	 */
944 	if (installed_dr != selected_dr) {
945 		if (installed_dr != NULL) {
946 			defrouter_delreq(installed_dr);
947 			defrouter_rele(installed_dr);
948 		}
949 		if (selected_dr != NULL)
950 			defrouter_addreq(selected_dr);
951 	}
952 	if (selected_dr != NULL)
953 		defrouter_rele(selected_dr);
954 }
955 
956 /*
957  * Maintain old KPI for default router selection.
958  * If unspecified, we can re-select routers for all FIBs.
959  */
960 void
961 defrouter_select(void)
962 {
963 	defrouter_select_fib(RT_ALL_FIBS);
964 }
965 
966 /*
967  * for default router selection
968  * regards router-preference field as a 2-bit signed integer
969  */
970 static int
971 rtpref(struct nd_defrouter *dr)
972 {
973 	switch (dr->raflags & ND_RA_FLAG_RTPREF_MASK) {
974 	case ND_RA_FLAG_RTPREF_HIGH:
975 		return (RTPREF_HIGH);
976 	case ND_RA_FLAG_RTPREF_MEDIUM:
977 	case ND_RA_FLAG_RTPREF_RSV:
978 		return (RTPREF_MEDIUM);
979 	case ND_RA_FLAG_RTPREF_LOW:
980 		return (RTPREF_LOW);
981 	default:
982 		/*
983 		 * This case should never happen.  If it did, it would mean a
984 		 * serious bug of kernel internal.  We thus always bark here.
985 		 * Or, can we even panic?
986 		 */
987 		log(LOG_ERR, "rtpref: impossible RA flag %x\n", dr->raflags);
988 		return (RTPREF_INVALID);
989 	}
990 	/* NOTREACHED */
991 }
992 
993 static struct nd_defrouter *
994 defrtrlist_update(struct nd_defrouter *new)
995 {
996 	struct nd_defrouter *dr, *n;
997 	uint64_t genid;
998 	int oldpref;
999 	bool writelocked;
1000 
1001 	if (new->rtlifetime == 0) {
1002 		defrouter_remove(&new->rtaddr, new->ifp);
1003 		return (NULL);
1004 	}
1005 
1006 	ND6_RLOCK();
1007 	writelocked = false;
1008 restart:
1009 	dr = defrouter_lookup_locked(&new->rtaddr, new->ifp);
1010 	if (dr != NULL) {
1011 		oldpref = rtpref(dr);
1012 
1013 		/* override */
1014 		dr->raflags = new->raflags; /* XXX flag check */
1015 		dr->rtlifetime = new->rtlifetime;
1016 		dr->expire = new->expire;
1017 
1018 		/*
1019 		 * If the preference does not change, there's no need
1020 		 * to sort the entries. Also make sure the selected
1021 		 * router is still installed in the kernel.
1022 		 */
1023 		if (dr->installed && rtpref(new) == oldpref) {
1024 			if (writelocked)
1025 				ND6_WUNLOCK();
1026 			else
1027 				ND6_RUNLOCK();
1028 			return (dr);
1029 		}
1030 	}
1031 
1032 	/*
1033 	 * The router needs to be reinserted into the default router
1034 	 * list, so upgrade to a write lock. If that fails and the list
1035 	 * has potentially changed while the lock was dropped, we'll
1036 	 * redo the lookup with the write lock held.
1037 	 */
1038 	if (!writelocked) {
1039 		writelocked = true;
1040 		if (!ND6_TRY_UPGRADE()) {
1041 			genid = V_nd6_list_genid;
1042 			ND6_RUNLOCK();
1043 			ND6_WLOCK();
1044 			if (genid != V_nd6_list_genid)
1045 				goto restart;
1046 		}
1047 	}
1048 
1049 	if (dr != NULL) {
1050 		/*
1051 		 * The preferred router may have changed, so relocate this
1052 		 * router.
1053 		 */
1054 		TAILQ_REMOVE(&V_nd_defrouter, dr, dr_entry);
1055 		n = dr;
1056 	} else {
1057 		n = malloc(sizeof(*n), M_IP6NDP, M_NOWAIT | M_ZERO);
1058 		if (n == NULL) {
1059 			ND6_WUNLOCK();
1060 			return (NULL);
1061 		}
1062 		memcpy(n, new, sizeof(*n));
1063 		/* Initialize with an extra reference for the caller. */
1064 		refcount_init(&n->refcnt, 2);
1065 	}
1066 
1067 	/*
1068 	 * Insert the new router in the Default Router List;
1069 	 * The Default Router List should be in the descending order
1070 	 * of router-preferece.  Routers with the same preference are
1071 	 * sorted in the arriving time order.
1072 	 */
1073 
1074 	/* insert at the end of the group */
1075 	TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry) {
1076 		if (rtpref(n) > rtpref(dr))
1077 			break;
1078 	}
1079 	if (dr != NULL)
1080 		TAILQ_INSERT_BEFORE(dr, n, dr_entry);
1081 	else
1082 		TAILQ_INSERT_TAIL(&V_nd_defrouter, n, dr_entry);
1083 	V_nd6_list_genid++;
1084 	ND6_WUNLOCK();
1085 
1086 	defrouter_select_fib(new->ifp->if_fib);
1087 
1088 	return (n);
1089 }
1090 
1091 static struct nd_pfxrouter *
1092 pfxrtr_lookup(struct nd_prefix *pr, struct nd_defrouter *dr)
1093 {
1094 	struct nd_pfxrouter *search;
1095 
1096 	ND6_LOCK_ASSERT();
1097 
1098 	LIST_FOREACH(search, &pr->ndpr_advrtrs, pfr_entry) {
1099 		if (search->router == dr)
1100 			break;
1101 	}
1102 	return (search);
1103 }
1104 
1105 static void
1106 pfxrtr_add(struct nd_prefix *pr, struct nd_defrouter *dr)
1107 {
1108 	struct nd_pfxrouter *new;
1109 	bool update;
1110 
1111 	ND6_UNLOCK_ASSERT();
1112 
1113 	ND6_RLOCK();
1114 	if (pfxrtr_lookup(pr, dr) != NULL) {
1115 		ND6_RUNLOCK();
1116 		return;
1117 	}
1118 	ND6_RUNLOCK();
1119 
1120 	new = malloc(sizeof(*new), M_IP6NDP, M_NOWAIT | M_ZERO);
1121 	if (new == NULL)
1122 		return;
1123 	defrouter_ref(dr);
1124 	new->router = dr;
1125 
1126 	ND6_WLOCK();
1127 	if (pfxrtr_lookup(pr, dr) == NULL) {
1128 		LIST_INSERT_HEAD(&pr->ndpr_advrtrs, new, pfr_entry);
1129 		update = true;
1130 	} else {
1131 		/* We lost a race to add the reference. */
1132 		defrouter_rele(dr);
1133 		free(new, M_IP6NDP);
1134 		update = false;
1135 	}
1136 	ND6_WUNLOCK();
1137 
1138 	if (update)
1139 		pfxlist_onlink_check();
1140 }
1141 
1142 static void
1143 pfxrtr_del(struct nd_pfxrouter *pfr)
1144 {
1145 
1146 	ND6_WLOCK_ASSERT();
1147 
1148 	LIST_REMOVE(pfr, pfr_entry);
1149 	defrouter_rele(pfr->router);
1150 	free(pfr, M_IP6NDP);
1151 }
1152 
1153 static struct nd_prefix *
1154 nd6_prefix_lookup_locked(struct nd_prefixctl *key)
1155 {
1156 	struct nd_prefix *search;
1157 
1158 	ND6_LOCK_ASSERT();
1159 
1160 	LIST_FOREACH(search, &V_nd_prefix, ndpr_entry) {
1161 		if (key->ndpr_ifp == search->ndpr_ifp &&
1162 		    key->ndpr_plen == search->ndpr_plen &&
1163 		    in6_are_prefix_equal(&key->ndpr_prefix.sin6_addr,
1164 		    &search->ndpr_prefix.sin6_addr, key->ndpr_plen)) {
1165 			nd6_prefix_ref(search);
1166 			break;
1167 		}
1168 	}
1169 	return (search);
1170 }
1171 
1172 struct nd_prefix *
1173 nd6_prefix_lookup(struct nd_prefixctl *key)
1174 {
1175 	struct nd_prefix *search;
1176 
1177 	ND6_RLOCK();
1178 	search = nd6_prefix_lookup_locked(key);
1179 	ND6_RUNLOCK();
1180 	return (search);
1181 }
1182 
1183 void
1184 nd6_prefix_ref(struct nd_prefix *pr)
1185 {
1186 
1187 	refcount_acquire(&pr->ndpr_refcnt);
1188 }
1189 
1190 void
1191 nd6_prefix_rele(struct nd_prefix *pr)
1192 {
1193 
1194 	if (refcount_release(&pr->ndpr_refcnt)) {
1195 		KASSERT(LIST_EMPTY(&pr->ndpr_advrtrs),
1196 		    ("prefix %p has advertising routers", pr));
1197 		free(pr, M_IP6NDP);
1198 	}
1199 }
1200 
1201 int
1202 nd6_prelist_add(struct nd_prefixctl *pr, struct nd_defrouter *dr,
1203     struct nd_prefix **newp)
1204 {
1205 	struct nd_prefix *new;
1206 	char ip6buf[INET6_ADDRSTRLEN];
1207 	int error;
1208 
1209 	new = malloc(sizeof(*new), M_IP6NDP, M_NOWAIT | M_ZERO);
1210 	if (new == NULL)
1211 		return (ENOMEM);
1212 	refcount_init(&new->ndpr_refcnt, newp != NULL ? 2 : 1);
1213 	new->ndpr_ifp = pr->ndpr_ifp;
1214 	new->ndpr_prefix = pr->ndpr_prefix;
1215 	new->ndpr_plen = pr->ndpr_plen;
1216 	new->ndpr_vltime = pr->ndpr_vltime;
1217 	new->ndpr_pltime = pr->ndpr_pltime;
1218 	new->ndpr_flags = pr->ndpr_flags;
1219 	if ((error = in6_init_prefix_ltimes(new)) != 0) {
1220 		free(new, M_IP6NDP);
1221 		return (error);
1222 	}
1223 	new->ndpr_lastupdate = time_uptime;
1224 
1225 	/* initialization */
1226 	LIST_INIT(&new->ndpr_advrtrs);
1227 	in6_prefixlen2mask(&new->ndpr_mask, new->ndpr_plen);
1228 	/* make prefix in the canonical form */
1229 	IN6_MASK_ADDR(&new->ndpr_prefix.sin6_addr, &new->ndpr_mask);
1230 
1231 	ND6_WLOCK();
1232 	LIST_INSERT_HEAD(&V_nd_prefix, new, ndpr_entry);
1233 	V_nd6_list_genid++;
1234 	ND6_WUNLOCK();
1235 
1236 	/* ND_OPT_PI_FLAG_ONLINK processing */
1237 	if (new->ndpr_raf_onlink) {
1238 		ND6_ONLINK_LOCK();
1239 		if ((error = nd6_prefix_onlink(new)) != 0) {
1240 			nd6log((LOG_ERR, "nd6_prelist_add: failed to make "
1241 			    "the prefix %s/%d on-link on %s (errno=%d)\n",
1242 			    ip6_sprintf(ip6buf, &pr->ndpr_prefix.sin6_addr),
1243 			    pr->ndpr_plen, if_name(pr->ndpr_ifp), error));
1244 			/* proceed anyway. XXX: is it correct? */
1245 		}
1246 		ND6_ONLINK_UNLOCK();
1247 	}
1248 
1249 	if (dr != NULL)
1250 		pfxrtr_add(new, dr);
1251 	if (newp != NULL)
1252 		*newp = new;
1253 	return (0);
1254 }
1255 
1256 /*
1257  * Remove a prefix from the prefix list and optionally stash it in a
1258  * caller-provided list.
1259  *
1260  * The ND6 lock must be held.
1261  */
1262 void
1263 nd6_prefix_unlink(struct nd_prefix *pr, struct nd_prhead *list)
1264 {
1265 
1266 	ND6_WLOCK_ASSERT();
1267 
1268 	LIST_REMOVE(pr, ndpr_entry);
1269 	V_nd6_list_genid++;
1270 	if (list != NULL)
1271 		LIST_INSERT_HEAD(list, pr, ndpr_entry);
1272 }
1273 
1274 /*
1275  * Free an unlinked prefix, first marking it off-link if necessary.
1276  */
1277 void
1278 nd6_prefix_del(struct nd_prefix *pr)
1279 {
1280 	struct nd_pfxrouter *pfr, *next;
1281 	int e;
1282 	char ip6buf[INET6_ADDRSTRLEN];
1283 
1284 	KASSERT(pr->ndpr_addrcnt == 0,
1285 	    ("prefix %p has referencing addresses", pr));
1286 	ND6_UNLOCK_ASSERT();
1287 
1288 	/*
1289 	 * Though these flags are now meaningless, we'd rather keep the value
1290 	 * of pr->ndpr_raf_onlink and pr->ndpr_raf_auto not to confuse users
1291 	 * when executing "ndp -p".
1292 	 */
1293 	if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0) {
1294 		ND6_ONLINK_LOCK();
1295 		if ((e = nd6_prefix_offlink(pr)) != 0) {
1296 			nd6log((LOG_ERR,
1297 			    "nd6_prefix_del: failed to make %s/%d offlink "
1298 			    "on %s, errno=%d\n",
1299 			    ip6_sprintf(ip6buf, &pr->ndpr_prefix.sin6_addr),
1300 			    pr->ndpr_plen, if_name(pr->ndpr_ifp), e));
1301 			/* what should we do? */
1302 		}
1303 		ND6_ONLINK_UNLOCK();
1304 	}
1305 
1306 	/* Release references to routers that have advertised this prefix. */
1307 	ND6_WLOCK();
1308 	LIST_FOREACH_SAFE(pfr, &pr->ndpr_advrtrs, pfr_entry, next)
1309 		pfxrtr_del(pfr);
1310 	ND6_WUNLOCK();
1311 
1312 	nd6_prefix_rele(pr);
1313 
1314 	pfxlist_onlink_check();
1315 }
1316 
1317 static int
1318 prelist_update(struct nd_prefixctl *new, struct nd_defrouter *dr,
1319     struct mbuf *m, int mcast)
1320 {
1321 	struct in6_ifaddr *ia6 = NULL, *ia6_match = NULL;
1322 	struct ifaddr *ifa;
1323 	struct ifnet *ifp = new->ndpr_ifp;
1324 	struct nd_prefix *pr;
1325 	int error = 0;
1326 	int auth;
1327 	struct in6_addrlifetime lt6_tmp;
1328 	char ip6buf[INET6_ADDRSTRLEN];
1329 	struct epoch_tracker et;
1330 
1331 	auth = 0;
1332 	if (m) {
1333 		/*
1334 		 * Authenticity for NA consists authentication for
1335 		 * both IP header and IP datagrams, doesn't it ?
1336 		 */
1337 #if defined(M_AUTHIPHDR) && defined(M_AUTHIPDGM)
1338 		auth = ((m->m_flags & M_AUTHIPHDR) &&
1339 		    (m->m_flags & M_AUTHIPDGM));
1340 #endif
1341 	}
1342 
1343 	if ((pr = nd6_prefix_lookup(new)) != NULL) {
1344 		/*
1345 		 * nd6_prefix_lookup() ensures that pr and new have the same
1346 		 * prefix on a same interface.
1347 		 */
1348 
1349 		/*
1350 		 * Update prefix information.  Note that the on-link (L) bit
1351 		 * and the autonomous (A) bit should NOT be changed from 1
1352 		 * to 0.
1353 		 */
1354 		if (new->ndpr_raf_onlink == 1)
1355 			pr->ndpr_raf_onlink = 1;
1356 		if (new->ndpr_raf_auto == 1)
1357 			pr->ndpr_raf_auto = 1;
1358 		if (new->ndpr_raf_onlink) {
1359 			pr->ndpr_vltime = new->ndpr_vltime;
1360 			pr->ndpr_pltime = new->ndpr_pltime;
1361 			(void)in6_init_prefix_ltimes(pr); /* XXX error case? */
1362 			pr->ndpr_lastupdate = time_uptime;
1363 		}
1364 
1365 		if (new->ndpr_raf_onlink &&
1366 		    (pr->ndpr_stateflags & NDPRF_ONLINK) == 0) {
1367 			ND6_ONLINK_LOCK();
1368 			if ((error = nd6_prefix_onlink(pr)) != 0) {
1369 				nd6log((LOG_ERR,
1370 				    "prelist_update: failed to make "
1371 				    "the prefix %s/%d on-link on %s "
1372 				    "(errno=%d)\n",
1373 				    ip6_sprintf(ip6buf,
1374 				        &pr->ndpr_prefix.sin6_addr),
1375 				    pr->ndpr_plen, if_name(pr->ndpr_ifp),
1376 				    error));
1377 				/* proceed anyway. XXX: is it correct? */
1378 			}
1379 			ND6_ONLINK_UNLOCK();
1380 		}
1381 
1382 		if (dr != NULL)
1383 			pfxrtr_add(pr, dr);
1384 	} else {
1385 		if (new->ndpr_vltime == 0)
1386 			goto end;
1387 		if (new->ndpr_raf_onlink == 0 && new->ndpr_raf_auto == 0)
1388 			goto end;
1389 
1390 		error = nd6_prelist_add(new, dr, &pr);
1391 		if (error != 0) {
1392 			nd6log((LOG_NOTICE, "prelist_update: "
1393 			    "nd6_prelist_add failed for %s/%d on %s errno=%d\n",
1394 			    ip6_sprintf(ip6buf, &new->ndpr_prefix.sin6_addr),
1395 			    new->ndpr_plen, if_name(new->ndpr_ifp), error));
1396 			goto end; /* we should just give up in this case. */
1397 		}
1398 
1399 		/*
1400 		 * XXX: from the ND point of view, we can ignore a prefix
1401 		 * with the on-link bit being zero.  However, we need a
1402 		 * prefix structure for references from autoconfigured
1403 		 * addresses.  Thus, we explicitly make sure that the prefix
1404 		 * itself expires now.
1405 		 */
1406 		if (pr->ndpr_raf_onlink == 0) {
1407 			pr->ndpr_vltime = 0;
1408 			pr->ndpr_pltime = 0;
1409 			in6_init_prefix_ltimes(pr);
1410 		}
1411 	}
1412 
1413 	/*
1414 	 * Address autoconfiguration based on Section 5.5.3 of RFC 2462.
1415 	 * Note that pr must be non NULL at this point.
1416 	 */
1417 
1418 	/* 5.5.3 (a). Ignore the prefix without the A bit set. */
1419 	if (!new->ndpr_raf_auto)
1420 		goto end;
1421 
1422 	/*
1423 	 * 5.5.3 (b). the link-local prefix should have been ignored in
1424 	 * nd6_ra_input.
1425 	 */
1426 
1427 	/* 5.5.3 (c). Consistency check on lifetimes: pltime <= vltime. */
1428 	if (new->ndpr_pltime > new->ndpr_vltime) {
1429 		error = EINVAL;	/* XXX: won't be used */
1430 		goto end;
1431 	}
1432 
1433 	/*
1434 	 * 5.5.3 (d).  If the prefix advertised is not equal to the prefix of
1435 	 * an address configured by stateless autoconfiguration already in the
1436 	 * list of addresses associated with the interface, and the Valid
1437 	 * Lifetime is not 0, form an address.  We first check if we have
1438 	 * a matching prefix.
1439 	 * Note: we apply a clarification in rfc2462bis-02 here.  We only
1440 	 * consider autoconfigured addresses while RFC2462 simply said
1441 	 * "address".
1442 	 */
1443 	NET_EPOCH_ENTER(et);
1444 	CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1445 		struct in6_ifaddr *ifa6;
1446 		u_int32_t remaininglifetime;
1447 
1448 		if (ifa->ifa_addr->sa_family != AF_INET6)
1449 			continue;
1450 
1451 		ifa6 = (struct in6_ifaddr *)ifa;
1452 
1453 		/*
1454 		 * We only consider autoconfigured addresses as per rfc2462bis.
1455 		 */
1456 		if (!(ifa6->ia6_flags & IN6_IFF_AUTOCONF))
1457 			continue;
1458 
1459 		/*
1460 		 * Spec is not clear here, but I believe we should concentrate
1461 		 * on unicast (i.e. not anycast) addresses.
1462 		 * XXX: other ia6_flags? detached or duplicated?
1463 		 */
1464 		if ((ifa6->ia6_flags & IN6_IFF_ANYCAST) != 0)
1465 			continue;
1466 
1467 		/*
1468 		 * Ignore the address if it is not associated with a prefix
1469 		 * or is associated with a prefix that is different from this
1470 		 * one.  (pr is never NULL here)
1471 		 */
1472 		if (ifa6->ia6_ndpr != pr)
1473 			continue;
1474 
1475 		if (ia6_match == NULL) /* remember the first one */
1476 			ia6_match = ifa6;
1477 
1478 		/*
1479 		 * An already autoconfigured address matched.  Now that we
1480 		 * are sure there is at least one matched address, we can
1481 		 * proceed to 5.5.3. (e): update the lifetimes according to the
1482 		 * "two hours" rule and the privacy extension.
1483 		 * We apply some clarifications in rfc2462bis:
1484 		 * - use remaininglifetime instead of storedlifetime as a
1485 		 *   variable name
1486 		 * - remove the dead code in the "two-hour" rule
1487 		 */
1488 #define TWOHOUR		(120*60)
1489 		lt6_tmp = ifa6->ia6_lifetime;
1490 
1491 		if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME)
1492 			remaininglifetime = ND6_INFINITE_LIFETIME;
1493 		else if (time_uptime - ifa6->ia6_updatetime >
1494 			 lt6_tmp.ia6t_vltime) {
1495 			/*
1496 			 * The case of "invalid" address.  We should usually
1497 			 * not see this case.
1498 			 */
1499 			remaininglifetime = 0;
1500 		} else
1501 			remaininglifetime = lt6_tmp.ia6t_vltime -
1502 			    (time_uptime - ifa6->ia6_updatetime);
1503 
1504 		/* when not updating, keep the current stored lifetime. */
1505 		lt6_tmp.ia6t_vltime = remaininglifetime;
1506 
1507 		if (TWOHOUR < new->ndpr_vltime ||
1508 		    remaininglifetime < new->ndpr_vltime) {
1509 			lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1510 		} else if (remaininglifetime <= TWOHOUR) {
1511 			if (auth) {
1512 				lt6_tmp.ia6t_vltime = new->ndpr_vltime;
1513 			}
1514 		} else {
1515 			/*
1516 			 * new->ndpr_vltime <= TWOHOUR &&
1517 			 * TWOHOUR < remaininglifetime
1518 			 */
1519 			lt6_tmp.ia6t_vltime = TWOHOUR;
1520 		}
1521 
1522 		/* The 2 hour rule is not imposed for preferred lifetime. */
1523 		lt6_tmp.ia6t_pltime = new->ndpr_pltime;
1524 
1525 		in6_init_address_ltimes(pr, &lt6_tmp);
1526 
1527 		/*
1528 		 * We need to treat lifetimes for temporary addresses
1529 		 * differently, according to
1530 		 * draft-ietf-ipv6-privacy-addrs-v2-01.txt 3.3 (1);
1531 		 * we only update the lifetimes when they are in the maximum
1532 		 * intervals.
1533 		 */
1534 		if ((ifa6->ia6_flags & IN6_IFF_TEMPORARY) != 0) {
1535 			u_int32_t maxvltime, maxpltime;
1536 
1537 			if (V_ip6_temp_valid_lifetime >
1538 			    (u_int32_t)((time_uptime - ifa6->ia6_createtime) +
1539 			    V_ip6_desync_factor)) {
1540 				maxvltime = V_ip6_temp_valid_lifetime -
1541 				    (time_uptime - ifa6->ia6_createtime) -
1542 				    V_ip6_desync_factor;
1543 			} else
1544 				maxvltime = 0;
1545 			if (V_ip6_temp_preferred_lifetime >
1546 			    (u_int32_t)((time_uptime - ifa6->ia6_createtime) +
1547 			    V_ip6_desync_factor)) {
1548 				maxpltime = V_ip6_temp_preferred_lifetime -
1549 				    (time_uptime - ifa6->ia6_createtime) -
1550 				    V_ip6_desync_factor;
1551 			} else
1552 				maxpltime = 0;
1553 
1554 			if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME ||
1555 			    lt6_tmp.ia6t_vltime > maxvltime) {
1556 				lt6_tmp.ia6t_vltime = maxvltime;
1557 			}
1558 			if (lt6_tmp.ia6t_pltime == ND6_INFINITE_LIFETIME ||
1559 			    lt6_tmp.ia6t_pltime > maxpltime) {
1560 				lt6_tmp.ia6t_pltime = maxpltime;
1561 			}
1562 		}
1563 		ifa6->ia6_lifetime = lt6_tmp;
1564 		ifa6->ia6_updatetime = time_uptime;
1565 	}
1566 	NET_EPOCH_EXIT(et);
1567 	if (ia6_match == NULL && new->ndpr_vltime) {
1568 		int ifidlen;
1569 
1570 		/*
1571 		 * 5.5.3 (d) (continued)
1572 		 * No address matched and the valid lifetime is non-zero.
1573 		 * Create a new address.
1574 		 */
1575 
1576 		/*
1577 		 * Prefix Length check:
1578 		 * If the sum of the prefix length and interface identifier
1579 		 * length does not equal 128 bits, the Prefix Information
1580 		 * option MUST be ignored.  The length of the interface
1581 		 * identifier is defined in a separate link-type specific
1582 		 * document.
1583 		 */
1584 		ifidlen = in6_if2idlen(ifp);
1585 		if (ifidlen < 0) {
1586 			/* this should not happen, so we always log it. */
1587 			log(LOG_ERR, "prelist_update: IFID undefined (%s)\n",
1588 			    if_name(ifp));
1589 			goto end;
1590 		}
1591 		if (ifidlen + pr->ndpr_plen != 128) {
1592 			nd6log((LOG_INFO,
1593 			    "prelist_update: invalid prefixlen "
1594 			    "%d for %s, ignored\n",
1595 			    pr->ndpr_plen, if_name(ifp)));
1596 			goto end;
1597 		}
1598 
1599 		if ((ia6 = in6_ifadd(new, mcast)) != NULL) {
1600 			/*
1601 			 * note that we should use pr (not new) for reference.
1602 			 */
1603 			pr->ndpr_addrcnt++;
1604 			ia6->ia6_ndpr = pr;
1605 
1606 			/*
1607 			 * RFC 3041 3.3 (2).
1608 			 * When a new public address is created as described
1609 			 * in RFC2462, also create a new temporary address.
1610 			 *
1611 			 * RFC 3041 3.5.
1612 			 * When an interface connects to a new link, a new
1613 			 * randomized interface identifier should be generated
1614 			 * immediately together with a new set of temporary
1615 			 * addresses.  Thus, we specifiy 1 as the 2nd arg of
1616 			 * in6_tmpifadd().
1617 			 */
1618 			if (V_ip6_use_tempaddr) {
1619 				int e;
1620 				if ((e = in6_tmpifadd(ia6, 1, 1)) != 0) {
1621 					nd6log((LOG_NOTICE, "prelist_update: "
1622 					    "failed to create a temporary "
1623 					    "address, errno=%d\n",
1624 					    e));
1625 				}
1626 			}
1627 			ifa_free(&ia6->ia_ifa);
1628 
1629 			/*
1630 			 * A newly added address might affect the status
1631 			 * of other addresses, so we check and update it.
1632 			 * XXX: what if address duplication happens?
1633 			 */
1634 			pfxlist_onlink_check();
1635 		} else {
1636 			/* just set an error. do not bark here. */
1637 			error = EADDRNOTAVAIL; /* XXX: might be unused. */
1638 		}
1639 	}
1640 
1641 end:
1642 	if (pr != NULL)
1643 		nd6_prefix_rele(pr);
1644 	return (error);
1645 }
1646 
1647 /*
1648  * A supplement function used in the on-link detection below;
1649  * detect if a given prefix has a (probably) reachable advertising router.
1650  * XXX: lengthy function name...
1651  */
1652 static struct nd_pfxrouter *
1653 find_pfxlist_reachable_router(struct nd_prefix *pr)
1654 {
1655 	struct epoch_tracker et;
1656 	struct nd_pfxrouter *pfxrtr;
1657 	struct llentry *ln;
1658 	int canreach;
1659 
1660 	ND6_LOCK_ASSERT();
1661 
1662 	LIST_FOREACH(pfxrtr, &pr->ndpr_advrtrs, pfr_entry) {
1663 		NET_EPOCH_ENTER(et);
1664 		ln = nd6_lookup(&pfxrtr->router->rtaddr, 0, pfxrtr->router->ifp);
1665 		NET_EPOCH_EXIT(et);
1666 		if (ln == NULL)
1667 			continue;
1668 		canreach = ND6_IS_LLINFO_PROBREACH(ln);
1669 		LLE_RUNLOCK(ln);
1670 		if (canreach)
1671 			break;
1672 	}
1673 	return (pfxrtr);
1674 }
1675 
1676 /*
1677  * Check if each prefix in the prefix list has at least one available router
1678  * that advertised the prefix (a router is "available" if its neighbor cache
1679  * entry is reachable or probably reachable).
1680  * If the check fails, the prefix may be off-link, because, for example,
1681  * we have moved from the network but the lifetime of the prefix has not
1682  * expired yet.  So we should not use the prefix if there is another prefix
1683  * that has an available router.
1684  * But, if there is no prefix that has an available router, we still regard
1685  * all the prefixes as on-link.  This is because we can't tell if all the
1686  * routers are simply dead or if we really moved from the network and there
1687  * is no router around us.
1688  */
1689 void
1690 pfxlist_onlink_check(void)
1691 {
1692 	struct nd_prefix *pr;
1693 	struct in6_ifaddr *ifa;
1694 	struct nd_defrouter *dr;
1695 	struct nd_pfxrouter *pfxrtr = NULL;
1696 	struct rm_priotracker in6_ifa_tracker;
1697 	uint64_t genid;
1698 	uint32_t flags;
1699 
1700 	ND6_ONLINK_LOCK();
1701 	ND6_RLOCK();
1702 
1703 	/*
1704 	 * Check if there is a prefix that has a reachable advertising
1705 	 * router.
1706 	 */
1707 	LIST_FOREACH(pr, &V_nd_prefix, ndpr_entry) {
1708 		if (pr->ndpr_raf_onlink && find_pfxlist_reachable_router(pr))
1709 			break;
1710 	}
1711 
1712 	/*
1713 	 * If we have no such prefix, check whether we still have a router
1714 	 * that does not advertise any prefixes.
1715 	 */
1716 	if (pr == NULL) {
1717 		TAILQ_FOREACH(dr, &V_nd_defrouter, dr_entry) {
1718 			struct nd_prefix *pr0;
1719 
1720 			LIST_FOREACH(pr0, &V_nd_prefix, ndpr_entry) {
1721 				if ((pfxrtr = pfxrtr_lookup(pr0, dr)) != NULL)
1722 					break;
1723 			}
1724 			if (pfxrtr != NULL)
1725 				break;
1726 		}
1727 	}
1728 	if (pr != NULL || (!TAILQ_EMPTY(&V_nd_defrouter) && pfxrtr == NULL)) {
1729 		/*
1730 		 * There is at least one prefix that has a reachable router,
1731 		 * or at least a router which probably does not advertise
1732 		 * any prefixes.  The latter would be the case when we move
1733 		 * to a new link where we have a router that does not provide
1734 		 * prefixes and we configure an address by hand.
1735 		 * Detach prefixes which have no reachable advertising
1736 		 * router, and attach other prefixes.
1737 		 */
1738 		LIST_FOREACH(pr, &V_nd_prefix, ndpr_entry) {
1739 			/* XXX: a link-local prefix should never be detached */
1740 			if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr) ||
1741 			    pr->ndpr_raf_onlink == 0 ||
1742 			    pr->ndpr_raf_auto == 0)
1743 				continue;
1744 
1745 			if ((pr->ndpr_stateflags & NDPRF_DETACHED) == 0 &&
1746 			    find_pfxlist_reachable_router(pr) == NULL)
1747 				pr->ndpr_stateflags |= NDPRF_DETACHED;
1748 			else if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0 &&
1749 			    find_pfxlist_reachable_router(pr) != NULL)
1750 				pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1751 		}
1752 	} else {
1753 		/* there is no prefix that has a reachable router */
1754 		LIST_FOREACH(pr, &V_nd_prefix, ndpr_entry) {
1755 			if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr) ||
1756 			    pr->ndpr_raf_onlink == 0 ||
1757 			    pr->ndpr_raf_auto == 0)
1758 				continue;
1759 			pr->ndpr_stateflags &= ~NDPRF_DETACHED;
1760 		}
1761 	}
1762 
1763 	/*
1764 	 * Remove each interface route associated with a (just) detached
1765 	 * prefix, and reinstall the interface route for a (just) attached
1766 	 * prefix.  Note that all attempt of reinstallation does not
1767 	 * necessarily success, when a same prefix is shared among multiple
1768 	 * interfaces.  Such cases will be handled in nd6_prefix_onlink,
1769 	 * so we don't have to care about them.
1770 	 */
1771 restart:
1772 	LIST_FOREACH(pr, &V_nd_prefix, ndpr_entry) {
1773 		char ip6buf[INET6_ADDRSTRLEN];
1774 		int e;
1775 
1776 		if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr) ||
1777 		    pr->ndpr_raf_onlink == 0 ||
1778 		    pr->ndpr_raf_auto == 0)
1779 			continue;
1780 
1781 		flags = pr->ndpr_stateflags & (NDPRF_DETACHED | NDPRF_ONLINK);
1782 		if (flags == 0 || flags == (NDPRF_DETACHED | NDPRF_ONLINK)) {
1783 			genid = V_nd6_list_genid;
1784 			ND6_RUNLOCK();
1785 			if ((flags & NDPRF_ONLINK) != 0 &&
1786 			    (e = nd6_prefix_offlink(pr)) != 0) {
1787 				nd6log((LOG_ERR,
1788 				    "pfxlist_onlink_check: failed to "
1789 				    "make %s/%d offlink, errno=%d\n",
1790 				    ip6_sprintf(ip6buf,
1791 					    &pr->ndpr_prefix.sin6_addr),
1792 					    pr->ndpr_plen, e));
1793 			} else if ((flags & NDPRF_ONLINK) == 0 &&
1794 			    (e = nd6_prefix_onlink(pr)) != 0) {
1795 				nd6log((LOG_ERR,
1796 				    "pfxlist_onlink_check: failed to "
1797 				    "make %s/%d onlink, errno=%d\n",
1798 				    ip6_sprintf(ip6buf,
1799 					    &pr->ndpr_prefix.sin6_addr),
1800 					    pr->ndpr_plen, e));
1801 			}
1802 			ND6_RLOCK();
1803 			if (genid != V_nd6_list_genid)
1804 				goto restart;
1805 		}
1806 	}
1807 
1808 	/*
1809 	 * Changes on the prefix status might affect address status as well.
1810 	 * Make sure that all addresses derived from an attached prefix are
1811 	 * attached, and that all addresses derived from a detached prefix are
1812 	 * detached.  Note, however, that a manually configured address should
1813 	 * always be attached.
1814 	 * The precise detection logic is same as the one for prefixes.
1815 	 */
1816 	IN6_IFADDR_RLOCK(&in6_ifa_tracker);
1817 	CK_STAILQ_FOREACH(ifa, &V_in6_ifaddrhead, ia_link) {
1818 		if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF))
1819 			continue;
1820 
1821 		if (ifa->ia6_ndpr == NULL) {
1822 			/*
1823 			 * This can happen when we first configure the address
1824 			 * (i.e. the address exists, but the prefix does not).
1825 			 * XXX: complicated relationships...
1826 			 */
1827 			continue;
1828 		}
1829 
1830 		if (find_pfxlist_reachable_router(ifa->ia6_ndpr))
1831 			break;
1832 	}
1833 	if (ifa) {
1834 		CK_STAILQ_FOREACH(ifa, &V_in6_ifaddrhead, ia_link) {
1835 			if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1836 				continue;
1837 
1838 			if (ifa->ia6_ndpr == NULL) /* XXX: see above. */
1839 				continue;
1840 
1841 			if (find_pfxlist_reachable_router(ifa->ia6_ndpr)) {
1842 				if (ifa->ia6_flags & IN6_IFF_DETACHED) {
1843 					ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1844 					ifa->ia6_flags |= IN6_IFF_TENTATIVE;
1845 					nd6_dad_start((struct ifaddr *)ifa, 0);
1846 				}
1847 			} else {
1848 				ifa->ia6_flags |= IN6_IFF_DETACHED;
1849 			}
1850 		}
1851 	} else {
1852 		CK_STAILQ_FOREACH(ifa, &V_in6_ifaddrhead, ia_link) {
1853 			if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1854 				continue;
1855 
1856 			if (ifa->ia6_flags & IN6_IFF_DETACHED) {
1857 				ifa->ia6_flags &= ~IN6_IFF_DETACHED;
1858 				ifa->ia6_flags |= IN6_IFF_TENTATIVE;
1859 				/* Do we need a delay in this case? */
1860 				nd6_dad_start((struct ifaddr *)ifa, 0);
1861 			}
1862 		}
1863 	}
1864 	IN6_IFADDR_RUNLOCK(&in6_ifa_tracker);
1865 	ND6_RUNLOCK();
1866 	ND6_ONLINK_UNLOCK();
1867 }
1868 
1869 static int
1870 nd6_prefix_onlink_rtrequest(struct nd_prefix *pr, struct ifaddr *ifa)
1871 {
1872 	static struct sockaddr_dl null_sdl = {sizeof(null_sdl), AF_LINK};
1873 	struct rib_head *rnh;
1874 	struct rtentry *rt;
1875 	struct sockaddr_in6 mask6;
1876 	u_long rtflags;
1877 	int error, a_failure, fibnum, maxfib;
1878 
1879 	/*
1880 	 * in6_ifinit() sets nd6_rtrequest to ifa_rtrequest for all ifaddrs.
1881 	 * ifa->ifa_rtrequest = nd6_rtrequest;
1882 	 */
1883 	bzero(&mask6, sizeof(mask6));
1884 	mask6.sin6_len = sizeof(mask6);
1885 	mask6.sin6_addr = pr->ndpr_mask;
1886 	rtflags = (ifa->ifa_flags & ~IFA_RTSELF) | RTF_UP;
1887 
1888 	if(V_rt_add_addr_allfibs) {
1889 		fibnum = 0;
1890 		maxfib = rt_numfibs;
1891 	} else {
1892 		fibnum = ifa->ifa_ifp->if_fib;
1893 		maxfib = fibnum + 1;
1894 	}
1895 	a_failure = 0;
1896 	for (; fibnum < maxfib; fibnum++) {
1897 
1898 		rt = NULL;
1899 		error = in6_rtrequest(RTM_ADD,
1900 		    (struct sockaddr *)&pr->ndpr_prefix, ifa->ifa_addr,
1901 		    (struct sockaddr *)&mask6, rtflags, &rt, fibnum);
1902 		if (error == 0) {
1903 			KASSERT(rt != NULL, ("%s: in6_rtrequest return no "
1904 			    "error(%d) but rt is NULL, pr=%p, ifa=%p", __func__,
1905 			    error, pr, ifa));
1906 
1907 			rnh = rt_tables_get_rnh(rt->rt_fibnum, AF_INET6);
1908 			/* XXX what if rhn == NULL? */
1909 			RIB_WLOCK(rnh);
1910 			RT_LOCK(rt);
1911 			if (rt_setgate(rt, rt_key(rt),
1912 			    (struct sockaddr *)&null_sdl) == 0) {
1913 				struct sockaddr_dl *dl;
1914 
1915 				dl = (struct sockaddr_dl *)rt->rt_gateway;
1916 				dl->sdl_type = rt->rt_ifp->if_type;
1917 				dl->sdl_index = rt->rt_ifp->if_index;
1918 			}
1919 			RIB_WUNLOCK(rnh);
1920 			nd6_rtmsg(RTM_ADD, rt);
1921 			RT_UNLOCK(rt);
1922 			pr->ndpr_stateflags |= NDPRF_ONLINK;
1923 		} else {
1924 			char ip6buf[INET6_ADDRSTRLEN];
1925 			char ip6bufg[INET6_ADDRSTRLEN];
1926 			char ip6bufm[INET6_ADDRSTRLEN];
1927 			struct sockaddr_in6 *sin6;
1928 
1929 			sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
1930 			nd6log((LOG_ERR, "nd6_prefix_onlink: failed to add "
1931 			    "route for a prefix (%s/%d) on %s, gw=%s, mask=%s, "
1932 			    "flags=%lx errno = %d\n",
1933 			    ip6_sprintf(ip6buf, &pr->ndpr_prefix.sin6_addr),
1934 			    pr->ndpr_plen, if_name(pr->ndpr_ifp),
1935 			    ip6_sprintf(ip6bufg, &sin6->sin6_addr),
1936 			    ip6_sprintf(ip6bufm, &mask6.sin6_addr),
1937 			    rtflags, error));
1938 
1939 			/* Save last error to return, see rtinit(). */
1940 			a_failure = error;
1941 		}
1942 
1943 		if (rt != NULL) {
1944 			RT_LOCK(rt);
1945 			RT_REMREF(rt);
1946 			RT_UNLOCK(rt);
1947 		}
1948 	}
1949 
1950 	/* Return the last error we got. */
1951 	return (a_failure);
1952 }
1953 
1954 int
1955 nd6_prefix_onlink(struct nd_prefix *pr)
1956 {
1957 	struct ifaddr *ifa;
1958 	struct ifnet *ifp = pr->ndpr_ifp;
1959 	struct nd_prefix *opr;
1960 	char ip6buf[INET6_ADDRSTRLEN];
1961 	int error;
1962 
1963 	ND6_ONLINK_LOCK_ASSERT();
1964 	ND6_UNLOCK_ASSERT();
1965 
1966 	if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0)
1967 		return (EEXIST);
1968 
1969 	/*
1970 	 * Add the interface route associated with the prefix.  Before
1971 	 * installing the route, check if there's the same prefix on another
1972 	 * interface, and the prefix has already installed the interface route.
1973 	 * Although such a configuration is expected to be rare, we explicitly
1974 	 * allow it.
1975 	 */
1976 	ND6_RLOCK();
1977 	LIST_FOREACH(opr, &V_nd_prefix, ndpr_entry) {
1978 		if (opr == pr)
1979 			continue;
1980 
1981 		if ((opr->ndpr_stateflags & NDPRF_ONLINK) == 0)
1982 			continue;
1983 
1984 		if (!V_rt_add_addr_allfibs &&
1985 		    opr->ndpr_ifp->if_fib != pr->ndpr_ifp->if_fib)
1986 			continue;
1987 
1988 		if (opr->ndpr_plen == pr->ndpr_plen &&
1989 		    in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
1990 		    &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen)) {
1991 			ND6_RUNLOCK();
1992 			return (0);
1993 		}
1994 	}
1995 	ND6_RUNLOCK();
1996 
1997 	/*
1998 	 * We prefer link-local addresses as the associated interface address.
1999 	 */
2000 	/* search for a link-local addr */
2001 	ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp,
2002 	    IN6_IFF_NOTREADY | IN6_IFF_ANYCAST);
2003 	if (ifa == NULL) {
2004 		struct epoch_tracker et;
2005 
2006 		/* XXX: freebsd does not have ifa_ifwithaf */
2007 		NET_EPOCH_ENTER(et);
2008 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
2009 			if (ifa->ifa_addr->sa_family == AF_INET6) {
2010 				ifa_ref(ifa);
2011 				break;
2012 			}
2013 		}
2014 		NET_EPOCH_EXIT(et);
2015 		/* should we care about ia6_flags? */
2016 	}
2017 	if (ifa == NULL) {
2018 		/*
2019 		 * This can still happen, when, for example, we receive an RA
2020 		 * containing a prefix with the L bit set and the A bit clear,
2021 		 * after removing all IPv6 addresses on the receiving
2022 		 * interface.  This should, of course, be rare though.
2023 		 */
2024 		nd6log((LOG_NOTICE,
2025 		    "nd6_prefix_onlink: failed to find any ifaddr"
2026 		    " to add route for a prefix(%s/%d) on %s\n",
2027 		    ip6_sprintf(ip6buf, &pr->ndpr_prefix.sin6_addr),
2028 		    pr->ndpr_plen, if_name(ifp)));
2029 		return (0);
2030 	}
2031 
2032 	error = nd6_prefix_onlink_rtrequest(pr, ifa);
2033 
2034 	if (ifa != NULL)
2035 		ifa_free(ifa);
2036 
2037 	return (error);
2038 }
2039 
2040 int
2041 nd6_prefix_offlink(struct nd_prefix *pr)
2042 {
2043 	int error = 0;
2044 	struct ifnet *ifp = pr->ndpr_ifp;
2045 	struct nd_prefix *opr;
2046 	struct sockaddr_in6 sa6, mask6;
2047 	struct rtentry *rt;
2048 	char ip6buf[INET6_ADDRSTRLEN];
2049 	uint64_t genid;
2050 	int fibnum, maxfib, a_failure;
2051 
2052 	ND6_ONLINK_LOCK_ASSERT();
2053 	ND6_UNLOCK_ASSERT();
2054 
2055 	if ((pr->ndpr_stateflags & NDPRF_ONLINK) == 0)
2056 		return (EEXIST);
2057 
2058 	bzero(&sa6, sizeof(sa6));
2059 	sa6.sin6_family = AF_INET6;
2060 	sa6.sin6_len = sizeof(sa6);
2061 	bcopy(&pr->ndpr_prefix.sin6_addr, &sa6.sin6_addr,
2062 	    sizeof(struct in6_addr));
2063 	bzero(&mask6, sizeof(mask6));
2064 	mask6.sin6_family = AF_INET6;
2065 	mask6.sin6_len = sizeof(sa6);
2066 	bcopy(&pr->ndpr_mask, &mask6.sin6_addr, sizeof(struct in6_addr));
2067 
2068 	if (V_rt_add_addr_allfibs) {
2069 		fibnum = 0;
2070 		maxfib = rt_numfibs;
2071 	} else {
2072 		fibnum = ifp->if_fib;
2073 		maxfib = fibnum + 1;
2074 	}
2075 
2076 	a_failure = 0;
2077 	for (; fibnum < maxfib; fibnum++) {
2078 		rt = NULL;
2079 		error = in6_rtrequest(RTM_DELETE, (struct sockaddr *)&sa6, NULL,
2080 		    (struct sockaddr *)&mask6, 0, &rt, fibnum);
2081 		if (error == 0) {
2082 			/* report the route deletion to the routing socket. */
2083 			if (rt != NULL)
2084 				nd6_rtmsg(RTM_DELETE, rt);
2085 		} else {
2086 			/* Save last error to return, see rtinit(). */
2087 			a_failure = error;
2088 		}
2089 		if (rt != NULL) {
2090 			RTFREE(rt);
2091 		}
2092 	}
2093 	error = a_failure;
2094 	a_failure = 1;
2095 	if (error == 0) {
2096 		pr->ndpr_stateflags &= ~NDPRF_ONLINK;
2097 
2098 		/*
2099 		 * There might be the same prefix on another interface,
2100 		 * the prefix which could not be on-link just because we have
2101 		 * the interface route (see comments in nd6_prefix_onlink).
2102 		 * If there's one, try to make the prefix on-link on the
2103 		 * interface.
2104 		 */
2105 		ND6_RLOCK();
2106 restart:
2107 		LIST_FOREACH(opr, &V_nd_prefix, ndpr_entry) {
2108 			/*
2109 			 * KAME specific: detached prefixes should not be
2110 			 * on-link.
2111 			 */
2112 			if (opr == pr || (opr->ndpr_stateflags &
2113 			    (NDPRF_ONLINK | NDPRF_DETACHED)) != 0)
2114 				continue;
2115 
2116 			if (opr->ndpr_plen == pr->ndpr_plen &&
2117 			    in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr,
2118 			    &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen)) {
2119 				int e;
2120 
2121 				genid = V_nd6_list_genid;
2122 				ND6_RUNLOCK();
2123 				if ((e = nd6_prefix_onlink(opr)) != 0) {
2124 					nd6log((LOG_ERR,
2125 					    "nd6_prefix_offlink: failed to "
2126 					    "recover a prefix %s/%d from %s "
2127 					    "to %s (errno = %d)\n",
2128 					    ip6_sprintf(ip6buf,
2129 						&opr->ndpr_prefix.sin6_addr),
2130 					    opr->ndpr_plen, if_name(ifp),
2131 					    if_name(opr->ndpr_ifp), e));
2132 				} else
2133 					a_failure = 0;
2134 				ND6_RLOCK();
2135 				if (genid != V_nd6_list_genid)
2136 					goto restart;
2137 			}
2138 		}
2139 		ND6_RUNLOCK();
2140 	} else {
2141 		/* XXX: can we still set the NDPRF_ONLINK flag? */
2142 		nd6log((LOG_ERR,
2143 		    "nd6_prefix_offlink: failed to delete route: "
2144 		    "%s/%d on %s (errno = %d)\n",
2145 		    ip6_sprintf(ip6buf, &sa6.sin6_addr), pr->ndpr_plen,
2146 		    if_name(ifp), error));
2147 	}
2148 
2149 	if (a_failure)
2150 		lltable_prefix_free(AF_INET6, (struct sockaddr *)&sa6,
2151 		    (struct sockaddr *)&mask6, LLE_STATIC);
2152 
2153 	return (error);
2154 }
2155 
2156 static struct in6_ifaddr *
2157 in6_ifadd(struct nd_prefixctl *pr, int mcast)
2158 {
2159 	struct ifnet *ifp = pr->ndpr_ifp;
2160 	struct ifaddr *ifa;
2161 	struct in6_aliasreq ifra;
2162 	struct in6_ifaddr *ia, *ib;
2163 	int error, plen0;
2164 	struct in6_addr mask;
2165 	int prefixlen = pr->ndpr_plen;
2166 	int updateflags;
2167 	char ip6buf[INET6_ADDRSTRLEN];
2168 
2169 	in6_prefixlen2mask(&mask, prefixlen);
2170 
2171 	/*
2172 	 * find a link-local address (will be interface ID).
2173 	 * Is it really mandatory? Theoretically, a global or a site-local
2174 	 * address can be configured without a link-local address, if we
2175 	 * have a unique interface identifier...
2176 	 *
2177 	 * it is not mandatory to have a link-local address, we can generate
2178 	 * interface identifier on the fly.  we do this because:
2179 	 * (1) it should be the easiest way to find interface identifier.
2180 	 * (2) RFC2462 5.4 suggesting the use of the same interface identifier
2181 	 * for multiple addresses on a single interface, and possible shortcut
2182 	 * of DAD.  we omitted DAD for this reason in the past.
2183 	 * (3) a user can prevent autoconfiguration of global address
2184 	 * by removing link-local address by hand (this is partly because we
2185 	 * don't have other way to control the use of IPv6 on an interface.
2186 	 * this has been our design choice - cf. NRL's "ifconfig auto").
2187 	 * (4) it is easier to manage when an interface has addresses
2188 	 * with the same interface identifier, than to have multiple addresses
2189 	 * with different interface identifiers.
2190 	 */
2191 	ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 0); /* 0 is OK? */
2192 	if (ifa)
2193 		ib = (struct in6_ifaddr *)ifa;
2194 	else
2195 		return NULL;
2196 
2197 	/* prefixlen + ifidlen must be equal to 128 */
2198 	plen0 = in6_mask2len(&ib->ia_prefixmask.sin6_addr, NULL);
2199 	if (prefixlen != plen0) {
2200 		ifa_free(ifa);
2201 		nd6log((LOG_INFO, "in6_ifadd: wrong prefixlen for %s "
2202 		    "(prefix=%d ifid=%d)\n",
2203 		    if_name(ifp), prefixlen, 128 - plen0));
2204 		return NULL;
2205 	}
2206 
2207 	/* make ifaddr */
2208 	in6_prepare_ifra(&ifra, &pr->ndpr_prefix.sin6_addr, &mask);
2209 
2210 	IN6_MASK_ADDR(&ifra.ifra_addr.sin6_addr, &mask);
2211 	/* interface ID */
2212 	ifra.ifra_addr.sin6_addr.s6_addr32[0] |=
2213 	    (ib->ia_addr.sin6_addr.s6_addr32[0] & ~mask.s6_addr32[0]);
2214 	ifra.ifra_addr.sin6_addr.s6_addr32[1] |=
2215 	    (ib->ia_addr.sin6_addr.s6_addr32[1] & ~mask.s6_addr32[1]);
2216 	ifra.ifra_addr.sin6_addr.s6_addr32[2] |=
2217 	    (ib->ia_addr.sin6_addr.s6_addr32[2] & ~mask.s6_addr32[2]);
2218 	ifra.ifra_addr.sin6_addr.s6_addr32[3] |=
2219 	    (ib->ia_addr.sin6_addr.s6_addr32[3] & ~mask.s6_addr32[3]);
2220 	ifa_free(ifa);
2221 
2222 	/* lifetimes. */
2223 	ifra.ifra_lifetime.ia6t_vltime = pr->ndpr_vltime;
2224 	ifra.ifra_lifetime.ia6t_pltime = pr->ndpr_pltime;
2225 
2226 	/* XXX: scope zone ID? */
2227 
2228 	ifra.ifra_flags |= IN6_IFF_AUTOCONF; /* obey autoconf */
2229 
2230 	/*
2231 	 * Make sure that we do not have this address already.  This should
2232 	 * usually not happen, but we can still see this case, e.g., if we
2233 	 * have manually configured the exact address to be configured.
2234 	 */
2235 	ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp,
2236 	    &ifra.ifra_addr.sin6_addr);
2237 	if (ifa != NULL) {
2238 		ifa_free(ifa);
2239 		/* this should be rare enough to make an explicit log */
2240 		log(LOG_INFO, "in6_ifadd: %s is already configured\n",
2241 		    ip6_sprintf(ip6buf, &ifra.ifra_addr.sin6_addr));
2242 		return (NULL);
2243 	}
2244 
2245 	/*
2246 	 * Allocate ifaddr structure, link into chain, etc.
2247 	 * If we are going to create a new address upon receiving a multicasted
2248 	 * RA, we need to impose a random delay before starting DAD.
2249 	 * [draft-ietf-ipv6-rfc2462bis-02.txt, Section 5.4.2]
2250 	 */
2251 	updateflags = 0;
2252 	if (mcast)
2253 		updateflags |= IN6_IFAUPDATE_DADDELAY;
2254 	if ((error = in6_update_ifa(ifp, &ifra, NULL, updateflags)) != 0) {
2255 		nd6log((LOG_ERR,
2256 		    "in6_ifadd: failed to make ifaddr %s on %s (errno=%d)\n",
2257 		    ip6_sprintf(ip6buf, &ifra.ifra_addr.sin6_addr),
2258 		    if_name(ifp), error));
2259 		return (NULL);	/* ifaddr must not have been allocated. */
2260 	}
2261 
2262 	ia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
2263 	/*
2264 	 * XXXRW: Assumption of non-NULLness here might not be true with
2265 	 * fine-grained locking -- should we validate it?  Or just return
2266 	 * earlier ifa rather than looking it up again?
2267 	 */
2268 	return (ia);		/* this is always non-NULL  and referenced. */
2269 }
2270 
2271 /*
2272  * ia0 - corresponding public address
2273  */
2274 int
2275 in6_tmpifadd(const struct in6_ifaddr *ia0, int forcegen, int delay)
2276 {
2277 	struct ifnet *ifp = ia0->ia_ifa.ifa_ifp;
2278 	struct in6_ifaddr *newia;
2279 	struct in6_aliasreq ifra;
2280 	int error;
2281 	int trylimit = 3;	/* XXX: adhoc value */
2282 	int updateflags;
2283 	u_int32_t randid[2];
2284 	time_t vltime0, pltime0;
2285 
2286 	in6_prepare_ifra(&ifra, &ia0->ia_addr.sin6_addr,
2287 	    &ia0->ia_prefixmask.sin6_addr);
2288 
2289 	ifra.ifra_addr = ia0->ia_addr;	/* XXX: do we need this ? */
2290 	/* clear the old IFID */
2291 	IN6_MASK_ADDR(&ifra.ifra_addr.sin6_addr,
2292 	    &ifra.ifra_prefixmask.sin6_addr);
2293 
2294   again:
2295 	if (in6_get_tmpifid(ifp, (u_int8_t *)randid,
2296 	    (const u_int8_t *)&ia0->ia_addr.sin6_addr.s6_addr[8], forcegen)) {
2297 		nd6log((LOG_NOTICE, "in6_tmpifadd: failed to find a good "
2298 		    "random IFID\n"));
2299 		return (EINVAL);
2300 	}
2301 	ifra.ifra_addr.sin6_addr.s6_addr32[2] |=
2302 	    (randid[0] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[2]));
2303 	ifra.ifra_addr.sin6_addr.s6_addr32[3] |=
2304 	    (randid[1] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[3]));
2305 
2306 	/*
2307 	 * in6_get_tmpifid() quite likely provided a unique interface ID.
2308 	 * However, we may still have a chance to see collision, because
2309 	 * there may be a time lag between generation of the ID and generation
2310 	 * of the address.  So, we'll do one more sanity check.
2311 	 */
2312 
2313 	if (in6_localip(&ifra.ifra_addr.sin6_addr) != 0) {
2314 		if (trylimit-- > 0) {
2315 			forcegen = 1;
2316 			goto again;
2317 		}
2318 
2319 		/* Give up.  Something strange should have happened.  */
2320 		nd6log((LOG_NOTICE, "in6_tmpifadd: failed to "
2321 		    "find a unique random IFID\n"));
2322 		return (EEXIST);
2323 	}
2324 
2325 	/*
2326 	 * The Valid Lifetime is the lower of the Valid Lifetime of the
2327          * public address or TEMP_VALID_LIFETIME.
2328 	 * The Preferred Lifetime is the lower of the Preferred Lifetime
2329          * of the public address or TEMP_PREFERRED_LIFETIME -
2330          * DESYNC_FACTOR.
2331 	 */
2332 	if (ia0->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
2333 		vltime0 = IFA6_IS_INVALID(ia0) ? 0 :
2334 		    (ia0->ia6_lifetime.ia6t_vltime -
2335 		    (time_uptime - ia0->ia6_updatetime));
2336 		if (vltime0 > V_ip6_temp_valid_lifetime)
2337 			vltime0 = V_ip6_temp_valid_lifetime;
2338 	} else
2339 		vltime0 = V_ip6_temp_valid_lifetime;
2340 	if (ia0->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
2341 		pltime0 = IFA6_IS_DEPRECATED(ia0) ? 0 :
2342 		    (ia0->ia6_lifetime.ia6t_pltime -
2343 		    (time_uptime - ia0->ia6_updatetime));
2344 		if (pltime0 > V_ip6_temp_preferred_lifetime - V_ip6_desync_factor){
2345 			pltime0 = V_ip6_temp_preferred_lifetime -
2346 			    V_ip6_desync_factor;
2347 		}
2348 	} else
2349 		pltime0 = V_ip6_temp_preferred_lifetime - V_ip6_desync_factor;
2350 	ifra.ifra_lifetime.ia6t_vltime = vltime0;
2351 	ifra.ifra_lifetime.ia6t_pltime = pltime0;
2352 
2353 	/*
2354 	 * A temporary address is created only if this calculated Preferred
2355 	 * Lifetime is greater than REGEN_ADVANCE time units.
2356 	 */
2357 	if (ifra.ifra_lifetime.ia6t_pltime <= V_ip6_temp_regen_advance)
2358 		return (0);
2359 
2360 	/* XXX: scope zone ID? */
2361 
2362 	ifra.ifra_flags |= (IN6_IFF_AUTOCONF|IN6_IFF_TEMPORARY);
2363 
2364 	/* allocate ifaddr structure, link into chain, etc. */
2365 	updateflags = 0;
2366 	if (delay)
2367 		updateflags |= IN6_IFAUPDATE_DADDELAY;
2368 	if ((error = in6_update_ifa(ifp, &ifra, NULL, updateflags)) != 0)
2369 		return (error);
2370 
2371 	newia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
2372 	if (newia == NULL) {	/* XXX: can it happen? */
2373 		nd6log((LOG_ERR,
2374 		    "in6_tmpifadd: ifa update succeeded, but we got "
2375 		    "no ifaddr\n"));
2376 		return (EINVAL); /* XXX */
2377 	}
2378 	newia->ia6_ndpr = ia0->ia6_ndpr;
2379 	newia->ia6_ndpr->ndpr_addrcnt++;
2380 	ifa_free(&newia->ia_ifa);
2381 
2382 	/*
2383 	 * A newly added address might affect the status of other addresses.
2384 	 * XXX: when the temporary address is generated with a new public
2385 	 * address, the onlink check is redundant.  However, it would be safe
2386 	 * to do the check explicitly everywhere a new address is generated,
2387 	 * and, in fact, we surely need the check when we create a new
2388 	 * temporary address due to deprecation of an old temporary address.
2389 	 */
2390 	pfxlist_onlink_check();
2391 
2392 	return (0);
2393 }
2394 
2395 static int
2396 in6_init_prefix_ltimes(struct nd_prefix *ndpr)
2397 {
2398 	if (ndpr->ndpr_pltime == ND6_INFINITE_LIFETIME)
2399 		ndpr->ndpr_preferred = 0;
2400 	else
2401 		ndpr->ndpr_preferred = time_uptime + ndpr->ndpr_pltime;
2402 	if (ndpr->ndpr_vltime == ND6_INFINITE_LIFETIME)
2403 		ndpr->ndpr_expire = 0;
2404 	else
2405 		ndpr->ndpr_expire = time_uptime + ndpr->ndpr_vltime;
2406 
2407 	return 0;
2408 }
2409 
2410 static void
2411 in6_init_address_ltimes(struct nd_prefix *new, struct in6_addrlifetime *lt6)
2412 {
2413 	/* init ia6t_expire */
2414 	if (lt6->ia6t_vltime == ND6_INFINITE_LIFETIME)
2415 		lt6->ia6t_expire = 0;
2416 	else {
2417 		lt6->ia6t_expire = time_uptime;
2418 		lt6->ia6t_expire += lt6->ia6t_vltime;
2419 	}
2420 
2421 	/* init ia6t_preferred */
2422 	if (lt6->ia6t_pltime == ND6_INFINITE_LIFETIME)
2423 		lt6->ia6t_preferred = 0;
2424 	else {
2425 		lt6->ia6t_preferred = time_uptime;
2426 		lt6->ia6t_preferred += lt6->ia6t_pltime;
2427 	}
2428 }
2429 
2430 /*
2431  * Delete all the routing table entries that use the specified gateway.
2432  * XXX: this function causes search through all entries of routing table, so
2433  * it shouldn't be called when acting as a router.
2434  */
2435 void
2436 rt6_flush(struct in6_addr *gateway, struct ifnet *ifp)
2437 {
2438 
2439 	/* We'll care only link-local addresses */
2440 	if (!IN6_IS_ADDR_LINKLOCAL(gateway))
2441 		return;
2442 
2443 	/* XXX Do we really need to walk any but the default FIB? */
2444 	rt_foreach_fib_walk_del(AF_INET6, rt6_deleteroute, (void *)gateway);
2445 }
2446 
2447 static int
2448 rt6_deleteroute(const struct rtentry *rt, void *arg)
2449 {
2450 #define SIN6(s)	((struct sockaddr_in6 *)s)
2451 	struct in6_addr *gate = (struct in6_addr *)arg;
2452 
2453 	if (rt->rt_gateway == NULL || rt->rt_gateway->sa_family != AF_INET6)
2454 		return (0);
2455 
2456 	if (!IN6_ARE_ADDR_EQUAL(gate, &SIN6(rt->rt_gateway)->sin6_addr)) {
2457 		return (0);
2458 	}
2459 
2460 	/*
2461 	 * Do not delete a static route.
2462 	 * XXX: this seems to be a bit ad-hoc. Should we consider the
2463 	 * 'cloned' bit instead?
2464 	 */
2465 	if ((rt->rt_flags & RTF_STATIC) != 0)
2466 		return (0);
2467 
2468 	/*
2469 	 * We delete only host route. This means, in particular, we don't
2470 	 * delete default route.
2471 	 */
2472 	if ((rt->rt_flags & RTF_HOST) == 0)
2473 		return (0);
2474 
2475 	return (1);
2476 #undef SIN6
2477 }
2478 
2479 int
2480 nd6_setdefaultiface(int ifindex)
2481 {
2482 	int error = 0;
2483 
2484 	if (ifindex < 0 || V_if_index < ifindex)
2485 		return (EINVAL);
2486 	if (ifindex != 0 && !ifnet_byindex(ifindex))
2487 		return (EINVAL);
2488 
2489 	if (V_nd6_defifindex != ifindex) {
2490 		V_nd6_defifindex = ifindex;
2491 		if (V_nd6_defifindex > 0)
2492 			V_nd6_defifp = ifnet_byindex(V_nd6_defifindex);
2493 		else
2494 			V_nd6_defifp = NULL;
2495 
2496 		/*
2497 		 * Our current implementation assumes one-to-one maping between
2498 		 * interfaces and links, so it would be natural to use the
2499 		 * default interface as the default link.
2500 		 */
2501 		scope6_setdefault(V_nd6_defifp);
2502 	}
2503 
2504 	return (error);
2505 }
2506