]> git.saurik.com Git - apple/security.git/blob - libsecurity_utilities/lib/cfutilities.h
Security-55179.1.tar.gz
[apple/security.git] / libsecurity_utilities / lib / cfutilities.h
1 /*
2 * Copyright (c) 2000-2004 Apple Computer, Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24
25 //
26 //CoreFoundation related utilities
27 //
28 #ifndef _H_CFUTILITIES
29 #define _H_CFUTILITIES
30
31 #include <security_utilities/utilities.h>
32 #include <security_utilities/globalizer.h>
33 #include <CoreFoundation/CoreFoundation.h>
34 #include <algorithm>
35
36 #undef check
37
38
39 namespace Security {
40
41
42 //
43 // Traits of popular CF types
44 //
45 template <class CFType> struct CFTraits { };
46
47 template <> struct CFTraits<CFTypeRef> {
48 static bool check(CFTypeRef ref) { return true; }
49 };
50
51 #define __SEC_CFTYPE(name) \
52 template <> struct CFTraits<name##Ref> { \
53 static CFTypeID cfid() { return name##GetTypeID(); } \
54 static bool check(CFTypeRef ref) { return CFGetTypeID(ref) == cfid(); } \
55 };
56
57 __SEC_CFTYPE(CFNull)
58 __SEC_CFTYPE(CFBoolean)
59 __SEC_CFTYPE(CFNumber)
60 __SEC_CFTYPE(CFString)
61 __SEC_CFTYPE(CFData)
62 __SEC_CFTYPE(CFDate)
63 __SEC_CFTYPE(CFURL)
64 __SEC_CFTYPE(CFBundle)
65 __SEC_CFTYPE(CFArray)
66 __SEC_CFTYPE(CFDictionary)
67 __SEC_CFTYPE(CFSet)
68
69
70 //
71 // Initialize-only self-releasing CF object handler (lightweight).
72 //
73 template <class CFType> class CFRef {
74 public:
75 CFRef() : mRef(NULL) { }
76 CFRef(CFType ref) : mRef(ref) { }
77 ~CFRef() { this->release(); }
78 CFRef(const CFRef &ref) : mRef(ref) {}
79 template <class _T> CFRef(const CFRef<_T> &ref) : mRef(ref) {}
80
81 CFRef(CFTypeRef ref, OSStatus err)
82 : mRef(CFType(ref))
83 {
84 if (ref && !CFTraits<CFType>::check(ref))
85 MacOSError::throwMe(err);
86 }
87
88 CFRef &take(CFType ref)
89 { this->release(); mRef = ref; return *this; }
90
91 CFType yield()
92 { CFType r = mRef; mRef = NULL; return r; }
93
94 CFRef &operator = (CFType ref)
95 { if (ref) CFRetain(ref); return take(ref); }
96
97 CFRef &operator = (const CFRef &ref)
98 { if (ref) CFRetain(ref); return take(ref); }
99
100 // take variant for when newly created CFType is returned
101 // via a ptr-to-CFType argument.
102 CFType *take()
103 { if (mRef) CFRelease(mRef); mRef = NULL; return &mRef; }
104
105 operator CFType () const { return mRef; }
106 operator bool () const { return mRef != NULL; }
107 bool operator ! () const { return mRef == NULL; }
108
109 CFType get() const { return mRef; }
110
111 CFType &aref()
112 { take(NULL); return mRef; }
113
114 CFType retain() const
115 { if (mRef) CFRetain(mRef); return mRef; }
116
117 void release() const
118 { if (mRef) CFRelease(mRef); }
119
120 template <class NewType>
121 bool is() const { return CFTraits<NewType>::check(mRef); }
122
123 template <class OldType>
124 static CFType check(OldType cf, OSStatus err)
125 {
126 if (cf && !CFTraits<CFType>::check(cf))
127 MacOSError::throwMe(err);
128 return CFType(cf);
129 }
130
131 template <class NewType>
132 NewType as() const { return NewType(mRef); }
133
134 template <class NewType>
135 NewType as(OSStatus err) const { return CFRef<NewType>::check(mRef, err); }
136
137 private:
138 CFType mRef;
139 };
140
141
142 template <class CFType> class CFCopyRef : public CFRef<CFType> {
143 typedef CFRef<CFType> _Base;
144 public:
145 CFCopyRef() { }
146 CFCopyRef(CFType ref) : _Base(ref) { this->retain(); }
147 CFCopyRef(const CFCopyRef &ref) : _Base(ref) { this->retain(); }
148 template <class _T> CFCopyRef(const CFRef<_T> &ref) : _Base(ref) { this->retain(); }
149 CFCopyRef(CFTypeRef ref, OSStatus err) : _Base(ref, err) { this->retain(); }
150
151 CFCopyRef &take(CFType ref)
152 { _Base::take(ref); return *this; }
153
154 CFCopyRef &operator = (CFType ref)
155 { if (ref) CFRetain(ref); return take(ref); }
156
157 CFCopyRef &operator = (const CFCopyRef &ref)
158 { _Base::operator = (ref); return *this; }
159
160 template <class _T> CFCopyRef &operator = (const CFRef<_T> &ref)
161 { _Base::operator = (ref); return *this; }
162 };
163
164
165 //
166 // A simple function that turns a non-array CFTypeRef into
167 // an array of one with that element. This will retain its argument
168 // (directly or indirectly).
169 //
170 inline CFArrayRef cfArrayize(CFTypeRef arrayOrItem)
171 {
172 if (arrayOrItem == NULL)
173 return NULL; // NULL is NULL
174 else if (CFGetTypeID(arrayOrItem) == CFArrayGetTypeID()) {
175 CFRetain(arrayOrItem);
176 return CFArrayRef(arrayOrItem); // already an array
177 } else {
178 return CFArrayCreate(NULL,
179 (const void **)&arrayOrItem, 1, &kCFTypeArrayCallBacks);
180 }
181 }
182
183
184 //
185 // An empty CFArray.
186 // Since CFArrays are type-neutral, a single immutable empty array will
187 // serve for all uses. So keep it.
188 //
189 struct CFEmptyArray {
190 operator CFArrayRef () { return mArray; }
191 CFEmptyArray();
192 private:
193 CFArrayRef mArray;
194 };
195
196 extern ModuleNexus<CFEmptyArray> cfEmptyArray;
197
198
199 //
200 // Translate CFStringRef or CFURLRef to (UTF8-encoded) C++ string.
201 // If release==true, a CFRelease will be performed on the CFWhatever argument
202 // whether the call succeeds or not(!).
203 //
204 string cfString(CFStringRef str); // extract UTF8 string
205 string cfString(CFURLRef url); // path of file: URL (only)
206 string cfString(CFBundleRef bundle); // path to bundle root
207
208 string cfStringRelease(CFStringRef str CF_CONSUMED); // extract UTF8 string
209 string cfStringRelease(CFURLRef url CF_CONSUMED); // path of file: URL (only)
210 string cfStringRelease(CFBundleRef bundle CF_CONSUMED); // path to bundle root
211
212
213 string cfString(CFTypeRef anything, OSStatus err); // dynamic form; throws err on NULL
214
215
216 //
217 // Handle CFNumberRefs.
218 // This is nasty because CFNumber does not support unsigned types, and there's really no portably-safe
219 // way of working around this. So the handling of unsigned numbers is "almost correct."
220 //
221 template <class Number>
222 struct CFNumberTraits;
223
224 template <> struct CFNumberTraits<char> {
225 static const CFNumberType cfnType = kCFNumberCharType;
226 typedef char ValueType;
227 };
228 template <> struct CFNumberTraits<short> {
229 static const CFNumberType cfnType = kCFNumberShortType;
230 typedef short ValueType;
231 };
232 template <> struct CFNumberTraits<int> {
233 static const CFNumberType cfnType = kCFNumberIntType;
234 typedef int ValueType;
235 };
236 template <> struct CFNumberTraits<long> {
237 static const CFNumberType cfnType = kCFNumberLongType;
238 typedef long ValueType;
239 };
240 template <> struct CFNumberTraits<long long> {
241 static const CFNumberType cfnType = kCFNumberLongLongType;
242 typedef long long ValueType;
243 };
244 template <> struct CFNumberTraits<float> {
245 static const CFNumberType cfnType = kCFNumberFloatType;
246 typedef float ValueType;
247 };
248 template <> struct CFNumberTraits<double> {
249 static const CFNumberType cfnType = kCFNumberDoubleType;
250 typedef double ValueType;
251 };
252
253 template <> struct CFNumberTraits<unsigned char> {
254 static const CFNumberType cfnType = kCFNumberIntType;
255 typedef int ValueType;
256 };
257 template <> struct CFNumberTraits<unsigned short> {
258 static const CFNumberType cfnType = kCFNumberIntType;
259 typedef int ValueType;
260 };
261 template <> struct CFNumberTraits<unsigned int> {
262 static const CFNumberType cfnType = kCFNumberLongLongType;
263 typedef long long ValueType;
264 };
265 template <> struct CFNumberTraits<unsigned long> {
266 static const CFNumberType cfnType = kCFNumberLongLongType;
267 typedef long long ValueType;
268 };
269 template <> struct CFNumberTraits<unsigned long long> {
270 static const CFNumberType cfnType = kCFNumberLongLongType;
271 typedef long long ValueType;
272 };
273
274 template <class Number>
275 Number cfNumber(CFNumberRef number)
276 {
277 typename CFNumberTraits<Number>::ValueType value;
278 if (CFNumberGetValue(number, CFNumberTraits<Number>::cfnType, &value))
279 return value;
280 else
281 CFError::throwMe();
282 }
283
284 template <class Number>
285 Number cfNumber(CFNumberRef number, Number defaultValue)
286 {
287 typename CFNumberTraits<Number>::ValueType value;
288 if (CFNumberGetValue(number, CFNumberTraits<Number>::cfnType, &value))
289 return value;
290 else
291 return defaultValue;
292 }
293
294 template <class Number>
295 CFNumberRef makeCFNumber(Number value)
296 {
297 typename CFNumberTraits<Number>::ValueType cfValue = value;
298 return CFNumberCreate(NULL, CFNumberTraits<Number>::cfnType, &cfValue);
299 }
300
301 // legacy form
302 inline uint32_t cfNumber(CFNumberRef number) { return cfNumber<uint32_t>(number); }
303
304
305 //
306 // Translate strings into CFStrings
307 //
308 inline CFStringRef makeCFString(const char *s, CFStringEncoding encoding = kCFStringEncodingUTF8)
309 {
310 return s ? CFStringCreateWithCString(NULL, s, encoding) : NULL;
311 }
312
313 inline CFStringRef makeCFString(const string &s, CFStringEncoding encoding = kCFStringEncodingUTF8)
314 {
315 return CFStringCreateWithCString(NULL, s.c_str(), encoding);
316 }
317
318 inline CFStringRef makeCFString(CFDataRef data, CFStringEncoding encoding = kCFStringEncodingUTF8)
319 {
320 return CFStringCreateFromExternalRepresentation(NULL, data, encoding);
321 }
322
323
324 //
325 // Create CFURL objects from various sources
326 //
327 CFURLRef makeCFURL(const char *s, bool isDirectory = false, CFURLRef base = NULL);
328 CFURLRef makeCFURL(CFStringRef s, bool isDirectory = false, CFURLRef base = NULL);
329
330 inline CFURLRef makeCFURL(const string &s, bool isDirectory = false, CFURLRef base = NULL)
331 {
332 return makeCFURL(s.c_str(), isDirectory, base);
333 }
334
335
336 //
337 // Make temporary CF objects.
338 //
339 class CFTempString : public CFRef<CFStringRef> {
340 public:
341 template <class Source>
342 CFTempString(Source s) : CFRef<CFStringRef>(makeCFString(s)) { }
343 };
344
345 class CFTempURL : public CFRef<CFURLRef> {
346 public:
347 template <class Source>
348 CFTempURL(Source s, bool isDirectory = false, CFURLRef base = NULL)
349 : CFRef<CFURLRef>(makeCFURL(s, isDirectory, base)) { }
350 };
351
352
353 //
354 // A temporary CFNumber
355 //
356 class CFTempNumber : public CFRef<CFNumberRef> {
357 public:
358 template <class Value>
359 CFTempNumber(Value value) : CFRef<CFNumberRef>(makeCFNumber(value)) { }
360 };
361
362
363 //
364 // A temporary CFData.
365 //
366 class CFTempData : public CFRef<CFDataRef> {
367 public:
368 CFTempData(const void *data, size_t length)
369 : CFRef<CFDataRef>(CFDataCreate(NULL, (const UInt8 *)data, length)) { }
370
371 template <class Dataoid>
372 CFTempData(const Dataoid &dataoid)
373 : CFRef<CFDataRef>(CFDataCreate(NULL, (const UInt8 *)dataoid.data(), dataoid.length())) { }
374 };
375
376 class CFTempDataWrap : public CFRef<CFDataRef> {
377 public:
378 CFTempDataWrap(const void *data, size_t length)
379 : CFRef<CFDataRef>(CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)data, length, kCFAllocatorNull)) { }
380
381 template <class Dataoid>
382 CFTempDataWrap(const Dataoid &dataoid)
383 : CFRef<CFDataRef>(CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)dataoid.data(), dataoid.length(), kCFAllocatorNull)) { }
384 };
385
386
387 //
388 // Create CFData objects from various sources.
389 //
390 inline CFDataRef makeCFData(const void *data, size_t size)
391 {
392 return CFDataCreate(NULL, (const UInt8 *)data, size);
393 }
394
395 inline CFDataRef makeCFData(CFDictionaryRef dictionary)
396 {
397 return CFPropertyListCreateXMLData(NULL, dictionary);
398 }
399
400 template <class Data>
401 inline CFDataRef makeCFData(const Data &source)
402 {
403 return CFDataCreate(NULL, reinterpret_cast<const UInt8 *>(source.data()), source.length());
404 }
405
406 inline CFDataRef makeCFDataMalloc(const void *data, size_t size)
407 {
408 return CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)data, size, kCFAllocatorMalloc);
409 }
410
411 template <class Data>
412 inline CFDataRef makeCFDataMalloc(const Data &source)
413 {
414 return CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)source.data(), source.length(), kCFAllocatorMalloc);
415 }
416
417
418 //
419 // Create a CFDataRef from malloc'ed data, exception-safely
420 //
421 class CFMallocData {
422 public:
423 CFMallocData(size_t size)
424 : mData(::malloc(size)), mSize(size)
425 {
426 if (!mData)
427 UnixError::throwMe();
428 }
429
430 ~CFMallocData()
431 {
432 if (mData)
433 ::free(mData);
434 }
435
436 template <class T>
437 operator T * ()
438 { return static_cast<T *>(mData); }
439
440 operator CFDataRef ();
441
442 void *data() { return mData; }
443 const void *data() const { return mData; }
444 size_t length() const { return mSize; }
445
446 private:
447 void *mData;
448 size_t mSize;
449 };
450
451
452 //
453 // Make CFDictionaries from stuff
454 //
455 CFDictionaryRef makeCFDictionary(unsigned count, ...); // key/value pairs
456 CFMutableDictionaryRef makeCFMutableDictionary(); // empty
457 CFMutableDictionaryRef makeCFMutableDictionary(unsigned count, ...); // (count) key/value pairs
458 CFMutableDictionaryRef makeCFMutableDictionary(CFDictionaryRef dict); // copy of dictionary
459
460 CFDictionaryRef makeCFDictionaryFrom(CFDataRef data) CF_RETURNS_RETAINED;// interpret plist form
461 CFDictionaryRef makeCFDictionaryFrom(const void *data, size_t length) CF_RETURNS_RETAINED; // ditto
462
463
464 //
465 // Parsing out a CFDictionary without losing your lunch
466 //
467 class CFDictionary : public CFCopyRef<CFDictionaryRef> {
468 typedef CFCopyRef<CFDictionaryRef> _Base;
469 public:
470 CFDictionary(CFDictionaryRef ref, OSStatus error) : _Base(ref), mDefaultError(error)
471 { if (!ref) MacOSError::throwMe(error); }
472 CFDictionary(CFTypeRef ref, OSStatus error) : _Base(ref, error), mDefaultError(error)
473 { if (!ref) MacOSError::throwMe(error); }
474 CFDictionary(OSStatus error) : _Base(NULL), mDefaultError(error) { }
475
476 using CFCopyRef<CFDictionaryRef>::get;
477
478 CFTypeRef get(CFStringRef key) { return CFDictionaryGetValue(*this, key); }
479 CFTypeRef get(const char *key) { return CFDictionaryGetValue(*this, CFTempString(key)); }
480
481 template <class CFType>
482 CFType get(CFStringRef key, OSStatus err = noErr) const
483 {
484 CFTypeRef elem = CFDictionaryGetValue(*this, key);
485 return CFRef<CFType>::check(elem, err ? err : mDefaultError);
486 }
487
488 template <class CFType>
489 CFType get(const char *key, OSStatus err = noErr) const
490 { return get<CFType>(CFTempString(key), err); }
491
492 void apply(CFDictionaryApplierFunction func, void *context)
493 { return CFDictionaryApplyFunction(*this, func, context); }
494
495 private:
496 template <class T>
497 struct Applier {
498 T *object;
499 void (T::*func)(CFTypeRef key, CFTypeRef value);
500 static void apply(CFTypeRef key, CFTypeRef value, void *context)
501 { Applier *me = (Applier *)context; return ((me->object)->*(me->func))(key, value); }
502 };
503
504 public:
505 template <class T>
506 void apply(T *object, void (T::*func)(CFTypeRef key, CFTypeRef value))
507 { Applier<T> app; app.object = object; app.func = func; return apply(app.apply, &app); }
508
509 private:
510 OSStatus mDefaultError;
511 };
512
513
514 //
515 // CFURLAccess wrappers for specific purposes
516 //
517 CFDataRef cfLoadFile(CFURLRef url);
518 inline CFDataRef cfLoadFile(CFStringRef path) { return cfLoadFile(CFTempURL(path)); }
519 inline CFDataRef cfLoadFile(const std::string &path) { return cfLoadFile(CFTempURL(path)); }
520 inline CFDataRef cfLoadFile(const char *path) { return cfLoadFile(CFTempURL(path)); }
521
522
523 //
524 // Internally used STL adapters. Should probably be in utilities.h.
525 //
526 template <class Self>
527 Self projectPair(const Self &me)
528 { return me; }
529
530 template <class First, class Second>
531 Second projectPair(const pair<First, Second> &me)
532 { return me.second; }
533
534
535 //
536 // A CFToVector turns a CFArrayRef of items into a flat
537 // C vector of some type, using a conversion function
538 // (from CFTypeRef) specified. As a special bonus, if
539 // you provide a CFTypeRef (other than CFArrayRef), it
540 // will be transparently handled as an array-of-one.
541 // The array will be automatically released on destruction
542 // of the CFToVector object. Any internal structure shared
543 // with the CFTypeRef inputs will be left alone.
544 //
545 template <class VectorBase, class CFRefType, VectorBase convert(CFRefType)>
546 class CFToVector {
547 public:
548 CFToVector(CFArrayRef arrayRef);
549 ~CFToVector() { delete[] mVector; }
550 operator UInt32 () const { return mCount; }
551 operator VectorBase *() const { return mVector; }
552 bool empty() const { return mCount == 0; }
553
554 VectorBase *begin() const { return mVector; }
555 VectorBase *end() const { return mVector + mCount; }
556
557 VectorBase &operator [] (UInt32 ix) const { assert(ix < mCount); return mVector[ix]; }
558
559 private:
560 VectorBase *mVector;
561 UInt32 mCount;
562 };
563
564 template <class VectorBase, class CFRefType, VectorBase convert(CFRefType)>
565 CFToVector<VectorBase, CFRefType, convert>::CFToVector(CFArrayRef arrayRef)
566 {
567 if (arrayRef == NULL) {
568 mCount = 0;
569 mVector = NULL;
570 } else {
571 mCount = CFArrayGetCount(arrayRef);
572 mVector = new VectorBase[mCount];
573 for (UInt32 n = 0; n < mCount; n++)
574 mVector[n] = convert(CFRefType(CFArrayGetValueAtIndex(arrayRef, n)));
575 }
576 }
577
578
579 //
580 // Make CFArrays from stuff.
581 //
582 template <class Iterator, class Generator>
583 inline CFArrayRef makeCFArray(Generator &generate, Iterator first, Iterator last)
584 {
585 // how many elements?
586 size_t size = distance(first, last);
587
588 // do the CFArrayCreate tango
589 auto_array<CFTypeRef> vec(size);
590 for (UInt32 n = 0; n < size; n++)
591 vec[n] = generate(projectPair(*first++));
592 assert(first == last);
593 return CFArrayCreate(NULL, (const void **)vec.get(), size, &kCFTypeArrayCallBacks);
594 }
595
596 template <class Container, class Generator>
597 inline CFArrayRef makeCFArray(Generator &generate, const Container &container)
598 {
599 return makeCFArray(generate, container.begin(), container.end());
600 }
601
602 CFArrayRef makeCFArray(CFIndex count, ...) CF_RETURNS_RETAINED;
603 CFMutableArrayRef makeCFMutableArray(CFIndex count, ...) CF_RETURNS_RETAINED;
604
605
606 } // end namespace Security
607
608 #endif //_H_CFUTILITIES