]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/netinet6/in6.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / netinet6 / in6.c
1 /*-
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the project nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      $KAME: in6.c,v 1.259 2002/01/21 11:37:50 keiichi Exp $
30  */
31
32 /*-
33  * Copyright (c) 1982, 1986, 1991, 1993
34  *      The Regents of the University of California.  All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  * 4. Neither the name of the University nor the names of its contributors
45  *    may be used to endorse or promote products derived from this software
46  *    without specific prior written permission.
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58  * SUCH DAMAGE.
59  *
60  *      @(#)in.c        8.2 (Berkeley) 11/15/93
61  */
62
63 #include <sys/cdefs.h>
64 __FBSDID("$FreeBSD$");
65
66 #include "opt_compat.h"
67 #include "opt_inet.h"
68 #include "opt_inet6.h"
69
70 #include <sys/param.h>
71 #include <sys/errno.h>
72 #include <sys/jail.h>
73 #include <sys/malloc.h>
74 #include <sys/socket.h>
75 #include <sys/socketvar.h>
76 #include <sys/sockio.h>
77 #include <sys/systm.h>
78 #include <sys/priv.h>
79 #include <sys/proc.h>
80 #include <sys/time.h>
81 #include <sys/kernel.h>
82 #include <sys/syslog.h>
83
84 #include <net/if.h>
85 #include <net/if_var.h>
86 #include <net/if_types.h>
87 #include <net/route.h>
88 #include <net/if_dl.h>
89 #include <net/vnet.h>
90
91 #include <netinet/in.h>
92 #include <netinet/in_var.h>
93 #include <net/if_llatbl.h>
94 #include <netinet/if_ether.h>
95 #include <netinet/in_systm.h>
96 #include <netinet/ip.h>
97 #include <netinet/in_pcb.h>
98
99 #include <netinet/ip6.h>
100 #include <netinet6/ip6_var.h>
101 #include <netinet6/nd6.h>
102 #include <netinet6/mld6_var.h>
103 #include <netinet6/ip6_mroute.h>
104 #include <netinet6/in6_ifattach.h>
105 #include <netinet6/scope6_var.h>
106 #include <netinet6/in6_pcb.h>
107
108 VNET_DECLARE(int, icmp6_nodeinfo_oldmcprefix);
109 #define V_icmp6_nodeinfo_oldmcprefix    VNET(icmp6_nodeinfo_oldmcprefix)
110
111 /*
112  * Definitions of some costant IP6 addresses.
113  */
114 const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
115 const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
116 const struct in6_addr in6addr_nodelocal_allnodes =
117         IN6ADDR_NODELOCAL_ALLNODES_INIT;
118 const struct in6_addr in6addr_linklocal_allnodes =
119         IN6ADDR_LINKLOCAL_ALLNODES_INIT;
120 const struct in6_addr in6addr_linklocal_allrouters =
121         IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
122 const struct in6_addr in6addr_linklocal_allv2routers =
123         IN6ADDR_LINKLOCAL_ALLV2ROUTERS_INIT;
124
125 const struct in6_addr in6mask0 = IN6MASK0;
126 const struct in6_addr in6mask32 = IN6MASK32;
127 const struct in6_addr in6mask64 = IN6MASK64;
128 const struct in6_addr in6mask96 = IN6MASK96;
129 const struct in6_addr in6mask128 = IN6MASK128;
130
131 const struct sockaddr_in6 sa6_any =
132         { sizeof(sa6_any), AF_INET6, 0, 0, IN6ADDR_ANY_INIT, 0 };
133
134 static int in6_lifaddr_ioctl(struct socket *, u_long, caddr_t,
135         struct ifnet *, struct thread *);
136 static int in6_ifinit(struct ifnet *, struct in6_ifaddr *,
137         struct sockaddr_in6 *, int);
138 static void in6_unlink_ifa(struct in6_ifaddr *, struct ifnet *);
139
140 int     (*faithprefix_p)(struct in6_addr *);
141
142 #define ifa2ia6(ifa)    ((struct in6_ifaddr *)(ifa))
143 #define ia62ifa(ia6)    (&((ia6)->ia_ifa))
144
145 void
146 in6_ifaddloop(struct ifaddr *ifa)
147 {
148         struct sockaddr_dl gateway;
149         struct sockaddr_in6 mask, addr;
150         struct rtentry rt;
151         struct in6_ifaddr *ia;
152         struct ifnet *ifp;
153         struct llentry *ln;
154
155         ia = ifa2ia6(ifa);
156         ifp = ifa->ifa_ifp;
157         IF_AFDATA_LOCK(ifp);
158         ifa->ifa_rtrequest = nd6_rtrequest;
159         ln = lla_lookup(LLTABLE6(ifp), (LLE_CREATE | LLE_IFADDR |
160             LLE_EXCLUSIVE), (struct sockaddr *)&ia->ia_addr);
161         IF_AFDATA_UNLOCK(ifp);
162         if (ln != NULL) {
163                 ln->la_expire = 0;  /* for IPv6 this means permanent */
164                 ln->ln_state = ND6_LLINFO_REACHABLE;
165                 /*
166                  * initialize for rtmsg generation
167                  */
168                 bzero(&gateway, sizeof(gateway));
169                 gateway.sdl_len = sizeof(gateway);
170                 gateway.sdl_family = AF_LINK;
171                 gateway.sdl_nlen = 0;
172                 gateway.sdl_alen = 6;
173                 memcpy(gateway.sdl_data, &ln->ll_addr.mac_aligned,
174                     sizeof(ln->ll_addr));
175                 LLE_WUNLOCK(ln);
176         }
177
178         bzero(&rt, sizeof(rt));
179         rt.rt_gateway = (struct sockaddr *)&gateway;
180         memcpy(&mask, &ia->ia_prefixmask, sizeof(ia->ia_prefixmask));
181         memcpy(&addr, &ia->ia_addr, sizeof(ia->ia_addr));
182         rt_mask(&rt) = (struct sockaddr *)&mask;
183         rt_key(&rt) = (struct sockaddr *)&addr;
184         rt.rt_flags = RTF_UP | RTF_HOST | RTF_STATIC;
185         /* Announce arrival of local address to all FIBs. */
186         rt_newaddrmsg(RTM_ADD, ifa, 0, &rt);
187 }
188
189 void
190 in6_ifremloop(struct ifaddr *ifa)
191 {
192         struct sockaddr_dl gateway;
193         struct sockaddr_in6 mask, addr;
194         struct rtentry rt0;
195         struct in6_ifaddr *ia;
196         struct ifnet *ifp;
197
198         ia = ifa2ia6(ifa);
199         ifp = ifa->ifa_ifp;
200         memcpy(&addr, &ia->ia_addr, sizeof(ia->ia_addr));
201         memcpy(&mask, &ia->ia_prefixmask, sizeof(ia->ia_prefixmask));
202         lltable_prefix_free(AF_INET6, (struct sockaddr *)&addr,
203                     (struct sockaddr *)&mask, LLE_STATIC);
204
205         /*
206          * initialize for rtmsg generation
207          */
208         bzero(&gateway, sizeof(gateway));
209         gateway.sdl_len = sizeof(gateway);
210         gateway.sdl_family = AF_LINK;
211         gateway.sdl_nlen = 0;
212         gateway.sdl_alen = ifp->if_addrlen;
213         bzero(&rt0, sizeof(rt0));
214         rt0.rt_gateway = (struct sockaddr *)&gateway;
215         rt_mask(&rt0) = (struct sockaddr *)&mask;
216         rt_key(&rt0) = (struct sockaddr *)&addr;
217         rt0.rt_flags = RTF_HOST | RTF_STATIC;
218         /* Announce removal of local address to all FIBs. */
219         rt_newaddrmsg(RTM_DELETE, ifa, 0, &rt0);
220 }
221
222 int
223 in6_mask2len(struct in6_addr *mask, u_char *lim0)
224 {
225         int x = 0, y;
226         u_char *lim = lim0, *p;
227
228         /* ignore the scope_id part */
229         if (lim0 == NULL || lim0 - (u_char *)mask > sizeof(*mask))
230                 lim = (u_char *)mask + sizeof(*mask);
231         for (p = (u_char *)mask; p < lim; x++, p++) {
232                 if (*p != 0xff)
233                         break;
234         }
235         y = 0;
236         if (p < lim) {
237                 for (y = 0; y < 8; y++) {
238                         if ((*p & (0x80 >> y)) == 0)
239                                 break;
240                 }
241         }
242
243         /*
244          * when the limit pointer is given, do a stricter check on the
245          * remaining bits.
246          */
247         if (p < lim) {
248                 if (y != 0 && (*p & (0x00ff >> y)) != 0)
249                         return (-1);
250                 for (p = p + 1; p < lim; p++)
251                         if (*p != 0)
252                                 return (-1);
253         }
254
255         return x * 8 + y;
256 }
257
258 #ifdef COMPAT_FREEBSD32
259 struct in6_ndifreq32 {
260         char ifname[IFNAMSIZ];
261         uint32_t ifindex;
262 };
263 #define SIOCGDEFIFACE32_IN6     _IOWR('i', 86, struct in6_ndifreq32)
264 #endif
265
266 int
267 in6_control(struct socket *so, u_long cmd, caddr_t data,
268     struct ifnet *ifp, struct thread *td)
269 {
270         struct  in6_ifreq *ifr = (struct in6_ifreq *)data;
271         struct  in6_ifaddr *ia = NULL;
272         struct  in6_aliasreq *ifra = (struct in6_aliasreq *)data;
273         struct sockaddr_in6 *sa6;
274         int error;
275
276         switch (cmd) {
277         case SIOCGETSGCNT_IN6:
278         case SIOCGETMIFCNT_IN6:
279                 /*
280                  * XXX mrt_ioctl has a 3rd, unused, FIB argument in route.c.
281                  * We cannot see how that would be needed, so do not adjust the
282                  * KPI blindly; more likely should clean up the IPv4 variant.
283                  */
284                 return (mrt6_ioctl ? mrt6_ioctl(cmd, data) : EOPNOTSUPP);
285         }
286
287         switch(cmd) {
288         case SIOCAADDRCTL_POLICY:
289         case SIOCDADDRCTL_POLICY:
290                 if (td != NULL) {
291                         error = priv_check(td, PRIV_NETINET_ADDRCTRL6);
292                         if (error)
293                                 return (error);
294                 }
295                 return (in6_src_ioctl(cmd, data));
296         }
297
298         if (ifp == NULL)
299                 return (EOPNOTSUPP);
300
301         switch (cmd) {
302         case SIOCSNDFLUSH_IN6:
303         case SIOCSPFXFLUSH_IN6:
304         case SIOCSRTRFLUSH_IN6:
305         case SIOCSDEFIFACE_IN6:
306         case SIOCSIFINFO_FLAGS:
307         case SIOCSIFINFO_IN6:
308                 if (td != NULL) {
309                         error = priv_check(td, PRIV_NETINET_ND6);
310                         if (error)
311                                 return (error);
312                 }
313                 /* FALLTHROUGH */
314         case OSIOCGIFINFO_IN6:
315         case SIOCGIFINFO_IN6:
316         case SIOCGDRLST_IN6:
317         case SIOCGPRLST_IN6:
318         case SIOCGNBRINFO_IN6:
319         case SIOCGDEFIFACE_IN6:
320                 return (nd6_ioctl(cmd, data, ifp));
321
322 #ifdef COMPAT_FREEBSD32
323         case SIOCGDEFIFACE32_IN6:
324                 {
325                         struct in6_ndifreq ndif;
326                         struct in6_ndifreq32 *ndif32;
327
328                         error = nd6_ioctl(SIOCGDEFIFACE_IN6, (caddr_t)&ndif,
329                             ifp);
330                         if (error)
331                                 return (error);
332                         ndif32 = (struct in6_ndifreq32 *)data;
333                         ndif32->ifindex = ndif.ifindex;
334                         return (0);
335                 }
336 #endif
337         }
338
339         switch (cmd) {
340         case SIOCSIFPREFIX_IN6:
341         case SIOCDIFPREFIX_IN6:
342         case SIOCAIFPREFIX_IN6:
343         case SIOCCIFPREFIX_IN6:
344         case SIOCSGIFPREFIX_IN6:
345         case SIOCGIFPREFIX_IN6:
346                 log(LOG_NOTICE,
347                     "prefix ioctls are now invalidated. "
348                     "please use ifconfig.\n");
349                 return (EOPNOTSUPP);
350         }
351
352         switch (cmd) {
353         case SIOCSSCOPE6:
354                 if (td != NULL) {
355                         error = priv_check(td, PRIV_NETINET_SCOPE6);
356                         if (error)
357                                 return (error);
358                 }
359                 return (scope6_set(ifp,
360                     (struct scope6_id *)ifr->ifr_ifru.ifru_scope_id));
361         case SIOCGSCOPE6:
362                 return (scope6_get(ifp,
363                     (struct scope6_id *)ifr->ifr_ifru.ifru_scope_id));
364         case SIOCGSCOPE6DEF:
365                 return (scope6_get_default((struct scope6_id *)
366                     ifr->ifr_ifru.ifru_scope_id));
367         }
368
369         switch (cmd) {
370         case SIOCALIFADDR:
371                 if (td != NULL) {
372                         error = priv_check(td, PRIV_NET_ADDIFADDR);
373                         if (error)
374                                 return (error);
375                 }
376                 return in6_lifaddr_ioctl(so, cmd, data, ifp, td);
377
378         case SIOCDLIFADDR:
379                 if (td != NULL) {
380                         error = priv_check(td, PRIV_NET_DELIFADDR);
381                         if (error)
382                                 return (error);
383                 }
384                 /* FALLTHROUGH */
385         case SIOCGLIFADDR:
386                 return in6_lifaddr_ioctl(so, cmd, data, ifp, td);
387         }
388
389         /*
390          * Find address for this interface, if it exists.
391          *
392          * In netinet code, we have checked ifra_addr in SIOCSIF*ADDR operation
393          * only, and used the first interface address as the target of other
394          * operations (without checking ifra_addr).  This was because netinet
395          * code/API assumed at most 1 interface address per interface.
396          * Since IPv6 allows a node to assign multiple addresses
397          * on a single interface, we almost always look and check the
398          * presence of ifra_addr, and reject invalid ones here.
399          * It also decreases duplicated code among SIOC*_IN6 operations.
400          */
401         switch (cmd) {
402         case SIOCAIFADDR_IN6:
403         case SIOCSIFPHYADDR_IN6:
404                 sa6 = &ifra->ifra_addr;
405                 break;
406         case SIOCSIFADDR_IN6:
407         case SIOCGIFADDR_IN6:
408         case SIOCSIFDSTADDR_IN6:
409         case SIOCSIFNETMASK_IN6:
410         case SIOCGIFDSTADDR_IN6:
411         case SIOCGIFNETMASK_IN6:
412         case SIOCDIFADDR_IN6:
413         case SIOCGIFPSRCADDR_IN6:
414         case SIOCGIFPDSTADDR_IN6:
415         case SIOCGIFAFLAG_IN6:
416         case SIOCSNDFLUSH_IN6:
417         case SIOCSPFXFLUSH_IN6:
418         case SIOCSRTRFLUSH_IN6:
419         case SIOCGIFALIFETIME_IN6:
420         case SIOCSIFALIFETIME_IN6:
421         case SIOCGIFSTAT_IN6:
422         case SIOCGIFSTAT_ICMP6:
423                 sa6 = &ifr->ifr_addr;
424                 break;
425         default:
426                 sa6 = NULL;
427                 break;
428         }
429         if (sa6 && sa6->sin6_family == AF_INET6) {
430                 if (sa6->sin6_scope_id != 0)
431                         error = sa6_embedscope(sa6, 0);
432                 else
433                         error = in6_setscope(&sa6->sin6_addr, ifp, NULL);
434                 if (error != 0)
435                         return (error);
436                 if (td != NULL && (error = prison_check_ip6(td->td_ucred,
437                     &sa6->sin6_addr)) != 0)
438                         return (error);
439                 ia = in6ifa_ifpwithaddr(ifp, &sa6->sin6_addr);
440         } else
441                 ia = NULL;
442
443         switch (cmd) {
444         case SIOCSIFADDR_IN6:
445         case SIOCSIFDSTADDR_IN6:
446         case SIOCSIFNETMASK_IN6:
447                 /*
448                  * Since IPv6 allows a node to assign multiple addresses
449                  * on a single interface, SIOCSIFxxx ioctls are deprecated.
450                  */
451                 /* we decided to obsolete this command (20000704) */
452                 error = EINVAL;
453                 goto out;
454
455         case SIOCDIFADDR_IN6:
456                 /*
457                  * for IPv4, we look for existing in_ifaddr here to allow
458                  * "ifconfig if0 delete" to remove the first IPv4 address on
459                  * the interface.  For IPv6, as the spec allows multiple
460                  * interface address from the day one, we consider "remove the
461                  * first one" semantics to be not preferable.
462                  */
463                 if (ia == NULL) {
464                         error = EADDRNOTAVAIL;
465                         goto out;
466                 }
467                 /* FALLTHROUGH */
468         case SIOCAIFADDR_IN6:
469                 /*
470                  * We always require users to specify a valid IPv6 address for
471                  * the corresponding operation.
472                  */
473                 if (ifra->ifra_addr.sin6_family != AF_INET6 ||
474                     ifra->ifra_addr.sin6_len != sizeof(struct sockaddr_in6)) {
475                         error = EAFNOSUPPORT;
476                         goto out;
477                 }
478
479                 if (td != NULL) {
480                         error = priv_check(td, (cmd == SIOCDIFADDR_IN6) ?
481                             PRIV_NET_DELIFADDR : PRIV_NET_ADDIFADDR);
482                         if (error)
483                                 goto out;
484                 }
485                 break;
486
487         case SIOCGIFADDR_IN6:
488                 /* This interface is basically deprecated. use SIOCGIFCONF. */
489                 /* FALLTHROUGH */
490         case SIOCGIFAFLAG_IN6:
491         case SIOCGIFNETMASK_IN6:
492         case SIOCGIFDSTADDR_IN6:
493         case SIOCGIFALIFETIME_IN6:
494                 /* must think again about its semantics */
495                 if (ia == NULL) {
496                         error = EADDRNOTAVAIL;
497                         goto out;
498                 }
499                 break;
500
501         case SIOCSIFALIFETIME_IN6:
502             {
503                 struct in6_addrlifetime *lt;
504
505                 if (td != NULL) {
506                         error = priv_check(td, PRIV_NETINET_ALIFETIME6);
507                         if (error)
508                                 goto out;
509                 }
510                 if (ia == NULL) {
511                         error = EADDRNOTAVAIL;
512                         goto out;
513                 }
514                 /* sanity for overflow - beware unsigned */
515                 lt = &ifr->ifr_ifru.ifru_lifetime;
516                 if (lt->ia6t_vltime != ND6_INFINITE_LIFETIME &&
517                     lt->ia6t_vltime + time_second < time_second) {
518                         error = EINVAL;
519                         goto out;
520                 }
521                 if (lt->ia6t_pltime != ND6_INFINITE_LIFETIME &&
522                     lt->ia6t_pltime + time_second < time_second) {
523                         error = EINVAL;
524                         goto out;
525                 }
526                 break;
527             }
528         }
529
530         switch (cmd) {
531         case SIOCGIFADDR_IN6:
532                 ifr->ifr_addr = ia->ia_addr;
533                 if ((error = sa6_recoverscope(&ifr->ifr_addr)) != 0)
534                         goto out;
535                 break;
536
537         case SIOCGIFDSTADDR_IN6:
538                 if ((ifp->if_flags & IFF_POINTOPOINT) == 0) {
539                         error = EINVAL;
540                         goto out;
541                 }
542                 /*
543                  * XXX: should we check if ifa_dstaddr is NULL and return
544                  * an error?
545                  */
546                 ifr->ifr_dstaddr = ia->ia_dstaddr;
547                 if ((error = sa6_recoverscope(&ifr->ifr_dstaddr)) != 0)
548                         goto out;
549                 break;
550
551         case SIOCGIFNETMASK_IN6:
552                 ifr->ifr_addr = ia->ia_prefixmask;
553                 break;
554
555         case SIOCGIFAFLAG_IN6:
556                 ifr->ifr_ifru.ifru_flags6 = ia->ia6_flags;
557                 break;
558
559         case SIOCGIFSTAT_IN6:
560                 if (ifp == NULL) {
561                         error = EINVAL;
562                         goto out;
563                 }
564                 bzero(&ifr->ifr_ifru.ifru_stat,
565                     sizeof(ifr->ifr_ifru.ifru_stat));
566                 ifr->ifr_ifru.ifru_stat =
567                     *((struct in6_ifextra *)ifp->if_afdata[AF_INET6])->in6_ifstat;
568                 break;
569
570         case SIOCGIFSTAT_ICMP6:
571                 if (ifp == NULL) {
572                         error = EINVAL;
573                         goto out;
574                 }
575                 bzero(&ifr->ifr_ifru.ifru_icmp6stat,
576                     sizeof(ifr->ifr_ifru.ifru_icmp6stat));
577                 ifr->ifr_ifru.ifru_icmp6stat =
578                     *((struct in6_ifextra *)ifp->if_afdata[AF_INET6])->icmp6_ifstat;
579                 break;
580
581         case SIOCGIFALIFETIME_IN6:
582                 ifr->ifr_ifru.ifru_lifetime = ia->ia6_lifetime;
583                 if (ia->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
584                         time_t maxexpire;
585                         struct in6_addrlifetime *retlt =
586                             &ifr->ifr_ifru.ifru_lifetime;
587
588                         /*
589                          * XXX: adjust expiration time assuming time_t is
590                          * signed.
591                          */
592                         maxexpire = (-1) &
593                             ~((time_t)1 << ((sizeof(maxexpire) * 8) - 1));
594                         if (ia->ia6_lifetime.ia6t_vltime <
595                             maxexpire - ia->ia6_updatetime) {
596                                 retlt->ia6t_expire = ia->ia6_updatetime +
597                                     ia->ia6_lifetime.ia6t_vltime;
598                         } else
599                                 retlt->ia6t_expire = maxexpire;
600                 }
601                 if (ia->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
602                         time_t maxexpire;
603                         struct in6_addrlifetime *retlt =
604                             &ifr->ifr_ifru.ifru_lifetime;
605
606                         /*
607                          * XXX: adjust expiration time assuming time_t is
608                          * signed.
609                          */
610                         maxexpire = (-1) &
611                             ~((time_t)1 << ((sizeof(maxexpire) * 8) - 1));
612                         if (ia->ia6_lifetime.ia6t_pltime <
613                             maxexpire - ia->ia6_updatetime) {
614                                 retlt->ia6t_preferred = ia->ia6_updatetime +
615                                     ia->ia6_lifetime.ia6t_pltime;
616                         } else
617                                 retlt->ia6t_preferred = maxexpire;
618                 }
619                 break;
620
621         case SIOCSIFALIFETIME_IN6:
622                 ia->ia6_lifetime = ifr->ifr_ifru.ifru_lifetime;
623                 /* for sanity */
624                 if (ia->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
625                         ia->ia6_lifetime.ia6t_expire =
626                                 time_second + ia->ia6_lifetime.ia6t_vltime;
627                 } else
628                         ia->ia6_lifetime.ia6t_expire = 0;
629                 if (ia->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
630                         ia->ia6_lifetime.ia6t_preferred =
631                                 time_second + ia->ia6_lifetime.ia6t_pltime;
632                 } else
633                         ia->ia6_lifetime.ia6t_preferred = 0;
634                 break;
635
636         case SIOCAIFADDR_IN6:
637         {
638                 int i;
639                 struct nd_prefixctl pr0;
640                 struct nd_prefix *pr;
641
642                 /*
643                  * first, make or update the interface address structure,
644                  * and link it to the list.
645                  */
646                 if ((error = in6_update_ifa(ifp, ifra, ia, 0)) != 0)
647                         goto out;
648                 if (ia != NULL)
649                         ifa_free(&ia->ia_ifa);
650                 if ((ia = in6ifa_ifpwithaddr(ifp, &ifra->ifra_addr.sin6_addr))
651                     == NULL) {
652                         /*
653                          * this can happen when the user specify the 0 valid
654                          * lifetime.
655                          */
656                         break;
657                 }
658
659                 /*
660                  * then, make the prefix on-link on the interface.
661                  * XXX: we'd rather create the prefix before the address, but
662                  * we need at least one address to install the corresponding
663                  * interface route, so we configure the address first.
664                  */
665
666                 /*
667                  * convert mask to prefix length (prefixmask has already
668                  * been validated in in6_update_ifa().
669                  */
670                 bzero(&pr0, sizeof(pr0));
671                 pr0.ndpr_ifp = ifp;
672                 pr0.ndpr_plen = in6_mask2len(&ifra->ifra_prefixmask.sin6_addr,
673                     NULL);
674                 if (pr0.ndpr_plen == 128) {
675                         break;  /* we don't need to install a host route. */
676                 }
677                 pr0.ndpr_prefix = ifra->ifra_addr;
678                 /* apply the mask for safety. */
679                 for (i = 0; i < 4; i++) {
680                         pr0.ndpr_prefix.sin6_addr.s6_addr32[i] &=
681                             ifra->ifra_prefixmask.sin6_addr.s6_addr32[i];
682                 }
683                 /*
684                  * XXX: since we don't have an API to set prefix (not address)
685                  * lifetimes, we just use the same lifetimes as addresses.
686                  * The (temporarily) installed lifetimes can be overridden by
687                  * later advertised RAs (when accept_rtadv is non 0), which is
688                  * an intended behavior.
689                  */
690                 pr0.ndpr_raf_onlink = 1; /* should be configurable? */
691                 pr0.ndpr_raf_auto =
692                     ((ifra->ifra_flags & IN6_IFF_AUTOCONF) != 0);
693                 pr0.ndpr_vltime = ifra->ifra_lifetime.ia6t_vltime;
694                 pr0.ndpr_pltime = ifra->ifra_lifetime.ia6t_pltime;
695
696                 /* add the prefix if not yet. */
697                 if ((pr = nd6_prefix_lookup(&pr0)) == NULL) {
698                         /*
699                          * nd6_prelist_add will install the corresponding
700                          * interface route.
701                          */
702                         if ((error = nd6_prelist_add(&pr0, NULL, &pr)) != 0)
703                                 goto out;
704                         if (pr == NULL) {
705                                 log(LOG_ERR, "nd6_prelist_add succeeded but "
706                                     "no prefix\n");
707                                 error = EINVAL;
708                                 goto out;
709                         }
710                 }
711
712                 /* relate the address to the prefix */
713                 if (ia->ia6_ndpr == NULL) {
714                         ia->ia6_ndpr = pr;
715                         pr->ndpr_refcnt++;
716
717                         /*
718                          * If this is the first autoconf address from the
719                          * prefix, create a temporary address as well
720                          * (when required).
721                          */
722                         if ((ia->ia6_flags & IN6_IFF_AUTOCONF) &&
723                             V_ip6_use_tempaddr && pr->ndpr_refcnt == 1) {
724                                 int e;
725                                 if ((e = in6_tmpifadd(ia, 1, 0)) != 0) {
726                                         log(LOG_NOTICE, "in6_control: failed "
727                                             "to create a temporary address, "
728                                             "errno=%d\n", e);
729                                 }
730                         }
731                 }
732
733                 /*
734                  * this might affect the status of autoconfigured addresses,
735                  * that is, this address might make other addresses detached.
736                  */
737                 pfxlist_onlink_check();
738                 if (error == 0 && ia) {
739                         if (ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED) {
740                                 /*
741                                  * Try to clear the flag when a new
742                                  * IPv6 address is added onto an
743                                  * IFDISABLED interface and it
744                                  * succeeds.
745                                  */
746                                 struct in6_ndireq nd;
747
748                                 memset(&nd, 0, sizeof(nd));
749                                 nd.ndi.flags = ND_IFINFO(ifp)->flags;
750                                 nd.ndi.flags &= ~ND6_IFF_IFDISABLED;
751                                 if (nd6_ioctl(SIOCSIFINFO_FLAGS,
752                                     (caddr_t)&nd, ifp) < 0)
753                                         log(LOG_NOTICE, "SIOCAIFADDR_IN6: "
754                                             "SIOCSIFINFO_FLAGS for -ifdisabled "
755                                             "failed.");
756                                 /*
757                                  * Ignore failure of clearing the flag
758                                  * intentionally.  The failure means
759                                  * address duplication was detected.
760                                  */
761                         }
762                         EVENTHANDLER_INVOKE(ifaddr_event, ifp);
763                 }
764                 break;
765         }
766
767         case SIOCDIFADDR_IN6:
768         {
769                 struct nd_prefix *pr;
770
771                 /*
772                  * If the address being deleted is the only one that owns
773                  * the corresponding prefix, expire the prefix as well.
774                  * XXX: theoretically, we don't have to worry about such
775                  * relationship, since we separate the address management
776                  * and the prefix management.  We do this, however, to provide
777                  * as much backward compatibility as possible in terms of
778                  * the ioctl operation.
779                  * Note that in6_purgeaddr() will decrement ndpr_refcnt.
780                  */
781                 pr = ia->ia6_ndpr;
782                 in6_purgeaddr(&ia->ia_ifa);
783                 if (pr && pr->ndpr_refcnt == 0)
784                         prelist_remove(pr);
785                 EVENTHANDLER_INVOKE(ifaddr_event, ifp);
786                 break;
787         }
788
789         default:
790                 if (ifp == NULL || ifp->if_ioctl == 0) {
791                         error = EOPNOTSUPP;
792                         goto out;
793                 }
794                 error = (*ifp->if_ioctl)(ifp, cmd, data);
795                 goto out;
796         }
797
798         error = 0;
799 out:
800         if (ia != NULL)
801                 ifa_free(&ia->ia_ifa);
802         return (error);
803 }
804
805
806 /*
807  * Join necessary multicast groups.  Factored out from in6_update_ifa().
808  * This entire work should only be done once, for the default FIB.
809  */
810 static int
811 in6_update_ifa_join_mc(struct ifnet *ifp, struct in6_aliasreq *ifra,
812     struct in6_ifaddr *ia, int flags, struct in6_multi **in6m_sol)
813 {
814         char ip6buf[INET6_ADDRSTRLEN];
815         struct sockaddr_in6 mltaddr, mltmask;
816         struct in6_addr llsol;
817         struct in6_multi_mship *imm;
818         struct rtentry *rt;
819         int delay, error;
820
821         KASSERT(in6m_sol != NULL, ("%s: in6m_sol is NULL", __func__));
822
823         /* Join solicited multicast addr for new host id. */
824         bzero(&llsol, sizeof(struct in6_addr));
825         llsol.s6_addr32[0] = IPV6_ADDR_INT32_MLL;
826         llsol.s6_addr32[1] = 0;
827         llsol.s6_addr32[2] = htonl(1);
828         llsol.s6_addr32[3] = ifra->ifra_addr.sin6_addr.s6_addr32[3];
829         llsol.s6_addr8[12] = 0xff;
830         if ((error = in6_setscope(&llsol, ifp, NULL)) != 0) {
831                 /* XXX: should not happen */
832                 log(LOG_ERR, "%s: in6_setscope failed\n", __func__);
833                 goto cleanup;
834         }
835         delay = 0;
836         if ((flags & IN6_IFAUPDATE_DADDELAY)) {
837                 /*
838                  * We need a random delay for DAD on the address being
839                  * configured.  It also means delaying transmission of the
840                  * corresponding MLD report to avoid report collision.
841                  * [RFC 4861, Section 6.3.7]
842                  */
843                 delay = arc4random() % (MAX_RTR_SOLICITATION_DELAY * hz);
844         }
845         imm = in6_joingroup(ifp, &llsol, &error, delay);
846         if (imm == NULL) {
847                 nd6log((LOG_WARNING, "%s: addmulti failed for %s on %s "
848                     "(errno=%d)\n", __func__, ip6_sprintf(ip6buf, &llsol),
849                     if_name(ifp), error));
850                 goto cleanup;
851         }
852         LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
853         *in6m_sol = imm->i6mm_maddr;
854
855         bzero(&mltmask, sizeof(mltmask));
856         mltmask.sin6_len = sizeof(struct sockaddr_in6);
857         mltmask.sin6_family = AF_INET6;
858         mltmask.sin6_addr = in6mask32;
859 #define MLTMASK_LEN  4  /* mltmask's masklen (=32bit=4octet) */
860
861         /*
862          * Join link-local all-nodes address.
863          */
864         bzero(&mltaddr, sizeof(mltaddr));
865         mltaddr.sin6_len = sizeof(struct sockaddr_in6);
866         mltaddr.sin6_family = AF_INET6;
867         mltaddr.sin6_addr = in6addr_linklocal_allnodes;
868         if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
869                 goto cleanup; /* XXX: should not fail */
870
871         /*
872          * XXX: do we really need this automatic routes?  We should probably
873          * reconsider this stuff.  Most applications actually do not need the
874          * routes, since they usually specify the outgoing interface.
875          */
876         rt = in6_rtalloc1((struct sockaddr *)&mltaddr, 0, 0UL, RT_DEFAULT_FIB);
877         if (rt != NULL) {
878                 /* XXX: only works in !SCOPEDROUTING case. */
879                 if (memcmp(&mltaddr.sin6_addr,
880                     &((struct sockaddr_in6 *)rt_key(rt))->sin6_addr,
881                     MLTMASK_LEN)) {
882                         RTFREE_LOCKED(rt);
883                         rt = NULL;
884                 }
885         }
886         if (rt == NULL) {
887                 error = in6_rtrequest(RTM_ADD, (struct sockaddr *)&mltaddr,
888                     (struct sockaddr *)&ia->ia_addr,
889                     (struct sockaddr *)&mltmask, RTF_UP,
890                     (struct rtentry **)0, RT_DEFAULT_FIB);
891                 if (error)
892                         goto cleanup;
893         } else
894                 RTFREE_LOCKED(rt);
895
896         imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, 0);
897         if (imm == NULL) {
898                 nd6log((LOG_WARNING, "%s: addmulti failed for %s on %s "
899                     "(errno=%d)\n", __func__, ip6_sprintf(ip6buf,
900                     &mltaddr.sin6_addr), if_name(ifp), error));
901                 goto cleanup;
902         }
903         LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
904
905         /*
906          * Join node information group address.
907          */
908         delay = 0;
909         if ((flags & IN6_IFAUPDATE_DADDELAY)) {
910                 /*
911                  * The spec does not say anything about delay for this group,
912                  * but the same logic should apply.
913                  */
914                 delay = arc4random() % (MAX_RTR_SOLICITATION_DELAY * hz);
915         }
916         if (in6_nigroup(ifp, NULL, -1, &mltaddr.sin6_addr) == 0) {
917                 /* XXX jinmei */
918                 imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, delay);
919                 if (imm == NULL)
920                         nd6log((LOG_WARNING, "%s: addmulti failed for %s on %s "
921                             "(errno=%d)\n", __func__, ip6_sprintf(ip6buf,
922                             &mltaddr.sin6_addr), if_name(ifp), error));
923                         /* XXX not very fatal, go on... */
924                 else
925                         LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
926         }
927         if (V_icmp6_nodeinfo_oldmcprefix && 
928              in6_nigroup_oldmcprefix(ifp, NULL, -1, &mltaddr.sin6_addr) == 0) {
929                 imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, delay);
930                 if (imm == NULL)
931                         nd6log((LOG_WARNING, "%s: addmulti failed for %s on %s "
932                             "(errno=%d)\n", __func__, ip6_sprintf(ip6buf,
933                             &mltaddr.sin6_addr), if_name(ifp), error));
934                         /* XXX not very fatal, go on... */
935                 else
936                         LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
937         }
938
939         /*
940          * Join interface-local all-nodes address.
941          * (ff01::1%ifN, and ff01::%ifN/32)
942          */
943         mltaddr.sin6_addr = in6addr_nodelocal_allnodes;
944         if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
945                 goto cleanup; /* XXX: should not fail */
946         /* XXX: again, do we really need the route? */
947         rt = in6_rtalloc1((struct sockaddr *)&mltaddr, 0, 0UL, RT_DEFAULT_FIB);
948         if (rt != NULL) {
949                 if (memcmp(&mltaddr.sin6_addr,
950                     &((struct sockaddr_in6 *)rt_key(rt))->sin6_addr,
951                     MLTMASK_LEN)) {
952                         RTFREE_LOCKED(rt);
953                         rt = NULL;
954                 }
955         }
956         if (rt == NULL) {
957                 error = in6_rtrequest(RTM_ADD, (struct sockaddr *)&mltaddr,
958                     (struct sockaddr *)&ia->ia_addr,
959                     (struct sockaddr *)&mltmask, RTF_UP,
960                     (struct rtentry **)0, RT_DEFAULT_FIB);
961                 if (error)
962                         goto cleanup;
963         } else
964                 RTFREE_LOCKED(rt);
965
966         imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, 0);
967         if (imm == NULL) {
968                 nd6log((LOG_WARNING, "%s: addmulti failed for %s on %s "
969                     "(errno=%d)\n", __func__, ip6_sprintf(ip6buf,
970                     &mltaddr.sin6_addr), if_name(ifp), error));
971                 goto cleanup;
972         }
973         LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
974 #undef  MLTMASK_LEN
975
976 cleanup:
977         return (error);
978 }
979
980 /*
981  * Update parameters of an IPv6 interface address.
982  * If necessary, a new entry is created and linked into address chains.
983  * This function is separated from in6_control().
984  * XXX: should this be performed under splnet()?
985  */
986 int
987 in6_update_ifa(struct ifnet *ifp, struct in6_aliasreq *ifra,
988     struct in6_ifaddr *ia, int flags)
989 {
990         int error = 0, hostIsNew = 0, plen = -1;
991         struct sockaddr_in6 dst6;
992         struct in6_addrlifetime *lt;
993         struct in6_multi *in6m_sol;
994         int delay;
995         char ip6buf[INET6_ADDRSTRLEN];
996
997         /* Validate parameters */
998         if (ifp == NULL || ifra == NULL) /* this maybe redundant */
999                 return (EINVAL);
1000
1001         /*
1002          * The destination address for a p2p link must have a family
1003          * of AF_UNSPEC or AF_INET6.
1004          */
1005         if ((ifp->if_flags & IFF_POINTOPOINT) != 0 &&
1006             ifra->ifra_dstaddr.sin6_family != AF_INET6 &&
1007             ifra->ifra_dstaddr.sin6_family != AF_UNSPEC)
1008                 return (EAFNOSUPPORT);
1009         /*
1010          * validate ifra_prefixmask.  don't check sin6_family, netmask
1011          * does not carry fields other than sin6_len.
1012          */
1013         if (ifra->ifra_prefixmask.sin6_len > sizeof(struct sockaddr_in6))
1014                 return (EINVAL);
1015         /*
1016          * Because the IPv6 address architecture is classless, we require
1017          * users to specify a (non 0) prefix length (mask) for a new address.
1018          * We also require the prefix (when specified) mask is valid, and thus
1019          * reject a non-consecutive mask.
1020          */
1021         if (ia == NULL && ifra->ifra_prefixmask.sin6_len == 0)
1022                 return (EINVAL);
1023         if (ifra->ifra_prefixmask.sin6_len != 0) {
1024                 plen = in6_mask2len(&ifra->ifra_prefixmask.sin6_addr,
1025                     (u_char *)&ifra->ifra_prefixmask +
1026                     ifra->ifra_prefixmask.sin6_len);
1027                 if (plen <= 0)
1028                         return (EINVAL);
1029         } else {
1030                 /*
1031                  * In this case, ia must not be NULL.  We just use its prefix
1032                  * length.
1033                  */
1034                 plen = in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL);
1035         }
1036         /*
1037          * If the destination address on a p2p interface is specified,
1038          * and the address is a scoped one, validate/set the scope
1039          * zone identifier.
1040          */
1041         dst6 = ifra->ifra_dstaddr;
1042         if ((ifp->if_flags & (IFF_POINTOPOINT|IFF_LOOPBACK)) != 0 &&
1043             (dst6.sin6_family == AF_INET6)) {
1044                 struct in6_addr in6_tmp;
1045                 u_int32_t zoneid;
1046
1047                 in6_tmp = dst6.sin6_addr;
1048                 if (in6_setscope(&in6_tmp, ifp, &zoneid))
1049                         return (EINVAL); /* XXX: should be impossible */
1050
1051                 if (dst6.sin6_scope_id != 0) {
1052                         if (dst6.sin6_scope_id != zoneid)
1053                                 return (EINVAL);
1054                 } else          /* user omit to specify the ID. */
1055                         dst6.sin6_scope_id = zoneid;
1056
1057                 /* convert into the internal form */
1058                 if (sa6_embedscope(&dst6, 0))
1059                         return (EINVAL); /* XXX: should be impossible */
1060         }
1061         /*
1062          * The destination address can be specified only for a p2p or a
1063          * loopback interface.  If specified, the corresponding prefix length
1064          * must be 128.
1065          */
1066         if (ifra->ifra_dstaddr.sin6_family == AF_INET6) {
1067                 if ((ifp->if_flags & (IFF_POINTOPOINT|IFF_LOOPBACK)) == 0) {
1068                         /* XXX: noisy message */
1069                         nd6log((LOG_INFO, "in6_update_ifa: a destination can "
1070                             "be specified for a p2p or a loopback IF only\n"));
1071                         return (EINVAL);
1072                 }
1073                 if (plen != 128) {
1074                         nd6log((LOG_INFO, "in6_update_ifa: prefixlen should "
1075                             "be 128 when dstaddr is specified\n"));
1076                         return (EINVAL);
1077                 }
1078         }
1079         /* lifetime consistency check */
1080         lt = &ifra->ifra_lifetime;
1081         if (lt->ia6t_pltime > lt->ia6t_vltime)
1082                 return (EINVAL);
1083         if (lt->ia6t_vltime == 0) {
1084                 /*
1085                  * the following log might be noisy, but this is a typical
1086                  * configuration mistake or a tool's bug.
1087                  */
1088                 nd6log((LOG_INFO,
1089                     "in6_update_ifa: valid lifetime is 0 for %s\n",
1090                     ip6_sprintf(ip6buf, &ifra->ifra_addr.sin6_addr)));
1091
1092                 if (ia == NULL)
1093                         return (0); /* there's nothing to do */
1094         }
1095
1096         /*
1097          * If this is a new address, allocate a new ifaddr and link it
1098          * into chains.
1099          */
1100         if (ia == NULL) {
1101                 hostIsNew = 1;
1102                 /*
1103                  * When in6_update_ifa() is called in a process of a received
1104                  * RA, it is called under an interrupt context.  So, we should
1105                  * call malloc with M_NOWAIT.
1106                  */
1107                 ia = (struct in6_ifaddr *) malloc(sizeof(*ia), M_IFADDR,
1108                     M_NOWAIT);
1109                 if (ia == NULL)
1110                         return (ENOBUFS);
1111                 bzero((caddr_t)ia, sizeof(*ia));
1112                 ifa_init(&ia->ia_ifa);
1113                 LIST_INIT(&ia->ia6_memberships);
1114                 /* Initialize the address and masks, and put time stamp */
1115                 ia->ia_ifa.ifa_addr = (struct sockaddr *)&ia->ia_addr;
1116                 ia->ia_addr.sin6_family = AF_INET6;
1117                 ia->ia_addr.sin6_len = sizeof(ia->ia_addr);
1118                 ia->ia6_createtime = time_second;
1119                 if ((ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) != 0) {
1120                         /*
1121                          * XXX: some functions expect that ifa_dstaddr is not
1122                          * NULL for p2p interfaces.
1123                          */
1124                         ia->ia_ifa.ifa_dstaddr =
1125                             (struct sockaddr *)&ia->ia_dstaddr;
1126                 } else {
1127                         ia->ia_ifa.ifa_dstaddr = NULL;
1128                 }
1129                 ia->ia_ifa.ifa_netmask = (struct sockaddr *)&ia->ia_prefixmask;
1130                 ia->ia_ifp = ifp;
1131                 ifa_ref(&ia->ia_ifa);                   /* if_addrhead */
1132                 IF_ADDR_WLOCK(ifp);
1133                 TAILQ_INSERT_TAIL(&ifp->if_addrhead, &ia->ia_ifa, ifa_link);
1134                 IF_ADDR_WUNLOCK(ifp);
1135
1136                 ifa_ref(&ia->ia_ifa);                   /* in6_ifaddrhead */
1137                 IN6_IFADDR_WLOCK();
1138                 TAILQ_INSERT_TAIL(&V_in6_ifaddrhead, ia, ia_link);
1139                 IN6_IFADDR_WUNLOCK();
1140         }
1141
1142         /* update timestamp */
1143         ia->ia6_updatetime = time_second;
1144
1145         /* set prefix mask */
1146         if (ifra->ifra_prefixmask.sin6_len) {
1147                 /*
1148                  * We prohibit changing the prefix length of an existing
1149                  * address, because
1150                  * + such an operation should be rare in IPv6, and
1151                  * + the operation would confuse prefix management.
1152                  */
1153                 if (ia->ia_prefixmask.sin6_len &&
1154                     in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL) != plen) {
1155                         nd6log((LOG_INFO, "in6_update_ifa: the prefix length of an"
1156                             " existing (%s) address should not be changed\n",
1157                             ip6_sprintf(ip6buf, &ia->ia_addr.sin6_addr)));
1158                         error = EINVAL;
1159                         goto unlink;
1160                 }
1161                 ia->ia_prefixmask = ifra->ifra_prefixmask;
1162         }
1163
1164         /*
1165          * If a new destination address is specified, scrub the old one and
1166          * install the new destination.  Note that the interface must be
1167          * p2p or loopback (see the check above.)
1168          */
1169         if (dst6.sin6_family == AF_INET6 &&
1170             !IN6_ARE_ADDR_EQUAL(&dst6.sin6_addr, &ia->ia_dstaddr.sin6_addr)) {
1171                 int e;
1172
1173                 if ((ia->ia_flags & IFA_ROUTE) != 0 &&
1174                     (e = rtinit(&(ia->ia_ifa), (int)RTM_DELETE, RTF_HOST)) != 0) {
1175                         nd6log((LOG_ERR, "in6_update_ifa: failed to remove "
1176                             "a route to the old destination: %s\n",
1177                             ip6_sprintf(ip6buf, &ia->ia_addr.sin6_addr)));
1178                         /* proceed anyway... */
1179                 } else
1180                         ia->ia_flags &= ~IFA_ROUTE;
1181                 ia->ia_dstaddr = dst6;
1182         }
1183
1184         /*
1185          * Set lifetimes.  We do not refer to ia6t_expire and ia6t_preferred
1186          * to see if the address is deprecated or invalidated, but initialize
1187          * these members for applications.
1188          */
1189         ia->ia6_lifetime = ifra->ifra_lifetime;
1190         if (ia->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
1191                 ia->ia6_lifetime.ia6t_expire =
1192                     time_second + ia->ia6_lifetime.ia6t_vltime;
1193         } else
1194                 ia->ia6_lifetime.ia6t_expire = 0;
1195         if (ia->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
1196                 ia->ia6_lifetime.ia6t_preferred =
1197                     time_second + ia->ia6_lifetime.ia6t_pltime;
1198         } else
1199                 ia->ia6_lifetime.ia6t_preferred = 0;
1200
1201         /* reset the interface and routing table appropriately. */
1202         if ((error = in6_ifinit(ifp, ia, &ifra->ifra_addr, hostIsNew)) != 0)
1203                 goto unlink;
1204
1205         /*
1206          * configure address flags.
1207          */
1208         ia->ia6_flags = ifra->ifra_flags;
1209         /*
1210          * backward compatibility - if IN6_IFF_DEPRECATED is set from the
1211          * userland, make it deprecated.
1212          */
1213         if ((ifra->ifra_flags & IN6_IFF_DEPRECATED) != 0) {
1214                 ia->ia6_lifetime.ia6t_pltime = 0;
1215                 ia->ia6_lifetime.ia6t_preferred = time_second;
1216         }
1217         /*
1218          * Make the address tentative before joining multicast addresses,
1219          * so that corresponding MLD responses would not have a tentative
1220          * source address.
1221          */
1222         ia->ia6_flags &= ~IN6_IFF_DUPLICATED;   /* safety */
1223         if (hostIsNew && in6if_do_dad(ifp))
1224                 ia->ia6_flags |= IN6_IFF_TENTATIVE;
1225
1226         /* DAD should be performed after ND6_IFF_IFDISABLED is cleared. */
1227         if (ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED)
1228                 ia->ia6_flags |= IN6_IFF_TENTATIVE;
1229
1230         /*
1231          * We are done if we have simply modified an existing address.
1232          */
1233         if (!hostIsNew)
1234                 return (error);
1235
1236         /*
1237          * Beyond this point, we should call in6_purgeaddr upon an error,
1238          * not just go to unlink.
1239          */
1240
1241         /* Join necessary multicast groups. */
1242         in6m_sol = NULL;
1243         if ((ifp->if_flags & IFF_MULTICAST) != 0) {
1244                 error = in6_update_ifa_join_mc(ifp, ifra, ia, flags, &in6m_sol);
1245                 if (error)
1246                         goto cleanup;
1247         }
1248
1249         /*
1250          * Perform DAD, if needed.
1251          * XXX It may be of use, if we can administratively disable DAD.
1252          */
1253         if (in6if_do_dad(ifp) && ((ifra->ifra_flags & IN6_IFF_NODAD) == 0) &&
1254             (ia->ia6_flags & IN6_IFF_TENTATIVE))
1255         {
1256                 int mindelay, maxdelay;
1257
1258                 delay = 0;
1259                 if ((flags & IN6_IFAUPDATE_DADDELAY)) {
1260                         /*
1261                          * We need to impose a delay before sending an NS
1262                          * for DAD.  Check if we also needed a delay for the
1263                          * corresponding MLD message.  If we did, the delay
1264                          * should be larger than the MLD delay (this could be
1265                          * relaxed a bit, but this simple logic is at least
1266                          * safe).
1267                          * XXX: Break data hiding guidelines and look at
1268                          * state for the solicited multicast group.
1269                          */
1270                         mindelay = 0;
1271                         if (in6m_sol != NULL &&
1272                             in6m_sol->in6m_state == MLD_REPORTING_MEMBER) {
1273                                 mindelay = in6m_sol->in6m_timer;
1274                         }
1275                         maxdelay = MAX_RTR_SOLICITATION_DELAY * hz;
1276                         if (maxdelay - mindelay == 0)
1277                                 delay = 0;
1278                         else {
1279                                 delay =
1280                                     (arc4random() % (maxdelay - mindelay)) +
1281                                     mindelay;
1282                         }
1283                 }
1284                 nd6_dad_start((struct ifaddr *)ia, delay);
1285         }
1286
1287         KASSERT(hostIsNew, ("in6_update_ifa: !hostIsNew"));
1288         ifa_free(&ia->ia_ifa);
1289         return (error);
1290
1291   unlink:
1292         /*
1293          * XXX: if a change of an existing address failed, keep the entry
1294          * anyway.
1295          */
1296         if (hostIsNew) {
1297                 in6_unlink_ifa(ia, ifp);
1298                 ifa_free(&ia->ia_ifa);
1299         }
1300         return (error);
1301
1302   cleanup:
1303         KASSERT(hostIsNew, ("in6_update_ifa: cleanup: !hostIsNew"));
1304         ifa_free(&ia->ia_ifa);
1305         in6_purgeaddr(&ia->ia_ifa);
1306         return error;
1307 }
1308
1309 /*
1310  * Leave multicast groups.  Factored out from in6_purgeaddr().
1311  * This entire work should only be done once, for the default FIB.
1312  */
1313 static int
1314 in6_purgeaddr_mc(struct ifnet *ifp, struct in6_ifaddr *ia, struct ifaddr *ifa0)
1315 {
1316         struct sockaddr_in6 mltaddr, mltmask;
1317         struct in6_multi_mship *imm;
1318         struct rtentry *rt;
1319         struct sockaddr_in6 sin6;
1320         int error;
1321
1322         /*
1323          * Leave from multicast groups we have joined for the interface.
1324          */
1325         while ((imm = LIST_FIRST(&ia->ia6_memberships)) != NULL) {
1326                 LIST_REMOVE(imm, i6mm_chain);
1327                 in6_leavegroup(imm);
1328         }
1329
1330         /*
1331          * Remove the link-local all-nodes address.
1332          */
1333         bzero(&mltmask, sizeof(mltmask));
1334         mltmask.sin6_len = sizeof(struct sockaddr_in6);
1335         mltmask.sin6_family = AF_INET6;
1336         mltmask.sin6_addr = in6mask32;
1337
1338         bzero(&mltaddr, sizeof(mltaddr));
1339         mltaddr.sin6_len = sizeof(struct sockaddr_in6);
1340         mltaddr.sin6_family = AF_INET6;
1341         mltaddr.sin6_addr = in6addr_linklocal_allnodes;
1342
1343         if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
1344                 return (error);
1345
1346         /*
1347          * As for the mltaddr above, proactively prepare the sin6 to avoid
1348          * rtentry un- and re-locking.
1349          */
1350         if (ifa0 != NULL) {
1351                 bzero(&sin6, sizeof(sin6));
1352                 sin6.sin6_len = sizeof(sin6);
1353                 sin6.sin6_family = AF_INET6;
1354                 memcpy(&sin6.sin6_addr, &satosin6(ifa0->ifa_addr)->sin6_addr,
1355                     sizeof(sin6.sin6_addr));
1356                 error = in6_setscope(&sin6.sin6_addr, ifa0->ifa_ifp, NULL);
1357                 if (error != 0)
1358                         return (error);
1359         }
1360
1361         rt = in6_rtalloc1((struct sockaddr *)&mltaddr, 0, 0UL, RT_DEFAULT_FIB);
1362         if (rt != NULL && rt->rt_gateway != NULL &&
1363             (memcmp(&satosin6(rt->rt_gateway)->sin6_addr,
1364                     &ia->ia_addr.sin6_addr,
1365                     sizeof(ia->ia_addr.sin6_addr)) == 0)) {
1366                 /*
1367                  * If no more IPv6 address exists on this interface then
1368                  * remove the multicast address route.
1369                  */
1370                 if (ifa0 == NULL) {
1371                         memcpy(&mltaddr.sin6_addr,
1372                             &satosin6(rt_key(rt))->sin6_addr,
1373                             sizeof(mltaddr.sin6_addr));
1374                         RTFREE_LOCKED(rt);
1375                         error = in6_rtrequest(RTM_DELETE,
1376                             (struct sockaddr *)&mltaddr,
1377                             (struct sockaddr *)&ia->ia_addr,
1378                             (struct sockaddr *)&mltmask, RTF_UP,
1379                             (struct rtentry **)0, RT_DEFAULT_FIB);
1380                         if (error)
1381                                 log(LOG_INFO, "%s: link-local all-nodes "
1382                                     "multicast address deletion error\n",
1383                                     __func__);
1384                 } else {
1385                         /*
1386                          * Replace the gateway of the route.
1387                          */
1388                         memcpy(rt->rt_gateway, &sin6, sizeof(sin6));
1389                         RTFREE_LOCKED(rt);
1390                 }
1391         } else {
1392                 if (rt != NULL)
1393                         RTFREE_LOCKED(rt);
1394         }
1395
1396         /*
1397          * Remove the node-local all-nodes address.
1398          */
1399         mltaddr.sin6_addr = in6addr_nodelocal_allnodes;
1400         if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
1401                 return (error);
1402
1403         rt = in6_rtalloc1((struct sockaddr *)&mltaddr, 0, 0UL, RT_DEFAULT_FIB);
1404         if (rt != NULL && rt->rt_gateway != NULL &&
1405             (memcmp(&satosin6(rt->rt_gateway)->sin6_addr,
1406                     &ia->ia_addr.sin6_addr,
1407                     sizeof(ia->ia_addr.sin6_addr)) == 0)) {
1408                 /*
1409                  * If no more IPv6 address exists on this interface then
1410                  * remove the multicast address route.
1411                  */
1412                 if (ifa0 == NULL) {
1413                         memcpy(&mltaddr.sin6_addr,
1414                             &satosin6(rt_key(rt))->sin6_addr,
1415                             sizeof(mltaddr.sin6_addr));
1416
1417                         RTFREE_LOCKED(rt);
1418                         error = in6_rtrequest(RTM_DELETE,
1419                             (struct sockaddr *)&mltaddr,
1420                             (struct sockaddr *)&ia->ia_addr,
1421                             (struct sockaddr *)&mltmask, RTF_UP,
1422                             (struct rtentry **)0, RT_DEFAULT_FIB);
1423                         if (error)
1424                                 log(LOG_INFO, "%s: node-local all-nodes"
1425                                     "multicast address deletion error\n",
1426                                     __func__);
1427                 } else {
1428                         /*
1429                          * Replace the gateway of the route.
1430                          */
1431                         memcpy(rt->rt_gateway, &sin6, sizeof(sin6));
1432                         RTFREE_LOCKED(rt);
1433                 }
1434         } else {
1435                 if (rt != NULL)
1436                         RTFREE_LOCKED(rt);
1437         }
1438
1439         return (0);
1440 }
1441
1442 void
1443 in6_purgeaddr(struct ifaddr *ifa)
1444 {
1445         struct ifnet *ifp = ifa->ifa_ifp;
1446         struct in6_ifaddr *ia = (struct in6_ifaddr *) ifa;
1447         int plen, error;
1448         struct ifaddr *ifa0;
1449
1450         /*
1451          * find another IPv6 address as the gateway for the
1452          * link-local and node-local all-nodes multicast
1453          * address routes
1454          */
1455         IF_ADDR_RLOCK(ifp);
1456         TAILQ_FOREACH(ifa0, &ifp->if_addrhead, ifa_link) {
1457                 if ((ifa0->ifa_addr->sa_family != AF_INET6) ||
1458                     memcmp(&satosin6(ifa0->ifa_addr)->sin6_addr,
1459                     &ia->ia_addr.sin6_addr, sizeof(struct in6_addr)) == 0)
1460                         continue;
1461                 else
1462                         break;
1463         }
1464         if (ifa0 != NULL)
1465                 ifa_ref(ifa0);
1466         IF_ADDR_RUNLOCK(ifp);
1467
1468         /*
1469          * Remove the loopback route to the interface address.
1470          * The check for the current setting of "nd6_useloopback"
1471          * is not needed.
1472          */
1473         if (ia->ia_flags & IFA_RTSELF) {
1474                 error = ifa_del_loopback_route((struct ifaddr *)ia,
1475                     (struct sockaddr *)&ia->ia_addr);
1476                 if (error == 0)
1477                         ia->ia_flags &= ~IFA_RTSELF;
1478         }
1479
1480         /* stop DAD processing */
1481         nd6_dad_stop(ifa);
1482
1483         /* Remove local address entry from lltable. */
1484         in6_ifremloop(ifa);
1485
1486         /* Leave multicast groups. */
1487         error = in6_purgeaddr_mc(ifp, ia, ifa0);
1488
1489         if (ifa0 != NULL)
1490                 ifa_free(ifa0);
1491
1492         plen = in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL); /* XXX */
1493         if ((ia->ia_flags & IFA_ROUTE) && plen == 128) {
1494                 error = rtinit(&(ia->ia_ifa), RTM_DELETE, ia->ia_flags |
1495                     (ia->ia_dstaddr.sin6_family == AF_INET6) ? RTF_HOST : 0);
1496                 if (error != 0)
1497                         log(LOG_INFO, "%s: err=%d, destination address delete "
1498                             "failed\n", __func__, error);
1499                 ia->ia_flags &= ~IFA_ROUTE;
1500         }
1501
1502         in6_unlink_ifa(ia, ifp);
1503 }
1504
1505 static void
1506 in6_unlink_ifa(struct in6_ifaddr *ia, struct ifnet *ifp)
1507 {
1508         int     s = splnet();
1509
1510         IF_ADDR_WLOCK(ifp);
1511         TAILQ_REMOVE(&ifp->if_addrhead, &ia->ia_ifa, ifa_link);
1512         IF_ADDR_WUNLOCK(ifp);
1513         ifa_free(&ia->ia_ifa);                  /* if_addrhead */
1514
1515         /*
1516          * Defer the release of what might be the last reference to the
1517          * in6_ifaddr so that it can't be freed before the remainder of the
1518          * cleanup.
1519          */
1520         IN6_IFADDR_WLOCK();
1521         TAILQ_REMOVE(&V_in6_ifaddrhead, ia, ia_link);
1522         IN6_IFADDR_WUNLOCK();
1523
1524         /*
1525          * Release the reference to the base prefix.  There should be a
1526          * positive reference.
1527          */
1528         if (ia->ia6_ndpr == NULL) {
1529                 nd6log((LOG_NOTICE,
1530                     "in6_unlink_ifa: autoconf'ed address "
1531                     "%p has no prefix\n", ia));
1532         } else {
1533                 ia->ia6_ndpr->ndpr_refcnt--;
1534                 ia->ia6_ndpr = NULL;
1535         }
1536
1537         /*
1538          * Also, if the address being removed is autoconf'ed, call
1539          * pfxlist_onlink_check() since the release might affect the status of
1540          * other (detached) addresses.
1541          */
1542         if ((ia->ia6_flags & IN6_IFF_AUTOCONF)) {
1543                 pfxlist_onlink_check();
1544         }
1545         ifa_free(&ia->ia_ifa);                  /* in6_ifaddrhead */
1546         splx(s);
1547 }
1548
1549 void
1550 in6_purgeif(struct ifnet *ifp)
1551 {
1552         struct ifaddr *ifa, *nifa;
1553
1554         TAILQ_FOREACH_SAFE(ifa, &ifp->if_addrhead, ifa_link, nifa) {
1555                 if (ifa->ifa_addr->sa_family != AF_INET6)
1556                         continue;
1557                 in6_purgeaddr(ifa);
1558         }
1559
1560         in6_ifdetach(ifp);
1561 }
1562
1563 /*
1564  * SIOC[GAD]LIFADDR.
1565  *      SIOCGLIFADDR: get first address. (?)
1566  *      SIOCGLIFADDR with IFLR_PREFIX:
1567  *              get first address that matches the specified prefix.
1568  *      SIOCALIFADDR: add the specified address.
1569  *      SIOCALIFADDR with IFLR_PREFIX:
1570  *              add the specified prefix, filling hostid part from
1571  *              the first link-local address.  prefixlen must be <= 64.
1572  *      SIOCDLIFADDR: delete the specified address.
1573  *      SIOCDLIFADDR with IFLR_PREFIX:
1574  *              delete the first address that matches the specified prefix.
1575  * return values:
1576  *      EINVAL on invalid parameters
1577  *      EADDRNOTAVAIL on prefix match failed/specified address not found
1578  *      other values may be returned from in6_ioctl()
1579  *
1580  * NOTE: SIOCALIFADDR(with IFLR_PREFIX set) allows prefixlen less than 64.
1581  * this is to accomodate address naming scheme other than RFC2374,
1582  * in the future.
1583  * RFC2373 defines interface id to be 64bit, but it allows non-RFC2374
1584  * address encoding scheme. (see figure on page 8)
1585  */
1586 static int
1587 in6_lifaddr_ioctl(struct socket *so, u_long cmd, caddr_t data,
1588     struct ifnet *ifp, struct thread *td)
1589 {
1590         struct if_laddrreq *iflr = (struct if_laddrreq *)data;
1591         struct ifaddr *ifa;
1592         struct sockaddr *sa;
1593
1594         /* sanity checks */
1595         if (!data || !ifp) {
1596                 panic("invalid argument to in6_lifaddr_ioctl");
1597                 /* NOTREACHED */
1598         }
1599
1600         switch (cmd) {
1601         case SIOCGLIFADDR:
1602                 /* address must be specified on GET with IFLR_PREFIX */
1603                 if ((iflr->flags & IFLR_PREFIX) == 0)
1604                         break;
1605                 /* FALLTHROUGH */
1606         case SIOCALIFADDR:
1607         case SIOCDLIFADDR:
1608                 /* address must be specified on ADD and DELETE */
1609                 sa = (struct sockaddr *)&iflr->addr;
1610                 if (sa->sa_family != AF_INET6)
1611                         return EINVAL;
1612                 if (sa->sa_len != sizeof(struct sockaddr_in6))
1613                         return EINVAL;
1614                 /* XXX need improvement */
1615                 sa = (struct sockaddr *)&iflr->dstaddr;
1616                 if (sa->sa_family && sa->sa_family != AF_INET6)
1617                         return EINVAL;
1618                 if (sa->sa_len && sa->sa_len != sizeof(struct sockaddr_in6))
1619                         return EINVAL;
1620                 break;
1621         default: /* shouldn't happen */
1622 #if 0
1623                 panic("invalid cmd to in6_lifaddr_ioctl");
1624                 /* NOTREACHED */
1625 #else
1626                 return EOPNOTSUPP;
1627 #endif
1628         }
1629         if (sizeof(struct in6_addr) * 8 < iflr->prefixlen)
1630                 return EINVAL;
1631
1632         switch (cmd) {
1633         case SIOCALIFADDR:
1634             {
1635                 struct in6_aliasreq ifra;
1636                 struct in6_addr *hostid = NULL;
1637                 int prefixlen;
1638
1639                 ifa = NULL;
1640                 if ((iflr->flags & IFLR_PREFIX) != 0) {
1641                         struct sockaddr_in6 *sin6;
1642
1643                         /*
1644                          * hostid is to fill in the hostid part of the
1645                          * address.  hostid points to the first link-local
1646                          * address attached to the interface.
1647                          */
1648                         ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 0);
1649                         if (!ifa)
1650                                 return EADDRNOTAVAIL;
1651                         hostid = IFA_IN6(ifa);
1652
1653                         /* prefixlen must be <= 64. */
1654                         if (64 < iflr->prefixlen) {
1655                                 if (ifa != NULL)
1656                                         ifa_free(ifa);
1657                                 return EINVAL;
1658                         }
1659                         prefixlen = iflr->prefixlen;
1660
1661                         /* hostid part must be zero. */
1662                         sin6 = (struct sockaddr_in6 *)&iflr->addr;
1663                         if (sin6->sin6_addr.s6_addr32[2] != 0 ||
1664                             sin6->sin6_addr.s6_addr32[3] != 0) {
1665                                 if (ifa != NULL)
1666                                         ifa_free(ifa);
1667                                 return EINVAL;
1668                         }
1669                 } else
1670                         prefixlen = iflr->prefixlen;
1671
1672                 /* copy args to in6_aliasreq, perform ioctl(SIOCAIFADDR_IN6). */
1673                 bzero(&ifra, sizeof(ifra));
1674                 bcopy(iflr->iflr_name, ifra.ifra_name, sizeof(ifra.ifra_name));
1675
1676                 bcopy(&iflr->addr, &ifra.ifra_addr,
1677                     ((struct sockaddr *)&iflr->addr)->sa_len);
1678                 if (hostid) {
1679                         /* fill in hostid part */
1680                         ifra.ifra_addr.sin6_addr.s6_addr32[2] =
1681                             hostid->s6_addr32[2];
1682                         ifra.ifra_addr.sin6_addr.s6_addr32[3] =
1683                             hostid->s6_addr32[3];
1684                 }
1685
1686                 if (((struct sockaddr *)&iflr->dstaddr)->sa_family) { /* XXX */
1687                         bcopy(&iflr->dstaddr, &ifra.ifra_dstaddr,
1688                             ((struct sockaddr *)&iflr->dstaddr)->sa_len);
1689                         if (hostid) {
1690                                 ifra.ifra_dstaddr.sin6_addr.s6_addr32[2] =
1691                                     hostid->s6_addr32[2];
1692                                 ifra.ifra_dstaddr.sin6_addr.s6_addr32[3] =
1693                                     hostid->s6_addr32[3];
1694                         }
1695                 }
1696                 if (ifa != NULL)
1697                         ifa_free(ifa);
1698
1699                 ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
1700                 in6_prefixlen2mask(&ifra.ifra_prefixmask.sin6_addr, prefixlen);
1701
1702                 ifra.ifra_flags = iflr->flags & ~IFLR_PREFIX;
1703                 return in6_control(so, SIOCAIFADDR_IN6, (caddr_t)&ifra, ifp, td);
1704             }
1705         case SIOCGLIFADDR:
1706         case SIOCDLIFADDR:
1707             {
1708                 struct in6_ifaddr *ia;
1709                 struct in6_addr mask, candidate, match;
1710                 struct sockaddr_in6 *sin6;
1711                 int cmp;
1712
1713                 bzero(&mask, sizeof(mask));
1714                 if (iflr->flags & IFLR_PREFIX) {
1715                         /* lookup a prefix rather than address. */
1716                         in6_prefixlen2mask(&mask, iflr->prefixlen);
1717
1718                         sin6 = (struct sockaddr_in6 *)&iflr->addr;
1719                         bcopy(&sin6->sin6_addr, &match, sizeof(match));
1720                         match.s6_addr32[0] &= mask.s6_addr32[0];
1721                         match.s6_addr32[1] &= mask.s6_addr32[1];
1722                         match.s6_addr32[2] &= mask.s6_addr32[2];
1723                         match.s6_addr32[3] &= mask.s6_addr32[3];
1724
1725                         /* if you set extra bits, that's wrong */
1726                         if (bcmp(&match, &sin6->sin6_addr, sizeof(match)))
1727                                 return EINVAL;
1728
1729                         cmp = 1;
1730                 } else {
1731                         if (cmd == SIOCGLIFADDR) {
1732                                 /* on getting an address, take the 1st match */
1733                                 cmp = 0;        /* XXX */
1734                         } else {
1735                                 /* on deleting an address, do exact match */
1736                                 in6_prefixlen2mask(&mask, 128);
1737                                 sin6 = (struct sockaddr_in6 *)&iflr->addr;
1738                                 bcopy(&sin6->sin6_addr, &match, sizeof(match));
1739
1740                                 cmp = 1;
1741                         }
1742                 }
1743
1744                 IF_ADDR_RLOCK(ifp);
1745                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1746                         if (ifa->ifa_addr->sa_family != AF_INET6)
1747                                 continue;
1748                         if (!cmp)
1749                                 break;
1750
1751                         /*
1752                          * XXX: this is adhoc, but is necessary to allow
1753                          * a user to specify fe80::/64 (not /10) for a
1754                          * link-local address.
1755                          */
1756                         bcopy(IFA_IN6(ifa), &candidate, sizeof(candidate));
1757                         in6_clearscope(&candidate);
1758                         candidate.s6_addr32[0] &= mask.s6_addr32[0];
1759                         candidate.s6_addr32[1] &= mask.s6_addr32[1];
1760                         candidate.s6_addr32[2] &= mask.s6_addr32[2];
1761                         candidate.s6_addr32[3] &= mask.s6_addr32[3];
1762                         if (IN6_ARE_ADDR_EQUAL(&candidate, &match))
1763                                 break;
1764                 }
1765                 if (ifa != NULL)
1766                         ifa_ref(ifa);
1767                 IF_ADDR_RUNLOCK(ifp);
1768                 if (!ifa)
1769                         return EADDRNOTAVAIL;
1770                 ia = ifa2ia6(ifa);
1771
1772                 if (cmd == SIOCGLIFADDR) {
1773                         int error;
1774
1775                         /* fill in the if_laddrreq structure */
1776                         bcopy(&ia->ia_addr, &iflr->addr, ia->ia_addr.sin6_len);
1777                         error = sa6_recoverscope(
1778                             (struct sockaddr_in6 *)&iflr->addr);
1779                         if (error != 0) {
1780                                 ifa_free(ifa);
1781                                 return (error);
1782                         }
1783
1784                         if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
1785                                 bcopy(&ia->ia_dstaddr, &iflr->dstaddr,
1786                                     ia->ia_dstaddr.sin6_len);
1787                                 error = sa6_recoverscope(
1788                                     (struct sockaddr_in6 *)&iflr->dstaddr);
1789                                 if (error != 0) {
1790                                         ifa_free(ifa);
1791                                         return (error);
1792                                 }
1793                         } else
1794                                 bzero(&iflr->dstaddr, sizeof(iflr->dstaddr));
1795
1796                         iflr->prefixlen =
1797                             in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL);
1798
1799                         iflr->flags = ia->ia6_flags;    /* XXX */
1800                         ifa_free(ifa);
1801
1802                         return 0;
1803                 } else {
1804                         struct in6_aliasreq ifra;
1805
1806                         /* fill in6_aliasreq and do ioctl(SIOCDIFADDR_IN6) */
1807                         bzero(&ifra, sizeof(ifra));
1808                         bcopy(iflr->iflr_name, ifra.ifra_name,
1809                             sizeof(ifra.ifra_name));
1810
1811                         bcopy(&ia->ia_addr, &ifra.ifra_addr,
1812                             ia->ia_addr.sin6_len);
1813                         if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
1814                                 bcopy(&ia->ia_dstaddr, &ifra.ifra_dstaddr,
1815                                     ia->ia_dstaddr.sin6_len);
1816                         } else {
1817                                 bzero(&ifra.ifra_dstaddr,
1818                                     sizeof(ifra.ifra_dstaddr));
1819                         }
1820                         bcopy(&ia->ia_prefixmask, &ifra.ifra_dstaddr,
1821                             ia->ia_prefixmask.sin6_len);
1822
1823                         ifra.ifra_flags = ia->ia6_flags;
1824                         ifa_free(ifa);
1825                         return in6_control(so, SIOCDIFADDR_IN6, (caddr_t)&ifra,
1826                             ifp, td);
1827                 }
1828             }
1829         }
1830
1831         return EOPNOTSUPP;      /* just for safety */
1832 }
1833
1834 /*
1835  * Initialize an interface's IPv6 address and routing table entry.
1836  */
1837 static int
1838 in6_ifinit(struct ifnet *ifp, struct in6_ifaddr *ia,
1839     struct sockaddr_in6 *sin6, int newhost)
1840 {
1841         int     error = 0, plen, ifacount = 0;
1842         int     s = splimp();
1843         struct ifaddr *ifa;
1844
1845         /*
1846          * Give the interface a chance to initialize
1847          * if this is its first address,
1848          * and to validate the address if necessary.
1849          */
1850         IF_ADDR_RLOCK(ifp);
1851         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1852                 if (ifa->ifa_addr->sa_family != AF_INET6)
1853                         continue;
1854                 ifacount++;
1855         }
1856         IF_ADDR_RUNLOCK(ifp);
1857
1858         ia->ia_addr = *sin6;
1859
1860         if (ifacount <= 1 && ifp->if_ioctl) {
1861                 error = (*ifp->if_ioctl)(ifp, SIOCSIFADDR, (caddr_t)ia);
1862                 if (error) {
1863                         splx(s);
1864                         return (error);
1865                 }
1866         }
1867         splx(s);
1868
1869         ia->ia_ifa.ifa_metric = ifp->if_metric;
1870
1871         /* we could do in(6)_socktrim here, but just omit it at this moment. */
1872
1873         /*
1874          * Special case:
1875          * If a new destination address is specified for a point-to-point
1876          * interface, install a route to the destination as an interface
1877          * direct route.
1878          * XXX: the logic below rejects assigning multiple addresses on a p2p
1879          * interface that share the same destination.
1880          */
1881         plen = in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL); /* XXX */
1882         if (!(ia->ia_flags & IFA_ROUTE) && plen == 128 &&
1883             ia->ia_dstaddr.sin6_family == AF_INET6) {
1884                 int rtflags = RTF_UP | RTF_HOST;
1885                 error = rtinit(&ia->ia_ifa, RTM_ADD, ia->ia_flags | rtflags);
1886                 if (error)
1887                         return (error);
1888                 ia->ia_flags |= IFA_ROUTE;
1889                 /*
1890                  * Handle the case for ::1 .
1891                  */
1892                 if (ifp->if_flags & IFF_LOOPBACK)
1893                         ia->ia_flags |= IFA_RTSELF;
1894         }
1895
1896         /*
1897          * add a loopback route to self
1898          */
1899         if (!(ia->ia_flags & IFA_RTSELF) && V_nd6_useloopback) {
1900                 error = ifa_add_loopback_route((struct ifaddr *)ia,
1901                     (struct sockaddr *)&ia->ia_addr);
1902                 if (error == 0)
1903                         ia->ia_flags |= IFA_RTSELF;
1904         }
1905
1906         /* Add local address to lltable, if necessary (ex. on p2p link). */
1907         if (newhost)
1908                 in6_ifaddloop(&(ia->ia_ifa));
1909
1910         return (error);
1911 }
1912
1913 /*
1914  * Find an IPv6 interface link-local address specific to an interface.
1915  * ifaddr is returned referenced.
1916  */
1917 struct in6_ifaddr *
1918 in6ifa_ifpforlinklocal(struct ifnet *ifp, int ignoreflags)
1919 {
1920         struct ifaddr *ifa;
1921
1922         IF_ADDR_RLOCK(ifp);
1923         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1924                 if (ifa->ifa_addr->sa_family != AF_INET6)
1925                         continue;
1926                 if (IN6_IS_ADDR_LINKLOCAL(IFA_IN6(ifa))) {
1927                         if ((((struct in6_ifaddr *)ifa)->ia6_flags &
1928                             ignoreflags) != 0)
1929                                 continue;
1930                         ifa_ref(ifa);
1931                         break;
1932                 }
1933         }
1934         IF_ADDR_RUNLOCK(ifp);
1935
1936         return ((struct in6_ifaddr *)ifa);
1937 }
1938
1939
1940 /*
1941  * find the internet address corresponding to a given interface and address.
1942  * ifaddr is returned referenced.
1943  */
1944 struct in6_ifaddr *
1945 in6ifa_ifpwithaddr(struct ifnet *ifp, struct in6_addr *addr)
1946 {
1947         struct ifaddr *ifa;
1948
1949         IF_ADDR_RLOCK(ifp);
1950         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1951                 if (ifa->ifa_addr->sa_family != AF_INET6)
1952                         continue;
1953                 if (IN6_ARE_ADDR_EQUAL(addr, IFA_IN6(ifa))) {
1954                         ifa_ref(ifa);
1955                         break;
1956                 }
1957         }
1958         IF_ADDR_RUNLOCK(ifp);
1959
1960         return ((struct in6_ifaddr *)ifa);
1961 }
1962
1963 /*
1964  * Find a link-local scoped address on ifp and return it if any.
1965  */
1966 struct in6_ifaddr *
1967 in6ifa_llaonifp(struct ifnet *ifp)
1968 {
1969         struct sockaddr_in6 *sin6;
1970         struct ifaddr *ifa;
1971
1972         if (ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED)
1973                 return (NULL);
1974         if_addr_rlock(ifp);
1975         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
1976                 if (ifa->ifa_addr->sa_family != AF_INET6)
1977                         continue;
1978                 sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
1979                 if (IN6_IS_SCOPE_LINKLOCAL(&sin6->sin6_addr) ||
1980                     IN6_IS_ADDR_MC_INTFACELOCAL(&sin6->sin6_addr) ||
1981                     IN6_IS_ADDR_MC_NODELOCAL(&sin6->sin6_addr))
1982                         break;
1983         }
1984         if_addr_runlock(ifp);
1985
1986         return ((struct in6_ifaddr *)ifa);
1987 }
1988
1989 /*
1990  * Convert IP6 address to printable (loggable) representation. Caller
1991  * has to make sure that ip6buf is at least INET6_ADDRSTRLEN long.
1992  */
1993 static char digits[] = "0123456789abcdef";
1994 char *
1995 ip6_sprintf(char *ip6buf, const struct in6_addr *addr)
1996 {
1997         int i, cnt = 0, maxcnt = 0, idx = 0, index = 0;
1998         char *cp;
1999         const u_int16_t *a = (const u_int16_t *)addr;
2000         const u_int8_t *d;
2001         int dcolon = 0, zero = 0;
2002
2003         cp = ip6buf;
2004
2005         for (i = 0; i < 8; i++) {
2006                 if (*(a + i) == 0) {
2007                         cnt++;
2008                         if (cnt == 1)
2009                                 idx = i;
2010                 }
2011                 else if (maxcnt < cnt) {
2012                         maxcnt = cnt;
2013                         index = idx;
2014                         cnt = 0;
2015                 }
2016         }
2017         if (maxcnt < cnt) {
2018                 maxcnt = cnt;
2019                 index = idx;
2020         }
2021
2022         for (i = 0; i < 8; i++) {
2023                 if (dcolon == 1) {
2024                         if (*a == 0) {
2025                                 if (i == 7)
2026                                         *cp++ = ':';
2027                                 a++;
2028                                 continue;
2029                         } else
2030                                 dcolon = 2;
2031                 }
2032                 if (*a == 0) {
2033                         if (dcolon == 0 && *(a + 1) == 0 && i == index) {
2034                                 if (i == 0)
2035                                         *cp++ = ':';
2036                                 *cp++ = ':';
2037                                 dcolon = 1;
2038                         } else {
2039                                 *cp++ = '0';
2040                                 *cp++ = ':';
2041                         }
2042                         a++;
2043                         continue;
2044                 }
2045                 d = (const u_char *)a;
2046                 /* Try to eliminate leading zeros in printout like in :0001. */
2047                 zero = 1;
2048                 *cp = digits[*d >> 4];
2049                 if (*cp != '0') {
2050                         zero = 0;
2051                         cp++;
2052                 }
2053                 *cp = digits[*d++ & 0xf];
2054                 if (zero == 0 || (*cp != '0')) {
2055                         zero = 0;
2056                         cp++;
2057                 }
2058                 *cp = digits[*d >> 4];
2059                 if (zero == 0 || (*cp != '0')) {
2060                         zero = 0;
2061                         cp++;
2062                 }
2063                 *cp++ = digits[*d & 0xf];
2064                 *cp++ = ':';
2065                 a++;
2066         }
2067         *--cp = '\0';
2068         return (ip6buf);
2069 }
2070
2071 int
2072 in6_localaddr(struct in6_addr *in6)
2073 {
2074         struct in6_ifaddr *ia;
2075
2076         if (IN6_IS_ADDR_LOOPBACK(in6) || IN6_IS_ADDR_LINKLOCAL(in6))
2077                 return 1;
2078
2079         IN6_IFADDR_RLOCK();
2080         TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
2081                 if (IN6_ARE_MASKED_ADDR_EQUAL(in6, &ia->ia_addr.sin6_addr,
2082                     &ia->ia_prefixmask.sin6_addr)) {
2083                         IN6_IFADDR_RUNLOCK();
2084                         return 1;
2085                 }
2086         }
2087         IN6_IFADDR_RUNLOCK();
2088
2089         return (0);
2090 }
2091
2092 /*
2093  * Return 1 if an internet address is for the local host and configured
2094  * on one of its interfaces.
2095  */
2096 int
2097 in6_localip(struct in6_addr *in6)
2098 {
2099         struct in6_ifaddr *ia;
2100
2101         IN6_IFADDR_RLOCK();
2102         TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
2103                 if (IN6_ARE_ADDR_EQUAL(in6, &ia->ia_addr.sin6_addr)) {
2104                         IN6_IFADDR_RUNLOCK();
2105                         return (1);
2106                 }
2107         }
2108         IN6_IFADDR_RUNLOCK();
2109         return (0);
2110 }
2111
2112
2113 int
2114 in6_is_addr_deprecated(struct sockaddr_in6 *sa6)
2115 {
2116         struct in6_ifaddr *ia;
2117
2118         IN6_IFADDR_RLOCK();
2119         TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
2120                 if (IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr,
2121                     &sa6->sin6_addr) &&
2122                     (ia->ia6_flags & IN6_IFF_DEPRECATED) != 0) {
2123                         IN6_IFADDR_RUNLOCK();
2124                         return (1); /* true */
2125                 }
2126
2127                 /* XXX: do we still have to go thru the rest of the list? */
2128         }
2129         IN6_IFADDR_RUNLOCK();
2130
2131         return (0);             /* false */
2132 }
2133
2134 /*
2135  * return length of part which dst and src are equal
2136  * hard coding...
2137  */
2138 int
2139 in6_matchlen(struct in6_addr *src, struct in6_addr *dst)
2140 {
2141         int match = 0;
2142         u_char *s = (u_char *)src, *d = (u_char *)dst;
2143         u_char *lim = s + 16, r;
2144
2145         while (s < lim)
2146                 if ((r = (*d++ ^ *s++)) != 0) {
2147                         while (r < 128) {
2148                                 match++;
2149                                 r <<= 1;
2150                         }
2151                         break;
2152                 } else
2153                         match += 8;
2154         return match;
2155 }
2156
2157 /* XXX: to be scope conscious */
2158 int
2159 in6_are_prefix_equal(struct in6_addr *p1, struct in6_addr *p2, int len)
2160 {
2161         int bytelen, bitlen;
2162
2163         /* sanity check */
2164         if (0 > len || len > 128) {
2165                 log(LOG_ERR, "in6_are_prefix_equal: invalid prefix length(%d)\n",
2166                     len);
2167                 return (0);
2168         }
2169
2170         bytelen = len / 8;
2171         bitlen = len % 8;
2172
2173         if (bcmp(&p1->s6_addr, &p2->s6_addr, bytelen))
2174                 return (0);
2175         if (bitlen != 0 &&
2176             p1->s6_addr[bytelen] >> (8 - bitlen) !=
2177             p2->s6_addr[bytelen] >> (8 - bitlen))
2178                 return (0);
2179
2180         return (1);
2181 }
2182
2183 void
2184 in6_prefixlen2mask(struct in6_addr *maskp, int len)
2185 {
2186         u_char maskarray[8] = {0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff};
2187         int bytelen, bitlen, i;
2188
2189         /* sanity check */
2190         if (0 > len || len > 128) {
2191                 log(LOG_ERR, "in6_prefixlen2mask: invalid prefix length(%d)\n",
2192                     len);
2193                 return;
2194         }
2195
2196         bzero(maskp, sizeof(*maskp));
2197         bytelen = len / 8;
2198         bitlen = len % 8;
2199         for (i = 0; i < bytelen; i++)
2200                 maskp->s6_addr[i] = 0xff;
2201         if (bitlen)
2202                 maskp->s6_addr[bytelen] = maskarray[bitlen - 1];
2203 }
2204
2205 /*
2206  * return the best address out of the same scope. if no address was
2207  * found, return the first valid address from designated IF.
2208  */
2209 struct in6_ifaddr *
2210 in6_ifawithifp(struct ifnet *ifp, struct in6_addr *dst)
2211 {
2212         int dst_scope = in6_addrscope(dst), blen = -1, tlen;
2213         struct ifaddr *ifa;
2214         struct in6_ifaddr *besta = 0;
2215         struct in6_ifaddr *dep[2];      /* last-resort: deprecated */
2216
2217         dep[0] = dep[1] = NULL;
2218
2219         /*
2220          * We first look for addresses in the same scope.
2221          * If there is one, return it.
2222          * If two or more, return one which matches the dst longest.
2223          * If none, return one of global addresses assigned other ifs.
2224          */
2225         IF_ADDR_RLOCK(ifp);
2226         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
2227                 if (ifa->ifa_addr->sa_family != AF_INET6)
2228                         continue;
2229                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST)
2230                         continue; /* XXX: is there any case to allow anycast? */
2231                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_NOTREADY)
2232                         continue; /* don't use this interface */
2233                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DETACHED)
2234                         continue;
2235                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DEPRECATED) {
2236                         if (V_ip6_use_deprecated)
2237                                 dep[0] = (struct in6_ifaddr *)ifa;
2238                         continue;
2239                 }
2240
2241                 if (dst_scope == in6_addrscope(IFA_IN6(ifa))) {
2242                         /*
2243                          * call in6_matchlen() as few as possible
2244                          */
2245                         if (besta) {
2246                                 if (blen == -1)
2247                                         blen = in6_matchlen(&besta->ia_addr.sin6_addr, dst);
2248                                 tlen = in6_matchlen(IFA_IN6(ifa), dst);
2249                                 if (tlen > blen) {
2250                                         blen = tlen;
2251                                         besta = (struct in6_ifaddr *)ifa;
2252                                 }
2253                         } else
2254                                 besta = (struct in6_ifaddr *)ifa;
2255                 }
2256         }
2257         if (besta) {
2258                 ifa_ref(&besta->ia_ifa);
2259                 IF_ADDR_RUNLOCK(ifp);
2260                 return (besta);
2261         }
2262
2263         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
2264                 if (ifa->ifa_addr->sa_family != AF_INET6)
2265                         continue;
2266                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_ANYCAST)
2267                         continue; /* XXX: is there any case to allow anycast? */
2268                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_NOTREADY)
2269                         continue; /* don't use this interface */
2270                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DETACHED)
2271                         continue;
2272                 if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_DEPRECATED) {
2273                         if (V_ip6_use_deprecated)
2274                                 dep[1] = (struct in6_ifaddr *)ifa;
2275                         continue;
2276                 }
2277
2278                 if (ifa != NULL)
2279                         ifa_ref(ifa);
2280                 IF_ADDR_RUNLOCK(ifp);
2281                 return (struct in6_ifaddr *)ifa;
2282         }
2283
2284         /* use the last-resort values, that are, deprecated addresses */
2285         if (dep[0]) {
2286                 ifa_ref((struct ifaddr *)dep[0]);
2287                 IF_ADDR_RUNLOCK(ifp);
2288                 return dep[0];
2289         }
2290         if (dep[1]) {
2291                 ifa_ref((struct ifaddr *)dep[1]);
2292                 IF_ADDR_RUNLOCK(ifp);
2293                 return dep[1];
2294         }
2295
2296         IF_ADDR_RUNLOCK(ifp);
2297         return NULL;
2298 }
2299
2300 /*
2301  * perform DAD when interface becomes IFF_UP.
2302  */
2303 void
2304 in6_if_up(struct ifnet *ifp)
2305 {
2306         struct ifaddr *ifa;
2307         struct in6_ifaddr *ia;
2308
2309         IF_ADDR_RLOCK(ifp);
2310         TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
2311                 if (ifa->ifa_addr->sa_family != AF_INET6)
2312                         continue;
2313                 ia = (struct in6_ifaddr *)ifa;
2314                 if (ia->ia6_flags & IN6_IFF_TENTATIVE) {
2315                         /*
2316                          * The TENTATIVE flag was likely set by hand
2317                          * beforehand, implicitly indicating the need for DAD.
2318                          * We may be able to skip the random delay in this
2319                          * case, but we impose delays just in case.
2320                          */
2321                         nd6_dad_start(ifa,
2322                             arc4random() % (MAX_RTR_SOLICITATION_DELAY * hz));
2323                 }
2324         }
2325         IF_ADDR_RUNLOCK(ifp);
2326
2327         /*
2328          * special cases, like 6to4, are handled in in6_ifattach
2329          */
2330         in6_ifattach(ifp, NULL);
2331 }
2332
2333 int
2334 in6if_do_dad(struct ifnet *ifp)
2335 {
2336         if ((ifp->if_flags & IFF_LOOPBACK) != 0)
2337                 return (0);
2338
2339         if (ND_IFINFO(ifp)->flags & ND6_IFF_IFDISABLED)
2340                 return (0);
2341
2342         switch (ifp->if_type) {
2343 #ifdef IFT_DUMMY
2344         case IFT_DUMMY:
2345 #endif
2346         case IFT_FAITH:
2347                 /*
2348                  * These interfaces do not have the IFF_LOOPBACK flag,
2349                  * but loop packets back.  We do not have to do DAD on such
2350                  * interfaces.  We should even omit it, because loop-backed
2351                  * NS would confuse the DAD procedure.
2352                  */
2353                 return (0);
2354         default:
2355                 /*
2356                  * Our DAD routine requires the interface up and running.
2357                  * However, some interfaces can be up before the RUNNING
2358                  * status.  Additionaly, users may try to assign addresses
2359                  * before the interface becomes up (or running).
2360                  * We simply skip DAD in such a case as a work around.
2361                  * XXX: we should rather mark "tentative" on such addresses,
2362                  * and do DAD after the interface becomes ready.
2363                  */
2364                 if (!((ifp->if_flags & IFF_UP) &&
2365                     (ifp->if_drv_flags & IFF_DRV_RUNNING)))
2366                         return (0);
2367
2368                 return (1);
2369         }
2370 }
2371
2372 /*
2373  * Calculate max IPv6 MTU through all the interfaces and store it
2374  * to in6_maxmtu.
2375  */
2376 void
2377 in6_setmaxmtu(void)
2378 {
2379         unsigned long maxmtu = 0;
2380         struct ifnet *ifp;
2381
2382         IFNET_RLOCK_NOSLEEP();
2383         TAILQ_FOREACH(ifp, &V_ifnet, if_list) {
2384                 /* this function can be called during ifnet initialization */
2385                 if (!ifp->if_afdata[AF_INET6])
2386                         continue;
2387                 if ((ifp->if_flags & IFF_LOOPBACK) == 0 &&
2388                     IN6_LINKMTU(ifp) > maxmtu)
2389                         maxmtu = IN6_LINKMTU(ifp);
2390         }
2391         IFNET_RUNLOCK_NOSLEEP();
2392         if (maxmtu)     /* update only when maxmtu is positive */
2393                 V_in6_maxmtu = maxmtu;
2394 }
2395
2396 /*
2397  * Provide the length of interface identifiers to be used for the link attached
2398  * to the given interface.  The length should be defined in "IPv6 over
2399  * xxx-link" document.  Note that address architecture might also define
2400  * the length for a particular set of address prefixes, regardless of the
2401  * link type.  As clarified in rfc2462bis, those two definitions should be
2402  * consistent, and those really are as of August 2004.
2403  */
2404 int
2405 in6_if2idlen(struct ifnet *ifp)
2406 {
2407         switch (ifp->if_type) {
2408         case IFT_ETHER:         /* RFC2464 */
2409 #ifdef IFT_PROPVIRTUAL
2410         case IFT_PROPVIRTUAL:   /* XXX: no RFC. treat it as ether */
2411 #endif
2412 #ifdef IFT_L2VLAN
2413         case IFT_L2VLAN:        /* ditto */
2414 #endif
2415 #ifdef IFT_IEEE80211
2416         case IFT_IEEE80211:     /* ditto */
2417 #endif
2418 #ifdef IFT_MIP
2419         case IFT_MIP:   /* ditto */
2420 #endif
2421         case IFT_INFINIBAND:
2422                 return (64);
2423         case IFT_FDDI:          /* RFC2467 */
2424                 return (64);
2425         case IFT_ISO88025:      /* RFC2470 (IPv6 over Token Ring) */
2426                 return (64);
2427         case IFT_PPP:           /* RFC2472 */
2428                 return (64);
2429         case IFT_ARCNET:        /* RFC2497 */
2430                 return (64);
2431         case IFT_FRELAY:        /* RFC2590 */
2432                 return (64);
2433         case IFT_IEEE1394:      /* RFC3146 */
2434                 return (64);
2435         case IFT_GIF:
2436                 return (64);    /* draft-ietf-v6ops-mech-v2-07 */
2437         case IFT_LOOP:
2438                 return (64);    /* XXX: is this really correct? */
2439         default:
2440                 /*
2441                  * Unknown link type:
2442                  * It might be controversial to use the today's common constant
2443                  * of 64 for these cases unconditionally.  For full compliance,
2444                  * we should return an error in this case.  On the other hand,
2445                  * if we simply miss the standard for the link type or a new
2446                  * standard is defined for a new link type, the IFID length
2447                  * is very likely to be the common constant.  As a compromise,
2448                  * we always use the constant, but make an explicit notice
2449                  * indicating the "unknown" case.
2450                  */
2451                 printf("in6_if2idlen: unknown link type (%d)\n", ifp->if_type);
2452                 return (64);
2453         }
2454 }
2455
2456 #include <sys/sysctl.h>
2457
2458 struct in6_llentry {
2459         struct llentry          base;
2460         struct sockaddr_in6     l3_addr6;
2461 };
2462
2463 /*
2464  * Deletes an address from the address table.
2465  * This function is called by the timer functions
2466  * such as arptimer() and nd6_llinfo_timer(), and
2467  * the caller does the locking.
2468  */
2469 static void
2470 in6_lltable_free(struct lltable *llt, struct llentry *lle)
2471 {
2472         LLE_WUNLOCK(lle);
2473         LLE_LOCK_DESTROY(lle);
2474         free(lle, M_LLTABLE);
2475 }
2476
2477 static struct llentry *
2478 in6_lltable_new(const struct sockaddr *l3addr, u_int flags)
2479 {
2480         struct in6_llentry *lle;
2481
2482         lle = malloc(sizeof(struct in6_llentry), M_LLTABLE, M_NOWAIT | M_ZERO);
2483         if (lle == NULL)                /* NB: caller generates msg */
2484                 return NULL;
2485
2486         lle->l3_addr6 = *(const struct sockaddr_in6 *)l3addr;
2487         lle->base.lle_refcnt = 1;
2488         lle->base.lle_free = in6_lltable_free;
2489         LLE_LOCK_INIT(&lle->base);
2490         callout_init_rw(&lle->base.ln_timer_ch, &lle->base.lle_lock,
2491             CALLOUT_RETURNUNLOCKED);
2492
2493         return (&lle->base);
2494 }
2495
2496 static void
2497 in6_lltable_prefix_free(struct lltable *llt, const struct sockaddr *prefix,
2498     const struct sockaddr *mask, u_int flags)
2499 {
2500         const struct sockaddr_in6 *pfx = (const struct sockaddr_in6 *)prefix;
2501         const struct sockaddr_in6 *msk = (const struct sockaddr_in6 *)mask;
2502         struct llentry *lle, *next;
2503         int i;
2504
2505         /*
2506          * (flags & LLE_STATIC) means deleting all entries
2507          * including static ND6 entries.
2508          */
2509         IF_AFDATA_WLOCK(llt->llt_ifp);
2510         for (i = 0; i < LLTBL_HASHTBL_SIZE; i++) {
2511                 LIST_FOREACH_SAFE(lle, &llt->lle_head[i], lle_next, next) {
2512                         if (IN6_ARE_MASKED_ADDR_EQUAL(
2513                             &satosin6(L3_ADDR(lle))->sin6_addr,
2514                             &pfx->sin6_addr, &msk->sin6_addr) &&
2515                             ((flags & LLE_STATIC) ||
2516                             !(lle->la_flags & LLE_STATIC))) {
2517                                 LLE_WLOCK(lle);
2518                                 if (callout_stop(&lle->la_timer))
2519                                         LLE_REMREF(lle);
2520                                 llentry_free(lle);
2521                         }
2522                 }
2523         }
2524         IF_AFDATA_WUNLOCK(llt->llt_ifp);
2525 }
2526
2527 static int
2528 in6_lltable_rtcheck(struct ifnet *ifp,
2529                     u_int flags,
2530                     const struct sockaddr *l3addr)
2531 {
2532         struct rtentry *rt;
2533         char ip6buf[INET6_ADDRSTRLEN];
2534
2535         KASSERT(l3addr->sa_family == AF_INET6,
2536             ("sin_family %d", l3addr->sa_family));
2537
2538         /* Our local addresses are always only installed on the default FIB. */
2539         /* XXX rtalloc1 should take a const param */
2540         rt = in6_rtalloc1(__DECONST(struct sockaddr *, l3addr), 0, 0,
2541             RT_DEFAULT_FIB);
2542         if (rt == NULL || (rt->rt_flags & RTF_GATEWAY) || rt->rt_ifp != ifp) {
2543                 struct ifaddr *ifa;
2544                 /*
2545                  * Create an ND6 cache for an IPv6 neighbor
2546                  * that is not covered by our own prefix.
2547                  */
2548                 /* XXX ifaof_ifpforaddr should take a const param */
2549                 ifa = ifaof_ifpforaddr(__DECONST(struct sockaddr *, l3addr), ifp);
2550                 if (ifa != NULL) {
2551                         ifa_free(ifa);
2552                         if (rt != NULL)
2553                                 RTFREE_LOCKED(rt);
2554                         return 0;
2555                 }
2556                 log(LOG_INFO, "IPv6 address: \"%s\" is not on the network\n",
2557                     ip6_sprintf(ip6buf, &((const struct sockaddr_in6 *)l3addr)->sin6_addr));
2558                 if (rt != NULL)
2559                         RTFREE_LOCKED(rt);
2560                 return EINVAL;
2561         }
2562         RTFREE_LOCKED(rt);
2563         return 0;
2564 }
2565
2566 static struct llentry *
2567 in6_lltable_lookup(struct lltable *llt, u_int flags,
2568         const struct sockaddr *l3addr)
2569 {
2570         const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)l3addr;
2571         struct ifnet *ifp = llt->llt_ifp;
2572         struct llentry *lle;
2573         struct llentries *lleh;
2574         u_int hashkey;
2575
2576         IF_AFDATA_LOCK_ASSERT(ifp);
2577         KASSERT(l3addr->sa_family == AF_INET6,
2578             ("sin_family %d", l3addr->sa_family));
2579
2580         hashkey = sin6->sin6_addr.s6_addr32[3];
2581         lleh = &llt->lle_head[LLATBL_HASH(hashkey, LLTBL_HASHMASK)];
2582         LIST_FOREACH(lle, lleh, lle_next) {
2583                 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)L3_ADDR(lle);
2584                 if (lle->la_flags & LLE_DELETED)
2585                         continue;
2586                 if (bcmp(&sa6->sin6_addr, &sin6->sin6_addr,
2587                     sizeof(struct in6_addr)) == 0)
2588                         break;
2589         }
2590
2591         if (lle == NULL) {
2592                 if (!(flags & LLE_CREATE))
2593                         return (NULL);
2594                 /*
2595                  * A route that covers the given address must have
2596                  * been installed 1st because we are doing a resolution,
2597                  * verify this.
2598                  */
2599                 if (!(flags & LLE_IFADDR) &&
2600                     in6_lltable_rtcheck(ifp, flags, l3addr) != 0)
2601                         return NULL;
2602
2603                 lle = in6_lltable_new(l3addr, flags);
2604                 if (lle == NULL) {
2605                         log(LOG_INFO, "lla_lookup: new lle malloc failed\n");
2606                         return NULL;
2607                 }
2608                 lle->la_flags = flags & ~LLE_CREATE;
2609                 if ((flags & (LLE_CREATE | LLE_IFADDR)) == (LLE_CREATE | LLE_IFADDR)) {
2610                         bcopy(IF_LLADDR(ifp), &lle->ll_addr, ifp->if_addrlen);
2611                         lle->la_flags |= (LLE_VALID | LLE_STATIC);
2612                 }
2613
2614                 lle->lle_tbl  = llt;
2615                 lle->lle_head = lleh;
2616                 lle->la_flags |= LLE_LINKED;
2617                 LIST_INSERT_HEAD(lleh, lle, lle_next);
2618         } else if (flags & LLE_DELETE) {
2619                 if (!(lle->la_flags & LLE_IFADDR) || (flags & LLE_IFADDR)) {
2620                         LLE_WLOCK(lle);
2621                         lle->la_flags |= LLE_DELETED;
2622 #ifdef DIAGNOSTIC
2623                         log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle);
2624 #endif
2625                         if ((lle->la_flags &
2626                             (LLE_STATIC | LLE_IFADDR)) == LLE_STATIC)
2627                                 llentry_free(lle);
2628                         else
2629                                 LLE_WUNLOCK(lle);
2630                 }
2631                 lle = (void *)-1;
2632         }
2633         if (LLE_IS_VALID(lle)) {
2634                 if (flags & LLE_EXCLUSIVE)
2635                         LLE_WLOCK(lle);
2636                 else
2637                         LLE_RLOCK(lle);
2638         }
2639         return (lle);
2640 }
2641
2642 static int
2643 in6_lltable_dump(struct lltable *llt, struct sysctl_req *wr)
2644 {
2645         struct ifnet *ifp = llt->llt_ifp;
2646         struct llentry *lle;
2647         /* XXX stack use */
2648         struct {
2649                 struct rt_msghdr        rtm;
2650                 struct sockaddr_in6     sin6;
2651                 /*
2652                  * ndp.c assumes that sdl is word aligned
2653                  */
2654 #ifdef __LP64__
2655                 uint32_t                pad;
2656 #endif
2657                 struct sockaddr_dl      sdl;
2658         } ndpc;
2659         int i, error;
2660
2661         if (ifp->if_flags & IFF_LOOPBACK)
2662                 return 0;
2663
2664         LLTABLE_LOCK_ASSERT();
2665
2666         error = 0;
2667         for (i = 0; i < LLTBL_HASHTBL_SIZE; i++) {
2668                 LIST_FOREACH(lle, &llt->lle_head[i], lle_next) {
2669                         struct sockaddr_dl *sdl;
2670
2671                         /* skip deleted or invalid entries */
2672                         if ((lle->la_flags & (LLE_DELETED|LLE_VALID)) != LLE_VALID)
2673                                 continue;
2674                         /* Skip if jailed and not a valid IP of the prison. */
2675                         if (prison_if(wr->td->td_ucred, L3_ADDR(lle)) != 0)
2676                                 continue;
2677                         /*
2678                          * produce a msg made of:
2679                          *  struct rt_msghdr;
2680                          *  struct sockaddr_in6 (IPv6)
2681                          *  struct sockaddr_dl;
2682                          */
2683                         bzero(&ndpc, sizeof(ndpc));
2684                         ndpc.rtm.rtm_msglen = sizeof(ndpc);
2685                         ndpc.rtm.rtm_version = RTM_VERSION;
2686                         ndpc.rtm.rtm_type = RTM_GET;
2687                         ndpc.rtm.rtm_flags = RTF_UP;
2688                         ndpc.rtm.rtm_addrs = RTA_DST | RTA_GATEWAY;
2689                         ndpc.sin6.sin6_family = AF_INET6;
2690                         ndpc.sin6.sin6_len = sizeof(ndpc.sin6);
2691                         bcopy(L3_ADDR(lle), &ndpc.sin6, L3_ADDR_LEN(lle));
2692
2693                         /* publish */
2694                         if (lle->la_flags & LLE_PUB)
2695                                 ndpc.rtm.rtm_flags |= RTF_ANNOUNCE;
2696
2697                         sdl = &ndpc.sdl;
2698                         sdl->sdl_family = AF_LINK;
2699                         sdl->sdl_len = sizeof(*sdl);
2700                         sdl->sdl_alen = ifp->if_addrlen;
2701                         sdl->sdl_index = ifp->if_index;
2702                         sdl->sdl_type = ifp->if_type;
2703                         bcopy(&lle->ll_addr, LLADDR(sdl), ifp->if_addrlen);
2704                         ndpc.rtm.rtm_rmx.rmx_expire =
2705                             lle->la_flags & LLE_STATIC ? 0 : lle->la_expire;
2706                         ndpc.rtm.rtm_flags |= (RTF_HOST | RTF_LLDATA);
2707                         if (lle->la_flags & LLE_STATIC)
2708                                 ndpc.rtm.rtm_flags |= RTF_STATIC;
2709                         ndpc.rtm.rtm_index = ifp->if_index;
2710                         error = SYSCTL_OUT(wr, &ndpc, sizeof(ndpc));
2711                         if (error)
2712                                 break;
2713                 }
2714         }
2715         return error;
2716 }
2717
2718 void *
2719 in6_domifattach(struct ifnet *ifp)
2720 {
2721         struct in6_ifextra *ext;
2722
2723         ext = (struct in6_ifextra *)malloc(sizeof(*ext), M_IFADDR, M_WAITOK);
2724         bzero(ext, sizeof(*ext));
2725
2726         ext->in6_ifstat = (struct in6_ifstat *)malloc(sizeof(struct in6_ifstat),
2727             M_IFADDR, M_WAITOK);
2728         bzero(ext->in6_ifstat, sizeof(*ext->in6_ifstat));
2729
2730         ext->icmp6_ifstat =
2731             (struct icmp6_ifstat *)malloc(sizeof(struct icmp6_ifstat),
2732             M_IFADDR, M_WAITOK);
2733         bzero(ext->icmp6_ifstat, sizeof(*ext->icmp6_ifstat));
2734
2735         ext->nd_ifinfo = nd6_ifattach(ifp);
2736         ext->scope6_id = scope6_ifattach(ifp);
2737         ext->lltable = lltable_init(ifp, AF_INET6);
2738         if (ext->lltable != NULL) {
2739                 ext->lltable->llt_prefix_free = in6_lltable_prefix_free;
2740                 ext->lltable->llt_lookup = in6_lltable_lookup;
2741                 ext->lltable->llt_dump = in6_lltable_dump;
2742         }
2743
2744         ext->mld_ifinfo = mld_domifattach(ifp);
2745
2746         return ext;
2747 }
2748
2749 void
2750 in6_domifdetach(struct ifnet *ifp, void *aux)
2751 {
2752         struct in6_ifextra *ext = (struct in6_ifextra *)aux;
2753
2754         mld_domifdetach(ifp);
2755         scope6_ifdetach(ext->scope6_id);
2756         nd6_ifdetach(ext->nd_ifinfo);
2757         lltable_free(ext->lltable);
2758         free(ext->in6_ifstat, M_IFADDR);
2759         free(ext->icmp6_ifstat, M_IFADDR);
2760         free(ext, M_IFADDR);
2761 }
2762
2763 /*
2764  * Convert sockaddr_in6 to sockaddr_in.  Original sockaddr_in6 must be
2765  * v4 mapped addr or v4 compat addr
2766  */
2767 void
2768 in6_sin6_2_sin(struct sockaddr_in *sin, struct sockaddr_in6 *sin6)
2769 {
2770
2771         bzero(sin, sizeof(*sin));
2772         sin->sin_len = sizeof(struct sockaddr_in);
2773         sin->sin_family = AF_INET;
2774         sin->sin_port = sin6->sin6_port;
2775         sin->sin_addr.s_addr = sin6->sin6_addr.s6_addr32[3];
2776 }
2777
2778 /* Convert sockaddr_in to sockaddr_in6 in v4 mapped addr format. */
2779 void
2780 in6_sin_2_v4mapsin6(struct sockaddr_in *sin, struct sockaddr_in6 *sin6)
2781 {
2782         bzero(sin6, sizeof(*sin6));
2783         sin6->sin6_len = sizeof(struct sockaddr_in6);
2784         sin6->sin6_family = AF_INET6;
2785         sin6->sin6_port = sin->sin_port;
2786         sin6->sin6_addr.s6_addr32[0] = 0;
2787         sin6->sin6_addr.s6_addr32[1] = 0;
2788         sin6->sin6_addr.s6_addr32[2] = IPV6_ADDR_INT32_SMP;
2789         sin6->sin6_addr.s6_addr32[3] = sin->sin_addr.s_addr;
2790 }
2791
2792 /* Convert sockaddr_in6 into sockaddr_in. */
2793 void
2794 in6_sin6_2_sin_in_sock(struct sockaddr *nam)
2795 {
2796         struct sockaddr_in *sin_p;
2797         struct sockaddr_in6 sin6;
2798
2799         /*
2800          * Save original sockaddr_in6 addr and convert it
2801          * to sockaddr_in.
2802          */
2803         sin6 = *(struct sockaddr_in6 *)nam;
2804         sin_p = (struct sockaddr_in *)nam;
2805         in6_sin6_2_sin(sin_p, &sin6);
2806 }
2807
2808 /* Convert sockaddr_in into sockaddr_in6 in v4 mapped addr format. */
2809 void
2810 in6_sin_2_v4mapsin6_in_sock(struct sockaddr **nam)
2811 {
2812         struct sockaddr_in *sin_p;
2813         struct sockaddr_in6 *sin6_p;
2814
2815         sin6_p = malloc(sizeof *sin6_p, M_SONAME, M_WAITOK);
2816         sin_p = (struct sockaddr_in *)*nam;
2817         in6_sin_2_v4mapsin6(sin_p, sin6_p);
2818         free(*nam, M_SONAME);
2819         *nam = (struct sockaddr *)sin6_p;
2820 }