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