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