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