in6_ifattach.c revision 1.13 1 1.13 itojun /* $NetBSD: in6_ifattach.c,v 1.13 1999/12/13 15:17:22 itojun Exp $ */
2 1.3 thorpej
3 1.2 itojun /*
4 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 1.2 itojun * All rights reserved.
6 1.2 itojun *
7 1.2 itojun * Redistribution and use in source and binary forms, with or without
8 1.2 itojun * modification, are permitted provided that the following conditions
9 1.2 itojun * are met:
10 1.2 itojun * 1. Redistributions of source code must retain the above copyright
11 1.2 itojun * notice, this list of conditions and the following disclaimer.
12 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.2 itojun * notice, this list of conditions and the following disclaimer in the
14 1.2 itojun * documentation and/or other materials provided with the distribution.
15 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
16 1.2 itojun * may be used to endorse or promote products derived from this software
17 1.2 itojun * without specific prior written permission.
18 1.2 itojun *
19 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.2 itojun * SUCH DAMAGE.
30 1.2 itojun */
31 1.2 itojun
32 1.2 itojun #include <sys/param.h>
33 1.2 itojun #include <sys/systm.h>
34 1.2 itojun #include <sys/malloc.h>
35 1.2 itojun #include <sys/socket.h>
36 1.2 itojun #include <sys/sockio.h>
37 1.13 itojun #include <sys/kernel.h>
38 1.13 itojun #ifdef __bsdi__
39 1.13 itojun #include <crypto/md5.h>
40 1.13 itojun #elif defined(__OpenBSD__)
41 1.13 itojun #include <sys/md5k.h>
42 1.13 itojun #else
43 1.13 itojun #include <sys/md5.h>
44 1.13 itojun #endif
45 1.2 itojun
46 1.2 itojun #include <net/if.h>
47 1.2 itojun #include <net/if_dl.h>
48 1.2 itojun #include <net/if_types.h>
49 1.2 itojun #include <net/route.h>
50 1.2 itojun
51 1.2 itojun #include <netinet/in.h>
52 1.2 itojun #include <netinet/in_var.h>
53 1.2 itojun #ifndef __NetBSD__
54 1.2 itojun #include <netinet/if_ether.h>
55 1.2 itojun #endif
56 1.2 itojun
57 1.2 itojun #include <netinet6/ip6.h>
58 1.2 itojun #include <netinet6/ip6_var.h>
59 1.2 itojun #include <netinet6/in6_ifattach.h>
60 1.2 itojun #include <netinet6/ip6.h>
61 1.2 itojun #include <netinet6/ip6_var.h>
62 1.2 itojun #include <netinet6/nd6.h>
63 1.2 itojun
64 1.13 itojun #include <net/net_osdep.h>
65 1.13 itojun
66 1.2 itojun static struct in6_addr llsol;
67 1.2 itojun
68 1.13 itojun struct in6_ifstat **in6_ifstat = NULL;
69 1.13 itojun struct icmp6_ifstat **icmp6_ifstat = NULL;
70 1.13 itojun size_t in6_ifstatmax = 0;
71 1.13 itojun size_t icmp6_ifstatmax = 0;
72 1.2 itojun unsigned long in6_maxmtu = 0;
73 1.2 itojun
74 1.2 itojun int found_first_ifid = 0;
75 1.2 itojun #define IFID_LEN 8
76 1.13 itojun static u_int8_t first_ifid[IFID_LEN];
77 1.2 itojun
78 1.7 itojun static int laddr_to_eui64 __P((u_int8_t *, u_int8_t *, size_t));
79 1.13 itojun static int gen_rand_eui64 __P((u_int8_t *));
80 1.2 itojun
81 1.7 itojun static int
82 1.7 itojun laddr_to_eui64(dst, src, len)
83 1.2 itojun u_int8_t *dst;
84 1.2 itojun u_int8_t *src;
85 1.7 itojun size_t len;
86 1.2 itojun {
87 1.13 itojun static u_int8_t zero[8];
88 1.13 itojun
89 1.13 itojun bzero(zero, sizeof(zero));
90 1.13 itojun
91 1.7 itojun switch (len) {
92 1.7 itojun case 6:
93 1.13 itojun if (bcmp(zero, src, 6) == 0)
94 1.13 itojun return EINVAL;
95 1.7 itojun dst[0] = src[0];
96 1.7 itojun dst[1] = src[1];
97 1.7 itojun dst[2] = src[2];
98 1.7 itojun dst[3] = 0xff;
99 1.7 itojun dst[4] = 0xfe;
100 1.7 itojun dst[5] = src[3];
101 1.7 itojun dst[6] = src[4];
102 1.7 itojun dst[7] = src[5];
103 1.7 itojun break;
104 1.7 itojun case 8:
105 1.13 itojun if (bcmp(zero, src, 8) == 0)
106 1.13 itojun return EINVAL;
107 1.7 itojun bcopy(src, dst, len);
108 1.7 itojun break;
109 1.7 itojun default:
110 1.7 itojun return EINVAL;
111 1.7 itojun }
112 1.7 itojun
113 1.7 itojun return 0;
114 1.2 itojun }
115 1.2 itojun
116 1.2 itojun /*
117 1.13 itojun * Generate a last-resort interface identifier, when the machine has no
118 1.13 itojun * IEEE802/EUI64 address sources.
119 1.13 itojun * The address should be random, and should not change across reboot.
120 1.13 itojun */
121 1.13 itojun static int
122 1.13 itojun gen_rand_eui64(dst)
123 1.13 itojun u_int8_t *dst;
124 1.13 itojun {
125 1.13 itojun MD5_CTX ctxt;
126 1.13 itojun u_int8_t digest[16];
127 1.13 itojun #ifdef __FreeBSD__
128 1.13 itojun int hostnamelen = strlen(hostname);
129 1.13 itojun #endif
130 1.13 itojun
131 1.13 itojun /* generate 8bytes of pseudo-random value. */
132 1.13 itojun bzero(&ctxt, sizeof(ctxt));
133 1.13 itojun MD5Init(&ctxt);
134 1.13 itojun MD5Update(&ctxt, hostname, hostnamelen);
135 1.13 itojun MD5Final(digest, &ctxt);
136 1.13 itojun
137 1.13 itojun /* assumes sizeof(digest) > sizeof(first_ifid) */
138 1.13 itojun bcopy(digest, dst, 8);
139 1.13 itojun
140 1.13 itojun /* make sure to set "u" bit to local, and "g" bit to individual. */
141 1.13 itojun dst[0] &= 0xfe;
142 1.13 itojun dst[0] |= 0x02; /* EUI64 "local" */
143 1.13 itojun
144 1.13 itojun return 0;
145 1.13 itojun }
146 1.13 itojun
147 1.13 itojun /*
148 1.5 itojun * Find first ifid on list of interfaces.
149 1.5 itojun * This is assumed that ifp0's interface token (for example, IEEE802 MAC)
150 1.5 itojun * is globally unique. We may need to have a flag parameter in the future.
151 1.2 itojun */
152 1.2 itojun int
153 1.2 itojun in6_ifattach_getifid(ifp0)
154 1.2 itojun struct ifnet *ifp0;
155 1.2 itojun {
156 1.2 itojun struct ifnet *ifp;
157 1.2 itojun struct ifaddr *ifa;
158 1.2 itojun u_int8_t *addr = NULL;
159 1.2 itojun int addrlen = 0;
160 1.2 itojun struct sockaddr_dl *sdl;
161 1.2 itojun
162 1.2 itojun if (found_first_ifid)
163 1.2 itojun return 0;
164 1.2 itojun
165 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
166 1.13 itojun for (ifp = ifnet; ifp; ifp = ifp->if_next)
167 1.13 itojun #else
168 1.13 itojun for (ifp = ifnet.tqh_first; ifp; ifp = ifp->if_list.tqe_next)
169 1.13 itojun #endif
170 1.13 itojun {
171 1.2 itojun if (ifp0 != NULL && ifp0 != ifp)
172 1.2 itojun continue;
173 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
174 1.13 itojun for (ifa = ifp->if_addrlist; ifa; ifa = ifa->ifa_next)
175 1.13 itojun #else
176 1.2 itojun for (ifa = ifp->if_addrlist.tqh_first;
177 1.2 itojun ifa;
178 1.13 itojun ifa = ifa->ifa_list.tqe_next)
179 1.13 itojun #endif
180 1.13 itojun {
181 1.2 itojun if (ifa->ifa_addr->sa_family != AF_LINK)
182 1.2 itojun continue;
183 1.2 itojun sdl = (struct sockaddr_dl *)ifa->ifa_addr;
184 1.2 itojun if (sdl == NULL)
185 1.2 itojun continue;
186 1.2 itojun if (sdl->sdl_alen == 0)
187 1.2 itojun continue;
188 1.2 itojun switch (ifp->if_type) {
189 1.2 itojun case IFT_ETHER:
190 1.2 itojun case IFT_FDDI:
191 1.2 itojun case IFT_ATM:
192 1.7 itojun /* IEEE802/EUI64 cases - what others? */
193 1.2 itojun addr = LLADDR(sdl);
194 1.2 itojun addrlen = sdl->sdl_alen;
195 1.7 itojun /*
196 1.7 itojun * to copy ifid from IEEE802/EUI64 interface,
197 1.7 itojun * u bit of the source needs to be 0.
198 1.7 itojun */
199 1.7 itojun if ((addr[0] & 0x02) != 0)
200 1.7 itojun break;
201 1.2 itojun goto found;
202 1.10 itojun case IFT_ARCNET:
203 1.10 itojun /*
204 1.10 itojun * ARCnet interface token cannot be used as
205 1.13 itojun * globally unique identifier due to its
206 1.10 itojun * small bitwidth.
207 1.10 itojun */
208 1.10 itojun break;
209 1.2 itojun default:
210 1.2 itojun break;
211 1.2 itojun }
212 1.2 itojun }
213 1.2 itojun }
214 1.4 thorpej #ifdef DEBUG
215 1.4 thorpej printf("in6_ifattach_getifid: failed to get EUI64");
216 1.4 thorpej #endif
217 1.2 itojun return EADDRNOTAVAIL;
218 1.2 itojun
219 1.2 itojun found:
220 1.7 itojun if (laddr_to_eui64(first_ifid, addr, addrlen) == 0)
221 1.2 itojun found_first_ifid = 1;
222 1.2 itojun
223 1.2 itojun if (found_first_ifid) {
224 1.4 thorpej printf("%s: supplying EUI64: "
225 1.4 thorpej "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
226 1.13 itojun if_name(ifp),
227 1.13 itojun first_ifid[0], first_ifid[1],
228 1.13 itojun first_ifid[2], first_ifid[3],
229 1.13 itojun first_ifid[4], first_ifid[5],
230 1.13 itojun first_ifid[6], first_ifid[7]);
231 1.5 itojun
232 1.5 itojun /* invert u bit to convert EUI64 to RFC2373 interface ID. */
233 1.5 itojun first_ifid[0] ^= 0x02;
234 1.5 itojun
235 1.2 itojun return 0;
236 1.2 itojun } else {
237 1.4 thorpej #ifdef DEBUG
238 1.4 thorpej printf("in6_ifattach_getifid: failed to get EUI64");
239 1.4 thorpej #endif
240 1.2 itojun return EADDRNOTAVAIL;
241 1.2 itojun }
242 1.2 itojun }
243 1.2 itojun
244 1.2 itojun void
245 1.2 itojun in6_ifattach(ifp, type, laddr, noloop)
246 1.2 itojun struct ifnet *ifp;
247 1.2 itojun u_int type;
248 1.2 itojun caddr_t laddr;
249 1.7 itojun /* size_t laddrlen; */
250 1.2 itojun int noloop;
251 1.2 itojun {
252 1.2 itojun static size_t if_indexlim = 8;
253 1.2 itojun struct sockaddr_in6 mltaddr;
254 1.2 itojun struct sockaddr_in6 mltmask;
255 1.2 itojun struct sockaddr_in6 gate;
256 1.2 itojun struct sockaddr_in6 mask;
257 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
258 1.13 itojun struct ifaddr **ifap;
259 1.13 itojun #endif
260 1.2 itojun
261 1.2 itojun struct in6_ifaddr *ia, *ib, *oia;
262 1.2 itojun struct ifaddr *ifa;
263 1.2 itojun int rtflag = 0;
264 1.2 itojun
265 1.2 itojun if (type == IN6_IFT_P2P && found_first_ifid == 0) {
266 1.4 thorpej printf("%s: no ifid available for IPv6 link-local address\n",
267 1.13 itojun if_name(ifp));
268 1.13 itojun #if 0
269 1.2 itojun return;
270 1.13 itojun #else
271 1.13 itojun /* last resort */
272 1.13 itojun if (gen_rand_eui64(first_ifid) == 0) {
273 1.13 itojun printf("%s: using random value as EUI64: "
274 1.13 itojun "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
275 1.13 itojun if_name(ifp),
276 1.13 itojun first_ifid[0], first_ifid[1],
277 1.13 itojun first_ifid[2], first_ifid[3],
278 1.13 itojun first_ifid[4], first_ifid[5],
279 1.13 itojun first_ifid[6], first_ifid[7]);
280 1.13 itojun /*
281 1.13 itojun * invert u bit to convert EUI64 to RFC2373 interface
282 1.13 itojun * ID.
283 1.13 itojun */
284 1.13 itojun first_ifid[0] ^= 0x02;
285 1.13 itojun
286 1.13 itojun found_first_ifid = 1;
287 1.13 itojun }
288 1.13 itojun #endif
289 1.2 itojun }
290 1.2 itojun
291 1.2 itojun if ((ifp->if_flags & IFF_MULTICAST) == 0) {
292 1.4 thorpej printf("%s: not multicast capable, IPv6 not enabled\n",
293 1.13 itojun if_name(ifp));
294 1.2 itojun return;
295 1.2 itojun }
296 1.13 itojun
297 1.2 itojun /*
298 1.2 itojun * We have some arrays that should be indexed by if_index.
299 1.2 itojun * since if_index will grow dynamically, they should grow too.
300 1.13 itojun * struct in6_ifstat **in6_ifstat
301 1.13 itojun * struct icmp6_ifstat **icmp6_ifstat
302 1.2 itojun */
303 1.13 itojun if (in6_ifstat == NULL || icmp6_ifstat == NULL
304 1.13 itojun || if_index >= if_indexlim) {
305 1.2 itojun size_t n;
306 1.2 itojun caddr_t q;
307 1.7 itojun size_t olim;
308 1.2 itojun
309 1.7 itojun olim = if_indexlim;
310 1.7 itojun while (if_index >= if_indexlim)
311 1.2 itojun if_indexlim <<= 1;
312 1.2 itojun
313 1.13 itojun /* grow in6_ifstat */
314 1.13 itojun n = if_indexlim * sizeof(struct in6_ifstat *);
315 1.13 itojun q = (caddr_t)malloc(n, M_IFADDR, M_WAITOK);
316 1.13 itojun bzero(q, n);
317 1.13 itojun if (in6_ifstat) {
318 1.13 itojun bcopy((caddr_t)in6_ifstat, q,
319 1.13 itojun olim * sizeof(struct in6_ifstat *));
320 1.13 itojun free((caddr_t)in6_ifstat, M_IFADDR);
321 1.13 itojun }
322 1.13 itojun in6_ifstat = (struct in6_ifstat **)q;
323 1.13 itojun in6_ifstatmax = if_indexlim;
324 1.13 itojun
325 1.13 itojun /* grow icmp6_ifstat */
326 1.13 itojun n = if_indexlim * sizeof(struct icmp6_ifstat *);
327 1.2 itojun q = (caddr_t)malloc(n, M_IFADDR, M_WAITOK);
328 1.2 itojun bzero(q, n);
329 1.13 itojun if (icmp6_ifstat) {
330 1.13 itojun bcopy((caddr_t)icmp6_ifstat, q,
331 1.13 itojun olim * sizeof(struct icmp6_ifstat *));
332 1.13 itojun free((caddr_t)icmp6_ifstat, M_IFADDR);
333 1.2 itojun }
334 1.13 itojun icmp6_ifstat = (struct icmp6_ifstat **)q;
335 1.13 itojun icmp6_ifstatmax = if_indexlim;
336 1.2 itojun }
337 1.2 itojun
338 1.2 itojun /*
339 1.2 itojun * To prevent to assign link-local address to PnP network
340 1.2 itojun * cards multiple times.
341 1.2 itojun * This is lengthy for P2P and LOOP but works.
342 1.2 itojun */
343 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
344 1.13 itojun ifa = ifp->if_addrlist;
345 1.13 itojun if (ifa != NULL) {
346 1.13 itojun for ( ; ifa; ifa = ifa->ifa_next) {
347 1.13 itojun ifap = &ifa->ifa_next;
348 1.13 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
349 1.13 itojun continue;
350 1.13 itojun if (IN6_IS_ADDR_LINKLOCAL(&satosin6(ifa->ifa_addr)->sin6_addr))
351 1.13 itojun return;
352 1.13 itojun }
353 1.13 itojun } else
354 1.13 itojun ifap = &ifp->if_addrlist;
355 1.13 itojun #else
356 1.2 itojun ifa = TAILQ_FIRST(&ifp->if_addrlist);
357 1.2 itojun if (ifa != NULL) {
358 1.2 itojun for ( ; ifa; ifa = TAILQ_NEXT(ifa, ifa_list)) {
359 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
360 1.2 itojun continue;
361 1.2 itojun if (IN6_IS_ADDR_LINKLOCAL(&satosin6(ifa->ifa_addr)->sin6_addr))
362 1.2 itojun return;
363 1.2 itojun }
364 1.7 itojun } else {
365 1.2 itojun TAILQ_INIT(&ifp->if_addrlist);
366 1.7 itojun }
367 1.13 itojun #endif
368 1.2 itojun
369 1.2 itojun /*
370 1.2 itojun * link-local address
371 1.2 itojun */
372 1.2 itojun ia = (struct in6_ifaddr *)malloc(sizeof(*ia), M_IFADDR, M_WAITOK);
373 1.2 itojun bzero((caddr_t)ia, sizeof(*ia));
374 1.2 itojun ia->ia_ifa.ifa_addr = (struct sockaddr *)&ia->ia_addr;
375 1.2 itojun ia->ia_ifa.ifa_dstaddr = (struct sockaddr *)&ia->ia_dstaddr;
376 1.2 itojun ia->ia_ifa.ifa_netmask = (struct sockaddr *)&ia->ia_prefixmask;
377 1.2 itojun ia->ia_ifp = ifp;
378 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
379 1.13 itojun *ifap = (struct ifaddr *)ia;
380 1.13 itojun #else
381 1.2 itojun TAILQ_INSERT_TAIL(&ifp->if_addrlist, (struct ifaddr *)ia, ifa_list);
382 1.13 itojun #endif
383 1.2 itojun /*
384 1.2 itojun * Also link into the IPv6 address chain beginning with in6_ifaddr.
385 1.2 itojun * kazu opposed it, but itojun & jinmei wanted.
386 1.2 itojun */
387 1.2 itojun if ((oia = in6_ifaddr) != NULL) {
388 1.2 itojun for (; oia->ia_next; oia = oia->ia_next)
389 1.2 itojun continue;
390 1.2 itojun oia->ia_next = ia;
391 1.2 itojun } else
392 1.2 itojun in6_ifaddr = ia;
393 1.2 itojun
394 1.2 itojun ia->ia_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
395 1.2 itojun ia->ia_prefixmask.sin6_family = AF_INET6;
396 1.2 itojun ia->ia_prefixmask.sin6_addr = in6mask64;
397 1.2 itojun
398 1.2 itojun bzero(&ia->ia_addr, sizeof(struct sockaddr_in6));
399 1.2 itojun ia->ia_addr.sin6_len = sizeof(struct sockaddr_in6);
400 1.2 itojun ia->ia_addr.sin6_family = AF_INET6;
401 1.2 itojun ia->ia_addr.sin6_addr.s6_addr16[0] = htons(0xfe80);
402 1.2 itojun ia->ia_addr.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
403 1.2 itojun ia->ia_addr.sin6_addr.s6_addr32[1] = 0;
404 1.2 itojun
405 1.2 itojun switch (type) {
406 1.2 itojun case IN6_IFT_LOOP:
407 1.2 itojun ia->ia_addr.sin6_addr.s6_addr32[2] = 0;
408 1.2 itojun ia->ia_addr.sin6_addr.s6_addr32[3] = htonl(1);
409 1.2 itojun break;
410 1.2 itojun case IN6_IFT_802:
411 1.2 itojun ia->ia_ifa.ifa_rtrequest = nd6_rtrequest;
412 1.2 itojun ia->ia_ifa.ifa_flags |= RTF_CLONING;
413 1.2 itojun rtflag = RTF_CLONING;
414 1.2 itojun /* fall through */
415 1.2 itojun case IN6_IFT_P2P802:
416 1.2 itojun if (laddr == NULL)
417 1.2 itojun break;
418 1.7 itojun /* XXX use laddrlen */
419 1.7 itojun if (laddr_to_eui64(&ia->ia_addr.sin6_addr.s6_addr8[8],
420 1.7 itojun laddr, 6) != 0) {
421 1.7 itojun break;
422 1.7 itojun }
423 1.6 itojun /* invert u bit to convert EUI64 to RFC2373 interface ID. */
424 1.6 itojun ia->ia_addr.sin6_addr.s6_addr8[8] ^= 0x02;
425 1.13 itojun if (found_first_ifid == 0)
426 1.13 itojun in6_ifattach_getifid(ifp);
427 1.13 itojun bzero(&ia->ia_dstaddr, sizeof(struct sockaddr_in6));
428 1.13 itojun ia->ia_dstaddr.sin6_len = sizeof(struct sockaddr_in6);
429 1.13 itojun ia->ia_dstaddr.sin6_family = AF_INET6;
430 1.2 itojun break;
431 1.2 itojun case IN6_IFT_P2P:
432 1.2 itojun bcopy((caddr_t)first_ifid,
433 1.2 itojun (caddr_t)&ia->ia_addr.sin6_addr.s6_addr8[8],
434 1.2 itojun IFID_LEN);
435 1.13 itojun bzero(&ia->ia_dstaddr, sizeof(struct sockaddr_in6));
436 1.13 itojun ia->ia_dstaddr.sin6_len = sizeof(struct sockaddr_in6);
437 1.13 itojun ia->ia_dstaddr.sin6_family = AF_INET6;
438 1.2 itojun break;
439 1.8 is case IN6_IFT_ARCNET:
440 1.8 is ia->ia_ifa.ifa_rtrequest = nd6_rtrequest;
441 1.8 is ia->ia_ifa.ifa_flags |= RTF_CLONING;
442 1.8 is rtflag = RTF_CLONING;
443 1.8 is if (laddr == NULL)
444 1.8 is break;
445 1.12 is
446 1.12 is /* make non-global IF id out of link-level address */
447 1.12 is bzero(&ia->ia_addr.sin6_addr.s6_addr8[8], 7);
448 1.12 is ia->ia_addr.sin6_addr.s6_addr8[15] = *laddr;
449 1.2 itojun }
450 1.2 itojun
451 1.2 itojun ia->ia_ifa.ifa_metric = ifp->if_metric;
452 1.2 itojun
453 1.2 itojun if (ifp->if_ioctl != NULL) {
454 1.2 itojun int s;
455 1.2 itojun int error;
456 1.2 itojun
457 1.2 itojun /*
458 1.2 itojun * give the interface a chance to initialize, in case this
459 1.2 itojun * is the first address to be added.
460 1.2 itojun */
461 1.2 itojun s = splimp();
462 1.2 itojun error = (*ifp->if_ioctl)(ifp, SIOCSIFADDR, (caddr_t)ia);
463 1.2 itojun splx(s);
464 1.2 itojun
465 1.2 itojun if (error) {
466 1.2 itojun switch (error) {
467 1.2 itojun case EAFNOSUPPORT:
468 1.4 thorpej printf("%s: IPv6 not supported\n",
469 1.13 itojun if_name(ifp));
470 1.2 itojun break;
471 1.2 itojun default:
472 1.4 thorpej printf("%s: SIOCSIFADDR error %d\n",
473 1.13 itojun if_name(ifp), error);
474 1.2 itojun break;
475 1.2 itojun }
476 1.2 itojun
477 1.2 itojun /* undo changes */
478 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
479 1.13 itojun *ifap = NULL;
480 1.13 itojun #else
481 1.2 itojun TAILQ_REMOVE(&ifp->if_addrlist, (struct ifaddr *)ia, ifa_list);
482 1.13 itojun #endif
483 1.2 itojun if (oia)
484 1.2 itojun oia->ia_next = ia->ia_next;
485 1.2 itojun else
486 1.2 itojun in6_ifaddr = ia->ia_next;
487 1.2 itojun free(ia, M_IFADDR);
488 1.2 itojun return;
489 1.2 itojun }
490 1.2 itojun }
491 1.2 itojun
492 1.2 itojun /* add route to the interface. */
493 1.2 itojun rtrequest(RTM_ADD,
494 1.2 itojun (struct sockaddr *)&ia->ia_addr,
495 1.2 itojun (struct sockaddr *)&ia->ia_addr,
496 1.2 itojun (struct sockaddr *)&ia->ia_prefixmask,
497 1.2 itojun RTF_UP|rtflag,
498 1.2 itojun (struct rtentry **)0);
499 1.2 itojun ia->ia_flags |= IFA_ROUTE;
500 1.2 itojun
501 1.2 itojun if (type == IN6_IFT_P2P || type == IN6_IFT_P2P802) {
502 1.2 itojun /*
503 1.2 itojun * route local address to loopback
504 1.2 itojun */
505 1.2 itojun bzero(&gate, sizeof(gate));
506 1.2 itojun gate.sin6_len = sizeof(struct sockaddr_in6);
507 1.2 itojun gate.sin6_family = AF_INET6;
508 1.2 itojun gate.sin6_addr = in6addr_loopback;
509 1.2 itojun bzero(&mask, sizeof(mask));
510 1.2 itojun mask.sin6_len = sizeof(struct sockaddr_in6);
511 1.2 itojun mask.sin6_family = AF_INET6;
512 1.2 itojun mask.sin6_addr = in6mask64;
513 1.2 itojun rtrequest(RTM_ADD,
514 1.2 itojun (struct sockaddr *)&ia->ia_addr,
515 1.2 itojun (struct sockaddr *)&gate,
516 1.2 itojun (struct sockaddr *)&mask,
517 1.2 itojun RTF_UP|RTF_HOST,
518 1.2 itojun (struct rtentry **)0);
519 1.2 itojun }
520 1.2 itojun
521 1.2 itojun /*
522 1.2 itojun * loopback address
523 1.2 itojun */
524 1.2 itojun ib = (struct in6_ifaddr *)NULL;
525 1.2 itojun if (type == IN6_IFT_LOOP) {
526 1.2 itojun ib = (struct in6_ifaddr *)
527 1.2 itojun malloc(sizeof(*ib), M_IFADDR, M_WAITOK);
528 1.2 itojun bzero((caddr_t)ib, sizeof(*ib));
529 1.2 itojun ib->ia_ifa.ifa_addr = (struct sockaddr *)&ib->ia_addr;
530 1.2 itojun ib->ia_ifa.ifa_dstaddr = (struct sockaddr *)&ib->ia_dstaddr;
531 1.2 itojun ib->ia_ifa.ifa_netmask = (struct sockaddr *)&ib->ia_prefixmask;
532 1.2 itojun ib->ia_ifp = ifp;
533 1.2 itojun
534 1.2 itojun ia->ia_next = ib;
535 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
536 1.13 itojun ia->ia_ifa.ifa_next = (struct ifaddr *)ib;
537 1.13 itojun #else
538 1.2 itojun TAILQ_INSERT_TAIL(&ifp->if_addrlist, (struct ifaddr *)ib,
539 1.2 itojun ifa_list);
540 1.13 itojun #endif
541 1.2 itojun
542 1.2 itojun ib->ia_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
543 1.2 itojun ib->ia_prefixmask.sin6_family = AF_INET6;
544 1.2 itojun ib->ia_prefixmask.sin6_addr = in6mask128;
545 1.2 itojun ib->ia_addr.sin6_len = sizeof(struct sockaddr_in6);
546 1.2 itojun ib->ia_addr.sin6_family = AF_INET6;
547 1.2 itojun ib->ia_addr.sin6_addr = in6addr_loopback;
548 1.2 itojun #ifdef __bsdi__
549 1.2 itojun /*
550 1.2 itojun * It is necessary to set the loopback address to the dstaddr
551 1.2 itojun * field at least for BSDI. Without this setting, the BSDI
552 1.2 itojun * version of ifa_ifwithroute() rejects to add a route
553 1.2 itojun * to the loopback interface.
554 1.2 itojun */
555 1.2 itojun ib->ia_dstaddr.sin6_len = sizeof(struct sockaddr_in6);
556 1.2 itojun ib->ia_dstaddr.sin6_family = AF_INET6;
557 1.2 itojun ib->ia_dstaddr.sin6_addr = in6addr_loopback;
558 1.13 itojun #endif
559 1.2 itojun
560 1.2 itojun ib->ia_ifa.ifa_metric = ifp->if_metric;
561 1.2 itojun
562 1.2 itojun rtrequest(RTM_ADD,
563 1.2 itojun (struct sockaddr *)&ib->ia_addr,
564 1.2 itojun (struct sockaddr *)&ib->ia_addr,
565 1.2 itojun (struct sockaddr *)&ib->ia_prefixmask,
566 1.2 itojun RTF_UP|RTF_HOST,
567 1.2 itojun (struct rtentry **)0);
568 1.2 itojun
569 1.2 itojun ib->ia_flags |= IFA_ROUTE;
570 1.2 itojun }
571 1.2 itojun
572 1.2 itojun /*
573 1.2 itojun * join multicast
574 1.2 itojun */
575 1.2 itojun if (ifp->if_flags & IFF_MULTICAST) {
576 1.2 itojun int error; /* not used */
577 1.2 itojun
578 1.7 itojun #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3)
579 1.2 itojun /* Restore saved multicast addresses(if any). */
580 1.2 itojun in6_restoremkludge(ia, ifp);
581 1.2 itojun #endif
582 1.2 itojun
583 1.2 itojun bzero(&mltmask, sizeof(mltmask));
584 1.2 itojun mltmask.sin6_len = sizeof(struct sockaddr_in6);
585 1.2 itojun mltmask.sin6_family = AF_INET6;
586 1.2 itojun mltmask.sin6_addr = in6mask32;
587 1.2 itojun
588 1.2 itojun /*
589 1.2 itojun * join link-local all-nodes address
590 1.2 itojun */
591 1.2 itojun bzero(&mltaddr, sizeof(mltaddr));
592 1.2 itojun mltaddr.sin6_len = sizeof(struct sockaddr_in6);
593 1.2 itojun mltaddr.sin6_family = AF_INET6;
594 1.2 itojun mltaddr.sin6_addr = in6addr_linklocal_allnodes;
595 1.2 itojun mltaddr.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
596 1.2 itojun rtrequest(RTM_ADD,
597 1.2 itojun (struct sockaddr *)&mltaddr,
598 1.2 itojun (struct sockaddr *)&ia->ia_addr,
599 1.2 itojun (struct sockaddr *)&mltmask,
600 1.2 itojun RTF_UP|RTF_CLONING, /* xxx */
601 1.2 itojun (struct rtentry **)0);
602 1.2 itojun (void)in6_addmulti(&mltaddr.sin6_addr, ifp, &error);
603 1.2 itojun
604 1.2 itojun if (type == IN6_IFT_LOOP) {
605 1.2 itojun /*
606 1.2 itojun * join node-local all-nodes address
607 1.2 itojun */
608 1.2 itojun mltaddr.sin6_addr = in6addr_nodelocal_allnodes;
609 1.2 itojun rtrequest(RTM_ADD,
610 1.2 itojun (struct sockaddr *)&mltaddr,
611 1.2 itojun (struct sockaddr *)&ib->ia_addr,
612 1.2 itojun (struct sockaddr *)&mltmask,
613 1.2 itojun RTF_UP,
614 1.2 itojun (struct rtentry **)0);
615 1.2 itojun (void)in6_addmulti(&mltaddr.sin6_addr, ifp, &error);
616 1.2 itojun } else {
617 1.2 itojun /*
618 1.2 itojun * join solicited multicast address
619 1.2 itojun */
620 1.2 itojun bzero(&llsol, sizeof(llsol));
621 1.2 itojun llsol.s6_addr16[0] = htons(0xff02);
622 1.2 itojun llsol.s6_addr16[1] = htons(ifp->if_index);
623 1.2 itojun llsol.s6_addr32[1] = 0;
624 1.2 itojun llsol.s6_addr32[2] = htonl(1);
625 1.2 itojun llsol.s6_addr32[3] = ia->ia_addr.sin6_addr.s6_addr32[3];
626 1.2 itojun llsol.s6_addr8[12] = 0xff;
627 1.2 itojun (void)in6_addmulti(&llsol, ifp, &error);
628 1.2 itojun }
629 1.2 itojun }
630 1.2 itojun
631 1.2 itojun /* update dynamically. */
632 1.2 itojun if (in6_maxmtu < ifp->if_mtu)
633 1.2 itojun in6_maxmtu = ifp->if_mtu;
634 1.2 itojun
635 1.13 itojun if (in6_ifstat[ifp->if_index] == NULL) {
636 1.13 itojun in6_ifstat[ifp->if_index] = (struct in6_ifstat *)
637 1.13 itojun malloc(sizeof(struct in6_ifstat), M_IFADDR, M_WAITOK);
638 1.13 itojun bzero(in6_ifstat[ifp->if_index], sizeof(struct in6_ifstat));
639 1.13 itojun }
640 1.13 itojun if (icmp6_ifstat[ifp->if_index] == NULL) {
641 1.13 itojun icmp6_ifstat[ifp->if_index] = (struct icmp6_ifstat *)
642 1.13 itojun malloc(sizeof(struct icmp6_ifstat), M_IFADDR, M_WAITOK);
643 1.13 itojun bzero(icmp6_ifstat[ifp->if_index], sizeof(struct icmp6_ifstat));
644 1.13 itojun }
645 1.13 itojun
646 1.2 itojun /* initialize NDP variables */
647 1.2 itojun nd6_ifattach(ifp);
648 1.2 itojun
649 1.2 itojun /* mark the address TENTATIVE, if needed. */
650 1.2 itojun switch (ifp->if_type) {
651 1.8 is case IFT_ARCNET:
652 1.2 itojun case IFT_ETHER:
653 1.2 itojun case IFT_FDDI:
654 1.2 itojun #if 0
655 1.2 itojun case IFT_ATM:
656 1.2 itojun case IFT_SLIP:
657 1.2 itojun case IFT_PPP:
658 1.2 itojun #endif
659 1.2 itojun ia->ia6_flags |= IN6_IFF_TENTATIVE;
660 1.2 itojun /* nd6_dad_start() will be called in in6_if_up */
661 1.2 itojun break;
662 1.13 itojun case IFT_GIF: /*XXX*/
663 1.2 itojun case IFT_LOOP:
664 1.2 itojun case IFT_FAITH:
665 1.2 itojun default:
666 1.2 itojun break;
667 1.2 itojun }
668 1.2 itojun
669 1.2 itojun return;
670 1.2 itojun }
671 1.2 itojun
672 1.2 itojun void
673 1.2 itojun in6_ifdetach(ifp)
674 1.2 itojun struct ifnet *ifp;
675 1.2 itojun {
676 1.2 itojun struct in6_ifaddr *ia, *oia;
677 1.2 itojun struct ifaddr *ifa;
678 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
679 1.13 itojun struct ifaddr *ifaprev = NULL;
680 1.13 itojun #endif
681 1.2 itojun struct rtentry *rt;
682 1.2 itojun short rtflags;
683 1.2 itojun
684 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
685 1.13 itojun for (ifa = ifp->if_addrlist; ifa; ifa = ifa->ifa_next)
686 1.13 itojun #else
687 1.13 itojun for (ifa = ifp->if_addrlist.tqh_first; ifa; ifa = ifa->ifa_list.tqe_next)
688 1.13 itojun #endif
689 1.13 itojun {
690 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6
691 1.2 itojun || !IN6_IS_ADDR_LINKLOCAL(&satosin6(&ifa->ifa_addr)->sin6_addr)) {
692 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
693 1.13 itojun ifaprev = ifa;
694 1.13 itojun #endif
695 1.2 itojun continue;
696 1.2 itojun }
697 1.2 itojun
698 1.2 itojun ia = (struct in6_ifaddr *)ifa;
699 1.2 itojun
700 1.2 itojun /* remove from the routing table */
701 1.2 itojun if ((ia->ia_flags & IFA_ROUTE)
702 1.13 itojun && (rt = rtalloc1((struct sockaddr *)&ia->ia_addr, 0
703 1.13 itojun #ifdef __FreeBSD__
704 1.13 itojun , 0UL
705 1.13 itojun #endif
706 1.13 itojun ))) {
707 1.2 itojun rtflags = rt->rt_flags;
708 1.2 itojun rtfree(rt);
709 1.2 itojun rtrequest(RTM_DELETE,
710 1.2 itojun (struct sockaddr *)&ia->ia_addr,
711 1.2 itojun (struct sockaddr *)&ia->ia_addr,
712 1.2 itojun (struct sockaddr *)&ia->ia_prefixmask,
713 1.2 itojun rtflags, (struct rtentry **)0);
714 1.2 itojun }
715 1.2 itojun
716 1.2 itojun /* remove from the linked list */
717 1.13 itojun #if defined(__bsdi__) || (defined(__FreeBSD__) && __FreeBSD__ < 3)
718 1.13 itojun if (ifaprev)
719 1.13 itojun ifaprev->ifa_next = ifa->ifa_next;
720 1.13 itojun else
721 1.13 itojun ifp->if_addrlist = ifa->ifa_next;
722 1.13 itojun #else
723 1.2 itojun TAILQ_REMOVE(&ifp->if_addrlist, (struct ifaddr *)ia, ifa_list);
724 1.13 itojun #endif
725 1.2 itojun
726 1.2 itojun /* also remove from the IPv6 address chain(itojun&jinmei) */
727 1.2 itojun oia = ia;
728 1.2 itojun if (oia == (ia = in6_ifaddr))
729 1.2 itojun in6_ifaddr = ia->ia_next;
730 1.2 itojun else {
731 1.2 itojun while (ia->ia_next && (ia->ia_next != oia))
732 1.2 itojun ia = ia->ia_next;
733 1.2 itojun if (ia->ia_next)
734 1.2 itojun ia->ia_next = oia->ia_next;
735 1.4 thorpej #ifdef DEBUG
736 1.2 itojun else
737 1.4 thorpej printf("%s: didn't unlink in6ifaddr from "
738 1.13 itojun "list\n", if_name(ifp));
739 1.4 thorpej #endif
740 1.2 itojun }
741 1.2 itojun
742 1.2 itojun free(ia, M_IFADDR);
743 1.2 itojun }
744 1.2 itojun }
745