2 * Copyright (c) 2005-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@
24 #ifndef _SCNETWORKCONFIGURATIONPRIVATE_H
25 #define _SCNETWORKCONFIGURATIONPRIVATE_H
27 #include <Availability.h>
28 #include <TargetConditionals.h>
29 #include <sys/cdefs.h>
30 #include <CoreFoundation/CoreFoundation.h>
31 #include <SystemConfiguration/SystemConfiguration.h>
32 #include <SystemConfiguration/SCValidation.h>
33 #include <IOKit/IOKitLib.h>
36 @header SCNetworkConfigurationPrivate
43 @group Interface configuration
47 #pragma mark SCNetworkInterface configuration (typedefs, consts, enums)
50 @const kSCNetworkInterfaceTypeBridge
52 extern const CFStringRef kSCNetworkInterfaceTypeBridge
__OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
56 @const kSCNetworkInterfaceTypeLoopback
58 extern const CFStringRef kSCNetworkInterfaceTypeLoopback
__OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
61 @const kSCNetworkInterfaceLoopback
62 @discussion A network interface representing the loopback
65 extern const SCNetworkInterfaceRef kSCNetworkInterfaceLoopback
__OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
68 @const kSCNetworkInterfaceTypeVPN
70 extern const CFStringRef kSCNetworkInterfaceTypeVPN
__OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
73 @group Interface configuration (Bridge)
77 @typedef SCBridgeInterfaceRef
78 @discussion This is the type of a reference to an object that represents
81 typedef SCNetworkInterfaceRef SCBridgeInterfaceRef
;
83 typedef CF_ENUM(uint32_t, SCNetworkServicePrimaryRank
) {
84 kSCNetworkServicePrimaryRankDefault
= 0,
85 kSCNetworkServicePrimaryRankFirst
= 1,
86 kSCNetworkServicePrimaryRankLast
= 2,
87 kSCNetworkServicePrimaryRankNever
= 3,
88 kSCNetworkServicePrimaryRankScoped
= 4
92 #pragma mark SCNetworkInterface configuration (SPI)
95 @group Interface configuration
98 static __inline__ CFTypeRef
99 isA_SCNetworkInterface(CFTypeRef obj
)
101 return (isA_CFType(obj
, SCNetworkInterfaceGetTypeID()));
104 static __inline__ CFTypeRef
105 isA_SCBondInterface(CFTypeRef obj
)
107 CFStringRef interfaceType
;
109 if (!isA_SCNetworkInterface(obj
)) {
110 // if not an SCNetworkInterface
114 interfaceType
= SCNetworkInterfaceGetInterfaceType((SCNetworkInterfaceRef
)obj
);
115 if (!CFEqual(interfaceType
, kSCNetworkInterfaceTypeBond
)) {
123 static __inline__ CFTypeRef
124 isA_SCBridgeInterface(CFTypeRef obj
)
126 CFStringRef interfaceType
;
128 if (!isA_SCNetworkInterface(obj
)) {
129 // if not an SCNetworkInterface
133 interfaceType
= SCNetworkInterfaceGetInterfaceType((SCNetworkInterfaceRef
)obj
);
134 if (!CFEqual(interfaceType
, kSCNetworkInterfaceTypeBridge
)) {
142 static __inline__ CFTypeRef
143 isA_SCVLANInterface(CFTypeRef obj
)
145 CFStringRef interfaceType
;
147 if (!isA_SCNetworkInterface(obj
)) {
148 // if not an SCNetworkInterface
152 interfaceType
= SCNetworkInterfaceGetInterfaceType((SCNetworkInterfaceRef
)obj
);
153 if (!CFEqual(interfaceType
, kSCNetworkInterfaceTypeVLAN
)) {
162 @function _SCNetworkInterfaceCompare
163 @discussion Compares two SCNetworkInterface objects.
164 @param val1 The SCNetworkInterface object.
165 @param val2 The SCNetworkInterface object.
166 @param context Not used.
167 @result A comparison result.
170 _SCNetworkInterfaceCompare (const void *val1
,
172 void *context
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
175 @function _SCNetworkInterfaceCopyActive
176 @discussion Creates an SCNetworkInterface and associated with interface name
177 and SCDynamicStoreRef
178 @param the interface name
179 @param the SCDynamicStoreRef
180 @result the SCNetworkInterface
182 SCNetworkInterfaceRef
183 _SCNetworkInterfaceCopyActive (SCDynamicStoreRef store
,
184 CFStringRef bsdName
) __OSX_AVAILABLE_STARTING(__MAC_10_8
,__IPHONE_5_0
);
187 @function _SCNetworkInterfaceCopyAllWithPreferences
188 Returns all network capable interfaces on the system.
189 @param prefs The "preferences" session.
190 @result The list of interfaces on the system.
191 You must release the returned value.
193 CFArrayRef
/* of SCNetworkInterfaceRef's */
194 _SCNetworkInterfaceCopyAllWithPreferences (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
/*SPI*/);
197 @function _SCNetworkInterfaceCopyBTPANInterface
198 @discussion Returns the SCNetworkInterface associated with the BT-PAN interface
199 @result The BT-PAN interface; NULL if the interface is not (yet) known.
201 SCNetworkInterfaceRef
202 _SCNetworkInterfaceCopyBTPANInterface (void) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_NA
);
205 @function _SCNetworkInterfaceCopySlashDevPath
206 @discussion Returns the /dev pathname for the interface.
207 @param interface The network interface.
208 @result The /dev pathname associated with the interface (e.g. "/dev/modem");
209 NULL if no path is available.
212 _SCNetworkInterfaceCopySlashDevPath (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_3_0
);
214 #define kIncludeNoVirtualInterfaces 0x0
215 #define kIncludeVLANInterfaces 0x1
216 #define kIncludeBondInterfaces 0x2
217 #define kIncludeBridgeInterfaces 0x4
218 #define kIncludeAllVirtualInterfaces 0xffffffff
221 @function _SCNetworkInterfaceCreateWithBSDName
222 @discussion Create a new network interface associated with the provided
223 BSD interface name. This API supports Ethernet, FireWire, and
224 IEEE 802.11 interfaces.
225 @param bsdName The BSD interface name.
226 @param flags Indicates whether virtual (Bond, Bridge, VLAN)
227 network interfaces should be included.
228 @result A reference to the new SCNetworkInterface.
229 You must release the returned value.
231 SCNetworkInterfaceRef
232 _SCNetworkInterfaceCreateWithBSDName (CFAllocatorRef allocator
,
234 UInt32 flags
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
237 @function _SCNetworkInterfaceCreateWithEntity
238 @discussion Create a new network interface associated with the provided
239 SCDynamicStore service entity dictionary.
240 @param interface_entity The entity dictionary.
241 @param service The network service.
242 @result A reference to the new SCNetworkInterface.
243 You must release the returned value.
245 SCNetworkInterfaceRef
246 _SCNetworkInterfaceCreateWithEntity (CFAllocatorRef allocator
,
247 CFDictionaryRef interface_entity
,
248 SCNetworkServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
251 @function _SCNetworkInterfaceCreateWithIONetworkInterfaceObject
252 @discussion Create a new network interface associated with the provided
253 IORegistry "IONetworkInterface" object.
254 @param if_obj The IONetworkInterface object.
255 @result A reference to the new SCNetworkInterface.
256 You must release the returned value.
258 SCNetworkInterfaceRef
259 _SCNetworkInterfaceCreateWithIONetworkInterfaceObject (io_object_t if_obj
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
262 @function SCNetworkInterfaceGetPrimaryRank
263 @discussion We allow caller to retrieve the rank on an interface.
264 @param the interface to get the rank
265 @result SCNetworkServicePrimaryRank
267 SCNetworkServicePrimaryRank
268 SCNetworkInterfaceGetPrimaryRank (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_8
,__IPHONE_5_0
);
271 @function SCNetworkInterfaceSetPrimaryRank
272 @discussion We allow caller to set an assertion on an interface.
273 The rank assertion lives as long as the SCNetworkInterfaceRef
275 @param the interface to set the rank assertion
276 @param the new rank to be set
277 @result TRUE if operation is successful; FALSE if an error was encountered.
280 SCNetworkInterfaceSetPrimaryRank (SCNetworkInterfaceRef interface
,
281 SCNetworkServicePrimaryRank newRank
) __OSX_AVAILABLE_STARTING(__MAC_10_8
,__IPHONE_5_0
);
283 #define kSCNetworkInterfaceConfigurationActionKey CFSTR("New Interface Detected Action")
284 #define kSCNetworkInterfaceConfigurationActionValueNone CFSTR("None")
285 #define kSCNetworkInterfaceConfigurationActionValuePrompt CFSTR("Prompt")
286 #define kSCNetworkInterfaceConfigurationActionValueConfigure CFSTR("Configure")
288 #define kSCNetworkInterfaceNetworkConfigurationOverridesKey CFSTR("NetworkConfigurationOverrides")
289 #define kSCNetworkInterfaceHiddenConfigurationKey CFSTR("HiddenConfiguration")
290 #define kSCNetworkInterfaceHiddenPortKey CFSTR("HiddenPort") /* for serial ports */
291 #define kSCNetworkInterfaceHiddenInterfaceKey CFSTR("HiddenInterface") /* for network interfaces */
293 // IORegistry property to indicate that a [WWAN] interface is not yet ready
294 #define kSCNetworkInterfaceInitializingKey CFSTR("Initializing")
297 @function _SCNetworkInterfaceCopyInterfaceInfo
298 @discussion Returns interface details
299 @param interface The network interface.
300 @result A dictionary with details about the network interface.
303 _SCNetworkInterfaceCopyInterfaceInfo (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_3_0
);
306 @function _SCNetworkInterfaceGetConfigurationAction
307 @discussion Returns a user-notification / auto-configuration action for the interface.
308 @param interface The network interface.
309 @result The user-notification / auto-configuration action;
310 NULL if the default action should be used.
313 _SCNetworkInterfaceGetConfigurationAction (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_2_0
);
316 @function _SCNetworkInterfaceGetHardwareAddress
317 @discussion Returns a link layer address for the interface.
318 @param interface The network interface.
319 @result The hardware (MAC) address for the interface.
320 NULL if no hardware address is available.
323 _SCNetworkInterfaceGetHardwareAddress (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
326 @function _SCNetworkInterfaceGetIOInterfaceNamePrefix
327 @discussion Returns the IOInterfaceNamePrefix for the interface.
328 @param interface The network interface.
329 @result The IOInterfaceNamePrefix associated with the interface;
330 NULL if no IOInterfaceNamePrefix is available.
333 _SCNetworkInterfaceGetIOInterfaceNamePrefix (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_8
,__IPHONE_6_0
);
336 @function _SCNetworkInterfaceGetIOInterfaceType
337 @discussion Returns the IOInterfaceType for the interface.
338 @param interface The network interface.
339 @result The IOInterfaceType associated with the interface
342 _SCNetworkInterfaceGetIOInterfaceType (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
345 @function _SCNetworkInterfaceGetIOInterfaceUnit
346 @discussion Returns the IOInterfaceUnit for the interface.
347 @param interface The network interface.
348 @result The IOInterfaceUnit associated with the interface;
349 NULL if no IOInterfaceUnit is available.
352 _SCNetworkInterfaceGetIOInterfaceUnit (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
355 @function _SCNetworkInterfaceGetIOPath
356 @discussion Returns the IOPath for the interface.
357 @param interface The network interface.
358 @result The IOPath associated with the interface;
359 NULL if no IOPath is available.
362 _SCNetworkInterfaceGetIOPath (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
365 @function _SCNetworkInterfaceGetIORegistryEntryID
366 @discussion Returns the IORegistry entry ID for the interface.
367 @param interface The network interface.
368 @result The IORegistry entry ID associated with the interface;
369 Zero if no entry ID is available.
372 _SCNetworkInterfaceGetIORegistryEntryID (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_8
,__IPHONE_5_0
);
375 @function _SCNetworkInterfaceIsBluetoothPAN
376 @discussion Identifies if a network interface is a Bluetooth PAN (GN) device.
377 @param interface The network interface.
378 @result TRUE if the interface is a Bluetooth PAN device.
381 _SCNetworkInterfaceIsBluetoothPAN (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_3_0
);
384 @function _SCNetworkInterfaceIsBluetoothPAN_NAP
385 @discussion Identifies if a network interface is a Bluetooth PAN-NAP device.
386 @param interface The network interface.
387 @result TRUE if the interface is a Bluetooth PAN-NAP device.
390 _SCNetworkInterfaceIsBluetoothPAN_NAP (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
);
393 @function _SCNetworkInterfaceIsBluetoothP2P
394 @discussion Identifies if a network interface is a Bluetooth P2P (PAN-U) device.
395 @param interface The network interface.
396 @result TRUE if the interface is a Bluetooth P2P device.
399 _SCNetworkInterfaceIsBluetoothP2P (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
);
402 @function _SCNetworkInterfaceIsBuiltin
403 @discussion Identifies if a network interface is "built-in".
404 @param interface The network interface.
405 @result TRUE if the interface is "built-in".
408 _SCNetworkInterfaceIsBuiltin (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
411 @function _SCNetworkInterfaceIsHiddenConfiguration
412 @discussion Identifies if the configuration of a network interface should be
413 hidden from any user interface (e.g. the "Network" pref pane).
414 @param interface The network interface.
415 @result TRUE if the interface configuration should be hidden.
418 _SCNetworkInterfaceIsHiddenConfiguration (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
);
421 @function _SCNetworkInterfaceIsModemV92
422 @discussion Identifies if a modem network interface supports
424 @param interface The network interface.
425 @result TRUE if the interface is "v.92" modem.
428 _SCNetworkInterfaceIsModemV92 (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
431 @function _SCNetworkInterfaceIsTethered
432 @discussion Identifies if a network interface is an Apple tethered device (e.g. an iPhone).
433 @param interface The network interface.
434 @result TRUE if the interface is a tethered device.
437 _SCNetworkInterfaceIsTethered (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_3_0
);
440 @function _SCNetworkInterfaceIsThunderbolt
441 @discussion Identifies if a network interface is a Thunderbolt device
442 @param interface The network interface.
443 @result TRUE if the interface is a Thunderbolt device.
446 _SCNetworkInterfaceIsThunderbolt (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
);
449 @function _SCNetworkInterfaceIsPhysicalEthernet
450 @discussion Indicates whether a network interface is a real ethernet interface i.e. one with an ethernet PHY.
451 @param interface The network interface.
452 @result TRUE if the interface is a real ethernet interface.
455 _SCNetworkInterfaceIsPhysicalEthernet (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
);
458 @function _SCNetworkInterfaceForceConfigurationRefresh
459 @discussion Forces a configuration refresh of the
461 @param ifName Network interface name.
462 @result TRUE if the refresh was successfully posted.
465 _SCNetworkInterfaceForceConfigurationRefresh (CFStringRef ifName
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
468 @function SCNetworkInterfaceCopyCapability
469 @discussion For the specified network interface, returns information
470 about the currently requested capabilities, the active capabilities,
471 and the capabilities which are available.
472 @param interface The desired network interface.
473 @param capability The desired capability.
474 @result a CFTypeRef representing the current value of requested
476 NULL if the capability is not available for this
477 interface or if an error was encountered.
478 You must release the returned value.
481 SCNetworkInterfaceCopyCapability (SCNetworkInterfaceRef interface
,
482 CFStringRef capability
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
/*SPI*/);
485 @function SCNetworkInterfaceSetCapability
486 @discussion For the specified network interface, sets the requested
488 @param interface The desired network interface.
489 @param capability The desired capability.
490 @param newValue The new requested setting for the capability;
491 NULL to restore the default setting.
492 @result TRUE if the configuration was updated; FALSE if an error was encountered.
495 SCNetworkInterfaceSetCapability (SCNetworkInterfaceRef interface
,
496 CFStringRef capability
,
497 CFTypeRef newValue
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_5_0
/*SPI*/);
500 #pragma mark SCBondInterface configuration (SPIs)
503 @function _SCBondInterfaceCopyActive
504 @discussion Returns all Ethernet Bond interfaces on the system.
505 @result The list of SCBondInterface interfaces on the system.
506 You must release the returned value.
509 _SCBondInterfaceCopyActive (void) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
512 @function _SCBondInterfaceUpdateConfiguration
513 @discussion Updates the bond interface configuration.
514 @param prefs The "preferences" session.
515 @result TRUE if the bond interface configuration was updated.; FALSE if the
516 an error was encountered.
519 _SCBondInterfaceUpdateConfiguration (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
522 @function SCBondInterfaceGetMode
523 @discussion Return the mode for the given bond interface.
524 @param bond The bond interface to get the mode from.
525 @result A CFNumberRef containing the mode (IF_BOND_MODE_{LACP,STATIC}).
528 SCBondInterfaceGetMode (SCBondInterfaceRef bond
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
531 @function SCBondInterfaceSetMode
532 @discussion Set the mode on the bond interface.
533 @param bond The bond interface on which to adjust the mode.
534 @param mode The mode value (0=IF_BOND_MODE_LACP,1=IF_BOND_MODE_STATIC)
535 @result TRUE if operation succeeded.
538 SCBondInterfaceSetMode (SCBondInterfaceRef bond
,
539 CFNumberRef mode
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
542 #pragma mark SCBridgeInterface configuration (SPIs)
545 @function SCBridgeInterfaceCopyAll
546 @discussion Returns all bridge interfaces on the system.
547 @param prefs The "preferences" session.
548 @result The list of bridge interfaces on the system.
549 You must release the returned value.
551 CFArrayRef
/* of SCBridgeInterfaceRef's */
552 SCBridgeInterfaceCopyAll (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
555 @function SCBridgeInterfaceCopyAvailableMemberInterfaces
556 @discussion Returns all network capable devices on the system
557 that can be added to an bridge interface.
558 @param prefs The "preferences" session.
559 @result The list of interfaces.
560 You must release the returned value.
562 CFArrayRef
/* of SCNetworkInterfaceRef's */
563 SCBridgeInterfaceCopyAvailableMemberInterfaces (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
566 @function SCBridgeInterfaceCreate
567 @discussion Create a new SCBridgeInterface interface.
568 @param prefs The "preferences" session.
569 @result A reference to the new SCBridgeInterface.
570 You must release the returned value.
573 SCBridgeInterfaceCreate (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
576 @function SCBridgeInterfaceRemove
577 @discussion Removes the SCBridgeInterface from the configuration.
578 @param bridge The SCBridgeInterface interface.
579 @result TRUE if the interface was removed; FALSE if an error was encountered.
582 SCBridgeInterfaceRemove (SCBridgeInterfaceRef bridge
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
585 @function SCBridgeInterfaceGetMemberInterfaces
586 @discussion Returns the member interfaces for the specified bridge interface.
587 @param bridge The SCBridgeInterface interface.
588 @result The list of interfaces.
590 CFArrayRef
/* of SCNetworkInterfaceRef's */
591 SCBridgeInterfaceGetMemberInterfaces (SCBridgeInterfaceRef bridge
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
594 @function SCBridgeInterfaceGetOptions
595 @discussion Returns the configuration settings associated with a bridge interface.
596 @param bridge The SCBridgeInterface interface.
597 @result The configuration settings associated with the bridge interface;
598 NULL if no changes to the default configuration have been saved.
601 SCBridgeInterfaceGetOptions (SCBridgeInterfaceRef bridge
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
604 @function SCBridgeInterfaceSetMemberInterfaces
605 @discussion Sets the member interfaces for the specified bridge interface.
606 @param bridge The SCBridgeInterface interface.
607 @param members The desired member interfaces.
608 @result TRUE if the configuration was stored; FALSE if an error was encountered.
611 SCBridgeInterfaceSetMemberInterfaces (SCBridgeInterfaceRef bridge
,
612 CFArrayRef members
) /* of SCNetworkInterfaceRef's */
613 __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
616 @function SCBridgeInterfaceSetLocalizedDisplayName
617 @discussion Sets the localized display name for the specified bridge interface.
618 @param bridge The SCBridgeInterface interface.
619 @param newName The new display name.
620 @result TRUE if the configuration was stored; FALSE if an error was encountered.
623 SCBridgeInterfaceSetLocalizedDisplayName (SCBridgeInterfaceRef bridge
,
624 CFStringRef newName
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
627 @function SCBridgeInterfaceSetOptions
628 @discussion Sets the configuration settings for the specified bridge interface.
629 @param bridge The SCBridgeInterface interface.
630 @param newOptions The new configuration settings.
631 @result TRUE if the configuration was stored; FALSE if an error was encountered.
634 SCBridgeInterfaceSetOptions (SCBridgeInterfaceRef bridge
,
635 CFDictionaryRef newOptions
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
640 @function _SCBridgeInterfaceCopyActive
641 @discussion Returns all bridge interfaces on the system.
642 @result The list of SCBridgeInterface interfaces on the system.
643 You must release the returned value.
646 _SCBridgeInterfaceCopyActive (void) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
649 @function _SCBridgeInterfaceUpdateConfiguration
650 @discussion Updates the bridge interface configuration.
651 @param prefs The "preferences" session.
652 @result TRUE if the bridge interface configuration was updated.; FALSE if the
653 an error was encountered.
656 _SCBridgeInterfaceUpdateConfiguration (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
/*SPI*/);
660 #pragma mark SCVLANInterface configuration (SPIs)
663 @function _SCVLANInterfaceCopyActive
664 @discussion Returns all VLAN interfaces on the system.
665 @result The list of SCVLANInterface interfaces on the system.
666 You must release the returned value.
669 _SCVLANInterfaceCopyActive (void) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
672 @function _SCVLANInterfaceUpdateConfiguration
673 @discussion Updates the VLAN interface configuration.
674 @param prefs The "preferences" session.
675 @result TRUE if the VLAN interface configuration was updated.; FALSE if the
676 an error was encountered.
679 _SCVLANInterfaceUpdateConfiguration (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_4_0
/*SPI*/);
683 #pragma mark SCNetworkInterface Password SPIs
687 kSCNetworkInterfacePasswordTypePPP
= 1,
688 kSCNetworkInterfacePasswordTypeIPSecSharedSecret
,
689 kSCNetworkInterfacePasswordTypeEAPOL
,
690 kSCNetworkInterfacePasswordTypeIPSecXAuth
,
691 kSCNetworkInterfacePasswordTypeVPN
,
693 typedef uint32_t SCNetworkInterfacePasswordType
;
696 SCNetworkInterfaceCheckPassword (SCNetworkInterfaceRef interface
,
697 SCNetworkInterfacePasswordType passwordType
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
700 SCNetworkInterfaceCopyPassword (SCNetworkInterfaceRef interface
,
701 SCNetworkInterfacePasswordType passwordType
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
704 SCNetworkInterfaceRemovePassword (SCNetworkInterfaceRef interface
,
705 SCNetworkInterfacePasswordType passwordType
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
708 SCNetworkInterfaceSetPassword (SCNetworkInterfaceRef interface
,
709 SCNetworkInterfacePasswordType passwordType
,
711 CFDictionaryRef options
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
715 SCNetworkInterfaceGetDisableUntilNeeded (SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_11
,__IPHONE_9_0
);
718 SCNetworkInterfaceSetDisableUntilNeeded (SCNetworkInterfaceRef interface
,
719 Boolean disable
) __OSX_AVAILABLE_STARTING(__MAC_10_11
,__IPHONE_9_0
);
723 #pragma mark SCNetworkProtocol configuration (SPI)
727 @group Protocol configuration
731 static __inline__ CFTypeRef
732 isA_SCNetworkProtocol(CFTypeRef obj
)
734 return (isA_CFType(obj
, SCNetworkProtocolGetTypeID()));
739 #pragma mark SCNetworkService configuration (SPI)
743 @group Service configuration
747 static __inline__ CFTypeRef
748 isA_SCNetworkService(CFTypeRef obj
)
750 return (isA_CFType(obj
, SCNetworkServiceGetTypeID()));
754 @function _SCNetworkServiceCompare
755 @discussion Compares two SCNetworkService objects.
756 @param val1 The SCNetworkService object.
757 @param val2 The SCNetworkService object.
758 @param context The service order (from SCNetworkSetGetServiceOrder).
759 @result A comparison result.
762 _SCNetworkServiceCompare (const void *val1
,
764 void *context
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
);
767 @function _SCNetworkServiceCopyActive
768 @discussion Returns the network service with the specified identifier.
770 Note: The service returned by this SPI differs from the SCNetworkServiceCopy
771 API in that queries and operations interact with the "active" service
772 represented in the SCDynamicStore. Only a limited subset of the
773 SCNetworkService APIs are supported.
774 @param prefs The dynamic store session.
775 @param serviceID The unique identifier for the service.
776 @result A reference to the SCNetworkService represented in the SCDynamicStore;
777 NULL if the serviceID does not exist in the SCDynamicStore or if an
778 error was encountered.
779 You must release the returned value.
782 _SCNetworkServiceCopyActive (SCDynamicStoreRef store
,
783 CFStringRef serviceID
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_2_1
);
786 @function SCNetworkServiceGetPrimaryRank
787 @discussion Returns the primary service rank associated with a service.
788 @param service The network service.
789 @result The primary service rank associated with the specified application;
790 kSCNetworkServicePrimaryRankDefault if no rank is associated with the
791 application or an error was encountered.
793 SCNetworkServicePrimaryRank
794 SCNetworkServiceGetPrimaryRank (SCNetworkServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_2_0
);
797 @function SCNetworkServiceSetPrimaryRank
798 @discussion Updates the the primary service rank associated with a service.
799 @param service The network service.
800 @param newRank The new primary service rank; kSCNetworkServicePrimaryRankDefault
801 if the default service rank should be used.
802 @result TRUE if the rank was stored; FALSE if an error was encountered.
804 Notes : The kSCNetworkServicePrimaryRankFirst and kSCNetworkServicePrimaryRankLast
805 values can only valid as a transient setting.
808 SCNetworkServiceSetPrimaryRank (SCNetworkServiceRef service
,
809 SCNetworkServicePrimaryRank newRank
) __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_2_0
);
812 @function _SCNetworkServiceIsVPN
813 @discussion Identifies a VPN service.
814 @param service The network service.
815 @result TRUE if the service is a VPN.
818 _SCNetworkServiceIsVPN (SCNetworkServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
);
821 @function SCNetworkServiceSetExternalID
822 @discussion Set the external identifier for a network service.
823 @param service A reference to the network service.
824 @param identifierDomain A service can have multiple external identifiers. This string specifies which external identifier to set.
825 @param identifier The new external identifier to assign to the network service.
826 @result Returns TRUE if the external identifier was set successfully, FALSE if an error occurred.
829 SCNetworkServiceSetExternalID (SCNetworkServiceRef service
,
830 CFStringRef identifierDomain
,
831 CFStringRef identifier
);
834 @function SCNetworkServiceCopyExternalID
835 @discussion Copy the external identifier for a network service.
836 @param service The network service.
837 @param identifierDomain A service can have multiple external identifiers. This string specifies which external identifier to copy.
838 @result Returns the service's external identifier, or NULL if the service does not have an external identifier in the given domain.
841 SCNetworkServiceCopyExternalID (SCNetworkServiceRef service
,
842 CFStringRef identifierDomain
);
845 @function _SCNetworkServiceSetServiceID
846 @discussion Sets serviceID of the service to a different value provided.
847 @param service The network service
848 @param newServiceID The new service ID
849 @result TRUE if new service ID is set successfully.
852 _SCNetworkServiceSetServiceID (SCNetworkServiceRef service
,
853 CFStringRef newServiceID
) __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
856 #pragma mark SCNetworkSet configuration (SPI)
860 @group Set configuration
864 static __inline__ CFTypeRef
865 isA_SCNetworkSet(CFTypeRef obj
)
867 return (isA_CFType(obj
, SCNetworkSetGetTypeID()));
872 @function SCNetworkSetCopyAvailableInterfaces
873 @discussion Returns all available interfaces for the set.
874 The interfaces excludes those of bond and bridge members.
875 @param set The network set.
876 @result The list of SCNetworkInterfaces.
877 You must release the returned value.
880 SCNetworkSetCopyAvailableInterfaces (SCNetworkSetRef set
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
883 @function SCNetworkSetEstablishDefaultConfiguration
884 @discussion Updates a network set by adding services for
885 any network interface that is not currently
887 If the provided set contains one (or more) services, new
888 services will only be added for those interfaces that are
889 not represented in *any* set.
890 Otherwise, new services will be added for those interfaces
891 that are not represented in the provided set.
892 The new services are established with "default" configuration
894 @param set The network set.
895 @result TRUE if the configuration was updated; FALSE if no
896 changes were required or if an error was encountered.
899 SCNetworkSetEstablishDefaultConfiguration (SCNetworkSetRef set
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
902 @function SCNetworkSetEstablishDefaultInterfaceConfiguration
903 @discussion Updates a network set by adding services for
904 the specified network interface if is not currently
906 If the provided set contains one (or more) services, new
907 services will only be added for interfaces that are not
908 represented in *any* set.
909 Otherwise, new services will be added for interfaces that
910 are not represented in the provided set.
911 The new services are established with "default" configuration
913 @param set The network set.
914 @param interface The network interface.
915 @result TRUE if the configuration was updated; FALSE if no
916 changes were required or if an error was encountered.
919 SCNetworkSetEstablishDefaultInterfaceConfiguration (SCNetworkSetRef set
,
920 SCNetworkInterfaceRef interface
) __OSX_AVAILABLE_STARTING(__MAC_10_5
,__IPHONE_2_0
);
923 @function SCNetworkSetCopySelectedVPNService
924 @discussion On the iPhone we only allow a single VPN network service
925 to be selected at any given time. This API will identify
926 the selected VPN service.
927 @param set The network set.
928 @result The selected VPN service; NULL if no service has been
930 You must release the returned value.
933 SCNetworkSetCopySelectedVPNService (SCNetworkSetRef set
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
);
936 @function SCNetworkSetSetSelectedVPNService
937 @discussion On the iPhone we only allow a single VPN network service
938 to be selected at any given time. This API should be used to
939 select a VPN service.
940 @param set The network set.
941 @param service The VPN service to be selected.
942 @result TRUE if the name was saved; FALSE if an error was encountered.
945 SCNetworkSetSetSelectedVPNService (SCNetworkSetRef set
,
946 SCNetworkServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_7
,__IPHONE_4_0
);
949 _SCNetworkSetSetSetID (SCNetworkSetRef set
,
950 CFStringRef setID
) __OSX_AVAILABLE_STARTING(__MAC_10_10
, __IPHONE_8_0
);
953 @group VPN Service configuration
957 #pragma mark VPN Service configuration
959 typedef SCNetworkServiceRef VPNServiceRef
;
962 @function VPNServiceCopyAllMatchingExternalID
963 @discussion Copy the VPN services with the given external identifier.
964 @param prefs A reference to the prefs where the VPN services are stored.
965 @param identifierDomain A service can have multiple external identifiers. This string specifies which one to match with the given identifier.
966 @param identifier The external identifier of the desired services.
967 @result A array of references to the VPN services with the given identifier, or NULL if no such service exists
970 VPNServiceCopyAllMatchingExternalID (SCPreferencesRef prefs
,
971 CFStringRef identifierDomain
,
972 CFStringRef identifier
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
975 @function VPNServiceCopyAll
976 @discussion Copy all VPN services.
977 @param prefs A reference to the prefs where the VPN services are stored.
978 @result An array containing VPNServiceRefs for all the VPN services.
981 VPNServiceCopyAll (SCPreferencesRef prefs
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
984 @function VPNServiceCopyAppRuleIDs
985 @discussion Copy all the app rule identifiers for a VPN service.
986 @param service A reference to the VPN service.
987 @result An array of CFStringRefs, each string containing the identifier of a app rule in the given service.
990 VPNServiceCopyAppRuleIDs (VPNServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
993 @function VPNServiceSetAppRule
994 @discussion Add or modify an app rule in a VPN service. The ruleSettings dictionary must contain one of the following keys:
995 <pre>kSCValNetVPNAppRuleExecutableMatch</pre>
996 <pre>kSCValNetVPNAppRuleAccountIdentifierMatch</pre>
997 The ruleSettings dictionary may also contain the following keys:
998 <pre>kSCValNetVPNAppRuleDNSDomainMatch</pre>
999 See SCSchemaDefinitionsPrivate.h for more details.
1000 @param service A reference to the VPN service.
1001 @param ruleIdentifier The identifier of the new app rule.
1002 @param ruleSettings The settings for the new app rule. See the dictionary keys defined above.
1003 @result TRUE if the app rule was set successfully, FALSE if an error occurred.
1006 VPNServiceSetAppRule (VPNServiceRef service
,
1007 CFStringRef ruleIdentifier
,
1008 CFDictionaryRef ruleSettings
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
1011 @function VPNServiceCopyAppRule
1012 @discussion Copy the settings for a app rule in a VPN service.
1013 @param service The app tunnel service.
1014 @param ruleIdentifier The ID of the app rule.
1015 @result The rule settings, or NULL if the app rule could not be found.
1018 VPNServiceCopyAppRule (VPNServiceRef service
,
1019 CFStringRef ruleIdentifier
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
1022 @function VPNServiceRemoveAppRule
1023 @discussion Remove an app rule from a VPN service.
1024 @param service The VPN service.
1025 @param ruleIdentifier The ID of the app rule to remove.
1026 @result Returns TRUE if the app rule was removed successfully; FALSE otherwise.
1029 VPNServiceRemoveAppRule (VPNServiceRef service
,
1030 CFStringRef ruleIdentifier
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
1033 @function VPNServiceIsManagedAppVPN
1034 @discussion Check to see if a VPN service is a managed App VPN service
1035 @param service The VPN servie.
1036 @result Returns TRUE if the service is a managed App VPN service; FALSE otherwise.
1039 VPNServiceIsManagedAppVPN (VPNServiceRef service
) __OSX_AVAILABLE_STARTING(__MAC_10_9
,__IPHONE_7_0
/*SPI*/);
1042 @group Migration SPI
1045 #pragma mark Migration SPI
1047 extern const CFStringRef kSCNetworkConfigurationRepair
/* CFBoolean */ __OSX_AVAILABLE_STARTING(__MAC_10_10
, __IPHONE_8_0
);
1049 extern const CFStringRef kSCNetworkConfigurationMigrationActionKey
/* CFNumber */ __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
1051 typedef CF_ENUM(uint32_t, SCNetworkConfigurationMigrationAction
) {
1052 kSCNetworkConfigurationMigrationAction_CleanInstall
= 0,
1053 kSCNetworkConfigurationMigrationAction_Upgrade
= 1,
1054 kSCNetworkConfigurationMigrationAction_Restore
= 2,
1058 @function _SCNetworkConfigurationCopyMigrationPaths
1059 @result Returns an array of paths that we would need from the source
1062 _SCNetworkConfigurationCopyMigrationPaths(CFDictionaryRef options
) __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
1065 @function _SCNetworkConfigurationPerformMigration
1066 @discussion Updates the network configuration of the target system with
1067 configurations from previous system. Both sourceDir and targetDir
1068 cannot be NULL, since NULL indicates API to look at the local system
1069 @param sourceDir A reference which points to the root of a directory populated
1070 with the list of requested directories/path from the "source" volume. Passing NULL
1071 will indicate that sourceDir should point to local system
1072 @param currentDir A reference which points to the root of a directory populated
1073 with the list of requested directories/path from the "destination" volume. Passing
1074 NULL will indicate that currentDir should point to local system.
1075 @param targetDir A reference which points to the root of a directory that we
1076 will populate (update) with new configuration. Passing NULL will mean that we want to
1077 migrate to the currentDir. If not NULL, then this path should exist.
1078 @param options Argument which will tell us what action we are supposed to take
1079 (clean-install, upgrade, migrate/restore settings from another system, ...)
1080 @result Returns array which would consist of those paths that should be moved
1081 from the "targetDir" directory to destination volume. You must release the returned value.
1086 _SCNetworkConfigurationPerformMigration(CFURLRef sourceDir
,
1087 CFURLRef currentDir
,
1089 CFDictionaryRef options
) __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
1093 @function _SCNetworkConfigurationCheckValidity
1094 @discussion Verifies whether the configuration files present in the specified
1095 directory have valid mappings or not
1096 @param configDir A reference which points to the directory where the configuration
1098 @result TRUE if valid configurations are found
1103 _SCNetworkConfigurationCheckValidity(CFURLRef configDir
,
1104 CFDictionaryRef options
) __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
1108 @function _SCNetworkConfigurationCheckValidityWithPreferences
1109 @discussion Validates the specified preferences.plist against NetworkInterfaces.plist
1110 @param prefs the preferences ref pointing to the said preferences.plist
1111 @param ni_prefs the preferences ref pointing to the said NetworkInterfaces.plist
1112 @result TRUE if the configurations are valid against each other
1117 _SCNetworkConfigurationCheckValidityWithPreferences (SCPreferencesRef prefs
,
1118 SCPreferencesRef ni_prefs
,
1119 CFDictionaryRef options
) __OSX_AVAILABLE_STARTING(__MAC_10_11
, __IPHONE_9_0
);
1123 @function _SCNetworkMigrationAreConfigurationsIdentical
1124 @discussion Compares the migration output between network configurations
1125 with the expected output.
1126 @param configPref Preferences pointing toward preferences.plist file to
1127 be compared with expected file.
1128 @param configNetworkInterfacePref Preferences pointing toward NetworkInterfaces.plist
1129 file to be compared with expected file.
1130 @param expectedConfigPref Preferences pointing toward preferences.plist file
1131 which is the expected result.
1132 @param expectedNetworkInterfacePref Preferences pointing toward NetworkInterfaces.plist
1133 file which is the expected file.
1134 @result TRUE if configurations match with the expected configurations
1139 _SCNetworkMigrationAreConfigurationsIdentical (CFURLRef configurationURL
,
1140 CFURLRef expectedConfigurationURL
)
1141 __OSX_AVAILABLE_STARTING(__MAC_10_10
,__IPHONE_8_0
);
1144 @function _SCNetworkConfigurationCopyMigrationRemovePaths
1145 @discussion List of paths to files which we want to be removed from the target filesystem after migration
1146 @param targetPaths the CFArray returned by _SCNetworkConfigurationPerformMigration
1147 @param targetDir the CFURL passed to _SCNetworkConfigurationPerformMigration
1148 @result An array of CFURL's; NULL if no paths need to be removed from the target filesystem
1152 CFArrayRef
// of CFURLRef's
1153 _SCNetworkConfigurationCopyMigrationRemovePaths (CFArrayRef targetPaths
,
1154 CFURLRef targetDir
) __OSX_AVAILABLE_STARTING(__MAC_10_10
, __IPHONE_8_0
);
1157 #endif /* _SCNETWORKCONFIGURATIONPRIVATE_H */