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