]>
Commit | Line | Data |
---|---|---|
b0d623f7 | 1 | /* |
6d2010ae | 2 | * Copyright (c) 2000-2011 Apple Inc. All rights reserved. |
b0d623f7 A |
3 | * |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
27 | */ | |
28 | ||
1c79356b A |
29 | /* $KAME: in6_prefix.c,v 1.27 2000/03/29 23:13:13 itojun Exp $ */ |
30 | ||
31 | /* | |
32 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | |
33 | * All rights reserved. | |
34 | * | |
35 | * Redistribution and use in source and binary forms, with or without | |
36 | * modification, are permitted provided that the following conditions | |
37 | * are met: | |
38 | * 1. Redistributions of source code must retain the above copyright | |
39 | * notice, this list of conditions and the following disclaimer. | |
40 | * 2. Redistributions in binary form must reproduce the above copyright | |
41 | * notice, this list of conditions and the following disclaimer in the | |
42 | * documentation and/or other materials provided with the distribution. | |
43 | * 3. Neither the name of the project nor the names of its contributors | |
44 | * may be used to endorse or promote products derived from this software | |
45 | * without specific prior written permission. | |
46 | * | |
47 | * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | |
48 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
49 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
50 | * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | |
51 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
52 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
53 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
54 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
55 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
56 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
57 | * SUCH DAMAGE. | |
58 | */ | |
59 | ||
60 | /* | |
61 | * Copyright (c) 1982, 1986, 1991, 1993 | |
62 | * The Regents of the University of California. All rights reserved. | |
63 | * | |
64 | * Redistribution and use in source and binary forms, with or without | |
65 | * modification, are permitted provided that the following conditions | |
66 | * are met: | |
67 | * 1. Redistributions of source code must retain the above copyright | |
68 | * notice, this list of conditions and the following disclaimer. | |
69 | * 2. Redistributions in binary form must reproduce the above copyright | |
70 | * notice, this list of conditions and the following disclaimer in the | |
71 | * documentation and/or other materials provided with the distribution. | |
72 | * 3. All advertising materials mentioning features or use of this software | |
73 | * must display the following acknowledgement: | |
74 | * This product includes software developed by the University of | |
75 | * California, Berkeley and its contributors. | |
76 | * 4. Neither the name of the University nor the names of its contributors | |
77 | * may be used to endorse or promote products derived from this software | |
78 | * without specific prior written permission. | |
79 | * | |
80 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
81 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
82 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
83 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
84 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
85 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
86 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
87 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
88 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
89 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
90 | * SUCH DAMAGE. | |
91 | * | |
92 | * @(#)in.c 8.2 (Berkeley) 11/15/93 | |
93 | */ | |
94 | ||
95 | #include <sys/param.h> | |
1c79356b A |
96 | #include <sys/malloc.h> |
97 | #include <sys/kernel.h> | |
98 | #include <sys/socket.h> | |
99 | #include <sys/socketvar.h> | |
100 | #include <sys/sockio.h> | |
101 | #include <sys/systm.h> | |
102 | #include <sys/syslog.h> | |
1c79356b | 103 | #include <sys/proc.h> |
1c79356b A |
104 | |
105 | #include <net/if.h> | |
106 | ||
107 | #include <netinet/in.h> | |
108 | #include <netinet/in_var.h> | |
109 | #include <netinet/ip6.h> | |
110 | #include <netinet6/in6_prefix.h> | |
111 | #include <netinet6/ip6_var.h> | |
112 | ||
9bccf70c A |
113 | #ifdef __APPLE__ |
114 | #define M_IP6RR M_IP6MISC | |
115 | #define M_RR_ADDR M_IP6MISC | |
116 | #else | |
117 | static MALLOC_DEFINE(M_IP6RR, "ip6rr", "IPv6 Router Renumbering Prefix"); | |
118 | static MALLOC_DEFINE(M_RR_ADDR, "rp_addr", "IPv6 Router Renumbering Ifid"); | |
1c79356b A |
119 | #endif |
120 | ||
121 | struct rr_prhead rr_prefix; | |
122 | ||
123 | #include <net/net_osdep.h> | |
124 | ||
91447636 A |
125 | static void add_each_addr(struct socket *so, struct rr_prefix *rpp, |
126 | struct rp_addr *rap); | |
127 | static int create_ra_entry(struct rp_addr **rapp); | |
128 | static int add_each_prefix(struct socket *so, struct rr_prefix *rpp); | |
129 | static void free_rp_entries(struct rr_prefix *rpp); | |
130 | static int link_stray_ia6s(struct rr_prefix *rpp); | |
131 | static void rp_remove(struct rr_prefix *rpp); | |
132 | extern lck_mtx_t *prefix6_mutex; | |
1c79356b A |
133 | |
134 | /* | |
135 | * Copy bits from src to tgt, from off bit for len bits. | |
136 | * Caller must specify collect tgtsize and srcsize. | |
137 | */ | |
138 | static void | |
139 | bit_copy(char *tgt, u_int tgtsize, char *src, u_int srcsize, | |
140 | u_int off, u_int len) | |
141 | { | |
142 | char *sp, *tp; | |
143 | ||
144 | /* arg values check */ | |
145 | if (srcsize < off || srcsize < (off + len) || | |
146 | tgtsize < off || tgtsize < (off + len)) { | |
147 | log(LOG_ERR, | |
148 | "in6_prefix.c: bit_copy: invalid args: srcsize %d,\n" | |
149 | "tgtsize %d, off %d, len %d\n", srcsize, tgtsize, off, | |
150 | len); | |
151 | return; | |
152 | } | |
153 | ||
154 | /* search start point */ | |
155 | for (sp = src, tp = tgt; off >= 8; sp++, tp++) | |
156 | off-=8; | |
157 | /* copy starting bits */ | |
158 | if (off) { | |
159 | char setbit; | |
160 | int startbits; | |
161 | ||
162 | startbits = min((8 - off), len); | |
163 | ||
164 | for (setbit = (0x80 >> off); startbits; | |
165 | setbit >>= 1, startbits--, len--) | |
166 | *tp |= (setbit & *sp); | |
167 | tp++; | |
168 | sp++; | |
169 | } | |
170 | /* copy midium bits */ | |
171 | for (; len >= 8; sp++, tp++) { | |
172 | *tp = *sp; | |
173 | len-=8; | |
174 | } | |
175 | /* copy ending bits */ | |
176 | if (len) { | |
177 | char setbit; | |
178 | ||
179 | for (setbit = 0x80; len; setbit >>= 1, len--) | |
180 | *tp |= (setbit & *sp); | |
181 | } | |
182 | } | |
183 | ||
184 | static struct ifprefix * | |
185 | in6_prefixwithifp(struct ifnet *ifp, int plen, struct in6_addr *dst) | |
186 | { | |
187 | struct ifprefix *ifpr; | |
188 | ||
189 | /* search matched prefix */ | |
91447636 | 190 | ifnet_lock_shared(ifp); |
9bccf70c A |
191 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
192 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
193 | { | |
1c79356b A |
194 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
195 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
196 | continue; | |
197 | if (plen <= in6_matchlen(dst, IFPR_IN6(ifpr))) | |
198 | break; | |
199 | } | |
91447636 | 200 | ifnet_lock_done(ifp); |
1c79356b A |
201 | return (ifpr); |
202 | } | |
203 | ||
b0d623f7 | 204 | #if 0 |
1c79356b A |
205 | /* |
206 | * Search prefix which matches arg prefix as specified in | |
207 | * draft-ietf-ipngwg-router-renum-08.txt | |
208 | */ | |
209 | static struct rr_prefix * | |
210 | search_matched_prefix(struct ifnet *ifp, struct in6_prefixreq *ipr) | |
211 | { | |
212 | struct ifprefix *ifpr; | |
213 | struct ifaddr *ifa; | |
214 | struct rr_prefix *rpp; | |
215 | ||
216 | /* search matched prefix */ | |
217 | ifpr = in6_prefixwithifp(ifp, ipr->ipr_plen, | |
218 | &ipr->ipr_prefix.sin6_addr); | |
219 | if (ifpr != NULL) | |
220 | return ifpr2rp(ifpr); | |
221 | ||
222 | /* | |
223 | * search matched addr, and then search prefix | |
224 | * which matches the addr | |
225 | */ | |
226 | ||
91447636 | 227 | ifnet_lock_shared(ifp); |
9bccf70c | 228 | TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) |
1c79356b | 229 | { |
6d2010ae A |
230 | IFA_LOCK(ifa); |
231 | if (ifa->ifa_addr->sa_family != AF_INET6) { | |
232 | IFA_UNLOCK(ifa); | |
1c79356b | 233 | continue; |
6d2010ae | 234 | } |
1c79356b | 235 | if (ipr->ipr_plen <= |
6d2010ae A |
236 | in6_matchlen(&ipr->ipr_prefix.sin6_addr, IFA_IN6(ifa))) { |
237 | /* keep it locked */ | |
1c79356b | 238 | break; |
6d2010ae A |
239 | } |
240 | IFA_UNLOCK(ifa); | |
1c79356b | 241 | } |
91447636 A |
242 | if (ifa == NULL) { |
243 | ifnet_lock_done(ifp); | |
1c79356b | 244 | return NULL; |
91447636 | 245 | } |
6d2010ae | 246 | IFA_LOCK_ASSERT_HELD(ifa); |
1c79356b | 247 | rpp = ifpr2rp(((struct in6_ifaddr *)ifa)->ia6_ifpr); |
6d2010ae | 248 | IFA_UNLOCK(ifa); |
91447636 A |
249 | if (rpp != 0) { |
250 | ifnet_lock_done(ifp); | |
1c79356b | 251 | return rpp; |
91447636 A |
252 | } |
253 | ||
9bccf70c A |
254 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
255 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
256 | { | |
1c79356b A |
257 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
258 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
259 | continue; | |
260 | if (ifpr->ifpr_plen <= in6_matchlen(IFA_IN6(ifa), | |
261 | IFPR_IN6(ifpr))) | |
262 | break; | |
263 | } | |
91447636 | 264 | ifnet_lock_done(ifp); |
1c79356b A |
265 | if (ifpr != NULL) |
266 | log(LOG_ERR, "in6_prefix.c: search_matched_prefix: addr %s" | |
267 | "has no pointer to prefix %s\n", ip6_sprintf(IFA_IN6(ifa)), | |
268 | ip6_sprintf(IFPR_IN6(ifpr))); | |
269 | return ifpr2rp(ifpr); | |
270 | } | |
271 | ||
272 | /* | |
273 | * Search prefix which matches arg prefix as specified in | |
274 | * draft-ietf-ipngwg-router-renum-08.txt, and mark it if exists. | |
275 | * Return 1 if anything matched, and 0 if nothing matched. | |
276 | */ | |
277 | static int | |
b0d623f7 | 278 | mark_matched_prefixes(u_int32_t cmd, struct ifnet *ifp, struct in6_rrenumreq *irr) |
1c79356b A |
279 | { |
280 | struct ifprefix *ifpr; | |
281 | struct ifaddr *ifa; | |
282 | int matchlen, matched = 0; | |
283 | ||
284 | /* search matched prefixes */ | |
91447636 | 285 | ifnet_lock_exclusive(ifp); /* Should if_prefixhead be protected by IPv6?? */ |
9bccf70c A |
286 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
287 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
288 | { | |
1c79356b A |
289 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
290 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
291 | continue; | |
292 | matchlen = in6_matchlen(&irr->irr_matchprefix.sin6_addr, | |
293 | IFPR_IN6(ifpr)); | |
294 | if (irr->irr_m_minlen > ifpr->ifpr_plen || | |
295 | irr->irr_m_maxlen < ifpr->ifpr_plen || | |
296 | irr->irr_m_len > matchlen) | |
297 | continue; | |
298 | matched = 1; | |
299 | ifpr2rp(ifpr)->rp_statef_addmark = 1; | |
300 | if (cmd == SIOCCIFPREFIX_IN6) | |
301 | ifpr2rp(ifpr)->rp_statef_delmark = 1; | |
302 | } | |
303 | ||
304 | /* | |
305 | * search matched addr, and then search prefixes | |
306 | * which matche the addr | |
307 | */ | |
9bccf70c | 308 | TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) |
1c79356b A |
309 | { |
310 | struct rr_prefix *rpp; | |
311 | ||
6d2010ae A |
312 | IFA_LOCK(ifa); |
313 | if (ifa->ifa_addr->sa_family != AF_INET6) { | |
314 | IFA_UNLOCK(ifa); | |
1c79356b | 315 | continue; |
6d2010ae | 316 | } |
1c79356b A |
317 | matchlen = in6_matchlen(&irr->irr_matchprefix.sin6_addr, |
318 | IFA_IN6(ifa)); | |
319 | if (irr->irr_m_minlen > matchlen || | |
6d2010ae A |
320 | irr->irr_m_maxlen < matchlen || irr->irr_m_len > matchlen) { |
321 | IFA_UNLOCK(ifa); | |
322 | continue; | |
323 | } | |
1c79356b A |
324 | rpp = ifpr2rp(((struct in6_ifaddr *)ifa)->ia6_ifpr); |
325 | if (rpp != 0) { | |
326 | matched = 1; | |
327 | rpp->rp_statef_addmark = 1; | |
328 | if (cmd == SIOCCIFPREFIX_IN6) | |
329 | rpp->rp_statef_delmark = 1; | |
6d2010ae | 330 | } else { |
1c79356b A |
331 | log(LOG_WARNING, "in6_prefix.c: mark_matched_prefixes:" |
332 | "no back pointer to ifprefix for %s. " | |
333 | "ND autoconfigured addr?\n", | |
334 | ip6_sprintf(IFA_IN6(ifa))); | |
6d2010ae A |
335 | } |
336 | IFA_UNLOCK(ifa); | |
1c79356b | 337 | } |
91447636 | 338 | ifnet_lock_done(ifp); |
1c79356b A |
339 | return matched; |
340 | } | |
341 | ||
342 | /* | |
343 | * Mark global prefixes as to be deleted. | |
344 | */ | |
345 | static void | |
2d21ac55 | 346 | delmark_global_prefixes(struct ifnet *ifp, __unused struct in6_rrenumreq *irr) |
1c79356b A |
347 | { |
348 | struct ifprefix *ifpr; | |
349 | ||
350 | /* search matched prefixes */ | |
91447636 | 351 | ifnet_lock_exclusive(ifp); |
9bccf70c A |
352 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
353 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
354 | { | |
1c79356b A |
355 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
356 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
357 | continue; | |
358 | /* mark delete global prefix */ | |
359 | if (in6_addrscope(RP_IN6(ifpr2rp(ifpr))) == | |
360 | IPV6_ADDR_SCOPE_GLOBAL) | |
361 | ifpr2rp(ifpr)->rp_statef_delmark = 1; | |
362 | } | |
91447636 | 363 | ifnet_lock_done(ifp); |
1c79356b A |
364 | } |
365 | ||
366 | /* Unmark prefixes */ | |
367 | static void | |
368 | unmark_prefixes(struct ifnet *ifp) | |
369 | { | |
370 | struct ifprefix *ifpr; | |
371 | ||
372 | /* unmark all prefix */ | |
91447636 | 373 | ifnet_lock_exclusive(ifp); |
9bccf70c A |
374 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
375 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
376 | { | |
1c79356b A |
377 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
378 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
379 | continue; | |
380 | /* unmark prefix */ | |
381 | ifpr2rp(ifpr)->rp_statef_addmark = 0; | |
382 | ifpr2rp(ifpr)->rp_statef_delmark = 0; | |
383 | } | |
91447636 | 384 | ifnet_lock_done(ifp); |
1c79356b | 385 | } |
b0d623f7 | 386 | #endif |
1c79356b A |
387 | |
388 | static void | |
389 | init_prefix_ltimes(struct rr_prefix *rpp) | |
390 | { | |
91447636 A |
391 | struct timeval timenow; |
392 | ||
393 | getmicrotime(&timenow); | |
1c79356b A |
394 | |
395 | if (rpp->rp_pltime == RR_INFINITE_LIFETIME || | |
396 | rpp->rp_rrf_decrprefd == 0) | |
397 | rpp->rp_preferred = 0; | |
398 | else | |
91447636 | 399 | rpp->rp_preferred = timenow.tv_sec + rpp->rp_pltime; |
1c79356b A |
400 | if (rpp->rp_vltime == RR_INFINITE_LIFETIME || |
401 | rpp->rp_rrf_decrvalid == 0) | |
402 | rpp->rp_expire = 0; | |
403 | else | |
91447636 | 404 | rpp->rp_expire = timenow.tv_sec + rpp->rp_vltime; |
1c79356b A |
405 | } |
406 | ||
407 | static int | |
408 | rr_are_ifid_equal(struct in6_addr *ii1, struct in6_addr *ii2, int ii_len) | |
409 | { | |
410 | int ii_bytelen, ii_bitlen; | |
411 | int p_bytelen, p_bitlen; | |
412 | ||
413 | /* sanity check */ | |
414 | if (1 > ii_len || | |
415 | ii_len > 124) { /* as RFC2373, prefix is at least 4 bit */ | |
416 | log(LOG_ERR, "rr_are_ifid_equal: invalid ifid length(%d)\n", | |
417 | ii_len); | |
418 | return(0); | |
419 | } | |
420 | ||
421 | ii_bytelen = ii_len / 8; | |
422 | ii_bitlen = ii_len % 8; | |
423 | ||
424 | p_bytelen = sizeof(struct in6_addr) - ii_bytelen - 1; | |
425 | p_bitlen = 8 - ii_bitlen; | |
426 | ||
427 | if (bcmp(ii1->s6_addr + p_bytelen + 1, ii2->s6_addr + p_bytelen + 1, | |
428 | ii_bytelen)) | |
429 | return(0); | |
430 | if (((ii1->s6_addr[p_bytelen] << p_bitlen) & 0xff) != | |
431 | ((ii2->s6_addr[p_bytelen] << p_bitlen) & 0xff)) | |
432 | return(0); | |
433 | ||
434 | return(1); | |
435 | } | |
436 | ||
437 | static struct rp_addr * | |
438 | search_ifidwithprefix(struct rr_prefix *rpp, struct in6_addr *ifid) | |
439 | { | |
440 | struct rp_addr *rap; | |
441 | ||
91447636 | 442 | lck_mtx_lock(prefix6_mutex); |
9bccf70c A |
443 | LIST_FOREACH(rap, &rpp->rp_addrhead, ra_entry) |
444 | { | |
1c79356b A |
445 | if (rr_are_ifid_equal(ifid, &rap->ra_ifid, |
446 | (sizeof(struct in6_addr) << 3) - | |
447 | rpp->rp_plen)) | |
448 | break; | |
9bccf70c | 449 | } |
91447636 | 450 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
451 | return rap; |
452 | } | |
453 | ||
454 | static int | |
9bccf70c | 455 | assign_ra_entry(struct rr_prefix *rpp, int iilen, struct in6_ifaddr *ia) |
1c79356b A |
456 | { |
457 | int error = 0; | |
458 | struct rp_addr *rap; | |
1c79356b A |
459 | |
460 | if ((error = create_ra_entry(&rap)) != 0) | |
461 | return error; | |
462 | ||
463 | /* copy interface id part */ | |
6d2010ae | 464 | IFA_LOCK(&ia->ia_ifa); |
1c79356b | 465 | bit_copy((caddr_t)&rap->ra_ifid, sizeof(rap->ra_ifid) << 3, |
6d2010ae A |
466 | (caddr_t)IA6_IN6(ia), sizeof(*IA6_IN6(ia)) << 3, |
467 | rpp->rp_plen, iilen); | |
1c79356b A |
468 | /* link to ia, and put into list */ |
469 | rap->ra_addr = ia; | |
6d2010ae | 470 | IFA_ADDREF_LOCKED(&rap->ra_addr->ia_ifa); |
1c79356b A |
471 | #if 0 /* Can't do this now, because rpp may be on th stack. should fix it? */ |
472 | ia->ia6_ifpr = rp2ifpr(rpp); | |
473 | #endif | |
6d2010ae | 474 | IFA_UNLOCK(&ia->ia_ifa); |
91447636 | 475 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 476 | LIST_INSERT_HEAD(&rpp->rp_addrhead, rap, ra_entry); |
91447636 | 477 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
478 | |
479 | return 0; | |
480 | } | |
481 | ||
9bccf70c A |
482 | /* |
483 | * add a link-local address to an interface. we will add new interface address | |
484 | * (prefix database + new interface id). | |
485 | */ | |
1c79356b | 486 | static int |
2d21ac55 | 487 | in6_prefix_add_llifid(__unused int iilen, struct in6_ifaddr *ia) |
1c79356b A |
488 | { |
489 | struct rr_prefix *rpp; | |
490 | struct rp_addr *rap; | |
491 | struct socket so; | |
91447636 | 492 | int error; |
1c79356b A |
493 | |
494 | if ((error = create_ra_entry(&rap)) != 0) | |
495 | return(error); | |
496 | /* copy interface id part */ | |
6d2010ae | 497 | IFA_LOCK(&ia->ia_ifa); |
1c79356b A |
498 | bit_copy((caddr_t)&rap->ra_ifid, sizeof(rap->ra_ifid) << 3, |
499 | (caddr_t)IA6_IN6(ia), sizeof(*IA6_IN6(ia)) << 3, | |
500 | 64, (sizeof(rap->ra_ifid) << 3) - 64); | |
6d2010ae | 501 | IFA_UNLOCK(&ia->ia_ifa); |
1c79356b A |
502 | /* XXX: init dummy so */ |
503 | bzero(&so, sizeof(so)); | |
504 | /* insert into list */ | |
91447636 | 505 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 506 | LIST_FOREACH(rpp, &rr_prefix, rp_entry) |
1c79356b | 507 | { |
9bccf70c A |
508 | /* |
509 | * do not attempt to add an address, if ifp does not match | |
510 | */ | |
511 | if (rpp->rp_ifp != ia->ia_ifp) | |
512 | continue; | |
513 | ||
1c79356b | 514 | LIST_INSERT_HEAD(&rpp->rp_addrhead, rap, ra_entry); |
1c79356b A |
515 | add_each_addr(&so, rpp, rap); |
516 | } | |
91447636 | 517 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
518 | return 0; |
519 | } | |
520 | ||
6d2010ae | 521 | #if 0 |
9bccf70c A |
522 | /* |
523 | * add an address to an interface. if the interface id portion is new, | |
524 | * we will add new interface address (prefix database + new interface id). | |
525 | */ | |
1c79356b A |
526 | int |
527 | in6_prefix_add_ifid(int iilen, struct in6_ifaddr *ia) | |
528 | { | |
6d2010ae A |
529 | struct in6_addr addr; |
530 | int plen; | |
1c79356b A |
531 | struct ifprefix *ifpr; |
532 | struct rp_addr *rap; | |
533 | int error = 0; | |
534 | ||
6d2010ae A |
535 | IFA_LOCK_SPIN(&ia->ia_ifa); |
536 | addr = *IA6_IN6(ia); | |
537 | plen = (sizeof(*IA6_IN6(ia)) << 3) - iilen; | |
538 | IFA_UNLOCK(&ia->ia_ifa); | |
539 | ||
540 | if (IN6_IS_ADDR_LINKLOCAL(&addr)) | |
1c79356b | 541 | return(in6_prefix_add_llifid(iilen, ia)); |
6d2010ae | 542 | ifpr = in6_prefixwithifp(ia->ia_ifp, plen, &addr); |
1c79356b A |
543 | if (ifpr == NULL) { |
544 | struct rr_prefix rp; | |
545 | struct socket so; | |
6d2010ae | 546 | struct ifnet *ifp; |
9bccf70c | 547 | int pplen = (plen == 128) ? 64 : plen; /* XXX hardcoded 64 is bad */ |
1c79356b A |
548 | |
549 | /* allocate a prefix for ia, with default properties */ | |
550 | ||
551 | /* init rp */ | |
552 | bzero(&rp, sizeof(rp)); | |
553 | rp.rp_type = IN6_PREFIX_RR; | |
6d2010ae | 554 | rp.rp_ifp = ifp = ia->ia_ifp; |
1c79356b A |
555 | rp.rp_plen = pplen; |
556 | rp.rp_prefix.sin6_len = sizeof(rp.rp_prefix); | |
557 | rp.rp_prefix.sin6_family = AF_INET6; | |
558 | bit_copy((char *)RP_IN6(&rp), sizeof(*RP_IN6(&rp)) << 3, | |
6d2010ae | 559 | (char *)&addr, sizeof (addr) << 3, 0, pplen); |
1c79356b A |
560 | rp.rp_vltime = rp.rp_pltime = RR_INFINITE_LIFETIME; |
561 | rp.rp_raf_onlink = 1; | |
562 | rp.rp_raf_auto = 1; | |
563 | /* Is some FlagMasks for rrf necessary? */ | |
564 | rp.rp_rrf_decrvalid = rp.rp_rrf_decrprefd = 0; | |
565 | rp.rp_origin = PR_ORIG_RR; /* can be renumbered */ | |
566 | ||
567 | /* create ra_entry */ | |
6d2010ae | 568 | ifnet_lock_shared(ifp); |
1c79356b | 569 | error = link_stray_ia6s(&rp); |
6d2010ae | 570 | ifnet_lock_done(ifp); |
1c79356b A |
571 | if (error != 0) { |
572 | free_rp_entries(&rp); | |
573 | return error; | |
574 | } | |
575 | ||
576 | /* XXX: init dummy so */ | |
577 | bzero(&so, sizeof(so)); | |
1c79356b A |
578 | |
579 | error = add_each_prefix(&so, &rp); | |
580 | ||
581 | /* free each rp_addr entry */ | |
582 | free_rp_entries(&rp); | |
583 | ||
584 | if (error != 0) | |
585 | return error; | |
586 | ||
587 | /* search again */ | |
6d2010ae | 588 | ifpr = in6_prefixwithifp(ia->ia_ifp, pplen, &addr); |
1c79356b A |
589 | if (ifpr == NULL) |
590 | return 0; | |
591 | } | |
6d2010ae | 592 | rap = search_ifidwithprefix(ifpr2rp(ifpr), &addr); |
1c79356b A |
593 | if (rap != NULL) { |
594 | if (rap->ra_addr == NULL) { | |
595 | rap->ra_addr = ia; | |
6d2010ae | 596 | IFA_ADDREF(&rap->ra_addr->ia_ifa); |
1c79356b A |
597 | } else if (rap->ra_addr != ia) { |
598 | /* There may be some inconsistencies between addrs. */ | |
599 | log(LOG_ERR, "ip6_prefix.c: addr %s/%d matched prefix" | |
9bccf70c | 600 | " already has another ia %p(%s) on its ifid list\n", |
6d2010ae | 601 | ip6_sprintf(&addr), plen, rap->ra_addr, |
1c79356b A |
602 | ip6_sprintf(IA6_IN6(rap->ra_addr))); |
603 | return EADDRINUSE /* XXX */; | |
604 | } | |
6d2010ae | 605 | IFA_LOCK_SPIN(&ia->ia_ifa); |
1c79356b | 606 | ia->ia6_ifpr = ifpr; |
6d2010ae | 607 | IFA_UNLOCK(&ia->ia_ifa); |
1c79356b A |
608 | return 0; |
609 | } | |
9bccf70c | 610 | error = assign_ra_entry(ifpr2rp(ifpr), iilen, ia); |
6d2010ae A |
611 | if (error == 0) { |
612 | IFA_LOCK_SPIN(&ia->ia_ifa); | |
1c79356b | 613 | ia->ia6_ifpr = ifpr; |
6d2010ae A |
614 | IFA_UNLOCK(&ia->ia_ifa); |
615 | } | |
1c79356b A |
616 | return (error); |
617 | } | |
6d2010ae | 618 | #endif |
1c79356b | 619 | |
6d2010ae | 620 | #if 0 |
1c79356b | 621 | void |
2d21ac55 | 622 | in6_prefix_remove_ifid(__unused int iilen, struct in6_ifaddr *ia) |
1c79356b A |
623 | { |
624 | struct rp_addr *rap; | |
6d2010ae A |
625 | struct in6_addr addr; |
626 | struct ifprefix *ifpr; | |
1c79356b | 627 | |
6d2010ae A |
628 | IFA_LOCK_SPIN(&ia->ia_ifa); |
629 | if ((ifpr = ia->ia6_ifpr) == NULL) { | |
630 | IFA_UNLOCK(&ia->ia_ifa); | |
1c79356b | 631 | return; |
6d2010ae A |
632 | } |
633 | addr = *IA6_IN6(ia); | |
634 | IFA_UNLOCK(&ia->ia_ifa); | |
635 | rap = search_ifidwithprefix(ifpr2rp(ifpr), &addr); | |
1c79356b | 636 | if (rap != NULL) { |
91447636 | 637 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 638 | LIST_REMOVE(rap, ra_entry); |
91447636 | 639 | lck_mtx_unlock(prefix6_mutex); |
6d2010ae A |
640 | if (rap->ra_addr) { |
641 | IFA_REMREF(&rap->ra_addr->ia_ifa); | |
642 | rap->ra_addr = NULL; | |
643 | } | |
9bccf70c | 644 | FREE(rap, M_RR_ADDR); |
1c79356b A |
645 | } |
646 | ||
6d2010ae A |
647 | if (LIST_EMPTY(&ifpr2rp(ifpr)->rp_addrhead)) |
648 | rp_remove(ifpr2rp(ifpr)); | |
1c79356b | 649 | } |
6d2010ae | 650 | #endif |
1c79356b A |
651 | |
652 | void | |
91447636 A |
653 | in6_purgeprefix( |
654 | struct ifnet *ifp) | |
1c79356b A |
655 | { |
656 | struct ifprefix *ifpr, *nextifpr; | |
657 | ||
658 | /* delete prefixes before ifnet goes away */ | |
91447636 | 659 | ifnet_lock_exclusive(ifp); |
1c79356b A |
660 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; |
661 | ifpr = nextifpr) | |
1c79356b | 662 | { |
1c79356b | 663 | nextifpr = TAILQ_NEXT(ifpr, ifpr_list); |
1c79356b A |
664 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
665 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
666 | continue; | |
667 | (void)delete_each_prefix(ifpr2rp(ifpr), PR_ORIG_KERNEL); | |
668 | } | |
91447636 | 669 | ifnet_lock_done(ifp); |
1c79356b A |
670 | } |
671 | ||
672 | static void | |
673 | add_each_addr(struct socket *so, struct rr_prefix *rpp, struct rp_addr *rap) | |
674 | { | |
675 | struct in6_ifaddr *ia6; | |
676 | struct in6_aliasreq ifra; | |
b0d623f7 A |
677 | struct proc *p = current_proc(); |
678 | int error, p64 = proc_is64bit(p); | |
1c79356b A |
679 | |
680 | /* init ifra */ | |
681 | bzero(&ifra, sizeof(ifra)); | |
682 | strncpy(ifra.ifra_name, if_name(rpp->rp_ifp), sizeof(ifra.ifra_name)); | |
683 | ifra.ifra_addr.sin6_family = ifra.ifra_prefixmask.sin6_family = | |
684 | AF_INET6; | |
685 | ifra.ifra_addr.sin6_len = ifra.ifra_prefixmask.sin6_len = | |
686 | sizeof(ifra.ifra_addr); | |
687 | /* copy prefix part */ | |
688 | bit_copy((char *)&ifra.ifra_addr.sin6_addr, | |
689 | sizeof(ifra.ifra_addr.sin6_addr) << 3, | |
690 | (char *)RP_IN6(rpp), sizeof(*RP_IN6(rpp)) << 3, | |
691 | 0, rpp->rp_plen); | |
692 | /* copy interface id part */ | |
693 | bit_copy((char *)&ifra.ifra_addr.sin6_addr, | |
694 | sizeof(ifra.ifra_addr.sin6_addr) << 3, | |
695 | (char *)&rap->ra_ifid, sizeof(rap->ra_ifid) << 3, | |
696 | rpp->rp_plen, (sizeof(rap->ra_ifid) << 3) - rpp->rp_plen); | |
697 | in6_prefixlen2mask(&ifra.ifra_prefixmask.sin6_addr, rpp->rp_plen); | |
698 | /* don't care ifra_flags for now */ | |
699 | ||
9bccf70c A |
700 | /* |
701 | * XXX: if we did this with finite lifetime values, the lifetimes would | |
702 | * decrese in time and never incremented. | |
703 | * we should need more clarifications on the prefix mechanism... | |
704 | */ | |
705 | ifra.ifra_lifetime.ia6t_vltime = rpp->rp_vltime; | |
706 | ifra.ifra_lifetime.ia6t_pltime = rpp->rp_pltime; | |
707 | ||
1c79356b A |
708 | ia6 = in6ifa_ifpwithaddr(rpp->rp_ifp, &ifra.ifra_addr.sin6_addr); |
709 | if (ia6 != NULL) { | |
6d2010ae A |
710 | struct in6_ifaddr *ria6 = NULL; |
711 | ||
712 | IFA_LOCK(&ia6->ia_ifa); | |
1c79356b A |
713 | if (ia6->ia6_ifpr == NULL) { |
714 | /* link this addr and the prefix each other */ | |
6d2010ae A |
715 | if (rap->ra_addr != NULL) |
716 | ria6 = rap->ra_addr; | |
b0d623f7 | 717 | /* Reference held in in6ifa_ifpwithaddr() */ |
1c79356b | 718 | rap->ra_addr = ia6; |
1c79356b | 719 | ia6->ia6_ifpr = rp2ifpr(rpp); |
6d2010ae A |
720 | IFA_UNLOCK(&ia6->ia_ifa); |
721 | if (ria6 != NULL) | |
722 | IFA_REMREF(&ria6->ia_ifa); | |
1c79356b A |
723 | return; |
724 | } | |
725 | if (ia6->ia6_ifpr == rp2ifpr(rpp)) { | |
6d2010ae A |
726 | if (rap->ra_addr != NULL) |
727 | ria6 = rap->ra_addr; | |
b0d623f7 | 728 | /* Reference held in in6ifa_ifpwithaddr() */ |
1c79356b | 729 | rap->ra_addr = ia6; |
6d2010ae A |
730 | IFA_UNLOCK(&ia6->ia_ifa); |
731 | if (ria6 != NULL) | |
732 | IFA_REMREF(&ria6->ia_ifa); | |
1c79356b A |
733 | return; |
734 | } | |
735 | /* | |
736 | * The addr is already assigned to other | |
737 | * prefix. | |
738 | * There may be some inconsistencies between | |
739 | * prefixes. | |
740 | * e.g. overraped prefixes with common starting | |
741 | * part and different plefixlen. | |
742 | * Or, completely duplicated prefixes? | |
743 | * log it and return. | |
744 | */ | |
9bccf70c A |
745 | log(LOG_ERR, |
746 | "in6_prefix.c: add_each_addr: addition of an addr %s/%d " | |
747 | "failed because there is already another addr %s/%d\n", | |
1c79356b A |
748 | ip6_sprintf(&ifra.ifra_addr.sin6_addr), rpp->rp_plen, |
749 | ip6_sprintf(IA6_IN6(ia6)), | |
9bccf70c | 750 | in6_mask2len(&ia6->ia_prefixmask.sin6_addr, NULL)); |
6d2010ae A |
751 | IFA_UNLOCK(&ia6->ia_ifa); |
752 | IFA_REMREF(&ia6->ia_ifa); | |
1c79356b A |
753 | return; |
754 | } | |
755 | /* propagate ANYCAST flag if it is set for ancestor addr */ | |
756 | if (rap->ra_flags.anycast != 0) | |
757 | ifra.ifra_flags |= IN6_IFF_ANYCAST; | |
b0d623f7 A |
758 | |
759 | if (!p64) { | |
760 | #if defined(__LP64__) | |
761 | struct in6_aliasreq_32 ifra_32; | |
762 | /* | |
763 | * Use 32-bit ioctl and structure for 32-bit process. | |
764 | */ | |
765 | in6_aliasreq_64_to_32((struct in6_aliasreq_64 *)&ifra, | |
766 | &ifra_32); | |
767 | error = in6_control(so, SIOCAIFADDR_IN6_32, (caddr_t)&ifra_32, | |
768 | rpp->rp_ifp, p); | |
769 | #else | |
770 | error = in6_control(so, SIOCAIFADDR_IN6, (caddr_t)&ifra, | |
771 | rpp->rp_ifp, p); | |
772 | #endif /* __LP64__ */ | |
773 | } else { | |
774 | #if defined(__LP64__) | |
775 | error = in6_control(so, SIOCAIFADDR_IN6, (caddr_t)&ifra, | |
776 | rpp->rp_ifp, p); | |
777 | #else | |
778 | struct in6_aliasreq_64 ifra_64; | |
779 | /* | |
780 | * Use 32-bit ioctl and structure for 32-bit process. | |
781 | */ | |
782 | in6_aliasreq_32_to_64((struct in6_aliasreq_32 *)&ifra, | |
783 | &ifra_64); | |
784 | error = in6_control(so, SIOCAIFADDR_IN6_64, (caddr_t)&ifra_64, | |
785 | rpp->rp_ifp, p); | |
786 | #endif /* __LP64__ */ | |
787 | } | |
788 | ||
9bccf70c | 789 | if (error != 0) { |
1c79356b A |
790 | log(LOG_ERR, "in6_prefix.c: add_each_addr: addition of an addr" |
791 | "%s/%d failed because in6_control failed for error %d\n", | |
792 | ip6_sprintf(&ifra.ifra_addr.sin6_addr), rpp->rp_plen, | |
793 | error); | |
794 | return; | |
9bccf70c | 795 | } |
1c79356b A |
796 | |
797 | /* | |
798 | * link beween this addr and the prefix will be done | |
799 | * in in6_prefix_add_ifid | |
800 | */ | |
801 | } | |
802 | ||
803 | static int | |
804 | rrpr_update(struct socket *so, struct rr_prefix *new) | |
805 | { | |
806 | struct rr_prefix *rpp; | |
807 | struct ifprefix *ifpr; | |
808 | struct rp_addr *rap; | |
1c79356b A |
809 | |
810 | /* search existing prefix */ | |
91447636 | 811 | ifnet_lock_exclusive(new->rp_ifp); |
9bccf70c A |
812 | for (ifpr = TAILQ_FIRST(&new->rp_ifp->if_prefixhead); ifpr; |
813 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
814 | { | |
1c79356b A |
815 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
816 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
817 | continue; | |
818 | if (ifpr->ifpr_plen == new->rp_plen && | |
819 | in6_are_prefix_equal(IFPR_IN6(ifpr), RP_IN6(new), | |
820 | ifpr->ifpr_plen)) | |
821 | break; | |
822 | } | |
823 | rpp = ifpr2rp(ifpr); | |
824 | if (rpp != NULL) { | |
825 | /* | |
826 | * We got a prefix which we have seen in the past. | |
827 | */ | |
828 | /* | |
829 | * If the origin of the already-installed prefix is more | |
830 | * preferable than the new one, ignore installation request. | |
831 | */ | |
91447636 A |
832 | if (rpp->rp_origin > new->rp_origin) { |
833 | ifnet_lock_done(new->rp_ifp); | |
1c79356b | 834 | return(EPERM); |
91447636 | 835 | } |
1c79356b A |
836 | |
837 | /* update prefix information */ | |
838 | rpp->rp_flags.prf_ra = new->rp_flags.prf_ra; | |
839 | if (rpp->rp_origin >= PR_ORIG_RR) | |
840 | rpp->rp_flags.prf_rr = new->rp_flags.prf_rr; | |
841 | rpp->rp_vltime = new->rp_vltime; | |
842 | rpp->rp_pltime = new->rp_pltime; | |
843 | rpp->rp_expire = new->rp_expire; | |
844 | rpp->rp_preferred = new->rp_preferred; | |
845 | rpp->rp_statef_delmark = 0; /* cancel deletion */ | |
846 | /* | |
847 | * Interface id related update. | |
848 | * add rp_addr entries in new into rpp, if they have not | |
849 | * been already included in rpp. | |
850 | */ | |
91447636 | 851 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 852 | while (!LIST_EMPTY(&new->rp_addrhead)) |
1c79356b A |
853 | { |
854 | rap = LIST_FIRST(&new->rp_addrhead); | |
855 | LIST_REMOVE(rap, ra_entry); | |
856 | if (search_ifidwithprefix(rpp, &rap->ra_ifid) | |
857 | != NULL) { | |
6d2010ae A |
858 | if (rap->ra_addr) { |
859 | IFA_REMREF(&rap->ra_addr->ia_ifa); | |
860 | rap->ra_addr = NULL; | |
861 | } | |
9bccf70c | 862 | FREE(rap, M_RR_ADDR); |
1c79356b A |
863 | continue; |
864 | } | |
1c79356b | 865 | LIST_INSERT_HEAD(&rpp->rp_addrhead, rap, ra_entry); |
1c79356b | 866 | } |
91447636 | 867 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
868 | } else { |
869 | /* | |
870 | * We got a fresh prefix. | |
871 | */ | |
872 | /* create new prefix */ | |
9bccf70c | 873 | rpp = (struct rr_prefix *)_MALLOC(sizeof(*rpp), M_IP6RR, |
1c79356b A |
874 | M_NOWAIT); |
875 | if (rpp == NULL) { | |
876 | log(LOG_ERR, "in6_prefix.c: rrpr_update:%d" | |
877 | ": ENOBUFS for rr_prefix\n", __LINE__); | |
91447636 | 878 | ifnet_lock_done(new->rp_ifp); |
1c79356b A |
879 | return(ENOBUFS); |
880 | } | |
881 | /* initilization */ | |
91447636 | 882 | lck_mtx_lock(prefix6_mutex); |
1c79356b A |
883 | *rpp = *new; |
884 | LIST_INIT(&rpp->rp_addrhead); | |
885 | /* move rp_addr entries of new to rpp */ | |
1c79356b | 886 | while (!LIST_EMPTY(&new->rp_addrhead)) |
1c79356b A |
887 | { |
888 | rap = LIST_FIRST(&new->rp_addrhead); | |
889 | LIST_REMOVE(rap, ra_entry); | |
890 | LIST_INSERT_HEAD(&rpp->rp_addrhead, rap, ra_entry); | |
891 | } | |
91447636 | 892 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
893 | |
894 | /* let rp_ifpr.ifpr_prefix point rr_prefix. */ | |
895 | rpp->rp_ifpr.ifpr_prefix = (struct sockaddr *)&rpp->rp_prefix; | |
896 | /* link rr_prefix entry to if_prefixlist */ | |
897 | { | |
898 | struct ifnet *ifp = rpp->rp_ifp; | |
1c79356b | 899 | |
9bccf70c A |
900 | if ((ifpr = TAILQ_FIRST(&ifp->if_prefixhead)) |
901 | != NULL) { | |
902 | for ( ; TAILQ_NEXT(ifpr, ifpr_list); | |
903 | ifpr = TAILQ_NEXT(ifpr, ifpr_list)) | |
1c79356b | 904 | continue; |
9bccf70c | 905 | TAILQ_NEXT(ifpr, ifpr_list) = rp2ifpr(rpp); |
1c79356b | 906 | } else |
9bccf70c A |
907 | TAILQ_FIRST(&ifp->if_prefixhead) = |
908 | rp2ifpr(rpp); | |
1c79356b A |
909 | rp2ifpr(rpp)->ifpr_type = IN6_PREFIX_RR; |
910 | } | |
911 | /* link rr_prefix entry to rr_prefix list */ | |
91447636 | 912 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 913 | LIST_INSERT_HEAD(&rr_prefix, rpp, rp_entry); |
91447636 | 914 | lck_mtx_unlock(prefix6_mutex); |
1c79356b | 915 | } |
91447636 | 916 | ifnet_lock_done(new->rp_ifp); |
1c79356b A |
917 | |
918 | if (!new->rp_raf_auto) | |
919 | return 0; | |
920 | ||
921 | /* | |
922 | * Add an address for each interface id, if it is not yet | |
923 | * If it existed but not pointing to the prefix yet, | |
924 | * init the prefix pointer. | |
925 | */ | |
91447636 | 926 | lck_mtx_lock(prefix6_mutex); |
6d2010ae A |
927 | LIST_FOREACH(rap, &rpp->rp_addrhead, ra_entry) { |
928 | struct in6_ifaddr *ia6; | |
929 | ||
930 | if ((ia6 = rap->ra_addr) != NULL) { | |
931 | IFA_LOCK(&ia6->ia_ifa); | |
932 | if (ia6->ia6_ifpr == NULL) | |
933 | ia6->ia6_ifpr = rp2ifpr(rpp); | |
934 | IFA_UNLOCK(&ia6->ia_ifa); | |
1c79356b A |
935 | continue; |
936 | } | |
937 | add_each_addr(so, rpp, rap); | |
938 | } | |
91447636 | 939 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
940 | return 0; |
941 | } | |
942 | ||
943 | static int | |
944 | add_each_prefix(struct socket *so, struct rr_prefix *rpp) | |
945 | { | |
946 | init_prefix_ltimes(rpp); | |
947 | return(rrpr_update(so, rpp)); | |
948 | } | |
949 | ||
950 | static void | |
951 | rp_remove(struct rr_prefix *rpp) | |
952 | { | |
1c79356b | 953 | |
1c79356b | 954 | /* unlink rp_entry from if_prefixlist */ |
91447636 | 955 | lck_mtx_lock(prefix6_mutex); |
1c79356b A |
956 | { |
957 | struct ifnet *ifp = rpp->rp_ifp; | |
958 | struct ifprefix *ifpr; | |
959 | ||
91447636 | 960 | ifnet_lock_exclusive(ifp); |
9bccf70c A |
961 | if ((ifpr = TAILQ_FIRST(&ifp->if_prefixhead)) == rp2ifpr(rpp)) |
962 | TAILQ_FIRST(&ifp->if_prefixhead) = | |
963 | TAILQ_NEXT(ifpr, ifpr_list); | |
1c79356b | 964 | else { |
9bccf70c A |
965 | while (TAILQ_NEXT(ifpr, ifpr_list) != NULL && |
966 | (TAILQ_NEXT(ifpr, ifpr_list) != rp2ifpr(rpp))) | |
967 | ifpr = TAILQ_NEXT(ifpr, ifpr_list); | |
968 | if (TAILQ_NEXT(ifpr, ifpr_list)) | |
969 | TAILQ_NEXT(ifpr, ifpr_list) = | |
970 | TAILQ_NEXT(rp2ifpr(rpp), ifpr_list); | |
971 | else | |
972 | printf("Couldn't unlink rr_prefix from ifp\n"); | |
1c79356b | 973 | } |
91447636 | 974 | ifnet_lock_done(ifp); |
1c79356b A |
975 | } |
976 | /* unlink rp_entry from rr_prefix list */ | |
977 | LIST_REMOVE(rpp, rp_entry); | |
91447636 | 978 | lck_mtx_unlock(prefix6_mutex); |
9bccf70c | 979 | FREE(rpp, M_IP6RR); |
1c79356b A |
980 | } |
981 | ||
982 | static int | |
983 | create_ra_entry(struct rp_addr **rapp) | |
984 | { | |
9bccf70c | 985 | *rapp = (struct rp_addr *)_MALLOC(sizeof(struct rp_addr), M_RR_ADDR, |
1c79356b A |
986 | M_NOWAIT); |
987 | if (*rapp == NULL) { | |
b0d623f7 | 988 | log(LOG_ERR, "in6_prefix.c:%d: ENOBUFS" |
1c79356b A |
989 | "for rp_addr\n", __LINE__); |
990 | return ENOBUFS; | |
991 | } | |
992 | bzero(*rapp, sizeof(*(*rapp))); | |
993 | ||
994 | return 0; | |
995 | } | |
996 | ||
b0d623f7 | 997 | #if 0 |
1c79356b A |
998 | static int |
999 | init_newprefix(struct in6_rrenumreq *irr, struct ifprefix *ifpr, | |
1000 | struct rr_prefix *rpp) | |
1001 | { | |
1002 | struct rp_addr *orap; | |
1003 | ||
1004 | /* init rp */ | |
1005 | bzero(rpp, sizeof(*rpp)); | |
1006 | rpp->rp_type = IN6_PREFIX_RR; | |
1007 | rpp->rp_ifp = ifpr->ifpr_ifp; | |
1008 | rpp->rp_plen = ifpr->ifpr_plen; | |
1009 | rpp->rp_prefix.sin6_len = sizeof(rpp->rp_prefix); | |
1010 | rpp->rp_prefix.sin6_family = AF_INET6; | |
1011 | bit_copy((char *)RP_IN6(rpp), sizeof(*RP_IN6(rpp)) << 3, | |
1012 | (char *)&irr->irr_useprefix.sin6_addr, | |
1013 | sizeof(irr->irr_useprefix.sin6_addr) << 3, | |
1014 | 0, irr->irr_u_uselen); | |
1015 | /* copy keeplen part if necessary as necessary len */ | |
1016 | if (irr->irr_u_uselen < ifpr->ifpr_plen) | |
1017 | bit_copy((char *)RP_IN6(rpp), sizeof(*RP_IN6(rpp)) << 3, | |
1018 | (char *)IFPR_IN6(ifpr), sizeof(*IFPR_IN6(ifpr)) << 3, | |
1019 | irr->irr_u_uselen, | |
1020 | min(ifpr->ifpr_plen - irr->irr_u_uselen, | |
1021 | irr->irr_u_keeplen)); | |
91447636 | 1022 | lck_mtx_lock(prefix6_mutex); |
9bccf70c A |
1023 | LIST_FOREACH(orap, &(ifpr2rp(ifpr)->rp_addrhead), ra_entry) |
1024 | { | |
1c79356b A |
1025 | struct rp_addr *rap; |
1026 | int error = 0; | |
6d2010ae | 1027 | struct in6_ifaddr *ia6; |
1c79356b A |
1028 | |
1029 | if ((error = create_ra_entry(&rap)) != 0) | |
1030 | return error; | |
1031 | rap->ra_ifid = orap->ra_ifid; | |
6d2010ae A |
1032 | ia6 = orap->ra_addr->ia_ifa; |
1033 | if (ia6 != NULL) { | |
1034 | IFA_LOCK(&ia6->ia_ifa); | |
1035 | rap->ra_flags.anycast = | |
1036 | ((ia6->ia6_flags & IN6_IFF_ANYCAST) != 0) ? 1 : 0; | |
1037 | IFA_UNLOCK(&ia6->ia_ifa); | |
1038 | } else { | |
1039 | rap->ra_flags.anycast = 0; | |
1040 | } | |
1c79356b A |
1041 | LIST_INSERT_HEAD(&rpp->rp_addrhead, rap, ra_entry); |
1042 | } | |
1043 | rpp->rp_vltime = irr->irr_vltime; | |
1044 | rpp->rp_pltime = irr->irr_pltime; | |
1045 | rpp->rp_raf_onlink = irr->irr_raf_mask_onlink ? irr->irr_raf_onlink : | |
1046 | ifpr2rp(ifpr)->rp_raf_onlink; | |
1047 | rpp->rp_raf_auto = irr->irr_raf_mask_auto ? irr->irr_raf_auto : | |
1048 | ifpr2rp(ifpr)->rp_raf_auto; | |
1049 | /* Is some FlagMasks for rrf necessary? */ | |
1050 | rpp->rp_rrf = irr->irr_rrf; | |
1051 | rpp->rp_origin = irr->irr_origin; | |
91447636 | 1052 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
1053 | |
1054 | return 0; | |
1055 | } | |
b0d623f7 | 1056 | #endif |
1c79356b A |
1057 | |
1058 | static void | |
1059 | free_rp_entries(struct rr_prefix *rpp) | |
1060 | { | |
1061 | /* | |
1062 | * This func is only called with rpp on stack(not on list). | |
1063 | * So no splnet() here | |
1064 | */ | |
91447636 | 1065 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 1066 | while (!LIST_EMPTY(&rpp->rp_addrhead)) |
1c79356b A |
1067 | { |
1068 | struct rp_addr *rap; | |
1069 | ||
1070 | rap = LIST_FIRST(&rpp->rp_addrhead); | |
1071 | LIST_REMOVE(rap, ra_entry); | |
6d2010ae A |
1072 | if (rap->ra_addr) { |
1073 | IFA_REMREF(&rap->ra_addr->ia_ifa); | |
1074 | rap->ra_addr = NULL; | |
1075 | } | |
9bccf70c | 1076 | FREE(rap, M_RR_ADDR); |
1c79356b | 1077 | } |
91447636 | 1078 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
1079 | } |
1080 | ||
b0d623f7 | 1081 | #if 0 |
1c79356b A |
1082 | static int |
1083 | add_useprefixes(struct socket *so, struct ifnet *ifp, | |
1084 | struct in6_rrenumreq *irr) | |
1085 | { | |
1086 | struct ifprefix *ifpr, *nextifpr; | |
1087 | struct rr_prefix rp; | |
1088 | int error = 0; | |
1089 | ||
1090 | /* add prefixes to each of marked prefix */ | |
91447636 | 1091 | ifnet_lock_exclusive(ifp); |
9bccf70c A |
1092 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; ifpr = nextifpr) |
1093 | { | |
1094 | nextifpr = TAILQ_NEXT(ifpr, ifpr_list); | |
1c79356b A |
1095 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
1096 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
1097 | continue; | |
1098 | if (ifpr2rp(ifpr)->rp_statef_addmark) { | |
1099 | if ((error = init_newprefix(irr, ifpr, &rp)) != 0) | |
1100 | break; | |
1101 | error = add_each_prefix(so, &rp); | |
1102 | } | |
1103 | } | |
91447636 | 1104 | ifnet_lock_done(ifp); |
1c79356b A |
1105 | /* free each rp_addr entry */ |
1106 | free_rp_entries(&rp); | |
1107 | ||
1108 | return error; | |
1109 | } | |
b0d623f7 | 1110 | #endif |
1c79356b A |
1111 | |
1112 | static void | |
1113 | unprefer_prefix(struct rr_prefix *rpp) | |
1114 | { | |
1115 | struct rp_addr *rap; | |
91447636 | 1116 | struct timeval timenow; |
1c79356b | 1117 | |
91447636 A |
1118 | getmicrotime(&timenow); |
1119 | ||
1120 | lck_mtx_lock(prefix6_mutex); | |
1c79356b A |
1121 | for (rap = rpp->rp_addrhead.lh_first; rap != NULL; |
1122 | rap = rap->ra_entry.le_next) { | |
6d2010ae A |
1123 | struct in6_ifaddr *ia6; |
1124 | ||
1125 | if ((ia6 = rap->ra_addr) == NULL) | |
1c79356b | 1126 | continue; |
6d2010ae A |
1127 | IFA_LOCK(&ia6->ia_ifa); |
1128 | ia6->ia6_lifetime.ia6t_preferred = timenow.tv_sec; | |
1129 | ia6->ia6_lifetime.ia6t_pltime = 0; | |
1130 | IFA_UNLOCK(&ia6->ia_ifa); | |
1c79356b | 1131 | } |
91447636 A |
1132 | lck_mtx_unlock(prefix6_mutex); |
1133 | ||
1c79356b A |
1134 | } |
1135 | ||
1136 | int | |
1137 | delete_each_prefix(struct rr_prefix *rpp, u_char origin) | |
1138 | { | |
1139 | int error = 0; | |
1140 | ||
1141 | if (rpp->rp_origin > origin) | |
1142 | return(EPERM); | |
1143 | ||
91447636 | 1144 | lck_mtx_lock(prefix6_mutex); |
1c79356b A |
1145 | while (rpp->rp_addrhead.lh_first != NULL) { |
1146 | struct rp_addr *rap; | |
6d2010ae | 1147 | struct in6_ifaddr *ia6; |
1c79356b | 1148 | |
1c79356b | 1149 | rap = LIST_FIRST(&rpp->rp_addrhead); |
9bccf70c | 1150 | if (rap == NULL) { |
1c79356b | 1151 | break; |
9bccf70c | 1152 | } |
1c79356b | 1153 | LIST_REMOVE(rap, ra_entry); |
6d2010ae | 1154 | if ((ia6 = rap->ra_addr) == NULL) { |
9bccf70c | 1155 | FREE(rap, M_RR_ADDR); |
1c79356b A |
1156 | continue; |
1157 | } | |
6d2010ae A |
1158 | rap->ra_addr = NULL; |
1159 | IFA_LOCK(&ia6->ia_ifa); | |
1160 | ia6->ia6_ifpr = NULL; | |
1161 | IFA_UNLOCK(&ia6->ia_ifa); | |
1c79356b | 1162 | |
6d2010ae A |
1163 | in6_purgeaddr(&ia6->ia_ifa, 0); |
1164 | IFA_REMREF(&ia6->ia_ifa); | |
9bccf70c | 1165 | FREE(rap, M_RR_ADDR); |
1c79356b A |
1166 | } |
1167 | rp_remove(rpp); | |
91447636 | 1168 | lck_mtx_unlock(prefix6_mutex); |
1c79356b A |
1169 | |
1170 | return error; | |
1171 | } | |
1172 | ||
b0d623f7 | 1173 | #if 0 |
1c79356b A |
1174 | static void |
1175 | delete_prefixes(struct ifnet *ifp, u_char origin) | |
1176 | { | |
1177 | struct ifprefix *ifpr, *nextifpr; | |
1178 | ||
1179 | /* delete prefixes marked as tobe deleted */ | |
91447636 | 1180 | ifnet_lock_exclusive(ifp); |
9bccf70c A |
1181 | for (ifpr = TAILQ_FIRST(&ifp->if_prefixhead); ifpr; ifpr = nextifpr) |
1182 | { | |
1183 | nextifpr = TAILQ_NEXT(ifpr, ifpr_list); | |
1c79356b A |
1184 | if (ifpr->ifpr_prefix->sa_family != AF_INET6 || |
1185 | ifpr->ifpr_type != IN6_PREFIX_RR) | |
1186 | continue; | |
1187 | if (ifpr2rp(ifpr)->rp_statef_delmark) | |
1188 | (void)delete_each_prefix(ifpr2rp(ifpr), origin); | |
1189 | } | |
91447636 | 1190 | ifnet_lock_done(ifp); |
1c79356b | 1191 | } |
b0d623f7 | 1192 | #endif |
1c79356b A |
1193 | |
1194 | static int | |
1195 | link_stray_ia6s(struct rr_prefix *rpp) | |
1196 | { | |
1197 | struct ifaddr *ifa; | |
1198 | ||
6d2010ae A |
1199 | ifnet_lock_assert(rpp->rp_ifp, IFNET_LCK_ASSERT_OWNED); |
1200 | ||
1c79356b A |
1201 | for (ifa = rpp->rp_ifp->if_addrlist.tqh_first; ifa; |
1202 | ifa = ifa->ifa_list.tqe_next) | |
1c79356b A |
1203 | { |
1204 | struct rp_addr *rap; | |
1205 | struct rr_prefix *orpp; | |
1206 | int error = 0; | |
1207 | ||
6d2010ae A |
1208 | IFA_LOCK(ifa); |
1209 | if (ifa->ifa_addr->sa_family != AF_INET6) { | |
1210 | IFA_UNLOCK(ifa); | |
1c79356b | 1211 | continue; |
6d2010ae A |
1212 | } |
1213 | if (rpp->rp_plen > in6_matchlen(RP_IN6(rpp), IFA_IN6(ifa))) { | |
1214 | IFA_UNLOCK(ifa); | |
1c79356b | 1215 | continue; |
6d2010ae | 1216 | } |
1c79356b A |
1217 | orpp = ifpr2rp(((struct in6_ifaddr *)ifa)->ia6_ifpr); |
1218 | if (orpp != NULL) { | |
1219 | if (!in6_are_prefix_equal(RP_IN6(orpp), RP_IN6(rpp), | |
1220 | rpp->rp_plen)) | |
1221 | log(LOG_ERR, "in6_prefix.c: link_stray_ia6s:" | |
1222 | "addr %s/%d already linked to a prefix" | |
1223 | "and it matches also %s/%d\n", | |
1224 | ip6_sprintf(IFA_IN6(ifa)), orpp->rp_plen, | |
1225 | ip6_sprintf(RP_IN6(rpp)), | |
1226 | rpp->rp_plen); | |
6d2010ae | 1227 | IFA_UNLOCK(ifa); |
1c79356b A |
1228 | continue; |
1229 | } | |
6d2010ae | 1230 | IFA_UNLOCK(ifa); |
9bccf70c | 1231 | if ((error = assign_ra_entry(rpp, |
1c79356b A |
1232 | (sizeof(rap->ra_ifid) << 3) - |
1233 | rpp->rp_plen, | |
1234 | (struct in6_ifaddr *)ifa)) != 0) | |
1235 | return error; | |
1236 | } | |
1237 | return 0; | |
1238 | } | |
1239 | ||
b0d623f7 | 1240 | #if 0 |
1c79356b A |
1241 | /* XXX assumes that permission is already checked by the caller */ |
1242 | int | |
1243 | in6_prefix_ioctl(struct socket *so, u_long cmd, caddr_t data, | |
1244 | struct ifnet *ifp) | |
1245 | { | |
1246 | struct rr_prefix *rpp, rp_tmp; | |
1247 | struct rp_addr *rap; | |
1248 | struct in6_prefixreq *ipr = (struct in6_prefixreq *)data; | |
1249 | struct in6_rrenumreq *irr = (struct in6_rrenumreq *)data; | |
1250 | struct ifaddr *ifa; | |
1251 | int error = 0; | |
1252 | ||
1253 | /* | |
91447636 | 1254 | * Failsafe for erroneous address config program. |
1c79356b A |
1255 | * Let's hope rrenumd don't make a mistakes. |
1256 | */ | |
1257 | if (ipr->ipr_origin <= PR_ORIG_RA) | |
1258 | ipr->ipr_origin = PR_ORIG_STATIC; | |
1259 | ||
1260 | switch (cmd) { | |
1261 | case SIOCSGIFPREFIX_IN6: | |
1262 | delmark_global_prefixes(ifp, irr); | |
1263 | /* FALL THROUGH */ | |
1264 | case SIOCAIFPREFIX_IN6: | |
1265 | case SIOCCIFPREFIX_IN6: | |
1266 | /* check if preferred lifetime > valid lifetime */ | |
1267 | if (irr->irr_pltime > irr->irr_vltime) { | |
1268 | log(LOG_NOTICE, | |
1269 | "in6_prefix_ioctl: preferred lifetime" | |
1270 | "(%ld) is greater than valid lifetime(%ld)\n", | |
b0d623f7 | 1271 | (u_int32_t)irr->irr_pltime, (u_int32_t)irr->irr_vltime); |
1c79356b A |
1272 | error = EINVAL; |
1273 | break; | |
1274 | } | |
1275 | if (mark_matched_prefixes(cmd, ifp, irr)) { | |
1276 | if (irr->irr_u_uselen != 0) | |
1277 | if ((error = add_useprefixes(so, ifp, irr)) | |
1278 | != 0) | |
1279 | goto failed; | |
1280 | if (cmd != SIOCAIFPREFIX_IN6) | |
1281 | delete_prefixes(ifp, irr->irr_origin); | |
1282 | } else | |
1283 | return (EADDRNOTAVAIL); | |
1284 | failed: | |
1285 | unmark_prefixes(ifp); | |
1286 | break; | |
1287 | case SIOCGIFPREFIX_IN6: | |
1288 | rpp = search_matched_prefix(ifp, ipr); | |
1289 | if (rpp == NULL || ifp != rpp->rp_ifp) | |
1290 | return (EADDRNOTAVAIL); | |
1291 | ||
1292 | ipr->ipr_origin = rpp->rp_origin; | |
1293 | ipr->ipr_plen = rpp->rp_plen; | |
1294 | ipr->ipr_vltime = rpp->rp_vltime; | |
1295 | ipr->ipr_pltime = rpp->rp_pltime; | |
1296 | ipr->ipr_flags = rpp->rp_flags; | |
1297 | ipr->ipr_prefix = rpp->rp_prefix; | |
1298 | ||
1299 | break; | |
1300 | case SIOCSIFPREFIX_IN6: | |
1301 | /* check if preferred lifetime > valid lifetime */ | |
1302 | if (ipr->ipr_pltime > ipr->ipr_vltime) { | |
1303 | log(LOG_NOTICE, | |
1304 | "in6_prefix_ioctl: preferred lifetime" | |
1305 | "(%ld) is greater than valid lifetime(%ld)\n", | |
b0d623f7 | 1306 | (u_int32_t)ipr->ipr_pltime, (u_int32_t)ipr->ipr_vltime); |
1c79356b A |
1307 | error = EINVAL; |
1308 | break; | |
1309 | } | |
1310 | ||
1311 | /* init rp_tmp */ | |
1312 | bzero((caddr_t)&rp_tmp, sizeof(rp_tmp)); | |
1313 | rp_tmp.rp_ifp = ifp; | |
1314 | rp_tmp.rp_plen = ipr->ipr_plen; | |
1315 | rp_tmp.rp_prefix = ipr->ipr_prefix; | |
1316 | rp_tmp.rp_vltime = ipr->ipr_vltime; | |
1317 | rp_tmp.rp_pltime = ipr->ipr_pltime; | |
1318 | rp_tmp.rp_flags = ipr->ipr_flags; | |
1319 | rp_tmp.rp_origin = ipr->ipr_origin; | |
1320 | ||
1321 | /* create rp_addr entries, usually at least for lladdr */ | |
6d2010ae | 1322 | ifnet_lock_shared(ifp); |
1c79356b | 1323 | if ((error = link_stray_ia6s(&rp_tmp)) != 0) { |
6d2010ae | 1324 | ifnet_lock_done(ifp); |
1c79356b A |
1325 | free_rp_entries(&rp_tmp); |
1326 | break; | |
1327 | } | |
1c79356b A |
1328 | for (ifa = ifp->if_addrlist.tqh_first; |
1329 | ifa; | |
1330 | ifa = ifa->ifa_list.tqe_next) | |
1c79356b | 1331 | { |
6d2010ae A |
1332 | IFA_LOCK(ifa); |
1333 | if (ifa->ifa_addr->sa_family != AF_INET6) { | |
1334 | IFA_UNLOCK(ifa); | |
1c79356b | 1335 | continue; |
6d2010ae A |
1336 | } |
1337 | if (IN6_IS_ADDR_LINKLOCAL(IFA_IN6(ifa)) == 0) { | |
1338 | IFA_UNLOCK(ifa); | |
1c79356b | 1339 | continue; |
6d2010ae | 1340 | } |
1c79356b | 1341 | if ((error = create_ra_entry(&rap)) != 0) { |
6d2010ae A |
1342 | IFA_UNLOCK(ifa); |
1343 | ifnet_lock_done(ifp); | |
1c79356b A |
1344 | free_rp_entries(&rp_tmp); |
1345 | goto bad; | |
1346 | } | |
1347 | /* copy interface id part */ | |
1348 | bit_copy((caddr_t)&rap->ra_ifid, | |
1349 | sizeof(rap->ra_ifid) << 3, | |
1350 | (caddr_t)IFA_IN6(ifa), | |
1351 | sizeof(*IFA_IN6(ifa)) << 3, | |
1352 | rp_tmp.rp_plen, | |
1353 | (sizeof(rap->ra_ifid) << 3) - rp_tmp.rp_plen); | |
6d2010ae | 1354 | IFA_UNLOCK(ifa); |
1c79356b | 1355 | /* insert into list */ |
91447636 | 1356 | lck_mtx_lock(prefix6_mutex); |
1c79356b | 1357 | LIST_INSERT_HEAD(&rp_tmp.rp_addrhead, rap, ra_entry); |
91447636 | 1358 | lck_mtx_unlock(prefix6_mutex); |
1c79356b | 1359 | } |
91447636 | 1360 | ifnet_lock_done(ifp); |
1c79356b A |
1361 | |
1362 | error = add_each_prefix(so, &rp_tmp); | |
1363 | ||
1364 | /* free each rp_addr entry */ | |
1365 | free_rp_entries(&rp_tmp); | |
1366 | ||
1367 | break; | |
1368 | case SIOCDIFPREFIX_IN6: | |
1369 | rpp = search_matched_prefix(ifp, ipr); | |
1370 | if (rpp == NULL || ifp != rpp->rp_ifp) | |
1371 | return (EADDRNOTAVAIL); | |
1372 | ||
91447636 | 1373 | ifnet_lock_exclusive(ifp); |
1c79356b | 1374 | error = delete_each_prefix(rpp, ipr->ipr_origin); |
91447636 | 1375 | ifnet_lock_done(ifp); |
1c79356b A |
1376 | break; |
1377 | } | |
1378 | bad: | |
1379 | return error; | |
1380 | } | |
b0d623f7 | 1381 | #endif |
1c79356b | 1382 |