2 * Copyright (c) 2000-2015 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
31 * All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. Neither the name of the project nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * Copyright (c) 1982, 1986, 1991, 1993
60 * The Regents of the University of California. All rights reserved.
62 * Redistribution and use in source and binary forms, with or without
63 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in the
69 * documentation and/or other materials provided with the distribution.
70 * 3. All advertising materials mentioning features or use of this software
71 * must display the following acknowledgement:
72 * This product includes software developed by the University of
73 * California, Berkeley and its contributors.
74 * 4. Neither the name of the University nor the names of its contributors
75 * may be used to endorse or promote products derived from this software
76 * without specific prior written permission.
78 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
79 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
80 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
81 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
82 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
83 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
84 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
85 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
86 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
87 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
90 * @(#)in_pcb.c 8.2 (Berkeley) 1/4/94
94 #include <sys/param.h>
95 #include <sys/systm.h>
96 #include <sys/malloc.h>
98 #include <sys/protosw.h>
99 #include <sys/socket.h>
100 #include <sys/socketvar.h>
101 #include <sys/errno.h>
102 #include <sys/time.h>
103 #include <sys/proc.h>
104 #include <sys/sysctl.h>
105 #include <sys/kauth.h>
106 #include <sys/priv.h>
107 #include <kern/locks.h>
110 #include <net/if_types.h>
111 #include <net/route.h>
113 #include <netinet/in.h>
114 #include <netinet/in_var.h>
115 #include <netinet/in_systm.h>
116 #include <netinet/ip.h>
117 #include <netinet/in_pcb.h>
118 #include <netinet6/in6_var.h>
119 #include <netinet/ip6.h>
120 #include <netinet6/in6_pcb.h>
121 #include <netinet6/ip6_var.h>
122 #include <netinet6/scope6_var.h>
123 #include <netinet6/nd6.h>
125 #include <net/net_osdep.h>
129 SYSCTL_DECL(_net_inet6_ip6
);
131 static int ip6_select_srcif_debug
= 0;
132 SYSCTL_INT(_net_inet6_ip6
, OID_AUTO
, select_srcif_debug
,
133 CTLFLAG_RW
| CTLFLAG_LOCKED
, &ip6_select_srcif_debug
, 0,
134 "log source interface selection debug info");
136 static int ip6_select_srcaddr_debug
= 0;
137 SYSCTL_INT(_net_inet6_ip6
, OID_AUTO
, select_srcaddr_debug
,
138 CTLFLAG_RW
| CTLFLAG_LOCKED
, &ip6_select_srcaddr_debug
, 0,
139 "log source address selection debug info");
141 static int ip6_select_src_expensive_secondary_if
= 0;
142 SYSCTL_INT(_net_inet6_ip6
, OID_AUTO
, select_src_expensive_secondary_if
,
143 CTLFLAG_RW
| CTLFLAG_LOCKED
, &ip6_select_src_expensive_secondary_if
, 0,
144 "allow source interface selection to use expensive secondaries");
146 #define ADDR_LABEL_NOTAPP (-1)
147 struct in6_addrpolicy defaultaddrpolicy
;
149 int ip6_prefer_tempaddr
= 1;
150 #ifdef ENABLE_ADDRSEL
151 extern lck_mtx_t
*addrsel_mutex
;
152 #define ADDRSEL_LOCK() lck_mtx_lock(addrsel_mutex)
153 #define ADDRSEL_UNLOCK() lck_mtx_unlock(addrsel_mutex)
155 #define ADDRSEL_LOCK()
156 #define ADDRSEL_UNLOCK()
159 static int selectroute(struct sockaddr_in6
*, struct sockaddr_in6
*,
160 struct ip6_pktopts
*, struct ip6_moptions
*, struct in6_ifaddr
**,
161 struct route_in6
*, struct ifnet
**, struct rtentry
**, int, int,
162 struct ip6_out_args
*ip6oa
);
163 static int in6_selectif(struct sockaddr_in6
*, struct ip6_pktopts
*,
164 struct ip6_moptions
*, struct route_in6
*ro
,
165 struct ip6_out_args
*, struct ifnet
**);
166 static void init_policy_queue(void);
167 static int add_addrsel_policyent(const struct in6_addrpolicy
*);
168 #ifdef ENABLE_ADDRSEL
169 static int delete_addrsel_policyent(const struct in6_addrpolicy
*);
171 static int walk_addrsel_policy(int (*)(const struct in6_addrpolicy
*, void *),
173 static int dump_addrsel_policyent(const struct in6_addrpolicy
*, void *);
174 static struct in6_addrpolicy
*match_addrsel_policy(struct sockaddr_in6
*);
175 void addrsel_policy_init(void);
177 #define SASEL_DO_DBG(inp) \
178 (ip6_select_srcaddr_debug && (inp) != NULL && \
179 (inp)->inp_socket != NULL && \
180 ((inp)->inp_socket->so_options & SO_DEBUG))
182 #define SASEL_LOG(fmt, ...) \
184 if (SASEL_DO_DBG(inp)) \
185 printf("%s:%d " fmt "\n",\
186 __FUNCTION__, __LINE__, ##__VA_ARGS__); \
190 * Return an IPv6 address, which is the most appropriate for a given
191 * destination and user specified options.
192 * If necessary, this function lookups the routing table and returns
193 * an entry to the caller for later use.
195 #define REPLACE(r) do {\
196 SASEL_LOG("REPLACE r %d ia %s ifp1 %s\n", \
197 (r), s_src, ifp1->if_xname); \
202 #define NEXTSRC(r) do {\
203 SASEL_LOG("NEXTSRC r %d ia %s ifp1 %s\n", \
204 (r), s_src, ifp1->if_xname); \
205 goto next; /* XXX: we can't use 'continue' here */ \
208 #define BREAK(r) do { \
209 SASEL_LOG("BREAK r %d ia %s ifp1 %s\n", \
210 (r), s_src, ifp1->if_xname); \
212 goto out; /* XXX: we can't use 'break' here */ \
216 * Regardless of error, it will return an ifp with a reference held if the
217 * caller provides a non-NULL ifpp. The caller is responsible for checking
218 * if the returned ifp is valid and release its reference at all times.
221 in6_selectsrc(struct sockaddr_in6
*dstsock
, struct ip6_pktopts
*opts
,
222 struct inpcb
*inp
, struct route_in6
*ro
,
223 struct ifnet
**ifpp
, struct in6_addr
*src_storage
, unsigned int ifscope
,
227 struct ifnet
*ifp
= NULL
;
228 struct in6_ifaddr
*ia
= NULL
, *ia_best
= NULL
;
229 struct in6_pktinfo
*pi
= NULL
;
230 int dst_scope
= -1, best_scope
= -1, best_matchlen
= -1;
231 struct in6_addrpolicy
*dst_policy
= NULL
, *best_policy
= NULL
;
234 struct ip6_moptions
*mopts
;
235 struct ip6_out_args ip6oa
= { ifscope
, { 0 }, IP6OAF_SELECT_SRCIF
, 0 };
236 boolean_t islocal
= FALSE
;
237 uint64_t secs
= net_uptime();
238 char s_src
[MAX_IPv6_STR_LEN
], s_dst
[MAX_IPv6_STR_LEN
];
239 const struct in6_addr
*tmp
;
240 int bestrule
= IP6S_SRCRULE_0
;
242 dst
= dstsock
->sin6_addr
; /* make a copy for local operation */
248 mopts
= inp
->in6p_moptions
;
249 if (INP_NO_CELLULAR(inp
))
250 ip6oa
.ip6oa_flags
|= IP6OAF_NO_CELLULAR
;
251 if (INP_NO_EXPENSIVE(inp
))
252 ip6oa
.ip6oa_flags
|= IP6OAF_NO_EXPENSIVE
;
253 if (INP_AWDL_UNRESTRICTED(inp
))
254 ip6oa
.ip6oa_flags
|= IP6OAF_AWDL_UNRESTRICTED
;
260 if (ip6oa
.ip6oa_boundif
!= IFSCOPE_NONE
)
261 ip6oa
.ip6oa_flags
|= IP6OAF_BOUND_IF
;
264 * If the source address is explicitly specified by the caller,
265 * check if the requested source address is indeed a unicast address
266 * assigned to the node, and can be used as the packet's source
267 * address. If everything is okay, use the address as source.
269 if (opts
&& (pi
= opts
->ip6po_pktinfo
) &&
270 !IN6_IS_ADDR_UNSPECIFIED(&pi
->ipi6_addr
)) {
271 struct sockaddr_in6 srcsock
;
272 struct in6_ifaddr
*ia6
;
274 /* get the outgoing interface */
275 if ((*errorp
= in6_selectif(dstsock
, opts
, mopts
, ro
, &ip6oa
,
282 * determine the appropriate zone id of the source based on
283 * the zone of the destination and the outgoing interface.
284 * If the specified address is ambiguous wrt the scope zone,
285 * the interface must be specified; otherwise, ifa_ifwithaddr()
286 * will fail matching the address.
288 bzero(&srcsock
, sizeof (srcsock
));
289 srcsock
.sin6_family
= AF_INET6
;
290 srcsock
.sin6_len
= sizeof (srcsock
);
291 srcsock
.sin6_addr
= pi
->ipi6_addr
;
293 *errorp
= in6_setscope(&srcsock
.sin6_addr
, ifp
, NULL
);
299 ia6
= (struct in6_ifaddr
*)ifa_ifwithaddr((struct sockaddr
*)
302 *errorp
= EADDRNOTAVAIL
;
306 IFA_LOCK_SPIN(&ia6
->ia_ifa
);
307 if ((ia6
->ia6_flags
& (IN6_IFF_ANYCAST
| IN6_IFF_NOTREADY
)) ||
308 (inp
&& inp_restricted_send(inp
, ia6
->ia_ifa
.ifa_ifp
))) {
309 IFA_UNLOCK(&ia6
->ia_ifa
);
310 IFA_REMREF(&ia6
->ia_ifa
);
311 *errorp
= EHOSTUNREACH
;
316 *src_storage
= satosin6(&ia6
->ia_addr
)->sin6_addr
;
317 IFA_UNLOCK(&ia6
->ia_ifa
);
318 IFA_REMREF(&ia6
->ia_ifa
);
323 * Otherwise, if the socket has already bound the source, just use it.
325 if (inp
!= NULL
&& !IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
326 src_storage
= &inp
->in6p_laddr
;
331 * If the address is not specified, choose the best one based on
332 * the outgoing interface and the destination address.
335 /* get the outgoing interface */
336 if ((*errorp
= in6_selectif(dstsock
, opts
, mopts
, ro
, &ip6oa
,
342 if (SASEL_DO_DBG(inp
)) {
343 (void) inet_ntop(AF_INET6
, &dst
, s_dst
, sizeof (s_src
));
346 (void) inet_ntop(AF_INET6
, tmp
, s_src
, sizeof (s_src
));
348 printf("%s out src %s dst %s ifscope %d ifp %s\n",
349 __func__
, s_src
, s_dst
, ifscope
,
350 ifp
? ifp
->if_xname
: "NULL");
353 *errorp
= in6_setscope(&dst
, ifp
, &odstzone
);
358 lck_rw_lock_shared(&in6_ifaddr_rwlock
);
360 for (ia
= in6_ifaddrs
; ia
; ia
= ia
->ia_next
) {
361 int new_scope
= -1, new_matchlen
= -1;
362 struct in6_addrpolicy
*new_policy
= NULL
;
363 u_int32_t srczone
, osrczone
, dstzone
;
365 struct ifnet
*ifp1
= ia
->ia_ifp
;
368 if (SASEL_DO_DBG(inp
))
369 (void) inet_ntop(AF_INET6
, &ia
->ia_addr
.sin6_addr
,
370 s_src
, sizeof (s_src
));
372 IFA_LOCK(&ia
->ia_ifa
);
374 * We'll never take an address that breaks the scope zone
375 * of the destination. We also skip an address if its zone
376 * does not contain the outgoing interface.
377 * XXX: we should probably use sin6_scope_id here.
379 if (in6_setscope(&dst
, ifp1
, &dstzone
) ||
380 odstzone
!= dstzone
) {
381 SASEL_LOG("NEXT ia %s ifp1 %s odstzone %d != dstzone %d\n",
382 s_src
, ifp1
->if_xname
, odstzone
, dstzone
);
385 src
= ia
->ia_addr
.sin6_addr
;
386 if (in6_setscope(&src
, ifp
, &osrczone
) ||
387 in6_setscope(&src
, ifp1
, &srczone
) ||
388 osrczone
!= srczone
) {
389 SASEL_LOG("NEXT ia %s ifp1 %s osrczone %d != srczone %d\n",
390 s_src
, ifp1
->if_xname
, osrczone
, srczone
);
393 /* avoid unusable addresses */
395 (IN6_IFF_NOTREADY
| IN6_IFF_ANYCAST
| IN6_IFF_DETACHED
))) {
396 SASEL_LOG("NEXT ia %s ifp1 %s ia6_flags 0x%x\n",
397 s_src
, ifp1
->if_xname
, ia
->ia6_flags
);
400 if (!ip6_use_deprecated
&& IFA6_IS_DEPRECATED(ia
, secs
)) {
401 SASEL_LOG("NEXT ia %s ifp1 %s IFA6_IS_DEPRECATED\n",
402 s_src
, ifp1
->if_xname
);
405 if (!nd6_optimistic_dad
&&
406 (ia
->ia6_flags
& IN6_IFF_OPTIMISTIC
) != 0) {
407 SASEL_LOG("NEXT ia %s ifp1 %s IN6_IFF_OPTIMISTIC\n",
408 s_src
, ifp1
->if_xname
);
411 /* Rule 1: Prefer same address */
412 if (IN6_ARE_ADDR_EQUAL(&dst
, &ia
->ia_addr
.sin6_addr
))
413 BREAK(IP6S_SRCRULE_1
); /* there should be no better candidate */
416 REPLACE(IP6S_SRCRULE_0
);
418 /* Rule 2: Prefer appropriate scope */
420 dst_scope
= in6_addrscope(&dst
);
421 new_scope
= in6_addrscope(&ia
->ia_addr
.sin6_addr
);
422 if (IN6_ARE_SCOPE_CMP(best_scope
, new_scope
) < 0) {
423 if (IN6_ARE_SCOPE_CMP(best_scope
, dst_scope
) < 0)
424 REPLACE(IP6S_SRCRULE_2
);
425 NEXTSRC(IP6S_SRCRULE_2
);
426 } else if (IN6_ARE_SCOPE_CMP(new_scope
, best_scope
) < 0) {
427 if (IN6_ARE_SCOPE_CMP(new_scope
, dst_scope
) < 0)
428 NEXTSRC(IP6S_SRCRULE_2
);
429 REPLACE(IP6S_SRCRULE_2
);
433 * Rule 3: Avoid deprecated addresses. Note that the case of
434 * !ip6_use_deprecated is already rejected above.
436 if (!IFA6_IS_DEPRECATED(ia_best
, secs
) &&
437 IFA6_IS_DEPRECATED(ia
, secs
))
438 NEXTSRC(IP6S_SRCRULE_3
);
439 if (IFA6_IS_DEPRECATED(ia_best
, secs
) &&
440 !IFA6_IS_DEPRECATED(ia
, secs
))
441 REPLACE(IP6S_SRCRULE_3
);
444 * RFC 4429 says that optimistic addresses are equivalent to
445 * deprecated addresses, so avoid them here.
447 if ((ia_best
->ia6_flags
& IN6_IFF_OPTIMISTIC
) == 0 &&
448 (ia
->ia6_flags
& IN6_IFF_OPTIMISTIC
) != 0)
449 NEXTSRC(IP6S_SRCRULE_3
);
450 if ((ia_best
->ia6_flags
& IN6_IFF_OPTIMISTIC
) != 0 &&
451 (ia
->ia6_flags
& IN6_IFF_OPTIMISTIC
) == 0)
452 REPLACE(IP6S_SRCRULE_3
);
454 /* Rule 4: Prefer home addresses */
456 * XXX: This is a TODO. We should probably merge the MIP6
460 /* Rule 5: Prefer outgoing interface */
461 if (ia_best
->ia_ifp
== ifp
&& ia
->ia_ifp
!= ifp
)
462 NEXTSRC(IP6S_SRCRULE_5
);
463 if (ia_best
->ia_ifp
!= ifp
&& ia
->ia_ifp
== ifp
)
464 REPLACE(IP6S_SRCRULE_5
);
466 /* Rule 5.5: Prefer addresses in a prefix advertised by the next hop. */
467 if (ro
!= NULL
&& ro
->ro_rt
!= NULL
&& ia_best
->ia6_ndpr
!= NULL
&&
468 ia
->ia6_ndpr
!= NULL
) {
469 struct rtentry
*rta
, *rtb
;
472 NDPR_LOCK(ia_best
->ia6_ndpr
);
473 rta
= ia_best
->ia6_ndpr
->ndpr_rt
;
476 NDPR_UNLOCK(ia_best
->ia6_ndpr
);
478 NDPR_LOCK(ia
->ia6_ndpr
);
479 rtb
= ia
->ia6_ndpr
->ndpr_rt
;
482 NDPR_UNLOCK(ia
->ia6_ndpr
);
484 if (rta
== NULL
|| rtb
== NULL
)
486 else if (rta
== ro
->ro_rt
&& rtb
!= ro
->ro_rt
)
488 else if (rta
!= ro
->ro_rt
&& rtb
== ro
->ro_rt
)
500 NEXTSRC(IP6S_SRCRULE_5_5
);
503 REPLACE(IP6S_SRCRULE_5_5
);
511 * Rule 6: Prefer matching label
512 * Note that best_policy should be non-NULL here.
514 if (dst_policy
== NULL
)
515 dst_policy
= in6_addrsel_lookup_policy(dstsock
);
516 if (dst_policy
->label
!= ADDR_LABEL_NOTAPP
) {
517 new_policy
= in6_addrsel_lookup_policy(&ia
->ia_addr
);
518 if (dst_policy
->label
== best_policy
->label
&&
519 dst_policy
->label
!= new_policy
->label
)
520 NEXTSRC(IP6S_SRCRULE_6
);
521 if (dst_policy
->label
!= best_policy
->label
&&
522 dst_policy
->label
== new_policy
->label
)
523 REPLACE(IP6S_SRCRULE_6
);
527 * Rule 7: Prefer temporary addresses.
528 * We allow users to reverse the logic by configuring
529 * a sysctl variable, so that transparency conscious users can
530 * always prefer stable addresses.
531 * Don't use temporary addresses for local destinations or
532 * for multicast addresses unless we were passed in an option.
534 if (IN6_IS_ADDR_MULTICAST(&dst
) ||
535 in6_matchlen(&ia_best
->ia_addr
.sin6_addr
, &dst
) >=
539 opts
->ip6po_prefer_tempaddr
== IP6PO_TEMPADDR_SYSTEM
) {
540 prefer_tempaddr
= islocal
? 0 : ip6_prefer_tempaddr
;
541 } else if (opts
->ip6po_prefer_tempaddr
==
542 IP6PO_TEMPADDR_NOTPREFER
) {
546 if (!(ia_best
->ia6_flags
& IN6_IFF_TEMPORARY
) &&
547 (ia
->ia6_flags
& IN6_IFF_TEMPORARY
)) {
549 REPLACE(IP6S_SRCRULE_7
);
551 NEXTSRC(IP6S_SRCRULE_7
);
553 if ((ia_best
->ia6_flags
& IN6_IFF_TEMPORARY
) &&
554 !(ia
->ia6_flags
& IN6_IFF_TEMPORARY
)) {
556 NEXTSRC(IP6S_SRCRULE_7
);
558 REPLACE(IP6S_SRCRULE_7
);
562 * Rule 7x: prefer addresses on alive interfaces.
563 * This is a KAME specific rule.
565 if ((ia_best
->ia_ifp
->if_flags
& IFF_UP
) &&
566 !(ia
->ia_ifp
->if_flags
& IFF_UP
))
567 NEXTSRC(IP6S_SRCRULE_7x
);
568 if (!(ia_best
->ia_ifp
->if_flags
& IFF_UP
) &&
569 (ia
->ia_ifp
->if_flags
& IFF_UP
))
570 REPLACE(IP6S_SRCRULE_7x
);
573 * Rule 8: Use longest matching prefix.
575 new_matchlen
= in6_matchlen(&ia
->ia_addr
.sin6_addr
, &dst
);
576 if (best_matchlen
< new_matchlen
)
577 REPLACE(IP6S_SRCRULE_8
);
578 if (new_matchlen
< best_matchlen
)
579 NEXTSRC(IP6S_SRCRULE_8
);
582 * Last resort: just keep the current candidate.
583 * Or, do we need more rules?
585 if (ifp1
!= ifp
&& (ifp1
->if_eflags
& IFEF_EXPENSIVE
) &&
586 ip6_select_src_expensive_secondary_if
== 0) {
587 SASEL_LOG("NEXT ia %s ifp1 %s IFEF_EXPENSIVE\n",
588 s_src
, ifp1
->if_xname
);
589 ip6stat
.ip6s_sources_skip_expensive_secondary_if
++;
592 SASEL_LOG("NEXT ia %s ifp1 %s last resort\n",
593 s_src
, ifp1
->if_xname
);
594 IFA_UNLOCK(&ia
->ia_ifa
);
599 * Ignore addresses on secondary interfaces that are marked
602 if (ifp1
!= ifp
&& (ifp1
->if_eflags
& IFEF_EXPENSIVE
) &&
603 ip6_select_src_expensive_secondary_if
== 0) {
604 SASEL_LOG("NEXT ia %s ifp1 %s IFEF_EXPENSIVE\n",
605 s_src
, ifp1
->if_xname
);
606 ip6stat
.ip6s_sources_skip_expensive_secondary_if
++;
610 best_scope
= (new_scope
>= 0 ? new_scope
:
611 in6_addrscope(&ia
->ia_addr
.sin6_addr
));
612 best_policy
= (new_policy
? new_policy
:
613 in6_addrsel_lookup_policy(&ia
->ia_addr
));
614 best_matchlen
= (new_matchlen
>= 0 ? new_matchlen
:
615 in6_matchlen(&ia
->ia_addr
.sin6_addr
, &dst
));
616 SASEL_LOG("NEXT ia %s ifp1 %s best_scope %d new_scope %d dst_scope %d\n",
617 s_src
, ifp1
->if_xname
, best_scope
, new_scope
, dst_scope
);
618 IFA_ADDREF_LOCKED(&ia
->ia_ifa
); /* for ia_best */
619 IFA_UNLOCK(&ia
->ia_ifa
);
621 IFA_REMREF(&ia_best
->ia_ifa
);
626 IFA_UNLOCK(&ia
->ia_ifa
);
630 IFA_ADDREF_LOCKED(&ia
->ia_ifa
); /* for ia_best */
631 IFA_UNLOCK(&ia
->ia_ifa
);
633 IFA_REMREF(&ia_best
->ia_ifa
);
638 lck_rw_done(&in6_ifaddr_rwlock
);
640 if (ia_best
!= NULL
&& inp
&&
641 inp_restricted_send(inp
, ia_best
->ia_ifa
.ifa_ifp
)) {
642 IFA_REMREF(&ia_best
->ia_ifa
);
644 *errorp
= EHOSTUNREACH
;
647 if ((ia
= ia_best
) == NULL
) {
649 *errorp
= EADDRNOTAVAIL
;
654 IFA_LOCK_SPIN(&ia
->ia_ifa
);
655 if (bestrule
< IP6S_SRCRULE_COUNT
)
656 ip6stat
.ip6s_sources_rule
[bestrule
]++;
657 *src_storage
= satosin6(&ia
->ia_addr
)->sin6_addr
;
658 IFA_UNLOCK(&ia
->ia_ifa
);
659 IFA_REMREF(&ia
->ia_ifa
);
661 if (SASEL_DO_DBG(inp
)) {
662 (void) inet_ntop(AF_INET6
, &dst
, s_dst
, sizeof (s_src
));
664 tmp
= (src_storage
!= NULL
) ? src_storage
: &in6addr_any
;
665 (void) inet_ntop(AF_INET6
, tmp
, s_src
, sizeof (s_src
));
667 printf("%s out src %s dst %s ifscope %d dst_scope %d best_scope %d\n",
668 __func__
, s_src
, s_dst
, ifscope
, dst_scope
, best_scope
);
671 /* if ifp is non-NULL, refcnt held in in6_selectif() */
673 } else if (ifp
!= NULL
) {
676 return (src_storage
);
680 * Given a source IPv6 address (and route, if available), determine the best
681 * interface to send the packet from. Checking for (and updating) the
682 * ROF_SRCIF_SELECTED flag in the pcb-supplied route placeholder is done
683 * without any locks, based on the assumption that in the event this is
684 * called from ip6_output(), the output operation is single-threaded per-pcb,
685 * i.e. for any given pcb there can only be one thread performing output at
688 * This routine is analogous to in_selectsrcif() for IPv4. Regardless of
689 * error, it will return an ifp with a reference held if the caller provides
690 * a non-NULL retifp. The caller is responsible for checking if the
691 * returned ifp is valid and release its reference at all times.
693 * clone - meaningful only for bsdi and freebsd
696 selectroute(struct sockaddr_in6
*srcsock
, struct sockaddr_in6
*dstsock
,
697 struct ip6_pktopts
*opts
, struct ip6_moptions
*mopts
,
698 struct in6_ifaddr
**retsrcia
, struct route_in6
*ro
,
699 struct ifnet
**retifp
, struct rtentry
**retrt
, int clone
,
700 int norouteok
, struct ip6_out_args
*ip6oa
)
703 struct ifnet
*ifp
= NULL
, *ifp0
= NULL
;
704 struct route_in6
*route
= NULL
;
705 struct sockaddr_in6
*sin6_next
;
706 struct in6_pktinfo
*pi
= NULL
;
707 struct in6_addr
*dst
= &dstsock
->sin6_addr
;
708 struct ifaddr
*ifa
= NULL
;
709 char s_src
[MAX_IPv6_STR_LEN
], s_dst
[MAX_IPv6_STR_LEN
];
710 boolean_t select_srcif
, proxied_ifa
= FALSE
, local_dst
= FALSE
;
711 unsigned int ifscope
= ((ip6oa
!= NULL
) ?
712 ip6oa
->ip6oa_boundif
: IFSCOPE_NONE
);
715 char ip6buf
[INET6_ADDRSTRLEN
];
717 if (dstsock
->sin6_addr
.s6_addr32
[0] == 0 &&
718 dstsock
->sin6_addr
.s6_addr32
[1] == 0 &&
719 !IN6_IS_ADDR_LOOPBACK(&dstsock
->sin6_addr
)) {
720 printf("in6_selectroute: strange destination %s\n",
721 ip6_sprintf(ip6buf
, &dstsock
->sin6_addr
));
723 printf("in6_selectroute: destination = %s%%%d\n",
724 ip6_sprintf(ip6buf
, &dstsock
->sin6_addr
),
725 dstsock
->sin6_scope_id
); /* for debug */
735 if (ip6_select_srcif_debug
) {
737 src
= (srcsock
!= NULL
) ? srcsock
->sin6_addr
: in6addr_any
;
738 (void) inet_ntop(AF_INET6
, &src
, s_src
, sizeof (s_src
));
739 (void) inet_ntop(AF_INET6
, dst
, s_dst
, sizeof (s_dst
));
743 * If the destination address is UNSPECIFIED addr, bail out.
745 if (IN6_IS_ADDR_UNSPECIFIED(dst
)) {
746 error
= EHOSTUNREACH
;
751 * Perform source interface selection only if Scoped Routing
752 * is enabled and a source address that isn't unspecified.
754 select_srcif
= (ip6_doscopedroute
&& srcsock
!= NULL
&&
755 !IN6_IS_ADDR_UNSPECIFIED(&srcsock
->sin6_addr
));
757 if (ip6_select_srcif_debug
) {
758 printf("%s src %s dst %s ifscope %d select_srcif %d\n",
759 __func__
, s_src
, s_dst
, ifscope
, select_srcif
);
762 * If Scoped Routing is disabled, ignore the given ifscope.
763 * Otherwise even if source selection won't be performed,
764 * we still obey IPV6_BOUND_IF.
766 if (!ip6_doscopedroute
&& ifscope
!= IFSCOPE_NONE
)
767 ifscope
= IFSCOPE_NONE
;
769 /* If the caller specified the outgoing interface explicitly, use it */
770 if (opts
!= NULL
&& (pi
= opts
->ip6po_pktinfo
) != NULL
&&
771 pi
->ipi6_ifindex
!= 0) {
773 * If IPV6_PKTINFO takes precedence over IPV6_BOUND_IF.
775 ifscope
= pi
->ipi6_ifindex
;
776 ifnet_head_lock_shared();
777 /* ifp may be NULL if detached or out of range */
779 ((ifscope
<= if_index
) ? ifindex2ifnet
[ifscope
] : NULL
);
781 if (norouteok
|| retrt
== NULL
|| IN6_IS_ADDR_MULTICAST(dst
)) {
783 * We do not have to check or get the route for
784 * multicast. If the caller didn't ask/care for
785 * the route and we have no interface to use,
789 error
= EHOSTUNREACH
;
797 * If the destination address is a multicast address and the outgoing
798 * interface for the address is specified by the caller, use it.
800 if (IN6_IS_ADDR_MULTICAST(dst
) && mopts
!= NULL
) {
802 if ((ifp
= ifp0
= mopts
->im6o_multicast_ifp
) != NULL
) {
804 goto done
; /* we do not need a route for multicast. */
811 * If the outgoing interface was not set via IPV6_BOUND_IF or
812 * IPV6_PKTINFO, use the scope ID in the destination address.
814 if (ip6_doscopedroute
&& ifscope
== IFSCOPE_NONE
)
815 ifscope
= dstsock
->sin6_scope_id
;
818 * Perform source interface selection; the source IPv6 address
819 * must belong to one of the addresses of the interface used
820 * by the route. For performance reasons, do this only if
821 * there is no route, or if the routing table has changed,
822 * or if we haven't done source interface selection on this
823 * route (for this PCB instance) before.
827 } else if (!ROUTE_UNUSABLE(ro
) && ro
->ro_srcia
!= NULL
&&
828 (ro
->ro_flags
& ROF_SRCIF_SELECTED
)) {
829 if (ro
->ro_rt
->rt_ifp
->if_flags
& IFF_LOOPBACK
)
832 IFA_ADDREF(ifa
); /* for caller */
837 * Given the source IPv6 address, find a suitable source interface
838 * to use for transmission; if a scope ID has been specified,
839 * optimize the search by looking at the addresses only for that
840 * interface. This is still suboptimal, however, as we need to
841 * traverse the per-interface list.
843 if (ifscope
!= IFSCOPE_NONE
|| (ro
!= NULL
&& ro
->ro_rt
!= NULL
)) {
844 unsigned int scope
= ifscope
;
845 struct ifnet
*rt_ifp
;
847 rt_ifp
= (ro
->ro_rt
!= NULL
) ? ro
->ro_rt
->rt_ifp
: NULL
;
850 * If no scope is specified and the route is stale (pointing
851 * to a defunct interface) use the current primary interface;
852 * this happens when switching between interfaces configured
853 * with the same IPv6 address. Otherwise pick up the scope
854 * information from the route; the ULP may have looked up a
855 * correct route and we just need to verify it here and mark
856 * it with the ROF_SRCIF_SELECTED flag below.
858 if (scope
== IFSCOPE_NONE
) {
859 scope
= rt_ifp
->if_index
;
860 if (scope
!= get_primary_ifscope(AF_INET6
) &&
862 scope
= get_primary_ifscope(AF_INET6
);
865 ifa
= (struct ifaddr
*)
866 ifa_foraddr6_scoped(&srcsock
->sin6_addr
, scope
);
869 * If we are forwarding and proxying prefix(es), see if the
870 * source address is one of ours and is a proxied address;
873 if (ifa
== NULL
&& ip6_forwarding
&& nd6_prproxy
) {
874 ifa
= (struct ifaddr
*)
875 ifa_foraddr6(&srcsock
->sin6_addr
);
876 if (ifa
!= NULL
&& !(proxied_ifa
=
877 nd6_prproxy_ifaddr((struct in6_ifaddr
*)ifa
))) {
883 if (ip6_select_srcif_debug
&& ifa
!= NULL
) {
884 if (ro
->ro_rt
!= NULL
) {
885 printf("%s %s->%s ifscope %d->%d ifa_if %s "
888 s_src
, s_dst
, ifscope
,
889 scope
, if_name(ifa
->ifa_ifp
),
892 printf("%s %s->%s ifscope %d->%d ifa_if %s\n",
894 s_src
, s_dst
, ifscope
, scope
,
895 if_name(ifa
->ifa_ifp
));
901 * Slow path; search for an interface having the corresponding source
902 * IPv6 address if the scope was not specified by the caller, and:
904 * 1) There currently isn't any route, or,
905 * 2) The interface used by the route does not own that source
906 * IPv6 address; in this case, the route will get blown away
907 * and we'll do a more specific scoped search using the newly
910 if (ifa
== NULL
&& ifscope
== IFSCOPE_NONE
) {
911 struct ifaddr
*ifadst
;
913 /* Check if the destination address is one of ours */
914 ifadst
= (struct ifaddr
*)ifa_foraddr6(&dstsock
->sin6_addr
);
915 if (ifadst
!= NULL
) {
920 ifa
= (struct ifaddr
*)ifa_foraddr6(&srcsock
->sin6_addr
);
922 if (ip6_select_srcif_debug
&& ifa
!= NULL
) {
923 printf("%s %s->%s ifscope %d ifa_if %s\n",
925 s_src
, s_dst
, ifscope
, if_name(ifa
->ifa_ifp
));
926 } else if (ip6_select_srcif_debug
) {
927 printf("%s %s->%s ifscope %d ifa_if NULL\n",
929 s_src
, s_dst
, ifscope
);
934 if (ifa
!= NULL
&& !proxied_ifa
&& !local_dst
)
935 ifscope
= ifa
->ifa_ifp
->if_index
;
938 * If the next hop address for the packet is specified by the caller,
939 * use it as the gateway.
941 if (opts
!= NULL
&& opts
->ip6po_nexthop
!= NULL
) {
942 struct route_in6
*ron
;
944 sin6_next
= satosin6(opts
->ip6po_nexthop
);
946 /* at this moment, we only support AF_INET6 next hops */
947 if (sin6_next
->sin6_family
!= AF_INET6
) {
948 error
= EAFNOSUPPORT
; /* or should we proceed? */
953 * If the next hop is an IPv6 address, then the node identified
954 * by that address must be a neighbor of the sending host.
956 ron
= &opts
->ip6po_nextroute
;
957 if (ron
->ro_rt
!= NULL
)
959 if (ROUTE_UNUSABLE(ron
) || (ron
->ro_rt
!= NULL
&&
960 (!(ron
->ro_rt
->rt_flags
& RTF_LLINFO
) ||
961 (select_srcif
&& (ifa
== NULL
||
962 (ifa
->ifa_ifp
!= ron
->ro_rt
->rt_ifp
&& !proxied_ifa
))))) ||
963 !IN6_ARE_ADDR_EQUAL(&satosin6(&ron
->ro_dst
)->sin6_addr
,
964 &sin6_next
->sin6_addr
)) {
965 if (ron
->ro_rt
!= NULL
)
966 RT_UNLOCK(ron
->ro_rt
);
969 *satosin6(&ron
->ro_dst
) = *sin6_next
;
971 if (ron
->ro_rt
== NULL
) {
972 rtalloc_scoped((struct route
*)ron
, ifscope
);
973 if (ron
->ro_rt
!= NULL
)
975 if (ROUTE_UNUSABLE(ron
) ||
976 !(ron
->ro_rt
->rt_flags
& RTF_LLINFO
) ||
977 !IN6_ARE_ADDR_EQUAL(&satosin6(rt_key(ron
->ro_rt
))->
978 sin6_addr
, &sin6_next
->sin6_addr
)) {
979 if (ron
->ro_rt
!= NULL
)
980 RT_UNLOCK(ron
->ro_rt
);
983 error
= EHOSTUNREACH
;
988 ifp
= ifp0
= ron
->ro_rt
->rt_ifp
;
991 * When cloning is required, try to allocate a route to the
992 * destination so that the caller can store path MTU
997 /* Keep the route locked */
1000 RT_UNLOCK(ron
->ro_rt
);
1003 RT_UNLOCK(ron
->ro_rt
);
1007 * Use a cached route if it exists and is valid, else try to allocate
1008 * a new one. Note that we should check the address family of the
1009 * cached destination, in case of sharing the cache with IPv4.
1013 if (ro
->ro_rt
!= NULL
)
1014 RT_LOCK_SPIN(ro
->ro_rt
);
1015 if (ROUTE_UNUSABLE(ro
) || (ro
->ro_rt
!= NULL
&&
1016 (satosin6(&ro
->ro_dst
)->sin6_family
!= AF_INET6
||
1017 !IN6_ARE_ADDR_EQUAL(&satosin6(&ro
->ro_dst
)->sin6_addr
, dst
) ||
1018 (select_srcif
&& (ifa
== NULL
||
1019 (ifa
->ifa_ifp
!= ro
->ro_rt
->rt_ifp
&& !proxied_ifa
)))))) {
1020 if (ro
->ro_rt
!= NULL
)
1021 RT_UNLOCK(ro
->ro_rt
);
1025 if (ro
->ro_rt
== NULL
) {
1026 struct sockaddr_in6
*sa6
;
1028 if (ro
->ro_rt
!= NULL
)
1029 RT_UNLOCK(ro
->ro_rt
);
1030 /* No route yet, so try to acquire one */
1031 bzero(&ro
->ro_dst
, sizeof (struct sockaddr_in6
));
1032 sa6
= (struct sockaddr_in6
*)&ro
->ro_dst
;
1033 sa6
->sin6_family
= AF_INET6
;
1034 sa6
->sin6_len
= sizeof (struct sockaddr_in6
);
1035 sa6
->sin6_addr
= *dst
;
1036 if (IN6_IS_ADDR_MULTICAST(dst
)) {
1037 ro
->ro_rt
= rtalloc1_scoped(
1038 &((struct route
*)ro
)->ro_dst
, 0, 0, ifscope
);
1040 rtalloc_scoped((struct route
*)ro
, ifscope
);
1042 if (ro
->ro_rt
!= NULL
)
1043 RT_LOCK_SPIN(ro
->ro_rt
);
1047 * Do not care about the result if we have the nexthop
1048 * explicitly specified (in case we're asked to clone.)
1050 if (opts
!= NULL
&& opts
->ip6po_nexthop
!= NULL
) {
1051 if (ro
->ro_rt
!= NULL
)
1052 RT_UNLOCK(ro
->ro_rt
);
1056 if (ro
->ro_rt
!= NULL
) {
1057 RT_LOCK_ASSERT_HELD(ro
->ro_rt
);
1058 ifp
= ifp0
= ro
->ro_rt
->rt_ifp
;
1060 error
= EHOSTUNREACH
;
1066 boolean_t has_route
= (route
!= NULL
&& route
->ro_rt
!= NULL
);
1067 boolean_t srcif_selected
= FALSE
;
1070 RT_LOCK_ASSERT_HELD(route
->ro_rt
);
1072 * If there is a non-loopback route with the wrong interface,
1073 * or if there is no interface configured with such an address,
1074 * blow it away. Except for local/loopback, we look for one
1075 * with a matching interface scope/index.
1077 if (has_route
&& (ifa
== NULL
||
1078 (ifa
->ifa_ifp
!= ifp
&& ifp
!= lo_ifp
) ||
1079 !(route
->ro_rt
->rt_flags
& RTF_UP
))) {
1081 * If the destination address belongs to a proxied
1082 * prefix, relax the requirement and allow the packet
1083 * to come out of the proxy interface with the source
1084 * address of the real interface.
1086 if (ifa
!= NULL
&& proxied_ifa
&&
1087 (route
->ro_rt
->rt_flags
& (RTF_UP
|RTF_PROXY
)) ==
1088 (RTF_UP
|RTF_PROXY
)) {
1089 srcif_selected
= TRUE
;
1091 if (ip6_select_srcif_debug
) {
1093 printf("%s->%s ifscope %d "
1094 "ro_if %s != ifa_if %s "
1095 "(cached route cleared)\n",
1097 ifscope
, if_name(ifp
),
1098 if_name(ifa
->ifa_ifp
));
1100 printf("%s->%s ifscope %d "
1101 "ro_if %s (no ifa_if "
1102 "found)\n", s_src
, s_dst
,
1103 ifscope
, if_name(ifp
));
1106 RT_UNLOCK(route
->ro_rt
);
1107 ROUTE_RELEASE(route
);
1108 error
= EHOSTUNREACH
;
1109 /* Undo the settings done above */
1111 ifp
= NULL
; /* ditch ifp; keep ifp0 */
1114 } else if (has_route
) {
1115 srcif_selected
= TRUE
;
1118 if (srcif_selected
) {
1120 if (ifa
!= route
->ro_srcia
||
1121 !(route
->ro_flags
& ROF_SRCIF_SELECTED
)) {
1122 RT_CONVERT_LOCK(route
->ro_rt
);
1124 IFA_ADDREF(ifa
); /* for route_in6 */
1125 if (route
->ro_srcia
!= NULL
)
1126 IFA_REMREF(route
->ro_srcia
);
1127 route
->ro_srcia
= ifa
;
1128 route
->ro_flags
|= ROF_SRCIF_SELECTED
;
1129 RT_GENID_SYNC(route
->ro_rt
);
1131 RT_UNLOCK(route
->ro_rt
);
1134 if (ro
->ro_rt
!= NULL
)
1135 RT_UNLOCK(ro
->ro_rt
);
1136 if (ifp
!= NULL
&& opts
!= NULL
&&
1137 opts
->ip6po_pktinfo
!= NULL
&&
1138 opts
->ip6po_pktinfo
->ipi6_ifindex
!= 0) {
1140 * Check if the outgoing interface conflicts with the
1141 * interface specified by ipi6_ifindex (if specified).
1142 * Note that loopback interface is always okay.
1143 * (this may happen when we are sending a packet to
1144 * one of our own addresses.)
1146 if (!(ifp
->if_flags
& IFF_LOOPBACK
) && ifp
->if_index
!=
1147 opts
->ip6po_pktinfo
->ipi6_ifindex
) {
1148 error
= EHOSTUNREACH
;
1156 * Check for interface restrictions.
1158 #define CHECK_RESTRICTIONS(_ip6oa, _ifp) \
1159 ((((_ip6oa)->ip6oa_flags & IP6OAF_NO_CELLULAR) && \
1160 IFNET_IS_CELLULAR(_ifp)) || \
1161 (((_ip6oa)->ip6oa_flags & IP6OAF_NO_EXPENSIVE) && \
1162 IFNET_IS_EXPENSIVE(_ifp)) || \
1163 (!((_ip6oa)->ip6oa_flags & IP6OAF_AWDL_UNRESTRICTED) && \
1164 IFNET_IS_AWDL_RESTRICTED(_ifp)))
1166 if (error
== 0 && ip6oa
!= NULL
&&
1167 ((ifp
&& CHECK_RESTRICTIONS(ip6oa
, ifp
)) ||
1168 (route
&& route
->ro_rt
&&
1169 CHECK_RESTRICTIONS(ip6oa
, route
->ro_rt
->rt_ifp
)))) {
1170 if (route
!= NULL
&& route
->ro_rt
!= NULL
) {
1171 ROUTE_RELEASE(route
);
1174 ifp
= NULL
; /* ditch ifp; keep ifp0 */
1175 error
= EHOSTUNREACH
;
1176 ip6oa
->ip6oa_retflags
|= IP6OARF_IFDENIED
;
1178 #undef CHECK_RESTRICTIONS
1181 * If the interface is disabled for IPv6, then ENETDOWN error.
1184 ifp
!= NULL
&& (ifp
->if_eflags
& IFEF_IPV6_DISABLED
)) {
1188 if (ifp
== NULL
&& (route
== NULL
|| route
->ro_rt
== NULL
)) {
1190 * This can happen if the caller did not pass a cached route
1191 * nor any other hints. We treat this case an error.
1193 error
= EHOSTUNREACH
;
1195 if (error
== EHOSTUNREACH
|| error
== ENETDOWN
)
1196 ip6stat
.ip6s_noroute
++;
1199 * We'll return ifp regardless of error, so pick it up from ifp0
1200 * in case it was nullified above. Caller is responsible for
1201 * releasing the ifp if it is non-NULL.
1204 if (retifp
!= NULL
) {
1206 ifnet_reference(ifp
); /* for caller */
1210 if (retsrcia
!= NULL
) {
1212 IFA_ADDREF(ifa
); /* for caller */
1213 *retsrcia
= (struct in6_ifaddr
*)ifa
;
1217 if (retrt
!= NULL
&& route
!= NULL
)
1218 *retrt
= route
->ro_rt
; /* ro_rt may be NULL */
1220 if (ip6_select_srcif_debug
) {
1221 printf("%s %s->%s ifscope %d ifa_if %s ro_if %s (error=%d)\n",
1223 s_src
, s_dst
, ifscope
,
1224 (ifa
!= NULL
) ? if_name(ifa
->ifa_ifp
) : "NONE",
1225 (ifp
!= NULL
) ? if_name(ifp
) : "NONE", error
);
1235 * Regardless of error, it will return an ifp with a reference held if the
1236 * caller provides a non-NULL retifp. The caller is responsible for checking
1237 * if the returned ifp is valid and release its reference at all times.
1240 in6_selectif(struct sockaddr_in6
*dstsock
, struct ip6_pktopts
*opts
,
1241 struct ip6_moptions
*mopts
, struct route_in6
*ro
,
1242 struct ip6_out_args
*ip6oa
, struct ifnet
**retifp
)
1245 struct route_in6 sro
;
1246 struct rtentry
*rt
= NULL
;
1249 bzero(&sro
, sizeof (sro
));
1253 if ((err
= selectroute(NULL
, dstsock
, opts
, mopts
, NULL
, ro
, retifp
,
1254 &rt
, 0, 1, ip6oa
)) != 0)
1258 * do not use a rejected or black hole route.
1259 * XXX: this check should be done in the L2 output routine.
1260 * However, if we skipped this check here, we'd see the following
1262 * - install a rejected route for a scoped address prefix
1264 * - send a packet to a destination that matches the scoped prefix,
1265 * with ambiguity about the scope zone.
1266 * - pick the outgoing interface from the route, and disambiguate the
1267 * scope zone with the interface.
1268 * - ip6_output() would try to get another route with the "new"
1269 * destination, which may be valid.
1270 * - we'd see no error on output.
1271 * Although this may not be very harmful, it should still be confusing.
1272 * We thus reject the case here.
1274 if (rt
&& (rt
->rt_flags
& (RTF_REJECT
| RTF_BLACKHOLE
))) {
1275 err
= ((rt
->rt_flags
& RTF_HOST
) ? EHOSTUNREACH
: ENETUNREACH
);
1280 * Adjust the "outgoing" interface. If we're going to loop the packet
1281 * back to ourselves, the ifp would be the loopback interface.
1282 * However, we'd rather know the interface associated to the
1283 * destination address (which should probably be one of our own
1286 if (rt
!= NULL
&& rt
->rt_ifa
!= NULL
&& rt
->rt_ifa
->ifa_ifp
!= NULL
&&
1288 ifnet_reference(rt
->rt_ifa
->ifa_ifp
);
1289 if (*retifp
!= NULL
)
1290 ifnet_release(*retifp
);
1291 *retifp
= rt
->rt_ifa
->ifa_ifp
;
1296 VERIFY(rt
== NULL
|| rt
== ro
->ro_rt
);
1301 * retifp might point to a valid ifp with a reference held;
1302 * caller is responsible for releasing it if non-NULL.
1308 * Regardless of error, it will return an ifp with a reference held if the
1309 * caller provides a non-NULL retifp. The caller is responsible for checking
1310 * if the returned ifp is valid and release its reference at all times.
1312 * clone - meaningful only for bsdi and freebsd
1315 in6_selectroute(struct sockaddr_in6
*srcsock
, struct sockaddr_in6
*dstsock
,
1316 struct ip6_pktopts
*opts
, struct ip6_moptions
*mopts
,
1317 struct in6_ifaddr
**retsrcia
, struct route_in6
*ro
, struct ifnet
**retifp
,
1318 struct rtentry
**retrt
, int clone
, struct ip6_out_args
*ip6oa
)
1321 return (selectroute(srcsock
, dstsock
, opts
, mopts
, retsrcia
, ro
, retifp
,
1322 retrt
, clone
, 0, ip6oa
));
1326 * Default hop limit selection. The precedence is as follows:
1327 * 1. Hoplimit value specified via ioctl.
1328 * 2. (If the outgoing interface is detected) the current
1329 * hop limit of the interface specified by router advertisement.
1330 * 3. The system default hoplimit.
1333 in6_selecthlim(struct in6pcb
*in6p
, struct ifnet
*ifp
)
1335 if (in6p
&& in6p
->in6p_hops
>= 0) {
1336 return (in6p
->in6p_hops
);
1337 } else if (NULL
!= ifp
) {
1339 struct nd_ifinfo
*ndi
= ND_IFINFO(ifp
);
1340 if (ndi
&& ndi
->initialized
) {
1341 /* access chlim without lock, for performance */
1344 chlim
= ip6_defhlim
;
1349 return (ip6_defhlim
);
1353 * XXX: this is borrowed from in6_pcbbind(). If possible, we should
1354 * share this function by all *bsd*...
1357 in6_pcbsetport(struct in6_addr
*laddr
, struct inpcb
*inp
, struct proc
*p
,
1360 #pragma unused(laddr)
1361 struct socket
*so
= inp
->inp_socket
;
1362 u_int16_t lport
= 0, first
, last
, *lastport
;
1363 int count
, error
= 0, wild
= 0;
1364 struct inpcbinfo
*pcbinfo
= inp
->inp_pcbinfo
;
1366 if (!locked
) { /* Make sure we don't run into a deadlock: 4052373 */
1367 if (!lck_rw_try_lock_exclusive(pcbinfo
->ipi_lock
)) {
1368 socket_unlock(inp
->inp_socket
, 0);
1369 lck_rw_lock_exclusive(pcbinfo
->ipi_lock
);
1370 socket_lock(inp
->inp_socket
, 0);
1374 * Check if a local port was assigned to the inp while
1375 * this thread was waiting for the pcbinfo lock
1377 if (inp
->inp_lport
!= 0) {
1378 VERIFY(inp
->inp_flags2
& INP2_INHASHLIST
);
1379 lck_rw_done(pcbinfo
->ipi_lock
);
1382 * It is not an error if another thread allocated
1389 /* XXX: this is redundant when called from in6_pcbbind */
1390 if ((so
->so_options
& (SO_REUSEADDR
|SO_REUSEPORT
)) == 0)
1391 wild
= INPLOOKUP_WILDCARD
;
1393 if (inp
->inp_flags
& INP_HIGHPORT
) {
1394 first
= ipport_hifirstauto
; /* sysctl */
1395 last
= ipport_hilastauto
;
1396 lastport
= &pcbinfo
->ipi_lasthi
;
1397 } else if (inp
->inp_flags
& INP_LOWPORT
) {
1398 cred
= kauth_cred_proc_ref(p
);
1399 error
= priv_check_cred(cred
, PRIV_NETINET_RESERVEDPORT
, 0);
1400 kauth_cred_unref(&cred
);
1403 lck_rw_done(pcbinfo
->ipi_lock
);
1406 first
= ipport_lowfirstauto
; /* 1023 */
1407 last
= ipport_lowlastauto
; /* 600 */
1408 lastport
= &pcbinfo
->ipi_lastlow
;
1410 first
= ipport_firstauto
; /* sysctl */
1411 last
= ipport_lastauto
;
1412 lastport
= &pcbinfo
->ipi_lastport
;
1415 * Simple check to ensure all ports are not used up causing
1418 * We split the two cases (up and down) so that the direction
1419 * is not being tested on each round of the loop.
1425 count
= first
- last
;
1428 if (count
-- < 0) { /* completely used? */
1430 * Undo any address bind that may have
1433 inp
->in6p_laddr
= in6addr_any
;
1434 inp
->in6p_last_outifp
= NULL
;
1436 lck_rw_done(pcbinfo
->ipi_lock
);
1440 if (*lastport
> first
|| *lastport
< last
)
1442 lport
= htons(*lastport
);
1443 } while (in6_pcblookup_local(pcbinfo
, &inp
->in6p_laddr
, lport
,
1447 count
= last
- first
;
1450 if (count
-- < 0) { /* completely used? */
1452 * Undo any address bind that may have
1455 inp
->in6p_laddr
= in6addr_any
;
1456 inp
->in6p_last_outifp
= NULL
;
1458 lck_rw_done(pcbinfo
->ipi_lock
);
1462 if (*lastport
< first
|| *lastport
> last
)
1464 lport
= htons(*lastport
);
1465 } while (in6_pcblookup_local(pcbinfo
, &inp
->in6p_laddr
, lport
,
1469 inp
->inp_lport
= lport
;
1470 inp
->inp_flags
|= INP_ANONPORT
;
1472 if (in_pcbinshash(inp
, 1) != 0) {
1473 inp
->in6p_laddr
= in6addr_any
;
1474 inp
->in6p_last_outifp
= NULL
;
1477 inp
->inp_flags
&= ~INP_ANONPORT
;
1479 lck_rw_done(pcbinfo
->ipi_lock
);
1484 lck_rw_done(pcbinfo
->ipi_lock
);
1489 * The followings are implementation of the policy table using a
1490 * simple tail queue.
1491 * XXX such details should be hidden.
1492 * XXX implementation using binary tree should be more efficient.
1494 struct addrsel_policyent
{
1495 TAILQ_ENTRY(addrsel_policyent
) ape_entry
;
1496 struct in6_addrpolicy ape_policy
;
1499 TAILQ_HEAD(addrsel_policyhead
, addrsel_policyent
);
1501 struct addrsel_policyhead addrsel_policytab
;
1504 init_policy_queue(void)
1506 TAILQ_INIT(&addrsel_policytab
);
1510 addrsel_policy_init(void)
1513 * Default address selection policy based on RFC 6724.
1515 static const struct in6_addrpolicy defaddrsel
[] = {
1516 /* Loopback -- prefix=::1/128, precedence=50, label=0 */
1519 .sin6_family
= AF_INET6
,
1520 .sin6_addr
= IN6ADDR_LOOPBACK_INIT
,
1521 .sin6_len
= sizeof (struct sockaddr_in6
)
1524 .sin6_family
= AF_INET6
,
1525 .sin6_addr
= IN6MASK128
,
1526 .sin6_len
= sizeof (struct sockaddr_in6
)
1532 /* Unspecified -- prefix=::/0, precedence=40, label=1 */
1535 .sin6_family
= AF_INET6
,
1536 .sin6_addr
= IN6ADDR_ANY_INIT
,
1537 .sin6_len
= sizeof (struct sockaddr_in6
)
1540 .sin6_family
= AF_INET6
,
1541 .sin6_addr
= IN6MASK0
,
1542 .sin6_len
= sizeof (struct sockaddr_in6
)
1548 /* IPv4 Mapped -- prefix=::ffff:0:0/96, precedence=35, label=4 */
1551 .sin6_family
= AF_INET6
,
1552 .sin6_addr
= IN6ADDR_V4MAPPED_INIT
,
1553 .sin6_len
= sizeof (struct sockaddr_in6
)
1556 .sin6_family
= AF_INET6
,
1557 .sin6_addr
= IN6MASK96
,
1558 .sin6_len
= sizeof (struct sockaddr_in6
)
1564 /* 6to4 -- prefix=2002::/16, precedence=30, label=2 */
1567 .sin6_family
= AF_INET6
,
1568 .sin6_addr
= {{{ 0x20, 0x02 }}},
1569 .sin6_len
= sizeof (struct sockaddr_in6
)
1572 .sin6_family
= AF_INET6
,
1573 .sin6_addr
= IN6MASK16
,
1574 .sin6_len
= sizeof (struct sockaddr_in6
)
1580 /* Teredo -- prefix=2001::/32, precedence=5, label=5 */
1583 .sin6_family
= AF_INET6
,
1584 .sin6_addr
= {{{ 0x20, 0x01 }}},
1585 .sin6_len
= sizeof (struct sockaddr_in6
)
1588 .sin6_family
= AF_INET6
,
1589 .sin6_addr
= IN6MASK32
,
1590 .sin6_len
= sizeof (struct sockaddr_in6
)
1596 /* Unique Local (ULA) -- prefix=fc00::/7, precedence=3, label=13 */
1599 .sin6_family
= AF_INET6
,
1600 .sin6_addr
= {{{ 0xfc }}},
1601 .sin6_len
= sizeof (struct sockaddr_in6
)
1604 .sin6_family
= AF_INET6
,
1605 .sin6_addr
= IN6MASK7
,
1606 .sin6_len
= sizeof (struct sockaddr_in6
)
1612 /* IPv4 Compatible -- prefix=::/96, precedence=1, label=3 */
1615 .sin6_family
= AF_INET6
,
1616 .sin6_addr
= IN6ADDR_ANY_INIT
,
1617 .sin6_len
= sizeof (struct sockaddr_in6
)
1620 .sin6_family
= AF_INET6
,
1621 .sin6_addr
= IN6MASK96
,
1622 .sin6_len
= sizeof (struct sockaddr_in6
)
1628 /* Site-local (deprecated) -- prefix=fec0::/10, precedence=1, label=11 */
1631 .sin6_family
= AF_INET6
,
1632 .sin6_addr
= {{{ 0xfe, 0xc0 }}},
1633 .sin6_len
= sizeof (struct sockaddr_in6
)
1636 .sin6_family
= AF_INET6
,
1637 .sin6_addr
= IN6MASK16
,
1638 .sin6_len
= sizeof (struct sockaddr_in6
)
1644 /* 6bone (deprecated) -- prefix=3ffe::/16, precedence=1, label=12 */
1647 .sin6_family
= AF_INET6
,
1648 .sin6_addr
= {{{ 0x3f, 0xfe }}},
1649 .sin6_len
= sizeof (struct sockaddr_in6
)
1652 .sin6_family
= AF_INET6
,
1653 .sin6_addr
= IN6MASK16
,
1654 .sin6_len
= sizeof (struct sockaddr_in6
)
1662 init_policy_queue();
1664 /* initialize the "last resort" policy */
1665 bzero(&defaultaddrpolicy
, sizeof (defaultaddrpolicy
));
1666 defaultaddrpolicy
.label
= ADDR_LABEL_NOTAPP
;
1668 for (i
= 0; i
< sizeof (defaddrsel
) / sizeof (defaddrsel
[0]); i
++)
1669 add_addrsel_policyent(&defaddrsel
[i
]);
1673 struct in6_addrpolicy
*
1674 in6_addrsel_lookup_policy(struct sockaddr_in6
*key
)
1676 struct in6_addrpolicy
*match
= NULL
;
1679 match
= match_addrsel_policy(key
);
1682 match
= &defaultaddrpolicy
;
1690 static struct in6_addrpolicy
*
1691 match_addrsel_policy(struct sockaddr_in6
*key
)
1693 struct addrsel_policyent
*pent
;
1694 struct in6_addrpolicy
*bestpol
= NULL
, *pol
;
1695 int matchlen
, bestmatchlen
= -1;
1696 u_char
*mp
, *ep
, *k
, *p
, m
;
1698 TAILQ_FOREACH(pent
, &addrsel_policytab
, ape_entry
) {
1701 pol
= &pent
->ape_policy
;
1702 mp
= (u_char
*)&pol
->addrmask
.sin6_addr
;
1703 ep
= mp
+ 16; /* XXX: scope field? */
1704 k
= (u_char
*)&key
->sin6_addr
;
1705 p
= (u_char
*)&pol
->addr
.sin6_addr
;
1706 for (; mp
< ep
&& *mp
; mp
++, k
++, p
++) {
1709 goto next
; /* not match */
1710 if (m
== 0xff) /* short cut for a typical case */
1720 /* matched. check if this is better than the current best. */
1721 if (bestpol
== NULL
||
1722 matchlen
> bestmatchlen
) {
1724 bestmatchlen
= matchlen
;
1735 add_addrsel_policyent(const struct in6_addrpolicy
*newpolicy
)
1737 struct addrsel_policyent
*new, *pol
;
1739 MALLOC(new, struct addrsel_policyent
*, sizeof (*new), M_IFADDR
,
1744 /* duplication check */
1745 TAILQ_FOREACH(pol
, &addrsel_policytab
, ape_entry
) {
1746 if (IN6_ARE_ADDR_EQUAL(&newpolicy
->addr
.sin6_addr
,
1747 &pol
->ape_policy
.addr
.sin6_addr
) &&
1748 IN6_ARE_ADDR_EQUAL(&newpolicy
->addrmask
.sin6_addr
,
1749 &pol
->ape_policy
.addrmask
.sin6_addr
)) {
1751 FREE(new, M_IFADDR
);
1752 return (EEXIST
); /* or override it? */
1756 bzero(new, sizeof (*new));
1758 /* XXX: should validate entry */
1759 new->ape_policy
= *newpolicy
;
1761 TAILQ_INSERT_TAIL(&addrsel_policytab
, new, ape_entry
);
1766 #ifdef ENABLE_ADDRSEL
1768 delete_addrsel_policyent(const struct in6_addrpolicy
*key
)
1770 struct addrsel_policyent
*pol
;
1775 /* search for the entry in the table */
1776 TAILQ_FOREACH(pol
, &addrsel_policytab
, ape_entry
) {
1777 if (IN6_ARE_ADDR_EQUAL(&key
->addr
.sin6_addr
,
1778 &pol
->ape_policy
.addr
.sin6_addr
) &&
1779 IN6_ARE_ADDR_EQUAL(&key
->addrmask
.sin6_addr
,
1780 &pol
->ape_policy
.addrmask
.sin6_addr
)) {
1789 TAILQ_REMOVE(&addrsel_policytab
, pol
, ape_entry
);
1790 FREE(pol
, M_IFADDR
);
1796 #endif /* ENABLE_ADDRSEL */
1799 walk_addrsel_policy(int (*callback
)(const struct in6_addrpolicy
*, void *),
1802 struct addrsel_policyent
*pol
;
1806 TAILQ_FOREACH(pol
, &addrsel_policytab
, ape_entry
) {
1807 if ((error
= (*callback
)(&pol
->ape_policy
, w
)) != 0) {
1816 * Subroutines to manage the address selection policy table via sysctl.
1819 struct sysctl_req
*w_req
;
1824 dump_addrsel_policyent(const struct in6_addrpolicy
*pol
, void *arg
)
1827 struct walkarg
*w
= arg
;
1829 error
= SYSCTL_OUT(w
->w_req
, pol
, sizeof (*pol
));
1835 in6_src_sysctl SYSCTL_HANDLER_ARGS
1837 #pragma unused(oidp, arg1, arg2)
1842 bzero(&w
, sizeof (w
));
1845 return (walk_addrsel_policy(dump_addrsel_policyent
, &w
));
1849 SYSCTL_NODE(_net_inet6_ip6
, IPV6CTL_ADDRCTLPOLICY
, addrctlpolicy
,
1850 CTLFLAG_RD
| CTLFLAG_LOCKED
, in6_src_sysctl
, "");
1852 in6_src_ioctl(u_long cmd
, caddr_t data
)
1855 struct in6_addrpolicy ent0
;
1857 if (cmd
!= SIOCAADDRCTL_POLICY
&& cmd
!= SIOCDADDRCTL_POLICY
)
1858 return (EOPNOTSUPP
); /* check for safety */
1860 bcopy(data
, &ent0
, sizeof (ent0
));
1862 if (ent0
.label
== ADDR_LABEL_NOTAPP
)
1864 /* check if the prefix mask is consecutive. */
1865 if (in6_mask2len(&ent0
.addrmask
.sin6_addr
, NULL
) < 0)
1867 /* clear trailing garbages (if any) of the prefix address. */
1868 for (i
= 0; i
< 4; i
++) {
1869 ent0
.addr
.sin6_addr
.s6_addr32
[i
] &=
1870 ent0
.addrmask
.sin6_addr
.s6_addr32
[i
];
1875 case SIOCAADDRCTL_POLICY
:
1876 #ifdef ENABLE_ADDRSEL
1877 return (add_addrsel_policyent(&ent0
));
1881 case SIOCDADDRCTL_POLICY
:
1882 #ifdef ENABLE_ADDRSEL
1883 return (delete_addrsel_policyent(&ent0
));
1889 return (0); /* XXX: compromise compilers */
1893 * generate kernel-internal form (scopeid embedded into s6_addr16[1]).
1894 * If the address scope of is link-local, embed the interface index in the
1895 * address. The routine determines our precedence
1896 * between advanced API scope/interface specification and basic API
1899 * this function should be nuked in the future, when we get rid of
1900 * embedded scopeid thing.
1902 * XXX actually, it is over-specification to return ifp against sin6_scope_id.
1903 * there can be multiple interfaces that belong to a particular scope zone
1904 * (in specification, we have 1:N mapping between a scope zone and interfaces).
1905 * we may want to change the function to return something other than ifp.
1908 in6_embedscope(struct in6_addr
*in6
, const struct sockaddr_in6
*sin6
,
1909 struct in6pcb
*in6p
, struct ifnet
**ifpp
, struct ip6_pktopts
*opt
)
1911 struct ifnet
*ifp
= NULL
;
1913 struct ip6_pktopts
*optp
= NULL
;
1915 *in6
= sin6
->sin6_addr
;
1916 scopeid
= sin6
->sin6_scope_id
;
1921 * don't try to read sin6->sin6_addr beyond here, since the caller may
1922 * ask us to overwrite existing sockaddr_in6
1925 #ifdef ENABLE_DEFAULT_SCOPE
1927 scopeid
= scope6_addr2default(in6
);
1930 if (IN6_IS_SCOPE_LINKLOCAL(in6
) || IN6_IS_ADDR_MC_INTFACELOCAL(in6
)) {
1931 struct in6_pktinfo
*pi
;
1932 struct ifnet
*im6o_multicast_ifp
= NULL
;
1934 if (in6p
!= NULL
&& IN6_IS_ADDR_MULTICAST(in6
) &&
1935 in6p
->in6p_moptions
!= NULL
) {
1936 IM6O_LOCK(in6p
->in6p_moptions
);
1937 im6o_multicast_ifp
=
1938 in6p
->in6p_moptions
->im6o_multicast_ifp
;
1939 IM6O_UNLOCK(in6p
->in6p_moptions
);
1944 else if (in6p
!= NULL
)
1945 optp
= in6p
->in6p_outputopts
;
1947 * KAME assumption: link id == interface id
1949 if (in6p
!= NULL
&& optp
!= NULL
&&
1950 (pi
= optp
->ip6po_pktinfo
) != NULL
&&
1951 pi
->ipi6_ifindex
!= 0) {
1952 /* ifp is needed here if only we're returning it */
1954 ifnet_head_lock_shared();
1955 ifp
= ifindex2ifnet
[pi
->ipi6_ifindex
];
1958 in6
->s6_addr16
[1] = htons(pi
->ipi6_ifindex
);
1959 } else if (in6p
!= NULL
&& IN6_IS_ADDR_MULTICAST(in6
) &&
1960 in6p
->in6p_moptions
!= NULL
&& im6o_multicast_ifp
!= NULL
) {
1961 ifp
= im6o_multicast_ifp
;
1962 in6
->s6_addr16
[1] = htons(ifp
->if_index
);
1963 } else if (scopeid
!= 0) {
1965 * Since scopeid is unsigned, we only have to check it
1966 * against if_index (ifnet_head_lock not needed since
1967 * if_index is an ever-increasing integer.)
1969 if (if_index
< scopeid
)
1970 return (ENXIO
); /* XXX EINVAL? */
1972 /* ifp is needed here only if we're returning it */
1974 ifnet_head_lock_shared();
1975 ifp
= ifindex2ifnet
[scopeid
];
1978 /* XXX assignment to 16bit from 32bit variable */
1979 in6
->s6_addr16
[1] = htons(scopeid
& 0xffff);
1984 ifnet_reference(ifp
); /* for caller */
1993 * generate standard sockaddr_in6 from embedded form.
1994 * touches sin6_addr and sin6_scope_id only.
1996 * this function should be nuked in the future, when we get rid of
1997 * embedded scopeid thing.
2001 struct sockaddr_in6
*sin6
,
2002 const struct in6_addr
*in6
,
2007 sin6
->sin6_addr
= *in6
;
2010 * don't try to read *in6 beyond here, since the caller may
2011 * ask us to overwrite existing sockaddr_in6
2014 sin6
->sin6_scope_id
= 0;
2015 if (IN6_IS_SCOPE_LINKLOCAL(in6
) || IN6_IS_ADDR_MC_INTFACELOCAL(in6
)) {
2017 * KAME assumption: link id == interface id
2019 scopeid
= ntohs(sin6
->sin6_addr
.s6_addr16
[1]);
2024 * Since scopeid is unsigned, we only have to check it
2027 if (if_index
< scopeid
)
2029 if (ifp
&& ifp
->if_index
!= scopeid
)
2031 sin6
->sin6_addr
.s6_addr16
[1] = 0;
2032 sin6
->sin6_scope_id
= scopeid
;