2 * Copyright (c) 2000-2016 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) 1982, 1986, 1991, 1993
30 * The Regents of the University of California. 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. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)in.c 8.4 (Berkeley) 1/9/95
63 #include <sys/param.h>
64 #include <sys/systm.h>
65 #include <sys/sockio.h>
66 #include <sys/socketvar.h>
67 #include <sys/malloc.h>
69 #include <sys/socket.h>
70 #include <sys/kernel.h>
71 #include <sys/sysctl.h>
72 #include <sys/kern_event.h>
73 #include <sys/syslog.h>
74 #include <sys/mcache.h>
75 #include <sys/protosw.h>
78 #include <kern/zalloc.h>
79 #include <pexpert/pexpert.h>
82 #include <net/if_types.h>
83 #include <net/route.h>
84 #include <net/kpi_protocol.h>
87 #include <net/pfvar.h>
90 #include <netinet/in.h>
91 #include <netinet/in_var.h>
92 #include <netinet/in_pcb.h>
93 #include <netinet/igmp_var.h>
94 #include <netinet/ip_var.h>
95 #include <netinet/tcp.h>
96 #include <netinet/tcp_timer.h>
97 #include <netinet/tcp_var.h>
99 static int inctl_associd(struct socket
*, u_long
, caddr_t
);
100 static int inctl_connid(struct socket
*, u_long
, caddr_t
);
101 static int inctl_conninfo(struct socket
*, u_long
, caddr_t
);
102 static int inctl_autoaddr(struct ifnet
*, struct ifreq
*);
103 static int inctl_arpipll(struct ifnet
*, struct ifreq
*);
104 static int inctl_setrouter(struct ifnet
*, struct ifreq
*);
105 static int inctl_ifaddr(struct ifnet
*, struct in_ifaddr
*, u_long
,
107 static int inctl_ifdstaddr(struct ifnet
*, struct in_ifaddr
*, u_long
,
109 static int inctl_ifbrdaddr(struct ifnet
*, struct in_ifaddr
*, u_long
,
111 static int inctl_ifnetmask(struct ifnet
*, struct in_ifaddr
*, u_long
,
114 static void in_socktrim(struct sockaddr_in
*);
115 static int in_ifinit(struct ifnet
*, struct in_ifaddr
*,
116 struct sockaddr_in
*, int);
118 #define IA_HASH_INIT(ia) { \
119 (ia)->ia_hash.tqe_next = (void *)(uintptr_t)-1; \
120 (ia)->ia_hash.tqe_prev = (void *)(uintptr_t)-1; \
123 #define IA_IS_HASHED(ia) \
124 (!((ia)->ia_hash.tqe_next == (void *)(uintptr_t)-1 || \
125 (ia)->ia_hash.tqe_prev == (void *)(uintptr_t)-1))
127 static void in_iahash_remove(struct in_ifaddr
*);
128 static void in_iahash_insert(struct in_ifaddr
*);
129 static void in_iahash_insert_ptp(struct in_ifaddr
*);
130 static struct in_ifaddr
*in_ifaddr_alloc(int);
131 static void in_ifaddr_attached(struct ifaddr
*);
132 static void in_ifaddr_detached(struct ifaddr
*);
133 static void in_ifaddr_free(struct ifaddr
*);
134 static void in_ifaddr_trace(struct ifaddr
*, int);
136 static int in_getassocids(struct socket
*, uint32_t *, user_addr_t
);
137 static int in_getconnids(struct socket
*, sae_associd_t
, uint32_t *, user_addr_t
);
138 static int in_getconninfo(struct socket
*, sae_connid_t
, uint32_t *,
139 uint32_t *, int32_t *, user_addr_t
, socklen_t
*, user_addr_t
, socklen_t
*,
140 uint32_t *, user_addr_t
, uint32_t *);
142 static int subnetsarelocal
= 0;
143 SYSCTL_INT(_net_inet_ip
, OID_AUTO
, subnets_are_local
,
144 CTLFLAG_RW
| CTLFLAG_LOCKED
, &subnetsarelocal
, 0, "");
146 /* Track whether or not the SIOCARPIPLL ioctl has been called */
147 u_int32_t ipv4_ll_arp_aware
= 0;
149 #define INIFA_TRACE_HIST_SIZE 32 /* size of trace history */
152 __private_extern__
unsigned int inifa_trace_hist_size
= INIFA_TRACE_HIST_SIZE
;
154 struct in_ifaddr_dbg
{
155 struct in_ifaddr inifa
; /* in_ifaddr */
156 struct in_ifaddr inifa_old
; /* saved in_ifaddr */
157 u_int16_t inifa_refhold_cnt
; /* # of IFA_ADDREF */
158 u_int16_t inifa_refrele_cnt
; /* # of IFA_REMREF */
160 * Alloc and free callers.
162 ctrace_t inifa_alloc
;
165 * Circular lists of IFA_ADDREF and IFA_REMREF callers.
167 ctrace_t inifa_refhold
[INIFA_TRACE_HIST_SIZE
];
168 ctrace_t inifa_refrele
[INIFA_TRACE_HIST_SIZE
];
172 TAILQ_ENTRY(in_ifaddr_dbg
) inifa_trash_link
;
175 /* List of trash in_ifaddr entries protected by inifa_trash_lock */
176 static TAILQ_HEAD(, in_ifaddr_dbg
) inifa_trash_head
;
177 static decl_lck_mtx_data(, inifa_trash_lock
);
180 static unsigned int inifa_debug
= 1; /* debugging (enabled) */
182 static unsigned int inifa_debug
; /* debugging (disabled) */
184 static unsigned int inifa_size
; /* size of zone element */
185 static struct zone
*inifa_zone
; /* zone for in_ifaddr */
187 #define INIFA_ZONE_MAX 64 /* maximum elements in zone */
188 #define INIFA_ZONE_NAME "in_ifaddr" /* zone name */
190 static const unsigned int in_extra_size
= sizeof (struct in_ifextra
);
191 static const unsigned int in_extra_bufsize
= in_extra_size
+
192 sizeof (void *) + sizeof (uint64_t);
195 * Return 1 if the address is
197 * - unicast or multicast link local
198 * - routed via a link level gateway
199 * - belongs to a directly connected (sub)net
202 inaddr_local(struct in_addr in
)
205 struct sockaddr_in sin
;
208 if (ntohl(in
.s_addr
) == INADDR_LOOPBACK
||
209 IN_LINKLOCAL(ntohl(in
.s_addr
))) {
211 } else if (ntohl(in
.s_addr
) >= INADDR_UNSPEC_GROUP
&&
212 ntohl(in
.s_addr
) <= INADDR_MAX_LOCAL_GROUP
) {
215 sin
.sin_family
= AF_INET
;
216 sin
.sin_len
= sizeof (sin
);
218 rt
= rtalloc1((struct sockaddr
*)&sin
, 0, 0);
222 if (rt
->rt_gateway
->sa_family
== AF_LINK
||
223 (rt
->rt_ifp
->if_flags
& IFF_LOOPBACK
))
228 local
= in_localaddr(in
);
235 * Return 1 if an internet address is for a ``local'' host
236 * (one to which we have a connection). If subnetsarelocal
237 * is true, this includes other subnets of the local net,
238 * otherwise, it includes the directly-connected (sub)nets.
239 * The IPv4 link local prefix 169.254/16 is also included.
242 in_localaddr(struct in_addr in
)
244 u_int32_t i
= ntohl(in
.s_addr
);
245 struct in_ifaddr
*ia
;
250 if (subnetsarelocal
) {
251 lck_rw_lock_shared(in_ifaddr_rwlock
);
252 for (ia
= in_ifaddrhead
.tqh_first
; ia
!= NULL
;
253 ia
= ia
->ia_link
.tqe_next
) {
254 IFA_LOCK(&ia
->ia_ifa
);
255 if ((i
& ia
->ia_netmask
) == ia
->ia_net
) {
256 IFA_UNLOCK(&ia
->ia_ifa
);
257 lck_rw_done(in_ifaddr_rwlock
);
260 IFA_UNLOCK(&ia
->ia_ifa
);
262 lck_rw_done(in_ifaddr_rwlock
);
264 lck_rw_lock_shared(in_ifaddr_rwlock
);
265 for (ia
= in_ifaddrhead
.tqh_first
; ia
!= NULL
;
266 ia
= ia
->ia_link
.tqe_next
) {
267 IFA_LOCK(&ia
->ia_ifa
);
268 if ((i
& ia
->ia_subnetmask
) == ia
->ia_subnet
) {
269 IFA_UNLOCK(&ia
->ia_ifa
);
270 lck_rw_done(in_ifaddr_rwlock
);
273 IFA_UNLOCK(&ia
->ia_ifa
);
275 lck_rw_done(in_ifaddr_rwlock
);
281 * Determine whether an IP address is in a reserved set of addresses
282 * that may not be forwarded, or whether datagrams to that destination
286 in_canforward(struct in_addr in
)
288 u_int32_t i
= ntohl(in
.s_addr
);
291 if (IN_EXPERIMENTAL(i
) || IN_MULTICAST(i
))
294 net
= i
& IN_CLASSA_NET
;
295 if (net
== 0 || net
== (IN_LOOPBACKNET
<< IN_CLASSA_NSHIFT
))
302 * Trim a mask in a sockaddr
305 in_socktrim(struct sockaddr_in
*ap
)
307 char *cplim
= (char *)&ap
->sin_addr
;
308 char *cp
= (char *)(&ap
->sin_addr
+ 1);
311 while (--cp
>= cplim
)
313 (ap
)->sin_len
= cp
- (char *)(ap
) + 1;
318 static int in_interfaces
; /* number of external internet interfaces */
321 in_domifattach(struct ifnet
*ifp
)
327 if ((error
= proto_plumb(PF_INET
, ifp
)) && error
!= EEXIST
) {
328 log(LOG_ERR
, "%s: proto_plumb returned %d if=%s\n",
329 __func__
, error
, if_name(ifp
));
330 } else if (error
== 0 && ifp
->if_inetdata
== NULL
) {
332 struct in_ifextra
*ext
;
335 if ((ext
= (struct in_ifextra
*)_MALLOC(in_extra_bufsize
,
336 M_IFADDR
, M_WAITOK
|M_ZERO
)) == NULL
) {
338 errorx
= proto_unplumb(PF_INET
, ifp
);
341 "%s: proto_unplumb returned %d if=%s%d\n",
342 __func__
, errorx
, ifp
->if_name
,
348 /* Align on 64-bit boundary */
349 base
= (void *)P2ROUNDUP((intptr_t)ext
+ sizeof (uint64_t),
351 VERIFY(((intptr_t)base
+ in_extra_size
) <=
352 ((intptr_t)ext
+ in_extra_bufsize
));
353 pbuf
= (void **)((intptr_t)base
- sizeof (void *));
355 ifp
->if_inetdata
= base
;
356 VERIFY(IS_P2ALIGNED(ifp
->if_inetdata
, sizeof (uint64_t)));
359 if (error
== 0 && ifp
->if_inetdata
!= NULL
) {
361 * Since the structure is never freed, we need to
362 * zero out its contents to avoid reusing stale data.
363 * A little redundant with allocation above, but it
364 * keeps the code simpler for all cases.
366 bzero(ifp
->if_inetdata
, in_extra_size
);
371 static __attribute__((noinline
)) int
372 inctl_associd(struct socket
*so
, u_long cmd
, caddr_t data
)
376 struct so_aidreq32 a32
;
377 struct so_aidreq64 a64
;
383 case SIOCGASSOCIDS32
: /* struct so_aidreq32 */
384 bcopy(data
, &u
.a32
, sizeof (u
.a32
));
385 error
= in_getassocids(so
, &u
.a32
.sar_cnt
, u
.a32
.sar_aidp
);
387 bcopy(&u
.a32
, data
, sizeof (u
.a32
));
390 case SIOCGASSOCIDS64
: /* struct so_aidreq64 */
391 bcopy(data
, &u
.a64
, sizeof (u
.a64
));
392 error
= in_getassocids(so
, &u
.a64
.sar_cnt
, u
.a64
.sar_aidp
);
394 bcopy(&u
.a64
, data
, sizeof (u
.a64
));
405 static __attribute__((noinline
)) int
406 inctl_connid(struct socket
*so
, u_long cmd
, caddr_t data
)
410 struct so_cidreq32 c32
;
411 struct so_cidreq64 c64
;
417 case SIOCGCONNIDS32
: /* struct so_cidreq32 */
418 bcopy(data
, &u
.c32
, sizeof (u
.c32
));
419 error
= in_getconnids(so
, u
.c32
.scr_aid
, &u
.c32
.scr_cnt
,
422 bcopy(&u
.c32
, data
, sizeof (u
.c32
));
425 case SIOCGCONNIDS64
: /* struct so_cidreq64 */
426 bcopy(data
, &u
.c64
, sizeof (u
.c64
));
427 error
= in_getconnids(so
, u
.c64
.scr_aid
, &u
.c64
.scr_cnt
,
430 bcopy(&u
.c64
, data
, sizeof (u
.c64
));
441 static __attribute__((noinline
)) int
442 inctl_conninfo(struct socket
*so
, u_long cmd
, caddr_t data
)
446 struct so_cinforeq32 ci32
;
447 struct so_cinforeq64 ci64
;
453 case SIOCGCONNINFO32
: /* struct so_cinforeq32 */
454 bcopy(data
, &u
.ci32
, sizeof (u
.ci32
));
455 error
= in_getconninfo(so
, u
.ci32
.scir_cid
, &u
.ci32
.scir_flags
,
456 &u
.ci32
.scir_ifindex
, &u
.ci32
.scir_error
, u
.ci32
.scir_src
,
457 &u
.ci32
.scir_src_len
, u
.ci32
.scir_dst
, &u
.ci32
.scir_dst_len
,
458 &u
.ci32
.scir_aux_type
, u
.ci32
.scir_aux_data
,
459 &u
.ci32
.scir_aux_len
);
461 bcopy(&u
.ci32
, data
, sizeof (u
.ci32
));
464 case SIOCGCONNINFO64
: /* struct so_cinforeq64 */
465 bcopy(data
, &u
.ci64
, sizeof (u
.ci64
));
466 error
= in_getconninfo(so
, u
.ci64
.scir_cid
, &u
.ci64
.scir_flags
,
467 &u
.ci64
.scir_ifindex
, &u
.ci64
.scir_error
, u
.ci64
.scir_src
,
468 &u
.ci64
.scir_src_len
, u
.ci64
.scir_dst
, &u
.ci64
.scir_dst_len
,
469 &u
.ci64
.scir_aux_type
, u
.ci64
.scir_aux_data
,
470 &u
.ci64
.scir_aux_len
);
472 bcopy(&u
.ci64
, data
, sizeof (u
.ci64
));
484 * Caller passes in the ioctl data pointer directly via "ifr", with the
485 * expectation that this routine always uses bcopy() or other byte-aligned
488 static __attribute__((noinline
)) int
489 inctl_autoaddr(struct ifnet
*ifp
, struct ifreq
*ifr
)
491 int error
= 0, intval
;
495 bcopy(&ifr
->ifr_intval
, &intval
, sizeof (intval
));
497 ifnet_lock_exclusive(ifp
);
500 * An interface in IPv4 router mode implies that it
501 * is configured with a static IP address and should
502 * not act as a DHCP client; prevent SIOCAUTOADDR from
503 * being set in that mode.
505 if (ifp
->if_eflags
& IFEF_IPV4_ROUTER
) {
506 intval
= 0; /* be safe; clear flag if set */
509 ifp
->if_eflags
|= IFEF_AUTOCONFIGURING
;
513 ifp
->if_eflags
&= ~IFEF_AUTOCONFIGURING
;
514 ifnet_lock_done(ifp
);
520 * Caller passes in the ioctl data pointer directly via "ifr", with the
521 * expectation that this routine always uses bcopy() or other byte-aligned
524 static __attribute__((noinline
)) int
525 inctl_arpipll(struct ifnet
*ifp
, struct ifreq
*ifr
)
527 int error
= 0, intval
;
531 bcopy(&ifr
->ifr_intval
, &intval
, sizeof (intval
));
532 ipv4_ll_arp_aware
= 1;
534 ifnet_lock_exclusive(ifp
);
537 * An interface in IPv4 router mode implies that it
538 * is configured with a static IP address and should
539 * not have to deal with IPv4 Link-Local Address;
540 * prevent SIOCARPIPLL from being set in that mode.
542 if (ifp
->if_eflags
& IFEF_IPV4_ROUTER
) {
543 intval
= 0; /* be safe; clear flag if set */
546 ifp
->if_eflags
|= IFEF_ARPLL
;
550 ifp
->if_eflags
&= ~IFEF_ARPLL
;
551 ifnet_lock_done(ifp
);
557 * Handle SIOCSETROUTERMODE to set or clear the IPv4 router mode flag on
558 * the interface. When in this mode, IPv4 Link-Local Address support is
559 * disabled in ARP, and DHCP client support is disabled in IP input; turning
560 * any of them on would cause an error to be returned. Entering or exiting
561 * this mode will result in the removal of IPv4 addresses currently configured
564 * Caller passes in the ioctl data pointer directly via "ifr", with the
565 * expectation that this routine always uses bcopy() or other byte-aligned
568 static __attribute__((noinline
)) int
569 inctl_setrouter(struct ifnet
*ifp
, struct ifreq
*ifr
)
571 int error
= 0, intval
;
575 /* Router mode isn't valid for loopback */
576 if (ifp
->if_flags
& IFF_LOOPBACK
)
579 bcopy(&ifr
->ifr_intval
, &intval
, sizeof (intval
));
581 ifnet_lock_exclusive(ifp
);
583 ifp
->if_eflags
|= IFEF_IPV4_ROUTER
;
584 ifp
->if_eflags
&= ~(IFEF_ARPLL
| IFEF_AUTOCONFIGURING
);
586 ifp
->if_eflags
&= ~IFEF_IPV4_ROUTER
;
588 ifnet_lock_done(ifp
);
590 /* purge all IPv4 addresses configured on this interface */
597 * Caller passes in the ioctl data pointer directly via "ifr", with the
598 * expectation that this routine always uses bcopy() or other byte-aligned
601 static __attribute__((noinline
)) int
602 inctl_ifaddr(struct ifnet
*ifp
, struct in_ifaddr
*ia
, u_long cmd
,
605 struct kev_in_data in_event_data
;
606 struct kev_msg ev_msg
;
607 struct sockaddr_in addr
;
613 bzero(&in_event_data
, sizeof (struct kev_in_data
));
614 bzero(&ev_msg
, sizeof (struct kev_msg
));
617 case SIOCGIFADDR
: /* struct ifreq */
619 error
= EADDRNOTAVAIL
;
622 IFA_LOCK(&ia
->ia_ifa
);
623 bcopy(&ia
->ia_addr
, &ifr
->ifr_addr
, sizeof (addr
));
624 IFA_UNLOCK(&ia
->ia_ifa
);
627 case SIOCSIFADDR
: /* struct ifreq */
629 bcopy(&ifr
->ifr_addr
, &addr
, sizeof (addr
));
631 * If this is a new address, the reference count for the
632 * hash table has been taken at creation time above.
634 error
= in_ifinit(ifp
, ia
, &addr
, 1);
636 (void) ifnet_notify_address(ifp
, AF_INET
);
640 case SIOCAIFADDR
: { /* struct {if,in_}aliasreq */
641 struct in_aliasreq
*ifra
= (struct in_aliasreq
*)ifr
;
642 struct sockaddr_in broadaddr
, mask
;
643 int hostIsNew
, maskIsNew
;
646 bcopy(&ifra
->ifra_addr
, &addr
, sizeof (addr
));
647 bcopy(&ifra
->ifra_broadaddr
, &broadaddr
, sizeof (broadaddr
));
648 bcopy(&ifra
->ifra_mask
, &mask
, sizeof (mask
));
654 IFA_LOCK(&ia
->ia_ifa
);
655 if (ia
->ia_addr
.sin_family
== AF_INET
) {
656 if (addr
.sin_len
== 0) {
659 } else if (addr
.sin_addr
.s_addr
==
660 ia
->ia_addr
.sin_addr
.s_addr
) {
665 IFA_UNLOCK(&ia
->ia_ifa
);
666 in_ifscrub(ifp
, ia
, 0);
667 IFA_LOCK(&ia
->ia_ifa
);
668 ia
->ia_sockmask
= mask
;
670 ntohl(ia
->ia_sockmask
.sin_addr
.s_addr
);
673 if ((ifp
->if_flags
& IFF_POINTOPOINT
) &&
674 (broadaddr
.sin_family
== AF_INET
)) {
675 IFA_UNLOCK(&ia
->ia_ifa
);
676 in_ifscrub(ifp
, ia
, 0);
677 IFA_LOCK(&ia
->ia_ifa
);
678 ia
->ia_dstaddr
= broadaddr
;
679 ia
->ia_dstaddr
.sin_len
= sizeof (struct sockaddr_in
);
680 maskIsNew
= 1; /* We lie; but the effect's the same */
682 if (addr
.sin_family
== AF_INET
&& (hostIsNew
|| maskIsNew
)) {
683 IFA_UNLOCK(&ia
->ia_ifa
);
684 error
= in_ifinit(ifp
, ia
, &addr
, 0);
686 IFA_UNLOCK(&ia
->ia_ifa
);
689 (void) ifnet_notify_address(ifp
, AF_INET
);
691 IFA_LOCK(&ia
->ia_ifa
);
692 if ((ifp
->if_flags
& IFF_BROADCAST
) &&
693 (broadaddr
.sin_family
== AF_INET
))
694 ia
->ia_broadaddr
= broadaddr
;
699 if ((error
== 0) || (error
== EEXIST
)) {
700 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
701 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
702 ev_msg
.kev_subclass
= KEV_INET_SUBCLASS
;
705 ev_msg
.event_code
= KEV_INET_NEW_ADDR
;
707 ev_msg
.event_code
= KEV_INET_CHANGED_ADDR
;
709 if (ia
->ia_ifa
.ifa_dstaddr
) {
710 in_event_data
.ia_dstaddr
=
711 ((struct sockaddr_in
*)(void *)ia
->
712 ia_ifa
.ifa_dstaddr
)->sin_addr
;
714 in_event_data
.ia_dstaddr
.s_addr
= INADDR_ANY
;
716 in_event_data
.ia_addr
= ia
->ia_addr
.sin_addr
;
717 in_event_data
.ia_net
= ia
->ia_net
;
718 in_event_data
.ia_netmask
= ia
->ia_netmask
;
719 in_event_data
.ia_subnet
= ia
->ia_subnet
;
720 in_event_data
.ia_subnetmask
= ia
->ia_subnetmask
;
721 in_event_data
.ia_netbroadcast
= ia
->ia_netbroadcast
;
722 IFA_UNLOCK(&ia
->ia_ifa
);
723 (void) strlcpy(&in_event_data
.link_data
.if_name
[0],
724 ifp
->if_name
, IFNAMSIZ
);
725 in_event_data
.link_data
.if_family
= ifp
->if_family
;
726 in_event_data
.link_data
.if_unit
= ifp
->if_unit
;
728 ev_msg
.dv
[0].data_ptr
= &in_event_data
;
729 ev_msg
.dv
[0].data_length
= sizeof (struct kev_in_data
);
730 ev_msg
.dv
[1].data_length
= 0;
732 dlil_post_complete_msg(ifp
, &ev_msg
);
734 IFA_UNLOCK(&ia
->ia_ifa
);
739 case SIOCDIFADDR
: /* struct ifreq */
741 error
= ifnet_ioctl(ifp
, PF_INET
, SIOCDIFADDR
, ia
);
742 if (error
== EOPNOTSUPP
)
745 /* Reset the detaching flag */
746 IFA_LOCK(&ia
->ia_ifa
);
747 ia
->ia_ifa
.ifa_debug
&= ~IFD_DETACHING
;
748 IFA_UNLOCK(&ia
->ia_ifa
);
752 /* Fill out the kernel event information */
753 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
754 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
755 ev_msg
.kev_subclass
= KEV_INET_SUBCLASS
;
757 ev_msg
.event_code
= KEV_INET_ADDR_DELETED
;
759 IFA_LOCK(&ia
->ia_ifa
);
760 if (ia
->ia_ifa
.ifa_dstaddr
) {
761 in_event_data
.ia_dstaddr
= ((struct sockaddr_in
*)
762 (void *)ia
->ia_ifa
.ifa_dstaddr
)->sin_addr
;
764 in_event_data
.ia_dstaddr
.s_addr
= INADDR_ANY
;
766 in_event_data
.ia_addr
= ia
->ia_addr
.sin_addr
;
767 in_event_data
.ia_net
= ia
->ia_net
;
768 in_event_data
.ia_netmask
= ia
->ia_netmask
;
769 in_event_data
.ia_subnet
= ia
->ia_subnet
;
770 in_event_data
.ia_subnetmask
= ia
->ia_subnetmask
;
771 in_event_data
.ia_netbroadcast
= ia
->ia_netbroadcast
;
772 IFA_UNLOCK(&ia
->ia_ifa
);
773 (void) strlcpy(&in_event_data
.link_data
.if_name
[0],
774 ifp
->if_name
, IFNAMSIZ
);
775 in_event_data
.link_data
.if_family
= ifp
->if_family
;
776 in_event_data
.link_data
.if_unit
= (u_int32_t
)ifp
->if_unit
;
778 ev_msg
.dv
[0].data_ptr
= &in_event_data
;
779 ev_msg
.dv
[0].data_length
= sizeof(struct kev_in_data
);
780 ev_msg
.dv
[1].data_length
= 0;
783 lck_rw_lock_exclusive(in_ifaddr_rwlock
);
784 /* Release ia_link reference */
786 TAILQ_REMOVE(&in_ifaddrhead
, ia
, ia_link
);
788 if (IA_IS_HASHED(ia
))
789 in_iahash_remove(ia
);
791 lck_rw_done(in_ifaddr_rwlock
);
794 * in_ifscrub kills the interface route.
796 in_ifscrub(ifp
, ia
, 0);
797 ifnet_lock_exclusive(ifp
);
799 /* if_detach_ifa() releases ifa_link reference */
800 if_detach_ifa(ifp
, ifa
);
801 /* Our reference to this address is dropped at the bottom */
804 /* invalidate route caches */
805 routegenid_inet_update();
808 * If the interface supports multicast, and no address is left,
809 * remove the "all hosts" multicast group from that interface.
811 if ((ifp
->if_flags
& IFF_MULTICAST
) ||
812 ifp
->if_allhostsinm
!= NULL
) {
814 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
) {
816 if (ifa
->ifa_addr
->sa_family
== AF_INET
) {
822 ifnet_lock_done(ifp
);
824 lck_mtx_lock(&ifp
->if_addrconfig_lock
);
825 if (ifa
== NULL
&& ifp
->if_allhostsinm
!= NULL
) {
826 struct in_multi
*inm
= ifp
->if_allhostsinm
;
827 ifp
->if_allhostsinm
= NULL
;
830 /* release the reference for allhostsinm */
833 lck_mtx_unlock(&ifp
->if_addrconfig_lock
);
835 ifnet_lock_done(ifp
);
838 /* Post the kernel event */
839 dlil_post_complete_msg(ifp
, &ev_msg
);
842 * See if there is any IPV4 address left and if so,
843 * reconfigure KDP to use current primary address.
845 ifa
= ifa_ifpgetprimary(ifp
, AF_INET
);
848 * NOTE: SIOCSIFADDR is defined with struct ifreq
849 * as parameter, but here we are sending it down
850 * to the interface with a pointer to struct ifaddr,
851 * for legacy reasons.
853 error
= ifnet_ioctl(ifp
, PF_INET
, SIOCSIFADDR
, ifa
);
854 if (error
== EOPNOTSUPP
)
857 /* Release reference from ifa_ifpgetprimary() */
860 (void) ifnet_notify_address(ifp
, AF_INET
);
872 * Caller passes in the ioctl data pointer directly via "ifr", with the
873 * expectation that this routine always uses bcopy() or other byte-aligned
876 static __attribute__((noinline
)) int
877 inctl_ifdstaddr(struct ifnet
*ifp
, struct in_ifaddr
*ia
, u_long cmd
,
880 struct kev_in_data in_event_data
;
881 struct kev_msg ev_msg
;
882 struct sockaddr_in dstaddr
;
887 if (!(ifp
->if_flags
& IFF_POINTOPOINT
))
890 bzero(&in_event_data
, sizeof (struct kev_in_data
));
891 bzero(&ev_msg
, sizeof (struct kev_msg
));
894 case SIOCGIFDSTADDR
: /* struct ifreq */
896 error
= EADDRNOTAVAIL
;
899 IFA_LOCK(&ia
->ia_ifa
);
900 bcopy(&ia
->ia_dstaddr
, &ifr
->ifr_dstaddr
, sizeof (dstaddr
));
901 IFA_UNLOCK(&ia
->ia_ifa
);
904 case SIOCSIFDSTADDR
: /* struct ifreq */
906 IFA_LOCK(&ia
->ia_ifa
);
907 dstaddr
= ia
->ia_dstaddr
;
908 bcopy(&ifr
->ifr_dstaddr
, &ia
->ia_dstaddr
, sizeof (dstaddr
));
909 if (ia
->ia_dstaddr
.sin_family
== AF_INET
)
910 ia
->ia_dstaddr
.sin_len
= sizeof (struct sockaddr_in
);
911 IFA_UNLOCK(&ia
->ia_ifa
);
913 * NOTE: SIOCSIFDSTADDR is defined with struct ifreq
914 * as parameter, but here we are sending it down
915 * to the interface with a pointer to struct ifaddr,
916 * for legacy reasons.
918 error
= ifnet_ioctl(ifp
, PF_INET
, SIOCSIFDSTADDR
, ia
);
919 IFA_LOCK(&ia
->ia_ifa
);
920 if (error
== EOPNOTSUPP
)
923 ia
->ia_dstaddr
= dstaddr
;
924 IFA_UNLOCK(&ia
->ia_ifa
);
927 IFA_LOCK_ASSERT_HELD(&ia
->ia_ifa
);
929 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
930 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
931 ev_msg
.kev_subclass
= KEV_INET_SUBCLASS
;
933 ev_msg
.event_code
= KEV_INET_SIFDSTADDR
;
935 if (ia
->ia_ifa
.ifa_dstaddr
) {
936 in_event_data
.ia_dstaddr
= ((struct sockaddr_in
*)
937 (void *)ia
->ia_ifa
.ifa_dstaddr
)->sin_addr
;
939 in_event_data
.ia_dstaddr
.s_addr
= INADDR_ANY
;
942 in_event_data
.ia_addr
= ia
->ia_addr
.sin_addr
;
943 in_event_data
.ia_net
= ia
->ia_net
;
944 in_event_data
.ia_netmask
= ia
->ia_netmask
;
945 in_event_data
.ia_subnet
= ia
->ia_subnet
;
946 in_event_data
.ia_subnetmask
= ia
->ia_subnetmask
;
947 in_event_data
.ia_netbroadcast
= ia
->ia_netbroadcast
;
948 IFA_UNLOCK(&ia
->ia_ifa
);
949 (void) strlcpy(&in_event_data
.link_data
.if_name
[0],
950 ifp
->if_name
, IFNAMSIZ
);
951 in_event_data
.link_data
.if_family
= ifp
->if_family
;
952 in_event_data
.link_data
.if_unit
= (u_int32_t
)ifp
->if_unit
;
954 ev_msg
.dv
[0].data_ptr
= &in_event_data
;
955 ev_msg
.dv
[0].data_length
= sizeof (struct kev_in_data
);
956 ev_msg
.dv
[1].data_length
= 0;
958 dlil_post_complete_msg(ifp
, &ev_msg
);
960 lck_mtx_lock(rnh_lock
);
961 IFA_LOCK(&ia
->ia_ifa
);
962 if (ia
->ia_flags
& IFA_ROUTE
) {
963 ia
->ia_ifa
.ifa_dstaddr
= (struct sockaddr
*)&dstaddr
;
964 IFA_UNLOCK(&ia
->ia_ifa
);
965 rtinit_locked(&(ia
->ia_ifa
), (int)RTM_DELETE
, RTF_HOST
);
966 IFA_LOCK(&ia
->ia_ifa
);
967 ia
->ia_ifa
.ifa_dstaddr
=
968 (struct sockaddr
*)&ia
->ia_dstaddr
;
969 IFA_UNLOCK(&ia
->ia_ifa
);
970 rtinit_locked(&(ia
->ia_ifa
), (int)RTM_ADD
,
973 IFA_UNLOCK(&ia
->ia_ifa
);
975 lck_mtx_unlock(rnh_lock
);
989 * Caller passes in the ioctl data pointer directly via "ifr", with the
990 * expectation that this routine always uses bcopy() or other byte-aligned
993 static __attribute__((noinline
)) int
994 inctl_ifbrdaddr(struct ifnet
*ifp
, struct in_ifaddr
*ia
, u_long cmd
,
997 struct kev_in_data in_event_data
;
998 struct kev_msg ev_msg
;
1001 VERIFY(ifp
!= NULL
);
1004 return (EADDRNOTAVAIL
);
1006 if (!(ifp
->if_flags
& IFF_BROADCAST
))
1009 bzero(&in_event_data
, sizeof (struct kev_in_data
));
1010 bzero(&ev_msg
, sizeof (struct kev_msg
));
1013 case SIOCGIFBRDADDR
: /* struct ifreq */
1014 IFA_LOCK(&ia
->ia_ifa
);
1015 bcopy(&ia
->ia_broadaddr
, &ifr
->ifr_broadaddr
,
1016 sizeof (struct sockaddr_in
));
1017 IFA_UNLOCK(&ia
->ia_ifa
);
1020 case SIOCSIFBRDADDR
: /* struct ifreq */
1021 IFA_LOCK(&ia
->ia_ifa
);
1022 bcopy(&ifr
->ifr_broadaddr
, &ia
->ia_broadaddr
,
1023 sizeof (struct sockaddr_in
));
1025 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
1026 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
1027 ev_msg
.kev_subclass
= KEV_INET_SUBCLASS
;
1029 ev_msg
.event_code
= KEV_INET_SIFBRDADDR
;
1031 if (ia
->ia_ifa
.ifa_dstaddr
) {
1032 in_event_data
.ia_dstaddr
= ((struct sockaddr_in
*)
1033 (void *)ia
->ia_ifa
.ifa_dstaddr
)->sin_addr
;
1035 in_event_data
.ia_dstaddr
.s_addr
= INADDR_ANY
;
1037 in_event_data
.ia_addr
= ia
->ia_addr
.sin_addr
;
1038 in_event_data
.ia_net
= ia
->ia_net
;
1039 in_event_data
.ia_netmask
= ia
->ia_netmask
;
1040 in_event_data
.ia_subnet
= ia
->ia_subnet
;
1041 in_event_data
.ia_subnetmask
= ia
->ia_subnetmask
;
1042 in_event_data
.ia_netbroadcast
= ia
->ia_netbroadcast
;
1043 IFA_UNLOCK(&ia
->ia_ifa
);
1044 (void) strlcpy(&in_event_data
.link_data
.if_name
[0],
1045 ifp
->if_name
, IFNAMSIZ
);
1046 in_event_data
.link_data
.if_family
= ifp
->if_family
;
1047 in_event_data
.link_data
.if_unit
= (u_int32_t
)ifp
->if_unit
;
1049 ev_msg
.dv
[0].data_ptr
= &in_event_data
;
1050 ev_msg
.dv
[0].data_length
= sizeof (struct kev_in_data
);
1051 ev_msg
.dv
[1].data_length
= 0;
1053 dlil_post_complete_msg(ifp
, &ev_msg
);
1065 * Caller passes in the ioctl data pointer directly via "ifr", with the
1066 * expectation that this routine always uses bcopy() or other byte-aligned
1069 static __attribute__((noinline
)) int
1070 inctl_ifnetmask(struct ifnet
*ifp
, struct in_ifaddr
*ia
, u_long cmd
,
1073 struct kev_in_data in_event_data
;
1074 struct kev_msg ev_msg
;
1075 struct sockaddr_in mask
;
1078 VERIFY(ifp
!= NULL
);
1080 bzero(&in_event_data
, sizeof (struct kev_in_data
));
1081 bzero(&ev_msg
, sizeof (struct kev_msg
));
1084 case SIOCGIFNETMASK
: /* struct ifreq */
1086 error
= EADDRNOTAVAIL
;
1089 IFA_LOCK(&ia
->ia_ifa
);
1090 bcopy(&ia
->ia_sockmask
, &ifr
->ifr_addr
, sizeof (mask
));
1091 IFA_UNLOCK(&ia
->ia_ifa
);
1094 case SIOCSIFNETMASK
: { /* struct ifreq */
1097 bcopy(&ifr
->ifr_addr
, &mask
, sizeof (mask
));
1098 i
= mask
.sin_addr
.s_addr
;
1101 IFA_LOCK(&ia
->ia_ifa
);
1102 ia
->ia_subnetmask
= ntohl(ia
->ia_sockmask
.sin_addr
.s_addr
= i
);
1103 ev_msg
.vendor_code
= KEV_VENDOR_APPLE
;
1104 ev_msg
.kev_class
= KEV_NETWORK_CLASS
;
1105 ev_msg
.kev_subclass
= KEV_INET_SUBCLASS
;
1107 ev_msg
.event_code
= KEV_INET_SIFNETMASK
;
1109 if (ia
->ia_ifa
.ifa_dstaddr
) {
1110 in_event_data
.ia_dstaddr
= ((struct sockaddr_in
*)
1111 (void *)ia
->ia_ifa
.ifa_dstaddr
)->sin_addr
;
1113 in_event_data
.ia_dstaddr
.s_addr
= INADDR_ANY
;
1115 in_event_data
.ia_addr
= ia
->ia_addr
.sin_addr
;
1116 in_event_data
.ia_net
= ia
->ia_net
;
1117 in_event_data
.ia_netmask
= ia
->ia_netmask
;
1118 in_event_data
.ia_subnet
= ia
->ia_subnet
;
1119 in_event_data
.ia_subnetmask
= ia
->ia_subnetmask
;
1120 in_event_data
.ia_netbroadcast
= ia
->ia_netbroadcast
;
1121 IFA_UNLOCK(&ia
->ia_ifa
);
1122 (void) strlcpy(&in_event_data
.link_data
.if_name
[0],
1123 ifp
->if_name
, IFNAMSIZ
);
1124 in_event_data
.link_data
.if_family
= ifp
->if_family
;
1125 in_event_data
.link_data
.if_unit
= (u_int32_t
)ifp
->if_unit
;
1127 ev_msg
.dv
[0].data_ptr
= &in_event_data
;
1128 ev_msg
.dv
[0].data_length
= sizeof (struct kev_in_data
);
1129 ev_msg
.dv
[1].data_length
= 0;
1131 dlil_post_complete_msg(ifp
, &ev_msg
);
1144 * Generic INET control operations (ioctl's).
1146 * ifp is NULL if not an interface-specific ioctl.
1148 * Most of the routines called to handle the ioctls would end up being
1149 * tail-call optimized, which unfortunately causes this routine to
1150 * consume too much stack space; this is the reason for the "noinline"
1151 * attribute used on those routines.
1153 * If called directly from within the networking stack (as opposed to via
1154 * pru_control), the socket parameter may be NULL.
1157 in_control(struct socket
*so
, u_long cmd
, caddr_t data
, struct ifnet
*ifp
,
1160 struct ifreq
*ifr
= (struct ifreq
*)(void *)data
;
1161 struct sockaddr_in addr
, dstaddr
;
1162 struct sockaddr_in sin
, *sa
= NULL
;
1163 boolean_t privileged
= (proc_suser(p
) == 0);
1164 boolean_t so_unlocked
= FALSE
;
1165 struct in_ifaddr
*ia
= NULL
;
1169 /* In case it's NULL, make sure it came from the kernel */
1170 VERIFY(so
!= NULL
|| p
== kernproc
);
1173 * ioctls which don't require ifp, but require socket.
1176 case SIOCGASSOCIDS32
: /* struct so_aidreq32 */
1177 case SIOCGASSOCIDS64
: /* struct so_aidreq64 */
1178 return (inctl_associd(so
, cmd
, data
));
1181 case SIOCGCONNIDS32
: /* struct so_cidreq32 */
1182 case SIOCGCONNIDS64
: /* struct so_cidreq64 */
1183 return (inctl_connid(so
, cmd
, data
));
1186 case SIOCGCONNINFO32
: /* struct so_cinforeq32 */
1187 case SIOCGCONNINFO64
: /* struct so_cinforeq64 */
1188 return (inctl_conninfo(so
, cmd
, data
));
1193 * The rest of ioctls require ifp; reject if we don't have one;
1194 * return ENXIO to be consistent with ifioctl().
1200 * ioctls which require ifp but not interface address.
1203 case SIOCAUTOADDR
: /* struct ifreq */
1206 return (inctl_autoaddr(ifp
, ifr
));
1209 case SIOCARPIPLL
: /* struct ifreq */
1212 return (inctl_arpipll(ifp
, ifr
));
1215 case SIOCSETROUTERMODE
: /* struct ifreq */
1218 return (inctl_setrouter(ifp
, ifr
));
1221 case SIOCPROTOATTACH
: /* struct ifreq */
1224 return (in_domifattach(ifp
));
1227 case SIOCPROTODETACH
: /* struct ifreq */
1232 * If an IPv4 address is still present, refuse to detach.
1234 ifnet_lock_shared(ifp
);
1235 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
) {
1237 if (ifa
->ifa_addr
->sa_family
== AF_INET
) {
1243 ifnet_lock_done(ifp
);
1244 return ((ifa
== NULL
) ? proto_unplumb(PF_INET
, ifp
) : EBUSY
);
1249 * ioctls which require interface address; obtain sockaddr_in.
1252 case SIOCAIFADDR
: /* struct {if,in_}aliasreq */
1255 bcopy(&((struct in_aliasreq
*)(void *)data
)->ifra_addr
,
1256 &sin
, sizeof (sin
));
1260 case SIOCDIFADDR
: /* struct ifreq */
1261 case SIOCSIFADDR
: /* struct ifreq */
1262 case SIOCSIFDSTADDR
: /* struct ifreq */
1263 case SIOCSIFNETMASK
: /* struct ifreq */
1264 case SIOCSIFBRDADDR
: /* struct ifreq */
1268 case SIOCGIFADDR
: /* struct ifreq */
1269 case SIOCGIFDSTADDR
: /* struct ifreq */
1270 case SIOCGIFNETMASK
: /* struct ifreq */
1271 case SIOCGIFBRDADDR
: /* struct ifreq */
1272 bcopy(&ifr
->ifr_addr
, &sin
, sizeof (sin
));
1278 * Find address for this interface, if it exists.
1280 * If an alias address was specified, find that one instead of
1281 * the first one on the interface, if possible.
1285 struct in_ifaddr
*iap
;
1288 * Any failures from this point on must take into account
1289 * a non-NULL "ia" with an outstanding reference count, and
1290 * therefore requires IFA_REMREF. Jump to "done" label
1291 * instead of calling return if "ia" is valid.
1293 lck_rw_lock_shared(in_ifaddr_rwlock
);
1294 TAILQ_FOREACH(iap
, INADDR_HASH(sa
->sin_addr
.s_addr
), ia_hash
) {
1295 IFA_LOCK(&iap
->ia_ifa
);
1296 if (iap
->ia_ifp
== ifp
&&
1297 iap
->ia_addr
.sin_addr
.s_addr
==
1298 sa
->sin_addr
.s_addr
) {
1300 * Avoid the race condition seen when two
1301 * threads process SIOCDIFADDR command
1302 * at the same time (radar 28942007)
1304 if (cmd
== SIOCDIFADDR
) {
1305 if (iap
->ia_ifa
.ifa_debug
&
1307 IFA_UNLOCK(&iap
->ia_ifa
);
1310 iap
->ia_ifa
.ifa_debug
|=
1315 IFA_ADDREF_LOCKED(&iap
->ia_ifa
);
1316 IFA_UNLOCK(&iap
->ia_ifa
);
1319 IFA_UNLOCK(&iap
->ia_ifa
);
1321 lck_rw_done(in_ifaddr_rwlock
);
1324 ifnet_lock_shared(ifp
);
1325 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
) {
1327 IFA_LOCK(&iap
->ia_ifa
);
1328 if (iap
->ia_addr
.sin_family
== AF_INET
) {
1330 IFA_UNLOCK(&iap
->ia_ifa
);
1333 IFA_UNLOCK(&iap
->ia_ifa
);
1335 /* take a reference on ia before releasing lock */
1337 IFA_ADDREF(&ia
->ia_ifa
);
1338 ifnet_lock_done(ifp
);
1343 * Unlock the socket since ifnet_ioctl() may be invoked by
1344 * one of the ioctl handlers below. Socket will be re-locked
1345 * prior to returning.
1348 socket_unlock(so
, 0);
1353 case SIOCAIFADDR
: /* struct {if,in_}aliasreq */
1354 case SIOCDIFADDR
: /* struct ifreq */
1355 if (cmd
== SIOCAIFADDR
) {
1356 bcopy(&((struct in_aliasreq
*)(void *)data
)->
1357 ifra_addr
, &addr
, sizeof (addr
));
1358 bcopy(&((struct in_aliasreq
*)(void *)data
)->
1359 ifra_dstaddr
, &dstaddr
, sizeof (dstaddr
));
1361 VERIFY(cmd
== SIOCDIFADDR
);
1362 bcopy(&((struct ifreq
*)(void *)data
)->ifr_addr
,
1363 &addr
, sizeof (addr
));
1364 bzero(&dstaddr
, sizeof (dstaddr
));
1367 if (addr
.sin_family
== AF_INET
) {
1368 struct in_ifaddr
*oia
;
1370 lck_rw_lock_shared(in_ifaddr_rwlock
);
1371 for (oia
= ia
; ia
; ia
= ia
->ia_link
.tqe_next
) {
1372 IFA_LOCK(&ia
->ia_ifa
);
1373 if (ia
->ia_ifp
== ifp
&&
1374 ia
->ia_addr
.sin_addr
.s_addr
==
1375 addr
.sin_addr
.s_addr
) {
1376 IFA_ADDREF_LOCKED(&ia
->ia_ifa
);
1377 IFA_UNLOCK(&ia
->ia_ifa
);
1380 IFA_UNLOCK(&ia
->ia_ifa
);
1382 lck_rw_done(in_ifaddr_rwlock
);
1384 IFA_REMREF(&oia
->ia_ifa
);
1385 if ((ifp
->if_flags
& IFF_POINTOPOINT
) &&
1386 (cmd
== SIOCAIFADDR
) &&
1387 (dstaddr
.sin_addr
.s_addr
== INADDR_ANY
)) {
1388 error
= EDESTADDRREQ
;
1391 } else if (cmd
== SIOCAIFADDR
) {
1395 if (cmd
== SIOCDIFADDR
&& ia
== NULL
) {
1396 error
= EADDRNOTAVAIL
;
1400 case SIOCSIFADDR
: /* struct ifreq */
1401 case SIOCSIFDSTADDR
: /* struct ifreq */
1402 case SIOCSIFNETMASK
: /* struct ifreq */
1403 if (cmd
== SIOCAIFADDR
) {
1404 /* fell thru from above; just repeat it */
1405 bcopy(&((struct in_aliasreq
*)(void *)data
)->
1406 ifra_addr
, &addr
, sizeof (addr
));
1408 VERIFY(cmd
== SIOCDIFADDR
|| cmd
== SIOCSIFADDR
||
1409 cmd
== SIOCSIFNETMASK
|| cmd
== SIOCSIFDSTADDR
);
1410 bcopy(&((struct ifreq
*)(void *)data
)->ifr_addr
,
1411 &addr
, sizeof (addr
));
1414 if (addr
.sin_family
!= AF_INET
&& cmd
== SIOCSIFADDR
) {
1419 ia
= in_ifaddr_alloc(M_WAITOK
);
1424 ifnet_lock_exclusive(ifp
);
1427 /* Hold a reference for this routine */
1428 IFA_ADDREF_LOCKED(ifa
);
1430 ifa
->ifa_addr
= (struct sockaddr
*)&ia
->ia_addr
;
1431 ifa
->ifa_dstaddr
= (struct sockaddr
*)&ia
->ia_dstaddr
;
1432 ifa
->ifa_netmask
= (struct sockaddr
*)&ia
->ia_sockmask
;
1433 ia
->ia_sockmask
.sin_len
= 8;
1434 if (ifp
->if_flags
& IFF_BROADCAST
) {
1435 ia
->ia_broadaddr
.sin_len
= sizeof (ia
->ia_addr
);
1436 ia
->ia_broadaddr
.sin_family
= AF_INET
;
1439 if (!(ifp
->if_flags
& IFF_LOOPBACK
))
1441 /* if_attach_ifa() holds a reference for ifa_link */
1442 if_attach_ifa(ifp
, ifa
);
1444 * If we have to go through in_ifinit(), make sure
1445 * to avoid installing route(s) based on this address
1446 * via PFC_IFUP event, before the link resolver (ARP)
1449 if (cmd
== SIOCAIFADDR
|| cmd
== SIOCSIFADDR
)
1450 ifa
->ifa_debug
|= IFD_NOTREADY
;
1452 ifnet_lock_done(ifp
);
1453 lck_rw_lock_exclusive(in_ifaddr_rwlock
);
1454 /* Hold a reference for ia_link */
1456 TAILQ_INSERT_TAIL(&in_ifaddrhead
, ia
, ia_link
);
1457 lck_rw_done(in_ifaddr_rwlock
);
1459 (void) in_domifattach(ifp
);
1466 case SIOCGIFDSTADDR
: /* struct ifreq */
1467 case SIOCSIFDSTADDR
: /* struct ifreq */
1468 error
= inctl_ifdstaddr(ifp
, ia
, cmd
, ifr
);
1471 case SIOCGIFBRDADDR
: /* struct ifreq */
1472 case SIOCSIFBRDADDR
: /* struct ifreq */
1473 error
= inctl_ifbrdaddr(ifp
, ia
, cmd
, ifr
);
1476 case SIOCGIFNETMASK
: /* struct ifreq */
1477 case SIOCSIFNETMASK
: /* struct ifreq */
1478 error
= inctl_ifnetmask(ifp
, ia
, cmd
, ifr
);
1481 case SIOCGIFADDR
: /* struct ifreq */
1482 case SIOCSIFADDR
: /* struct ifreq */
1483 case SIOCAIFADDR
: /* struct {if,in_}aliasreq */
1484 case SIOCDIFADDR
: /* struct ifreq */
1485 error
= inctl_ifaddr(ifp
, ia
, cmd
, ifr
);
1494 IFA_REMREF(&ia
->ia_ifa
);
1502 * Delete any existing route for an interface.
1505 in_ifscrub(struct ifnet
*ifp
, struct in_ifaddr
*ia
, int locked
)
1507 IFA_LOCK(&ia
->ia_ifa
);
1508 if ((ia
->ia_flags
& IFA_ROUTE
) == 0) {
1509 IFA_UNLOCK(&ia
->ia_ifa
);
1512 IFA_UNLOCK(&ia
->ia_ifa
);
1514 lck_mtx_lock(rnh_lock
);
1515 if (ifp
->if_flags
& (IFF_LOOPBACK
|IFF_POINTOPOINT
))
1516 rtinit_locked(&(ia
->ia_ifa
), (int)RTM_DELETE
, RTF_HOST
);
1518 rtinit_locked(&(ia
->ia_ifa
), (int)RTM_DELETE
, 0);
1519 IFA_LOCK(&ia
->ia_ifa
);
1520 ia
->ia_flags
&= ~IFA_ROUTE
;
1521 IFA_UNLOCK(&ia
->ia_ifa
);
1523 lck_mtx_unlock(rnh_lock
);
1527 * Caller must hold in_ifaddr_rwlock as writer.
1530 in_iahash_remove(struct in_ifaddr
*ia
)
1532 lck_rw_assert(in_ifaddr_rwlock
, LCK_RW_ASSERT_EXCLUSIVE
);
1533 IFA_LOCK_ASSERT_HELD(&ia
->ia_ifa
);
1535 if (!IA_IS_HASHED(ia
)) {
1536 panic("attempt to remove wrong ia %p from hash table\n", ia
);
1539 TAILQ_REMOVE(INADDR_HASH(ia
->ia_addr
.sin_addr
.s_addr
), ia
, ia_hash
);
1541 if (IFA_REMREF_LOCKED(&ia
->ia_ifa
) == NULL
) {
1542 panic("%s: unexpected (missing) refcnt ifa=%p", __func__
,
1549 * Caller must hold in_ifaddr_rwlock as writer.
1552 in_iahash_insert(struct in_ifaddr
*ia
)
1554 lck_rw_assert(in_ifaddr_rwlock
, LCK_RW_ASSERT_EXCLUSIVE
);
1555 IFA_LOCK_ASSERT_HELD(&ia
->ia_ifa
);
1557 if (ia
->ia_addr
.sin_family
!= AF_INET
) {
1558 panic("attempt to insert wrong ia %p into hash table\n", ia
);
1560 } else if (IA_IS_HASHED(ia
)) {
1561 panic("attempt to double-insert ia %p into hash table\n", ia
);
1564 TAILQ_INSERT_HEAD(INADDR_HASH(ia
->ia_addr
.sin_addr
.s_addr
),
1566 IFA_ADDREF_LOCKED(&ia
->ia_ifa
);
1570 * Some point to point interfaces that are tunnels borrow the address from
1571 * an underlying interface (e.g. VPN server). In order for source address
1572 * selection logic to find the underlying interface first, we add the address
1573 * of borrowing point to point interfaces at the end of the list.
1574 * (see rdar://6733789)
1576 * Caller must hold in_ifaddr_rwlock as writer.
1579 in_iahash_insert_ptp(struct in_ifaddr
*ia
)
1581 struct in_ifaddr
*tmp_ifa
;
1582 struct ifnet
*tmp_ifp
;
1584 lck_rw_assert(in_ifaddr_rwlock
, LCK_RW_ASSERT_EXCLUSIVE
);
1585 IFA_LOCK_ASSERT_HELD(&ia
->ia_ifa
);
1587 if (ia
->ia_addr
.sin_family
!= AF_INET
) {
1588 panic("attempt to insert wrong ia %p into hash table\n", ia
);
1590 } else if (IA_IS_HASHED(ia
)) {
1591 panic("attempt to double-insert ia %p into hash table\n", ia
);
1594 IFA_UNLOCK(&ia
->ia_ifa
);
1595 TAILQ_FOREACH(tmp_ifa
, INADDR_HASH(ia
->ia_addr
.sin_addr
.s_addr
),
1597 IFA_LOCK(&tmp_ifa
->ia_ifa
);
1598 /* ia->ia_addr won't change, so check without lock */
1599 if (IA_SIN(tmp_ifa
)->sin_addr
.s_addr
==
1600 ia
->ia_addr
.sin_addr
.s_addr
) {
1601 IFA_UNLOCK(&tmp_ifa
->ia_ifa
);
1604 IFA_UNLOCK(&tmp_ifa
->ia_ifa
);
1606 tmp_ifp
= (tmp_ifa
== NULL
) ? NULL
: tmp_ifa
->ia_ifp
;
1608 IFA_LOCK(&ia
->ia_ifa
);
1609 if (tmp_ifp
== NULL
) {
1610 TAILQ_INSERT_HEAD(INADDR_HASH(ia
->ia_addr
.sin_addr
.s_addr
),
1613 TAILQ_INSERT_TAIL(INADDR_HASH(ia
->ia_addr
.sin_addr
.s_addr
),
1616 IFA_ADDREF_LOCKED(&ia
->ia_ifa
);
1620 * Initialize an interface's internet address
1621 * and routing table entry.
1624 in_ifinit(struct ifnet
*ifp
, struct in_ifaddr
*ia
, struct sockaddr_in
*sin
,
1627 u_int32_t i
= ntohl(sin
->sin_addr
.s_addr
);
1628 struct sockaddr_in oldaddr
;
1629 int flags
= RTF_UP
, error
;
1630 struct ifaddr
*ifa0
;
1634 /* Take an extra reference for this routine */
1635 IFA_ADDREF(&ia
->ia_ifa
);
1637 lck_rw_lock_exclusive(in_ifaddr_rwlock
);
1638 IFA_LOCK(&ia
->ia_ifa
);
1639 oldaddr
= ia
->ia_addr
;
1640 if (IA_IS_HASHED(ia
)) {
1642 in_iahash_remove(ia
);
1646 * Interface addresses should not contain port or sin_zero information.
1648 SIN(&ia
->ia_addr
)->sin_family
= AF_INET
;
1649 SIN(&ia
->ia_addr
)->sin_len
= sizeof (struct sockaddr_in
);
1650 SIN(&ia
->ia_addr
)->sin_port
= 0;
1651 bzero(&SIN(&ia
->ia_addr
)->sin_zero
, sizeof (sin
->sin_zero
));
1652 if ((ifp
->if_flags
& IFF_POINTOPOINT
))
1653 in_iahash_insert_ptp(ia
);
1655 in_iahash_insert(ia
);
1656 IFA_UNLOCK(&ia
->ia_ifa
);
1657 lck_rw_done(in_ifaddr_rwlock
);
1660 * Give the interface a chance to initialize if this is its first
1661 * address, and to validate the address if necessary. Send down
1662 * SIOCSIFADDR for first address, and SIOCAIFADDR for alias(es).
1663 * We find the first IPV4 address assigned to it and check if this
1664 * is the same as the one passed into this routine.
1666 ifa0
= ifa_ifpgetprimary(ifp
, AF_INET
);
1667 cmd
= (&ia
->ia_ifa
== ifa0
) ? SIOCSIFADDR
: SIOCAIFADDR
;
1668 error
= ifnet_ioctl(ifp
, PF_INET
, cmd
, ia
);
1669 if (error
== EOPNOTSUPP
)
1672 * If we've just sent down SIOCAIFADDR, send another ioctl down
1673 * for SIOCSIFADDR for the first IPV4 address of the interface,
1674 * because an address change on one of the addresses will result
1675 * in the removal of the previous first IPV4 address. KDP needs
1676 * be reconfigured with the current primary IPV4 address.
1678 if (error
== 0 && cmd
== SIOCAIFADDR
) {
1680 * NOTE: SIOCSIFADDR is defined with struct ifreq
1681 * as parameter, but here we are sending it down
1682 * to the interface with a pointer to struct ifaddr,
1683 * for legacy reasons.
1685 error
= ifnet_ioctl(ifp
, PF_INET
, SIOCSIFADDR
, ifa0
);
1686 if (error
== EOPNOTSUPP
)
1690 /* Release reference from ifa_ifpgetprimary() */
1694 lck_rw_lock_exclusive(in_ifaddr_rwlock
);
1695 IFA_LOCK(&ia
->ia_ifa
);
1696 if (IA_IS_HASHED(ia
))
1697 in_iahash_remove(ia
);
1698 ia
->ia_addr
= oldaddr
;
1700 if ((ifp
->if_flags
& IFF_POINTOPOINT
))
1701 in_iahash_insert_ptp(ia
);
1703 in_iahash_insert(ia
);
1705 IFA_UNLOCK(&ia
->ia_ifa
);
1706 lck_rw_done(in_ifaddr_rwlock
);
1707 /* Release extra reference taken above */
1708 IFA_REMREF(&ia
->ia_ifa
);
1711 lck_mtx_lock(rnh_lock
);
1712 IFA_LOCK(&ia
->ia_ifa
);
1714 * Address has been initialized by the link resolver (ARP)
1715 * via ifnet_ioctl() above; it may now generate route(s).
1717 ia
->ia_ifa
.ifa_debug
&= ~IFD_NOTREADY
;
1719 ia
->ia_ifa
.ifa_addr
= (struct sockaddr
*)&oldaddr
;
1720 IFA_UNLOCK(&ia
->ia_ifa
);
1721 in_ifscrub(ifp
, ia
, 1);
1722 IFA_LOCK(&ia
->ia_ifa
);
1723 ia
->ia_ifa
.ifa_addr
= (struct sockaddr
*)&ia
->ia_addr
;
1725 IFA_LOCK_ASSERT_HELD(&ia
->ia_ifa
);
1727 ia
->ia_netmask
= IN_CLASSA_NET
;
1728 else if (IN_CLASSB(i
))
1729 ia
->ia_netmask
= IN_CLASSB_NET
;
1731 ia
->ia_netmask
= IN_CLASSC_NET
;
1733 * The subnet mask usually includes at least the standard network part,
1734 * but may may be smaller in the case of supernetting.
1735 * If it is set, we believe it.
1737 if (ia
->ia_subnetmask
== 0) {
1738 ia
->ia_subnetmask
= ia
->ia_netmask
;
1739 ia
->ia_sockmask
.sin_addr
.s_addr
= htonl(ia
->ia_subnetmask
);
1741 ia
->ia_netmask
&= ia
->ia_subnetmask
;
1742 ia
->ia_net
= i
& ia
->ia_netmask
;
1743 ia
->ia_subnet
= i
& ia
->ia_subnetmask
;
1744 in_socktrim(&ia
->ia_sockmask
);
1746 * Add route for the network.
1748 ia
->ia_ifa
.ifa_metric
= ifp
->if_metric
;
1749 if (ifp
->if_flags
& IFF_BROADCAST
) {
1750 ia
->ia_broadaddr
.sin_addr
.s_addr
=
1751 htonl(ia
->ia_subnet
| ~ia
->ia_subnetmask
);
1752 ia
->ia_netbroadcast
.s_addr
=
1753 htonl(ia
->ia_net
| ~ ia
->ia_netmask
);
1754 } else if (ifp
->if_flags
& IFF_LOOPBACK
) {
1755 ia
->ia_ifa
.ifa_dstaddr
= ia
->ia_ifa
.ifa_addr
;
1757 } else if (ifp
->if_flags
& IFF_POINTOPOINT
) {
1758 if (ia
->ia_dstaddr
.sin_family
!= AF_INET
) {
1759 IFA_UNLOCK(&ia
->ia_ifa
);
1760 lck_mtx_unlock(rnh_lock
);
1761 /* Release extra reference taken above */
1762 IFA_REMREF(&ia
->ia_ifa
);
1765 ia
->ia_dstaddr
.sin_len
= sizeof (struct sockaddr_in
);
1768 IFA_UNLOCK(&ia
->ia_ifa
);
1770 if ((error
= rtinit_locked(&(ia
->ia_ifa
), (int)RTM_ADD
, flags
)) == 0) {
1771 IFA_LOCK(&ia
->ia_ifa
);
1772 ia
->ia_flags
|= IFA_ROUTE
;
1773 IFA_UNLOCK(&ia
->ia_ifa
);
1775 lck_mtx_unlock(rnh_lock
);
1777 /* XXX check if the subnet route points to the same interface */
1778 if (error
== EEXIST
)
1782 * If the interface supports multicast, join the "all hosts"
1783 * multicast group on that interface.
1785 if (ifp
->if_flags
& IFF_MULTICAST
) {
1786 struct in_addr addr
;
1788 lck_mtx_lock(&ifp
->if_addrconfig_lock
);
1789 addr
.s_addr
= htonl(INADDR_ALLHOSTS_GROUP
);
1790 if (ifp
->if_allhostsinm
== NULL
) {
1791 struct in_multi
*inm
;
1792 inm
= in_addmulti(&addr
, ifp
);
1796 * Keep the reference on inm added by
1797 * in_addmulti above for storing the
1798 * pointer in allhostsinm.
1800 ifp
->if_allhostsinm
= inm
;
1802 printf("%s: failed to add membership to "
1803 "all-hosts multicast address on %s\n",
1804 __func__
, if_name(ifp
));
1807 lck_mtx_unlock(&ifp
->if_addrconfig_lock
);
1810 /* Release extra reference taken above */
1811 IFA_REMREF(&ia
->ia_ifa
);
1814 /* invalidate route caches */
1815 routegenid_inet_update();
1822 * Return TRUE if the address might be a local broadcast address.
1825 in_broadcast(struct in_addr in
, struct ifnet
*ifp
)
1830 if (in
.s_addr
== INADDR_BROADCAST
|| in
.s_addr
== INADDR_ANY
)
1832 if (!(ifp
->if_flags
& IFF_BROADCAST
))
1834 t
= ntohl(in
.s_addr
);
1837 * Look through the list of addresses for a match
1838 * with a broadcast address.
1840 #define ia ((struct in_ifaddr *)ifa)
1841 ifnet_lock_shared(ifp
);
1842 TAILQ_FOREACH(ifa
, &ifp
->if_addrhead
, ifa_link
) {
1844 if (ifa
->ifa_addr
->sa_family
== AF_INET
&&
1845 (in
.s_addr
== ia
->ia_broadaddr
.sin_addr
.s_addr
||
1846 in
.s_addr
== ia
->ia_netbroadcast
.s_addr
||
1848 * Check for old-style (host 0) broadcast.
1850 t
== ia
->ia_subnet
|| t
== ia
->ia_net
) &&
1852 * Check for an all one subnetmask. These
1853 * only exist when an interface gets a secondary
1856 ia
->ia_subnetmask
!= (u_int32_t
)0xffffffff) {
1858 ifnet_lock_done(ifp
);
1863 ifnet_lock_done(ifp
);
1869 in_purgeaddrs(struct ifnet
*ifp
)
1871 struct ifaddr
**ifap
;
1874 VERIFY(ifp
!= NULL
);
1877 * Be nice, and try the civilized way first. If we can't get
1878 * rid of them this way, then do it the rough way. We must
1879 * only get here during detach time, after the ifnet has been
1880 * removed from the global list and arrays.
1882 err
= ifnet_get_address_list_family_internal(ifp
, &ifap
, AF_INET
, 1,
1884 if (err
== 0 && ifap
!= NULL
) {
1887 bzero(&ifr
, sizeof (ifr
));
1888 (void) snprintf(ifr
.ifr_name
, sizeof (ifr
.ifr_name
),
1889 "%s", if_name(ifp
));
1891 for (i
= 0; ifap
[i
] != NULL
; i
++) {
1896 bcopy(ifa
->ifa_addr
, &ifr
.ifr_addr
,
1897 sizeof (struct sockaddr_in
));
1899 err
= in_control(NULL
, SIOCDIFADDR
, (caddr_t
)&ifr
, ifp
,
1901 /* if we lost the race, ignore it */
1902 if (err
== EADDRNOTAVAIL
)
1905 char s_addr
[MAX_IPv4_STR_LEN
];
1906 char s_dstaddr
[MAX_IPv4_STR_LEN
];
1907 struct in_addr
*s
, *d
;
1910 s
= &((struct sockaddr_in
*)
1911 (void *)ifa
->ifa_addr
)->sin_addr
;
1912 d
= &((struct sockaddr_in
*)
1913 (void *)ifa
->ifa_dstaddr
)->sin_addr
;
1914 (void) inet_ntop(AF_INET
, &s
->s_addr
, s_addr
,
1916 (void) inet_ntop(AF_INET
, &d
->s_addr
, s_dstaddr
,
1917 sizeof (s_dstaddr
));
1920 printf("%s: SIOCDIFADDR ifp=%s ifa_addr=%s "
1921 "ifa_dstaddr=%s (err=%d)\n", __func__
,
1922 ifp
->if_xname
, s_addr
, s_dstaddr
, err
);
1925 ifnet_free_address_list(ifap
);
1926 } else if (err
!= 0 && err
!= ENXIO
) {
1927 printf("%s: error retrieving list of AF_INET addresses for "
1928 "ifp=%s (err=%d)\n", __func__
, ifp
->if_xname
, err
);
1933 * Called as part of ip_init
1936 in_ifaddr_init(void)
1940 PE_parse_boot_argn("ifa_debug", &inifa_debug
, sizeof (inifa_debug
));
1942 inifa_size
= (inifa_debug
== 0) ? sizeof (struct in_ifaddr
) :
1943 sizeof (struct in_ifaddr_dbg
);
1945 inifa_zone
= zinit(inifa_size
, INIFA_ZONE_MAX
* inifa_size
,
1946 0, INIFA_ZONE_NAME
);
1947 if (inifa_zone
== NULL
) {
1948 panic("%s: failed allocating %s", __func__
, INIFA_ZONE_NAME
);
1951 zone_change(inifa_zone
, Z_EXPAND
, TRUE
);
1952 zone_change(inifa_zone
, Z_CALLERACCT
, FALSE
);
1954 lck_mtx_init(&inifa_trash_lock
, ifa_mtx_grp
, ifa_mtx_attr
);
1955 TAILQ_INIT(&inifa_trash_head
);
1958 static struct in_ifaddr
*
1959 in_ifaddr_alloc(int how
)
1961 struct in_ifaddr
*inifa
;
1963 inifa
= (how
== M_WAITOK
) ? zalloc(inifa_zone
) :
1964 zalloc_noblock(inifa_zone
);
1965 if (inifa
!= NULL
) {
1966 bzero(inifa
, inifa_size
);
1967 inifa
->ia_ifa
.ifa_free
= in_ifaddr_free
;
1968 inifa
->ia_ifa
.ifa_debug
|= IFD_ALLOC
;
1969 ifa_lock_init(&inifa
->ia_ifa
);
1970 if (inifa_debug
!= 0) {
1971 struct in_ifaddr_dbg
*inifa_dbg
=
1972 (struct in_ifaddr_dbg
*)inifa
;
1973 inifa
->ia_ifa
.ifa_debug
|= IFD_DEBUG
;
1974 inifa
->ia_ifa
.ifa_trace
= in_ifaddr_trace
;
1975 inifa
->ia_ifa
.ifa_attached
= in_ifaddr_attached
;
1976 inifa
->ia_ifa
.ifa_detached
= in_ifaddr_detached
;
1977 ctrace_record(&inifa_dbg
->inifa_alloc
);
1984 in_ifaddr_free(struct ifaddr
*ifa
)
1986 IFA_LOCK_ASSERT_HELD(ifa
);
1988 if (ifa
->ifa_refcnt
!= 0) {
1989 panic("%s: ifa %p bad ref cnt", __func__
, ifa
);
1991 } if (!(ifa
->ifa_debug
& IFD_ALLOC
)) {
1992 panic("%s: ifa %p cannot be freed", __func__
, ifa
);
1995 if (ifa
->ifa_debug
& IFD_DEBUG
) {
1996 struct in_ifaddr_dbg
*inifa_dbg
= (struct in_ifaddr_dbg
*)ifa
;
1997 ctrace_record(&inifa_dbg
->inifa_free
);
1998 bcopy(&inifa_dbg
->inifa
, &inifa_dbg
->inifa_old
,
1999 sizeof (struct in_ifaddr
));
2000 if (ifa
->ifa_debug
& IFD_TRASHED
) {
2001 /* Become a regular mutex, just in case */
2002 IFA_CONVERT_LOCK(ifa
);
2003 lck_mtx_lock(&inifa_trash_lock
);
2004 TAILQ_REMOVE(&inifa_trash_head
, inifa_dbg
,
2006 lck_mtx_unlock(&inifa_trash_lock
);
2007 ifa
->ifa_debug
&= ~IFD_TRASHED
;
2011 ifa_lock_destroy(ifa
);
2012 bzero(ifa
, sizeof (struct in_ifaddr
));
2013 zfree(inifa_zone
, ifa
);
2017 in_ifaddr_attached(struct ifaddr
*ifa
)
2019 struct in_ifaddr_dbg
*inifa_dbg
= (struct in_ifaddr_dbg
*)ifa
;
2021 IFA_LOCK_ASSERT_HELD(ifa
);
2023 if (!(ifa
->ifa_debug
& IFD_DEBUG
)) {
2024 panic("%s: ifa %p has no debug structure", __func__
, ifa
);
2027 if (ifa
->ifa_debug
& IFD_TRASHED
) {
2028 /* Become a regular mutex, just in case */
2029 IFA_CONVERT_LOCK(ifa
);
2030 lck_mtx_lock(&inifa_trash_lock
);
2031 TAILQ_REMOVE(&inifa_trash_head
, inifa_dbg
, inifa_trash_link
);
2032 lck_mtx_unlock(&inifa_trash_lock
);
2033 ifa
->ifa_debug
&= ~IFD_TRASHED
;
2038 in_ifaddr_detached(struct ifaddr
*ifa
)
2040 struct in_ifaddr_dbg
*inifa_dbg
= (struct in_ifaddr_dbg
*)ifa
;
2042 IFA_LOCK_ASSERT_HELD(ifa
);
2044 if (!(ifa
->ifa_debug
& IFD_DEBUG
)) {
2045 panic("%s: ifa %p has no debug structure", __func__
, ifa
);
2047 } else if (ifa
->ifa_debug
& IFD_TRASHED
) {
2048 panic("%s: ifa %p is already in trash list", __func__
, ifa
);
2051 ifa
->ifa_debug
|= IFD_TRASHED
;
2052 /* Become a regular mutex, just in case */
2053 IFA_CONVERT_LOCK(ifa
);
2054 lck_mtx_lock(&inifa_trash_lock
);
2055 TAILQ_INSERT_TAIL(&inifa_trash_head
, inifa_dbg
, inifa_trash_link
);
2056 lck_mtx_unlock(&inifa_trash_lock
);
2060 in_ifaddr_trace(struct ifaddr
*ifa
, int refhold
)
2062 struct in_ifaddr_dbg
*inifa_dbg
= (struct in_ifaddr_dbg
*)ifa
;
2067 if (!(ifa
->ifa_debug
& IFD_DEBUG
)) {
2068 panic("%s: ifa %p has no debug structure", __func__
, ifa
);
2072 cnt
= &inifa_dbg
->inifa_refhold_cnt
;
2073 tr
= inifa_dbg
->inifa_refhold
;
2075 cnt
= &inifa_dbg
->inifa_refrele_cnt
;
2076 tr
= inifa_dbg
->inifa_refrele
;
2079 idx
= atomic_add_16_ov(cnt
, 1) % INIFA_TRACE_HIST_SIZE
;
2080 ctrace_record(&tr
[idx
]);
2084 * Handle SIOCGASSOCIDS ioctl for PF_INET domain.
2087 in_getassocids(struct socket
*so
, uint32_t *cnt
, user_addr_t aidp
)
2089 struct inpcb
*inp
= sotoinpcb(so
);
2092 if (inp
== NULL
|| inp
->inp_state
== INPCB_STATE_DEAD
)
2095 /* INPCB has no concept of association */
2096 aid
= SAE_ASSOCID_ANY
;
2099 /* just asking how many there are? */
2100 if (aidp
== USER_ADDR_NULL
)
2103 return (copyout(&aid
, aidp
, sizeof (aid
)));
2107 * Handle SIOCGCONNIDS ioctl for PF_INET domain.
2110 in_getconnids(struct socket
*so
, sae_associd_t aid
, uint32_t *cnt
,
2113 struct inpcb
*inp
= sotoinpcb(so
);
2116 if (inp
== NULL
|| inp
->inp_state
== INPCB_STATE_DEAD
)
2119 if (aid
!= SAE_ASSOCID_ANY
&& aid
!= SAE_ASSOCID_ALL
)
2122 /* if connected, return 1 connection count */
2123 *cnt
= ((so
->so_state
& SS_ISCONNECTED
) ? 1 : 0);
2125 /* just asking how many there are? */
2126 if (cidp
== USER_ADDR_NULL
)
2129 /* if INPCB is connected, assign it connid 1 */
2130 cid
= ((*cnt
!= 0) ? 1 : SAE_CONNID_ANY
);
2132 return (copyout(&cid
, cidp
, sizeof (cid
)));
2136 * Handle SIOCGCONNINFO ioctl for PF_INET domain.
2139 in_getconninfo(struct socket
*so
, sae_connid_t cid
, uint32_t *flags
,
2140 uint32_t *ifindex
, int32_t *soerror
, user_addr_t src
, socklen_t
*src_len
,
2141 user_addr_t dst
, socklen_t
*dst_len
, uint32_t *aux_type
,
2142 user_addr_t aux_data
, uint32_t *aux_len
)
2144 #pragma unused(aux_data)
2145 struct inpcb
*inp
= sotoinpcb(so
);
2146 struct sockaddr_in sin
;
2147 struct ifnet
*ifp
= NULL
;
2149 u_int32_t copy_len
= 0;
2152 * Don't test for INPCB_STATE_DEAD since this may be called
2153 * after SOF_PCBCLEARING is set, e.g. after tcp_close().
2160 if (cid
!= SAE_CONNID_ANY
&& cid
!= SAE_CONNID_ALL
&& cid
!= 1) {
2165 ifp
= inp
->inp_last_outifp
;
2166 *ifindex
= ((ifp
!= NULL
) ? ifp
->if_index
: 0);
2167 *soerror
= so
->so_error
;
2169 if (so
->so_state
& SS_ISCONNECTED
)
2170 *flags
|= (CIF_CONNECTED
| CIF_PREFERRED
);
2171 if (inp
->inp_flags
& INP_BOUND_IF
)
2172 *flags
|= CIF_BOUND_IF
;
2173 if (!(inp
->inp_flags
& INP_INADDR_ANY
))
2174 *flags
|= CIF_BOUND_IP
;
2175 if (!(inp
->inp_flags
& INP_ANONPORT
))
2176 *flags
|= CIF_BOUND_PORT
;
2178 bzero(&sin
, sizeof (sin
));
2179 sin
.sin_len
= sizeof (sin
);
2180 sin
.sin_family
= AF_INET
;
2182 /* source address and port */
2183 sin
.sin_port
= inp
->inp_lport
;
2184 sin
.sin_addr
.s_addr
= inp
->inp_laddr
.s_addr
;
2185 if (*src_len
== 0) {
2186 *src_len
= sin
.sin_len
;
2188 if (src
!= USER_ADDR_NULL
) {
2189 copy_len
= min(*src_len
, sizeof (sin
));
2190 error
= copyout(&sin
, src
, copy_len
);
2193 *src_len
= copy_len
;
2197 /* destination address and port */
2198 sin
.sin_port
= inp
->inp_fport
;
2199 sin
.sin_addr
.s_addr
= inp
->inp_faddr
.s_addr
;
2200 if (*dst_len
== 0) {
2201 *dst_len
= sin
.sin_len
;
2203 if (dst
!= USER_ADDR_NULL
) {
2204 copy_len
= min(*dst_len
, sizeof (sin
));
2205 error
= copyout(&sin
, dst
, copy_len
);
2208 *dst_len
= copy_len
;
2214 if (SOCK_PROTO(so
) == IPPROTO_TCP
) {
2215 struct conninfo_tcp tcp_ci
;
2217 *aux_type
= CIAUX_TCP
;
2218 if (*aux_len
== 0) {
2219 *aux_len
= sizeof (tcp_ci
);
2221 if (aux_data
!= USER_ADDR_NULL
) {
2222 copy_len
= min(*aux_len
, sizeof (tcp_ci
));
2223 bzero(&tcp_ci
, sizeof (tcp_ci
));
2224 tcp_getconninfo(so
, &tcp_ci
);
2225 error
= copyout(&tcp_ci
, aux_data
, copy_len
);
2228 *aux_len
= copy_len
;