2 * Copyright (c) 2002-2005, 2007, 2008, 2011 Apple Inc. All rights reserved.
4 * @APPLE_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. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
25 * Modification History
27 * August 5, 2002 Allan Nathanson <ajn@apple.com>
28 * - split code out from eventmon.c
35 #ifndef kSCEntNetIPv4ARPCollision
36 #define kSCEntNetIPv4ARPCollision CFSTR("IPv4ARPCollision")
37 #endif /* kSCEntNetIPv4ARPCollision */
40 #ifndef kSCEntNetIPv4PortInUse
41 #define kSCEntNetIPv4PortInUse CFSTR("PortInUse")
42 #endif /* kSCEntNetIPv4PortInUse */
43 #endif /* !TARGET_OS_IPHONE */
45 #define IP_FORMAT "%d.%d.%d.%d"
46 #define IP_CH(ip, i) (((u_char *)(ip))[i])
47 #define IP_LIST(ip) IP_CH(ip,0),IP_CH(ip,1),IP_CH(ip,2),IP_CH(ip,3)
51 appendAddress(CFMutableDictionaryRef dict
, CFStringRef key
, struct in_addr
*address
)
55 CFMutableArrayRef newAddrs
;
57 addrs
= CFDictionaryGetValue(dict
, key
);
59 newAddrs
= CFArrayCreateMutableCopy(NULL
, 0, addrs
);
61 newAddrs
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
64 addr
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR(IP_FORMAT
), IP_LIST(address
));
65 CFArrayAppendValue(newAddrs
, addr
);
68 CFDictionarySetValue(dict
, key
, newAddrs
);
74 static CFMutableDictionaryRef
75 copyIF(CFStringRef key
, CFMutableDictionaryRef oldIFs
, CFMutableDictionaryRef newIFs
)
77 CFDictionaryRef dict
= NULL
;
78 CFMutableDictionaryRef newDict
= NULL
;
80 if (CFDictionaryGetValueIfPresent(newIFs
, key
, (const void **)&dict
)) {
81 newDict
= CFDictionaryCreateMutableCopy(NULL
, 0, dict
);
83 dict
= cache_SCDynamicStoreCopyValue(store
, key
);
85 CFDictionarySetValue(oldIFs
, key
, dict
);
86 if (isA_CFDictionary(dict
)) {
87 newDict
= CFDictionaryCreateMutableCopy(NULL
, 0, dict
);
88 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4Addresses
);
89 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4SubnetMasks
);
90 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4DestAddresses
);
91 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4BroadcastAddresses
);
98 newDict
= CFDictionaryCreateMutable(NULL
,
100 &kCFTypeDictionaryKeyCallBacks
,
101 &kCFTypeDictionaryValueCallBacks
);
109 updateStore(const void *key
, const void *value
, void *context
)
111 CFDictionaryRef dict
;
112 CFDictionaryRef newDict
= (CFDictionaryRef
)value
;
113 CFDictionaryRef oldIFs
= (CFDictionaryRef
)context
;
115 dict
= CFDictionaryGetValue(oldIFs
, key
);
117 if (!dict
|| !CFEqual(dict
, newDict
)) {
118 if (CFDictionaryGetCount(newDict
) > 0) {
119 cache_SCDynamicStoreSetValue(store
, key
, newDict
);
121 cache_SCDynamicStoreRemoveValue(store
, key
);
123 network_changed
= TRUE
;
132 interface_update_ipv4(struct ifaddrs
*ifap
, const char *if_name
)
135 struct ifaddrs
*ifap_temp
= NULL
;
136 CFStringRef interface
;
137 boolean_t interfaceFound
= FALSE
;
138 CFStringRef key
= NULL
;
139 CFMutableDictionaryRef oldIFs
;
140 CFMutableDictionaryRef newDict
= NULL
;
141 CFMutableDictionaryRef newIFs
;
143 oldIFs
= CFDictionaryCreateMutable(NULL
,
145 &kCFTypeDictionaryKeyCallBacks
,
146 &kCFTypeDictionaryValueCallBacks
);
147 newIFs
= CFDictionaryCreateMutable(NULL
,
149 &kCFTypeDictionaryKeyCallBacks
,
150 &kCFTypeDictionaryValueCallBacks
);
153 if (getifaddrs(&ifap_temp
) == -1) {
154 SCLog(TRUE
, LOG_ERR
, CFSTR("getifaddrs() failed: %s"), strerror(errno
));
160 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
161 struct sockaddr_in
*sin
;
163 if (ifa
->ifa_addr
->sa_family
!= AF_INET
) {
164 continue; /* sorry, not interested */
167 /* check if this is the requested interface */
169 if (strncmp(if_name
, ifa
->ifa_name
, IFNAMSIZ
) == 0) {
170 interfaceFound
= TRUE
; /* yes, this is the one I want */
172 continue; /* sorry, not interested */
176 interface
= CFStringCreateWithCString(NULL
, ifa
->ifa_name
, kCFStringEncodingMacRoman
);
177 key
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
178 kSCDynamicStoreDomainState
,
181 CFRelease(interface
);
183 newDict
= copyIF(key
, oldIFs
, newIFs
);
185 /* ALIGN: cast ok, this should be aligned (getifaddrs). */
186 sin
= (struct sockaddr_in
*)(void *)ifa
->ifa_addr
;
187 appendAddress(newDict
, kSCPropNetIPv4Addresses
, &sin
->sin_addr
);
189 if (ifa
->ifa_flags
& IFF_POINTOPOINT
) {
190 struct sockaddr_in
*dst
;
192 /* ALIGN: cast ok, this should be aligned (getifaddrs). */
193 dst
= (struct sockaddr_in
*)(void *)ifa
->ifa_dstaddr
;
194 appendAddress(newDict
, kSCPropNetIPv4DestAddresses
, &dst
->sin_addr
);
196 struct sockaddr_in
*brd
;
197 struct sockaddr_in
*msk
;
199 /* ALIGN: cast ok, this should be aligned (getifaddrs). */
200 brd
= (struct sockaddr_in
*)(void *)ifa
->ifa_broadaddr
;
201 appendAddress(newDict
, kSCPropNetIPv4BroadcastAddresses
,&brd
->sin_addr
);
203 /* ALIGN: cast ok, this should be aligned (getifaddrs). */
204 msk
= (struct sockaddr_in
*)(void *)ifa
->ifa_netmask
;
205 appendAddress(newDict
, kSCPropNetIPv4SubnetMasks
, &msk
->sin_addr
);
208 CFDictionarySetValue(newIFs
, key
, newDict
);
213 /* if the last address[es] were removed from the target interface */
214 if (if_name
&& !interfaceFound
) {
215 interface
= CFStringCreateWithCString(NULL
, if_name
, kCFStringEncodingMacRoman
);
216 key
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
217 kSCDynamicStoreDomainState
,
220 CFRelease(interface
);
222 newDict
= copyIF(key
, oldIFs
, newIFs
);
224 CFDictionarySetValue(newIFs
, key
, newDict
);
229 CFDictionaryApplyFunction(newIFs
, updateStore
, oldIFs
);
233 if (ifap_temp
) freeifaddrs(ifap_temp
);
242 interface_collision_ipv4(const char *if_name
, struct in_addr ip_addr
, int hw_len
, const void * hw_addr
)
244 uint8_t * hw_addr_bytes
= (uint8_t *)hw_addr
;
246 CFStringRef if_name_cf
;
247 CFMutableStringRef key
;
250 if_name_cf
= CFStringCreateWithCString(NULL
, if_name
,
251 kCFStringEncodingASCII
);
252 prefix
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
253 kSCDynamicStoreDomainState
,
255 kSCEntNetIPv4ARPCollision
);
256 key
= CFStringCreateMutableCopy(NULL
, 0, prefix
);
257 CFStringAppendFormat(key
, NULL
, CFSTR("/" IP_FORMAT
),
259 for (i
= 0; i
< hw_len
; i
++) {
260 CFStringAppendFormat(key
, NULL
, CFSTR("%s%02x"),
261 (i
== 0) ? "/" : ":", hw_addr_bytes
[i
]);
263 cache_SCDynamicStoreNotifyValue(store
, key
);
266 CFRelease(if_name_cf
);
270 #if !TARGET_OS_IPHONE
273 port_in_use_ipv4(uint16_t port
, pid_t req_pid
)
277 key
= SCDynamicStoreKeyCreate(NULL
,
278 CFSTR("%@/%@/Protocol/%@/%@/%d/%d"),
279 kSCDynamicStoreDomainState
,
282 kSCEntNetIPv4PortInUse
,
284 cache_SCDynamicStoreNotifyValue(store
, key
);
288 #endif /* !TARGET_OS_IPHONE */