2 * Copyright (c) 2000-2008, 2010, 2012-2016 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 * April 2, 2004 Allan Nathanson <ajn@apple.com>
28 * - use SCPreference notification APIs
30 * June 24, 2001 Allan Nathanson <ajn@apple.com>
31 * - update to public SystemConfiguration.framework APIs
33 * November 10, 2000 Allan Nathanson <ajn@apple.com>
38 #include <TargetConditionals.h>
40 #include <sys/types.h>
45 #define SC_LOG_HANDLE __log_PreferencesMonitor()
46 #include <SystemConfiguration/SystemConfiguration.h>
47 #include <SystemConfiguration/SCPrivate.h>
48 #include <SystemConfiguration/SCValidation.h>
53 static SCPreferencesRef prefs
= NULL
;
54 static SCDynamicStoreRef store
= NULL
;
56 /* preferences "initialization" globals */
57 static CFStringRef initKey
= NULL
;
58 static CFRunLoopSourceRef initRls
= NULL
;
60 /* SCDynamicStore (Setup:) */
61 static CFMutableDictionaryRef currentPrefs
; /* current prefs */
62 static CFMutableDictionaryRef newPrefs
; /* new prefs */
63 static CFMutableArrayRef unchangedPrefsKeys
; /* new prefs keys which match current */
64 static CFMutableArrayRef removedPrefsKeys
; /* old prefs keys to be removed */
66 static Boolean rofs
= FALSE
;
67 static Boolean restorePrefs
= FALSE
;
69 #define MY_PLUGIN_NAME "PreferencesMonitor"
70 #define MY_PLUGIN_ID CFSTR("com.apple.SystemConfiguration." MY_PLUGIN_NAME)
74 __log_PreferencesMonitor()
76 static os_log_t log
= NULL
;
79 log
= os_log_create("com.apple.SystemConfiguration", "PreferencesMonitor");
90 CFStringRef currentModel
= NULL
;
91 CFMutableStringRef modelPrefixStr
= NULL
;
92 CFArrayRef keyList
= NULL
;
95 Boolean modified
= FALSE
;
96 int sc_status
= kSCStatusFailed
;
99 ok
= SCPreferencesLock(prefs
, TRUE
);
104 sc_status
= SCError();
105 if (sc_status
== kSCStatusStale
) {
106 SCPreferencesSynchronize(prefs
);
108 SC_log(LOG_NOTICE
, "Could not acquire network configuration lock: %s",
109 SCErrorString(sc_status
));
114 keyList
= SCPreferencesCopyKeyList(prefs
);
115 if (keyList
== NULL
) {
119 currentModel
= _SC_hw_model(FALSE
);
120 if (currentModel
== NULL
) {
124 /* Create "model:" string for prefix-check */
125 modelPrefixStr
= CFStringCreateMutableCopy(NULL
, 0, currentModel
);
126 CFStringAppend(modelPrefixStr
, CFSTR(":"));
128 keyListCount
= CFArrayGetCount(keyList
);
129 for (idx
= 0; idx
< keyListCount
; idx
++) {
130 CFStringRef existingKey
= CFArrayGetValueAtIndex(keyList
, idx
);
132 CFArrayRef splitKey
= NULL
;
133 CFPropertyListRef value
;
135 if (isA_CFString(existingKey
) == NULL
) {
139 if (!CFStringHasPrefix(existingKey
, modelPrefixStr
)) {
143 splitKey
= CFStringCreateArrayBySeparatingStrings(NULL
, existingKey
, CFSTR(":"));
144 key
= CFArrayGetValueAtIndex(splitKey
, 1);
145 value
= SCPreferencesGetValue(prefs
, existingKey
);
146 SCPreferencesSetValue(prefs
, key
, value
);
147 SCPreferencesRemoveValue(prefs
, existingKey
);
153 SCPreferencesRef ni_prefs
= NULL
;
154 ni_prefs
= SCPreferencesCreate(NULL
, MY_PLUGIN_ID
, CFSTR("NetworkInterfaces.plist"));
155 if (ni_prefs
== NULL
) {
159 ok
= _SCNetworkConfigurationCheckValidityWithPreferences(prefs
, ni_prefs
, NULL
);
162 //Commit the changes only if prefs files valid
164 if (!SCPreferencesCommitChanges(prefs
)) {
165 if (SCError() != EROFS
) {
166 SC_log(LOG_NOTICE
, "SCPreferencesCommitChanges() failed: %s",
167 SCErrorString(SCError()));
173 (void) SCPreferencesApplyChanges(prefs
);
178 (void) SCPreferencesUnlock(prefs
);
180 if (keyList
!= NULL
) {
183 if (modelPrefixStr
!= NULL
) {
184 CFRelease(modelPrefixStr
);
191 establishNewPreferences()
193 SCNetworkSetRef current
= NULL
;
194 CFStringRef new_model
;
196 int sc_status
= kSCStatusFailed
;
197 SCNetworkSetRef set
= NULL
;
198 Boolean updated
= FALSE
;
201 ok
= SCPreferencesLock(prefs
, TRUE
);
206 sc_status
= SCError();
207 if (sc_status
== kSCStatusStale
) {
208 SCPreferencesSynchronize(prefs
);
210 SC_log(LOG_NOTICE
, "Could not acquire network configuration lock: %s",
211 SCErrorString(sc_status
));
216 /* Ensure that the preferences has the new model */
217 new_model
= _SC_hw_model(FALSE
);
219 /* Need to regenerate the new configuration for new model */
220 if (new_model
!= NULL
) {
221 CFStringRef old_model
;
223 old_model
= SCPreferencesGetValue(prefs
, MODEL
);
224 if ((old_model
!= NULL
) && !_SC_CFEqual(old_model
, new_model
)) {
229 keys
= SCPreferencesCopyKeyList(prefs
);
230 count
= (keys
!= NULL
) ? CFArrayGetCount(keys
) : 0;
232 for (index
= 0; index
< count
; index
++) {
233 CFStringRef existing_key
;
235 existing_key
= CFArrayGetValueAtIndex(keys
, index
);
236 if (isA_CFString(existing_key
) != NULL
) {
238 CFPropertyListRef value
;
240 /* If it already contains a Model
241 or if it already contains a MODEL:KEY key skip it*/
242 if (CFEqual(existing_key
, MODEL
)
243 || CFStringFind(existing_key
, CFSTR(":"), 0).location
248 value
= SCPreferencesGetValue(prefs
, existing_key
);
250 /* Create a new key as OLD_MODEL:OLD_KEY */
251 new_key
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@:%@"),
252 old_model
, existing_key
);
253 SCPreferencesSetValue(prefs
, new_key
, value
);
254 if (!CFEqual(existing_key
, kSCPrefSystem
)) {
255 /* preserve existing host names */
256 SCPreferencesRemoveValue(prefs
, existing_key
);
266 /* Set the new model */
267 SCPreferencesSetValue(prefs
, MODEL
, new_model
);
270 current
= SCNetworkSetCopyCurrent(prefs
);
271 if (current
!= NULL
) {
276 set
= _SCNetworkSetCreateDefault(prefs
);
279 sc_status
= SCError();
284 ok
= SCNetworkSetEstablishDefaultConfiguration(set
);
286 sc_status
= SCError();
293 ok
= SCPreferencesCommitChanges(prefs
);
295 SC_log(LOG_NOTICE
, "New network configuration saved");
298 sc_status
= SCError();
299 if (sc_status
== EROFS
) {
300 /* a read-only fileysstem is OK */
303 /* ... but we don't want to synchronize */
308 /* apply (committed or temporary/read-only) changes */
309 (void) SCPreferencesApplyChanges(prefs
);
310 } else if ((current
== NULL
) && (set
!= NULL
)) {
311 (void) SCNetworkSetRemove(set
);
315 SC_log(LOG_NOTICE
, "Could not establish network configuration: %s",
316 SCErrorString(sc_status
));
319 (void)SCPreferencesUnlock(prefs
);
320 if (set
!= NULL
) CFRelease(set
);
326 quiet(Boolean
*timeout
)
328 CFDictionaryRef dict
;
329 Boolean _quiet
= FALSE
;
330 Boolean _timeout
= FALSE
;
332 // keep the static analyzer happy
333 assert(initKey
!= NULL
);
336 dict
= SCDynamicStoreCopyValue(store
, initKey
);
338 if (isA_CFDictionary(dict
)) {
339 if (CFDictionaryContainsKey(dict
, CFSTR("*QUIET*"))) {
342 if (CFDictionaryContainsKey(dict
, CFSTR("*TIMEOUT*"))) {
349 if (timeout
!= NULL
) {
359 if ((initKey
== NULL
) || (initRls
== NULL
)) {
363 (void) SCDynamicStoreSetNotificationKeys(store
, NULL
, NULL
);
365 CFRunLoopSourceInvalidate(initRls
);
382 initKey
= SCDynamicStoreKeyCreate(NULL
,
383 CFSTR("%@" "InterfaceNamer"),
384 kSCDynamicStoreDomainPlugin
);
386 initRls
= SCDynamicStoreCreateRunLoopSource(NULL
, store
, 0);
387 CFRunLoopAddSource(CFRunLoopGetCurrent(), initRls
, kCFRunLoopDefaultMode
);
389 keys
= CFArrayCreate(NULL
, (const void **)&initKey
, 1, &kCFTypeArrayCallBacks
);
390 ok
= SCDynamicStoreSetNotificationKeys(store
, keys
, NULL
);
393 SC_log(LOG_NOTICE
, "SCDynamicStoreSetNotificationKeys() failed: %s", SCErrorString(SCError()));
403 previousConfigurationAvailable()
405 CFStringRef backupKey
= NULL
;
406 CFStringRef currentModel
= NULL
;
407 CFPropertyListRef properties
= NULL
;
409 currentModel
= _SC_hw_model(FALSE
);
410 if (currentModel
== NULL
) {
414 /* Currently relying only if a backup of "Sets" is present */
415 backupKey
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@:Sets"), currentModel
);
416 properties
= SCPreferencesGetValue(prefs
, backupKey
);
417 CFRelease(backupKey
);
419 return (properties
!= NULL
);
423 watchQuietCallback(SCDynamicStoreRef store
, CFArrayRef changedKeys
, void *info
)
426 Boolean _timeout
= FALSE
;
428 _quiet
= quiet(&_timeout
);
430 #if !TARGET_OS_IPHONE
432 #endif /* !TARGET_OS_IPHONE */
437 if (_quiet
|| _timeout
) {
438 static int logged
= 0;
440 (void) establishNewPreferences();
443 (void) restorePreferences();
444 restorePrefs
= FALSE
;
447 if (_timeout
&& (logged
++ == 0)) {
448 SC_log(LOG_ERR
, "Network configuration creation timed out waiting for IORegistry");
457 updateCache(const void *key
, const void *value
, void *context
)
459 CFStringRef configKey
= (CFStringRef
)key
;
460 CFPropertyListRef configData
= (CFPropertyListRef
)value
;
461 CFPropertyListRef cacheData
;
464 cacheData
= CFDictionaryGetValue(currentPrefs
, configKey
);
467 if (CFEqual(cacheData
, configData
)) {
469 * if the old & new property list values have
470 * not changed then we don't need to update
473 CFArrayAppendValue(unchangedPrefsKeys
, configKey
);
477 /* in any case, this key should not be removed */
478 i
= CFArrayGetFirstIndexOfValue(removedPrefsKeys
,
479 CFRangeMake(0, CFArrayGetCount(removedPrefsKeys
)),
481 if (i
!= kCFNotFound
) {
482 CFArrayRemoveValueAtIndex(removedPrefsKeys
, i
);
490 flatten(SCPreferencesRef prefs
,
492 CFDictionaryRef base
)
494 CFDictionaryRef subset
;
496 CFMutableDictionaryRef myDict
;
503 if (!CFDictionaryGetValueIfPresent(base
, kSCResvLink
, (const void **)&link
)) {
504 /* if this dictionary is not linked */
507 /* if __LINK__ key is present */
508 subset
= SCPreferencesPathGetValue(prefs
, link
);
510 /* if error with link */
511 SC_log(LOG_NOTICE
, "SCPreferencesPathGetValue(,%@,) failed: %s",
513 SCErrorString(SCError()));
518 if (CFDictionaryContainsKey(subset
, kSCResvInactive
)) {
519 /* if __INACTIVE__ key is present */
523 myKey
= CFStringCreateWithFormat(NULL
,
526 kSCDynamicStoreDomainSetup
,
529 myDict
= (CFMutableDictionaryRef
)CFDictionaryGetValue(newPrefs
, myKey
);
531 myDict
= CFDictionaryCreateMutableCopy(NULL
,
533 (CFDictionaryRef
)myDict
);
535 myDict
= CFDictionaryCreateMutable(NULL
,
537 &kCFTypeDictionaryKeyCallBacks
,
538 &kCFTypeDictionaryValueCallBacks
);
541 nKeys
= CFDictionaryGetCount(subset
);
543 keys
= CFAllocatorAllocate(NULL
, nKeys
* sizeof(CFStringRef
) , 0);
544 vals
= CFAllocatorAllocate(NULL
, nKeys
* sizeof(CFPropertyListRef
), 0);
545 CFDictionaryGetKeysAndValues(subset
, keys
, vals
);
546 for (i
= 0; i
< nKeys
; i
++) {
547 if (CFGetTypeID((CFTypeRef
)vals
[i
]) != CFDictionaryGetTypeID()) {
548 /* add this key/value to the current dictionary */
549 CFDictionarySetValue(myDict
, keys
[i
], vals
[i
]);
553 /* flatten [sub]dictionaries */
554 subKey
= CFStringCreateWithFormat(NULL
,
558 CFEqual(key
, CFSTR("/")) ? "" : "/",
560 flatten(prefs
, subKey
, vals
[i
]);
564 CFAllocatorDeallocate(NULL
, keys
);
565 CFAllocatorDeallocate(NULL
, vals
);
568 if (CFDictionaryGetCount(myDict
) > 0) {
569 /* add this dictionary to the new preferences */
570 CFDictionarySetValue(newPrefs
, myKey
, myDict
);
581 updateSCDynamicStore(SCPreferencesRef prefs
)
583 CFStringRef current
= NULL
;
584 CFDateRef date
= NULL
;
585 CFMutableDictionaryRef dict
= NULL
;
586 CFDictionaryRef global
= NULL
;
591 CFMutableArrayRef patterns
;
592 CFDictionaryRef set
= NULL
;
595 * initialize old preferences, new preferences, an array
596 * of keys which have not changed, and an array of keys
597 * to be removed (cleaned up).
600 patterns
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
601 pattern
= CFStringCreateWithFormat(NULL
,
604 kSCDynamicStoreDomainSetup
);
605 CFArrayAppendValue(patterns
, pattern
);
606 dict
= (CFMutableDictionaryRef
)SCDynamicStoreCopyMultiple(store
, NULL
, patterns
);
610 currentPrefs
= CFDictionaryCreateMutableCopy(NULL
, 0, dict
);
613 currentPrefs
= CFDictionaryCreateMutable(NULL
,
615 &kCFTypeDictionaryKeyCallBacks
,
616 &kCFTypeDictionaryValueCallBacks
);
619 unchangedPrefsKeys
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
621 i
= CFDictionaryGetCount(currentPrefs
);
623 const void **currentKeys
;
626 currentKeys
= CFAllocatorAllocate(NULL
, i
* sizeof(CFStringRef
), 0);
627 CFDictionaryGetKeysAndValues(currentPrefs
, currentKeys
, NULL
);
628 array
= CFArrayCreate(NULL
, currentKeys
, i
, &kCFTypeArrayCallBacks
);
629 removedPrefsKeys
= CFArrayCreateMutableCopy(NULL
, 0, array
);
631 CFAllocatorDeallocate(NULL
, currentKeys
);
633 removedPrefsKeys
= CFArrayCreateMutable(NULL
, 0, &kCFTypeArrayCallBacks
);
637 * The "newPrefs" dictionary will contain the new / updated
638 * configuration which will be written to the configuration cache.
640 newPrefs
= CFDictionaryCreateMutable(NULL
,
642 &kCFTypeDictionaryKeyCallBacks
,
643 &kCFTypeDictionaryValueCallBacks
);
646 * create status dictionary associated with current configuration
647 * information including:
648 * - current set "name" to cache
649 * - time stamp indicating when the cache preferences were
652 dict
= CFDictionaryCreateMutable(NULL
,
654 &kCFTypeDictionaryKeyCallBacks
,
655 &kCFTypeDictionaryValueCallBacks
);
656 date
= CFDateCreate(NULL
, CFAbsoluteTimeGetCurrent());
661 keys
= SCPreferencesCopyKeyList(prefs
);
662 if ((keys
== NULL
) || (CFArrayGetCount(keys
) == 0)) {
663 SC_log(LOG_NOTICE
, "updateConfiguration(): no preferences");
668 * get "global" system preferences
670 global
= SCPreferencesGetValue(prefs
, kSCPrefSystem
);
672 /* if no global preferences are defined */
676 if (!isA_CFDictionary(global
)) {
677 SC_log(LOG_NOTICE
, "updateConfiguration(): %@ is not a dictionary",
682 /* flatten property list */
683 flatten(prefs
, CFSTR("/"), global
);
688 * get current set name
690 current
= SCPreferencesGetValue(prefs
, kSCPrefCurrentSet
);
692 /* if current set not defined */
696 if (!isA_CFString(current
)) {
697 SC_log(LOG_NOTICE
, "updateConfiguration(): %@ is not a string",
705 set
= SCPreferencesPathGetValue(prefs
, current
);
707 /* if error with path */
708 SC_log(LOG_NOTICE
, "%@ value (%@) not valid",
714 if (!isA_CFDictionary(set
)) {
715 SC_log(LOG_NOTICE
, "updateConfiguration(): %@ is not a dictionary",
720 /* flatten property list */
721 flatten(prefs
, CFSTR("/"), set
);
723 CFDictionarySetValue(dict
, kSCDynamicStorePropSetupCurrentSet
, current
);
727 /* add last updated time stamp */
728 CFDictionarySetValue(dict
, kSCDynamicStorePropSetupLastUpdated
, date
);
731 CFDictionarySetValue(newPrefs
, kSCDynamicStoreDomainSetup
, dict
);
733 /* compare current and new preferences */
734 CFDictionaryApplyFunction(newPrefs
, updateCache
, NULL
);
736 /* remove those keys which have not changed from the update */
737 n
= CFArrayGetCount(unchangedPrefsKeys
);
738 for (i
= 0; i
< n
; i
++) {
741 key
= CFArrayGetValueAtIndex(unchangedPrefsKeys
, i
);
742 CFDictionaryRemoveValue(newPrefs
, key
);
745 /* Update the dynamic store */
747 if (!SCDynamicStoreSetMultiple(store
, newPrefs
, removedPrefsKeys
, NULL
)) {
748 SC_log(LOG_NOTICE
, "SCDynamicStoreSetMultiple() failed: %s", SCErrorString(SCError()));
751 SC_log(LOG_DEBUG
, "SCDynamicStore\nset: %@\nremove: %@",
756 CFRelease(currentPrefs
);
758 CFRelease(unchangedPrefsKeys
);
759 CFRelease(removedPrefsKeys
);
760 if (dict
) CFRelease(dict
);
761 if (date
) CFRelease(date
);
762 if (keys
) CFRelease(keys
);
768 updateConfiguration(SCPreferencesRef prefs
,
769 SCPreferencesNotification notificationType
,
772 os_activity_t activity
;
774 activity
= os_activity_create("processing [SC] preferences.plist changes",
776 OS_ACTIVITY_FLAG_DEFAULT
);
777 os_activity_scope(activity
);
779 #if !TARGET_OS_IPHONE
780 if ((notificationType
& kSCPreferencesNotificationCommit
) == kSCPreferencesNotificationCommit
) {
781 SCNetworkSetRef current
;
783 current
= SCNetworkSetCopyCurrent(prefs
);
784 if (current
!= NULL
) {
785 /* network configuration available, disable template creation */
790 #endif /* !TARGET_OS_IPHONE */
792 if ((notificationType
& kSCPreferencesNotificationApply
) != kSCPreferencesNotificationApply
) {
796 SC_log(LOG_INFO
, "updating configuration");
798 /* update SCDynamicStore (Setup:) */
799 updateSCDynamicStore(prefs
);
801 /* finished with current prefs, wait for changes */
803 SCPreferencesSynchronize(prefs
);
808 os_release(activity
);
816 prime_PreferencesMonitor()
818 SC_log(LOG_DEBUG
, "prime() called");
820 /* load the initial configuration from the database */
821 updateConfiguration(prefs
, kSCPreferencesNotificationApply
, (void *)store
);
829 load_PreferencesMonitor(CFBundleRef bundle
, Boolean bundleVerbose
)
831 Boolean initPrefs
= TRUE
;
833 SC_log(LOG_DEBUG
, "load() called");
834 SC_log(LOG_DEBUG
, " bundle ID = %@", CFBundleGetIdentifier(bundle
));
836 /* open a SCDynamicStore session to allow cache updates */
837 store
= SCDynamicStoreCreate(NULL
,
838 CFSTR("PreferencesMonitor.bundle"),
842 SC_log(LOG_NOTICE
, "SCDynamicStoreCreate() failed: %s", SCErrorString(SCError()));
846 /* open a SCPreferences session */
848 prefs
= SCPreferencesCreate(NULL
, CFSTR("PreferencesMonitor.bundle"), NULL
);
850 prefs
= SCPreferencesCreate(NULL
, CFSTR("PreferencesMonitor.bundle"), CFSTR("/tmp/preferences.plist"));
853 Boolean need_update
= FALSE
;
854 CFStringRef new_model
;
856 new_model
= _SC_hw_model(FALSE
);
858 /* Need to regenerate the new configuration for new model */
859 if (new_model
!= NULL
) {
860 CFStringRef old_model
;
862 old_model
= SCPreferencesGetValue(prefs
, MODEL
);
863 if (old_model
!= NULL
&& !_SC_CFEqual(old_model
, new_model
)) {
866 restorePrefs
= previousConfigurationAvailable();
871 SCNetworkSetRef current
;
873 current
= SCNetworkSetCopyCurrent(prefs
);
874 if (current
!= NULL
) {
875 /* network configuration available, disable template creation */
881 SC_log(LOG_NOTICE
, "SCPreferencesCreate() failed: %s", SCErrorString(SCError()));
886 * register for change notifications.
888 if (!SCPreferencesSetCallback(prefs
, updateConfiguration
, NULL
)) {
889 SC_log(LOG_NOTICE
, "SCPreferencesSetCallBack() failed: %s", SCErrorString(SCError()));
893 if (!SCPreferencesScheduleWithRunLoop(prefs
, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode
)) {
894 SC_log(LOG_NOTICE
, "SCPreferencesScheduleWithRunLoop() failed: %s", SCErrorString(SCError()));
899 * if no preferences, initialize with a template (now or
900 * when IOKit has quiesced).
904 watchQuietCallback(store
, NULL
, NULL
);
912 if (store
!= NULL
) CFRelease(store
);
913 if (prefs
!= NULL
) CFRelease(prefs
);
921 main(int argc
, char **argv
)
924 _sc_verbose
= (argc
> 1) ? TRUE
: FALSE
;
926 load_PreferencesMonitor(CFBundleGetMainBundle(), (argc
> 1) ? TRUE
: FALSE
);
927 prime_PreferencesMonitor();