2 * Copyright (c) 2011-2015 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 * January 3, 2011 Allan Nathanson <ajn@apple.com>
31 #include <TargetConditionals.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
36 #include <CoreFoundation/CoreFoundation.h>
37 #include <SystemConfiguration/SystemConfiguration.h>
38 #include <SystemConfiguration/SCPrivate.h>
39 #include <SystemConfiguration/SCValidation.h>
40 #include "ip_plugin.h"
43 #define DEFAULT_MATCH_ORDER 200000 /* match order for the "default" proxy configuration */
46 #define PROXY_MATCH_ORDER_KEY CFSTR("__MATCH_ORDER__")
47 #define ORDER_KEY CFSTR("__ORDER__")
50 CFBooleanRef G_supplemental_proxies_follow_dns
= NULL
;
54 add_proxy(CFMutableArrayRef proxies
, CFMutableDictionaryRef proxy
)
60 n_proxies
= CFArrayGetCount(proxies
);
61 for (i
= 0; i
< n_proxies
; i
++) {
62 CFDictionaryRef match_proxy
;
64 match_proxy
= CFArrayGetValueAtIndex(proxies
, i
);
65 if (CFEqual(proxy
, match_proxy
)) {
71 order
= CFNumberCreate(NULL
, kCFNumberCFIndexType
, &n_proxies
);
72 CFDictionarySetValue(proxy
, ORDER_KEY
, order
);
75 CFArrayAppendValue(proxies
, proxy
);
81 add_supplemental(CFMutableArrayRef proxies
, CFDictionaryRef proxy
, uint32_t defaultOrder
)
88 domains
= CFDictionaryGetValue(proxy
, kSCPropNetProxiesSupplementalMatchDomains
);
89 n_domains
= isA_CFArray(domains
) ? CFArrayGetCount(domains
) : 0;
94 orders
= CFDictionaryGetValue(proxy
, kSCPropNetProxiesSupplementalMatchOrders
);
96 if (!isA_CFArray(orders
) || (n_domains
!= CFArrayGetCount(orders
))) {
102 * yes, this is a "supplemental" proxy configuration, expand
103 * the match domains and add each to the proxies list.
105 for (i
= 0; i
< n_domains
; i
++) {
106 CFStringRef match_domain
;
107 CFNumberRef match_order
;
108 CFMutableDictionaryRef match_proxy
;
110 match_domain
= CFArrayGetValueAtIndex(domains
, i
);
111 if (!isA_CFString(match_domain
)) {
115 match_proxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
117 // set supplemental proxy match "domain"
118 match_domain
= _SC_trimDomain(match_domain
);
119 if (match_domain
!= NULL
) {
120 CFDictionarySetValue(match_proxy
, kSCPropNetProxiesSupplementalMatchDomain
, match_domain
);
121 CFRelease(match_domain
);
123 CFDictionaryRemoveValue(match_proxy
, kSCPropNetProxiesSupplementalMatchDomain
);
126 // set supplemental proxy match "order"
127 match_order
= (orders
!= NULL
) ? CFArrayGetValueAtIndex(orders
, i
) : NULL
;
128 if (isA_CFNumber(match_order
)) {
129 CFDictionarySetValue(match_proxy
, PROXY_MATCH_ORDER_KEY
, match_order
);
133 num
= CFNumberCreate(NULL
, kCFNumberIntType
, &defaultOrder
);
134 CFDictionarySetValue(match_proxy
, PROXY_MATCH_ORDER_KEY
, num
);
137 defaultOrder
++; // if multiple domains, maintain ordering
140 // remove keys we don't want in a supplemental proxy
141 CFDictionaryRemoveValue(match_proxy
, kSCPropNetProxiesSupplementalMatchDomains
);
142 CFDictionaryRemoveValue(match_proxy
, kSCPropNetProxiesSupplementalMatchOrders
);
143 CFDictionaryRemoveValue(match_proxy
, kSCPropInterfaceName
);
145 add_proxy(proxies
, match_proxy
);
146 CFRelease(match_proxy
);
157 add_supplemental_proxies(CFMutableArrayRef proxies
, CFDictionaryRef services
, CFArrayRef service_order
)
159 const void * keys_q
[N_QUICK
];
160 const void ** keys
= keys_q
;
164 const void * vals_q
[N_QUICK
];
165 const void ** vals
= vals_q
;
167 n_services
= isA_CFDictionary(services
) ? CFDictionaryGetCount(services
) : 0;
168 if (n_services
== 0) {
169 return; // if no services
172 if (n_services
> (CFIndex
)(sizeof(keys_q
) / sizeof(CFTypeRef
))) {
173 keys
= CFAllocatorAllocate(NULL
, n_services
* sizeof(CFTypeRef
), 0);
174 vals
= CFAllocatorAllocate(NULL
, n_services
* sizeof(CFTypeRef
), 0);
177 n_order
= isA_CFArray(service_order
) ? CFArrayGetCount(service_order
) : 0;
179 CFDictionaryGetKeysAndValues(services
, keys
, vals
);
180 for (i
= 0; i
< n_services
; i
++) {
181 uint32_t defaultOrder
;
182 CFDictionaryRef proxy
;
183 CFMutableDictionaryRef proxyWithDNS
= NULL
;
184 CFDictionaryRef service
= (CFDictionaryRef
)vals
[i
];
186 if (!isA_CFDictionary(service
)) {
190 proxy
= CFDictionaryGetValue(service
, kSCEntNetProxies
);
191 if (!isA_CFDictionary(proxy
)) {
195 if ((G_supplemental_proxies_follow_dns
!= NULL
) && CFBooleanGetValue(G_supplemental_proxies_follow_dns
)) {
197 CFArrayRef matchDomains
;
198 CFArrayRef matchOrders
;
200 if (!CFDictionaryContainsKey(proxy
, kSCPropNetProxiesSupplementalMatchDomains
) &&
201 CFDictionaryGetValueIfPresent(service
, kSCEntNetDNS
, (const void **)&dns
) &&
202 isA_CFDictionary(dns
) &&
203 CFDictionaryGetValueIfPresent(dns
, kSCPropNetDNSSupplementalMatchDomains
, (const void **)&matchDomains
) &&
204 isA_CFArray(matchDomains
)) {
205 proxyWithDNS
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
206 CFDictionarySetValue(proxyWithDNS
, kSCPropNetProxiesSupplementalMatchDomains
, matchDomains
);
207 if (CFDictionaryGetValueIfPresent(dns
, kSCPropNetDNSSupplementalMatchOrders
, (const void **)&matchOrders
) &&
208 isA_CFArray(matchOrders
)) {
209 CFDictionarySetValue(proxyWithDNS
, kSCPropNetProxiesSupplementalMatchOrders
, matchOrders
);
211 CFDictionaryRemoveValue(proxyWithDNS
, kSCPropNetProxiesSupplementalMatchOrders
);
213 proxy
= proxyWithDNS
;
217 defaultOrder
= DEFAULT_MATCH_ORDER
218 - (DEFAULT_MATCH_ORDER
/ 2)
219 + ((DEFAULT_MATCH_ORDER
/ 1000) * (uint32_t)i
);
221 !CFArrayContainsValue(service_order
, CFRangeMake(0, n_order
), keys
[i
])) {
222 // push out services not specified in service order
223 defaultOrder
+= (DEFAULT_MATCH_ORDER
/ 1000) * n_services
;
226 add_supplemental(proxies
, proxy
, defaultOrder
);
227 if (proxyWithDNS
!= NULL
) CFRelease(proxyWithDNS
);
230 if (keys
!= keys_q
) {
231 CFAllocatorDeallocate(NULL
, keys
);
232 CFAllocatorDeallocate(NULL
, vals
);
239 static CFComparisonResult
240 compareBySearchOrder(const void *val1
, const void *val2
, void *context
)
242 CFDictionaryRef proxy1
= (CFDictionaryRef
)val1
;
243 CFDictionaryRef proxy2
= (CFDictionaryRef
)val2
;
246 uint32_t order1
= DEFAULT_MATCH_ORDER
;
247 uint32_t order2
= DEFAULT_MATCH_ORDER
;
249 num1
= CFDictionaryGetValue(proxy1
, PROXY_MATCH_ORDER_KEY
);
250 if (!isA_CFNumber(num1
) ||
251 !CFNumberGetValue(num1
, kCFNumberSInt32Type
, &order1
)) {
252 order1
= DEFAULT_MATCH_ORDER
;
255 num2
= CFDictionaryGetValue(proxy2
, PROXY_MATCH_ORDER_KEY
);
256 if (!isA_CFNumber(num2
) ||
257 !CFNumberGetValue(num2
, kCFNumberSInt32Type
, &order2
)) {
258 order2
= DEFAULT_MATCH_ORDER
;
261 if (order1
== order2
) {
262 // if same match "order", retain original ordering for configurations
263 if (CFDictionaryGetValueIfPresent(proxy1
, ORDER_KEY
, (const void **)&num1
) &&
264 CFDictionaryGetValueIfPresent(proxy2
, ORDER_KEY
, (const void **)&num2
) &&
265 isA_CFNumber(num1
) &&
266 isA_CFNumber(num2
) &&
267 CFNumberGetValue(num1
, kCFNumberSInt32Type
, &order1
) &&
268 CFNumberGetValue(num2
, kCFNumberSInt32Type
, &order2
)) {
269 if (order1
== order2
) {
270 return kCFCompareEqualTo
;
272 return (order1
< order2
) ? kCFCompareLessThan
: kCFCompareGreaterThan
;
276 return kCFCompareEqualTo
;
279 return (order1
< order2
) ? kCFCompareLessThan
: kCFCompareGreaterThan
;
283 static __inline__ Boolean
284 isSupplementalProxy(CFDictionaryRef proxy
)
286 if ((proxy
!= NULL
) &&
287 CFDictionaryContainsKey(proxy
, kSCPropNetProxiesSupplementalMatchDomain
)) {
296 copy_supplemental_proxies(CFArrayRef proxies
, Boolean skip
)
300 CFMutableArrayRef supplemental
= NULL
;
302 // iterate over services
304 n_proxies
= isA_CFArray(proxies
) ? CFArrayGetCount(proxies
) : 0;
305 for (i
= 0; i
< n_proxies
; i
++) {
306 CFDictionaryRef proxy
;
308 proxy
= CFArrayGetValueAtIndex(proxies
, i
);
309 if (!isSupplementalProxy(proxy
)) {
310 // if not supplemental proxy (i.e. no match domain)
314 // add [supplemental] proxy entry
315 if (supplemental
== NULL
) {
316 supplemental
= CFArrayCreateMutable(NULL
,
318 &kCFTypeArrayCallBacks
);
320 CFArrayAppendValue(supplemental
, proxy
);
328 service_order_copy_all(CFDictionaryRef services
, CFArrayRef service_order
)
330 const void * keys_q
[N_QUICK
];
331 const void ** keys
= keys_q
;
335 CFMutableArrayRef order
;
337 // ensure that we process all services in order
338 n_services
= isA_CFDictionary(services
) ? CFDictionaryGetCount(services
) : 0;
339 if (n_services
== 0) {
344 // ensure that we process all services in order
346 n_order
= isA_CFArray(service_order
) ? CFArrayGetCount(service_order
) : 0;
348 order
= CFArrayCreateMutableCopy(NULL
, 0, service_order
);
350 order
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
353 if (n_services
> (CFIndex
)(sizeof(keys_q
) / sizeof(CFTypeRef
))) {
354 keys
= CFAllocatorAllocate(NULL
, n_services
* sizeof(CFTypeRef
), 0);
356 CFDictionaryGetKeysAndValues(services
, keys
, NULL
);
357 for (i
= 0; i
< n_services
; i
++) {
358 CFStringRef serviceID
= (CFStringRef
)keys
[i
];
360 if (!CFArrayContainsValue(order
, CFRangeMake(0, n_order
), serviceID
)) {
361 CFArrayAppendValue(order
, serviceID
);
365 if (keys
!= keys_q
) {
366 CFAllocatorDeallocate(NULL
, keys
);
373 static CFDictionaryRef
374 copy_app_layer_vpn_proxies(CFDictionaryRef services
, CFArrayRef order
, CFDictionaryRef services_info
)
376 CFMutableDictionaryRef app_layer_proxies
= NULL
;
380 if (!isA_CFDictionary(services_info
)) {
384 // iterate over services
386 n_order
= isA_CFArray(order
) ? CFArrayGetCount(order
) : 0;
387 for (i
= 0; i
< n_order
; i
++) {
388 CFMutableDictionaryRef newProxy
;
389 CFDictionaryRef proxy
;
390 CFDictionaryRef service
;
391 CFStringRef serviceID
;
392 CFNumberRef serviceSpecificIdentifier
;
393 int serviceIdentifier
= 0;
394 CFStringRef serviceIdentifierString
;
396 serviceID
= CFArrayGetValueAtIndex(order
, i
);
397 service
= CFDictionaryGetValue(services
, serviceID
);
398 if (!isA_CFDictionary(service
)) {
403 proxy
= CFDictionaryGetValue(service
, kSCEntNetProxies
);
404 if (!isA_CFDictionary(proxy
)) {
409 serviceSpecificIdentifier
= CFDictionaryGetValue(proxy
, kSCPropNetProxiesServiceSpecific
);
410 if (!isA_CFNumber(serviceSpecificIdentifier
) ||
411 !CFNumberGetValue(serviceSpecificIdentifier
, kCFNumberIntType
, &serviceIdentifier
) ||
412 serviceIdentifier
== 0) {
413 // if not a service-specific proxy configuration
417 serviceIdentifierString
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
, CFSTR("%u"), serviceIdentifier
);
418 if (serviceIdentifierString
== NULL
) {
421 if ((app_layer_proxies
!= NULL
) &&
422 CFDictionaryContainsKey(app_layer_proxies
, serviceIdentifierString
)) {
423 // if we've already processed this [app_layer_proxies] identifier
424 CFRelease(serviceIdentifierString
);
428 // add [app_layer_proxies] proxy entry
429 newProxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
430 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchDomains
);
431 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchOrders
);
432 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesServiceSpecific
);
433 if (app_layer_proxies
== NULL
) {
434 app_layer_proxies
= CFDictionaryCreateMutable(NULL
,
436 &kCFTypeDictionaryKeyCallBacks
,
437 &kCFTypeDictionaryValueCallBacks
);
439 CFDictionarySetValue(app_layer_proxies
, serviceIdentifierString
, newProxy
);
440 CFRelease(serviceIdentifierString
);
444 return app_layer_proxies
;
448 static CFDictionaryRef
449 copy_scoped_proxies(CFDictionaryRef services
, CFArrayRef order
)
453 CFMutableDictionaryRef scoped
= NULL
;
455 // iterate over services
457 n_order
= isA_CFArray(order
) ? CFArrayGetCount(order
) : 0;
458 for (i
= 0; i
< n_order
; i
++) {
459 char if_name
[IF_NAMESIZE
];
460 CFStringRef interface
;
461 CFMutableDictionaryRef newProxy
;
462 CFDictionaryRef proxy
;
463 CFDictionaryRef service
;
464 CFStringRef serviceID
;
466 serviceID
= CFArrayGetValueAtIndex(order
, i
);
467 service
= CFDictionaryGetValue(services
, serviceID
);
468 if (!isA_CFDictionary(service
)) {
473 proxy
= CFDictionaryGetValue(service
, kSCEntNetProxies
);
474 if (!isA_CFDictionary(proxy
)) {
479 interface
= CFDictionaryGetValue(proxy
, kSCPropInterfaceName
);
480 if (interface
== NULL
) {
481 // if no [scoped] interface
484 if ((scoped
!= NULL
) &&
485 CFDictionaryContainsKey(scoped
, interface
)) {
486 // if we've already processed this [scoped] interface
490 if ((_SC_cfstring_to_cstring(interface
,
493 kCFStringEncodingASCII
) == NULL
) ||
494 ((my_if_nametoindex(if_name
)) == 0)) {
495 // if interface index not available
499 // add [scoped] proxy entry
500 // ... and remove keys we don't want in a [scoped] proxy
502 newProxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
503 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchDomains
);
504 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchOrders
);
505 CFDictionaryRemoveValue(newProxy
, kSCPropInterfaceName
);
506 if (scoped
== NULL
) {
507 scoped
= CFDictionaryCreateMutable(NULL
,
509 &kCFTypeDictionaryKeyCallBacks
,
510 &kCFTypeDictionaryValueCallBacks
);
512 CFDictionarySetValue(scoped
, interface
, newProxy
);
514 CFRelease(interface
);
522 add_default_proxy(CFMutableArrayRef proxies
,
523 CFDictionaryRef defaultProxy
,
526 CFMutableDictionaryRef myDefault
;
527 uint32_t myOrder
= DEFAULT_MATCH_ORDER
;
528 CFNumberRef order
= NULL
;
530 if (defaultProxy
== NULL
) {
531 myDefault
= CFDictionaryCreateMutable(NULL
,
533 &kCFTypeDictionaryKeyCallBacks
,
534 &kCFTypeDictionaryValueCallBacks
);
536 myDefault
= CFDictionaryCreateMutableCopy(NULL
, 0, defaultProxy
);
537 CFDictionaryRemoveValue(myDefault
, kSCPropInterfaceName
);
538 order
= CFDictionaryGetValue(myDefault
, PROXY_MATCH_ORDER_KEY
);
541 // ensure that the default proxy has a search order
543 if (!isA_CFNumber(order
) ||
544 !CFNumberGetValue(order
, kCFNumberSInt32Type
, &myOrder
)) {
545 myOrder
= DEFAULT_MATCH_ORDER
;
546 order
= CFNumberCreate(NULL
, kCFNumberIntType
, &myOrder
);
547 CFDictionarySetValue(myDefault
, PROXY_MATCH_ORDER_KEY
, order
);
552 // add the default proxy
554 add_proxy(proxies
, myDefault
);
555 CFRelease(myDefault
);
560 static CFComparisonResult
561 compareDomain(const void *val1
, const void *val2
, void *context
)
563 CFDictionaryRef proxy1
= (CFDictionaryRef
)val1
;
564 CFDictionaryRef proxy2
= (CFDictionaryRef
)val2
;
567 CFArrayRef labels1
= NULL
;
568 CFArrayRef labels2
= NULL
;
571 CFComparisonResult result
;
575 // "default" domains sort before "supplemental" domains
576 domain1
= CFDictionaryGetValue(proxy1
, kSCPropNetProxiesSupplementalMatchDomain
);
577 domain2
= CFDictionaryGetValue(proxy2
, kSCPropNetProxiesSupplementalMatchDomain
);
578 if (domain1
== NULL
) {
579 if (domain2
== NULL
) {
580 return kCFCompareEqualTo
;
582 return kCFCompareLessThan
;
583 } else if (domain2
== NULL
) {
584 return kCFCompareGreaterThan
;
587 // forward (A, AAAA) domains sort before reverse (PTR) domains
588 rev1
= CFStringHasSuffix(domain1
, CFSTR(".arpa"));
589 rev2
= CFStringHasSuffix(domain2
, CFSTR(".arpa"));
592 return kCFCompareGreaterThan
;
594 return kCFCompareLessThan
;
598 labels1
= CFStringCreateArrayBySeparatingStrings(NULL
, domain1
, CFSTR("."));
599 n1
= CFArrayGetCount(labels1
);
601 labels2
= CFStringCreateArrayBySeparatingStrings(NULL
, domain2
, CFSTR("."));
602 n2
= CFArrayGetCount(labels2
);
604 while ((n1
> 0) && (n2
> 0)) {
605 CFStringRef label1
= CFArrayGetValueAtIndex(labels1
, --n1
);
606 CFStringRef label2
= CFArrayGetValueAtIndex(labels2
, --n2
);
608 // compare domain labels
609 result
= CFStringCompare(label1
, label2
, kCFCompareCaseInsensitive
);
610 if (result
!= kCFCompareEqualTo
) {
615 // longer labels (corp.apple.com) sort before shorter labels (apple.com)
617 result
= kCFCompareLessThan
;
619 } else if (n1
< n2
) {
620 result
= kCFCompareGreaterThan
;
624 // sort by search order
625 result
= compareBySearchOrder(val1
, val2
, context
);
629 if (labels1
!= NULL
) CFRelease(labels1
);
630 if (labels2
!= NULL
) CFRelease(labels2
);
636 CF_RETURNS_RETAINED CFDictionaryRef
637 proxy_configuration_update(CFDictionaryRef defaultProxy
,
638 CFDictionaryRef services
,
639 CFArrayRef serviceOrder
,
640 CFDictionaryRef servicesInfo
)
643 CFMutableDictionaryRef myDefault
;
644 Boolean myOrderAdded
= FALSE
;
645 CFMutableDictionaryRef newProxy
= NULL
;
647 CFDictionaryRef proxy
;
648 CFMutableArrayRef proxies
;
650 // establish full list of proxies
652 proxies
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
654 // collect (and add) any "supplemental" proxy configurations
656 add_supplemental_proxies(proxies
, services
, serviceOrder
);
658 // add the "default" proxy
660 add_default_proxy(proxies
, defaultProxy
, &myOrderAdded
);
662 // sort proxies, cleanup
664 n_proxies
= CFArrayGetCount(proxies
);
666 CFArraySortValues(proxies
, CFRangeMake(0, n_proxies
), compareDomain
, NULL
);
671 for (i
= n_proxies
- 1; i
>= 0; i
--) {
672 proxy
= CFArrayGetValueAtIndex(proxies
, i
);
675 !CFDictionaryContainsKey(proxy
, kSCPropNetProxiesSupplementalMatchDomain
)) {
676 // remove non-supplemental proxy
677 CFArrayRemoveValueAtIndex(proxies
, i
);
682 newProxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
683 CFDictionaryRemoveValue(newProxy
, PROXY_MATCH_ORDER_KEY
);
684 CFDictionaryRemoveValue(newProxy
, ORDER_KEY
);
685 CFArraySetValueAtIndex(proxies
, i
, newProxy
);
689 // update the default proxy
691 myDefault
= CFDictionaryCreateMutableCopy(NULL
,
693 CFArrayGetValueAtIndex(proxies
, 0));
694 if (myOrderAdded
&& (n_proxies
> 1)) {
695 CFDictionaryRef proxy
;
697 proxy
= CFArrayGetValueAtIndex(proxies
, 1);
698 if (CFDictionaryContainsKey(proxy
, kSCPropNetProxiesSupplementalMatchDomain
)) {
699 // if not a supplemental "default" proxy (a match domain name is
701 CFDictionaryRemoveValue(myDefault
, PROXY_MATCH_ORDER_KEY
);
704 CFArraySetValueAtIndex(proxies
, 0, myDefault
);
705 CFRelease(myDefault
);
707 // establish proxy configuration
710 CFDictionaryRef app_layer
;
711 CFDictionaryRef scoped
;
712 CFArrayRef serviceOrderAll
;
713 Boolean skip
= FALSE
;
714 CFArrayRef supplemental
;
716 proxy
= CFArrayGetValueAtIndex(proxies
, 0);
717 if (!CFDictionaryContainsKey(proxy
, kSCPropNetProxiesSupplementalMatchDomain
)) {
718 // if we have "a" default (non-supplemental) proxy
719 newProxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
720 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchDomains
);
721 CFDictionaryRemoveValue(newProxy
, kSCPropNetProxiesSupplementalMatchOrders
);
724 newProxy
= CFDictionaryCreateMutable(NULL
,
726 &kCFTypeDictionaryKeyCallBacks
,
727 &kCFTypeDictionaryValueCallBacks
);
730 serviceOrderAll
= service_order_copy_all(services
, serviceOrder
);
732 // collect (and add) any "supplemental" proxy configurations
734 supplemental
= copy_supplemental_proxies(proxies
, skip
);
735 if (supplemental
!= NULL
) {
736 CFDictionarySetValue(newProxy
, kSCPropNetProxiesSupplemental
, supplemental
);
737 CFRelease(supplemental
);
740 // collect (and add) any "scoped" proxy configurations
742 scoped
= copy_scoped_proxies(services
, serviceOrderAll
);
743 if (scoped
!= NULL
) {
744 CFDictionarySetValue(newProxy
, kSCPropNetProxiesScoped
, scoped
);
748 // collect (and add) any "services" based proxy configurations
750 app_layer
= copy_app_layer_vpn_proxies(services
, serviceOrderAll
, servicesInfo
);
751 if (app_layer
!= NULL
) {
752 CFDictionarySetValue(newProxy
, kSCPropNetProxiesServices
, app_layer
);
753 CFRelease(app_layer
);
756 if (serviceOrderAll
!= NULL
) {
757 CFRelease(serviceOrderAll
);
770 proxy_configuration_init(CFBundleRef bundle
)
772 CFDictionaryRef dict
;
774 dict
= CFBundleGetInfoDictionary(bundle
);
775 if (isA_CFDictionary(dict
)) {
776 G_supplemental_proxies_follow_dns
= CFDictionaryGetValue(dict
, CFSTR("SupplementalProxiesFollowSupplementalDNS"));
777 G_supplemental_proxies_follow_dns
= isA_CFBoolean(G_supplemental_proxies_follow_dns
);
785 #pragma mark Standalone test code
791 mergeDict(const void *key
, const void *value
, void *context
)
793 CFMutableDictionaryRef newDict
= (CFMutableDictionaryRef
)context
;
795 CFDictionarySetValue(newDict
, key
, value
);
801 split(const void * key
, const void * value
, void * context
)
803 CFArrayRef components
;
804 CFStringRef entity_id
;
805 CFStringRef service_id
;
806 CFMutableDictionaryRef state_dict
;
808 components
= CFStringCreateArrayBySeparatingStrings(NULL
, (CFStringRef
)key
, CFSTR("/"));
809 service_id
= CFArrayGetValueAtIndex(components
, 3);
810 entity_id
= CFArrayGetValueAtIndex(components
, 4);
811 state_dict
= (CFMutableDictionaryRef
)CFDictionaryGetValue(context
, service_id
);
812 if (state_dict
!= NULL
) {
813 state_dict
= CFDictionaryCreateMutableCopy(NULL
, 0, state_dict
);
815 state_dict
= CFDictionaryCreateMutable(NULL
,
817 &kCFTypeDictionaryKeyCallBacks
,
818 &kCFTypeDictionaryValueCallBacks
);
821 if (CFEqual(entity_id
, kSCEntNetIPv4
) ||
822 CFEqual(entity_id
, kSCEntNetIPv6
)) {
823 CFStringRef interface
;
825 interface
= CFDictionaryGetValue((CFDictionaryRef
)value
, kSCPropInterfaceName
);
826 if (interface
!= NULL
) {
827 CFDictionaryRef proxy
;
828 CFMutableDictionaryRef new_proxy
;
830 proxy
= CFDictionaryGetValue(state_dict
, kSCEntNetProxies
);
832 new_proxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
834 new_proxy
= CFDictionaryCreateMutable(NULL
,
836 &kCFTypeDictionaryKeyCallBacks
,
837 &kCFTypeDictionaryValueCallBacks
);
839 CFDictionarySetValue(new_proxy
, kSCPropInterfaceName
, interface
);
840 CFDictionarySetValue(state_dict
, kSCEntNetProxies
, new_proxy
);
841 CFRelease(new_proxy
);
843 } else if (CFEqual(entity_id
, kSCEntNetProxies
)) {
844 CFDictionaryRef proxy
;
846 proxy
= CFDictionaryGetValue(state_dict
, kSCEntNetProxies
);
849 CFMutableDictionaryRef new_proxy
;
851 // if we already have some Setup: or State: proxy content
852 domain
= CFArrayGetValueAtIndex(components
, 0);
853 if (CFEqual(domain
, kSCDynamicStoreDomainState
)) {
854 // if we've already seen the Setup: key
855 new_proxy
= CFDictionaryCreateMutableCopy(NULL
, 0, (CFDictionaryRef
)value
);
856 CFDictionaryApplyFunction(proxy
, mergeDict
, new_proxy
);
858 // if we've already seen the State: key
859 new_proxy
= CFDictionaryCreateMutableCopy(NULL
, 0, proxy
);
860 CFDictionaryApplyFunction((CFDictionaryRef
)value
, mergeDict
, new_proxy
);
862 CFDictionarySetValue(state_dict
, kSCEntNetProxies
, new_proxy
);
863 CFRelease(new_proxy
);
865 CFDictionarySetValue(state_dict
, kSCEntNetProxies
, (CFDictionaryRef
)value
);
868 CFDictionarySetValue(state_dict
, entity_id
, (CFDictionaryRef
)value
);
871 CFDictionarySetValue((CFMutableDictionaryRef
)context
, service_id
, state_dict
);
872 CFRelease(state_dict
);
873 CFRelease(components
);
879 main(int argc
, char **argv
)
881 CFDictionaryRef entities
;
883 CFDictionaryRef newProxy
= NULL
;
885 CFMutableArrayRef patterns
;
886 CFStringRef primary
= NULL
;
887 CFMutableDictionaryRef primary_proxy
= NULL
;
888 CFArrayRef service_order
= NULL
;
889 CFMutableDictionaryRef service_state_dict
;
890 CFDictionaryRef setup_global_ipv4
;
891 CFDictionaryRef state_global_ipv4
;
892 SCDynamicStoreRef store
;
895 _sc_verbose
= (argc
> 1) ? TRUE
: FALSE
;
897 store
= SCDynamicStoreCreate(NULL
, CFSTR("TEST"), NULL
, NULL
);
899 // get IPv4, IPv6, and Proxies entities
900 patterns
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
901 pattern
= SCDynamicStoreKeyCreateNetworkServiceEntity(NULL
,
902 kSCDynamicStoreDomainState
,
905 CFArrayAppendValue(patterns
, pattern
);
907 pattern
= SCDynamicStoreKeyCreateNetworkServiceEntity(NULL
,
908 kSCDynamicStoreDomainState
,
911 CFArrayAppendValue(patterns
, pattern
);
913 pattern
= SCDynamicStoreKeyCreateNetworkServiceEntity(NULL
,
914 kSCDynamicStoreDomainSetup
,
917 CFArrayAppendValue(patterns
, pattern
);
919 pattern
= SCDynamicStoreKeyCreateNetworkServiceEntity(NULL
,
920 kSCDynamicStoreDomainState
,
923 CFArrayAppendValue(patterns
, pattern
);
925 entities
= SCDynamicStoreCopyMultiple(store
, NULL
, patterns
);
928 service_state_dict
= CFDictionaryCreateMutable(NULL
,
930 &kCFTypeDictionaryKeyCallBacks
,
931 &kCFTypeDictionaryValueCallBacks
);
932 CFDictionaryApplyFunction(entities
, split
, service_state_dict
);
935 // get primary service ID
936 key
= SCDynamicStoreKeyCreateNetworkGlobalEntity(NULL
,
937 kSCDynamicStoreDomainState
,
939 state_global_ipv4
= SCDynamicStoreCopyValue(store
, key
);
941 if (state_global_ipv4
!= NULL
) {
942 primary
= CFDictionaryGetValue(state_global_ipv4
, kSCDynamicStorePropNetPrimaryService
);
943 if (primary
!= NULL
) {
944 CFDictionaryRef service_dict
;
946 // get proxy configuration for primary service
947 service_dict
= CFDictionaryGetValue(service_state_dict
, primary
);
948 if (service_dict
!= NULL
) {
949 CFDictionaryRef service_proxy
;
951 service_proxy
= CFDictionaryGetValue(service_dict
, kSCEntNetProxies
);
952 if (service_proxy
!= NULL
) {
953 primary_proxy
= CFDictionaryCreateMutableCopy(NULL
, 0, service_proxy
);
954 CFDictionaryRemoveValue(primary_proxy
, kSCPropInterfaceName
);
961 key
= SCDynamicStoreKeyCreateNetworkGlobalEntity(NULL
,
962 kSCDynamicStoreDomainSetup
,
964 setup_global_ipv4
= SCDynamicStoreCopyValue(store
, key
);
966 if (setup_global_ipv4
!= NULL
) {
967 service_order
= CFDictionaryGetValue(setup_global_ipv4
, kSCPropNetServiceOrder
);
970 // update proxy configuration
971 proxy_configuration_init(CFBundleGetMainBundle());
972 newProxy
= proxy_configuration_update(primary_proxy
,
976 if (newProxy
!= NULL
) {
977 SCPrint(TRUE
, stdout
, CFSTR("%@\n"), newProxy
);
982 if (setup_global_ipv4
!= NULL
) CFRelease(setup_global_ipv4
);
983 if (state_global_ipv4
!= NULL
) CFRelease(state_global_ipv4
);
984 CFRelease(service_state_dict
);