in6.c revision 1.189 1 1.189 ozaki /* $NetBSD: in6.c,v 1.189 2015/08/07 08:11:33 ozaki-r Exp $ */
2 1.46 itojun /* $KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $ */
3 1.3 thorpej
4 1.2 itojun /*
5 1.2 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.2 itojun * All rights reserved.
7 1.18 itojun *
8 1.2 itojun * Redistribution and use in source and binary forms, with or without
9 1.2 itojun * modification, are permitted provided that the following conditions
10 1.2 itojun * are met:
11 1.2 itojun * 1. Redistributions of source code must retain the above copyright
12 1.2 itojun * notice, this list of conditions and the following disclaimer.
13 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 itojun * notice, this list of conditions and the following disclaimer in the
15 1.2 itojun * documentation and/or other materials provided with the distribution.
16 1.2 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.2 itojun * may be used to endorse or promote products derived from this software
18 1.2 itojun * without specific prior written permission.
19 1.18 itojun *
20 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.2 itojun * SUCH DAMAGE.
31 1.2 itojun */
32 1.2 itojun
33 1.2 itojun /*
34 1.2 itojun * Copyright (c) 1982, 1986, 1991, 1993
35 1.2 itojun * The Regents of the University of California. All rights reserved.
36 1.2 itojun *
37 1.2 itojun * Redistribution and use in source and binary forms, with or without
38 1.2 itojun * modification, are permitted provided that the following conditions
39 1.2 itojun * are met:
40 1.2 itojun * 1. Redistributions of source code must retain the above copyright
41 1.2 itojun * notice, this list of conditions and the following disclaimer.
42 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
43 1.2 itojun * notice, this list of conditions and the following disclaimer in the
44 1.2 itojun * documentation and/or other materials provided with the distribution.
45 1.78 agc * 3. Neither the name of the University nor the names of its contributors
46 1.2 itojun * may be used to endorse or promote products derived from this software
47 1.2 itojun * without specific prior written permission.
48 1.2 itojun *
49 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 1.2 itojun * SUCH DAMAGE.
60 1.2 itojun *
61 1.2 itojun * @(#)in.c 8.2 (Berkeley) 11/15/93
62 1.2 itojun */
63 1.49 lukem
64 1.49 lukem #include <sys/cdefs.h>
65 1.189 ozaki __KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.189 2015/08/07 08:11:33 ozaki-r Exp $");
66 1.2 itojun
67 1.2 itojun #include "opt_inet.h"
68 1.144 christos #include "opt_compat_netbsd.h"
69 1.2 itojun
70 1.2 itojun #include <sys/param.h>
71 1.2 itojun #include <sys/ioctl.h>
72 1.2 itojun #include <sys/errno.h>
73 1.2 itojun #include <sys/malloc.h>
74 1.2 itojun #include <sys/socket.h>
75 1.2 itojun #include <sys/socketvar.h>
76 1.2 itojun #include <sys/sockio.h>
77 1.2 itojun #include <sys/systm.h>
78 1.2 itojun #include <sys/proc.h>
79 1.2 itojun #include <sys/time.h>
80 1.2 itojun #include <sys/kernel.h>
81 1.8 itojun #include <sys/syslog.h>
82 1.102 elad #include <sys/kauth.h>
83 1.159 tls #include <sys/cprng.h>
84 1.2 itojun
85 1.2 itojun #include <net/if.h>
86 1.2 itojun #include <net/if_types.h>
87 1.2 itojun #include <net/route.h>
88 1.2 itojun #include <net/if_dl.h>
89 1.166 rmind #include <net/pfil.h>
90 1.2 itojun
91 1.2 itojun #include <netinet/in.h>
92 1.2 itojun #include <netinet/in_var.h>
93 1.2 itojun #include <net/if_ether.h>
94 1.2 itojun
95 1.16 itojun #include <netinet/ip6.h>
96 1.8 itojun #include <netinet6/ip6_var.h>
97 1.46 itojun #include <netinet6/nd6.h>
98 1.2 itojun #include <netinet6/mld6_var.h>
99 1.2 itojun #include <netinet6/ip6_mroute.h>
100 1.2 itojun #include <netinet6/in6_ifattach.h>
101 1.95 rpaulo #include <netinet6/scope6_var.h>
102 1.2 itojun
103 1.8 itojun #include <net/net_osdep.h>
104 1.72 thorpej
105 1.144 christos #ifdef COMPAT_50
106 1.144 christos #include <compat/netinet6/in6_var.h>
107 1.144 christos #endif
108 1.90 yamt
109 1.72 thorpej MALLOC_DEFINE(M_IP6OPT, "ip6_options", "IPv6 options");
110 1.8 itojun
111 1.20 itojun /* enable backward compatibility code for obsoleted ioctls */
112 1.20 itojun #define COMPAT_IN6IFIOCTL
113 1.20 itojun
114 1.121 dyoung #ifdef IN6_DEBUG
115 1.121 dyoung #define IN6_DPRINTF(__fmt, ...) printf(__fmt, __VA_ARGS__)
116 1.121 dyoung #else
117 1.121 dyoung #define IN6_DPRINTF(__fmt, ...) do { } while (/*CONSTCOND*/0)
118 1.121 dyoung #endif /* IN6_DEBUG */
119 1.121 dyoung
120 1.2 itojun /*
121 1.75 wiz * Definitions of some constant IP6 addresses.
122 1.2 itojun */
123 1.2 itojun const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
124 1.2 itojun const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
125 1.2 itojun const struct in6_addr in6addr_nodelocal_allnodes =
126 1.2 itojun IN6ADDR_NODELOCAL_ALLNODES_INIT;
127 1.2 itojun const struct in6_addr in6addr_linklocal_allnodes =
128 1.2 itojun IN6ADDR_LINKLOCAL_ALLNODES_INIT;
129 1.2 itojun const struct in6_addr in6addr_linklocal_allrouters =
130 1.2 itojun IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
131 1.2 itojun
132 1.2 itojun const struct in6_addr in6mask0 = IN6MASK0;
133 1.2 itojun const struct in6_addr in6mask32 = IN6MASK32;
134 1.2 itojun const struct in6_addr in6mask64 = IN6MASK64;
135 1.2 itojun const struct in6_addr in6mask96 = IN6MASK96;
136 1.2 itojun const struct in6_addr in6mask128 = IN6MASK128;
137 1.43 itojun
138 1.43 itojun const struct sockaddr_in6 sa6_any = {sizeof(sa6_any), AF_INET6,
139 1.43 itojun 0, 0, IN6ADDR_ANY_INIT, 0};
140 1.2 itojun
141 1.125 christos static int in6_lifaddr_ioctl(struct socket *, u_long, void *,
142 1.172 rtr struct ifnet *);
143 1.117 dyoung static int in6_ifinit(struct ifnet *, struct in6_ifaddr *,
144 1.146 dyoung const struct sockaddr_in6 *, int);
145 1.117 dyoung static void in6_unlink_ifa(struct in6_ifaddr *, struct ifnet *);
146 1.2 itojun
147 1.2 itojun /*
148 1.65 itojun * Add ownaddr as loopback rtentry. We previously add the route only if
149 1.65 itojun * necessary (ex. on a p2p link). However, since we now manage addresses
150 1.65 itojun * separately from prefixes, we should always add the route. We can't
151 1.65 itojun * rely on the cloning mechanism from the corresponding interface route
152 1.65 itojun * any more.
153 1.2 itojun */
154 1.103 liamjfoy void
155 1.184 roy in6_ifaddlocal(struct ifaddr *ifa)
156 1.2 itojun {
157 1.2 itojun
158 1.185 roy if (IN6_ARE_ADDR_EQUAL(IFA_IN6(ifa), &in6addr_any) ||
159 1.185 roy (ifa->ifa_ifp->if_flags & IFF_POINTOPOINT &&
160 1.185 roy IN6_ARE_ADDR_EQUAL(IFA_IN6(ifa), IFA_DSTIN6(ifa))))
161 1.185 roy {
162 1.185 roy rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
163 1.185 roy return;
164 1.185 roy }
165 1.185 roy
166 1.184 roy rt_ifa_addlocal(ifa);
167 1.2 itojun }
168 1.2 itojun
169 1.2 itojun /*
170 1.184 roy * Remove loopback rtentry of ownaddr generated by in6_ifaddlocal(),
171 1.2 itojun * if it exists.
172 1.2 itojun */
173 1.103 liamjfoy void
174 1.184 roy in6_ifremlocal(struct ifaddr *ifa)
175 1.2 itojun {
176 1.184 roy struct in6_ifaddr *ia;
177 1.184 roy struct ifaddr *alt_ifa = NULL;
178 1.65 itojun int ia_count = 0;
179 1.65 itojun
180 1.65 itojun /*
181 1.65 itojun * Some of BSD variants do not remove cloned routes
182 1.65 itojun * from an interface direct route, when removing the direct route
183 1.65 itojun * (see comments in net/net_osdep.h). Even for variants that do remove
184 1.65 itojun * cloned routes, they could fail to remove the cloned routes when
185 1.65 itojun * we handle multple addresses that share a common prefix.
186 1.65 itojun * So, we should remove the route corresponding to the deleted address.
187 1.65 itojun */
188 1.2 itojun
189 1.65 itojun /*
190 1.121 dyoung * Delete the entry only if exactly one ifaddr matches the
191 1.121 dyoung * address, ifa->ifa_addr.
192 1.121 dyoung *
193 1.121 dyoung * If more than one ifaddr matches, replace the ifaddr in
194 1.121 dyoung * the routing table, rt_ifa, with a different ifaddr than
195 1.121 dyoung * the one we are purging, ifa. It is important to do
196 1.121 dyoung * this, or else the routing table can accumulate dangling
197 1.121 dyoung * pointers rt->rt_ifa->ifa_ifp to destroyed interfaces,
198 1.121 dyoung * which will lead to crashes, later. (More than one ifaddr
199 1.121 dyoung * can match if we assign the same address to multiple---probably
200 1.121 dyoung * p2p---interfaces.)
201 1.121 dyoung *
202 1.121 dyoung * XXX An old comment at this place said, "we should avoid
203 1.121 dyoung * XXX such a configuration [i.e., interfaces with the same
204 1.121 dyoung * XXX addressed assigned --ed.] in IPv6...". I do not
205 1.121 dyoung * XXX agree, especially now that I have fixed the dangling
206 1.121 dyoung * XXX ifp-pointers bug.
207 1.65 itojun */
208 1.65 itojun for (ia = in6_ifaddr; ia; ia = ia->ia_next) {
209 1.121 dyoung if (!IN6_ARE_ADDR_EQUAL(IFA_IN6(ifa), &ia->ia_addr.sin6_addr))
210 1.121 dyoung continue;
211 1.121 dyoung if (ia->ia_ifp != ifa->ifa_ifp)
212 1.184 roy alt_ifa = &ia->ia_ifa;
213 1.184 roy if (++ia_count > 1 && alt_ifa != NULL)
214 1.121 dyoung break;
215 1.65 itojun }
216 1.65 itojun
217 1.121 dyoung if (ia_count == 0)
218 1.121 dyoung return;
219 1.121 dyoung
220 1.184 roy rt_ifa_remlocal(ifa, ia_count == 1 ? NULL : alt_ifa);
221 1.2 itojun }
222 1.2 itojun
223 1.2 itojun int
224 1.127 christos in6_mask2len(struct in6_addr *mask, u_char *lim0)
225 1.2 itojun {
226 1.65 itojun int x = 0, y;
227 1.65 itojun u_char *lim = lim0, *p;
228 1.2 itojun
229 1.65 itojun /* ignore the scope_id part */
230 1.65 itojun if (lim0 == NULL || lim0 - (u_char *)mask > sizeof(*mask))
231 1.65 itojun lim = (u_char *)mask + sizeof(*mask);
232 1.65 itojun for (p = (u_char *)mask; p < lim; x++, p++) {
233 1.65 itojun if (*p != 0xff)
234 1.2 itojun break;
235 1.2 itojun }
236 1.2 itojun y = 0;
237 1.65 itojun if (p < lim) {
238 1.120 dyoung for (y = 0; y < NBBY; y++) {
239 1.65 itojun if ((*p & (0x80 >> y)) == 0)
240 1.2 itojun break;
241 1.2 itojun }
242 1.2 itojun }
243 1.65 itojun
244 1.65 itojun /*
245 1.65 itojun * when the limit pointer is given, do a stricter check on the
246 1.65 itojun * remaining bits.
247 1.65 itojun */
248 1.65 itojun if (p < lim) {
249 1.65 itojun if (y != 0 && (*p & (0x00ff >> y)) != 0)
250 1.116 dyoung return -1;
251 1.65 itojun for (p = p + 1; p < lim; p++)
252 1.65 itojun if (*p != 0)
253 1.116 dyoung return -1;
254 1.65 itojun }
255 1.66 itojun
256 1.121 dyoung return x * NBBY + y;
257 1.2 itojun }
258 1.2 itojun
259 1.2 itojun #define ifa2ia6(ifa) ((struct in6_ifaddr *)(ifa))
260 1.19 itojun #define ia62ifa(ia6) (&((ia6)->ia_ifa))
261 1.2 itojun
262 1.121 dyoung static int
263 1.172 rtr in6_control1(struct socket *so, u_long cmd, void *data, struct ifnet *ifp)
264 1.2 itojun {
265 1.2 itojun struct in6_ifreq *ifr = (struct in6_ifreq *)data;
266 1.65 itojun struct in6_ifaddr *ia = NULL;
267 1.2 itojun struct in6_aliasreq *ifra = (struct in6_aliasreq *)data;
268 1.60 itojun struct sockaddr_in6 *sa6;
269 1.121 dyoung int error;
270 1.153 dyoung
271 1.2 itojun switch (cmd) {
272 1.104 christos /*
273 1.105 christos * XXX: Fix me, once we fix SIOCSIFADDR, SIOCIFDSTADDR, etc.
274 1.104 christos */
275 1.104 christos case SIOCSIFADDR:
276 1.105 christos case SIOCSIFDSTADDR:
277 1.167 christos case SIOCSIFBRDADDR:
278 1.167 christos case SIOCSIFNETMASK:
279 1.104 christos return EOPNOTSUPP;
280 1.2 itojun case SIOCGETSGCNT_IN6:
281 1.2 itojun case SIOCGETMIFCNT_IN6:
282 1.116 dyoung return mrt6_ioctl(cmd, data);
283 1.153 dyoung case SIOCGIFADDRPREF:
284 1.153 dyoung case SIOCSIFADDRPREF:
285 1.153 dyoung if (ifp == NULL)
286 1.153 dyoung return EINVAL;
287 1.172 rtr return ifaddrpref_ioctl(so, cmd, data, ifp);
288 1.2 itojun }
289 1.2 itojun
290 1.20 itojun if (ifp == NULL)
291 1.116 dyoung return EOPNOTSUPP;
292 1.2 itojun
293 1.2 itojun switch (cmd) {
294 1.2 itojun case SIOCSNDFLUSH_IN6:
295 1.2 itojun case SIOCSPFXFLUSH_IN6:
296 1.2 itojun case SIOCSRTRFLUSH_IN6:
297 1.8 itojun case SIOCSDEFIFACE_IN6:
298 1.31 itojun case SIOCSIFINFO_FLAGS:
299 1.98 rpaulo case SIOCSIFINFO_IN6:
300 1.151 elad /* Privileged. */
301 1.62 itojun /* FALLTHROUGH */
302 1.59 itojun case OSIOCGIFINFO_IN6:
303 1.2 itojun case SIOCGIFINFO_IN6:
304 1.2 itojun case SIOCGDRLST_IN6:
305 1.2 itojun case SIOCGPRLST_IN6:
306 1.2 itojun case SIOCGNBRINFO_IN6:
307 1.8 itojun case SIOCGDEFIFACE_IN6:
308 1.116 dyoung return nd6_ioctl(cmd, data, ifp);
309 1.2 itojun }
310 1.2 itojun
311 1.2 itojun switch (cmd) {
312 1.2 itojun case SIOCSIFPREFIX_IN6:
313 1.2 itojun case SIOCDIFPREFIX_IN6:
314 1.2 itojun case SIOCAIFPREFIX_IN6:
315 1.2 itojun case SIOCCIFPREFIX_IN6:
316 1.2 itojun case SIOCSGIFPREFIX_IN6:
317 1.2 itojun case SIOCGIFPREFIX_IN6:
318 1.60 itojun log(LOG_NOTICE,
319 1.60 itojun "prefix ioctls are now invalidated. "
320 1.60 itojun "please use ifconfig.\n");
321 1.116 dyoung return EOPNOTSUPP;
322 1.2 itojun }
323 1.2 itojun
324 1.2 itojun switch (cmd) {
325 1.2 itojun case SIOCALIFADDR:
326 1.2 itojun case SIOCDLIFADDR:
327 1.151 elad /* Privileged. */
328 1.62 itojun /* FALLTHROUGH */
329 1.2 itojun case SIOCGLIFADDR:
330 1.172 rtr return in6_lifaddr_ioctl(so, cmd, data, ifp);
331 1.2 itojun }
332 1.2 itojun
333 1.2 itojun /*
334 1.2 itojun * Find address for this interface, if it exists.
335 1.60 itojun *
336 1.60 itojun * In netinet code, we have checked ifra_addr in SIOCSIF*ADDR operation
337 1.60 itojun * only, and used the first interface address as the target of other
338 1.60 itojun * operations (without checking ifra_addr). This was because netinet
339 1.60 itojun * code/API assumed at most 1 interface address per interface.
340 1.60 itojun * Since IPv6 allows a node to assign multiple addresses
341 1.60 itojun * on a single interface, we almost always look and check the
342 1.60 itojun * presence of ifra_addr, and reject invalid ones here.
343 1.60 itojun * It also decreases duplicated code among SIOC*_IN6 operations.
344 1.2 itojun */
345 1.60 itojun switch (cmd) {
346 1.60 itojun case SIOCAIFADDR_IN6:
347 1.145 christos #ifdef OSIOCAIFADDR_IN6
348 1.145 christos case OSIOCAIFADDR_IN6:
349 1.145 christos #endif
350 1.145 christos #ifdef OSIOCSIFPHYADDR_IN6
351 1.145 christos case OSIOCSIFPHYADDR_IN6:
352 1.145 christos #endif
353 1.60 itojun case SIOCSIFPHYADDR_IN6:
354 1.60 itojun sa6 = &ifra->ifra_addr;
355 1.60 itojun break;
356 1.60 itojun case SIOCSIFADDR_IN6:
357 1.60 itojun case SIOCGIFADDR_IN6:
358 1.60 itojun case SIOCSIFDSTADDR_IN6:
359 1.60 itojun case SIOCSIFNETMASK_IN6:
360 1.60 itojun case SIOCGIFDSTADDR_IN6:
361 1.60 itojun case SIOCGIFNETMASK_IN6:
362 1.60 itojun case SIOCDIFADDR_IN6:
363 1.60 itojun case SIOCGIFPSRCADDR_IN6:
364 1.60 itojun case SIOCGIFPDSTADDR_IN6:
365 1.60 itojun case SIOCGIFAFLAG_IN6:
366 1.60 itojun case SIOCSNDFLUSH_IN6:
367 1.60 itojun case SIOCSPFXFLUSH_IN6:
368 1.60 itojun case SIOCSRTRFLUSH_IN6:
369 1.60 itojun case SIOCGIFALIFETIME_IN6:
370 1.144 christos #ifdef OSIOCGIFALIFETIME_IN6
371 1.144 christos case OSIOCGIFALIFETIME_IN6:
372 1.144 christos #endif
373 1.60 itojun case SIOCGIFSTAT_IN6:
374 1.60 itojun case SIOCGIFSTAT_ICMP6:
375 1.60 itojun sa6 = &ifr->ifr_addr;
376 1.60 itojun break;
377 1.60 itojun default:
378 1.60 itojun sa6 = NULL;
379 1.60 itojun break;
380 1.60 itojun }
381 1.60 itojun if (sa6 && sa6->sin6_family == AF_INET6) {
382 1.95 rpaulo if (sa6->sin6_scope_id != 0)
383 1.95 rpaulo error = sa6_embedscope(sa6, 0);
384 1.95 rpaulo else
385 1.95 rpaulo error = in6_setscope(&sa6->sin6_addr, ifp, NULL);
386 1.95 rpaulo if (error != 0)
387 1.116 dyoung return error;
388 1.60 itojun ia = in6ifa_ifpwithaddr(ifp, &sa6->sin6_addr);
389 1.38 itojun } else
390 1.38 itojun ia = NULL;
391 1.2 itojun
392 1.2 itojun switch (cmd) {
393 1.60 itojun case SIOCSIFADDR_IN6:
394 1.60 itojun case SIOCSIFDSTADDR_IN6:
395 1.60 itojun case SIOCSIFNETMASK_IN6:
396 1.60 itojun /*
397 1.60 itojun * Since IPv6 allows a node to assign multiple addresses
398 1.60 itojun * on a single interface, SIOCSIFxxx ioctls are deprecated.
399 1.60 itojun */
400 1.116 dyoung return EINVAL;
401 1.2 itojun
402 1.2 itojun case SIOCDIFADDR_IN6:
403 1.20 itojun /*
404 1.41 itojun * for IPv4, we look for existing in_ifaddr here to allow
405 1.52 itojun * "ifconfig if0 delete" to remove the first IPv4 address on
406 1.52 itojun * the interface. For IPv6, as the spec allows multiple
407 1.52 itojun * interface address from the day one, we consider "remove the
408 1.52 itojun * first one" semantics to be not preferable.
409 1.20 itojun */
410 1.20 itojun if (ia == NULL)
411 1.116 dyoung return EADDRNOTAVAIL;
412 1.2 itojun /* FALLTHROUGH */
413 1.145 christos #ifdef OSIOCAIFADDR_IN6
414 1.145 christos case OSIOCAIFADDR_IN6:
415 1.145 christos #endif
416 1.2 itojun case SIOCAIFADDR_IN6:
417 1.63 itojun /*
418 1.63 itojun * We always require users to specify a valid IPv6 address for
419 1.63 itojun * the corresponding operation.
420 1.63 itojun */
421 1.63 itojun if (ifra->ifra_addr.sin6_family != AF_INET6 ||
422 1.63 itojun ifra->ifra_addr.sin6_len != sizeof(struct sockaddr_in6))
423 1.116 dyoung return EAFNOSUPPORT;
424 1.151 elad /* Privileged. */
425 1.24 itojun
426 1.2 itojun break;
427 1.2 itojun
428 1.2 itojun case SIOCGIFADDR_IN6:
429 1.2 itojun /* This interface is basically deprecated. use SIOCGIFCONF. */
430 1.62 itojun /* FALLTHROUGH */
431 1.2 itojun case SIOCGIFAFLAG_IN6:
432 1.2 itojun case SIOCGIFNETMASK_IN6:
433 1.2 itojun case SIOCGIFDSTADDR_IN6:
434 1.8 itojun case SIOCGIFALIFETIME_IN6:
435 1.144 christos #ifdef OSIOCGIFALIFETIME_IN6
436 1.144 christos case OSIOCGIFALIFETIME_IN6:
437 1.144 christos #endif
438 1.2 itojun /* must think again about its semantics */
439 1.20 itojun if (ia == NULL)
440 1.116 dyoung return EADDRNOTAVAIL;
441 1.2 itojun break;
442 1.2 itojun }
443 1.2 itojun
444 1.2 itojun switch (cmd) {
445 1.2 itojun
446 1.2 itojun case SIOCGIFADDR_IN6:
447 1.2 itojun ifr->ifr_addr = ia->ia_addr;
448 1.95 rpaulo if ((error = sa6_recoverscope(&ifr->ifr_addr)) != 0)
449 1.116 dyoung return error;
450 1.2 itojun break;
451 1.2 itojun
452 1.2 itojun case SIOCGIFDSTADDR_IN6:
453 1.2 itojun if ((ifp->if_flags & IFF_POINTOPOINT) == 0)
454 1.116 dyoung return EINVAL;
455 1.41 itojun /*
456 1.41 itojun * XXX: should we check if ifa_dstaddr is NULL and return
457 1.41 itojun * an error?
458 1.41 itojun */
459 1.2 itojun ifr->ifr_dstaddr = ia->ia_dstaddr;
460 1.95 rpaulo if ((error = sa6_recoverscope(&ifr->ifr_dstaddr)) != 0)
461 1.116 dyoung return error;
462 1.2 itojun break;
463 1.2 itojun
464 1.2 itojun case SIOCGIFNETMASK_IN6:
465 1.2 itojun ifr->ifr_addr = ia->ia_prefixmask;
466 1.2 itojun break;
467 1.2 itojun
468 1.2 itojun case SIOCGIFAFLAG_IN6:
469 1.2 itojun ifr->ifr_ifru.ifru_flags6 = ia->ia6_flags;
470 1.2 itojun break;
471 1.18 itojun
472 1.8 itojun case SIOCGIFSTAT_IN6:
473 1.8 itojun if (ifp == NULL)
474 1.8 itojun return EINVAL;
475 1.148 cegger memset(&ifr->ifr_ifru.ifru_stat, 0,
476 1.58 itojun sizeof(ifr->ifr_ifru.ifru_stat));
477 1.58 itojun ifr->ifr_ifru.ifru_stat =
478 1.58 itojun *((struct in6_ifextra *)ifp->if_afdata[AF_INET6])->in6_ifstat;
479 1.8 itojun break;
480 1.8 itojun
481 1.8 itojun case SIOCGIFSTAT_ICMP6:
482 1.8 itojun if (ifp == NULL)
483 1.8 itojun return EINVAL;
484 1.148 cegger memset(&ifr->ifr_ifru.ifru_icmp6stat, 0,
485 1.58 itojun sizeof(ifr->ifr_ifru.ifru_icmp6stat));
486 1.58 itojun ifr->ifr_ifru.ifru_icmp6stat =
487 1.58 itojun *((struct in6_ifextra *)ifp->if_afdata[AF_INET6])->icmp6_ifstat;
488 1.8 itojun break;
489 1.8 itojun
490 1.144 christos #ifdef OSIOCGIFALIFETIME_IN6
491 1.144 christos case OSIOCGIFALIFETIME_IN6:
492 1.144 christos #endif
493 1.2 itojun case SIOCGIFALIFETIME_IN6:
494 1.2 itojun ifr->ifr_ifru.ifru_lifetime = ia->ia6_lifetime;
495 1.65 itojun if (ia->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
496 1.65 itojun time_t maxexpire;
497 1.65 itojun struct in6_addrlifetime *retlt =
498 1.65 itojun &ifr->ifr_ifru.ifru_lifetime;
499 1.65 itojun
500 1.65 itojun /*
501 1.65 itojun * XXX: adjust expiration time assuming time_t is
502 1.65 itojun * signed.
503 1.65 itojun */
504 1.108 kardel maxexpire = ((time_t)~0) &
505 1.120 dyoung ~((time_t)1 << ((sizeof(maxexpire) * NBBY) - 1));
506 1.65 itojun if (ia->ia6_lifetime.ia6t_vltime <
507 1.65 itojun maxexpire - ia->ia6_updatetime) {
508 1.65 itojun retlt->ia6t_expire = ia->ia6_updatetime +
509 1.65 itojun ia->ia6_lifetime.ia6t_vltime;
510 1.189 ozaki retlt->ia6t_expire = retlt->ia6t_expire ?
511 1.189 ozaki time_mono_to_wall(retlt->ia6t_expire) :
512 1.189 ozaki 0;
513 1.65 itojun } else
514 1.65 itojun retlt->ia6t_expire = maxexpire;
515 1.65 itojun }
516 1.65 itojun if (ia->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
517 1.65 itojun time_t maxexpire;
518 1.65 itojun struct in6_addrlifetime *retlt =
519 1.65 itojun &ifr->ifr_ifru.ifru_lifetime;
520 1.65 itojun
521 1.65 itojun /*
522 1.65 itojun * XXX: adjust expiration time assuming time_t is
523 1.65 itojun * signed.
524 1.65 itojun */
525 1.108 kardel maxexpire = ((time_t)~0) &
526 1.120 dyoung ~((time_t)1 << ((sizeof(maxexpire) * NBBY) - 1));
527 1.65 itojun if (ia->ia6_lifetime.ia6t_pltime <
528 1.65 itojun maxexpire - ia->ia6_updatetime) {
529 1.65 itojun retlt->ia6t_preferred = ia->ia6_updatetime +
530 1.65 itojun ia->ia6_lifetime.ia6t_pltime;
531 1.189 ozaki retlt->ia6t_preferred = retlt->ia6t_preferred ?
532 1.189 ozaki time_mono_to_wall(retlt->ia6t_preferred) :
533 1.189 ozaki 0;
534 1.65 itojun } else
535 1.65 itojun retlt->ia6t_preferred = maxexpire;
536 1.65 itojun }
537 1.144 christos #ifdef OSIOCFIFALIFETIME_IN6
538 1.144 christos if (cmd == OSIOCFIFALIFETIME_IN6)
539 1.144 christos in6_addrlifetime_to_in6_addrlifetime50(
540 1.144 christos &ifr->ifru.ifru_lifetime);
541 1.144 christos #endif
542 1.2 itojun break;
543 1.2 itojun
544 1.145 christos #ifdef OSIOCAIFADDR_IN6
545 1.145 christos case OSIOCAIFADDR_IN6:
546 1.145 christos in6_aliasreq50_to_in6_aliasreq(ifra);
547 1.145 christos /*FALLTHROUGH*/
548 1.145 christos #endif
549 1.2 itojun case SIOCAIFADDR_IN6:
550 1.65 itojun {
551 1.95 rpaulo int i;
552 1.175 matt struct nd_prefixctl prc0;
553 1.98 rpaulo struct nd_prefix *pr;
554 1.189 ozaki struct in6_addrlifetime *lt;
555 1.65 itojun
556 1.70 itojun /* reject read-only flags */
557 1.70 itojun if ((ifra->ifra_flags & IN6_IFF_DUPLICATED) != 0 ||
558 1.70 itojun (ifra->ifra_flags & IN6_IFF_DETACHED) != 0 ||
559 1.177 roy (ifra->ifra_flags & IN6_IFF_TENTATIVE) != 0 ||
560 1.70 itojun (ifra->ifra_flags & IN6_IFF_NODAD) != 0 ||
561 1.70 itojun (ifra->ifra_flags & IN6_IFF_AUTOCONF) != 0) {
562 1.116 dyoung return EINVAL;
563 1.70 itojun }
564 1.65 itojun /*
565 1.189 ozaki * ia6t_expire and ia6t_preferred won't be used for now,
566 1.189 ozaki * so just in case.
567 1.189 ozaki */
568 1.189 ozaki lt = &ifra->ifra_lifetime;
569 1.189 ozaki if (lt->ia6t_expire != 0)
570 1.189 ozaki lt->ia6t_expire = time_wall_to_mono(lt->ia6t_expire);
571 1.189 ozaki if (lt->ia6t_preferred != 0)
572 1.189 ozaki lt->ia6t_preferred =
573 1.189 ozaki time_wall_to_mono(lt->ia6t_preferred);
574 1.189 ozaki /*
575 1.65 itojun * first, make or update the interface address structure,
576 1.65 itojun * and link it to the list.
577 1.65 itojun */
578 1.98 rpaulo if ((error = in6_update_ifa(ifp, ifra, ia, 0)) != 0)
579 1.116 dyoung return error;
580 1.65 itojun if ((ia = in6ifa_ifpwithaddr(ifp, &ifra->ifra_addr.sin6_addr))
581 1.65 itojun == NULL) {
582 1.65 itojun /*
583 1.65 itojun * this can happen when the user specify the 0 valid
584 1.65 itojun * lifetime.
585 1.65 itojun */
586 1.65 itojun break;
587 1.65 itojun }
588 1.65 itojun
589 1.65 itojun /*
590 1.65 itojun * then, make the prefix on-link on the interface.
591 1.65 itojun * XXX: we'd rather create the prefix before the address, but
592 1.65 itojun * we need at least one address to install the corresponding
593 1.65 itojun * interface route, so we configure the address first.
594 1.65 itojun */
595 1.65 itojun
596 1.65 itojun /*
597 1.65 itojun * convert mask to prefix length (prefixmask has already
598 1.65 itojun * been validated in in6_update_ifa().
599 1.65 itojun */
600 1.175 matt memset(&prc0, 0, sizeof(prc0));
601 1.175 matt prc0.ndprc_ifp = ifp;
602 1.175 matt prc0.ndprc_plen = in6_mask2len(&ifra->ifra_prefixmask.sin6_addr,
603 1.65 itojun NULL);
604 1.175 matt if (prc0.ndprc_plen == 128) {
605 1.65 itojun break; /* we don't need to install a host route. */
606 1.65 itojun }
607 1.175 matt prc0.ndprc_prefix = ifra->ifra_addr;
608 1.65 itojun /* apply the mask for safety. */
609 1.65 itojun for (i = 0; i < 4; i++) {
610 1.175 matt prc0.ndprc_prefix.sin6_addr.s6_addr32[i] &=
611 1.65 itojun ifra->ifra_prefixmask.sin6_addr.s6_addr32[i];
612 1.65 itojun }
613 1.65 itojun /*
614 1.65 itojun * XXX: since we don't have an API to set prefix (not address)
615 1.65 itojun * lifetimes, we just use the same lifetimes as addresses.
616 1.65 itojun * The (temporarily) installed lifetimes can be overridden by
617 1.65 itojun * later advertised RAs (when accept_rtadv is non 0), which is
618 1.65 itojun * an intended behavior.
619 1.65 itojun */
620 1.175 matt prc0.ndprc_raf_onlink = 1; /* should be configurable? */
621 1.175 matt prc0.ndprc_raf_auto =
622 1.65 itojun ((ifra->ifra_flags & IN6_IFF_AUTOCONF) != 0);
623 1.175 matt prc0.ndprc_vltime = ifra->ifra_lifetime.ia6t_vltime;
624 1.175 matt prc0.ndprc_pltime = ifra->ifra_lifetime.ia6t_pltime;
625 1.65 itojun
626 1.71 itojun /* add the prefix if not yet. */
627 1.175 matt if ((pr = nd6_prefix_lookup(&prc0)) == NULL) {
628 1.65 itojun /*
629 1.65 itojun * nd6_prelist_add will install the corresponding
630 1.65 itojun * interface route.
631 1.65 itojun */
632 1.175 matt if ((error = nd6_prelist_add(&prc0, NULL, &pr)) != 0)
633 1.116 dyoung return error;
634 1.65 itojun if (pr == NULL) {
635 1.65 itojun log(LOG_ERR, "nd6_prelist_add succeeded but "
636 1.65 itojun "no prefix\n");
637 1.116 dyoung return EINVAL; /* XXX panic here? */
638 1.65 itojun }
639 1.65 itojun }
640 1.71 itojun
641 1.71 itojun /* relate the address to the prefix */
642 1.71 itojun if (ia->ia6_ndpr == NULL) {
643 1.65 itojun ia->ia6_ndpr = pr;
644 1.65 itojun pr->ndpr_refcnt++;
645 1.98 rpaulo
646 1.98 rpaulo /*
647 1.98 rpaulo * If this is the first autoconf address from the
648 1.98 rpaulo * prefix, create a temporary address as well
649 1.98 rpaulo * (when required).
650 1.98 rpaulo */
651 1.98 rpaulo if ((ia->ia6_flags & IN6_IFF_AUTOCONF) &&
652 1.98 rpaulo ip6_use_tempaddr && pr->ndpr_refcnt == 1) {
653 1.98 rpaulo int e;
654 1.98 rpaulo if ((e = in6_tmpifadd(ia, 1, 0)) != 0) {
655 1.98 rpaulo log(LOG_NOTICE, "in6_control: failed "
656 1.98 rpaulo "to create a temporary address, "
657 1.98 rpaulo "errno=%d\n", e);
658 1.98 rpaulo }
659 1.98 rpaulo }
660 1.65 itojun }
661 1.65 itojun
662 1.65 itojun /*
663 1.65 itojun * this might affect the status of autoconfigured addresses,
664 1.65 itojun * that is, this address might make other addresses detached.
665 1.65 itojun */
666 1.65 itojun pfxlist_onlink_check();
667 1.65 itojun
668 1.166 rmind (void)pfil_run_hooks(if_pfil, (struct mbuf **)SIOCAIFADDR_IN6,
669 1.90 yamt ifp, PFIL_IFADDR);
670 1.65 itojun break;
671 1.65 itojun }
672 1.65 itojun
673 1.65 itojun case SIOCDIFADDR_IN6:
674 1.65 itojun {
675 1.98 rpaulo struct nd_prefix *pr;
676 1.2 itojun
677 1.20 itojun /*
678 1.65 itojun * If the address being deleted is the only one that owns
679 1.65 itojun * the corresponding prefix, expire the prefix as well.
680 1.65 itojun * XXX: theoretically, we don't have to worry about such
681 1.65 itojun * relationship, since we separate the address management
682 1.65 itojun * and the prefix management. We do this, however, to provide
683 1.65 itojun * as much backward compatibility as possible in terms of
684 1.65 itojun * the ioctl operation.
685 1.98 rpaulo * Note that in6_purgeaddr() will decrement ndpr_refcnt.
686 1.65 itojun */
687 1.98 rpaulo pr = ia->ia6_ndpr;
688 1.65 itojun in6_purgeaddr(&ia->ia_ifa);
689 1.98 rpaulo if (pr && pr->ndpr_refcnt == 0)
690 1.65 itojun prelist_remove(pr);
691 1.166 rmind (void)pfil_run_hooks(if_pfil, (struct mbuf **)SIOCDIFADDR_IN6,
692 1.90 yamt ifp, PFIL_IFADDR);
693 1.65 itojun break;
694 1.65 itojun }
695 1.65 itojun
696 1.65 itojun default:
697 1.142 dyoung return ENOTTY;
698 1.65 itojun }
699 1.65 itojun
700 1.116 dyoung return 0;
701 1.65 itojun }
702 1.65 itojun
703 1.121 dyoung int
704 1.172 rtr in6_control(struct socket *so, u_long cmd, void *data, struct ifnet *ifp)
705 1.121 dyoung {
706 1.151 elad int error, s;
707 1.151 elad
708 1.151 elad switch (cmd) {
709 1.151 elad case SIOCSNDFLUSH_IN6:
710 1.151 elad case SIOCSPFXFLUSH_IN6:
711 1.151 elad case SIOCSRTRFLUSH_IN6:
712 1.151 elad case SIOCSDEFIFACE_IN6:
713 1.151 elad case SIOCSIFINFO_FLAGS:
714 1.151 elad case SIOCSIFINFO_IN6:
715 1.121 dyoung
716 1.151 elad case SIOCALIFADDR:
717 1.151 elad case SIOCDLIFADDR:
718 1.151 elad
719 1.151 elad case SIOCDIFADDR_IN6:
720 1.151 elad #ifdef OSIOCAIFADDR_IN6
721 1.151 elad case OSIOCAIFADDR_IN6:
722 1.151 elad #endif
723 1.151 elad case SIOCAIFADDR_IN6:
724 1.172 rtr if (kauth_authorize_network(curlwp->l_cred,
725 1.160 elad KAUTH_NETWORK_SOCKET,
726 1.160 elad KAUTH_REQ_NETWORK_SOCKET_SETPRIV,
727 1.160 elad so, NULL, NULL))
728 1.151 elad return EPERM;
729 1.151 elad break;
730 1.151 elad }
731 1.121 dyoung
732 1.121 dyoung s = splnet();
733 1.172 rtr error = in6_control1(so , cmd, data, ifp);
734 1.121 dyoung splx(s);
735 1.121 dyoung return error;
736 1.121 dyoung }
737 1.121 dyoung
738 1.65 itojun /*
739 1.65 itojun * Update parameters of an IPv6 interface address.
740 1.65 itojun * If necessary, a new entry is created and linked into address chains.
741 1.65 itojun * This function is separated from in6_control().
742 1.65 itojun * XXX: should this be performed under splnet()?
743 1.65 itojun */
744 1.121 dyoung static int
745 1.121 dyoung in6_update_ifa1(struct ifnet *ifp, struct in6_aliasreq *ifra,
746 1.121 dyoung struct in6_ifaddr *ia, int flags)
747 1.65 itojun {
748 1.65 itojun int error = 0, hostIsNew = 0, plen = -1;
749 1.65 itojun struct in6_ifaddr *oia;
750 1.65 itojun struct sockaddr_in6 dst6;
751 1.65 itojun struct in6_addrlifetime *lt;
752 1.65 itojun struct in6_multi_mship *imm;
753 1.98 rpaulo struct in6_multi *in6m_sol;
754 1.65 itojun struct rtentry *rt;
755 1.177 roy int dad_delay, was_tentative;
756 1.98 rpaulo
757 1.98 rpaulo in6m_sol = NULL;
758 1.65 itojun
759 1.65 itojun /* Validate parameters */
760 1.65 itojun if (ifp == NULL || ifra == NULL) /* this maybe redundant */
761 1.116 dyoung return EINVAL;
762 1.20 itojun
763 1.65 itojun /*
764 1.65 itojun * The destination address for a p2p link must have a family
765 1.65 itojun * of AF_UNSPEC or AF_INET6.
766 1.65 itojun */
767 1.65 itojun if ((ifp->if_flags & IFF_POINTOPOINT) != 0 &&
768 1.65 itojun ifra->ifra_dstaddr.sin6_family != AF_INET6 &&
769 1.65 itojun ifra->ifra_dstaddr.sin6_family != AF_UNSPEC)
770 1.116 dyoung return EAFNOSUPPORT;
771 1.65 itojun /*
772 1.65 itojun * validate ifra_prefixmask. don't check sin6_family, netmask
773 1.65 itojun * does not carry fields other than sin6_len.
774 1.65 itojun */
775 1.65 itojun if (ifra->ifra_prefixmask.sin6_len > sizeof(struct sockaddr_in6))
776 1.116 dyoung return EINVAL;
777 1.65 itojun /*
778 1.65 itojun * Because the IPv6 address architecture is classless, we require
779 1.65 itojun * users to specify a (non 0) prefix length (mask) for a new address.
780 1.65 itojun * We also require the prefix (when specified) mask is valid, and thus
781 1.65 itojun * reject a non-consecutive mask.
782 1.65 itojun */
783 1.65 itojun if (ia == NULL && ifra->ifra_prefixmask.sin6_len == 0)
784 1.116 dyoung return EINVAL;
785 1.65 itojun if (ifra->ifra_prefixmask.sin6_len != 0) {
786 1.65 itojun plen = in6_mask2len(&ifra->ifra_prefixmask.sin6_addr,
787 1.65 itojun (u_char *)&ifra->ifra_prefixmask +
788 1.65 itojun ifra->ifra_prefixmask.sin6_len);
789 1.65 itojun if (plen <= 0)
790 1.116 dyoung return EINVAL;
791 1.65 itojun } else {
792 1.65 itojun /*
793 1.65 itojun * In this case, ia must not be NULL. We just use its prefix
794 1.65 itojun * length.
795 1.65 itojun */
796 1.65 itojun plen = in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL);
797 1.65 itojun }
798 1.65 itojun /*
799 1.65 itojun * If the destination address on a p2p interface is specified,
800 1.65 itojun * and the address is a scoped one, validate/set the scope
801 1.65 itojun * zone identifier.
802 1.65 itojun */
803 1.65 itojun dst6 = ifra->ifra_dstaddr;
804 1.65 itojun if ((ifp->if_flags & (IFF_POINTOPOINT|IFF_LOOPBACK)) != 0 &&
805 1.65 itojun (dst6.sin6_family == AF_INET6)) {
806 1.95 rpaulo struct in6_addr in6_tmp;
807 1.95 rpaulo u_int32_t zoneid;
808 1.95 rpaulo
809 1.95 rpaulo in6_tmp = dst6.sin6_addr;
810 1.95 rpaulo if (in6_setscope(&in6_tmp, ifp, &zoneid))
811 1.116 dyoung return EINVAL; /* XXX: should be impossible */
812 1.95 rpaulo
813 1.95 rpaulo if (dst6.sin6_scope_id != 0) {
814 1.95 rpaulo if (dst6.sin6_scope_id != zoneid)
815 1.116 dyoung return EINVAL;
816 1.95 rpaulo } else /* user omit to specify the ID. */
817 1.95 rpaulo dst6.sin6_scope_id = zoneid;
818 1.95 rpaulo
819 1.95 rpaulo /* convert into the internal form */
820 1.95 rpaulo if (sa6_embedscope(&dst6, 0))
821 1.116 dyoung return EINVAL; /* XXX: should be impossible */
822 1.65 itojun }
823 1.65 itojun /*
824 1.65 itojun * The destination address can be specified only for a p2p or a
825 1.65 itojun * loopback interface. If specified, the corresponding prefix length
826 1.65 itojun * must be 128.
827 1.65 itojun */
828 1.65 itojun if (ifra->ifra_dstaddr.sin6_family == AF_INET6) {
829 1.65 itojun #ifdef FORCE_P2PPLEN
830 1.65 itojun int i;
831 1.65 itojun #endif
832 1.65 itojun
833 1.65 itojun if ((ifp->if_flags & (IFF_POINTOPOINT|IFF_LOOPBACK)) == 0) {
834 1.65 itojun /* XXX: noisy message */
835 1.70 itojun nd6log((LOG_INFO, "in6_update_ifa: a destination can "
836 1.70 itojun "be specified for a p2p or a loopback IF only\n"));
837 1.116 dyoung return EINVAL;
838 1.65 itojun }
839 1.65 itojun if (plen != 128) {
840 1.70 itojun nd6log((LOG_INFO, "in6_update_ifa: prefixlen should "
841 1.70 itojun "be 128 when dstaddr is specified\n"));
842 1.65 itojun #ifdef FORCE_P2PPLEN
843 1.65 itojun /*
844 1.65 itojun * To be compatible with old configurations,
845 1.65 itojun * such as ifconfig gif0 inet6 2001::1 2001::2
846 1.65 itojun * prefixlen 126, we override the specified
847 1.65 itojun * prefixmask as if the prefix length was 128.
848 1.65 itojun */
849 1.65 itojun ifra->ifra_prefixmask.sin6_len =
850 1.65 itojun sizeof(struct sockaddr_in6);
851 1.65 itojun for (i = 0; i < 4; i++)
852 1.65 itojun ifra->ifra_prefixmask.sin6_addr.s6_addr32[i] =
853 1.65 itojun 0xffffffff;
854 1.65 itojun plen = 128;
855 1.65 itojun #else
856 1.116 dyoung return EINVAL;
857 1.25 itojun #endif
858 1.24 itojun }
859 1.65 itojun }
860 1.65 itojun /* lifetime consistency check */
861 1.65 itojun lt = &ifra->ifra_lifetime;
862 1.65 itojun if (lt->ia6t_pltime > lt->ia6t_vltime)
863 1.116 dyoung return EINVAL;
864 1.65 itojun if (lt->ia6t_vltime == 0) {
865 1.65 itojun /*
866 1.65 itojun * the following log might be noisy, but this is a typical
867 1.65 itojun * configuration mistake or a tool's bug.
868 1.65 itojun */
869 1.67 itojun nd6log((LOG_INFO,
870 1.65 itojun "in6_update_ifa: valid lifetime is 0 for %s\n",
871 1.67 itojun ip6_sprintf(&ifra->ifra_addr.sin6_addr)));
872 1.2 itojun
873 1.65 itojun if (ia == NULL)
874 1.116 dyoung return 0; /* there's nothing to do */
875 1.65 itojun }
876 1.65 itojun
877 1.65 itojun /*
878 1.65 itojun * If this is a new address, allocate a new ifaddr and link it
879 1.65 itojun * into chains.
880 1.65 itojun */
881 1.65 itojun if (ia == NULL) {
882 1.65 itojun hostIsNew = 1;
883 1.65 itojun /*
884 1.65 itojun * When in6_update_ifa() is called in a process of a received
885 1.65 itojun * RA, it is called under an interrupt context. So, we should
886 1.65 itojun * call malloc with M_NOWAIT.
887 1.65 itojun */
888 1.65 itojun ia = (struct in6_ifaddr *) malloc(sizeof(*ia), M_IFADDR,
889 1.65 itojun M_NOWAIT);
890 1.65 itojun if (ia == NULL)
891 1.116 dyoung return ENOBUFS;
892 1.157 dyoung memset(ia, 0, sizeof(*ia));
893 1.65 itojun LIST_INIT(&ia->ia6_memberships);
894 1.65 itojun /* Initialize the address and masks, and put time stamp */
895 1.65 itojun ia->ia_ifa.ifa_addr = (struct sockaddr *)&ia->ia_addr;
896 1.65 itojun ia->ia_addr.sin6_family = AF_INET6;
897 1.65 itojun ia->ia_addr.sin6_len = sizeof(ia->ia_addr);
898 1.189 ozaki ia->ia6_createtime = time_uptime;
899 1.65 itojun if ((ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) != 0) {
900 1.2 itojun /*
901 1.65 itojun * XXX: some functions expect that ifa_dstaddr is not
902 1.65 itojun * NULL for p2p interfaces.
903 1.2 itojun */
904 1.65 itojun ia->ia_ifa.ifa_dstaddr =
905 1.65 itojun (struct sockaddr *)&ia->ia_dstaddr;
906 1.65 itojun } else {
907 1.65 itojun ia->ia_ifa.ifa_dstaddr = NULL;
908 1.2 itojun }
909 1.65 itojun ia->ia_ifa.ifa_netmask =
910 1.65 itojun (struct sockaddr *)&ia->ia_prefixmask;
911 1.2 itojun
912 1.65 itojun ia->ia_ifp = ifp;
913 1.65 itojun if ((oia = in6_ifaddr) != NULL) {
914 1.65 itojun for ( ; oia->ia_next; oia = oia->ia_next)
915 1.65 itojun continue;
916 1.65 itojun oia->ia_next = ia;
917 1.65 itojun } else
918 1.65 itojun in6_ifaddr = ia;
919 1.65 itojun /* gain a refcnt for the link from in6_ifaddr */
920 1.176 rmind ifaref(&ia->ia_ifa);
921 1.65 itojun
922 1.139 dyoung ifa_insert(ifp, &ia->ia_ifa);
923 1.65 itojun }
924 1.2 itojun
925 1.98 rpaulo /* update timestamp */
926 1.189 ozaki ia->ia6_updatetime = time_uptime;
927 1.98 rpaulo
928 1.65 itojun /* set prefix mask */
929 1.65 itojun if (ifra->ifra_prefixmask.sin6_len) {
930 1.65 itojun /*
931 1.65 itojun * We prohibit changing the prefix length of an existing
932 1.65 itojun * address, because
933 1.65 itojun * + such an operation should be rare in IPv6, and
934 1.65 itojun * + the operation would confuse prefix management.
935 1.65 itojun */
936 1.65 itojun if (ia->ia_prefixmask.sin6_len &&
937 1.65 itojun in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL) != plen) {
938 1.67 itojun nd6log((LOG_INFO, "in6_update_ifa: the prefix length of an"
939 1.65 itojun " existing (%s) address should not be changed\n",
940 1.67 itojun ip6_sprintf(&ia->ia_addr.sin6_addr)));
941 1.65 itojun error = EINVAL;
942 1.65 itojun goto unlink;
943 1.65 itojun }
944 1.65 itojun ia->ia_prefixmask = ifra->ifra_prefixmask;
945 1.65 itojun }
946 1.65 itojun
947 1.65 itojun /*
948 1.65 itojun * If a new destination address is specified, scrub the old one and
949 1.65 itojun * install the new destination. Note that the interface must be
950 1.65 itojun * p2p or loopback (see the check above.)
951 1.65 itojun */
952 1.65 itojun if (dst6.sin6_family == AF_INET6 &&
953 1.65 itojun !IN6_ARE_ADDR_EQUAL(&dst6.sin6_addr, &ia->ia_dstaddr.sin6_addr)) {
954 1.65 itojun if ((ia->ia_flags & IFA_ROUTE) != 0 &&
955 1.82 simonb rtinit(&(ia->ia_ifa), (int)RTM_DELETE, RTF_HOST) != 0) {
956 1.67 itojun nd6log((LOG_ERR, "in6_update_ifa: failed to remove "
957 1.65 itojun "a route to the old destination: %s\n",
958 1.67 itojun ip6_sprintf(&ia->ia_addr.sin6_addr)));
959 1.65 itojun /* proceed anyway... */
960 1.2 itojun } else
961 1.65 itojun ia->ia_flags &= ~IFA_ROUTE;
962 1.65 itojun ia->ia_dstaddr = dst6;
963 1.65 itojun }
964 1.65 itojun
965 1.65 itojun /*
966 1.65 itojun * Set lifetimes. We do not refer to ia6t_expire and ia6t_preferred
967 1.65 itojun * to see if the address is deprecated or invalidated, but initialize
968 1.65 itojun * these members for applications.
969 1.65 itojun */
970 1.65 itojun ia->ia6_lifetime = ifra->ifra_lifetime;
971 1.65 itojun if (ia->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) {
972 1.65 itojun ia->ia6_lifetime.ia6t_expire =
973 1.189 ozaki time_uptime + ia->ia6_lifetime.ia6t_vltime;
974 1.65 itojun } else
975 1.65 itojun ia->ia6_lifetime.ia6t_expire = 0;
976 1.65 itojun if (ia->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) {
977 1.65 itojun ia->ia6_lifetime.ia6t_preferred =
978 1.189 ozaki time_uptime + ia->ia6_lifetime.ia6t_pltime;
979 1.65 itojun } else
980 1.65 itojun ia->ia6_lifetime.ia6t_preferred = 0;
981 1.65 itojun
982 1.65 itojun /*
983 1.70 itojun * configure address flags.
984 1.177 roy * We need to preserve tentative state so DAD works if
985 1.177 roy * something adds the same address before DAD finishes.
986 1.70 itojun */
987 1.177 roy was_tentative = ia->ia6_flags & (IN6_IFF_TENTATIVE|IN6_IFF_DUPLICATED);
988 1.70 itojun ia->ia6_flags = ifra->ifra_flags;
989 1.164 roy
990 1.164 roy /*
991 1.164 roy * Make the address tentative before joining multicast addresses,
992 1.164 roy * so that corresponding MLD responses would not have a tentative
993 1.164 roy * source address.
994 1.164 roy */
995 1.164 roy ia->ia6_flags &= ~IN6_IFF_DUPLICATED; /* safety */
996 1.164 roy if (ifp->if_link_state == LINK_STATE_DOWN) {
997 1.164 roy ia->ia6_flags |= IN6_IFF_DETACHED;
998 1.164 roy ia->ia6_flags &= ~IN6_IFF_TENTATIVE;
999 1.186 roy } else if ((hostIsNew || was_tentative) && if_do_dad(ifp))
1000 1.164 roy ia->ia6_flags |= IN6_IFF_TENTATIVE;
1001 1.164 roy
1002 1.70 itojun /*
1003 1.70 itojun * backward compatibility - if IN6_IFF_DEPRECATED is set from the
1004 1.70 itojun * userland, make it deprecated.
1005 1.70 itojun */
1006 1.70 itojun if ((ifra->ifra_flags & IN6_IFF_DEPRECATED) != 0) {
1007 1.70 itojun ia->ia6_lifetime.ia6t_pltime = 0;
1008 1.189 ozaki ia->ia6_lifetime.ia6t_preferred = time_uptime;
1009 1.70 itojun }
1010 1.95 rpaulo
1011 1.162 roy /* reset the interface and routing table appropriately. */
1012 1.162 roy if ((error = in6_ifinit(ifp, ia, &ifra->ifra_addr, hostIsNew)) != 0)
1013 1.162 roy goto unlink;
1014 1.65 itojun /*
1015 1.89 itojun * We are done if we have simply modified an existing address.
1016 1.89 itojun */
1017 1.89 itojun if (!hostIsNew)
1018 1.116 dyoung return error;
1019 1.89 itojun
1020 1.89 itojun /*
1021 1.65 itojun * Beyond this point, we should call in6_purgeaddr upon an error,
1022 1.65 itojun * not just go to unlink.
1023 1.65 itojun */
1024 1.65 itojun
1025 1.97 rpaulo /* join necessary multicast groups */
1026 1.65 itojun if ((ifp->if_flags & IFF_MULTICAST) != 0) {
1027 1.65 itojun struct sockaddr_in6 mltaddr, mltmask;
1028 1.95 rpaulo struct in6_addr llsol;
1029 1.65 itojun
1030 1.89 itojun /* join solicited multicast addr for new host id */
1031 1.148 cegger memset(&llsol, 0, sizeof(struct in6_addr));
1032 1.95 rpaulo llsol.s6_addr16[0] = htons(0xff02);
1033 1.95 rpaulo llsol.s6_addr32[1] = 0;
1034 1.95 rpaulo llsol.s6_addr32[2] = htonl(1);
1035 1.95 rpaulo llsol.s6_addr32[3] = ifra->ifra_addr.sin6_addr.s6_addr32[3];
1036 1.95 rpaulo llsol.s6_addr8[12] = 0xff;
1037 1.95 rpaulo if ((error = in6_setscope(&llsol, ifp, NULL)) != 0) {
1038 1.95 rpaulo /* XXX: should not happen */
1039 1.95 rpaulo log(LOG_ERR, "in6_update_ifa: "
1040 1.95 rpaulo "in6_setscope failed\n");
1041 1.95 rpaulo goto cleanup;
1042 1.95 rpaulo }
1043 1.99 rpaulo dad_delay = 0;
1044 1.98 rpaulo if ((flags & IN6_IFAUPDATE_DADDELAY)) {
1045 1.98 rpaulo /*
1046 1.98 rpaulo * We need a random delay for DAD on the address
1047 1.98 rpaulo * being configured. It also means delaying
1048 1.98 rpaulo * transmission of the corresponding MLD report to
1049 1.98 rpaulo * avoid report collision.
1050 1.98 rpaulo * [draft-ietf-ipv6-rfc2462bis-02.txt]
1051 1.98 rpaulo */
1052 1.159 tls dad_delay = cprng_fast32() %
1053 1.98 rpaulo (MAX_RTR_SOLICITATION_DELAY * hz);
1054 1.98 rpaulo }
1055 1.98 rpaulo
1056 1.98 rpaulo #define MLTMASK_LEN 4 /* mltmask's masklen (=32bit=4octet) */
1057 1.98 rpaulo /* join solicited multicast addr for new host id */
1058 1.99 rpaulo imm = in6_joingroup(ifp, &llsol, &error, dad_delay);
1059 1.89 itojun if (!imm) {
1060 1.89 itojun nd6log((LOG_ERR,
1061 1.89 itojun "in6_update_ifa: addmulti "
1062 1.89 itojun "failed for %s on %s (errno=%d)\n",
1063 1.95 rpaulo ip6_sprintf(&llsol), if_name(ifp), error));
1064 1.89 itojun goto cleanup;
1065 1.65 itojun }
1066 1.89 itojun LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
1067 1.98 rpaulo in6m_sol = imm->i6mm_maddr;
1068 1.65 itojun
1069 1.135 dyoung sockaddr_in6_init(&mltmask, &in6mask32, 0, 0, 0);
1070 1.65 itojun
1071 1.65 itojun /*
1072 1.65 itojun * join link-local all-nodes address
1073 1.65 itojun */
1074 1.135 dyoung sockaddr_in6_init(&mltaddr, &in6addr_linklocal_allnodes,
1075 1.135 dyoung 0, 0, 0);
1076 1.120 dyoung if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
1077 1.95 rpaulo goto cleanup; /* XXX: should not fail */
1078 1.39 itojun
1079 1.39 itojun /*
1080 1.65 itojun * XXX: do we really need this automatic routes?
1081 1.65 itojun * We should probably reconsider this stuff. Most applications
1082 1.65 itojun * actually do not need the routes, since they usually specify
1083 1.65 itojun * the outgoing interface.
1084 1.2 itojun */
1085 1.65 itojun rt = rtalloc1((struct sockaddr *)&mltaddr, 0);
1086 1.65 itojun if (rt) {
1087 1.65 itojun if (memcmp(&mltaddr.sin6_addr,
1088 1.131 dyoung &satocsin6(rt_getkey(rt))->sin6_addr,
1089 1.98 rpaulo MLTMASK_LEN)) {
1090 1.171 rmind rtfree(rt);
1091 1.65 itojun rt = NULL;
1092 1.121 dyoung } else if (rt->rt_ifp != ifp) {
1093 1.121 dyoung IN6_DPRINTF("%s: rt_ifp %p -> %p (%s) "
1094 1.121 dyoung "network %04x:%04x::/32 = %04x:%04x::/32\n",
1095 1.121 dyoung __func__, rt->rt_ifp, ifp, ifp->if_xname,
1096 1.121 dyoung ntohs(mltaddr.sin6_addr.s6_addr16[0]),
1097 1.121 dyoung ntohs(mltaddr.sin6_addr.s6_addr16[1]),
1098 1.131 dyoung satocsin6(rt_getkey(rt))->sin6_addr.s6_addr16[0],
1099 1.131 dyoung satocsin6(rt_getkey(rt))->sin6_addr.s6_addr16[1]);
1100 1.121 dyoung rt_replace_ifa(rt, &ia->ia_ifa);
1101 1.121 dyoung rt->rt_ifp = ifp;
1102 1.65 itojun }
1103 1.2 itojun }
1104 1.65 itojun if (!rt) {
1105 1.65 itojun struct rt_addrinfo info;
1106 1.2 itojun
1107 1.148 cegger memset(&info, 0, sizeof(info));
1108 1.65 itojun info.rti_info[RTAX_DST] = (struct sockaddr *)&mltaddr;
1109 1.65 itojun info.rti_info[RTAX_GATEWAY] =
1110 1.65 itojun (struct sockaddr *)&ia->ia_addr;
1111 1.65 itojun info.rti_info[RTAX_NETMASK] =
1112 1.65 itojun (struct sockaddr *)&mltmask;
1113 1.65 itojun info.rti_info[RTAX_IFA] =
1114 1.65 itojun (struct sockaddr *)&ia->ia_addr;
1115 1.65 itojun /* XXX: we need RTF_CLONING to fake nd6_rtrequest */
1116 1.65 itojun info.rti_flags = RTF_UP | RTF_CLONING;
1117 1.65 itojun error = rtrequest1(RTM_ADD, &info, NULL);
1118 1.65 itojun if (error)
1119 1.65 itojun goto cleanup;
1120 1.65 itojun } else {
1121 1.171 rmind rtfree(rt);
1122 1.65 itojun }
1123 1.98 rpaulo imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, 0);
1124 1.89 itojun if (!imm) {
1125 1.89 itojun nd6log((LOG_WARNING,
1126 1.89 itojun "in6_update_ifa: addmulti failed for "
1127 1.89 itojun "%s on %s (errno=%d)\n",
1128 1.89 itojun ip6_sprintf(&mltaddr.sin6_addr),
1129 1.89 itojun if_name(ifp), error));
1130 1.89 itojun goto cleanup;
1131 1.65 itojun }
1132 1.89 itojun LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
1133 1.8 itojun
1134 1.65 itojun /*
1135 1.65 itojun * join node information group address
1136 1.65 itojun */
1137 1.99 rpaulo dad_delay = 0;
1138 1.98 rpaulo if ((flags & IN6_IFAUPDATE_DADDELAY)) {
1139 1.98 rpaulo /*
1140 1.98 rpaulo * The spec doesn't say anything about delay for this
1141 1.98 rpaulo * group, but the same logic should apply.
1142 1.98 rpaulo */
1143 1.159 tls dad_delay = cprng_fast32() %
1144 1.98 rpaulo (MAX_RTR_SOLICITATION_DELAY * hz);
1145 1.98 rpaulo }
1146 1.120 dyoung if (in6_nigroup(ifp, hostname, hostnamelen, &mltaddr) != 0)
1147 1.120 dyoung ;
1148 1.120 dyoung else if ((imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error,
1149 1.120 dyoung dad_delay)) == NULL) { /* XXX jinmei */
1150 1.120 dyoung nd6log((LOG_WARNING, "in6_update_ifa: "
1151 1.120 dyoung "addmulti failed for %s on %s (errno=%d)\n",
1152 1.120 dyoung ip6_sprintf(&mltaddr.sin6_addr),
1153 1.120 dyoung if_name(ifp), error));
1154 1.120 dyoung /* XXX not very fatal, go on... */
1155 1.120 dyoung } else {
1156 1.120 dyoung LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
1157 1.8 itojun }
1158 1.8 itojun
1159 1.65 itojun
1160 1.95 rpaulo /*
1161 1.95 rpaulo * join interface-local all-nodes address.
1162 1.95 rpaulo * (ff01::1%ifN, and ff01::%ifN/32)
1163 1.95 rpaulo */
1164 1.95 rpaulo mltaddr.sin6_addr = in6addr_nodelocal_allnodes;
1165 1.120 dyoung if ((error = in6_setscope(&mltaddr.sin6_addr, ifp, NULL)) != 0)
1166 1.95 rpaulo goto cleanup; /* XXX: should not fail */
1167 1.2 itojun
1168 1.95 rpaulo /* XXX: again, do we really need the route? */
1169 1.95 rpaulo rt = rtalloc1((struct sockaddr *)&mltaddr, 0);
1170 1.95 rpaulo if (rt) {
1171 1.95 rpaulo /* 32bit came from "mltmask" */
1172 1.95 rpaulo if (memcmp(&mltaddr.sin6_addr,
1173 1.131 dyoung &satocsin6(rt_getkey(rt))->sin6_addr,
1174 1.121 dyoung 32 / NBBY)) {
1175 1.171 rmind rtfree(rt);
1176 1.95 rpaulo rt = NULL;
1177 1.121 dyoung } else if (rt->rt_ifp != ifp) {
1178 1.121 dyoung IN6_DPRINTF("%s: rt_ifp %p -> %p (%s) "
1179 1.121 dyoung "network %04x:%04x::/32 = %04x:%04x::/32\n",
1180 1.121 dyoung __func__, rt->rt_ifp, ifp, ifp->if_xname,
1181 1.121 dyoung ntohs(mltaddr.sin6_addr.s6_addr16[0]),
1182 1.121 dyoung ntohs(mltaddr.sin6_addr.s6_addr16[1]),
1183 1.131 dyoung satocsin6(rt_getkey(rt))->sin6_addr.s6_addr16[0],
1184 1.131 dyoung satocsin6(rt_getkey(rt))->sin6_addr.s6_addr16[1]);
1185 1.121 dyoung rt_replace_ifa(rt, &ia->ia_ifa);
1186 1.121 dyoung rt->rt_ifp = ifp;
1187 1.65 itojun }
1188 1.95 rpaulo }
1189 1.95 rpaulo if (!rt) {
1190 1.95 rpaulo struct rt_addrinfo info;
1191 1.95 rpaulo
1192 1.148 cegger memset(&info, 0, sizeof(info));
1193 1.95 rpaulo info.rti_info[RTAX_DST] = (struct sockaddr *)&mltaddr;
1194 1.95 rpaulo info.rti_info[RTAX_GATEWAY] =
1195 1.95 rpaulo (struct sockaddr *)&ia->ia_addr;
1196 1.95 rpaulo info.rti_info[RTAX_NETMASK] =
1197 1.95 rpaulo (struct sockaddr *)&mltmask;
1198 1.95 rpaulo info.rti_info[RTAX_IFA] =
1199 1.95 rpaulo (struct sockaddr *)&ia->ia_addr;
1200 1.95 rpaulo info.rti_flags = RTF_UP | RTF_CLONING;
1201 1.95 rpaulo error = rtrequest1(RTM_ADD, &info, NULL);
1202 1.95 rpaulo if (error)
1203 1.89 itojun goto cleanup;
1204 1.98 rpaulo #undef MLTMASK_LEN
1205 1.95 rpaulo } else {
1206 1.171 rmind rtfree(rt);
1207 1.95 rpaulo }
1208 1.98 rpaulo imm = in6_joingroup(ifp, &mltaddr.sin6_addr, &error, 0);
1209 1.95 rpaulo if (!imm) {
1210 1.95 rpaulo nd6log((LOG_WARNING, "in6_update_ifa: "
1211 1.95 rpaulo "addmulti failed for %s on %s (errno=%d)\n",
1212 1.95 rpaulo ip6_sprintf(&mltaddr.sin6_addr),
1213 1.95 rpaulo if_name(ifp), error));
1214 1.95 rpaulo goto cleanup;
1215 1.98 rpaulo } else {
1216 1.98 rpaulo LIST_INSERT_HEAD(&ia->ia6_memberships, imm, i6mm_chain);
1217 1.98 rpaulo }
1218 1.98 rpaulo }
1219 1.98 rpaulo
1220 1.98 rpaulo /*
1221 1.98 rpaulo * Perform DAD, if needed.
1222 1.98 rpaulo * XXX It may be of use, if we can administratively
1223 1.98 rpaulo * disable DAD.
1224 1.98 rpaulo */
1225 1.186 roy if (hostIsNew && if_do_dad(ifp) &&
1226 1.98 rpaulo ((ifra->ifra_flags & IN6_IFF_NODAD) == 0) &&
1227 1.98 rpaulo (ia->ia6_flags & IN6_IFF_TENTATIVE))
1228 1.98 rpaulo {
1229 1.98 rpaulo int mindelay, maxdelay;
1230 1.98 rpaulo
1231 1.99 rpaulo dad_delay = 0;
1232 1.98 rpaulo if ((flags & IN6_IFAUPDATE_DADDELAY)) {
1233 1.98 rpaulo /*
1234 1.98 rpaulo * We need to impose a delay before sending an NS
1235 1.98 rpaulo * for DAD. Check if we also needed a delay for the
1236 1.98 rpaulo * corresponding MLD message. If we did, the delay
1237 1.98 rpaulo * should be larger than the MLD delay (this could be
1238 1.98 rpaulo * relaxed a bit, but this simple logic is at least
1239 1.98 rpaulo * safe).
1240 1.98 rpaulo */
1241 1.98 rpaulo mindelay = 0;
1242 1.98 rpaulo if (in6m_sol != NULL &&
1243 1.98 rpaulo in6m_sol->in6m_state == MLD_REPORTPENDING) {
1244 1.98 rpaulo mindelay = in6m_sol->in6m_timer;
1245 1.98 rpaulo }
1246 1.98 rpaulo maxdelay = MAX_RTR_SOLICITATION_DELAY * hz;
1247 1.98 rpaulo if (maxdelay - mindelay == 0)
1248 1.99 rpaulo dad_delay = 0;
1249 1.98 rpaulo else {
1250 1.99 rpaulo dad_delay =
1251 1.159 tls (cprng_fast32() % (maxdelay - mindelay)) +
1252 1.98 rpaulo mindelay;
1253 1.98 rpaulo }
1254 1.65 itojun }
1255 1.173 ozaki /* +1 ensures callout is always used */
1256 1.173 ozaki nd6_dad_start(&ia->ia_ifa, dad_delay + 1);
1257 1.2 itojun }
1258 1.52 itojun
1259 1.116 dyoung return error;
1260 1.65 itojun
1261 1.65 itojun unlink:
1262 1.65 itojun /*
1263 1.65 itojun * XXX: if a change of an existing address failed, keep the entry
1264 1.65 itojun * anyway.
1265 1.65 itojun */
1266 1.65 itojun if (hostIsNew)
1267 1.65 itojun in6_unlink_ifa(ia, ifp);
1268 1.116 dyoung return error;
1269 1.65 itojun
1270 1.65 itojun cleanup:
1271 1.65 itojun in6_purgeaddr(&ia->ia_ifa);
1272 1.65 itojun return error;
1273 1.2 itojun }
1274 1.2 itojun
1275 1.121 dyoung int
1276 1.121 dyoung in6_update_ifa(struct ifnet *ifp, struct in6_aliasreq *ifra,
1277 1.121 dyoung struct in6_ifaddr *ia, int flags)
1278 1.121 dyoung {
1279 1.121 dyoung int rc, s;
1280 1.121 dyoung
1281 1.121 dyoung s = splnet();
1282 1.121 dyoung rc = in6_update_ifa1(ifp, ifra, ia, flags);
1283 1.121 dyoung splx(s);
1284 1.121 dyoung return rc;
1285 1.121 dyoung }
1286 1.121 dyoung
1287 1.10 thorpej void
1288 1.127 christos in6_purgeaddr(struct ifaddr *ifa)
1289 1.10 thorpej {
1290 1.65 itojun struct ifnet *ifp = ifa->ifa_ifp;
1291 1.65 itojun struct in6_ifaddr *ia = (struct in6_ifaddr *) ifa;
1292 1.65 itojun struct in6_multi_mship *imm;
1293 1.40 itojun
1294 1.40 itojun /* stop DAD processing */
1295 1.40 itojun nd6_dad_stop(ifa);
1296 1.10 thorpej
1297 1.65 itojun /*
1298 1.65 itojun * delete route to the destination of the address being purged.
1299 1.65 itojun * The interface must be p2p or loopback in this case.
1300 1.65 itojun */
1301 1.65 itojun if ((ia->ia_flags & IFA_ROUTE) != 0 && ia->ia_dstaddr.sin6_len != 0) {
1302 1.65 itojun int e;
1303 1.10 thorpej
1304 1.65 itojun if ((e = rtinit(&(ia->ia_ifa), (int)RTM_DELETE, RTF_HOST))
1305 1.65 itojun != 0) {
1306 1.65 itojun log(LOG_ERR, "in6_purgeaddr: failed to remove "
1307 1.65 itojun "a route to the p2p destination: %s on %s, "
1308 1.65 itojun "errno=%d\n",
1309 1.65 itojun ip6_sprintf(&ia->ia_addr.sin6_addr), if_name(ifp),
1310 1.65 itojun e);
1311 1.65 itojun /* proceed anyway... */
1312 1.65 itojun } else
1313 1.65 itojun ia->ia_flags &= ~IFA_ROUTE;
1314 1.65 itojun }
1315 1.65 itojun
1316 1.65 itojun /* Remove ownaddr's loopback rtentry, if it exists. */
1317 1.184 roy in6_ifremlocal(&(ia->ia_ifa));
1318 1.10 thorpej
1319 1.65 itojun /*
1320 1.65 itojun * leave from multicast groups we have joined for the interface
1321 1.65 itojun */
1322 1.117 dyoung while ((imm = LIST_FIRST(&ia->ia6_memberships)) != NULL) {
1323 1.65 itojun LIST_REMOVE(imm, i6mm_chain);
1324 1.65 itojun in6_leavegroup(imm);
1325 1.10 thorpej }
1326 1.10 thorpej
1327 1.65 itojun in6_unlink_ifa(ia, ifp);
1328 1.65 itojun }
1329 1.65 itojun
1330 1.65 itojun static void
1331 1.127 christos in6_unlink_ifa(struct in6_ifaddr *ia, struct ifnet *ifp)
1332 1.65 itojun {
1333 1.65 itojun struct in6_ifaddr *oia;
1334 1.65 itojun int s = splnet();
1335 1.65 itojun
1336 1.139 dyoung ifa_remove(ifp, &ia->ia_ifa);
1337 1.10 thorpej
1338 1.10 thorpej oia = ia;
1339 1.10 thorpej if (oia == (ia = in6_ifaddr))
1340 1.10 thorpej in6_ifaddr = ia->ia_next;
1341 1.10 thorpej else {
1342 1.10 thorpej while (ia->ia_next && (ia->ia_next != oia))
1343 1.10 thorpej ia = ia->ia_next;
1344 1.10 thorpej if (ia->ia_next)
1345 1.10 thorpej ia->ia_next = oia->ia_next;
1346 1.65 itojun else {
1347 1.65 itojun /* search failed */
1348 1.65 itojun printf("Couldn't unlink in6_ifaddr from in6_ifaddr\n");
1349 1.65 itojun }
1350 1.10 thorpej }
1351 1.10 thorpej
1352 1.133 dyoung /*
1353 1.133 dyoung * XXX thorpej (at) NetBSD.org -- if the interface is going
1354 1.133 dyoung * XXX away, don't save the multicast entries, delete them!
1355 1.133 dyoung */
1356 1.133 dyoung if (LIST_EMPTY(&oia->ia6_multiaddrs))
1357 1.133 dyoung ;
1358 1.133 dyoung else if (oia->ia_ifa.ifa_ifp->if_output == if_nulloutput) {
1359 1.133 dyoung struct in6_multi *in6m, *next;
1360 1.133 dyoung
1361 1.133 dyoung for (in6m = LIST_FIRST(&oia->ia6_multiaddrs); in6m != NULL;
1362 1.133 dyoung in6m = next) {
1363 1.133 dyoung next = LIST_NEXT(in6m, in6m_entry);
1364 1.133 dyoung in6_delmulti(in6m);
1365 1.133 dyoung }
1366 1.133 dyoung } else
1367 1.133 dyoung in6_savemkludge(oia);
1368 1.10 thorpej
1369 1.65 itojun /*
1370 1.98 rpaulo * Release the reference to the base prefix. There should be a
1371 1.98 rpaulo * positive reference.
1372 1.98 rpaulo */
1373 1.98 rpaulo if (oia->ia6_ndpr == NULL) {
1374 1.98 rpaulo nd6log((LOG_NOTICE, "in6_unlink_ifa: autoconf'ed address "
1375 1.98 rpaulo "%p has no prefix\n", oia));
1376 1.98 rpaulo } else {
1377 1.98 rpaulo oia->ia6_ndpr->ndpr_refcnt--;
1378 1.98 rpaulo oia->ia6_ndpr = NULL;
1379 1.98 rpaulo }
1380 1.65 itojun
1381 1.98 rpaulo /*
1382 1.98 rpaulo * Also, if the address being removed is autoconf'ed, call
1383 1.98 rpaulo * pfxlist_onlink_check() since the release might affect the status of
1384 1.98 rpaulo * other (detached) addresses.
1385 1.98 rpaulo */
1386 1.98 rpaulo if ((oia->ia6_flags & IN6_IFF_AUTOCONF) != 0)
1387 1.65 itojun pfxlist_onlink_check();
1388 1.65 itojun
1389 1.65 itojun /*
1390 1.65 itojun * release another refcnt for the link from in6_ifaddr.
1391 1.65 itojun * Note that we should decrement the refcnt at least once for all *BSD.
1392 1.65 itojun */
1393 1.176 rmind ifafree(&oia->ia_ifa);
1394 1.65 itojun
1395 1.65 itojun splx(s);
1396 1.14 thorpej }
1397 1.11 itojun
1398 1.14 thorpej void
1399 1.127 christos in6_purgeif(struct ifnet *ifp)
1400 1.14 thorpej {
1401 1.138 dyoung if_purgeaddrs(ifp, AF_INET6, in6_purgeaddr);
1402 1.14 thorpej
1403 1.14 thorpej in6_ifdetach(ifp);
1404 1.10 thorpej }
1405 1.10 thorpej
1406 1.2 itojun /*
1407 1.2 itojun * SIOC[GAD]LIFADDR.
1408 1.41 itojun * SIOCGLIFADDR: get first address. (?)
1409 1.2 itojun * SIOCGLIFADDR with IFLR_PREFIX:
1410 1.2 itojun * get first address that matches the specified prefix.
1411 1.2 itojun * SIOCALIFADDR: add the specified address.
1412 1.2 itojun * SIOCALIFADDR with IFLR_PREFIX:
1413 1.2 itojun * add the specified prefix, filling hostid part from
1414 1.2 itojun * the first link-local address. prefixlen must be <= 64.
1415 1.2 itojun * SIOCDLIFADDR: delete the specified address.
1416 1.2 itojun * SIOCDLIFADDR with IFLR_PREFIX:
1417 1.2 itojun * delete the first address that matches the specified prefix.
1418 1.2 itojun * return values:
1419 1.2 itojun * EINVAL on invalid parameters
1420 1.2 itojun * EADDRNOTAVAIL on prefix match failed/specified address not found
1421 1.2 itojun * other values may be returned from in6_ioctl()
1422 1.2 itojun *
1423 1.2 itojun * NOTE: SIOCALIFADDR(with IFLR_PREFIX set) allows prefixlen less than 64.
1424 1.119 christos * this is to accommodate address naming scheme other than RFC2374,
1425 1.2 itojun * in the future.
1426 1.2 itojun * RFC2373 defines interface id to be 64bit, but it allows non-RFC2374
1427 1.2 itojun * address encoding scheme. (see figure on page 8)
1428 1.2 itojun */
1429 1.2 itojun static int
1430 1.127 christos in6_lifaddr_ioctl(struct socket *so, u_long cmd, void *data,
1431 1.172 rtr struct ifnet *ifp)
1432 1.2 itojun {
1433 1.146 dyoung struct in6_ifaddr *ia;
1434 1.2 itojun struct if_laddrreq *iflr = (struct if_laddrreq *)data;
1435 1.2 itojun struct ifaddr *ifa;
1436 1.8 itojun struct sockaddr *sa;
1437 1.2 itojun
1438 1.2 itojun /* sanity checks */
1439 1.2 itojun if (!data || !ifp) {
1440 1.2 itojun panic("invalid argument to in6_lifaddr_ioctl");
1441 1.52 itojun /* NOTREACHED */
1442 1.2 itojun }
1443 1.2 itojun
1444 1.2 itojun switch (cmd) {
1445 1.2 itojun case SIOCGLIFADDR:
1446 1.2 itojun /* address must be specified on GET with IFLR_PREFIX */
1447 1.2 itojun if ((iflr->flags & IFLR_PREFIX) == 0)
1448 1.2 itojun break;
1449 1.52 itojun /* FALLTHROUGH */
1450 1.2 itojun case SIOCALIFADDR:
1451 1.2 itojun case SIOCDLIFADDR:
1452 1.2 itojun /* address must be specified on ADD and DELETE */
1453 1.8 itojun sa = (struct sockaddr *)&iflr->addr;
1454 1.8 itojun if (sa->sa_family != AF_INET6)
1455 1.2 itojun return EINVAL;
1456 1.8 itojun if (sa->sa_len != sizeof(struct sockaddr_in6))
1457 1.2 itojun return EINVAL;
1458 1.2 itojun /* XXX need improvement */
1459 1.8 itojun sa = (struct sockaddr *)&iflr->dstaddr;
1460 1.8 itojun if (sa->sa_family && sa->sa_family != AF_INET6)
1461 1.2 itojun return EINVAL;
1462 1.8 itojun if (sa->sa_len && sa->sa_len != sizeof(struct sockaddr_in6))
1463 1.2 itojun return EINVAL;
1464 1.2 itojun break;
1465 1.52 itojun default: /* shouldn't happen */
1466 1.2 itojun #if 0
1467 1.2 itojun panic("invalid cmd to in6_lifaddr_ioctl");
1468 1.52 itojun /* NOTREACHED */
1469 1.2 itojun #else
1470 1.2 itojun return EOPNOTSUPP;
1471 1.2 itojun #endif
1472 1.2 itojun }
1473 1.120 dyoung if (sizeof(struct in6_addr) * NBBY < iflr->prefixlen)
1474 1.2 itojun return EINVAL;
1475 1.2 itojun
1476 1.2 itojun switch (cmd) {
1477 1.2 itojun case SIOCALIFADDR:
1478 1.2 itojun {
1479 1.2 itojun struct in6_aliasreq ifra;
1480 1.93 christos struct in6_addr *xhostid = NULL;
1481 1.2 itojun int prefixlen;
1482 1.2 itojun
1483 1.2 itojun if ((iflr->flags & IFLR_PREFIX) != 0) {
1484 1.2 itojun struct sockaddr_in6 *sin6;
1485 1.2 itojun
1486 1.2 itojun /*
1487 1.93 christos * xhostid is to fill in the hostid part of the
1488 1.93 christos * address. xhostid points to the first link-local
1489 1.2 itojun * address attached to the interface.
1490 1.2 itojun */
1491 1.146 dyoung ia = in6ifa_ifpforlinklocal(ifp, 0);
1492 1.146 dyoung if (ia == NULL)
1493 1.2 itojun return EADDRNOTAVAIL;
1494 1.146 dyoung xhostid = IFA_IN6(&ia->ia_ifa);
1495 1.2 itojun
1496 1.2 itojun /* prefixlen must be <= 64. */
1497 1.2 itojun if (64 < iflr->prefixlen)
1498 1.2 itojun return EINVAL;
1499 1.2 itojun prefixlen = iflr->prefixlen;
1500 1.2 itojun
1501 1.2 itojun /* hostid part must be zero. */
1502 1.2 itojun sin6 = (struct sockaddr_in6 *)&iflr->addr;
1503 1.2 itojun if (sin6->sin6_addr.s6_addr32[2] != 0
1504 1.2 itojun || sin6->sin6_addr.s6_addr32[3] != 0) {
1505 1.2 itojun return EINVAL;
1506 1.2 itojun }
1507 1.2 itojun } else
1508 1.2 itojun prefixlen = iflr->prefixlen;
1509 1.2 itojun
1510 1.2 itojun /* copy args to in6_aliasreq, perform ioctl(SIOCAIFADDR_IN6). */
1511 1.148 cegger memset(&ifra, 0, sizeof(ifra));
1512 1.150 tsutsui memcpy(ifra.ifra_name, iflr->iflr_name, sizeof(ifra.ifra_name));
1513 1.2 itojun
1514 1.150 tsutsui memcpy(&ifra.ifra_addr, &iflr->addr,
1515 1.65 itojun ((struct sockaddr *)&iflr->addr)->sa_len);
1516 1.93 christos if (xhostid) {
1517 1.2 itojun /* fill in hostid part */
1518 1.2 itojun ifra.ifra_addr.sin6_addr.s6_addr32[2] =
1519 1.93 christos xhostid->s6_addr32[2];
1520 1.2 itojun ifra.ifra_addr.sin6_addr.s6_addr32[3] =
1521 1.93 christos xhostid->s6_addr32[3];
1522 1.2 itojun }
1523 1.2 itojun
1524 1.52 itojun if (((struct sockaddr *)&iflr->dstaddr)->sa_family) { /* XXX */
1525 1.150 tsutsui memcpy(&ifra.ifra_dstaddr, &iflr->dstaddr,
1526 1.65 itojun ((struct sockaddr *)&iflr->dstaddr)->sa_len);
1527 1.93 christos if (xhostid) {
1528 1.2 itojun ifra.ifra_dstaddr.sin6_addr.s6_addr32[2] =
1529 1.93 christos xhostid->s6_addr32[2];
1530 1.2 itojun ifra.ifra_dstaddr.sin6_addr.s6_addr32[3] =
1531 1.93 christos xhostid->s6_addr32[3];
1532 1.2 itojun }
1533 1.2 itojun }
1534 1.2 itojun
1535 1.2 itojun ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6);
1536 1.64 itojun in6_prefixlen2mask(&ifra.ifra_prefixmask.sin6_addr, prefixlen);
1537 1.2 itojun
1538 1.113 dyoung ifra.ifra_lifetime.ia6t_vltime = ND6_INFINITE_LIFETIME;
1539 1.113 dyoung ifra.ifra_lifetime.ia6t_pltime = ND6_INFINITE_LIFETIME;
1540 1.2 itojun ifra.ifra_flags = iflr->flags & ~IFLR_PREFIX;
1541 1.172 rtr return in6_control(so, SIOCAIFADDR_IN6, &ifra, ifp);
1542 1.2 itojun }
1543 1.2 itojun case SIOCGLIFADDR:
1544 1.2 itojun case SIOCDLIFADDR:
1545 1.2 itojun {
1546 1.2 itojun struct in6_addr mask, candidate, match;
1547 1.2 itojun struct sockaddr_in6 *sin6;
1548 1.2 itojun int cmp;
1549 1.2 itojun
1550 1.148 cegger memset(&mask, 0, sizeof(mask));
1551 1.2 itojun if (iflr->flags & IFLR_PREFIX) {
1552 1.2 itojun /* lookup a prefix rather than address. */
1553 1.64 itojun in6_prefixlen2mask(&mask, iflr->prefixlen);
1554 1.2 itojun
1555 1.2 itojun sin6 = (struct sockaddr_in6 *)&iflr->addr;
1556 1.150 tsutsui memcpy(&match, &sin6->sin6_addr, sizeof(match));
1557 1.2 itojun match.s6_addr32[0] &= mask.s6_addr32[0];
1558 1.2 itojun match.s6_addr32[1] &= mask.s6_addr32[1];
1559 1.2 itojun match.s6_addr32[2] &= mask.s6_addr32[2];
1560 1.2 itojun match.s6_addr32[3] &= mask.s6_addr32[3];
1561 1.2 itojun
1562 1.2 itojun /* if you set extra bits, that's wrong */
1563 1.147 cegger if (memcmp(&match, &sin6->sin6_addr, sizeof(match)))
1564 1.2 itojun return EINVAL;
1565 1.2 itojun
1566 1.2 itojun cmp = 1;
1567 1.2 itojun } else {
1568 1.2 itojun if (cmd == SIOCGLIFADDR) {
1569 1.2 itojun /* on getting an address, take the 1st match */
1570 1.52 itojun cmp = 0; /* XXX */
1571 1.2 itojun } else {
1572 1.2 itojun /* on deleting an address, do exact match */
1573 1.64 itojun in6_prefixlen2mask(&mask, 128);
1574 1.2 itojun sin6 = (struct sockaddr_in6 *)&iflr->addr;
1575 1.150 tsutsui memcpy(&match, &sin6->sin6_addr, sizeof(match));
1576 1.2 itojun
1577 1.2 itojun cmp = 1;
1578 1.2 itojun }
1579 1.2 itojun }
1580 1.2 itojun
1581 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1582 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1583 1.2 itojun continue;
1584 1.2 itojun if (!cmp)
1585 1.2 itojun break;
1586 1.65 itojun
1587 1.95 rpaulo /*
1588 1.95 rpaulo * XXX: this is adhoc, but is necessary to allow
1589 1.95 rpaulo * a user to specify fe80::/64 (not /10) for a
1590 1.95 rpaulo * link-local address.
1591 1.95 rpaulo */
1592 1.150 tsutsui memcpy(&candidate, IFA_IN6(ifa), sizeof(candidate));
1593 1.95 rpaulo in6_clearscope(&candidate);
1594 1.2 itojun candidate.s6_addr32[0] &= mask.s6_addr32[0];
1595 1.2 itojun candidate.s6_addr32[1] &= mask.s6_addr32[1];
1596 1.2 itojun candidate.s6_addr32[2] &= mask.s6_addr32[2];
1597 1.2 itojun candidate.s6_addr32[3] &= mask.s6_addr32[3];
1598 1.2 itojun if (IN6_ARE_ADDR_EQUAL(&candidate, &match))
1599 1.2 itojun break;
1600 1.2 itojun }
1601 1.2 itojun if (!ifa)
1602 1.2 itojun return EADDRNOTAVAIL;
1603 1.2 itojun ia = ifa2ia6(ifa);
1604 1.2 itojun
1605 1.2 itojun if (cmd == SIOCGLIFADDR) {
1606 1.95 rpaulo int error;
1607 1.95 rpaulo
1608 1.2 itojun /* fill in the if_laddrreq structure */
1609 1.150 tsutsui memcpy(&iflr->addr, &ia->ia_addr, ia->ia_addr.sin6_len);
1610 1.95 rpaulo error = sa6_recoverscope(
1611 1.95 rpaulo (struct sockaddr_in6 *)&iflr->addr);
1612 1.95 rpaulo if (error != 0)
1613 1.116 dyoung return error;
1614 1.95 rpaulo
1615 1.2 itojun if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
1616 1.150 tsutsui memcpy(&iflr->dstaddr, &ia->ia_dstaddr,
1617 1.65 itojun ia->ia_dstaddr.sin6_len);
1618 1.95 rpaulo error = sa6_recoverscope(
1619 1.95 rpaulo (struct sockaddr_in6 *)&iflr->dstaddr);
1620 1.95 rpaulo if (error != 0)
1621 1.116 dyoung return error;
1622 1.2 itojun } else
1623 1.148 cegger memset(&iflr->dstaddr, 0, sizeof(iflr->dstaddr));
1624 1.2 itojun
1625 1.2 itojun iflr->prefixlen =
1626 1.65 itojun in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL);
1627 1.2 itojun
1628 1.52 itojun iflr->flags = ia->ia6_flags; /* XXX */
1629 1.2 itojun
1630 1.2 itojun return 0;
1631 1.2 itojun } else {
1632 1.2 itojun struct in6_aliasreq ifra;
1633 1.2 itojun
1634 1.2 itojun /* fill in6_aliasreq and do ioctl(SIOCDIFADDR_IN6) */
1635 1.148 cegger memset(&ifra, 0, sizeof(ifra));
1636 1.150 tsutsui memcpy(ifra.ifra_name, iflr->iflr_name,
1637 1.65 itojun sizeof(ifra.ifra_name));
1638 1.2 itojun
1639 1.150 tsutsui memcpy(&ifra.ifra_addr, &ia->ia_addr,
1640 1.65 itojun ia->ia_addr.sin6_len);
1641 1.2 itojun if ((ifp->if_flags & IFF_POINTOPOINT) != 0) {
1642 1.150 tsutsui memcpy(&ifra.ifra_dstaddr, &ia->ia_dstaddr,
1643 1.65 itojun ia->ia_dstaddr.sin6_len);
1644 1.23 itojun } else {
1645 1.148 cegger memset(&ifra.ifra_dstaddr, 0,
1646 1.23 itojun sizeof(ifra.ifra_dstaddr));
1647 1.2 itojun }
1648 1.150 tsutsui memcpy(&ifra.ifra_dstaddr, &ia->ia_prefixmask,
1649 1.65 itojun ia->ia_prefixmask.sin6_len);
1650 1.2 itojun
1651 1.2 itojun ifra.ifra_flags = ia->ia6_flags;
1652 1.172 rtr return in6_control(so, SIOCDIFADDR_IN6, &ifra, ifp);
1653 1.2 itojun }
1654 1.2 itojun }
1655 1.2 itojun }
1656 1.2 itojun
1657 1.52 itojun return EOPNOTSUPP; /* just for safety */
1658 1.2 itojun }
1659 1.2 itojun
1660 1.2 itojun /*
1661 1.111 is * Initialize an interface's internet6 address
1662 1.2 itojun * and routing table entry.
1663 1.2 itojun */
1664 1.52 itojun static int
1665 1.127 christos in6_ifinit(struct ifnet *ifp, struct in6_ifaddr *ia,
1666 1.146 dyoung const struct sockaddr_in6 *sin6, int newhost)
1667 1.2 itojun {
1668 1.65 itojun int error = 0, plen, ifacount = 0;
1669 1.45 thorpej int s = splnet();
1670 1.65 itojun struct ifaddr *ifa;
1671 1.2 itojun
1672 1.2 itojun /*
1673 1.2 itojun * Give the interface a chance to initialize
1674 1.2 itojun * if this is its first address,
1675 1.2 itojun * and to validate the address if necessary.
1676 1.2 itojun */
1677 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1678 1.65 itojun if (ifa->ifa_addr == NULL)
1679 1.65 itojun continue; /* just for safety */
1680 1.65 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1681 1.65 itojun continue;
1682 1.65 itojun ifacount++;
1683 1.65 itojun }
1684 1.65 itojun
1685 1.65 itojun ia->ia_addr = *sin6;
1686 1.65 itojun
1687 1.158 dyoung if (ifacount <= 1 &&
1688 1.158 dyoung (error = if_addr_init(ifp, &ia->ia_ifa, true)) != 0) {
1689 1.2 itojun splx(s);
1690 1.116 dyoung return error;
1691 1.2 itojun }
1692 1.65 itojun splx(s);
1693 1.65 itojun
1694 1.65 itojun ia->ia_ifa.ifa_metric = ifp->if_metric;
1695 1.2 itojun
1696 1.65 itojun /* we could do in(6)_socktrim here, but just omit it at this moment. */
1697 1.2 itojun
1698 1.2 itojun /*
1699 1.65 itojun * Special case:
1700 1.65 itojun * If the destination address is specified for a point-to-point
1701 1.65 itojun * interface, install a route to the destination as an interface
1702 1.65 itojun * direct route.
1703 1.2 itojun */
1704 1.65 itojun plen = in6_mask2len(&ia->ia_prefixmask.sin6_addr, NULL); /* XXX */
1705 1.65 itojun if (plen == 128 && ia->ia_dstaddr.sin6_family == AF_INET6) {
1706 1.146 dyoung if ((error = rtinit(&ia->ia_ifa, RTM_ADD,
1707 1.65 itojun RTF_UP | RTF_HOST)) != 0)
1708 1.116 dyoung return error;
1709 1.65 itojun ia->ia_flags |= IFA_ROUTE;
1710 1.2 itojun }
1711 1.2 itojun
1712 1.65 itojun /* Add ownaddr as loopback rtentry, if necessary (ex. on p2p link). */
1713 1.65 itojun if (newhost) {
1714 1.65 itojun /* set the rtrequest function to create llinfo */
1715 1.187 roy if (ifp->if_flags & IFF_POINTOPOINT)
1716 1.187 roy ia->ia_ifa.ifa_rtrequest = p2p_rtrequest;
1717 1.187 roy else if ((ifp->if_flags & IFF_LOOPBACK) == 0)
1718 1.184 roy ia->ia_ifa.ifa_rtrequest = nd6_rtrequest;
1719 1.184 roy in6_ifaddlocal(&ia->ia_ifa);
1720 1.163 roy } else {
1721 1.163 roy /* Inform the routing socket of new flags/timings */
1722 1.183 roy rt_newaddrmsg(RTM_NEWADDR, &ia->ia_ifa, 0, NULL);
1723 1.65 itojun }
1724 1.2 itojun
1725 1.2 itojun if (ifp->if_flags & IFF_MULTICAST)
1726 1.2 itojun in6_restoremkludge(ia, ifp);
1727 1.2 itojun
1728 1.116 dyoung return error;
1729 1.2 itojun }
1730 1.2 itojun
1731 1.156 dyoung static struct ifaddr *
1732 1.156 dyoung bestifa(struct ifaddr *best_ifa, struct ifaddr *ifa)
1733 1.156 dyoung {
1734 1.156 dyoung if (best_ifa == NULL || best_ifa->ifa_preference < ifa->ifa_preference)
1735 1.156 dyoung return ifa;
1736 1.156 dyoung return best_ifa;
1737 1.156 dyoung }
1738 1.156 dyoung
1739 1.2 itojun /*
1740 1.2 itojun * Find an IPv6 interface link-local address specific to an interface.
1741 1.2 itojun */
1742 1.2 itojun struct in6_ifaddr *
1743 1.123 dyoung in6ifa_ifpforlinklocal(const struct ifnet *ifp, const int ignoreflags)
1744 1.2 itojun {
1745 1.153 dyoung struct ifaddr *best_ifa = NULL, *ifa;
1746 1.2 itojun
1747 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1748 1.2 itojun if (ifa->ifa_addr == NULL)
1749 1.2 itojun continue; /* just for safety */
1750 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1751 1.2 itojun continue;
1752 1.153 dyoung if (!IN6_IS_ADDR_LINKLOCAL(IFA_IN6(ifa)))
1753 1.153 dyoung continue;
1754 1.153 dyoung if ((((struct in6_ifaddr *)ifa)->ia6_flags & ignoreflags) != 0)
1755 1.153 dyoung continue;
1756 1.156 dyoung best_ifa = bestifa(best_ifa, ifa);
1757 1.2 itojun }
1758 1.2 itojun
1759 1.153 dyoung return (struct in6_ifaddr *)best_ifa;
1760 1.2 itojun }
1761 1.2 itojun
1762 1.2 itojun
1763 1.2 itojun /*
1764 1.2 itojun * find the internet address corresponding to a given interface and address.
1765 1.2 itojun */
1766 1.2 itojun struct in6_ifaddr *
1767 1.123 dyoung in6ifa_ifpwithaddr(const struct ifnet *ifp, const struct in6_addr *addr)
1768 1.2 itojun {
1769 1.156 dyoung struct ifaddr *best_ifa = NULL, *ifa;
1770 1.2 itojun
1771 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1772 1.2 itojun if (ifa->ifa_addr == NULL)
1773 1.2 itojun continue; /* just for safety */
1774 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1775 1.2 itojun continue;
1776 1.156 dyoung if (!IN6_ARE_ADDR_EQUAL(addr, IFA_IN6(ifa)))
1777 1.156 dyoung continue;
1778 1.156 dyoung best_ifa = bestifa(best_ifa, ifa);
1779 1.2 itojun }
1780 1.2 itojun
1781 1.156 dyoung return (struct in6_ifaddr *)best_ifa;
1782 1.156 dyoung }
1783 1.156 dyoung
1784 1.156 dyoung static struct in6_ifaddr *
1785 1.156 dyoung bestia(struct in6_ifaddr *best_ia, struct in6_ifaddr *ia)
1786 1.156 dyoung {
1787 1.156 dyoung if (best_ia == NULL ||
1788 1.156 dyoung best_ia->ia_ifa.ifa_preference < ia->ia_ifa.ifa_preference)
1789 1.156 dyoung return ia;
1790 1.156 dyoung return best_ia;
1791 1.2 itojun }
1792 1.2 itojun
1793 1.2 itojun /*
1794 1.2 itojun * Convert IP6 address to printable (loggable) representation.
1795 1.2 itojun */
1796 1.2 itojun char *
1797 1.127 christos ip6_sprintf(const struct in6_addr *addr)
1798 1.2 itojun {
1799 1.180 christos static int ip6round = 0;
1800 1.180 christos static char ip6buf[8][INET6_ADDRSTRLEN];
1801 1.180 christos char *cp = ip6buf[ip6round++ & 7];
1802 1.180 christos
1803 1.180 christos in6_print(cp, INET6_ADDRSTRLEN, addr);
1804 1.180 christos return cp;
1805 1.74 thorpej }
1806 1.74 thorpej
1807 1.74 thorpej /*
1808 1.74 thorpej * Determine if an address is on a local network.
1809 1.74 thorpej */
1810 1.74 thorpej int
1811 1.134 dyoung in6_localaddr(const struct in6_addr *in6)
1812 1.74 thorpej {
1813 1.74 thorpej struct in6_ifaddr *ia;
1814 1.74 thorpej
1815 1.74 thorpej if (IN6_IS_ADDR_LOOPBACK(in6) || IN6_IS_ADDR_LINKLOCAL(in6))
1816 1.116 dyoung return 1;
1817 1.74 thorpej
1818 1.74 thorpej for (ia = in6_ifaddr; ia; ia = ia->ia_next)
1819 1.74 thorpej if (IN6_ARE_MASKED_ADDR_EQUAL(in6, &ia->ia_addr.sin6_addr,
1820 1.74 thorpej &ia->ia_prefixmask.sin6_addr))
1821 1.116 dyoung return 1;
1822 1.74 thorpej
1823 1.116 dyoung return 0;
1824 1.2 itojun }
1825 1.2 itojun
1826 1.65 itojun int
1827 1.127 christos in6_is_addr_deprecated(struct sockaddr_in6 *sa6)
1828 1.65 itojun {
1829 1.65 itojun struct in6_ifaddr *ia;
1830 1.65 itojun
1831 1.65 itojun for (ia = in6_ifaddr; ia; ia = ia->ia_next) {
1832 1.65 itojun if (IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr,
1833 1.65 itojun &sa6->sin6_addr) &&
1834 1.65 itojun #ifdef SCOPEDROUTING
1835 1.65 itojun ia->ia_addr.sin6_scope_id == sa6->sin6_scope_id &&
1836 1.65 itojun #endif
1837 1.65 itojun (ia->ia6_flags & IN6_IFF_DEPRECATED) != 0)
1838 1.116 dyoung return 1; /* true */
1839 1.65 itojun
1840 1.65 itojun /* XXX: do we still have to go thru the rest of the list? */
1841 1.65 itojun }
1842 1.65 itojun
1843 1.116 dyoung return 0; /* false */
1844 1.21 itojun }
1845 1.21 itojun
1846 1.2 itojun /*
1847 1.2 itojun * return length of part which dst and src are equal
1848 1.2 itojun * hard coding...
1849 1.2 itojun */
1850 1.2 itojun int
1851 1.127 christos in6_matchlen(struct in6_addr *src, struct in6_addr *dst)
1852 1.2 itojun {
1853 1.2 itojun int match = 0;
1854 1.2 itojun u_char *s = (u_char *)src, *d = (u_char *)dst;
1855 1.2 itojun u_char *lim = s + 16, r;
1856 1.2 itojun
1857 1.2 itojun while (s < lim)
1858 1.2 itojun if ((r = (*d++ ^ *s++)) != 0) {
1859 1.2 itojun while (r < 128) {
1860 1.2 itojun match++;
1861 1.2 itojun r <<= 1;
1862 1.2 itojun }
1863 1.2 itojun break;
1864 1.2 itojun } else
1865 1.120 dyoung match += NBBY;
1866 1.2 itojun return match;
1867 1.2 itojun }
1868 1.2 itojun
1869 1.52 itojun /* XXX: to be scope conscious */
1870 1.8 itojun int
1871 1.127 christos in6_are_prefix_equal(struct in6_addr *p1, struct in6_addr *p2, int len)
1872 1.8 itojun {
1873 1.8 itojun int bytelen, bitlen;
1874 1.8 itojun
1875 1.8 itojun /* sanity check */
1876 1.100 rpaulo if (len < 0 || len > 128) {
1877 1.8 itojun log(LOG_ERR, "in6_are_prefix_equal: invalid prefix length(%d)\n",
1878 1.8 itojun len);
1879 1.116 dyoung return 0;
1880 1.8 itojun }
1881 1.8 itojun
1882 1.120 dyoung bytelen = len / NBBY;
1883 1.120 dyoung bitlen = len % NBBY;
1884 1.8 itojun
1885 1.147 cegger if (memcmp(&p1->s6_addr, &p2->s6_addr, bytelen))
1886 1.116 dyoung return 0;
1887 1.85 itojun if (bitlen != 0 &&
1888 1.120 dyoung p1->s6_addr[bytelen] >> (NBBY - bitlen) !=
1889 1.120 dyoung p2->s6_addr[bytelen] >> (NBBY - bitlen))
1890 1.116 dyoung return 0;
1891 1.8 itojun
1892 1.116 dyoung return 1;
1893 1.8 itojun }
1894 1.8 itojun
1895 1.8 itojun void
1896 1.127 christos in6_prefixlen2mask(struct in6_addr *maskp, int len)
1897 1.8 itojun {
1898 1.120 dyoung static const u_char maskarray[NBBY] = {0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff};
1899 1.8 itojun int bytelen, bitlen, i;
1900 1.8 itojun
1901 1.8 itojun /* sanity check */
1902 1.101 rpaulo if (len < 0 || len > 128) {
1903 1.8 itojun log(LOG_ERR, "in6_prefixlen2mask: invalid prefix length(%d)\n",
1904 1.8 itojun len);
1905 1.8 itojun return;
1906 1.8 itojun }
1907 1.8 itojun
1908 1.148 cegger memset(maskp, 0, sizeof(*maskp));
1909 1.120 dyoung bytelen = len / NBBY;
1910 1.120 dyoung bitlen = len % NBBY;
1911 1.8 itojun for (i = 0; i < bytelen; i++)
1912 1.8 itojun maskp->s6_addr[i] = 0xff;
1913 1.8 itojun if (bitlen)
1914 1.8 itojun maskp->s6_addr[bytelen] = maskarray[bitlen - 1];
1915 1.8 itojun }
1916 1.8 itojun
1917 1.2 itojun /*
1918 1.2 itojun * return the best address out of the same scope. if no address was
1919 1.2 itojun * found, return the first valid address from designated IF.
1920 1.2 itojun */
1921 1.2 itojun struct in6_ifaddr *
1922 1.127 christos in6_ifawithifp(struct ifnet *ifp, struct in6_addr *dst)
1923 1.2 itojun {
1924 1.2 itojun int dst_scope = in6_addrscope(dst), blen = -1, tlen;
1925 1.2 itojun struct ifaddr *ifa;
1926 1.156 dyoung struct in6_ifaddr *best_ia = NULL, *ia;
1927 1.52 itojun struct in6_ifaddr *dep[2]; /* last-resort: deprecated */
1928 1.8 itojun
1929 1.8 itojun dep[0] = dep[1] = NULL;
1930 1.2 itojun
1931 1.2 itojun /*
1932 1.18 itojun * We first look for addresses in the same scope.
1933 1.2 itojun * If there is one, return it.
1934 1.2 itojun * If two or more, return one which matches the dst longest.
1935 1.2 itojun * If none, return one of global addresses assigned other ifs.
1936 1.2 itojun */
1937 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1938 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1939 1.2 itojun continue;
1940 1.156 dyoung ia = (struct in6_ifaddr *)ifa;
1941 1.156 dyoung if (ia->ia6_flags & IN6_IFF_ANYCAST)
1942 1.2 itojun continue; /* XXX: is there any case to allow anycast? */
1943 1.156 dyoung if (ia->ia6_flags & IN6_IFF_NOTREADY)
1944 1.2 itojun continue; /* don't use this interface */
1945 1.156 dyoung if (ia->ia6_flags & IN6_IFF_DETACHED)
1946 1.2 itojun continue;
1947 1.156 dyoung if (ia->ia6_flags & IN6_IFF_DEPRECATED) {
1948 1.8 itojun if (ip6_use_deprecated)
1949 1.156 dyoung dep[0] = ia;
1950 1.2 itojun continue;
1951 1.8 itojun }
1952 1.2 itojun
1953 1.156 dyoung if (dst_scope != in6_addrscope(IFA_IN6(ifa)))
1954 1.156 dyoung continue;
1955 1.156 dyoung /*
1956 1.156 dyoung * call in6_matchlen() as few as possible
1957 1.156 dyoung */
1958 1.156 dyoung if (best_ia == NULL) {
1959 1.156 dyoung best_ia = ia;
1960 1.156 dyoung continue;
1961 1.2 itojun }
1962 1.156 dyoung if (blen == -1)
1963 1.156 dyoung blen = in6_matchlen(&best_ia->ia_addr.sin6_addr, dst);
1964 1.156 dyoung tlen = in6_matchlen(IFA_IN6(ifa), dst);
1965 1.156 dyoung if (tlen > blen) {
1966 1.156 dyoung blen = tlen;
1967 1.156 dyoung best_ia = ia;
1968 1.156 dyoung } else if (tlen == blen)
1969 1.156 dyoung best_ia = bestia(best_ia, ia);
1970 1.2 itojun }
1971 1.156 dyoung if (best_ia != NULL)
1972 1.156 dyoung return best_ia;
1973 1.2 itojun
1974 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
1975 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
1976 1.2 itojun continue;
1977 1.156 dyoung ia = (struct in6_ifaddr *)ifa;
1978 1.156 dyoung if (ia->ia6_flags & IN6_IFF_ANYCAST)
1979 1.2 itojun continue; /* XXX: is there any case to allow anycast? */
1980 1.156 dyoung if (ia->ia6_flags & IN6_IFF_NOTREADY)
1981 1.2 itojun continue; /* don't use this interface */
1982 1.156 dyoung if (ia->ia6_flags & IN6_IFF_DETACHED)
1983 1.2 itojun continue;
1984 1.156 dyoung if (ia->ia6_flags & IN6_IFF_DEPRECATED) {
1985 1.8 itojun if (ip6_use_deprecated)
1986 1.8 itojun dep[1] = (struct in6_ifaddr *)ifa;
1987 1.2 itojun continue;
1988 1.8 itojun }
1989 1.2 itojun
1990 1.156 dyoung best_ia = bestia(best_ia, ia);
1991 1.2 itojun }
1992 1.156 dyoung if (best_ia != NULL)
1993 1.156 dyoung return best_ia;
1994 1.2 itojun
1995 1.8 itojun /* use the last-resort values, that are, deprecated addresses */
1996 1.8 itojun if (dep[0])
1997 1.8 itojun return dep[0];
1998 1.8 itojun if (dep[1])
1999 1.8 itojun return dep[1];
2000 1.8 itojun
2001 1.2 itojun return NULL;
2002 1.2 itojun }
2003 1.2 itojun
2004 1.2 itojun /*
2005 1.2 itojun * perform DAD when interface becomes IFF_UP.
2006 1.2 itojun */
2007 1.2 itojun void
2008 1.165 roy in6_if_link_up(struct ifnet *ifp)
2009 1.2 itojun {
2010 1.2 itojun struct ifaddr *ifa;
2011 1.2 itojun struct in6_ifaddr *ia;
2012 1.2 itojun
2013 1.164 roy /* Ensure it's sane to run DAD */
2014 1.164 roy if (ifp->if_link_state == LINK_STATE_DOWN)
2015 1.164 roy return;
2016 1.164 roy if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
2017 1.164 roy return;
2018 1.164 roy
2019 1.136 dyoung IFADDR_FOREACH(ifa, ifp) {
2020 1.2 itojun if (ifa->ifa_addr->sa_family != AF_INET6)
2021 1.2 itojun continue;
2022 1.2 itojun ia = (struct in6_ifaddr *)ifa;
2023 1.164 roy
2024 1.164 roy /* If detached then mark as tentative */
2025 1.164 roy if (ia->ia6_flags & IN6_IFF_DETACHED) {
2026 1.164 roy ia->ia6_flags &= ~IN6_IFF_DETACHED;
2027 1.186 roy if (if_do_dad(ifp)) {
2028 1.164 roy ia->ia6_flags |= IN6_IFF_TENTATIVE;
2029 1.164 roy nd6log((LOG_ERR, "in6_if_up: "
2030 1.164 roy "%s marked tentative\n",
2031 1.164 roy ip6_sprintf(&ia->ia_addr.sin6_addr)));
2032 1.164 roy } else if ((ia->ia6_flags & IN6_IFF_TENTATIVE) == 0)
2033 1.183 roy rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
2034 1.164 roy }
2035 1.164 roy
2036 1.98 rpaulo if (ia->ia6_flags & IN6_IFF_TENTATIVE) {
2037 1.174 justin int rand_delay;
2038 1.179 roy
2039 1.179 roy /* Clear the duplicated flag as we're starting DAD. */
2040 1.179 roy ia->ia6_flags &= ~IN6_IFF_DUPLICATED;
2041 1.179 roy
2042 1.98 rpaulo /*
2043 1.98 rpaulo * The TENTATIVE flag was likely set by hand
2044 1.98 rpaulo * beforehand, implicitly indicating the need for DAD.
2045 1.98 rpaulo * We may be able to skip the random delay in this
2046 1.98 rpaulo * case, but we impose delays just in case.
2047 1.98 rpaulo */
2048 1.174 justin rand_delay = cprng_fast32() %
2049 1.173 ozaki (MAX_RTR_SOLICITATION_DELAY * hz);
2050 1.173 ozaki /* +1 ensures callout is always used */
2051 1.174 justin nd6_dad_start(ifa, rand_delay + 1);
2052 1.98 rpaulo }
2053 1.55 itojun }
2054 1.98 rpaulo
2055 1.165 roy /* Restore any detached prefixes */
2056 1.165 roy pfxlist_onlink_check();
2057 1.165 roy }
2058 1.165 roy
2059 1.165 roy void
2060 1.165 roy in6_if_up(struct ifnet *ifp)
2061 1.165 roy {
2062 1.165 roy
2063 1.98 rpaulo /*
2064 1.98 rpaulo * special cases, like 6to4, are handled in in6_ifattach
2065 1.98 rpaulo */
2066 1.98 rpaulo in6_ifattach(ifp, NULL);
2067 1.164 roy
2068 1.165 roy /* interface may not support link state, so bring it up also */
2069 1.165 roy in6_if_link_up(ifp);
2070 1.164 roy }
2071 1.179 roy
2072 1.164 roy /*
2073 1.164 roy * Mark all addresses as detached.
2074 1.164 roy */
2075 1.164 roy void
2076 1.165 roy in6_if_link_down(struct ifnet *ifp)
2077 1.164 roy {
2078 1.164 roy struct ifaddr *ifa;
2079 1.164 roy struct in6_ifaddr *ia;
2080 1.164 roy
2081 1.165 roy /* Any prefixes on this interface should be detached as well */
2082 1.165 roy pfxlist_onlink_check();
2083 1.165 roy
2084 1.164 roy IFADDR_FOREACH(ifa, ifp) {
2085 1.164 roy if (ifa->ifa_addr->sa_family != AF_INET6)
2086 1.164 roy continue;
2087 1.164 roy ia = (struct in6_ifaddr *)ifa;
2088 1.164 roy
2089 1.164 roy /* Stop DAD processing */
2090 1.164 roy nd6_dad_stop(ifa);
2091 1.164 roy
2092 1.164 roy /*
2093 1.164 roy * Mark the address as detached.
2094 1.164 roy * This satisfies RFC4862 Section 5.3, but we should apply
2095 1.164 roy * this logic to all addresses to be a good citizen and
2096 1.164 roy * avoid potential duplicated addresses.
2097 1.164 roy * When the interface comes up again, detached addresses
2098 1.164 roy * are marked tentative and DAD commences.
2099 1.164 roy */
2100 1.164 roy if (!(ia->ia6_flags & IN6_IFF_DETACHED)) {
2101 1.164 roy nd6log((LOG_DEBUG, "in6_if_down: "
2102 1.164 roy "%s marked detached\n",
2103 1.164 roy ip6_sprintf(&ia->ia_addr.sin6_addr)));
2104 1.164 roy ia->ia6_flags |= IN6_IFF_DETACHED;
2105 1.179 roy ia->ia6_flags &=
2106 1.179 roy ~(IN6_IFF_TENTATIVE | IN6_IFF_DUPLICATED);
2107 1.183 roy rt_newaddrmsg(RTM_NEWADDR, ifa, 0, NULL);
2108 1.164 roy }
2109 1.164 roy }
2110 1.165 roy }
2111 1.164 roy
2112 1.165 roy void
2113 1.165 roy in6_if_down(struct ifnet *ifp)
2114 1.165 roy {
2115 1.165 roy
2116 1.165 roy in6_if_link_down(ifp);
2117 1.55 itojun }
2118 1.55 itojun
2119 1.188 roy void
2120 1.188 roy in6_if_link_state_change(struct ifnet *ifp, int link_state)
2121 1.188 roy {
2122 1.188 roy
2123 1.188 roy switch (link_state) {
2124 1.188 roy case LINK_STATE_DOWN:
2125 1.188 roy in6_if_link_down(ifp);
2126 1.188 roy break;
2127 1.188 roy case LINK_STATE_UP:
2128 1.188 roy in6_if_link_up(ifp);
2129 1.188 roy break;
2130 1.188 roy }
2131 1.188 roy }
2132 1.188 roy
2133 1.2 itojun /*
2134 1.2 itojun * Calculate max IPv6 MTU through all the interfaces and store it
2135 1.2 itojun * to in6_maxmtu.
2136 1.2 itojun */
2137 1.2 itojun void
2138 1.140 matt in6_setmaxmtu(void)
2139 1.2 itojun {
2140 1.2 itojun unsigned long maxmtu = 0;
2141 1.2 itojun struct ifnet *ifp;
2142 1.2 itojun
2143 1.170 rmind IFNET_FOREACH(ifp) {
2144 1.59 itojun /* this function can be called during ifnet initialization */
2145 1.59 itojun if (!ifp->if_afdata[AF_INET6])
2146 1.59 itojun continue;
2147 1.2 itojun if ((ifp->if_flags & IFF_LOOPBACK) == 0 &&
2148 1.59 itojun IN6_LINKMTU(ifp) > maxmtu)
2149 1.59 itojun maxmtu = IN6_LINKMTU(ifp);
2150 1.2 itojun }
2151 1.59 itojun if (maxmtu) /* update only when maxmtu is positive */
2152 1.2 itojun in6_maxmtu = maxmtu;
2153 1.58 itojun }
2154 1.58 itojun
2155 1.98 rpaulo /*
2156 1.98 rpaulo * Provide the length of interface identifiers to be used for the link attached
2157 1.98 rpaulo * to the given interface. The length should be defined in "IPv6 over
2158 1.98 rpaulo * xxx-link" document. Note that address architecture might also define
2159 1.98 rpaulo * the length for a particular set of address prefixes, regardless of the
2160 1.98 rpaulo * link type. As clarified in rfc2462bis, those two definitions should be
2161 1.98 rpaulo * consistent, and those really are as of August 2004.
2162 1.98 rpaulo */
2163 1.98 rpaulo int
2164 1.127 christos in6_if2idlen(struct ifnet *ifp)
2165 1.98 rpaulo {
2166 1.98 rpaulo switch (ifp->if_type) {
2167 1.98 rpaulo case IFT_ETHER: /* RFC2464 */
2168 1.98 rpaulo case IFT_PROPVIRTUAL: /* XXX: no RFC. treat it as ether */
2169 1.98 rpaulo case IFT_L2VLAN: /* ditto */
2170 1.98 rpaulo case IFT_IEEE80211: /* ditto */
2171 1.98 rpaulo case IFT_FDDI: /* RFC2467 */
2172 1.98 rpaulo case IFT_ISO88025: /* RFC2470 (IPv6 over Token Ring) */
2173 1.98 rpaulo case IFT_PPP: /* RFC2472 */
2174 1.98 rpaulo case IFT_ARCNET: /* RFC2497 */
2175 1.98 rpaulo case IFT_FRELAY: /* RFC2590 */
2176 1.98 rpaulo case IFT_IEEE1394: /* RFC3146 */
2177 1.98 rpaulo case IFT_GIF: /* draft-ietf-v6ops-mech-v2-07 */
2178 1.98 rpaulo case IFT_LOOP: /* XXX: is this really correct? */
2179 1.98 rpaulo return 64;
2180 1.98 rpaulo default:
2181 1.98 rpaulo /*
2182 1.98 rpaulo * Unknown link type:
2183 1.98 rpaulo * It might be controversial to use the today's common constant
2184 1.98 rpaulo * of 64 for these cases unconditionally. For full compliance,
2185 1.98 rpaulo * we should return an error in this case. On the other hand,
2186 1.98 rpaulo * if we simply miss the standard for the link type or a new
2187 1.98 rpaulo * standard is defined for a new link type, the IFID length
2188 1.98 rpaulo * is very likely to be the common constant. As a compromise,
2189 1.98 rpaulo * we always use the constant, but make an explicit notice
2190 1.98 rpaulo * indicating the "unknown" case.
2191 1.98 rpaulo */
2192 1.98 rpaulo printf("in6_if2idlen: unknown link type (%d)\n", ifp->if_type);
2193 1.98 rpaulo return 64;
2194 1.98 rpaulo }
2195 1.98 rpaulo }
2196 1.98 rpaulo
2197 1.58 itojun void *
2198 1.127 christos in6_domifattach(struct ifnet *ifp)
2199 1.58 itojun {
2200 1.58 itojun struct in6_ifextra *ext;
2201 1.58 itojun
2202 1.143 cegger ext = malloc(sizeof(*ext), M_IFADDR, M_WAITOK|M_ZERO);
2203 1.58 itojun
2204 1.143 cegger ext->in6_ifstat = malloc(sizeof(struct in6_ifstat),
2205 1.143 cegger M_IFADDR, M_WAITOK|M_ZERO);
2206 1.143 cegger
2207 1.143 cegger ext->icmp6_ifstat = malloc(sizeof(struct icmp6_ifstat),
2208 1.143 cegger M_IFADDR, M_WAITOK|M_ZERO);
2209 1.58 itojun
2210 1.58 itojun ext->nd_ifinfo = nd6_ifattach(ifp);
2211 1.95 rpaulo ext->scope6_id = scope6_ifattach(ifp);
2212 1.161 christos ext->nprefixes = 0;
2213 1.161 christos ext->ndefrouters = 0;
2214 1.58 itojun return ext;
2215 1.58 itojun }
2216 1.58 itojun
2217 1.58 itojun void
2218 1.115 christos in6_domifdetach(struct ifnet *ifp, void *aux)
2219 1.58 itojun {
2220 1.58 itojun struct in6_ifextra *ext = (struct in6_ifextra *)aux;
2221 1.58 itojun
2222 1.182 martin nd6_ifdetach(ifp, ext);
2223 1.58 itojun free(ext->in6_ifstat, M_IFADDR);
2224 1.58 itojun free(ext->icmp6_ifstat, M_IFADDR);
2225 1.95 rpaulo scope6_ifdetach(ext->scope6_id);
2226 1.58 itojun free(ext, M_IFADDR);
2227 1.2 itojun }
2228 1.130 christos
2229 1.130 christos /*
2230 1.130 christos * Convert sockaddr_in6 to sockaddr_in. Original sockaddr_in6 must be
2231 1.130 christos * v4 mapped addr or v4 compat addr
2232 1.130 christos */
2233 1.130 christos void
2234 1.130 christos in6_sin6_2_sin(struct sockaddr_in *sin, struct sockaddr_in6 *sin6)
2235 1.130 christos {
2236 1.148 cegger memset(sin, 0, sizeof(*sin));
2237 1.130 christos sin->sin_len = sizeof(struct sockaddr_in);
2238 1.130 christos sin->sin_family = AF_INET;
2239 1.130 christos sin->sin_port = sin6->sin6_port;
2240 1.130 christos sin->sin_addr.s_addr = sin6->sin6_addr.s6_addr32[3];
2241 1.130 christos }
2242 1.130 christos
2243 1.130 christos /* Convert sockaddr_in to sockaddr_in6 in v4 mapped addr format. */
2244 1.130 christos void
2245 1.181 rjs in6_sin_2_v4mapsin6(const struct sockaddr_in *sin, struct sockaddr_in6 *sin6)
2246 1.130 christos {
2247 1.148 cegger memset(sin6, 0, sizeof(*sin6));
2248 1.130 christos sin6->sin6_len = sizeof(struct sockaddr_in6);
2249 1.130 christos sin6->sin6_family = AF_INET6;
2250 1.130 christos sin6->sin6_port = sin->sin_port;
2251 1.130 christos sin6->sin6_addr.s6_addr32[0] = 0;
2252 1.130 christos sin6->sin6_addr.s6_addr32[1] = 0;
2253 1.130 christos sin6->sin6_addr.s6_addr32[2] = IPV6_ADDR_INT32_SMP;
2254 1.130 christos sin6->sin6_addr.s6_addr32[3] = sin->sin_addr.s_addr;
2255 1.130 christos }
2256 1.130 christos
2257 1.130 christos /* Convert sockaddr_in6 into sockaddr_in. */
2258 1.130 christos void
2259 1.130 christos in6_sin6_2_sin_in_sock(struct sockaddr *nam)
2260 1.130 christos {
2261 1.130 christos struct sockaddr_in *sin_p;
2262 1.130 christos struct sockaddr_in6 sin6;
2263 1.130 christos
2264 1.130 christos /*
2265 1.130 christos * Save original sockaddr_in6 addr and convert it
2266 1.130 christos * to sockaddr_in.
2267 1.130 christos */
2268 1.130 christos sin6 = *(struct sockaddr_in6 *)nam;
2269 1.130 christos sin_p = (struct sockaddr_in *)nam;
2270 1.130 christos in6_sin6_2_sin(sin_p, &sin6);
2271 1.130 christos }
2272 1.130 christos
2273 1.130 christos /* Convert sockaddr_in into sockaddr_in6 in v4 mapped addr format. */
2274 1.130 christos void
2275 1.130 christos in6_sin_2_v4mapsin6_in_sock(struct sockaddr **nam)
2276 1.130 christos {
2277 1.130 christos struct sockaddr_in *sin_p;
2278 1.130 christos struct sockaddr_in6 *sin6_p;
2279 1.130 christos
2280 1.130 christos sin6_p = malloc(sizeof(*sin6_p), M_SONAME, M_WAITOK);
2281 1.130 christos sin_p = (struct sockaddr_in *)*nam;
2282 1.130 christos in6_sin_2_v4mapsin6(sin_p, sin6_p);
2283 1.130 christos free(*nam, M_SONAME);
2284 1.130 christos *nam = (struct sockaddr *)sin6_p;
2285 1.130 christos }
2286