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