]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet6/nd6.c
MFC r215423:
[FreeBSD/stable/8.git] / sys / netinet6 / nd6.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.c,v 1.144 2001/05/24 07:44:00 itojun 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/callout.h>
41 #include <sys/malloc.h>
42 #include <sys/mbuf.h>
43 #include <sys/socket.h>
44 #include <sys/sockio.h>
45 #include <sys/time.h>
46 #include <sys/kernel.h>
47 #include <sys/protosw.h>
48 #include <sys/errno.h>
49 #include <sys/syslog.h>
50 #include <sys/lock.h>
51 #include <sys/rwlock.h>
52 #include <sys/queue.h>
53 #include <sys/sysctl.h>
54
55 #include <net/if.h>
56 #include <net/if_arc.h>
57 #include <net/if_dl.h>
58 #include <net/if_types.h>
59 #include <net/iso88025.h>
60 #include <net/fddi.h>
61 #include <net/route.h>
62 #include <net/vnet.h>
63
64 #include <netinet/in.h>
65 #include <net/if_llatbl.h>
66 #define L3_ADDR_SIN6(le)        ((struct sockaddr_in6 *) L3_ADDR(le))
67 #include <netinet/if_ether.h>
68 #include <netinet6/in6_var.h>
69 #include <netinet/ip6.h>
70 #include <netinet6/ip6_var.h>
71 #include <netinet6/scope6_var.h>
72 #include <netinet6/nd6.h>
73 #include <netinet/icmp6.h>
74
75 #include <sys/limits.h>
76
77 #include <security/mac/mac_framework.h>
78
79 #define ND6_SLOWTIMER_INTERVAL (60 * 60) /* 1 hour */
80 #define ND6_RECALC_REACHTM_INTERVAL (60 * 120) /* 2 hours */
81
82 #define SIN6(s) ((struct sockaddr_in6 *)s)
83
84 /* timer values */
85 VNET_DEFINE(int, nd6_prune)     = 1;    /* walk list every 1 seconds */
86 VNET_DEFINE(int, nd6_delay)     = 5;    /* delay first probe time 5 second */
87 VNET_DEFINE(int, nd6_umaxtries) = 3;    /* maximum unicast query */
88 VNET_DEFINE(int, nd6_mmaxtries) = 3;    /* maximum multicast query */
89 VNET_DEFINE(int, nd6_useloopback) = 1;  /* use loopback interface for
90                                          * local traffic */
91 VNET_DEFINE(int, nd6_gctimer)   = (60 * 60 * 24); /* 1 day: garbage
92                                          * collection timer */
93
94 /* preventing too many loops in ND option parsing */
95 static VNET_DEFINE(int, nd6_maxndopt) = 10; /* max # of ND options allowed */
96
97 VNET_DEFINE(int, nd6_maxnudhint) = 0;   /* max # of subsequent upper
98                                          * layer hints */
99 static VNET_DEFINE(int, nd6_maxqueuelen) = 1; /* max pkts cached in unresolved
100                                          * ND entries */
101 #define V_nd6_maxndopt                  VNET(nd6_maxndopt)
102 #define V_nd6_maxqueuelen               VNET(nd6_maxqueuelen)
103
104 #ifdef ND6_DEBUG
105 VNET_DEFINE(int, nd6_debug) = 1;
106 #else
107 VNET_DEFINE(int, nd6_debug) = 0;
108 #endif
109
110 /* for debugging? */
111 #if 0
112 static int nd6_inuse, nd6_allocated;
113 #endif
114
115 VNET_DEFINE(struct nd_drhead, nd_defrouter);
116 VNET_DEFINE(struct nd_prhead, nd_prefix);
117
118 VNET_DEFINE(int, nd6_recalc_reachtm_interval) = ND6_RECALC_REACHTM_INTERVAL;
119 #define V_nd6_recalc_reachtm_interval   VNET(nd6_recalc_reachtm_interval)
120
121 static struct sockaddr_in6 all1_sa;
122
123 static int nd6_is_new_addr_neighbor __P((struct sockaddr_in6 *,
124         struct ifnet *));
125 static void nd6_setmtu0(struct ifnet *, struct nd_ifinfo *);
126 static void nd6_slowtimo(void *);
127 static int regen_tmpaddr(struct in6_ifaddr *);
128 static struct llentry *nd6_free(struct llentry *, int);
129 static void nd6_llinfo_timer(void *);
130 static void clear_llinfo_pqueue(struct llentry *);
131
132 static VNET_DEFINE(struct callout, nd6_slowtimo_ch);
133 #define V_nd6_slowtimo_ch               VNET(nd6_slowtimo_ch)
134
135 VNET_DEFINE(struct callout, nd6_timer_ch);
136
137 void
138 nd6_init(void)
139 {
140         int i;
141
142         LIST_INIT(&V_nd_prefix);
143
144         all1_sa.sin6_family = AF_INET6;
145         all1_sa.sin6_len = sizeof(struct sockaddr_in6);
146         for (i = 0; i < sizeof(all1_sa.sin6_addr); i++)
147                 all1_sa.sin6_addr.s6_addr[i] = 0xff;
148
149         /* initialization of the default router list */
150         TAILQ_INIT(&V_nd_defrouter);
151
152         /* start timer */
153         callout_init(&V_nd6_slowtimo_ch, 0);
154         callout_reset(&V_nd6_slowtimo_ch, ND6_SLOWTIMER_INTERVAL * hz,
155             nd6_slowtimo, curvnet);
156 }
157
158 #ifdef VIMAGE
159 void
160 nd6_destroy()
161 {
162
163         callout_drain(&V_nd6_slowtimo_ch);
164         callout_drain(&V_nd6_timer_ch);
165 }
166 #endif
167
168 struct nd_ifinfo *
169 nd6_ifattach(struct ifnet *ifp)
170 {
171         struct nd_ifinfo *nd;
172
173         nd = (struct nd_ifinfo *)malloc(sizeof(*nd), M_IP6NDP, M_WAITOK);
174         bzero(nd, sizeof(*nd));
175
176         nd->initialized = 1;
177
178         nd->chlim = IPV6_DEFHLIM;
179         nd->basereachable = REACHABLE_TIME;
180         nd->reachable = ND_COMPUTE_RTIME(nd->basereachable);
181         nd->retrans = RETRANS_TIMER;
182         /*
183          * Note that the default value of ip6_accept_rtadv is 0, which means
184          * we won't accept RAs by default even if we set ND6_IFF_ACCEPT_RTADV
185          * here.
186          */
187         nd->flags = (ND6_IFF_PERFORMNUD | ND6_IFF_ACCEPT_RTADV);
188
189         /* XXX: we cannot call nd6_setmtu since ifp is not fully initialized */
190         nd6_setmtu0(ifp, nd);
191
192         return nd;
193 }
194
195 void
196 nd6_ifdetach(struct nd_ifinfo *nd)
197 {
198
199         free(nd, M_IP6NDP);
200 }
201
202 /*
203  * Reset ND level link MTU. This function is called when the physical MTU
204  * changes, which means we might have to adjust the ND level MTU.
205  */
206 void
207 nd6_setmtu(struct ifnet *ifp)
208 {
209
210         nd6_setmtu0(ifp, ND_IFINFO(ifp));
211 }
212
213 /* XXX todo: do not maintain copy of ifp->if_mtu in ndi->maxmtu */
214 void
215 nd6_setmtu0(struct ifnet *ifp, struct nd_ifinfo *ndi)
216 {
217         u_int32_t omaxmtu;
218
219         omaxmtu = ndi->maxmtu;
220
221         switch (ifp->if_type) {
222         case IFT_ARCNET:
223                 ndi->maxmtu = MIN(ARC_PHDS_MAXMTU, ifp->if_mtu); /* RFC2497 */
224                 break;
225         case IFT_FDDI:
226                 ndi->maxmtu = MIN(FDDIIPMTU, ifp->if_mtu); /* RFC2467 */
227                 break;
228         case IFT_ISO88025:
229                  ndi->maxmtu = MIN(ISO88025_MAX_MTU, ifp->if_mtu);
230                  break;
231         default:
232                 ndi->maxmtu = ifp->if_mtu;
233                 break;
234         }
235
236         /*
237          * Decreasing the interface MTU under IPV6 minimum MTU may cause
238          * undesirable situation.  We thus notify the operator of the change
239          * explicitly.  The check for omaxmtu is necessary to restrict the
240          * log to the case of changing the MTU, not initializing it.
241          */
242         if (omaxmtu >= IPV6_MMTU && ndi->maxmtu < IPV6_MMTU) {
243                 log(LOG_NOTICE, "nd6_setmtu0: "
244                     "new link MTU on %s (%lu) is too small for IPv6\n",
245                     if_name(ifp), (unsigned long)ndi->maxmtu);
246         }
247
248         if (ndi->maxmtu > V_in6_maxmtu)
249                 in6_setmaxmtu(); /* check all interfaces just in case */
250
251 }
252
253 void
254 nd6_option_init(void *opt, int icmp6len, union nd_opts *ndopts)
255 {
256
257         bzero(ndopts, sizeof(*ndopts));
258         ndopts->nd_opts_search = (struct nd_opt_hdr *)opt;
259         ndopts->nd_opts_last
260                 = (struct nd_opt_hdr *)(((u_char *)opt) + icmp6len);
261
262         if (icmp6len == 0) {
263                 ndopts->nd_opts_done = 1;
264                 ndopts->nd_opts_search = NULL;
265         }
266 }
267
268 /*
269  * Take one ND option.
270  */
271 struct nd_opt_hdr *
272 nd6_option(union nd_opts *ndopts)
273 {
274         struct nd_opt_hdr *nd_opt;
275         int olen;
276
277         if (ndopts == NULL)
278                 panic("ndopts == NULL in nd6_option");
279         if (ndopts->nd_opts_last == NULL)
280                 panic("uninitialized ndopts in nd6_option");
281         if (ndopts->nd_opts_search == NULL)
282                 return NULL;
283         if (ndopts->nd_opts_done)
284                 return NULL;
285
286         nd_opt = ndopts->nd_opts_search;
287
288         /* make sure nd_opt_len is inside the buffer */
289         if ((caddr_t)&nd_opt->nd_opt_len >= (caddr_t)ndopts->nd_opts_last) {
290                 bzero(ndopts, sizeof(*ndopts));
291                 return NULL;
292         }
293
294         olen = nd_opt->nd_opt_len << 3;
295         if (olen == 0) {
296                 /*
297                  * Message validation requires that all included
298                  * options have a length that is greater than zero.
299                  */
300                 bzero(ndopts, sizeof(*ndopts));
301                 return NULL;
302         }
303
304         ndopts->nd_opts_search = (struct nd_opt_hdr *)((caddr_t)nd_opt + olen);
305         if (ndopts->nd_opts_search > ndopts->nd_opts_last) {
306                 /* option overruns the end of buffer, invalid */
307                 bzero(ndopts, sizeof(*ndopts));
308                 return NULL;
309         } else if (ndopts->nd_opts_search == ndopts->nd_opts_last) {
310                 /* reached the end of options chain */
311                 ndopts->nd_opts_done = 1;
312                 ndopts->nd_opts_search = NULL;
313         }
314         return nd_opt;
315 }
316
317 /*
318  * Parse multiple ND options.
319  * This function is much easier to use, for ND routines that do not need
320  * multiple options of the same type.
321  */
322 int
323 nd6_options(union nd_opts *ndopts)
324 {
325         struct nd_opt_hdr *nd_opt;
326         int i = 0;
327
328         if (ndopts == NULL)
329                 panic("ndopts == NULL in nd6_options");
330         if (ndopts->nd_opts_last == NULL)
331                 panic("uninitialized ndopts in nd6_options");
332         if (ndopts->nd_opts_search == NULL)
333                 return 0;
334
335         while (1) {
336                 nd_opt = nd6_option(ndopts);
337                 if (nd_opt == NULL && ndopts->nd_opts_last == NULL) {
338                         /*
339                          * Message validation requires that all included
340                          * options have a length that is greater than zero.
341                          */
342                         ICMP6STAT_INC(icp6s_nd_badopt);
343                         bzero(ndopts, sizeof(*ndopts));
344                         return -1;
345                 }
346
347                 if (nd_opt == NULL)
348                         goto skip1;
349
350                 switch (nd_opt->nd_opt_type) {
351                 case ND_OPT_SOURCE_LINKADDR:
352                 case ND_OPT_TARGET_LINKADDR:
353                 case ND_OPT_MTU:
354                 case ND_OPT_REDIRECTED_HEADER:
355                         if (ndopts->nd_opt_array[nd_opt->nd_opt_type]) {
356                                 nd6log((LOG_INFO,
357                                     "duplicated ND6 option found (type=%d)\n",
358                                     nd_opt->nd_opt_type));
359                                 /* XXX bark? */
360                         } else {
361                                 ndopts->nd_opt_array[nd_opt->nd_opt_type]
362                                         = nd_opt;
363                         }
364                         break;
365                 case ND_OPT_PREFIX_INFORMATION:
366                         if (ndopts->nd_opt_array[nd_opt->nd_opt_type] == 0) {
367                                 ndopts->nd_opt_array[nd_opt->nd_opt_type]
368                                         = nd_opt;
369                         }
370                         ndopts->nd_opts_pi_end =
371                                 (struct nd_opt_prefix_info *)nd_opt;
372                         break;
373                 default:
374                         /*
375                          * Unknown options must be silently ignored,
376                          * to accomodate future extension to the protocol.
377                          */
378                         nd6log((LOG_DEBUG,
379                             "nd6_options: unsupported option %d - "
380                             "option ignored\n", nd_opt->nd_opt_type));
381                 }
382
383 skip1:
384                 i++;
385                 if (i > V_nd6_maxndopt) {
386                         ICMP6STAT_INC(icp6s_nd_toomanyopt);
387                         nd6log((LOG_INFO, "too many loop in nd opt\n"));
388                         break;
389                 }
390
391                 if (ndopts->nd_opts_done)
392                         break;
393         }
394
395         return 0;
396 }
397
398 /*
399  * ND6 timer routine to handle ND6 entries
400  */
401 void
402 nd6_llinfo_settimer_locked(struct llentry *ln, long tick)
403 {
404         int canceled;
405
406         if (tick < 0) {
407                 ln->la_expire = 0;
408                 ln->ln_ntick = 0;
409                 canceled = callout_stop(&ln->ln_timer_ch);
410         } else {
411                 ln->la_expire = time_second + tick / hz;
412                 LLE_ADDREF(ln);
413                 if (tick > INT_MAX) {
414                         ln->ln_ntick = tick - INT_MAX;
415                         canceled = callout_reset(&ln->ln_timer_ch, INT_MAX,
416                             nd6_llinfo_timer, ln);
417                 } else {
418                         ln->ln_ntick = 0;
419                         canceled = callout_reset(&ln->ln_timer_ch, tick,
420                             nd6_llinfo_timer, ln);
421                 }
422         }
423         if (canceled)
424                 LLE_REMREF(ln);
425 }
426
427 void
428 nd6_llinfo_settimer(struct llentry *ln, long tick)
429 {
430
431         LLE_WLOCK(ln);
432         nd6_llinfo_settimer_locked(ln, tick);
433         LLE_WUNLOCK(ln);
434 }
435
436 static void
437 nd6_llinfo_timer(void *arg)
438 {
439         struct llentry *ln;
440         struct in6_addr *dst;
441         struct ifnet *ifp;
442         struct nd_ifinfo *ndi = NULL;
443
444         KASSERT(arg != NULL, ("%s: arg NULL", __func__));
445         ln = (struct llentry *)arg;
446         ifp = ln->lle_tbl->llt_ifp;
447
448         CURVNET_SET(ifp->if_vnet);
449
450         if (ln->ln_ntick > 0) {
451                 if (ln->ln_ntick > INT_MAX) {
452                         ln->ln_ntick -= INT_MAX;
453                         nd6_llinfo_settimer(ln, INT_MAX);
454                 } else {
455                         ln->ln_ntick = 0;
456                         nd6_llinfo_settimer(ln, ln->ln_ntick);
457                 }
458                 goto done;
459         }
460
461         ndi = ND_IFINFO(ifp);
462         dst = &L3_ADDR_SIN6(ln)->sin6_addr;
463         if (ln->la_flags & LLE_STATIC) {
464                 goto done;
465         }
466
467         if (ln->la_flags & LLE_DELETED) {
468                 (void)nd6_free(ln, 0);
469                 ln = NULL;
470                 goto done;
471         }
472
473         switch (ln->ln_state) {
474         case ND6_LLINFO_INCOMPLETE:
475                 if (ln->la_asked < V_nd6_mmaxtries) {
476                         ln->la_asked++;
477                         nd6_llinfo_settimer(ln, (long)ndi->retrans * hz / 1000);
478                         nd6_ns_output(ifp, NULL, dst, ln, 0);
479                 } else {
480                         struct mbuf *m = ln->la_hold;
481                         if (m) {
482                                 struct mbuf *m0;
483
484                                 /*
485                                  * assuming every packet in la_hold has the
486                                  * same IP header
487                                  */
488                                 m0 = m->m_nextpkt;
489                                 m->m_nextpkt = NULL;
490                                 icmp6_error2(m, ICMP6_DST_UNREACH,
491                                     ICMP6_DST_UNREACH_ADDR, 0, ifp);
492
493                                 ln->la_hold = m0;
494                                 clear_llinfo_pqueue(ln);
495                         }
496                         (void)nd6_free(ln, 0);
497                         ln = NULL;
498                 }
499                 break;
500         case ND6_LLINFO_REACHABLE:
501                 if (!ND6_LLINFO_PERMANENT(ln)) {
502                         ln->ln_state = ND6_LLINFO_STALE;
503                         nd6_llinfo_settimer(ln, (long)V_nd6_gctimer * hz);
504                 }
505                 break;
506
507         case ND6_LLINFO_STALE:
508                 /* Garbage Collection(RFC 2461 5.3) */
509                 if (!ND6_LLINFO_PERMANENT(ln)) {
510                         (void)nd6_free(ln, 1);
511                         ln = NULL;
512                 }
513                 break;
514
515         case ND6_LLINFO_DELAY:
516                 if (ndi && (ndi->flags & ND6_IFF_PERFORMNUD) != 0) {
517                         /* We need NUD */
518                         ln->la_asked = 1;
519                         ln->ln_state = ND6_LLINFO_PROBE;
520                         nd6_llinfo_settimer(ln, (long)ndi->retrans * hz / 1000);
521                         nd6_ns_output(ifp, dst, dst, ln, 0);
522                 } else {
523                         ln->ln_state = ND6_LLINFO_STALE; /* XXX */
524                         nd6_llinfo_settimer(ln, (long)V_nd6_gctimer * hz);
525                 }
526                 break;
527         case ND6_LLINFO_PROBE:
528                 if (ln->la_asked < V_nd6_umaxtries) {
529                         ln->la_asked++;
530                         nd6_llinfo_settimer(ln, (long)ndi->retrans * hz / 1000);
531                         nd6_ns_output(ifp, dst, dst, ln, 0);
532                 } else {
533                         (void)nd6_free(ln, 0);
534                         ln = NULL;
535                 }
536                 break;
537         }
538 done:
539         if (ln != NULL)
540                 LLE_FREE(ln);
541         CURVNET_RESTORE();
542 }
543
544
545 /*
546  * ND6 timer routine to expire default route list and prefix list
547  */
548 void
549 nd6_timer(void *arg)
550 {
551         CURVNET_SET((struct vnet *) arg);
552         int s;
553         struct nd_defrouter *dr;
554         struct nd_prefix *pr;
555         struct in6_ifaddr *ia6, *nia6;
556         struct in6_addrlifetime *lt6;
557
558         callout_reset(&V_nd6_timer_ch, V_nd6_prune * hz,
559             nd6_timer, curvnet);
560
561         /* expire default router list */
562         s = splnet();
563         dr = TAILQ_FIRST(&V_nd_defrouter);
564         while (dr) {
565                 if (dr->expire && dr->expire < time_second) {
566                         struct nd_defrouter *t;
567                         t = TAILQ_NEXT(dr, dr_entry);
568                         defrtrlist_del(dr);
569                         dr = t;
570                 } else {
571                         dr = TAILQ_NEXT(dr, dr_entry);
572                 }
573         }
574
575         /*
576          * expire interface addresses.
577          * in the past the loop was inside prefix expiry processing.
578          * However, from a stricter speci-confrmance standpoint, we should
579          * rather separate address lifetimes and prefix lifetimes.
580          *
581          * XXXRW: in6_ifaddrhead locking.
582          */
583   addrloop:
584         TAILQ_FOREACH_SAFE(ia6, &V_in6_ifaddrhead, ia_link, nia6) {
585                 /* check address lifetime */
586                 lt6 = &ia6->ia6_lifetime;
587                 if (IFA6_IS_INVALID(ia6)) {
588                         int regen = 0;
589
590                         /*
591                          * If the expiring address is temporary, try
592                          * regenerating a new one.  This would be useful when
593                          * we suspended a laptop PC, then turned it on after a
594                          * period that could invalidate all temporary
595                          * addresses.  Although we may have to restart the
596                          * loop (see below), it must be after purging the
597                          * address.  Otherwise, we'd see an infinite loop of
598                          * regeneration.
599                          */
600                         if (V_ip6_use_tempaddr &&
601                             (ia6->ia6_flags & IN6_IFF_TEMPORARY) != 0) {
602                                 if (regen_tmpaddr(ia6) == 0)
603                                         regen = 1;
604                         }
605
606                         in6_purgeaddr(&ia6->ia_ifa);
607
608                         if (regen)
609                                 goto addrloop; /* XXX: see below */
610                 } else if (IFA6_IS_DEPRECATED(ia6)) {
611                         int oldflags = ia6->ia6_flags;
612
613                         ia6->ia6_flags |= IN6_IFF_DEPRECATED;
614
615                         /*
616                          * If a temporary address has just become deprecated,
617                          * regenerate a new one if possible.
618                          */
619                         if (V_ip6_use_tempaddr &&
620                             (ia6->ia6_flags & IN6_IFF_TEMPORARY) != 0 &&
621                             (oldflags & IN6_IFF_DEPRECATED) == 0) {
622
623                                 if (regen_tmpaddr(ia6) == 0) {
624                                         /*
625                                          * A new temporary address is
626                                          * generated.
627                                          * XXX: this means the address chain
628                                          * has changed while we are still in
629                                          * the loop.  Although the change
630                                          * would not cause disaster (because
631                                          * it's not a deletion, but an
632                                          * addition,) we'd rather restart the
633                                          * loop just for safety.  Or does this
634                                          * significantly reduce performance??
635                                          */
636                                         goto addrloop;
637                                 }
638                         }
639                 } else {
640                         /*
641                          * A new RA might have made a deprecated address
642                          * preferred.
643                          */
644                         ia6->ia6_flags &= ~IN6_IFF_DEPRECATED;
645                 }
646         }
647
648         /* expire prefix list */
649         pr = V_nd_prefix.lh_first;
650         while (pr) {
651                 /*
652                  * check prefix lifetime.
653                  * since pltime is just for autoconf, pltime processing for
654                  * prefix is not necessary.
655                  */
656                 if (pr->ndpr_vltime != ND6_INFINITE_LIFETIME &&
657                     time_second - pr->ndpr_lastupdate > pr->ndpr_vltime) {
658                         struct nd_prefix *t;
659                         t = pr->ndpr_next;
660
661                         /*
662                          * address expiration and prefix expiration are
663                          * separate.  NEVER perform in6_purgeaddr here.
664                          */
665
666                         prelist_remove(pr);
667                         pr = t;
668                 } else
669                         pr = pr->ndpr_next;
670         }
671         splx(s);
672         CURVNET_RESTORE();
673 }
674
675 /*
676  * ia6 - deprecated/invalidated temporary address
677  */
678 static int
679 regen_tmpaddr(struct in6_ifaddr *ia6)
680 {
681         struct ifaddr *ifa;
682         struct ifnet *ifp;
683         struct in6_ifaddr *public_ifa6 = NULL;
684
685         ifp = ia6->ia_ifa.ifa_ifp;
686         IF_ADDR_LOCK(ifp);
687         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
688                 struct in6_ifaddr *it6;
689
690                 if (ifa->ifa_addr->sa_family != AF_INET6)
691                         continue;
692
693                 it6 = (struct in6_ifaddr *)ifa;
694
695                 /* ignore no autoconf addresses. */
696                 if ((it6->ia6_flags & IN6_IFF_AUTOCONF) == 0)
697                         continue;
698
699                 /* ignore autoconf addresses with different prefixes. */
700                 if (it6->ia6_ndpr == NULL || it6->ia6_ndpr != ia6->ia6_ndpr)
701                         continue;
702
703                 /*
704                  * Now we are looking at an autoconf address with the same
705                  * prefix as ours.  If the address is temporary and is still
706                  * preferred, do not create another one.  It would be rare, but
707                  * could happen, for example, when we resume a laptop PC after
708                  * a long period.
709                  */
710                 if ((it6->ia6_flags & IN6_IFF_TEMPORARY) != 0 &&
711                     !IFA6_IS_DEPRECATED(it6)) {
712                         public_ifa6 = NULL;
713                         break;
714                 }
715
716                 /*
717                  * This is a public autoconf address that has the same prefix
718                  * as ours.  If it is preferred, keep it.  We can't break the
719                  * loop here, because there may be a still-preferred temporary
720                  * address with the prefix.
721                  */
722                 if (!IFA6_IS_DEPRECATED(it6))
723                     public_ifa6 = it6;
724
725                 if (public_ifa6 != NULL)
726                         ifa_ref(&public_ifa6->ia_ifa);
727         }
728         IF_ADDR_UNLOCK(ifp);
729
730         if (public_ifa6 != NULL) {
731                 int e;
732
733                 if ((e = in6_tmpifadd(public_ifa6, 0, 0)) != 0) {
734                         ifa_free(&public_ifa6->ia_ifa);
735                         log(LOG_NOTICE, "regen_tmpaddr: failed to create a new"
736                             " tmp addr,errno=%d\n", e);
737                         return (-1);
738                 }
739                 ifa_free(&public_ifa6->ia_ifa);
740                 return (0);
741         }
742
743         return (-1);
744 }
745
746 /*
747  * Nuke neighbor cache/prefix/default router management table, right before
748  * ifp goes away.
749  */
750 void
751 nd6_purge(struct ifnet *ifp)
752 {
753         struct nd_defrouter *dr, *ndr;
754         struct nd_prefix *pr, *npr;
755
756         /*
757          * Nuke default router list entries toward ifp.
758          * We defer removal of default router list entries that is installed
759          * in the routing table, in order to keep additional side effects as
760          * small as possible.
761          */
762         for (dr = TAILQ_FIRST(&V_nd_defrouter); dr; dr = ndr) {
763                 ndr = TAILQ_NEXT(dr, dr_entry);
764                 if (dr->installed)
765                         continue;
766
767                 if (dr->ifp == ifp)
768                         defrtrlist_del(dr);
769         }
770
771         for (dr = TAILQ_FIRST(&V_nd_defrouter); dr; dr = ndr) {
772                 ndr = TAILQ_NEXT(dr, dr_entry);
773                 if (!dr->installed)
774                         continue;
775
776                 if (dr->ifp == ifp)
777                         defrtrlist_del(dr);
778         }
779
780         /* Nuke prefix list entries toward ifp */
781         for (pr = V_nd_prefix.lh_first; pr; pr = npr) {
782                 npr = pr->ndpr_next;
783                 if (pr->ndpr_ifp == ifp) {
784                         /*
785                          * Because if_detach() does *not* release prefixes
786                          * while purging addresses the reference count will
787                          * still be above zero. We therefore reset it to
788                          * make sure that the prefix really gets purged.
789                          */
790                         pr->ndpr_refcnt = 0;
791
792                         /*
793                          * Previously, pr->ndpr_addr is removed as well,
794                          * but I strongly believe we don't have to do it.
795                          * nd6_purge() is only called from in6_ifdetach(),
796                          * which removes all the associated interface addresses
797                          * by itself.
798                          * (jinmei@kame.net 20010129)
799                          */
800                         prelist_remove(pr);
801                 }
802         }
803
804         /* cancel default outgoing interface setting */
805         if (V_nd6_defifindex == ifp->if_index)
806                 nd6_setdefaultiface(0);
807
808         if (!V_ip6_forwarding && V_ip6_accept_rtadv) { /* XXX: too restrictive? */
809                 /* refresh default router list
810                  *
811                  * 
812                  */
813                 defrouter_select();
814
815         }
816
817         /* XXXXX
818          * We do not nuke the neighbor cache entries here any more
819          * because the neighbor cache is kept in if_afdata[AF_INET6].
820          * nd6_purge() is invoked by in6_ifdetach() which is called
821          * from if_detach() where everything gets purged. So let
822          * in6_domifdetach() do the actual L2 table purging work.
823          */
824 }
825
826 /* 
827  * the caller acquires and releases the lock on the lltbls
828  * Returns the llentry locked
829  */
830 struct llentry *
831 nd6_lookup(struct in6_addr *addr6, int flags, struct ifnet *ifp)
832 {
833         struct sockaddr_in6 sin6;
834         struct llentry *ln;
835         int llflags;
836         
837         bzero(&sin6, sizeof(sin6));
838         sin6.sin6_len = sizeof(struct sockaddr_in6);
839         sin6.sin6_family = AF_INET6;
840         sin6.sin6_addr = *addr6;
841
842         IF_AFDATA_LOCK_ASSERT(ifp);
843
844         llflags = 0;
845         if (flags & ND6_CREATE)
846             llflags |= LLE_CREATE;
847         if (flags & ND6_EXCLUSIVE)
848             llflags |= LLE_EXCLUSIVE;   
849         
850         ln = lla_lookup(LLTABLE6(ifp), llflags, (struct sockaddr *)&sin6);
851         if ((ln != NULL) && (llflags & LLE_CREATE))
852                 ln->ln_state = ND6_LLINFO_NOSTATE;
853         
854         return (ln);
855 }
856
857 /*
858  * Test whether a given IPv6 address is a neighbor or not, ignoring
859  * the actual neighbor cache.  The neighbor cache is ignored in order
860  * to not reenter the routing code from within itself.
861  */
862 static int
863 nd6_is_new_addr_neighbor(struct sockaddr_in6 *addr, struct ifnet *ifp)
864 {
865         struct nd_prefix *pr;
866         struct ifaddr *dstaddr;
867
868         /*
869          * A link-local address is always a neighbor.
870          * XXX: a link does not necessarily specify a single interface.
871          */
872         if (IN6_IS_ADDR_LINKLOCAL(&addr->sin6_addr)) {
873                 struct sockaddr_in6 sin6_copy;
874                 u_int32_t zone;
875
876                 /*
877                  * We need sin6_copy since sa6_recoverscope() may modify the
878                  * content (XXX).
879                  */
880                 sin6_copy = *addr;
881                 if (sa6_recoverscope(&sin6_copy))
882                         return (0); /* XXX: should be impossible */
883                 if (in6_setscope(&sin6_copy.sin6_addr, ifp, &zone))
884                         return (0);
885                 if (sin6_copy.sin6_scope_id == zone)
886                         return (1);
887                 else
888                         return (0);
889         }
890
891         /*
892          * If the address matches one of our addresses,
893          * it should be a neighbor.
894          * If the address matches one of our on-link prefixes, it should be a
895          * neighbor.
896          */
897         for (pr = V_nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
898                 if (pr->ndpr_ifp != ifp)
899                         continue;
900
901                 if (!(pr->ndpr_stateflags & NDPRF_ONLINK)) {
902                         struct rtentry *rt;
903                         rt = rtalloc1((struct sockaddr *)&pr->ndpr_prefix, 0, 0);
904                         if (rt == NULL)
905                                 continue;
906                         /*
907                          * This is the case where multiple interfaces
908                          * have the same prefix, but only one is installed 
909                          * into the routing table and that prefix entry
910                          * is not the one being examined here. In the case
911                          * where RADIX_MPATH is enabled, multiple route
912                          * entries (of the same rt_key value) will be 
913                          * installed because the interface addresses all
914                          * differ.
915                          */
916                         if (!IN6_ARE_ADDR_EQUAL(&pr->ndpr_prefix.sin6_addr,
917                                &((struct sockaddr_in6 *)rt_key(rt))->sin6_addr)) {
918                                 RTFREE_LOCKED(rt);
919                                 continue;
920                         }
921                         RTFREE_LOCKED(rt);
922                 }
923
924                 if (IN6_ARE_MASKED_ADDR_EQUAL(&pr->ndpr_prefix.sin6_addr,
925                     &addr->sin6_addr, &pr->ndpr_mask))
926                         return (1);
927         }
928
929         /*
930          * If the address is assigned on the node of the other side of
931          * a p2p interface, the address should be a neighbor.
932          */
933         dstaddr = ifa_ifwithdstaddr((struct sockaddr *)addr);
934         if (dstaddr != NULL) {
935                 if (dstaddr->ifa_ifp == ifp) {
936                         ifa_free(dstaddr);
937                         return (1);
938                 }
939                 ifa_free(dstaddr);
940         }
941
942         /*
943          * If the default router list is empty, all addresses are regarded
944          * as on-link, and thus, as a neighbor.
945          * XXX: we restrict the condition to hosts, because routers usually do
946          * not have the "default router list".
947          */
948         if (!V_ip6_forwarding && TAILQ_FIRST(&V_nd_defrouter) == NULL &&
949             V_nd6_defifindex == ifp->if_index) {
950                 return (1);
951         }
952
953         return (0);
954 }
955
956
957 /*
958  * Detect if a given IPv6 address identifies a neighbor on a given link.
959  * XXX: should take care of the destination of a p2p link?
960  */
961 int
962 nd6_is_addr_neighbor(struct sockaddr_in6 *addr, struct ifnet *ifp)
963 {
964         struct llentry *lle;
965         int rc = 0;
966
967         IF_AFDATA_UNLOCK_ASSERT(ifp);
968         if (nd6_is_new_addr_neighbor(addr, ifp))
969                 return (1);
970
971         /*
972          * Even if the address matches none of our addresses, it might be
973          * in the neighbor cache.
974          */
975         IF_AFDATA_LOCK(ifp);
976         if ((lle = nd6_lookup(&addr->sin6_addr, 0, ifp)) != NULL) {
977                 LLE_RUNLOCK(lle);
978                 rc = 1;
979         }
980         IF_AFDATA_UNLOCK(ifp);
981         return (rc);
982 }
983
984 /*
985  * Free an nd6 llinfo entry.
986  * Since the function would cause significant changes in the kernel, DO NOT
987  * make it global, unless you have a strong reason for the change, and are sure
988  * that the change is safe.
989  */
990 static struct llentry *
991 nd6_free(struct llentry *ln, int gc)
992 {
993         struct llentry *next;
994         struct nd_defrouter *dr;
995         struct ifnet *ifp=NULL;
996
997         /*
998          * we used to have pfctlinput(PRC_HOSTDEAD) here.
999          * even though it is not harmful, it was not really necessary.
1000          */
1001
1002         /* cancel timer */
1003         nd6_llinfo_settimer(ln, -1);
1004
1005         if (!V_ip6_forwarding) {
1006                 int s;
1007                 s = splnet();
1008                 dr = defrouter_lookup(&L3_ADDR_SIN6(ln)->sin6_addr, ln->lle_tbl->llt_ifp);
1009
1010                 if (dr != NULL && dr->expire &&
1011                     ln->ln_state == ND6_LLINFO_STALE && gc) {
1012                         /*
1013                          * If the reason for the deletion is just garbage
1014                          * collection, and the neighbor is an active default
1015                          * router, do not delete it.  Instead, reset the GC
1016                          * timer using the router's lifetime.
1017                          * Simply deleting the entry would affect default
1018                          * router selection, which is not necessarily a good
1019                          * thing, especially when we're using router preference
1020                          * values.
1021                          * XXX: the check for ln_state would be redundant,
1022                          *      but we intentionally keep it just in case.
1023                          */
1024                         if (dr->expire > time_second)
1025                                 nd6_llinfo_settimer(ln,
1026                                     (dr->expire - time_second) * hz);
1027                         else
1028                                 nd6_llinfo_settimer(ln, (long)V_nd6_gctimer * hz);
1029                         splx(s);
1030                         LLE_WLOCK(ln);
1031                         LLE_REMREF(ln);
1032                         LLE_WUNLOCK(ln);
1033                         return (LIST_NEXT(ln, lle_next));
1034                 }
1035
1036                 if (ln->ln_router || dr) {
1037                         /*
1038                          * rt6_flush must be called whether or not the neighbor
1039                          * is in the Default Router List.
1040                          * See a corresponding comment in nd6_na_input().
1041                          */
1042                         rt6_flush(&L3_ADDR_SIN6(ln)->sin6_addr, ln->lle_tbl->llt_ifp);
1043                 }
1044
1045                 if (dr) {
1046                         /*
1047                          * Unreachablity of a router might affect the default
1048                          * router selection and on-link detection of advertised
1049                          * prefixes.
1050                          */
1051
1052                         /*
1053                          * Temporarily fake the state to choose a new default
1054                          * router and to perform on-link determination of
1055                          * prefixes correctly.
1056                          * Below the state will be set correctly,
1057                          * or the entry itself will be deleted.
1058                          */
1059                         ln->ln_state = ND6_LLINFO_INCOMPLETE;
1060
1061                         /*
1062                          * Since defrouter_select() does not affect the
1063                          * on-link determination and MIP6 needs the check
1064                          * before the default router selection, we perform
1065                          * the check now.
1066                          */
1067                         pfxlist_onlink_check();
1068
1069                         /*
1070                          * refresh default router list
1071                          */
1072                         defrouter_select();
1073                 }
1074                 splx(s);
1075         }
1076
1077         /*
1078          * Before deleting the entry, remember the next entry as the
1079          * return value.  We need this because pfxlist_onlink_check() above
1080          * might have freed other entries (particularly the old next entry) as
1081          * a side effect (XXX).
1082          */
1083         next = LIST_NEXT(ln, lle_next);
1084
1085         ifp = ln->lle_tbl->llt_ifp;
1086         IF_AFDATA_LOCK(ifp);
1087         LLE_WLOCK(ln);
1088         LLE_REMREF(ln);
1089         llentry_free(ln);
1090         IF_AFDATA_UNLOCK(ifp);
1091
1092         return (next);
1093 }
1094
1095 /*
1096  * Upper-layer reachability hint for Neighbor Unreachability Detection.
1097  *
1098  * XXX cost-effective methods?
1099  */
1100 void
1101 nd6_nud_hint(struct rtentry *rt, struct in6_addr *dst6, int force)
1102 {
1103         struct llentry *ln;
1104         struct ifnet *ifp;
1105
1106         if ((dst6 == NULL) || (rt == NULL))
1107                 return;
1108
1109         ifp = rt->rt_ifp;
1110         IF_AFDATA_LOCK(ifp);
1111         ln = nd6_lookup(dst6, ND6_EXCLUSIVE, NULL);
1112         IF_AFDATA_UNLOCK(ifp);
1113         if (ln == NULL)
1114                 return;
1115
1116         if (ln->ln_state < ND6_LLINFO_REACHABLE)
1117                 goto done;
1118
1119         /*
1120          * if we get upper-layer reachability confirmation many times,
1121          * it is possible we have false information.
1122          */
1123         if (!force) {
1124                 ln->ln_byhint++;
1125                 if (ln->ln_byhint > V_nd6_maxnudhint) {
1126                         goto done;
1127                 }
1128         }
1129
1130         ln->ln_state = ND6_LLINFO_REACHABLE;
1131         if (!ND6_LLINFO_PERMANENT(ln)) {
1132                 nd6_llinfo_settimer_locked(ln,
1133                     (long)ND_IFINFO(rt->rt_ifp)->reachable * hz);
1134         }
1135 done:
1136         LLE_WUNLOCK(ln);
1137 }
1138
1139
1140 int
1141 nd6_ioctl(u_long cmd, caddr_t data, struct ifnet *ifp)
1142 {
1143         struct in6_drlist *drl = (struct in6_drlist *)data;
1144         struct in6_oprlist *oprl = (struct in6_oprlist *)data;
1145         struct in6_ndireq *ndi = (struct in6_ndireq *)data;
1146         struct in6_nbrinfo *nbi = (struct in6_nbrinfo *)data;
1147         struct in6_ndifreq *ndif = (struct in6_ndifreq *)data;
1148         struct nd_defrouter *dr;
1149         struct nd_prefix *pr;
1150         int i = 0, error = 0;
1151         int s;
1152
1153         switch (cmd) {
1154         case SIOCGDRLST_IN6:
1155                 /*
1156                  * obsolete API, use sysctl under net.inet6.icmp6
1157                  */
1158                 bzero(drl, sizeof(*drl));
1159                 s = splnet();
1160                 dr = TAILQ_FIRST(&V_nd_defrouter);
1161                 while (dr && i < DRLSTSIZ) {
1162                         drl->defrouter[i].rtaddr = dr->rtaddr;
1163                         in6_clearscope(&drl->defrouter[i].rtaddr);
1164
1165                         drl->defrouter[i].flags = dr->flags;
1166                         drl->defrouter[i].rtlifetime = dr->rtlifetime;
1167                         drl->defrouter[i].expire = dr->expire;
1168                         drl->defrouter[i].if_index = dr->ifp->if_index;
1169                         i++;
1170                         dr = TAILQ_NEXT(dr, dr_entry);
1171                 }
1172                 splx(s);
1173                 break;
1174         case SIOCGPRLST_IN6:
1175                 /*
1176                  * obsolete API, use sysctl under net.inet6.icmp6
1177                  *
1178                  * XXX the structure in6_prlist was changed in backward-
1179                  * incompatible manner.  in6_oprlist is used for SIOCGPRLST_IN6,
1180                  * in6_prlist is used for nd6_sysctl() - fill_prlist().
1181                  */
1182                 /*
1183                  * XXX meaning of fields, especialy "raflags", is very
1184                  * differnet between RA prefix list and RR/static prefix list.
1185                  * how about separating ioctls into two?
1186                  */
1187                 bzero(oprl, sizeof(*oprl));
1188                 s = splnet();
1189                 pr = V_nd_prefix.lh_first;
1190                 while (pr && i < PRLSTSIZ) {
1191                         struct nd_pfxrouter *pfr;
1192                         int j;
1193
1194                         oprl->prefix[i].prefix = pr->ndpr_prefix.sin6_addr;
1195                         oprl->prefix[i].raflags = pr->ndpr_raf;
1196                         oprl->prefix[i].prefixlen = pr->ndpr_plen;
1197                         oprl->prefix[i].vltime = pr->ndpr_vltime;
1198                         oprl->prefix[i].pltime = pr->ndpr_pltime;
1199                         oprl->prefix[i].if_index = pr->ndpr_ifp->if_index;
1200                         if (pr->ndpr_vltime == ND6_INFINITE_LIFETIME)
1201                                 oprl->prefix[i].expire = 0;
1202                         else {
1203                                 time_t maxexpire;
1204
1205                                 /* XXX: we assume time_t is signed. */
1206                                 maxexpire = (-1) &
1207                                     ~((time_t)1 <<
1208                                     ((sizeof(maxexpire) * 8) - 1));
1209                                 if (pr->ndpr_vltime <
1210                                     maxexpire - pr->ndpr_lastupdate) {
1211                                         oprl->prefix[i].expire =
1212                                             pr->ndpr_lastupdate +
1213                                             pr->ndpr_vltime;
1214                                 } else
1215                                         oprl->prefix[i].expire = maxexpire;
1216                         }
1217
1218                         pfr = pr->ndpr_advrtrs.lh_first;
1219                         j = 0;
1220                         while (pfr) {
1221                                 if (j < DRLSTSIZ) {
1222 #define RTRADDR oprl->prefix[i].advrtr[j]
1223                                         RTRADDR = pfr->router->rtaddr;
1224                                         in6_clearscope(&RTRADDR);
1225 #undef RTRADDR
1226                                 }
1227                                 j++;
1228                                 pfr = pfr->pfr_next;
1229                         }
1230                         oprl->prefix[i].advrtrs = j;
1231                         oprl->prefix[i].origin = PR_ORIG_RA;
1232
1233                         i++;
1234                         pr = pr->ndpr_next;
1235                 }
1236                 splx(s);
1237
1238                 break;
1239         case OSIOCGIFINFO_IN6:
1240 #define ND      ndi->ndi
1241                 /* XXX: old ndp(8) assumes a positive value for linkmtu. */
1242                 bzero(&ND, sizeof(ND));
1243                 ND.linkmtu = IN6_LINKMTU(ifp);
1244                 ND.maxmtu = ND_IFINFO(ifp)->maxmtu;
1245                 ND.basereachable = ND_IFINFO(ifp)->basereachable;
1246                 ND.reachable = ND_IFINFO(ifp)->reachable;
1247                 ND.retrans = ND_IFINFO(ifp)->retrans;
1248                 ND.flags = ND_IFINFO(ifp)->flags;
1249                 ND.recalctm = ND_IFINFO(ifp)->recalctm;
1250                 ND.chlim = ND_IFINFO(ifp)->chlim;
1251                 break;
1252         case SIOCGIFINFO_IN6:
1253                 ND = *ND_IFINFO(ifp);
1254                 break;
1255         case SIOCSIFINFO_IN6:
1256                 /*
1257                  * used to change host variables from userland.
1258                  * intented for a use on router to reflect RA configurations.
1259                  */
1260                 /* 0 means 'unspecified' */
1261                 if (ND.linkmtu != 0) {
1262                         if (ND.linkmtu < IPV6_MMTU ||
1263                             ND.linkmtu > IN6_LINKMTU(ifp)) {
1264                                 error = EINVAL;
1265                                 break;
1266                         }
1267                         ND_IFINFO(ifp)->linkmtu = ND.linkmtu;
1268                 }
1269
1270                 if (ND.basereachable != 0) {
1271                         int obasereachable = ND_IFINFO(ifp)->basereachable;
1272
1273                         ND_IFINFO(ifp)->basereachable = ND.basereachable;
1274                         if (ND.basereachable != obasereachable)
1275                                 ND_IFINFO(ifp)->reachable =
1276                                     ND_COMPUTE_RTIME(ND.basereachable);
1277                 }
1278                 if (ND.retrans != 0)
1279                         ND_IFINFO(ifp)->retrans = ND.retrans;
1280                 if (ND.chlim != 0)
1281                         ND_IFINFO(ifp)->chlim = ND.chlim;
1282                 /* FALLTHROUGH */
1283         case SIOCSIFINFO_FLAGS:
1284                 ND_IFINFO(ifp)->flags = ND.flags;
1285                 break;
1286 #undef ND
1287         case SIOCSNDFLUSH_IN6:  /* XXX: the ioctl name is confusing... */
1288                 /* sync kernel routing table with the default router list */
1289                 defrouter_reset();
1290                 defrouter_select();
1291                 break;
1292         case SIOCSPFXFLUSH_IN6:
1293         {
1294                 /* flush all the prefix advertised by routers */
1295                 struct nd_prefix *pr, *next;
1296
1297                 s = splnet();
1298                 for (pr = V_nd_prefix.lh_first; pr; pr = next) {
1299                         struct in6_ifaddr *ia, *ia_next;
1300
1301                         next = pr->ndpr_next;
1302
1303                         if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr))
1304                                 continue; /* XXX */
1305
1306                         /* do we really have to remove addresses as well? */
1307                         /* XXXRW: in6_ifaddrhead locking. */
1308                         TAILQ_FOREACH_SAFE(ia, &V_in6_ifaddrhead, ia_link,
1309                             ia_next) {
1310                                 if ((ia->ia6_flags & IN6_IFF_AUTOCONF) == 0)
1311                                         continue;
1312
1313                                 if (ia->ia6_ndpr == pr)
1314                                         in6_purgeaddr(&ia->ia_ifa);
1315                         }
1316                         prelist_remove(pr);
1317                 }
1318                 splx(s);
1319                 break;
1320         }
1321         case SIOCSRTRFLUSH_IN6:
1322         {
1323                 /* flush all the default routers */
1324                 struct nd_defrouter *dr, *next;
1325
1326                 s = splnet();
1327                 defrouter_reset();
1328                 for (dr = TAILQ_FIRST(&V_nd_defrouter); dr; dr = next) {
1329                         next = TAILQ_NEXT(dr, dr_entry);
1330                         defrtrlist_del(dr);
1331                 }
1332                 defrouter_select();
1333                 splx(s);
1334                 break;
1335         }
1336         case SIOCGNBRINFO_IN6:
1337         {
1338                 struct llentry *ln;
1339                 struct in6_addr nb_addr = nbi->addr; /* make local for safety */
1340
1341                 if ((error = in6_setscope(&nb_addr, ifp, NULL)) != 0)
1342                         return (error);
1343
1344                 IF_AFDATA_LOCK(ifp);
1345                 ln = nd6_lookup(&nb_addr, 0, ifp);
1346                 IF_AFDATA_UNLOCK(ifp);
1347
1348                 if (ln == NULL) {
1349                         error = EINVAL;
1350                         break;
1351                 }
1352                 nbi->state = ln->ln_state;
1353                 nbi->asked = ln->la_asked;
1354                 nbi->isrouter = ln->ln_router;
1355                 nbi->expire = ln->la_expire;
1356                 LLE_RUNLOCK(ln);
1357                 break;
1358         }
1359         case SIOCGDEFIFACE_IN6: /* XXX: should be implemented as a sysctl? */
1360                 ndif->ifindex = V_nd6_defifindex;
1361                 break;
1362         case SIOCSDEFIFACE_IN6: /* XXX: should be implemented as a sysctl? */
1363                 return (nd6_setdefaultiface(ndif->ifindex));
1364         }
1365         return (error);
1366 }
1367
1368 /*
1369  * Create neighbor cache entry and cache link-layer address,
1370  * on reception of inbound ND6 packets.  (RS/RA/NS/redirect)
1371  *
1372  * type - ICMP6 type
1373  * code - type dependent information
1374  *
1375  * XXXXX
1376  *  The caller of this function already acquired the ndp 
1377  *  cache table lock because the cache entry is returned.
1378  */
1379 struct llentry *
1380 nd6_cache_lladdr(struct ifnet *ifp, struct in6_addr *from, char *lladdr,
1381     int lladdrlen, int type, int code)
1382 {
1383         struct llentry *ln = NULL;
1384         int is_newentry;
1385         int do_update;
1386         int olladdr;
1387         int llchange;
1388         int flags;
1389         int newstate = 0;
1390         uint16_t router = 0;
1391         struct sockaddr_in6 sin6;
1392         struct mbuf *chain = NULL;
1393         int static_route = 0;
1394
1395         IF_AFDATA_UNLOCK_ASSERT(ifp);
1396
1397         if (ifp == NULL)
1398                 panic("ifp == NULL in nd6_cache_lladdr");
1399         if (from == NULL)
1400                 panic("from == NULL in nd6_cache_lladdr");
1401
1402         /* nothing must be updated for unspecified address */
1403         if (IN6_IS_ADDR_UNSPECIFIED(from))
1404                 return NULL;
1405
1406         /*
1407          * Validation about ifp->if_addrlen and lladdrlen must be done in
1408          * the caller.
1409          *
1410          * XXX If the link does not have link-layer adderss, what should
1411          * we do? (ifp->if_addrlen == 0)
1412          * Spec says nothing in sections for RA, RS and NA.  There's small
1413          * description on it in NS section (RFC 2461 7.2.3).
1414          */
1415         flags = lladdr ? ND6_EXCLUSIVE : 0;
1416         IF_AFDATA_LOCK(ifp);
1417         ln = nd6_lookup(from, flags, ifp);
1418
1419         if (ln == NULL) {
1420                 flags |= ND6_EXCLUSIVE;
1421                 ln = nd6_lookup(from, flags | ND6_CREATE, ifp);
1422                 IF_AFDATA_UNLOCK(ifp);
1423                 is_newentry = 1;
1424         } else {
1425                 IF_AFDATA_UNLOCK(ifp);          
1426                 /* do nothing if static ndp is set */
1427                 if (ln->la_flags & LLE_STATIC) {
1428                         static_route = 1;
1429                         goto done;
1430                 }
1431                 is_newentry = 0;
1432         }
1433         if (ln == NULL)
1434                 return (NULL);
1435
1436         olladdr = (ln->la_flags & LLE_VALID) ? 1 : 0;
1437         if (olladdr && lladdr) {
1438                 llchange = bcmp(lladdr, &ln->ll_addr,
1439                     ifp->if_addrlen);
1440         } else
1441                 llchange = 0;
1442
1443         /*
1444          * newentry olladdr  lladdr  llchange   (*=record)
1445          *      0       n       n       --      (1)
1446          *      0       y       n       --      (2)
1447          *      0       n       y       --      (3) * STALE
1448          *      0       y       y       n       (4) *
1449          *      0       y       y       y       (5) * STALE
1450          *      1       --      n       --      (6)   NOSTATE(= PASSIVE)
1451          *      1       --      y       --      (7) * STALE
1452          */
1453
1454         if (lladdr) {           /* (3-5) and (7) */
1455                 /*
1456                  * Record source link-layer address
1457                  * XXX is it dependent to ifp->if_type?
1458                  */
1459                 bcopy(lladdr, &ln->ll_addr, ifp->if_addrlen);
1460                 ln->la_flags |= LLE_VALID;
1461         }
1462
1463         if (!is_newentry) {
1464                 if ((!olladdr && lladdr != NULL) ||     /* (3) */
1465                     (olladdr && lladdr != NULL && llchange)) {  /* (5) */
1466                         do_update = 1;
1467                         newstate = ND6_LLINFO_STALE;
1468                 } else                                  /* (1-2,4) */
1469                         do_update = 0;
1470         } else {
1471                 do_update = 1;
1472                 if (lladdr == NULL)                     /* (6) */
1473                         newstate = ND6_LLINFO_NOSTATE;
1474                 else                                    /* (7) */
1475                         newstate = ND6_LLINFO_STALE;
1476         }
1477
1478         if (do_update) {
1479                 /*
1480                  * Update the state of the neighbor cache.
1481                  */
1482                 ln->ln_state = newstate;
1483
1484                 if (ln->ln_state == ND6_LLINFO_STALE) {
1485                         /*
1486                          * XXX: since nd6_output() below will cause
1487                          * state tansition to DELAY and reset the timer,
1488                          * we must set the timer now, although it is actually
1489                          * meaningless.
1490                          */
1491                         nd6_llinfo_settimer_locked(ln, (long)V_nd6_gctimer * hz);
1492
1493                         if (ln->la_hold) {
1494                                 struct mbuf *m_hold, *m_hold_next;
1495
1496                                 /*
1497                                  * reset the la_hold in advance, to explicitly
1498                                  * prevent a la_hold lookup in nd6_output()
1499                                  * (wouldn't happen, though...)
1500                                  */
1501                                 for (m_hold = ln->la_hold, ln->la_hold = NULL;
1502                                     m_hold; m_hold = m_hold_next) {
1503                                         m_hold_next = m_hold->m_nextpkt;
1504                                         m_hold->m_nextpkt = NULL;
1505
1506                                         /*
1507                                          * we assume ifp is not a p2p here, so
1508                                          * just set the 2nd argument as the
1509                                          * 1st one.
1510                                          */
1511                                         nd6_output_lle(ifp, ifp, m_hold, L3_ADDR_SIN6(ln), NULL, ln, &chain);
1512                                 }
1513                                 /*
1514                                  * If we have mbufs in the chain we need to do
1515                                  * deferred transmit. Copy the address from the
1516                                  * llentry before dropping the lock down below.
1517                                  */
1518                                 if (chain != NULL)
1519                                         memcpy(&sin6, L3_ADDR_SIN6(ln), sizeof(sin6));
1520                         }
1521                 } else if (ln->ln_state == ND6_LLINFO_INCOMPLETE) {
1522                         /* probe right away */
1523                         nd6_llinfo_settimer_locked((void *)ln, 0);
1524                 }
1525         }
1526
1527         /*
1528          * ICMP6 type dependent behavior.
1529          *
1530          * NS: clear IsRouter if new entry
1531          * RS: clear IsRouter
1532          * RA: set IsRouter if there's lladdr
1533          * redir: clear IsRouter if new entry
1534          *
1535          * RA case, (1):
1536          * The spec says that we must set IsRouter in the following cases:
1537          * - If lladdr exist, set IsRouter.  This means (1-5).
1538          * - If it is old entry (!newentry), set IsRouter.  This means (7).
1539          * So, based on the spec, in (1-5) and (7) cases we must set IsRouter.
1540          * A quetion arises for (1) case.  (1) case has no lladdr in the
1541          * neighbor cache, this is similar to (6).
1542          * This case is rare but we figured that we MUST NOT set IsRouter.
1543          *
1544          * newentry olladdr  lladdr  llchange       NS  RS  RA  redir
1545          *                                                      D R
1546          *      0       n       n       --      (1)     c   ?     s
1547          *      0       y       n       --      (2)     c   s     s
1548          *      0       n       y       --      (3)     c   s     s
1549          *      0       y       y       n       (4)     c   s     s
1550          *      0       y       y       y       (5)     c   s     s
1551          *      1       --      n       --      (6) c   c       c s
1552          *      1       --      y       --      (7) c   c   s   c s
1553          *
1554          *                                      (c=clear s=set)
1555          */
1556         switch (type & 0xff) {
1557         case ND_NEIGHBOR_SOLICIT:
1558                 /*
1559                  * New entry must have is_router flag cleared.
1560                  */
1561                 if (is_newentry)        /* (6-7) */
1562                         ln->ln_router = 0;
1563                 break;
1564         case ND_REDIRECT:
1565                 /*
1566                  * If the icmp is a redirect to a better router, always set the
1567                  * is_router flag.  Otherwise, if the entry is newly created,
1568                  * clear the flag.  [RFC 2461, sec 8.3]
1569                  */
1570                 if (code == ND_REDIRECT_ROUTER)
1571                         ln->ln_router = 1;
1572                 else if (is_newentry) /* (6-7) */
1573                         ln->ln_router = 0;
1574                 break;
1575         case ND_ROUTER_SOLICIT:
1576                 /*
1577                  * is_router flag must always be cleared.
1578                  */
1579                 ln->ln_router = 0;
1580                 break;
1581         case ND_ROUTER_ADVERT:
1582                 /*
1583                  * Mark an entry with lladdr as a router.
1584                  */
1585                 if ((!is_newentry && (olladdr || lladdr)) ||    /* (2-5) */
1586                     (is_newentry && lladdr)) {                  /* (7) */
1587                         ln->ln_router = 1;
1588                 }
1589                 break;
1590         }
1591
1592         if (ln != NULL) {
1593                 static_route = (ln->la_flags & LLE_STATIC);
1594                 router = ln->ln_router;
1595
1596                 if (flags & ND6_EXCLUSIVE)
1597                         LLE_WUNLOCK(ln);
1598                 else
1599                         LLE_RUNLOCK(ln);
1600                 if (static_route)
1601                         ln = NULL;
1602         }
1603         if (chain)
1604                 nd6_output_flush(ifp, ifp, chain, &sin6, NULL);
1605         
1606         /*
1607          * When the link-layer address of a router changes, select the
1608          * best router again.  In particular, when the neighbor entry is newly
1609          * created, it might affect the selection policy.
1610          * Question: can we restrict the first condition to the "is_newentry"
1611          * case?
1612          * XXX: when we hear an RA from a new router with the link-layer
1613          * address option, defrouter_select() is called twice, since
1614          * defrtrlist_update called the function as well.  However, I believe
1615          * we can compromise the overhead, since it only happens the first
1616          * time.
1617          * XXX: although defrouter_select() should not have a bad effect
1618          * for those are not autoconfigured hosts, we explicitly avoid such
1619          * cases for safety.
1620          */
1621         if (do_update && router && !V_ip6_forwarding && V_ip6_accept_rtadv) {
1622                 /*
1623                  * guaranteed recursion
1624                  */
1625                 defrouter_select();
1626         }
1627         
1628         return (ln);
1629 done:   
1630         if (ln != NULL) {
1631                 if (flags & ND6_EXCLUSIVE)
1632                         LLE_WUNLOCK(ln);
1633                 else
1634                         LLE_RUNLOCK(ln);
1635                 if (static_route)
1636                         ln = NULL;
1637         }
1638         return (ln);
1639 }
1640
1641 static void
1642 nd6_slowtimo(void *arg)
1643 {
1644         CURVNET_SET((struct vnet *) arg);
1645         struct nd_ifinfo *nd6if;
1646         struct ifnet *ifp;
1647
1648         callout_reset(&V_nd6_slowtimo_ch, ND6_SLOWTIMER_INTERVAL * hz,
1649             nd6_slowtimo, curvnet);
1650         IFNET_RLOCK_NOSLEEP();
1651         for (ifp = TAILQ_FIRST(&V_ifnet); ifp;
1652             ifp = TAILQ_NEXT(ifp, if_list)) {
1653                 nd6if = ND_IFINFO(ifp);
1654                 if (nd6if->basereachable && /* already initialized */
1655                     (nd6if->recalctm -= ND6_SLOWTIMER_INTERVAL) <= 0) {
1656                         /*
1657                          * Since reachable time rarely changes by router
1658                          * advertisements, we SHOULD insure that a new random
1659                          * value gets recomputed at least once every few hours.
1660                          * (RFC 2461, 6.3.4)
1661                          */
1662                         nd6if->recalctm = V_nd6_recalc_reachtm_interval;
1663                         nd6if->reachable = ND_COMPUTE_RTIME(nd6if->basereachable);
1664                 }
1665         }
1666         IFNET_RUNLOCK_NOSLEEP();
1667         CURVNET_RESTORE();
1668 }
1669
1670 int
1671 nd6_output(struct ifnet *ifp, struct ifnet *origifp, struct mbuf *m0,
1672     struct sockaddr_in6 *dst, struct rtentry *rt0)
1673 {
1674
1675         return (nd6_output_lle(ifp, origifp, m0, dst, rt0, NULL, NULL));
1676 }
1677
1678
1679 /*
1680  * Note that I'm not enforcing any global serialization
1681  * lle state or asked changes here as the logic is too
1682  * complicated to avoid having to always acquire an exclusive
1683  * lock
1684  * KMM
1685  *
1686  */
1687 #define senderr(e) { error = (e); goto bad;}
1688
1689 int
1690 nd6_output_lle(struct ifnet *ifp, struct ifnet *origifp, struct mbuf *m0,
1691     struct sockaddr_in6 *dst, struct rtentry *rt0, struct llentry *lle,
1692         struct mbuf **chain)
1693 {
1694         struct mbuf *m = m0;
1695         struct llentry *ln = lle;
1696         int error = 0;
1697         int flags = 0;
1698
1699 #ifdef INVARIANTS
1700         if (lle != NULL) {
1701                 
1702                 LLE_WLOCK_ASSERT(lle);
1703
1704                 KASSERT(chain != NULL, (" lle locked but no mbuf chain pointer passed"));
1705         }
1706 #endif
1707         if (IN6_IS_ADDR_MULTICAST(&dst->sin6_addr))
1708                 goto sendpkt;
1709
1710         if (nd6_need_cache(ifp) == 0)
1711                 goto sendpkt;
1712
1713         /*
1714          * next hop determination.  This routine is derived from ether_output.
1715          */
1716
1717         /*
1718          * Address resolution or Neighbor Unreachability Detection
1719          * for the next hop.
1720          * At this point, the destination of the packet must be a unicast
1721          * or an anycast address(i.e. not a multicast).
1722          */
1723
1724         flags = ((m != NULL) || (lle != NULL)) ? LLE_EXCLUSIVE : 0;
1725         if (ln == NULL) {
1726         retry:
1727                 IF_AFDATA_LOCK(ifp);
1728                 ln = lla_lookup(LLTABLE6(ifp), flags, (struct sockaddr *)dst);
1729                 IF_AFDATA_UNLOCK(ifp);
1730                 if ((ln == NULL) && nd6_is_addr_neighbor(dst, ifp))  {
1731                         /*
1732                          * Since nd6_is_addr_neighbor() internally calls nd6_lookup(),
1733                          * the condition below is not very efficient.  But we believe
1734                          * it is tolerable, because this should be a rare case.
1735                          */
1736                         flags = ND6_CREATE | (m ? ND6_EXCLUSIVE : 0);
1737                         IF_AFDATA_LOCK(ifp);
1738                         ln = nd6_lookup(&dst->sin6_addr, flags, ifp);
1739                         IF_AFDATA_UNLOCK(ifp);
1740                 }
1741         } 
1742         if (ln == NULL) {
1743                 if ((ifp->if_flags & IFF_POINTOPOINT) == 0 &&
1744                     !(ND_IFINFO(ifp)->flags & ND6_IFF_PERFORMNUD)) {
1745                         char ip6buf[INET6_ADDRSTRLEN];
1746                         log(LOG_DEBUG,
1747                             "nd6_output: can't allocate llinfo for %s "
1748                             "(ln=%p)\n",
1749                             ip6_sprintf(ip6buf, &dst->sin6_addr), ln);
1750                         senderr(EIO);   /* XXX: good error? */
1751                 }
1752                 goto sendpkt;   /* send anyway */
1753         }
1754
1755         /* We don't have to do link-layer address resolution on a p2p link. */
1756         if ((ifp->if_flags & IFF_POINTOPOINT) != 0 &&
1757             ln->ln_state < ND6_LLINFO_REACHABLE) {
1758                 if ((flags & LLE_EXCLUSIVE) == 0) {
1759                         flags |= LLE_EXCLUSIVE;
1760                         goto retry;
1761                 }
1762                 ln->ln_state = ND6_LLINFO_STALE;
1763                 nd6_llinfo_settimer_locked(ln, (long)V_nd6_gctimer * hz);
1764         }
1765
1766         /*
1767          * The first time we send a packet to a neighbor whose entry is
1768          * STALE, we have to change the state to DELAY and a sets a timer to
1769          * expire in DELAY_FIRST_PROBE_TIME seconds to ensure do
1770          * neighbor unreachability detection on expiration.
1771          * (RFC 2461 7.3.3)
1772          */
1773         if (ln->ln_state == ND6_LLINFO_STALE) {
1774                 if ((flags & LLE_EXCLUSIVE) == 0) {
1775                         flags |= LLE_EXCLUSIVE;
1776                         LLE_RUNLOCK(ln);
1777                         goto retry;
1778                 }
1779                 ln->la_asked = 0;
1780                 ln->ln_state = ND6_LLINFO_DELAY;
1781                 nd6_llinfo_settimer_locked(ln, (long)V_nd6_delay * hz);
1782         }
1783
1784         /*
1785          * If the neighbor cache entry has a state other than INCOMPLETE
1786          * (i.e. its link-layer address is already resolved), just
1787          * send the packet.
1788          */
1789         if (ln->ln_state > ND6_LLINFO_INCOMPLETE)
1790                 goto sendpkt;
1791
1792         /*
1793          * There is a neighbor cache entry, but no ethernet address
1794          * response yet.  Append this latest packet to the end of the
1795          * packet queue in the mbuf, unless the number of the packet
1796          * does not exceed nd6_maxqueuelen.  When it exceeds nd6_maxqueuelen,
1797          * the oldest packet in the queue will be removed.
1798          */
1799         if (ln->ln_state == ND6_LLINFO_NOSTATE)
1800                 ln->ln_state = ND6_LLINFO_INCOMPLETE;
1801
1802         if ((flags & LLE_EXCLUSIVE) == 0) {
1803                 flags |= LLE_EXCLUSIVE;
1804                 LLE_RUNLOCK(ln);
1805                 goto retry;
1806         }
1807         if (ln->la_hold) {
1808                 struct mbuf *m_hold;
1809                 int i;
1810                 
1811                 i = 0;
1812                 for (m_hold = ln->la_hold; m_hold; m_hold = m_hold->m_nextpkt) {
1813                         i++;
1814                         if (m_hold->m_nextpkt == NULL) {
1815                                 m_hold->m_nextpkt = m;
1816                                 break;
1817                         }
1818                 }
1819                 while (i >= V_nd6_maxqueuelen) {
1820                         m_hold = ln->la_hold;
1821                         ln->la_hold = ln->la_hold->m_nextpkt;
1822                         m_freem(m_hold);
1823                         i--;
1824                 }
1825         } else {
1826                 ln->la_hold = m;
1827         }
1828         /*
1829          * We did the lookup (no lle arg) so we
1830          * need to do the unlock here
1831          */
1832         if (lle == NULL) {
1833                 if (flags & LLE_EXCLUSIVE)
1834                         LLE_WUNLOCK(ln);
1835                 else
1836                         LLE_RUNLOCK(ln);
1837         }
1838         
1839         /*
1840          * If there has been no NS for the neighbor after entering the
1841          * INCOMPLETE state, send the first solicitation.
1842          */
1843         if (!ND6_LLINFO_PERMANENT(ln) && ln->la_asked == 0) {
1844                 ln->la_asked++;
1845                 
1846                 nd6_llinfo_settimer(ln,
1847                     (long)ND_IFINFO(ifp)->retrans * hz / 1000);
1848                 nd6_ns_output(ifp, NULL, &dst->sin6_addr, ln, 0);
1849         }
1850         return (0);
1851
1852   sendpkt:
1853         /* discard the packet if IPv6 operation is disabled on the interface */
1854         if ((ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED)) {
1855                 error = ENETDOWN; /* better error? */
1856                 goto bad;
1857         }
1858         /*
1859          * ln is valid and the caller did not pass in 
1860          * an llentry
1861          */
1862         if ((ln != NULL) && (lle == NULL)) {
1863                 if (flags & LLE_EXCLUSIVE)
1864                         LLE_WUNLOCK(ln);
1865                 else
1866                         LLE_RUNLOCK(ln);
1867         }
1868
1869 #ifdef MAC
1870         mac_netinet6_nd6_send(ifp, m);
1871 #endif
1872         /*
1873          * We were passed in a pointer to an lle with the lock held 
1874          * this means that we can't call if_output as we will
1875          * recurse on the lle lock - so what we do is we create
1876          * a list of mbufs to send and transmit them in the caller
1877          * after the lock is dropped
1878          */
1879         if (lle != NULL) {
1880                 if (*chain == NULL)
1881                         *chain = m;
1882                 else {
1883                         struct mbuf *m = *chain;
1884
1885                         /*
1886                          * append mbuf to end of deferred chain
1887                          */
1888                         while (m->m_nextpkt != NULL)
1889                                 m = m->m_nextpkt;
1890                         m->m_nextpkt = m;
1891                 }
1892                 return (error);
1893         }
1894         if ((ifp->if_flags & IFF_LOOPBACK) != 0) {
1895                 return ((*ifp->if_output)(origifp, m, (struct sockaddr *)dst,
1896                     NULL));
1897         }
1898         error = (*ifp->if_output)(ifp, m, (struct sockaddr *)dst, NULL);
1899         return (error);
1900
1901   bad:
1902         /*
1903          * ln is valid and the caller did not pass in 
1904          * an llentry
1905          */
1906         if ((ln != NULL) && (lle == NULL)) {
1907                 if (flags & LLE_EXCLUSIVE)
1908                         LLE_WUNLOCK(ln);
1909                 else
1910                         LLE_RUNLOCK(ln);
1911         }
1912         if (m)
1913                 m_freem(m);
1914         return (error);
1915 }
1916 #undef senderr
1917
1918
1919 int
1920 nd6_output_flush(struct ifnet *ifp, struct ifnet *origifp, struct mbuf *chain,
1921     struct sockaddr_in6 *dst, struct route *ro)
1922 {
1923         struct mbuf *m, *m_head;
1924         struct ifnet *outifp;
1925         int error = 0;
1926
1927         m_head = chain;
1928         if ((ifp->if_flags & IFF_LOOPBACK) != 0)
1929                 outifp = origifp;
1930         else
1931                 outifp = ifp;
1932         
1933         while (m_head) {
1934                 m = m_head;
1935                 m_head = m_head->m_nextpkt;
1936                 error = (*ifp->if_output)(ifp, m, (struct sockaddr *)dst, ro);                         
1937         }
1938
1939         /*
1940          * XXX
1941          * note that intermediate errors are blindly ignored - but this is 
1942          * the same convention as used with nd6_output when called by
1943          * nd6_cache_lladdr
1944          */
1945         return (error);
1946 }       
1947
1948
1949 int
1950 nd6_need_cache(struct ifnet *ifp)
1951 {
1952         /*
1953          * XXX: we currently do not make neighbor cache on any interface
1954          * other than ARCnet, Ethernet, FDDI and GIF.
1955          *
1956          * RFC2893 says:
1957          * - unidirectional tunnels needs no ND
1958          */
1959         switch (ifp->if_type) {
1960         case IFT_ARCNET:
1961         case IFT_ETHER:
1962         case IFT_FDDI:
1963         case IFT_IEEE1394:
1964 #ifdef IFT_L2VLAN
1965         case IFT_L2VLAN:
1966 #endif
1967 #ifdef IFT_IEEE80211
1968         case IFT_IEEE80211:
1969 #endif
1970 #ifdef IFT_CARP
1971         case IFT_CARP:
1972 #endif
1973         case IFT_GIF:           /* XXX need more cases? */
1974         case IFT_PPP:
1975         case IFT_TUNNEL:
1976         case IFT_BRIDGE:
1977         case IFT_PROPVIRTUAL:
1978                 return (1);
1979         default:
1980                 return (0);
1981         }
1982 }
1983
1984 /*
1985  * the callers of this function need to be re-worked to drop
1986  * the lle lock, drop here for now
1987  */
1988 int
1989 nd6_storelladdr(struct ifnet *ifp, struct mbuf *m,
1990     struct sockaddr *dst, u_char *desten, struct llentry **lle)
1991 {
1992         struct llentry *ln;
1993
1994         *lle = NULL;
1995         IF_AFDATA_UNLOCK_ASSERT(ifp);
1996         if (m->m_flags & M_MCAST) {
1997                 int i;
1998
1999                 switch (ifp->if_type) {
2000                 case IFT_ETHER:
2001                 case IFT_FDDI:
2002 #ifdef IFT_L2VLAN
2003                 case IFT_L2VLAN:
2004 #endif
2005 #ifdef IFT_IEEE80211
2006                 case IFT_IEEE80211:
2007 #endif
2008                 case IFT_BRIDGE:
2009                 case IFT_ISO88025:
2010                         ETHER_MAP_IPV6_MULTICAST(&SIN6(dst)->sin6_addr,
2011                                                  desten);
2012                         return (0);
2013                 case IFT_IEEE1394:
2014                         /*
2015                          * netbsd can use if_broadcastaddr, but we don't do so
2016                          * to reduce # of ifdef.
2017                          */
2018                         for (i = 0; i < ifp->if_addrlen; i++)
2019                                 desten[i] = ~0;
2020                         return (0);
2021                 case IFT_ARCNET:
2022                         *desten = 0;
2023                         return (0);
2024                 default:
2025                         m_freem(m);
2026                         return (EAFNOSUPPORT);
2027                 }
2028         }
2029
2030
2031         /*
2032          * the entry should have been created in nd6_store_lladdr
2033          */
2034         IF_AFDATA_LOCK(ifp);
2035         ln = lla_lookup(LLTABLE6(ifp), 0, dst);
2036         IF_AFDATA_UNLOCK(ifp);
2037         if ((ln == NULL) || !(ln->la_flags & LLE_VALID)) {
2038                 if (ln != NULL)
2039                         LLE_RUNLOCK(ln);
2040                 /* this could happen, if we could not allocate memory */
2041                 m_freem(m);
2042                 return (1);
2043         }
2044
2045         bcopy(&ln->ll_addr, desten, ifp->if_addrlen);
2046         *lle = ln;
2047         LLE_RUNLOCK(ln);
2048         /*
2049          * A *small* use after free race exists here
2050          */
2051         return (0);
2052 }
2053
2054 static void 
2055 clear_llinfo_pqueue(struct llentry *ln)
2056 {
2057         struct mbuf *m_hold, *m_hold_next;
2058
2059         for (m_hold = ln->la_hold; m_hold; m_hold = m_hold_next) {
2060                 m_hold_next = m_hold->m_nextpkt;
2061                 m_hold->m_nextpkt = NULL;
2062                 m_freem(m_hold);
2063         }
2064
2065         ln->la_hold = NULL;
2066         return;
2067 }
2068
2069 static int nd6_sysctl_drlist(SYSCTL_HANDLER_ARGS);
2070 static int nd6_sysctl_prlist(SYSCTL_HANDLER_ARGS);
2071 #ifdef SYSCTL_DECL
2072 SYSCTL_DECL(_net_inet6_icmp6);
2073 #endif
2074 SYSCTL_NODE(_net_inet6_icmp6, ICMPV6CTL_ND6_DRLIST, nd6_drlist,
2075         CTLFLAG_RD, nd6_sysctl_drlist, "");
2076 SYSCTL_NODE(_net_inet6_icmp6, ICMPV6CTL_ND6_PRLIST, nd6_prlist,
2077         CTLFLAG_RD, nd6_sysctl_prlist, "");
2078 SYSCTL_VNET_INT(_net_inet6_icmp6, ICMPV6CTL_ND6_MAXQLEN, nd6_maxqueuelen,
2079         CTLFLAG_RW, &VNET_NAME(nd6_maxqueuelen), 1, "");
2080
2081 static int
2082 nd6_sysctl_drlist(SYSCTL_HANDLER_ARGS)
2083 {
2084         int error;
2085         char buf[1024] __aligned(4);
2086         struct in6_defrouter *d, *de;
2087         struct nd_defrouter *dr;
2088
2089         if (req->newptr)
2090                 return EPERM;
2091         error = 0;
2092
2093         for (dr = TAILQ_FIRST(&V_nd_defrouter); dr;
2094              dr = TAILQ_NEXT(dr, dr_entry)) {
2095                 d = (struct in6_defrouter *)buf;
2096                 de = (struct in6_defrouter *)(buf + sizeof(buf));
2097
2098                 if (d + 1 <= de) {
2099                         bzero(d, sizeof(*d));
2100                         d->rtaddr.sin6_family = AF_INET6;
2101                         d->rtaddr.sin6_len = sizeof(d->rtaddr);
2102                         d->rtaddr.sin6_addr = dr->rtaddr;
2103                         error = sa6_recoverscope(&d->rtaddr);
2104                         if (error != 0)
2105                                 return (error);
2106                         d->flags = dr->flags;
2107                         d->rtlifetime = dr->rtlifetime;
2108                         d->expire = dr->expire;
2109                         d->if_index = dr->ifp->if_index;
2110                 } else
2111                         panic("buffer too short");
2112
2113                 error = SYSCTL_OUT(req, buf, sizeof(*d));
2114                 if (error)
2115                         break;
2116         }
2117
2118         return (error);
2119 }
2120
2121 static int
2122 nd6_sysctl_prlist(SYSCTL_HANDLER_ARGS)
2123 {
2124         int error;
2125         char buf[1024] __aligned(4);
2126         struct in6_prefix *p, *pe;
2127         struct nd_prefix *pr;
2128         char ip6buf[INET6_ADDRSTRLEN];
2129
2130         if (req->newptr)
2131                 return EPERM;
2132         error = 0;
2133
2134         for (pr = V_nd_prefix.lh_first; pr; pr = pr->ndpr_next) {
2135                 u_short advrtrs;
2136                 size_t advance;
2137                 struct sockaddr_in6 *sin6, *s6;
2138                 struct nd_pfxrouter *pfr;
2139
2140                 p = (struct in6_prefix *)buf;
2141                 pe = (struct in6_prefix *)(buf + sizeof(buf));
2142
2143                 if (p + 1 <= pe) {
2144                         bzero(p, sizeof(*p));
2145                         sin6 = (struct sockaddr_in6 *)(p + 1);
2146
2147                         p->prefix = pr->ndpr_prefix;
2148                         if (sa6_recoverscope(&p->prefix)) {
2149                                 log(LOG_ERR,
2150                                     "scope error in prefix list (%s)\n",
2151                                     ip6_sprintf(ip6buf, &p->prefix.sin6_addr));
2152                                 /* XXX: press on... */
2153                         }
2154                         p->raflags = pr->ndpr_raf;
2155                         p->prefixlen = pr->ndpr_plen;
2156                         p->vltime = pr->ndpr_vltime;
2157                         p->pltime = pr->ndpr_pltime;
2158                         p->if_index = pr->ndpr_ifp->if_index;
2159                         if (pr->ndpr_vltime == ND6_INFINITE_LIFETIME)
2160                                 p->expire = 0;
2161                         else {
2162                                 time_t maxexpire;
2163
2164                                 /* XXX: we assume time_t is signed. */
2165                                 maxexpire = (-1) &
2166                                     ~((time_t)1 <<
2167                                     ((sizeof(maxexpire) * 8) - 1));
2168                                 if (pr->ndpr_vltime <
2169                                     maxexpire - pr->ndpr_lastupdate) {
2170                                     p->expire = pr->ndpr_lastupdate +
2171                                         pr->ndpr_vltime;
2172                                 } else
2173                                         p->expire = maxexpire;
2174                         }
2175                         p->refcnt = pr->ndpr_refcnt;
2176                         p->flags = pr->ndpr_stateflags;
2177                         p->origin = PR_ORIG_RA;
2178                         advrtrs = 0;
2179                         for (pfr = pr->ndpr_advrtrs.lh_first; pfr;
2180                              pfr = pfr->pfr_next) {
2181                                 if ((void *)&sin6[advrtrs + 1] > (void *)pe) {
2182                                         advrtrs++;
2183                                         continue;
2184                                 }
2185                                 s6 = &sin6[advrtrs];
2186                                 bzero(s6, sizeof(*s6));
2187                                 s6->sin6_family = AF_INET6;
2188                                 s6->sin6_len = sizeof(*sin6);
2189                                 s6->sin6_addr = pfr->router->rtaddr;
2190                                 if (sa6_recoverscope(s6)) {
2191                                         log(LOG_ERR,
2192                                             "scope error in "
2193                                             "prefix list (%s)\n",
2194                                             ip6_sprintf(ip6buf,
2195                                                     &pfr->router->rtaddr));
2196                                 }
2197                                 advrtrs++;
2198                         }
2199                         p->advrtrs = advrtrs;
2200                 } else
2201                         panic("buffer too short");
2202
2203                 advance = sizeof(*p) + sizeof(*sin6) * advrtrs;
2204                 error = SYSCTL_OUT(req, buf, advance);
2205                 if (error)
2206                         break;
2207         }
2208
2209         return (error);
2210 }