2 * Copyright (c) 2000-2005 Apple Computer, 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@
27 #include <sys/cdefs.h>
28 #include <sys/socket.h>
29 #include <sys/syslog.h>
30 #include <mach/message.h>
32 #include <CoreFoundation/CoreFoundation.h>
34 #include <SystemConfiguration/SCDynamicStorePrivate.h>
35 #include <SystemConfiguration/SCDynamicStoreCopySpecificPrivate.h>
36 #include <SystemConfiguration/SCDynamicStoreSetSpecificPrivate.h>
38 #include <SystemConfiguration/SCPreferencesPrivate.h>
39 #include <SystemConfiguration/SCPreferencesGetSpecificPrivate.h>
40 #include <SystemConfiguration/SCPreferencesSetSpecificPrivate.h>
46 /* framework variables */
47 extern Boolean _sc_debug
; /* TRUE if debugging enabled */
48 extern Boolean _sc_verbose
; /* TRUE if verbose logging enabled */
49 extern Boolean _sc_log
; /* TRUE if SCLog() output goes to syslog */
55 @discussion Sets the last SystemConfiguration.framework API error code.
56 @param error The error encountered.
58 void _SCErrorSet (int error
);
61 @function _SCSerialize
62 @discussion Serialize a CFPropertyList object for passing
64 @param obj CFPropertyList object to serialize
65 @param xml A pointer to a CFDataRef, NULL if data should be
67 @param dataRef A pointer to the newly allocated/serialized data
68 @param dataLen A pointer to the length in bytes of the newly
69 allocated/serialized data
71 Boolean
_SCSerialize (CFPropertyListRef obj
,
77 @function _SCUnserialize
78 @discussion Unserialize a stream of bytes passed from/to configd
79 into a CFPropertyList object.
80 @param obj A pointer to memory that will be filled with the CFPropertyList
81 associated with the stream of bytes.
82 @param xml CFDataRef with the serialized data
83 @param dataRef A pointer to the serialized data
84 @param dataLen A pointer to the length of the serialized data
86 Specify either "xml" or "data/dataLen".
88 Boolean
_SCUnserialize (CFPropertyListRef
*obj
,
94 @function _SCSerializeString
95 @discussion Serialize a CFString object for passing
97 @param str CFString key to serialize
98 @param data A pointer to a CFDataRef, NULL if storage should be
100 @param dataRef A pointer to the newly allocated/serialized data
101 @param dataLen A pointer to the length in bytes of the newly
102 allocated/serialized data
104 Boolean
_SCSerializeString (CFStringRef str
,
110 @function _SCUnserializeString
111 @discussion Unserialize a stream of bytes passed from/to configd
112 into a CFString object.
113 @param str A pointer to memory that will be filled with the CFPropertyList
114 associated with the stream of bytes.
115 @param utf8 CFDataRef with the serialized data
116 @param dataRef A pointer to the serialized data
117 @param dataLen A pointer to the length of the serialized data
119 Specify either "utf8" or "data/dataLen".
121 Boolean
_SCUnserializeString (CFStringRef
*str
,
127 @function _SCSerializeData
128 @discussion Serialize a CFData object for passing
130 @param data CFData key to serialize
131 @param dataRef A pointer to the newly allocated/serialized data
132 @param dataLen A pointer to the length in bytes of the newly
133 allocated/serialized data
135 Boolean
_SCSerializeData (CFDataRef data
,
140 @function _SCUnserializeData
141 @discussion Unserialize a stream of bytes passed from/to configd
142 into a CFData object.
143 @param data A pointer to memory that will be filled with the CFPropertyList
144 associated with the stream of bytes.
145 @param dataRef A pointer to the serialized data
146 @param dataLen A pointer to the length of the serialized data
148 Boolean
_SCUnserializeData (CFDataRef
*data
,
153 @function _SCSerializeMultiple
154 @discussion Convert a CFDictionary containing a set of CFPropertlyList
155 values into a CFDictionary containing a set of serialized CFData
157 @param dict The CFDictionary with CFPropertyList values.
158 @result The serialized CFDictionary with CFData values
160 CFDictionaryRef
_SCSerializeMultiple (CFDictionaryRef dict
);
163 @function _SCUnserializeMultiple
164 @discussion Convert a CFDictionary containing a set of CFData
165 values into a CFDictionary containing a set of serialized
166 CFPropertlyList values.
167 @param dict The CFDictionary with CFData values.
168 @result The serialized CFDictionary with CFPropertyList values
170 CFDictionaryRef
_SCUnserializeMultiple (CFDictionaryRef dict
);
173 @function _SC_cfstring_to_cstring
174 @discussion Extracts a C-string from a CFString.
175 @param cfstr The CFString to extract the data from.
176 @param buf A user provided buffer of the specified length. If NULL,
177 a new buffer will be allocated to contain the C-string. It
178 is the responsiblity of the caller to free an allocated
180 @param bufLen The size of the user provided buffer.
181 @param encoding The string encoding
182 @result If the extraction (conversion) is successful then a pointer
183 to the user provided (or allocated) buffer is returned, NULL
184 if the string could not be extracted.
186 char * _SC_cfstring_to_cstring (CFStringRef cfstr
,
189 CFStringEncoding encoding
);
192 * @function _SC_sockaddr_to_string
193 * @discussion Formats a "struct sockaddr" for reporting
194 * @param address The address to format
195 * @param buf A user provided buffer of the specified length.
196 * @param bufLen The size of the user provided buffer.
198 void _SC_sockaddr_to_string (const struct sockaddr
*address
,
204 @discussion Conditionally issue a log message.
205 @param condition A boolean value indicating if the message should be logged
206 @param level A syslog(3) logging priority.
207 @param formatString The format string
208 @result The specified message will be written to the system message
209 logger (See syslogd(8)).
211 void SCLog (Boolean condition
,
213 CFStringRef formatString
,
218 @discussion Conditionally issue a debug message.
219 @param condition A boolean value indicating if the message should be written
220 @param stream The output stream for the log message.
221 @param formatString The format string
222 @result The message will be written to the specified stream
225 void SCPrint (Boolean condition
,
227 CFStringRef formatString
,
232 @discussion Conditionally issue a debug message with a time stamp.
233 @param condition A boolean value indicating if the message should be written
234 @param stream The output stream for the log message.
235 @param formatString The format string
236 @result The message will be written to the specified stream
239 void SCTrace (Boolean condition
,
241 CFStringRef formatString
,
245 * object / CFRunLoop management
248 _SC_signalRunLoop (CFTypeRef obj
,
249 CFRunLoopSourceRef rls
,
253 _SC_isScheduled (CFTypeRef obj
,
254 CFRunLoopRef runLoop
,
255 CFStringRef runLoopMode
,
256 CFMutableArrayRef rlList
);
259 _SC_schedule (CFTypeRef obj
,
260 CFRunLoopRef runLoop
,
261 CFStringRef runLoopMode
,
262 CFMutableArrayRef rlList
);
265 _SC_unschedule (CFTypeRef obj
,
266 CFRunLoopRef runLoop
,
267 CFStringRef runLoopMode
,
268 CFMutableArrayRef rlList
,
273 #endif /* _SCPRIVATE_H */