2 * Copyright (c) 2003-2012 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@
29 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
30 * All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. Neither the name of the project nor the names of its contributors
41 * may be used to endorse or promote products derived from this software
42 * without specific prior written permission.
44 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
45 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
48 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 * 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
93 #include <sys/param.h>
94 #include <sys/systm.h>
95 #include <sys/malloc.h>
97 #include <sys/domain.h>
98 #include <sys/protosw.h>
99 #include <sys/socket.h>
100 #include <sys/socketvar.h>
101 #include <sys/sockio.h>
102 #include <sys/errno.h>
103 #include <sys/time.h>
104 #include <sys/proc.h>
105 #include <sys/kauth.h>
106 #include <sys/priv.h>
109 #include <net/if_types.h>
110 #include <net/route.h>
112 #include <netinet/in.h>
113 #include <netinet/in_var.h>
114 #include <netinet/in_systm.h>
115 #include <netinet/ip6.h>
116 #include <netinet/ip_var.h>
117 #include <netinet6/ip6_var.h>
118 #include <netinet6/nd6.h>
119 #include <netinet/in_pcb.h>
120 #include <netinet6/in6_pcb.h>
121 #include <net/if_types.h>
122 #include <net/if_var.h>
124 #include <kern/kern_types.h>
125 #include <kern/zalloc.h>
128 #include <netinet6/ipsec.h>
130 #include <netinet6/ipsec6.h>
132 #include <netinet6/ah.h>
134 #include <netinet6/ah6.h>
136 #include <netkey/key.h>
139 struct in6_addr zeroin6_addr
;
142 in6_pcblookup_local_and_cleanup does everything
143 in6_pcblookup_local does but it checks for a socket
144 that's going away. Since we know that the lock is
145 held read+write when this function is called, we
146 can safely dispose of this socket like the slow
147 timer would usually do and return NULL. This is
151 in6_pcblookup_local_and_cleanup(
152 struct inpcbinfo
*pcbinfo
,
153 struct in6_addr
*laddr
,
159 /* Perform normal lookup */
160 inp
= in6_pcblookup_local(pcbinfo
, laddr
, lport_arg
, wild_okay
);
162 /* Check if we found a match but it's waiting to be disposed */
163 if (inp
&& inp
->inp_wantcnt
== WNT_STOPUSING
) {
164 struct socket
*so
= inp
->inp_socket
;
166 lck_mtx_lock(&inp
->inpcb_mtx
);
168 if (so
->so_usecount
== 0) {
169 if (inp
->inp_state
!= INPCB_STATE_DEAD
)
175 lck_mtx_unlock(&inp
->inpcb_mtx
);
183 in6_pcbbind(struct inpcb
*inp
, struct sockaddr
*nam
, struct proc
*p
)
185 struct socket
*so
= inp
->inp_socket
;
186 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)NULL
;
187 struct inpcbinfo
*pcbinfo
= inp
->inp_pcbinfo
;
189 int wild
= 0, reuseport
= (so
->so_options
& SO_REUSEPORT
);
195 if (!in6_ifaddrs
) /* XXX broken! */
196 return (EADDRNOTAVAIL
);
197 if (inp
->inp_lport
|| !IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
))
199 if ((so
->so_options
& (SO_REUSEADDR
|SO_REUSEPORT
)) == 0)
201 socket_unlock(so
, 0); /* keep reference */
202 lck_rw_lock_exclusive(pcbinfo
->mtx
);
204 struct ifnet
*outif
= NULL
;
206 sin6
= (struct sockaddr_in6
*)(void *)nam
;
207 if (nam
->sa_len
!= sizeof(*sin6
)) {
208 lck_rw_done(pcbinfo
->mtx
);
215 if (nam
->sa_family
!= AF_INET6
) {
216 lck_rw_done(pcbinfo
->mtx
);
218 return(EAFNOSUPPORT
);
221 /* KAME hack: embed scopeid */
222 if (in6_embedscope(&sin6
->sin6_addr
, sin6
, inp
, NULL
,
224 lck_rw_done(pcbinfo
->mtx
);
228 /* this must be cleared for ifa_ifwithaddr() */
229 sin6
->sin6_scope_id
= 0;
231 lport
= sin6
->sin6_port
;
232 if (IN6_IS_ADDR_MULTICAST(&sin6
->sin6_addr
)) {
234 * Treat SO_REUSEADDR as SO_REUSEPORT for multicast;
235 * allow compepte duplication of binding if
236 * SO_REUSEPORT is set, or if SO_REUSEADDR is set
237 * and a multicast address is bound on both
238 * new and duplicated sockets.
240 if (so
->so_options
& SO_REUSEADDR
)
241 reuseport
= SO_REUSEADDR
|SO_REUSEPORT
;
242 } else if (!IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
245 sin6
->sin6_port
= 0; /* yech... */
246 if ((ifa
= ifa_ifwithaddr((struct sockaddr
*)sin6
)) == 0) {
247 lck_rw_done(pcbinfo
->mtx
);
249 return(EADDRNOTAVAIL
);
253 * XXX: bind to an anycast address might accidentally
254 * cause sending a packet with anycast source address.
255 * We should allow to bind to a deprecated address, since
256 * the application dare to use it.
260 if (((struct in6_ifaddr
*)ifa
)->ia6_flags
&
261 (IN6_IFF_ANYCAST
|IN6_IFF_NOTREADY
|IN6_IFF_DETACHED
)) {
264 lck_rw_done(pcbinfo
->mtx
);
266 return(EADDRNOTAVAIL
);
268 outif
= ifa
->ifa_ifp
;
278 if (ntohs(lport
) < IPV6PORT_RESERVED
) {
279 cred
= kauth_cred_proc_ref(p
);
280 error
= priv_check_cred(cred
, PRIV_NETINET_RESERVEDPORT
, 0);
281 kauth_cred_unref(&cred
);
283 lck_rw_done(pcbinfo
->mtx
);
290 if (kauth_cred_getuid(so
->so_cred
) &&
291 !IN6_IS_ADDR_MULTICAST(&sin6
->sin6_addr
)) {
292 t
= in6_pcblookup_local_and_cleanup(pcbinfo
,
293 &sin6
->sin6_addr
, lport
,
296 (!IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
) ||
297 !IN6_IS_ADDR_UNSPECIFIED(&t
->in6p_laddr
) ||
298 (t
->inp_socket
->so_options
&
299 SO_REUSEPORT
) == 0) &&
300 (kauth_cred_getuid(so
->so_cred
) !=
301 kauth_cred_getuid(t
->inp_socket
->so_cred
)) &&
302 ((t
->inp_socket
->so_flags
& SOF_REUSESHAREUID
) == 0)) {
303 lck_rw_done(pcbinfo
->mtx
);
307 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0 &&
308 IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
309 struct sockaddr_in sin
;
311 in6_sin6_2_sin(&sin
, sin6
);
312 t
= in_pcblookup_local_and_cleanup(pcbinfo
,
315 if (t
&& (t
->inp_socket
->so_options
& SO_REUSEPORT
) == 0 &&
316 (kauth_cred_getuid(so
->so_cred
) !=
317 kauth_cred_getuid(t
->inp_socket
->so_cred
)) &&
318 (ntohl(t
->inp_laddr
.s_addr
) !=
321 INP_SOCKAF(t
->inp_socket
))) {
323 lck_rw_done(pcbinfo
->mtx
);
329 t
= in6_pcblookup_local_and_cleanup(pcbinfo
, &sin6
->sin6_addr
,
331 if (t
&& (reuseport
& t
->inp_socket
->so_options
) == 0) {
332 lck_rw_done(pcbinfo
->mtx
);
336 if ((inp
->inp_flags
& IN6P_IPV6_V6ONLY
) == 0 &&
337 IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
)) {
338 struct sockaddr_in sin
;
340 in6_sin6_2_sin(&sin
, sin6
);
341 t
= in_pcblookup_local_and_cleanup(pcbinfo
, sin
.sin_addr
,
344 (reuseport
& t
->inp_socket
->so_options
)
346 (ntohl(t
->inp_laddr
.s_addr
)
349 INP_SOCKAF(t
->inp_socket
))) {
350 lck_rw_done(pcbinfo
->mtx
);
356 inp
->in6p_laddr
= sin6
->sin6_addr
;
357 inp
->in6p_last_outifp
= outif
;
362 if ((e
= in6_pcbsetport(&inp
->in6p_laddr
, inp
, p
, 1)) != 0) {
363 lck_rw_done(pcbinfo
->mtx
);
368 inp
->inp_lport
= lport
;
369 if (in_pcbinshash(inp
, 1) != 0) {
370 inp
->in6p_laddr
= in6addr_any
;
372 inp
->in6p_last_outifp
= NULL
;
373 lck_rw_done(pcbinfo
->mtx
);
377 lck_rw_done(pcbinfo
->mtx
);
378 sflt_notify(so
, sock_evt_bound
, NULL
);
383 * Transform old in6_pcbconnect() into an inner subroutine for new
384 * in6_pcbconnect(): Do some validity-checking on the remote
385 * address (in mbuf 'nam') and then determine local host address
386 * (i.e., which interface) to use to access that remote host.
388 * This preserves definition of in6_pcbconnect(), while supporting a
389 * slightly different version for T/TCP. (This is more than
390 * a bit of a kludge, but cleaning up the internal interfaces would
391 * have forced minor changes in every protocol).
393 * This routine might return an ifp with a reference held if the caller
394 * provides a non-NULL outif, even in the error case. The caller is
395 * responsible for releasing its reference.
398 in6_pcbladdr(struct inpcb
*inp
, struct sockaddr
*nam
,
399 struct in6_addr
*plocal_addr6
, struct ifnet
**outif
)
401 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)(void *)nam
;
402 struct in6_addr
*addr6
= NULL
;
403 struct in6_addr src_storage
;
405 unsigned int ifscope
;
409 if (nam
->sa_len
!= sizeof (*sin6
))
411 if (sin6
->sin6_family
!= AF_INET6
)
412 return (EAFNOSUPPORT
);
413 if (sin6
->sin6_port
== 0)
414 return (EADDRNOTAVAIL
);
416 /* KAME hack: embed scopeid */
417 if (in6_embedscope(&sin6
->sin6_addr
, sin6
, inp
, NULL
, NULL
) != 0)
422 * If the destination address is UNSPECIFIED addr,
423 * use the loopback addr, e.g ::1.
425 if (IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
))
426 sin6
->sin6_addr
= in6addr_loopback
;
429 ifscope
= (inp
->inp_flags
& INP_BOUND_IF
) ?
430 inp
->inp_boundifp
->if_index
: IFSCOPE_NONE
;
433 * XXX: in6_selectsrc might replace the bound local address
434 * with the address specified by setsockopt(IPV6_PKTINFO).
435 * Is it the intended behavior?
437 * in6_selectsrc() might return outif with its reference held
438 * even in the error case; caller always needs to release it
441 addr6
= in6_selectsrc(sin6
, inp
->in6p_outputopts
, inp
,
442 &inp
->in6p_route
, outif
, &src_storage
, ifscope
, &error
);
445 struct rtentry
*rt
= inp
->in6p_route
.ro_rt
;
447 * If in6_selectsrc() returns a route, it should be one
448 * which points to the same ifp as outif. Just in case
449 * it isn't, use the one from the route for consistency.
450 * Otherwise if there is no route, leave outif alone as
451 * it could still be useful to the caller.
453 if (rt
!= NULL
&& rt
->rt_ifp
!= *outif
) {
454 ifnet_reference(rt
->rt_ifp
); /* for caller */
456 ifnet_release(*outif
);
462 if (outif
!= NULL
&& (*outif
) != NULL
&&
463 (inp
->inp_flags
& INP_NO_IFT_CELLULAR
) &&
464 (*outif
)->if_type
== IFT_CELLULAR
)
465 soevent(inp
->inp_socket
,
466 (SO_FILT_HINT_LOCKED
| SO_FILT_HINT_IFDENIED
));
468 error
= EADDRNOTAVAIL
;
472 *plocal_addr6
= *addr6
;
474 * Don't do pcblookup call here; return interface in
475 * plocal_addr6 and exit to caller, that will do the lookup.
482 * Connect from a socket to a specified address.
483 * Both address and port must be specified in argument sin.
484 * If don't have a local address for this socket yet,
490 struct sockaddr
*nam
,
493 struct in6_addr addr6
;
494 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)(void *)nam
;
497 struct ifnet
*outif
= NULL
;
500 * Call inner routine, to assign local interface address.
501 * in6_pcbladdr() may automatically fill in sin6_scope_id.
503 * in6_pcbladdr() might return an ifp with its reference held
504 * even in the error case, so make sure that it's released
505 * whenever it's non-NULL.
507 if ((error
= in6_pcbladdr(inp
, nam
, &addr6
, &outif
)) != 0) {
508 if ((inp
->inp_flags
& INP_NO_IFT_CELLULAR
) &&
510 outif
->if_type
== IFT_CELLULAR
)
511 soevent(inp
->inp_socket
,
512 (SO_FILT_HINT_LOCKED
| SO_FILT_HINT_IFDENIED
));
515 socket_unlock(inp
->inp_socket
, 0);
516 pcb
= in6_pcblookup_hash(inp
->inp_pcbinfo
, &sin6
->sin6_addr
,
518 IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)
519 ? &addr6
: &inp
->in6p_laddr
,
520 inp
->inp_lport
, 0, NULL
);
521 socket_lock(inp
->inp_socket
, 0);
523 in_pcb_checkstate(pcb
, WNT_RELEASE
, pcb
== inp
? 1 : 0);
527 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
)) {
528 if (inp
->inp_lport
== 0) {
529 error
= in6_pcbbind(inp
, (struct sockaddr
*)0, p
);
533 inp
->in6p_laddr
= addr6
;
534 inp
->in6p_last_outifp
= outif
; /* no reference needed */
536 if (!lck_rw_try_lock_exclusive(inp
->inp_pcbinfo
->mtx
)) {
537 /*lock inversion issue, mostly with udp multicast packets */
538 socket_unlock(inp
->inp_socket
, 0);
539 lck_rw_lock_exclusive(inp
->inp_pcbinfo
->mtx
);
540 socket_lock(inp
->inp_socket
, 0);
542 inp
->in6p_faddr
= sin6
->sin6_addr
;
543 inp
->inp_fport
= sin6
->sin6_port
;
544 /* update flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
545 inp
->in6p_flowinfo
&= ~IPV6_FLOWLABEL_MASK
;
546 if (inp
->in6p_flags
& IN6P_AUTOFLOWLABEL
)
547 inp
->in6p_flowinfo
|=
548 (htonl(ip6_flow_seq
++) & IPV6_FLOWLABEL_MASK
);
551 lck_rw_done(inp
->inp_pcbinfo
->mtx
);
555 ifnet_release(outif
);
564 if (!lck_rw_try_lock_exclusive(inp
->inp_pcbinfo
->mtx
)) {
565 /*lock inversion issue, mostly with udp multicast packets */
566 socket_unlock(inp
->inp_socket
, 0);
567 lck_rw_lock_exclusive(inp
->inp_pcbinfo
->mtx
);
568 socket_lock(inp
->inp_socket
, 0);
570 bzero((caddr_t
)&inp
->in6p_faddr
, sizeof(inp
->in6p_faddr
));
572 /* clear flowinfo - draft-itojun-ipv6-flowlabel-api-00 */
573 inp
->in6p_flowinfo
&= ~IPV6_FLOWLABEL_MASK
;
575 lck_rw_done(inp
->inp_pcbinfo
->mtx
);
576 if (inp
->inp_socket
->so_state
& SS_NOFDREF
)
584 struct socket
*so
= inp
->inp_socket
;
585 struct inpcbinfo
*ipi
= inp
->inp_pcbinfo
;
588 if (inp
->in6p_sp
!= NULL
) {
589 ipsec6_delete_pcbpolicy(inp
);
593 if (in_pcb_checkstate(inp
, WNT_STOPUSING
, 1) != WNT_STOPUSING
)
594 printf("in6_pcbdetach so=%p can't be marked dead ok\n", so
);
596 inp
->inp_state
= INPCB_STATE_DEAD
;
598 if ((so
->so_flags
& SOF_PCBCLEARING
) == 0) {
599 struct ip_moptions
*imo
;
600 struct ip6_moptions
*im6o
;
603 so
->so_flags
|= SOF_PCBCLEARING
;
604 inp
->inp_gencnt
= ++ipi
->ipi_gencnt
;
605 if (inp
->in6p_options
)
606 m_freem(inp
->in6p_options
);
607 ip6_freepcbopts(inp
->in6p_outputopts
);
608 if (inp
->in6p_route
.ro_rt
) {
609 rtfree(inp
->in6p_route
.ro_rt
);
610 inp
->in6p_route
.ro_rt
= NULL
;
612 /* Check and free IPv4 related resources in case of mapped addr */
613 if (inp
->inp_options
)
614 (void)m_free(inp
->inp_options
);
616 im6o
= inp
->in6p_moptions
;
617 inp
->in6p_moptions
= NULL
;
621 imo
= inp
->inp_moptions
;
622 inp
->inp_moptions
= NULL
;
631 struct in6_addr
*addr_p
)
633 struct sockaddr_in6
*sin6
;
635 MALLOC(sin6
, struct sockaddr_in6
*, sizeof *sin6
, M_SONAME
, M_WAITOK
);
638 bzero(sin6
, sizeof *sin6
);
639 sin6
->sin6_family
= AF_INET6
;
640 sin6
->sin6_len
= sizeof(*sin6
);
641 sin6
->sin6_port
= port
;
642 sin6
->sin6_addr
= *addr_p
;
643 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
644 sin6
->sin6_scope_id
= ntohs(sin6
->sin6_addr
.s6_addr16
[1]);
646 sin6
->sin6_scope_id
= 0; /*XXX*/
647 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
648 sin6
->sin6_addr
.s6_addr16
[1] = 0;
650 return (struct sockaddr
*)sin6
;
654 in6_v4mapsin6_sockaddr(
656 struct in_addr
*addr_p
)
658 struct sockaddr_in sin
;
659 struct sockaddr_in6
*sin6_p
;
661 bzero(&sin
, sizeof sin
);
662 sin
.sin_family
= AF_INET
;
663 sin
.sin_len
= sizeof(sin
);
665 sin
.sin_addr
= *addr_p
;
667 MALLOC(sin6_p
, struct sockaddr_in6
*, sizeof *sin6_p
, M_SONAME
,
671 in6_sin_2_v4mapsin6(&sin
, sin6_p
);
673 return (struct sockaddr
*)sin6_p
;
677 * The calling convention of in6_setsockaddr() and in6_setpeeraddr() was
678 * modified to match the pru_sockaddr() and pru_peeraddr() entry points
679 * in struct pr_usrreqs, so that protocols can just reference then directly
680 * without the need for a wrapper function. The socket must have a valid
681 * (i.e., non-nil) PCB, but it should be impossible to get an invalid one
682 * except through a kernel programming error, so it is acceptable to panic
683 * (or in this case trap) if the PCB is invalid. (Actually, we don't trap
684 * because there actually /is/ a programming error somewhere... XXX)
689 struct sockaddr
**nam
)
692 struct in6_addr addr
;
699 port
= inp
->inp_lport
;
700 addr
= inp
->in6p_laddr
;
702 *nam
= in6_sockaddr(port
, &addr
);
711 struct sockaddr
**nam
)
714 struct in6_addr addr
;
721 port
= inp
->inp_fport
;
722 addr
= inp
->in6p_faddr
;
724 *nam
= in6_sockaddr(port
, &addr
);
731 in6_mapped_sockaddr(struct socket
*so
, struct sockaddr
**nam
)
733 struct inpcb
*inp
= sotoinpcb(so
);
738 if (inp
->inp_vflag
& INP_IPV4
) {
739 error
= in_setsockaddr(so
, nam
);
741 error
= in6_sin_2_v4mapsin6_in_sock(nam
);
743 /* scope issues will be handled in in6_setsockaddr(). */
744 error
= in6_setsockaddr(so
, nam
);
750 in6_mapped_peeraddr(struct socket
*so
, struct sockaddr
**nam
)
752 struct inpcb
*inp
= sotoinpcb(so
);
757 if (inp
->inp_vflag
& INP_IPV4
) {
758 error
= in_setpeeraddr(so
, nam
);
760 error
= in6_sin_2_v4mapsin6_in_sock(nam
);
762 /* scope issues will be handled in in6_setpeeraddr(). */
763 error
= in6_setpeeraddr(so
, nam
);
769 * Pass some notification to all connections of a protocol
770 * associated with address dst. The local address and/or port numbers
771 * may be specified to limit the search. The "usual action" will be
772 * taken, depending on the ctlinput cmd. The caller must filter any
773 * cmds that are uninteresting (e.g., no error in the map).
774 * Call the protocol specific routine (if any) to report
775 * any errors for each matching socket.
778 in6_pcbnotify(pcbinfo
, dst
, fport_arg
, src
, lport_arg
, cmd
, cmdarg
, notify
)
779 struct inpcbinfo
*pcbinfo
;
780 struct sockaddr
*dst
;
781 const struct sockaddr
*src
;
782 u_int fport_arg
, lport_arg
;
785 void (*notify
)(struct inpcb
*, int);
787 struct inpcb
*inp
, *ninp
;
788 struct sockaddr_in6 sa6_src
, *sa6_dst
;
789 u_short fport
= fport_arg
, lport
= lport_arg
;
792 struct inpcbhead
*head
= pcbinfo
->listhead
;
794 if ((unsigned)cmd
> PRC_NCMDS
|| dst
->sa_family
!= AF_INET6
)
797 sa6_dst
= (struct sockaddr_in6
*)(void *)dst
;
798 if (IN6_IS_ADDR_UNSPECIFIED(&sa6_dst
->sin6_addr
))
802 * note that src can be NULL when we get notify by local fragmentation.
804 sa6_src
= (src
== NULL
) ?
805 sa6_any
: *(struct sockaddr_in6
*)(uintptr_t)(size_t)src
;
806 flowinfo
= sa6_src
.sin6_flowinfo
;
809 * Redirects go to all references to the destination,
810 * and use in6_rtchange to invalidate the route cache.
811 * Dead host indications: also use in6_rtchange to invalidate
812 * the cache, and deliver the error to all the sockets.
813 * Otherwise, if we have knowledge of the local port and address,
814 * deliver only to that socket.
816 if (PRC_IS_REDIRECT(cmd
) || cmd
== PRC_HOSTDEAD
) {
819 bzero((caddr_t
)&sa6_src
.sin6_addr
, sizeof(sa6_src
.sin6_addr
));
821 if (cmd
!= PRC_HOSTDEAD
)
822 notify
= in6_rtchange
;
824 errno
= inet6ctlerrmap
[cmd
];
825 lck_rw_lock_shared(pcbinfo
->mtx
);
826 for (inp
= LIST_FIRST(head
); inp
!= NULL
; inp
= ninp
) {
827 ninp
= LIST_NEXT(inp
, inp_list
);
829 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
833 * If the error designates a new path MTU for a destination
834 * and the application (associated with this socket) wanted to
835 * know the value, notify. Note that we notify for all
836 * disconnected sockets if the corresponding application
837 * wanted. This is because some UDP applications keep sending
838 * sockets disconnected.
839 * XXX: should we avoid to notify the value to TCP sockets?
841 if (cmd
== PRC_MSGSIZE
&& (inp
->inp_flags
& IN6P_MTU
) != 0 &&
842 (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
) ||
843 IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
, &sa6_dst
->sin6_addr
))) {
844 ip6_notify_pmtu(inp
, (struct sockaddr_in6
*)(void *)dst
,
845 (u_int32_t
*)cmdarg
);
849 * Detect if we should notify the error. If no source and
850 * destination ports are specifed, but non-zero flowinfo and
851 * local address match, notify the error. This is the case
852 * when the error is delivered with an encrypted buffer
853 * by ESP. Otherwise, just compare addresses and ports
856 if (lport
== 0 && fport
== 0 && flowinfo
&&
857 inp
->inp_socket
!= NULL
&&
858 flowinfo
== (inp
->in6p_flowinfo
& IPV6_FLOWLABEL_MASK
) &&
859 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, &sa6_src
.sin6_addr
))
861 else if (!IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
,
862 &sa6_dst
->sin6_addr
) ||
863 inp
->inp_socket
== 0 ||
864 (lport
&& inp
->inp_lport
!= lport
) ||
865 (!IN6_IS_ADDR_UNSPECIFIED(&sa6_src
.sin6_addr
) &&
866 !IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
,
867 &sa6_src
.sin6_addr
)) ||
868 (fport
&& inp
->inp_fport
!= fport
))
874 if (in_pcb_checkstate(inp
, WNT_ACQUIRE
, 0) == WNT_STOPUSING
)
876 socket_lock(inp
->inp_socket
, 1);
877 (*notify
)(inp
, errno
);
878 (void)in_pcb_checkstate(inp
, WNT_RELEASE
, 1);
879 socket_unlock(inp
->inp_socket
, 1);
882 lck_rw_done(pcbinfo
->mtx
);
886 * Lookup a PCB based on the local address and port.
890 struct inpcbinfo
*pcbinfo
,
891 struct in6_addr
*laddr
,
896 int matchwild
= 3, wildcard
;
897 u_short lport
= lport_arg
;
900 struct inpcbhead
*head
;
902 * Look for an unconnected (wildcard foreign addr) PCB that
903 * matches the local address and port we're looking for.
905 head
= &pcbinfo
->hashbase
[INP_PCBHASH(INADDR_ANY
, lport
, 0,
907 LIST_FOREACH(inp
, head
, inp_hash
) {
908 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
910 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
) &&
911 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, laddr
) &&
912 inp
->inp_lport
== lport
) {
924 struct inpcbporthead
*porthash
;
925 struct inpcbport
*phd
;
926 struct inpcb
*match
= NULL
;
928 * Best fit PCB lookup.
930 * First see if this local port is in use by looking on the
933 porthash
= &pcbinfo
->porthashbase
[INP_PCBPORTHASH(lport
,
934 pcbinfo
->porthashmask
)];
935 LIST_FOREACH(phd
, porthash
, phd_hash
) {
936 if (phd
->phd_port
== lport
)
941 * Port is in use by one or more PCBs. Look for best
944 LIST_FOREACH(inp
, &phd
->phd_pcblist
, inp_portlist
) {
946 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
948 if (!IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
))
950 if (!IN6_IS_ADDR_UNSPECIFIED(
952 if (IN6_IS_ADDR_UNSPECIFIED(laddr
))
954 else if (!IN6_ARE_ADDR_EQUAL(
955 &inp
->in6p_laddr
, laddr
))
958 if (!IN6_IS_ADDR_UNSPECIFIED(laddr
))
961 if (wildcard
< matchwild
) {
963 matchwild
= wildcard
;
964 if (matchwild
== 0) {
975 * Check for alternatives when higher level complains
976 * about service problems. For now, invalidate cached
977 * routing information. If the route was created dynamically
978 * (by a redirect), time to try a default gateway again.
985 struct rt_addrinfo info
;
987 if ((rt
= in6p
->in6p_route
.ro_rt
) != NULL
) {
988 in6p
->in6p_route
.ro_rt
= NULL
;
990 bzero((caddr_t
)&info
, sizeof(info
));
991 info
.rti_info
[RTAX_DST
] =
992 (struct sockaddr
*)&in6p
->in6p_route
.ro_dst
;
993 info
.rti_info
[RTAX_GATEWAY
] = rt
->rt_gateway
;
994 info
.rti_info
[RTAX_NETMASK
] = rt_mask(rt
);
995 rt_missmsg(RTM_LOSING
, &info
, rt
->rt_flags
, 0);
996 if (rt
->rt_flags
& RTF_DYNAMIC
) {
998 * Prevent another thread from modifying rt_key,
999 * rt_gateway via rt_setgate() after the rt_lock
1000 * is dropped by marking the route as defunct.
1002 rt
->rt_flags
|= RTF_CONDEMNED
;
1004 (void) rtrequest(RTM_DELETE
, rt_key(rt
),
1005 rt
->rt_gateway
, rt_mask(rt
), rt
->rt_flags
, NULL
);
1010 * A new route can be allocated
1011 * the next time output is attempted.
1018 * After a routing change, flush old routing
1019 * and allocate a (hopefully) better one.
1026 if (inp
->in6p_route
.ro_rt
) {
1027 rtfree(inp
->in6p_route
.ro_rt
);
1028 inp
->in6p_route
.ro_rt
= 0;
1030 * A new route can be allocated the next time
1031 * output is attempted.
1037 * Check if PCB exists hash list. Also returns uid and gid of socket
1040 in6_pcblookup_hash_exists(
1041 struct inpcbinfo
*pcbinfo
,
1042 struct in6_addr
*faddr
,
1044 struct in6_addr
*laddr
,
1051 struct inpcbhead
*head
;
1053 u_short fport
= fport_arg
, lport
= lport_arg
;
1059 lck_rw_lock_shared(pcbinfo
->mtx
);
1062 * First look for an exact match.
1064 head
= &pcbinfo
->hashbase
[INP_PCBHASH(faddr
->s6_addr32
[3] /* XXX */,
1066 pcbinfo
->hashmask
)];
1067 LIST_FOREACH(inp
, head
, inp_hash
) {
1068 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
1071 if (ip6_restrictrecvif
&& ifp
!= NULL
&&
1072 (ifp
->if_eflags
& IFEF_RESTRICTED_RECV
) &&
1073 !(inp
->in6p_flags
& IN6P_RECV_ANYIF
))
1076 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
, faddr
) &&
1077 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, laddr
) &&
1078 inp
->inp_fport
== fport
&&
1079 inp
->inp_lport
== lport
) {
1080 if ((found
= (inp
->inp_socket
!= NULL
))) {
1082 * Found. Check if pcb is still valid
1084 *uid
= kauth_cred_getuid(
1085 inp
->inp_socket
->so_cred
);
1086 *gid
= kauth_cred_getgid(
1087 inp
->inp_socket
->so_cred
);
1089 lck_rw_done(pcbinfo
->mtx
);
1094 struct inpcb
*local_wild
= NULL
;
1096 head
= &pcbinfo
->hashbase
[INP_PCBHASH(INADDR_ANY
, lport
, 0,
1097 pcbinfo
->hashmask
)];
1098 LIST_FOREACH(inp
, head
, inp_hash
) {
1099 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
1102 if (ip6_restrictrecvif
&& ifp
!= NULL
&&
1103 (ifp
->if_eflags
& IFEF_RESTRICTED_RECV
) &&
1104 !(inp
->in6p_flags
& IN6P_RECV_ANYIF
))
1107 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
) &&
1108 inp
->inp_lport
== lport
) {
1109 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
,
1111 if ((found
= (inp
->inp_socket
!= NULL
))) {
1112 *uid
= kauth_cred_getuid(
1113 inp
->inp_socket
->so_cred
);
1114 *gid
= kauth_cred_getgid(
1115 inp
->inp_socket
->so_cred
);
1117 lck_rw_done(pcbinfo
->mtx
);
1120 else if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
))
1125 if ((found
= (local_wild
->inp_socket
!= NULL
))) {
1126 *uid
= kauth_cred_getuid(
1127 local_wild
->inp_socket
->so_cred
);
1128 *gid
= kauth_cred_getgid(
1129 local_wild
->inp_socket
->so_cred
);
1131 lck_rw_done(pcbinfo
->mtx
);
1139 lck_rw_done(pcbinfo
->mtx
);
1144 * Lookup PCB in hash list.
1148 struct inpcbinfo
*pcbinfo
,
1149 struct in6_addr
*faddr
,
1151 struct in6_addr
*laddr
,
1154 __unused
struct ifnet
*ifp
)
1156 struct inpcbhead
*head
;
1158 u_short fport
= fport_arg
, lport
= lport_arg
;
1160 lck_rw_lock_shared(pcbinfo
->mtx
);
1163 * First look for an exact match.
1165 head
= &pcbinfo
->hashbase
[INP_PCBHASH(faddr
->s6_addr32
[3] /* XXX */,
1167 pcbinfo
->hashmask
)];
1168 LIST_FOREACH(inp
, head
, inp_hash
) {
1169 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
1172 if (ip6_restrictrecvif
&& ifp
!= NULL
&&
1173 (ifp
->if_eflags
& IFEF_RESTRICTED_RECV
) &&
1174 !(inp
->in6p_flags
& IN6P_RECV_ANYIF
))
1177 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_faddr
, faddr
) &&
1178 IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
, laddr
) &&
1179 inp
->inp_fport
== fport
&&
1180 inp
->inp_lport
== lport
) {
1182 * Found. Check if pcb is still valid
1184 if (in_pcb_checkstate(inp
, WNT_ACQUIRE
, 0) != WNT_STOPUSING
) {
1185 lck_rw_done(pcbinfo
->mtx
);
1188 else { /* it's there but dead, say it isn't found */
1189 lck_rw_done(pcbinfo
->mtx
);
1195 struct inpcb
*local_wild
= NULL
;
1197 head
= &pcbinfo
->hashbase
[INP_PCBHASH(INADDR_ANY
, lport
, 0,
1198 pcbinfo
->hashmask
)];
1199 LIST_FOREACH(inp
, head
, inp_hash
) {
1200 if ((inp
->inp_vflag
& INP_IPV6
) == 0)
1203 if (ip6_restrictrecvif
&& ifp
!= NULL
&&
1204 (ifp
->if_eflags
& IFEF_RESTRICTED_RECV
) &&
1205 !(inp
->in6p_flags
& IN6P_RECV_ANYIF
))
1208 if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_faddr
) &&
1209 inp
->inp_lport
== lport
) {
1210 if (IN6_ARE_ADDR_EQUAL(&inp
->in6p_laddr
,
1212 if (in_pcb_checkstate(inp
, WNT_ACQUIRE
, 0) != WNT_STOPUSING
) {
1213 lck_rw_done(pcbinfo
->mtx
);
1216 else { /* it's there but dead, say it isn't found */
1217 lck_rw_done(pcbinfo
->mtx
);
1221 else if (IN6_IS_ADDR_UNSPECIFIED(&inp
->in6p_laddr
))
1225 if (local_wild
&& in_pcb_checkstate(local_wild
, WNT_ACQUIRE
, 0) != WNT_STOPUSING
) {
1226 lck_rw_done(pcbinfo
->mtx
);
1227 return (local_wild
);
1230 lck_rw_done(pcbinfo
->mtx
);
1238 lck_rw_done(pcbinfo
->mtx
);
1243 init_sin6(struct sockaddr_in6
*sin6
, struct mbuf
*m
)
1247 ip
= mtod(m
, struct ip6_hdr
*);
1248 bzero(sin6
, sizeof(*sin6
));
1249 sin6
->sin6_len
= sizeof(*sin6
);
1250 sin6
->sin6_family
= AF_INET6
;
1251 sin6
->sin6_addr
= ip
->ip6_src
;
1252 if (IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
1253 sin6
->sin6_addr
.s6_addr16
[1] = 0;
1254 sin6
->sin6_scope_id
=
1255 (m
->m_pkthdr
.rcvif
&& IN6_IS_SCOPE_LINKLOCAL(&sin6
->sin6_addr
))
1256 ? m
->m_pkthdr
.rcvif
->if_index
: 0;
1262 in6p_route_copyout(struct inpcb
*inp
, struct route_in6
*dst
)
1264 struct route_in6
*src
= &inp
->in6p_route
;
1266 lck_mtx_assert(&inp
->inpcb_mtx
, LCK_MTX_ASSERT_OWNED
);
1268 /* Minor sanity check */
1269 if (src
->ro_rt
!= NULL
&& rt_key(src
->ro_rt
)->sa_family
!= AF_INET6
)
1270 panic("%s: wrong or corrupted route: %p", __func__
, src
);
1272 route_copyout((struct route
*)dst
, (struct route
*)src
, sizeof(*dst
));
1276 in6p_route_copyin(struct inpcb
*inp
, struct route_in6
*src
)
1278 struct route_in6
*dst
= &inp
->in6p_route
;
1280 lck_mtx_assert(&inp
->inpcb_mtx
, LCK_MTX_ASSERT_OWNED
);
1282 /* Minor sanity check */
1283 if (src
->ro_rt
!= NULL
&& rt_key(src
->ro_rt
)->sa_family
!= AF_INET6
)
1284 panic("%s: wrong or corrupted route: %p", __func__
, src
);
1286 route_copyin((struct route
*)src
, (struct route
*)dst
, sizeof(*src
));