]> git.saurik.com Git - apple/xnu.git/blame_incremental - bsd/netinet6/in6_ifattach.c
xnu-344.tar.gz
[apple/xnu.git] / bsd / netinet6 / in6_ifattach.c
... / ...
CommitLineData
1/* $KAME: in6_ifattach.c,v 1.41 2000/03/16 07:05:34 jinmei Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/malloc.h>
35#include <sys/socket.h>
36#include <sys/socketvar.h>
37#include <sys/sockio.h>
38#include <sys/kernel.h>
39#include <sys/syslog.h>
40#include <sys/md5.h>
41
42#include <net/if.h>
43#include <net/if_dl.h>
44#include <net/if_types.h>
45#include <net/route.h>
46
47#include <netinet/in.h>
48#include <netinet/in_var.h>
49#include <netinet/if_ether.h>
50#include <netinet/in_pcb.h>
51
52#include <netinet/ip6.h>
53#include <netinet6/ip6_var.h>
54#include <netinet6/in6_var.h>
55#include <netinet6/in6_pcb.h>
56#include <netinet6/in6_ifattach.h>
57#include <netinet6/ip6_var.h>
58#include <netinet6/nd6.h>
59#include <netinet6/scope6_var.h>
60
61#include <net/net_osdep.h>
62
63struct in6_ifstat **in6_ifstat = NULL;
64struct icmp6_ifstat **icmp6_ifstat = NULL;
65size_t in6_ifstatmax = 0;
66size_t icmp6_ifstatmax = 0;
67unsigned long in6_maxmtu = 0;
68
69#if IP6_AUTO_LINKLOCAL
70int ip6_auto_linklocal = IP6_AUTO_LINKLOCAL;
71#else
72int ip6_auto_linklocal = 1; /* enable by default */
73#endif
74
75#ifndef __APPLE__
76struct callout in6_tmpaddrtimer_ch;
77#endif
78
79extern struct inpcbinfo udbinfo;
80extern struct inpcbinfo ripcbinfo;
81
82static int get_rand_ifid __P((struct ifnet *, struct in6_addr *));
83static int generate_tmp_ifid __P((u_int8_t *, const u_int8_t *, u_int8_t *));
84static int get_hw_ifid __P((struct ifnet *, struct in6_addr *));
85static int get_ifid __P((struct ifnet *, struct ifnet *, struct in6_addr *));
86static int in6_ifattach_linklocal __P((struct ifnet *, struct ifnet *));
87static int in6_ifattach_loopback __P((struct ifnet *));
88
89#define EUI64_GBIT 0x01
90#define EUI64_UBIT 0x02
91#define EUI64_TO_IFID(in6) do {(in6)->s6_addr[8] ^= EUI64_UBIT; } while (0)
92#define EUI64_GROUP(in6) ((in6)->s6_addr[8] & EUI64_GBIT)
93#define EUI64_INDIVIDUAL(in6) (!EUI64_GROUP(in6))
94#define EUI64_LOCAL(in6) ((in6)->s6_addr[8] & EUI64_UBIT)
95#define EUI64_UNIVERSAL(in6) (!EUI64_LOCAL(in6))
96
97#define IFID_LOCAL(in6) (!EUI64_LOCAL(in6))
98#define IFID_UNIVERSAL(in6) (!EUI64_UNIVERSAL(in6))
99
100/*
101 * Generate a last-resort interface identifier, when the machine has no
102 * IEEE802/EUI64 address sources.
103 * The goal here is to get an interface identifier that is
104 * (1) random enough and (2) does not change across reboot.
105 * We currently use MD5(hostname) for it.
106 */
107static int
108get_rand_ifid(ifp, in6)
109 struct ifnet *ifp;
110 struct in6_addr *in6; /*upper 64bits are preserved */
111{
112 MD5_CTX ctxt;
113 u_int8_t digest[16];
114 int hostnamelen = strlen(hostname);
115
116#if 0
117 /* we need at least several letters as seed for ifid */
118 if (hostnamelen < 3)
119 return -1;
120#endif
121
122 /* generate 8 bytes of pseudo-random value. */
123 bzero(&ctxt, sizeof(ctxt));
124 MD5Init(&ctxt);
125 MD5Update(&ctxt, hostname, hostnamelen);
126 MD5Final(digest, &ctxt);
127
128 /* assumes sizeof(digest) > sizeof(ifid) */
129 bcopy(digest, &in6->s6_addr[8], 8);
130
131 /* make sure to set "u" bit to local, and "g" bit to individual. */
132 in6->s6_addr[8] &= ~EUI64_GBIT; /* g bit to "individual" */
133 in6->s6_addr[8] |= EUI64_UBIT; /* u bit to "local" */
134
135 /* convert EUI64 into IPv6 interface identifier */
136 EUI64_TO_IFID(in6);
137
138 return 0;
139}
140
141static int
142generate_tmp_ifid(seed0, seed1, ret)
143 u_int8_t *seed0, *ret;
144 const u_int8_t *seed1;
145{
146 MD5_CTX ctxt;
147 u_int8_t seed[16], digest[16], nullbuf[8];
148 u_int32_t val32;
149 struct timeval tv;
150
151 /* If there's no hisotry, start with a random seed. */
152 bzero(nullbuf, sizeof(nullbuf));
153 if (bcmp(nullbuf, seed0, sizeof(nullbuf)) == 0) {
154 int i;
155
156 for (i = 0; i < 2; i++) {
157 microtime(&tv);
158 val32 = random() ^ tv.tv_usec;
159 bcopy(&val32, seed + sizeof(val32) * i, sizeof(val32));
160 }
161 } else
162 bcopy(seed0, seed, 8);
163
164 /* copy the right-most 64-bits of the given address */
165 /* XXX assumption on the size of IFID */
166 bcopy(seed1, &seed[8], 8);
167
168 if (0) { /* for debugging purposes only */
169 int i;
170
171 printf("generate_tmp_ifid: new randomized ID from: ");
172 for (i = 0; i < 16; i++)
173 printf("%02x", seed[i]);
174 printf(" ");
175 }
176
177 /* generate 16 bytes of pseudo-random value. */
178 bzero(&ctxt, sizeof(ctxt));
179 MD5Init(&ctxt);
180 MD5Update(&ctxt, seed, sizeof(seed));
181 MD5Final(digest, &ctxt);
182
183 /*
184 * RFC 3041 3.2.1. (3)
185 * Take the left-most 64-bits of the MD5 digest and set bit 6 (the
186 * left-most bit is numbered 0) to zero.
187 */
188 bcopy(digest, ret, 8);
189 ret[0] &= ~EUI64_UBIT;
190
191 /*
192 * XXX: we'd like to ensure that the generated value is not zero
193 * for simplicity. If the caclculated digest happens to be zero,
194 * use a random non-zero value as the last resort.
195 */
196 if (bcmp(nullbuf, ret, sizeof(nullbuf)) == 0) {
197 log(LOG_INFO,
198 "generate_tmp_ifid: computed MD5 value is zero.\n");
199
200 microtime(&tv);
201 val32 = random() ^ tv.tv_usec;
202 val32 = 1 + (val32 % (0xffffffff - 1));
203 }
204
205 /*
206 * RFC 3041 3.2.1. (4)
207 * Take the rightmost 64-bits of the MD5 digest and save them in
208 * stable storage as the history value to be used in the next
209 * iteration of the algorithm.
210 */
211 bcopy(&digest[8], seed0, 8);
212
213 if (0) { /* for debugging purposes only */
214 int i;
215
216 printf("to: ");
217 for (i = 0; i < 16; i++)
218 printf("%02x", digest[i]);
219 printf("\n");
220 }
221
222 return 0;
223}
224
225/*
226 * Get interface identifier for the specified interface.
227 * XXX assumes single sockaddr_dl (AF_LINK address) per an interface
228 */
229static int
230get_hw_ifid(ifp, in6)
231 struct ifnet *ifp;
232 struct in6_addr *in6; /*upper 64bits are preserved */
233{
234 struct ifaddr *ifa;
235 struct sockaddr_dl *sdl;
236 u_int8_t *addr;
237 size_t addrlen;
238 static u_int8_t allzero[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
239 static u_int8_t allone[8] =
240 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
241
242 for (ifa = ifp->if_addrlist.tqh_first;
243 ifa;
244 ifa = ifa->ifa_list.tqe_next)
245 {
246 if (ifa->ifa_addr->sa_family != AF_LINK)
247 continue;
248 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
249 if (sdl == NULL)
250 continue;
251 if (sdl->sdl_alen == 0)
252 continue;
253
254 goto found;
255 }
256
257 return -1;
258
259found:
260 addr = LLADDR(sdl);
261 addrlen = sdl->sdl_alen;
262
263 /* get EUI64 */
264 switch (ifp->if_type) {
265 case IFT_ETHER:
266 case IFT_FDDI:
267 case IFT_ATM:
268 case IFT_IEEE1394:
269#if IFT_IEEE80211
270 case IFT_IEEE80211:
271#endif
272 /* IEEE802/EUI64 cases - what others? */
273 /* IEEE1394 uses 16byte length address starting with EUI64 */
274 if (addrlen > 8)
275 addrlen = 8;
276
277 /* look at IEEE802/EUI64 only */
278 if (addrlen != 8 && addrlen != 6)
279 return -1;
280
281 /*
282 * check for invalid MAC address - on bsdi, we see it a lot
283 * since wildboar configures all-zero MAC on pccard before
284 * card insertion.
285 */
286 if (bcmp(addr, allzero, addrlen) == 0)
287 return -1;
288 if (bcmp(addr, allone, addrlen) == 0)
289 return -1;
290
291 /* make EUI64 address */
292 if (addrlen == 8)
293 bcopy(addr, &in6->s6_addr[8], 8);
294 else if (addrlen == 6) {
295 in6->s6_addr[8] = addr[0];
296 in6->s6_addr[9] = addr[1];
297 in6->s6_addr[10] = addr[2];
298 in6->s6_addr[11] = 0xff;
299 in6->s6_addr[12] = 0xfe;
300 in6->s6_addr[13] = addr[3];
301 in6->s6_addr[14] = addr[4];
302 in6->s6_addr[15] = addr[5];
303 }
304 break;
305
306 case IFT_ARCNET:
307 if (addrlen != 1)
308 return -1;
309 if (!addr[0])
310 return -1;
311
312 bzero(&in6->s6_addr[8], 8);
313 in6->s6_addr[15] = addr[0];
314
315 /*
316 * due to insufficient bitwidth, we mark it local.
317 */
318 in6->s6_addr[8] &= ~EUI64_GBIT; /* g bit to "individual" */
319 in6->s6_addr[8] |= EUI64_UBIT; /* u bit to "local" */
320 break;
321
322 case IFT_GIF:
323#if IFT_STF
324 case IFT_STF:
325#endif
326 /*
327 * RFC2893 says: "SHOULD use IPv4 address as ifid source".
328 * however, IPv4 address is not very suitable as unique
329 * identifier source (can be renumbered).
330 * we don't do this.
331 */
332 return -1;
333
334 default:
335 return -1;
336 }
337
338 /* sanity check: g bit must not indicate "group" */
339 if (EUI64_GROUP(in6))
340 return -1;
341
342 /* convert EUI64 into IPv6 interface identifier */
343 EUI64_TO_IFID(in6);
344
345 /*
346 * sanity check: ifid must not be all zero, avoid conflict with
347 * subnet router anycast
348 */
349 if ((in6->s6_addr[8] & ~(EUI64_GBIT | EUI64_UBIT)) == 0x00 &&
350 bcmp(&in6->s6_addr[9], allzero, 7) == 0) {
351 return -1;
352 }
353
354 return 0;
355}
356
357/*
358 * Get interface identifier for the specified interface. If it is not
359 * available on ifp0, borrow interface identifier from other information
360 * sources.
361 */
362static int
363get_ifid(ifp0, altifp, in6)
364 struct ifnet *ifp0;
365 struct ifnet *altifp; /*secondary EUI64 source*/
366 struct in6_addr *in6;
367{
368 struct ifnet *ifp;
369
370 /* first, try to get it from the interface itself */
371 if (get_hw_ifid(ifp0, in6) == 0) {
372 nd6log((LOG_DEBUG, "%s: got interface identifier from itself\n",
373 if_name(ifp0)));
374 goto success;
375 }
376
377 /* try secondary EUI64 source. this basically is for ATM PVC */
378 if (altifp && get_hw_ifid(altifp, in6) == 0) {
379 nd6log((LOG_DEBUG, "%s: got interface identifier from %s\n",
380 if_name(ifp0), if_name(altifp)));
381 goto success;
382 }
383
384 /* next, try to get it from some other hardware interface */
385 for (ifp = ifnet.tqh_first; ifp; ifp = ifp->if_list.tqe_next)
386 {
387 if (ifp == ifp0)
388 continue;
389 if (get_hw_ifid(ifp, in6) != 0)
390 continue;
391
392 /*
393 * to borrow ifid from other interface, ifid needs to be
394 * globally unique
395 */
396 if (IFID_UNIVERSAL(in6)) {
397 nd6log((LOG_DEBUG,
398 "%s: borrow interface identifier from %s\n",
399 if_name(ifp0), if_name(ifp)));
400 goto success;
401 }
402 }
403
404 /* last resort: get from random number source */
405 if (get_rand_ifid(ifp, in6) == 0) {
406 nd6log((LOG_DEBUG,
407 "%s: interface identifier generated by random number\n",
408 if_name(ifp0)));
409 goto success;
410 }
411
412 printf("%s: failed to get interface identifier\n", if_name(ifp0));
413 return -1;
414
415success:
416 nd6log((LOG_INFO, "%s: ifid: "
417 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
418 if_name(ifp0),
419 in6->s6_addr[8], in6->s6_addr[9],
420 in6->s6_addr[10], in6->s6_addr[11],
421 in6->s6_addr[12], in6->s6_addr[13],
422 in6->s6_addr[14], in6->s6_addr[15]));
423 return 0;
424}
425
426static int
427in6_ifattach_linklocal(ifp, altifp)
428 struct ifnet *ifp;
429 struct ifnet *altifp; /* secondary EUI64 source */
430{
431 struct in6_ifaddr *ia;
432 struct in6_aliasreq ifra;
433 struct nd_prefix pr0;
434 int i, error;
435
436 /*
437 * configure link-local address.
438 */
439 bzero(&ifra, sizeof(ifra));
440
441 /*
442 * in6_update_ifa() does not use ifra_name, but we accurately set it
443 * for safety.
444 */
445 strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name));
446
447 ifra.ifra_addr.sin6_family = AF_INET6;
448 ifra.ifra_addr.sin6_len = sizeof(struct sockaddr_in6);
449 ifra.ifra_addr.sin6_addr.s6_addr16[0] = htons(0xfe80);
450#if SCOPEDROUTING
451 ifra.ifra_addr.sin6_addr.s6_addr16[1] = 0
452#else
453 ifra.ifra_addr.sin6_addr.s6_addr16[1] = htons(ifp->if_index); /* XXX */
454#endif
455 ifra.ifra_addr.sin6_addr.s6_addr32[1] = 0;
456 if ((ifp->if_flags & IFF_LOOPBACK) != 0) {
457 ifra.ifra_addr.sin6_addr.s6_addr32[2] = 0;
458 ifra.ifra_addr.sin6_addr.s6_addr32[3] = htonl(1);
459 } else {
460 if (get_ifid(ifp, altifp, &ifra.ifra_addr.sin6_addr) != 0) {
461 nd6log((LOG_ERR,
462 "%s: no ifid available\n", if_name(ifp)));
463 return -1;
464 }
465 }
466#if SCOPEDROUTING
467 ifra.ifra_addr.sin6_scope_id =
468 in6_addr2scopeid(ifp, &ifra.ifra_addr.sin6_addr);
469#endif
470
471 ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
472 ifra.ifra_prefixmask.sin6_family = AF_INET6;
473 ifra.ifra_prefixmask.sin6_addr = in6mask64;
474#if SCOPEDROUTING
475 /* take into accound the sin6_scope_id field for routing */
476 ifra.ifra_prefixmask.sin6_scope_id = 0xffffffff;
477#endif
478 /* link-local addresses should NEVER expire. */
479 ifra.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME;
480 ifra.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME;
481
482 /*
483 * Do not let in6_update_ifa() do DAD, since we need a random delay
484 * before sending an NS at the first time the inteface becomes up.
485 * Instead, in6_if_up() will start DAD with a proper random delay.
486 */
487 ifra.ifra_flags |= IN6_IFF_NODAD;
488
489 /*
490 * Now call in6_update_ifa() to do a bunch of procedures to configure
491 * a link-local address. We can set NULL to the 3rd argument, because
492 * we know there's no other link-local address on the interface.
493 */
494 if ((error = in6_update_ifa(ifp, &ifra, NULL)) != 0) {
495 /*
496 * XXX: When the interface does not support IPv6, this call
497 * would fail in the SIOCSIFADDR ioctl. I believe the
498 * notification is rather confusing in this case, so just
499 * supress it. (jinmei@kame.net 20010130)
500 */
501 if (error != EAFNOSUPPORT)
502 log(LOG_NOTICE, "in6_ifattach_linklocal: failed to "
503 "configure a link-local address on %s "
504 "(errno=%d)\n",
505 if_name(ifp), error);
506 return(-1);
507 }
508
509 /*
510 * Adjust ia6_flags so that in6_if_up will perform DAD.
511 * XXX: Some P2P interfaces seem not to send packets just after
512 * becoming up, so we skip p2p interfaces for safety.
513 */
514 ia = in6ifa_ifpforlinklocal(ifp, 0); /* ia must not be NULL */
515#if DIAGNOSTIC
516 if (!ia) {
517 panic("ia == NULL in in6_ifattach_linklocal");
518 /*NOTREACHED*/
519 }
520#endif
521 if (in6if_do_dad(ifp) && (ifp->if_flags & IFF_POINTOPOINT) == 0) {
522 ia->ia6_flags &= ~IN6_IFF_NODAD;
523 ia->ia6_flags |= IN6_IFF_TENTATIVE;
524 }
525
526 /*
527 * Make the link-local prefix (fe80::/64%link) as on-link.
528 * Since we'd like to manage prefixes separately from addresses,
529 * we make an ND6 prefix structure for the link-local prefix,
530 * and add it to the prefix list as a never-expire prefix.
531 * XXX: this change might affect some existing code base...
532 */
533 bzero(&pr0, sizeof(pr0));
534 pr0.ndpr_ifp = ifp;
535 /* this should be 64 at this moment. */
536 pr0.ndpr_plen = in6_mask2len(&ifra.ifra_prefixmask.sin6_addr, NULL);
537 pr0.ndpr_mask = ifra.ifra_prefixmask.sin6_addr;
538 pr0.ndpr_prefix = ifra.ifra_addr;
539 /* apply the mask for safety. (nd6_prelist_add will apply it again) */
540 for (i = 0; i < 4; i++) {
541 pr0.ndpr_prefix.sin6_addr.s6_addr32[i] &=
542 in6mask64.s6_addr32[i];
543 }
544 /*
545 * Initialize parameters. The link-local prefix must always be
546 * on-link, and its lifetimes never expire.
547 */
548 pr0.ndpr_raf_onlink = 1;
549 pr0.ndpr_raf_auto = 1; /* probably meaningless */
550 pr0.ndpr_vltime = ND6_INFINITE_LIFETIME;
551 pr0.ndpr_pltime = ND6_INFINITE_LIFETIME;
552 /*
553 * Since there is no other link-local addresses, nd6_prefix_lookup()
554 * probably returns NULL. However, we cannot always expect the result.
555 * For example, if we first remove the (only) existing link-local
556 * address, and then reconfigure another one, the prefix is still
557 * valid with referring to the old link-local address.
558 */
559 if (nd6_prefix_lookup(&pr0) == NULL) {
560 if ((error = nd6_prelist_add(&pr0, NULL, NULL)) != 0)
561 return(error);
562 }
563
564 in6_post_msg(ifp, KEV_INET6_NEW_LL_ADDR, ia);
565 return 0;
566}
567
568static int
569in6_ifattach_loopback(ifp)
570 struct ifnet *ifp; /* must be IFT_LOOP */
571{
572 struct in6_aliasreq ifra;
573 int error;
574
575 bzero(&ifra, sizeof(ifra));
576
577 /*
578 * in6_update_ifa() does not use ifra_name, but we accurately set it
579 * for safety.
580 */
581 strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name));
582
583 ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
584 ifra.ifra_prefixmask.sin6_family = AF_INET6;
585 ifra.ifra_prefixmask.sin6_addr = in6mask128;
586
587 /*
588 * Always initialize ia_dstaddr (= broadcast address) to loopback
589 * address. Follows IPv4 practice - see in_ifinit().
590 */
591 ifra.ifra_dstaddr.sin6_len = sizeof(struct sockaddr_in6);
592 ifra.ifra_dstaddr.sin6_family = AF_INET6;
593 ifra.ifra_dstaddr.sin6_addr = in6addr_loopback;
594
595 ifra.ifra_addr.sin6_len = sizeof(struct sockaddr_in6);
596 ifra.ifra_addr.sin6_family = AF_INET6;
597 ifra.ifra_addr.sin6_addr = in6addr_loopback;
598
599 /* the loopback address should NEVER expire. */
600 ifra.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME;
601 ifra.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME;
602
603 /* we don't need to perfrom DAD on loopback interfaces. */
604 ifra.ifra_flags |= IN6_IFF_NODAD;
605
606 /* skip registration to the prefix list. XXX should be temporary. */
607 ifra.ifra_flags |= IN6_IFF_NOPFX;
608
609 /*
610 * We can set NULL to the 3rd arg. See comments in
611 * in6_ifattach_linklocal().
612 */
613 if ((error = in6_update_ifa(ifp, &ifra, NULL)) != 0) {
614 log(LOG_ERR, "in6_ifattach_loopback: failed to configure "
615 "the loopback address on %s (errno=%d)\n",
616 if_name(ifp), error);
617 return(-1);
618 }
619
620 return 0;
621}
622
623/*
624 * compute NI group address, based on the current hostname setting.
625 * see draft-ietf-ipngwg-icmp-name-lookup-* (04 and later).
626 *
627 * when ifp == NULL, the caller is responsible for filling scopeid.
628 */
629int
630in6_nigroup(ifp, name, namelen, in6)
631 struct ifnet *ifp;
632 const char *name;
633 int namelen;
634 struct in6_addr *in6;
635{
636 const char *p;
637 u_char *q;
638 MD5_CTX ctxt;
639 u_int8_t digest[16];
640 char l;
641 char n[64]; /* a single label must not exceed 63 chars */
642
643 if (!namelen || !name)
644 return -1;
645
646 p = name;
647 while (p && *p && *p != '.' && p - name < namelen)
648 p++;
649 if (p - name > sizeof(n) - 1)
650 return -1; /*label too long*/
651 l = p - name;
652 strncpy(n, name, l);
653 n[(int)l] = '\0';
654 for (q = n; *q; q++) {
655 if ('A' <= *q && *q <= 'Z')
656 *q = *q - 'A' + 'a';
657 }
658
659 /* generate 8 bytes of pseudo-random value. */
660 bzero(&ctxt, sizeof(ctxt));
661 MD5Init(&ctxt);
662 MD5Update(&ctxt, &l, sizeof(l));
663 MD5Update(&ctxt, n, l);
664 MD5Final(digest, &ctxt);
665
666 bzero(in6, sizeof(*in6));
667 in6->s6_addr16[0] = htons(0xff02);
668 if (ifp)
669 in6->s6_addr16[1] = htons(ifp->if_index);
670 in6->s6_addr8[11] = 2;
671 bcopy(digest, &in6->s6_addr32[3], sizeof(in6->s6_addr32[3]));
672
673 return 0;
674}
675
676void
677in6_nigroup_attach(name, namelen)
678 const char *name;
679 int namelen;
680{
681 struct ifnet *ifp;
682 struct sockaddr_in6 mltaddr;
683 struct in6_multi *in6m;
684 int error;
685
686 bzero(&mltaddr, sizeof(mltaddr));
687 mltaddr.sin6_family = AF_INET6;
688 mltaddr.sin6_len = sizeof(struct sockaddr_in6);
689 if (in6_nigroup(NULL, name, namelen, &mltaddr.sin6_addr) != 0)
690 return;
691
692 for (ifp = ifnet.tqh_first; ifp; ifp = ifp->if_list.tqe_next)
693 {
694 mltaddr.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
695 IN6_LOOKUP_MULTI(mltaddr.sin6_addr, ifp, in6m);
696 if (!in6m) {
697 if (!in6_addmulti(&mltaddr.sin6_addr, ifp, &error)) {
698 nd6log((LOG_ERR, "%s: failed to join %s "
699 "(errno=%d)\n", if_name(ifp),
700 ip6_sprintf(&mltaddr.sin6_addr),
701 error));
702 }
703 }
704 }
705}
706
707void
708in6_nigroup_detach(name, namelen)
709 const char *name;
710 int namelen;
711{
712 struct ifnet *ifp;
713 struct sockaddr_in6 mltaddr;
714 struct in6_multi *in6m;
715
716 bzero(&mltaddr, sizeof(mltaddr));
717 mltaddr.sin6_family = AF_INET6;
718 mltaddr.sin6_len = sizeof(struct sockaddr_in6);
719 if (in6_nigroup(NULL, name, namelen, &mltaddr.sin6_addr) != 0)
720 return;
721
722 for (ifp = ifnet.tqh_first; ifp; ifp = ifp->if_list.tqe_next)
723 {
724 mltaddr.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
725 IN6_LOOKUP_MULTI(mltaddr.sin6_addr, ifp, in6m);
726 if (in6m)
727 in6_delmulti(in6m);
728 }
729}
730
731/*
732 * XXX multiple loopback interface needs more care. for instance,
733 * nodelocal address needs to be configured onto only one of them.
734 * XXX multiple link-local address case
735 */
736void
737in6_ifattach(ifp, altifp)
738 struct ifnet *ifp;
739 struct ifnet *altifp; /* secondary EUI64 source */
740{
741 static size_t if_indexlim = 8;
742 struct in6_ifaddr *ia;
743 struct in6_addr in6;
744 u_long dl_tag;
745
746 switch (ifp->if_type) {
747#if IFT_BRIDGE /*OpenBSD 2.8*/
748 /* some of the interfaces are inherently not IPv6 capable */
749 case IFT_BRIDGE:
750 return;
751#endif
752#ifdef __APPLE__
753 case IFT_ETHER:
754 dl_tag = ether_attach_inet6(ifp);
755 break;
756
757 case IFT_LOOP:
758 dl_tag = lo_attach_inet6(ifp);
759#if NGIF > 0
760 case IFT_GIF:
761 dl_tag = gif_attach_proto_family(ifp, PF_INET6);
762 break;
763#endif
764#if NSTF > 0
765 case IFT_STF:
766 dl_tag = stf_attach_inet6(ifp);
767 break;
768#endif
769#endif
770 }
771
772 /*
773 * We have some arrays that should be indexed by if_index.
774 * since if_index will grow dynamically, they should grow too.
775 * struct in6_ifstat **in6_ifstat
776 * struct icmp6_ifstat **icmp6_ifstat
777 */
778 if (in6_ifstat == NULL || icmp6_ifstat == NULL ||
779 if_index >= if_indexlim) {
780 size_t n;
781 caddr_t q;
782 size_t olim;
783
784 olim = if_indexlim;
785 while (if_index >= if_indexlim)
786 if_indexlim <<= 1;
787
788 /* grow in6_ifstat */
789 n = if_indexlim * sizeof(struct in6_ifstat *);
790 q = (caddr_t)_MALLOC(n, M_IFADDR, M_WAITOK);
791 bzero(q, n);
792 if (in6_ifstat) {
793 bcopy((caddr_t)in6_ifstat, q,
794 olim * sizeof(struct in6_ifstat *));
795 FREE((caddr_t)in6_ifstat, M_IFADDR);
796 }
797 in6_ifstat = (struct in6_ifstat **)q;
798 in6_ifstatmax = if_indexlim;
799
800 /* grow icmp6_ifstat */
801 n = if_indexlim * sizeof(struct icmp6_ifstat *);
802 q = (caddr_t)_MALLOC(n, M_IFADDR, M_WAITOK);
803 bzero(q, n);
804 if (icmp6_ifstat) {
805 bcopy((caddr_t)icmp6_ifstat, q,
806 olim * sizeof(struct icmp6_ifstat *));
807 FREE((caddr_t)icmp6_ifstat, M_IFADDR);
808 }
809 icmp6_ifstat = (struct icmp6_ifstat **)q;
810 icmp6_ifstatmax = if_indexlim;
811 }
812
813 /* initialize scope identifiers */
814 scope6_ifattach(ifp);
815
816 /*
817 * quirks based on interface type
818 */
819 switch (ifp->if_type) {
820#if IFT_STF
821 case IFT_STF:
822 /*
823 * 6to4 interface is a very speical kind of beast.
824 * no multicast, no linklocal (based on 03 draft).
825 */
826 goto statinit;
827#endif
828 default:
829 break;
830 }
831
832 /*
833 * usually, we require multicast capability to the interface
834 */
835 if ((ifp->if_flags & IFF_MULTICAST) == 0) {
836 log(LOG_INFO, "in6_ifattach: "
837 "%s is not multicast capable, IPv6 not enabled\n",
838 if_name(ifp));
839 return;
840 }
841
842 /* initialize NDP variables */
843 nd6_ifattach(ifp);
844
845 /*
846 * assign loopback address for loopback interface.
847 * XXX multiple loopback interface case.
848 */
849 if ((ifp->if_flags & IFF_LOOPBACK) != 0) {
850 in6 = in6addr_loopback;
851 if (in6ifa_ifpwithaddr(ifp, &in6) == NULL) {
852 if (in6_ifattach_loopback(ifp) != 0)
853 return;
854 }
855 }
856
857 /*
858 * assign a link-local address, if there's none.
859 */
860 if (ip6_auto_linklocal) {
861 ia = in6ifa_ifpforlinklocal(ifp, 0);
862 if (ia == NULL) {
863 if (in6_ifattach_linklocal(ifp, altifp) == 0) {
864 /* linklocal address assigned */
865 } else {
866 /* failed to assign linklocal address. bark? */
867 }
868 }
869 }
870
871#if IFT_STF /* XXX */
872statinit:
873#endif
874
875 /* update dynamically. */
876 if (in6_maxmtu < ifp->if_mtu)
877 in6_maxmtu = ifp->if_mtu;
878
879 if (in6_ifstat[ifp->if_index] == NULL) {
880 in6_ifstat[ifp->if_index] = (struct in6_ifstat *)
881 _MALLOC(sizeof(struct in6_ifstat), M_IFADDR, M_WAITOK);
882 bzero(in6_ifstat[ifp->if_index], sizeof(struct in6_ifstat));
883 }
884 if (icmp6_ifstat[ifp->if_index] == NULL) {
885 icmp6_ifstat[ifp->if_index] = (struct icmp6_ifstat *)
886 _MALLOC(sizeof(struct icmp6_ifstat), M_IFADDR, M_WAITOK);
887 bzero(icmp6_ifstat[ifp->if_index], sizeof(struct icmp6_ifstat));
888 }
889
890}
891
892/*
893 * NOTE: in6_ifdetach() does not support loopback if at this moment.
894 * We don't need this function in bsdi, because interfaces are never removed
895 * from the ifnet list in bsdi.
896 */
897void
898in6_ifdetach(ifp)
899 struct ifnet *ifp;
900{
901 struct in6_ifaddr *ia, *oia;
902 struct ifaddr *ifa, *next;
903 struct rtentry *rt;
904 short rtflags;
905 struct sockaddr_in6 sin6;
906 struct in6_multi *in6m;
907 struct in6_multi *in6m_next;
908
909 /* nuke prefix list. this may try to remove some of ifaddrs as well */
910 in6_purgeprefix(ifp);
911
912 /* remove neighbor management table */
913 nd6_purge(ifp);
914
915 /* nuke any of IPv6 addresses we have */
916 for (ifa = ifp->if_addrlist.tqh_first; ifa; ifa = next)
917 {
918 next = ifa->ifa_list.tqe_next;
919 if (ifa->ifa_addr->sa_family != AF_INET6)
920 continue;
921 in6_purgeaddr(ifa);
922 }
923
924 /* undo everything done by in6_ifattach(), just in case */
925 for (ifa = ifp->if_addrlist.tqh_first; ifa; ifa = next)
926 {
927 next = ifa->ifa_list.tqe_next;
928
929
930 if (ifa->ifa_addr->sa_family != AF_INET6
931 || !IN6_IS_ADDR_LINKLOCAL(&satosin6(&ifa->ifa_addr)->sin6_addr)) {
932 continue;
933 }
934
935 ia = (struct in6_ifaddr *)ifa;
936
937 /* remove from the routing table */
938 if ((ia->ia_flags & IFA_ROUTE)
939 && (rt = rtalloc1((struct sockaddr *)&ia->ia_addr, 0, 0UL))) {
940 rtflags = rt->rt_flags;
941 rtfree(rt);
942 rtrequest(RTM_DELETE,
943 (struct sockaddr *)&ia->ia_addr,
944 (struct sockaddr *)&ia->ia_addr,
945 (struct sockaddr *)&ia->ia_prefixmask,
946 rtflags, (struct rtentry **)0);
947 }
948
949 /* remove from the linked list */
950 TAILQ_REMOVE(&ifp->if_addrlist, (struct ifaddr *)ia, ifa_list);
951 ifafree(&ia->ia_ifa);
952
953 /* also remove from the IPv6 address chain(itojun&jinmei) */
954 oia = ia;
955 if (oia == (ia = in6_ifaddr))
956 in6_ifaddr = ia->ia_next;
957 else {
958 while (ia->ia_next && (ia->ia_next != oia))
959 ia = ia->ia_next;
960 if (ia->ia_next)
961 ia->ia_next = oia->ia_next;
962 else {
963 nd6log((LOG_ERR,
964 "%s: didn't unlink in6ifaddr from "
965 "list\n", if_name(ifp)));
966 }
967 }
968
969 IFAFREE(&oia->ia_ifa);
970 }
971
972 /* leave from all multicast groups joined */
973 in6_pcbpurgeif0(LIST_FIRST(udbinfo.listhead), ifp);
974 in6_pcbpurgeif0(LIST_FIRST(ripcbinfo.listhead), ifp);
975 for (in6m = LIST_FIRST(&in6_multihead); in6m; in6m = in6m_next) {
976 in6m_next = LIST_NEXT(in6m, in6m_entry);
977 if (in6m->in6m_ifp != ifp)
978 continue;
979 in6_delmulti(in6m);
980 in6m = NULL;
981 }
982
983 /*
984 * remove neighbor management table. we call it twice just to make
985 * sure we nuke everything. maybe we need just one call.
986 * XXX: since the first call did not release addresses, some prefixes
987 * might remain. We should call nd6_purge() again to release the
988 * prefixes after removing all addresses above.
989 * (Or can we just delay calling nd6_purge until at this point?)
990 */
991 nd6_purge(ifp);
992
993 /* remove route to link-local allnodes multicast (ff02::1) */
994 bzero(&sin6, sizeof(sin6));
995 sin6.sin6_len = sizeof(struct sockaddr_in6);
996 sin6.sin6_family = AF_INET6;
997 sin6.sin6_addr = in6addr_linklocal_allnodes;
998 sin6.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
999 rt = rtalloc1((struct sockaddr *)&sin6, 0, 0UL);
1000 if (rt && rt->rt_ifp == ifp) {
1001 rtrequest(RTM_DELETE, (struct sockaddr *)rt_key(rt),
1002 rt->rt_gateway, rt_mask(rt), rt->rt_flags, 0);
1003 rtfree(rt);
1004 }
1005}
1006
1007void
1008in6_get_tmpifid(ifp, retbuf, baseid, generate)
1009 struct ifnet *ifp;
1010 u_int8_t *retbuf;
1011 const u_int8_t *baseid;
1012 int generate;
1013{
1014 u_int8_t nullbuf[8];
1015 struct nd_ifinfo *ndi = &nd_ifinfo[ifp->if_index];
1016
1017 bzero(nullbuf, sizeof(nullbuf));
1018 if (bcmp(ndi->randomid, nullbuf, sizeof(nullbuf)) == 0) {
1019 /* we've never created a random ID. Create a new one. */
1020 generate = 1;
1021 }
1022
1023 if (generate) {
1024 bcopy(baseid, ndi->randomseed1, sizeof(ndi->randomseed1));
1025
1026 /* generate_tmp_ifid will update seedn and buf */
1027 (void)generate_tmp_ifid(ndi->randomseed0, ndi->randomseed1,
1028 ndi->randomid);
1029 }
1030 bcopy(ndi->randomid, retbuf, 8);
1031}
1032
1033void
1034in6_tmpaddrtimer_funneled(void *ignored_arg)
1035{
1036#ifdef __APPLE__
1037 boolean_t funnel_state;
1038 funnel_state = thread_funnel_set(network_flock, TRUE);
1039#endif
1040 in6_tmpaddrtimer(ignored_arg);
1041#ifdef __APPLE__
1042 (void) thread_funnel_set(network_flock, FALSE);
1043#endif
1044}
1045
1046void
1047in6_tmpaddrtimer(ignored_arg)
1048 void *ignored_arg;
1049{
1050 int i;
1051 struct nd_ifinfo *ndi;
1052 u_int8_t nullbuf[8];
1053 int s = splnet();
1054
1055 timeout(in6_tmpaddrtimer_funneled, (caddr_t)0,
1056 (ip6_temp_preferred_lifetime - ip6_desync_factor -
1057 ip6_temp_regen_advance) * hz);
1058
1059 bzero(nullbuf, sizeof(nullbuf));
1060 for (i = 1; i < if_index + 1; i++) {
1061 ndi = &nd_ifinfo[i];
1062 if (bcmp(ndi->randomid, nullbuf, sizeof(nullbuf)) != 0) {
1063 /*
1064 * We've been generating a random ID on this interface.
1065 * Create a new one.
1066 */
1067 (void)generate_tmp_ifid(ndi->randomseed0,
1068 ndi->randomseed1,
1069 ndi->randomid);
1070 }
1071 }
1072
1073 splx(s);
1074}