2 * Copyright (c) 2002-2005, 2007 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 */
39 #ifndef kSCEntNetIPv4PortInUse
40 #define kSCEntNetIPv4PortInUse CFSTR("PortInUse")
41 #endif /* kSCEntNetIPv4PortInUse */
43 #define IP_FORMAT "%d.%d.%d.%d"
44 #define IP_CH(ip, i) (((u_char *)(ip))[i])
45 #define IP_LIST(ip) IP_CH(ip,0),IP_CH(ip,1),IP_CH(ip,2),IP_CH(ip,3)
49 appendAddress(CFMutableDictionaryRef dict
, CFStringRef key
, struct in_addr
*address
)
53 CFMutableArrayRef newAddrs
;
55 addrs
= CFDictionaryGetValue(dict
, key
);
57 newAddrs
= CFArrayCreateMutableCopy(NULL
, 0, addrs
);
59 newAddrs
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
62 addr
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR(IP_FORMAT
), IP_LIST(address
));
63 CFArrayAppendValue(newAddrs
, addr
);
66 CFDictionarySetValue(dict
, key
, newAddrs
);
72 static CFMutableDictionaryRef
73 getIF(CFStringRef key
, CFMutableDictionaryRef oldIFs
, CFMutableDictionaryRef newIFs
)
75 CFDictionaryRef dict
= NULL
;
76 CFMutableDictionaryRef newDict
= NULL
;
78 if (CFDictionaryGetValueIfPresent(newIFs
, key
, (const void **)&dict
)) {
79 newDict
= CFDictionaryCreateMutableCopy(NULL
, 0, dict
);
81 dict
= cache_SCDynamicStoreCopyValue(store
, key
);
83 CFDictionarySetValue(oldIFs
, key
, dict
);
84 if (isA_CFDictionary(dict
)) {
85 newDict
= CFDictionaryCreateMutableCopy(NULL
, 0, dict
);
86 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4Addresses
);
87 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4SubnetMasks
);
88 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4DestAddresses
);
89 CFDictionaryRemoveValue(newDict
, kSCPropNetIPv4BroadcastAddresses
);
96 newDict
= CFDictionaryCreateMutable(NULL
,
98 &kCFTypeDictionaryKeyCallBacks
,
99 &kCFTypeDictionaryValueCallBacks
);
107 updateStore(const void *key
, const void *value
, void *context
)
109 CFDictionaryRef dict
;
110 CFDictionaryRef newDict
= (CFDictionaryRef
)value
;
111 CFDictionaryRef oldIFs
= (CFDictionaryRef
)context
;
113 dict
= CFDictionaryGetValue(oldIFs
, key
);
115 if (!dict
|| !CFEqual(dict
, newDict
)) {
116 if (CFDictionaryGetCount(newDict
) > 0) {
117 cache_SCDynamicStoreSetValue(store
, key
, newDict
);
119 cache_SCDynamicStoreRemoveValue(store
, key
);
121 network_changed
= TRUE
;
130 interface_update_ipv4(struct ifaddrs
*ifap
, const char *if_name
)
133 struct ifaddrs
*ifap_temp
= NULL
;
134 CFStringRef interface
;
135 boolean_t interfaceFound
= FALSE
;
136 CFStringRef key
= NULL
;
137 CFMutableDictionaryRef oldIFs
;
138 CFMutableDictionaryRef newDict
= NULL
;
139 CFMutableDictionaryRef newIFs
;
141 oldIFs
= CFDictionaryCreateMutable(NULL
,
143 &kCFTypeDictionaryKeyCallBacks
,
144 &kCFTypeDictionaryValueCallBacks
);
145 newIFs
= CFDictionaryCreateMutable(NULL
,
147 &kCFTypeDictionaryKeyCallBacks
,
148 &kCFTypeDictionaryValueCallBacks
);
151 if (getifaddrs(&ifap_temp
) == -1) {
152 SCLog(TRUE
, LOG_ERR
, CFSTR("getifaddrs() failed: %s"), strerror(errno
));
158 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
159 struct sockaddr_in
*sin
;
161 if (ifa
->ifa_addr
->sa_family
!= AF_INET
) {
162 continue; /* sorry, not interested */
165 /* check if this is the requested interface */
167 if (strncmp(if_name
, ifa
->ifa_name
, IFNAMSIZ
) == 0) {
168 interfaceFound
= TRUE
; /* yes, this is the one I want */
170 continue; /* sorry, not interested */
174 interface
= CFStringCreateWithCString(NULL
, ifa
->ifa_name
, kCFStringEncodingMacRoman
);
175 key
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
176 kSCDynamicStoreDomainState
,
179 CFRelease(interface
);
181 newDict
= getIF(key
, oldIFs
, newIFs
);
183 sin
= (struct sockaddr_in
*)ifa
->ifa_addr
;
184 appendAddress(newDict
, kSCPropNetIPv4Addresses
, &sin
->sin_addr
);
186 if (ifa
->ifa_flags
& IFF_POINTOPOINT
) {
187 struct sockaddr_in
*dst
;
189 dst
= (struct sockaddr_in
*)ifa
->ifa_dstaddr
;
190 appendAddress(newDict
, kSCPropNetIPv4DestAddresses
, &dst
->sin_addr
);
192 struct sockaddr_in
*brd
;
193 struct sockaddr_in
*msk
;
195 brd
= (struct sockaddr_in
*)ifa
->ifa_broadaddr
;
196 appendAddress(newDict
, kSCPropNetIPv4BroadcastAddresses
, &brd
->sin_addr
);
197 msk
= (struct sockaddr_in
*)ifa
->ifa_netmask
;
198 appendAddress(newDict
, kSCPropNetIPv4SubnetMasks
, &msk
->sin_addr
);
201 CFDictionarySetValue(newIFs
, key
, newDict
);
206 /* if the last address[es] were removed from the target interface */
207 if (if_name
&& !interfaceFound
) {
208 interface
= CFStringCreateWithCString(NULL
, if_name
, kCFStringEncodingMacRoman
);
209 key
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
210 kSCDynamicStoreDomainState
,
213 CFRelease(interface
);
215 newDict
= getIF(key
, oldIFs
, newIFs
);
217 CFDictionarySetValue(newIFs
, key
, newDict
);
222 CFDictionaryApplyFunction(newIFs
, updateStore
, oldIFs
);
226 if (ifap_temp
) freeifaddrs(ifap_temp
);
235 interface_collision_ipv4(const char *if_name
, struct in_addr ip_addr
, int hw_len
, const void * hw_addr
)
237 uint8_t * hw_addr_bytes
= (uint8_t *)hw_addr
;
239 CFStringRef if_name_cf
;
240 CFMutableStringRef key
;
243 if_name_cf
= CFStringCreateWithCString(NULL
, if_name
,
244 kCFStringEncodingASCII
);
245 prefix
= SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL
,
246 kSCDynamicStoreDomainState
,
248 kSCEntNetIPv4ARPCollision
);
249 key
= CFStringCreateMutableCopy(NULL
, 0, prefix
);
250 CFStringAppendFormat(key
, NULL
, CFSTR("/" IP_FORMAT
),
252 for (i
= 0; i
< hw_len
; i
++) {
253 CFStringAppendFormat(key
, NULL
, CFSTR("%s%02x"),
254 (i
== 0) ? "/" : ":", hw_addr_bytes
[i
]);
256 cache_SCDynamicStoreNotifyValue(store
, key
);
259 CFRelease(if_name_cf
);
265 port_in_use_ipv4(uint16_t port
, pid_t req_pid
)
269 key
= SCDynamicStoreKeyCreate(NULL
,
270 CFSTR("%@/%@/Protocol/%@/%@/%d/%d"),
271 kSCDynamicStoreDomainState
,
274 kSCEntNetIPv4PortInUse
,
276 cache_SCDynamicStoreNotifyValue(store
, key
);