]> git.saurik.com Git - apple/configd.git/blob - SystemConfiguration.fproj/SCDList.c
configd-53.1.tar.gz
[apple/configd.git] / SystemConfiguration.fproj / SCDList.c
1 /*
2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22
23 /*
24 * Modification History
25 *
26 * June 1, 2001 Allan Nathanson <ajn@apple.com>
27 * - public API conversion
28 *
29 * March 24, 2000 Allan Nathanson <ajn@apple.com>
30 * - initial revision
31 */
32
33 #include <mach/mach.h>
34 #include <mach/mach_error.h>
35
36 #include <SystemConfiguration/SystemConfiguration.h>
37 #include <SystemConfiguration/SCPrivate.h>
38 #include "SCDynamicStoreInternal.h"
39 #include "config.h" /* MiG generated file */
40
41 CFArrayRef
42 SCDynamicStoreCopyKeyList(SCDynamicStoreRef store, CFStringRef pattern)
43 {
44 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
45 kern_return_t status;
46 CFDataRef xmlPattern; /* serialized pattern */
47 xmlData_t myPatternRef;
48 CFIndex myPatternLen;
49 xmlDataOut_t xmlDataRef; /* serialized data */
50 int xmlDataLen;
51 int sc_status;
52 CFArrayRef allKeys;
53
54 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("SCDynamicStoreCopyKeyList:"));
55 SCLog(_sc_verbose, LOG_DEBUG, CFSTR(" pattern = %@"), pattern);
56
57 if (!store) {
58 /* sorry, you must provide a session */
59 _SCErrorSet(kSCStatusNoStoreSession);
60 return NULL;
61 }
62
63 if (storePrivate->server == MACH_PORT_NULL) {
64 _SCErrorSet(kSCStatusNoStoreServer);
65 return NULL;
66 }
67
68 /* serialize the pattern */
69 if (!_SCSerialize(pattern, &xmlPattern, (void **)&myPatternRef, &myPatternLen)) {
70 _SCErrorSet(kSCStatusFailed);
71 return NULL;
72 }
73
74 /* send the pattern & fetch the associated data from the server */
75 status = configlist(storePrivate->server,
76 myPatternRef,
77 myPatternLen,
78 TRUE, /* isRegex == TRUE */
79 &xmlDataRef,
80 &xmlDataLen,
81 (int *)&sc_status);
82
83 /* clean up */
84 CFRelease(xmlPattern);
85
86 if (status != KERN_SUCCESS) {
87 if (status != MACH_SEND_INVALID_DEST)
88 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("configlist(): %s"), mach_error_string(status));
89 (void) mach_port_destroy(mach_task_self(), storePrivate->server);
90 storePrivate->server = MACH_PORT_NULL;
91 _SCErrorSet(status);
92 return NULL;
93 }
94
95 if (sc_status != kSCStatusOK) {
96 status = vm_deallocate(mach_task_self(), (vm_address_t)xmlDataRef, xmlDataLen);
97 if (status != KERN_SUCCESS) {
98 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("vm_deallocate(): %s"), mach_error_string(status));
99 /* non-fatal???, proceed */
100 }
101 _SCErrorSet(sc_status);
102 return NULL;
103 }
104
105 /* un-serialize the list of keys */
106 if (!_SCUnserialize((CFPropertyListRef *)&allKeys, xmlDataRef, xmlDataLen)) {
107 _SCErrorSet(kSCStatusFailed);
108 return NULL;
109 }
110
111 return allKeys;
112 }