]> git.saurik.com Git - apple/configd.git/blob - SystemConfiguration.fproj/SCDNotifierWait.c
configd-84.6.tar.gz
[apple/configd.git] / SystemConfiguration.fproj / SCDNotifierWait.c
1 /*
2 * Copyright (c) 2000 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 * Modification History
26 *
27 * June 1, 2001 Allan Nathanson <ajn@apple.com>
28 * - public API conversion
29 *
30 * March 31, 2000 Allan Nathanson <ajn@apple.com>
31 * - initial revision
32 */
33
34 #include <mach/mach.h>
35 #include <mach/mach_error.h>
36
37 #include <SystemConfiguration/SystemConfiguration.h>
38 #include <SystemConfiguration/SCPrivate.h>
39 #include "SCDynamicStoreInternal.h"
40 #include "config.h" /* MiG generated file */
41
42 static mach_msg_id_t
43 waitForMachMessage(mach_port_t port)
44 {
45 kern_return_t status;
46 mach_msg_empty_rcv_t *buf;
47
48 mach_msg_size_t size = sizeof(mach_msg_empty_t) + MAX_TRAILER_SIZE;
49
50 status = vm_allocate(mach_task_self(), (vm_address_t *)&buf, size, TRUE);
51 if (status != KERN_SUCCESS) {
52 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("vm_allocate(): %s"), mach_error_string(status));
53 return -1;
54 }
55
56 status = mach_msg(&buf->header, /* msg */
57 MACH_RCV_MSG, /* options */
58 0, /* send_size */
59 size, /* rcv_size */
60 port, /* rcv_name */
61 MACH_MSG_TIMEOUT_NONE, /* timeout */
62 MACH_PORT_NULL); /* notify */
63 if (status != KERN_SUCCESS) {
64 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("mach_msg(): %s"), mach_error_string(status));
65 return -1;
66 }
67
68 return buf->header.msgh_id;
69 }
70
71
72 Boolean
73 SCDynamicStoreNotifyWait(SCDynamicStoreRef store)
74 {
75 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
76 kern_return_t status;
77 mach_port_t port;
78 mach_port_t oldNotify;
79 int sc_status;
80 mach_msg_id_t msgid;
81
82 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("SCDynamicStoreNotifyWait:"));
83
84 if (!store) {
85 /* sorry, you must provide a session */
86 _SCErrorSet(kSCStatusNoStoreSession);
87 return FALSE;
88 }
89
90 if (storePrivate->server == MACH_PORT_NULL) {
91 /* sorry, you must have an open session to play */
92 _SCErrorSet(kSCStatusNoStoreServer);
93 return FALSE;
94 }
95
96 if (storePrivate->notifyStatus != NotifierNotRegistered) {
97 /* sorry, you can only have one notification registered at once */
98 _SCErrorSet(kSCStatusNotifierActive);
99 return FALSE;
100 }
101
102 /* Allocating port (for server response) */
103 status = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port);
104 if (status != KERN_SUCCESS) {
105 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("mach_port_allocate(): %s"), mach_error_string(status));
106 _SCErrorSet(status);
107 return FALSE;
108 }
109 SCLog(_sc_verbose, LOG_DEBUG, CFSTR(" port = %d"), port);
110
111 status = mach_port_insert_right(mach_task_self(),
112 port,
113 port,
114 MACH_MSG_TYPE_MAKE_SEND);
115 if (status != KERN_SUCCESS) {
116 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("mach_port_insert_right(): %s"), mach_error_string(status));
117 (void) mach_port_destroy(mach_task_self(), port);
118 _SCErrorSet(status);
119 return FALSE;
120 }
121
122 /* Request a notification when/if the server dies */
123 status = mach_port_request_notification(mach_task_self(),
124 port,
125 MACH_NOTIFY_NO_SENDERS,
126 1,
127 port,
128 MACH_MSG_TYPE_MAKE_SEND_ONCE,
129 &oldNotify);
130 if (status != KERN_SUCCESS) {
131 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("mach_port_request_notification(): %s"), mach_error_string(status));
132 (void) mach_port_destroy(mach_task_self(), port);
133 _SCErrorSet(status);
134 return FALSE;
135 }
136
137 if (oldNotify != MACH_PORT_NULL) {
138 SCLog(_sc_verbose, LOG_ERR, CFSTR("SCDynamicStoreNotifyWait(): why is oldNotify != MACH_PORT_NULL?"));
139 }
140
141 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("Requesting notification via mach port %d"), port);
142 status = notifyviaport(storePrivate->server,
143 port,
144 0,
145 (int *)&sc_status);
146
147 if (status != KERN_SUCCESS) {
148 if (status != MACH_SEND_INVALID_DEST)
149 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("notifyviaport(): %s"), mach_error_string(status));
150 (void) mach_port_destroy(mach_task_self(), storePrivate->server);
151 storePrivate->server = MACH_PORT_NULL;
152 _SCErrorSet(status);
153 return FALSE;
154 }
155
156 if (sc_status != kSCStatusOK) {
157 _SCErrorSet(sc_status);
158 return FALSE;
159 }
160
161 /* set notifier active */
162 storePrivate->notifyStatus = Using_NotifierWait;
163
164 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("Waiting..."));
165
166 msgid = waitForMachMessage(port);
167
168 /* set notifier inactive */
169 storePrivate->notifyStatus = NotifierNotRegistered;
170
171 if (msgid == MACH_NOTIFY_NO_SENDERS) {
172 /* the server closed the notifier port */
173 SCLog(_sc_verbose, LOG_DEBUG, CFSTR(" notifier port closed, destroying port %d"), port);
174 _SCErrorSet(kSCStatusNoStoreServer);
175 return FALSE;
176 }
177
178 if (msgid == -1) {
179 /* one of the mach routines returned an error */
180 SCLog(_sc_verbose, LOG_DEBUG, CFSTR(" communication with server failed, destroying port %d"), port);
181 (void) mach_port_destroy(mach_task_self(), port);
182 _SCErrorSet(kSCStatusNoStoreServer);
183 return FALSE;
184 }
185
186 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("Something changed, cancelling notification request"));
187 status = notifycancel(storePrivate->server,
188 (int *)&sc_status);
189
190 if (status != KERN_SUCCESS) {
191 if (status != MACH_SEND_INVALID_DEST)
192 SCLog(_sc_verbose, LOG_DEBUG, CFSTR("notifycancel(): %s"), mach_error_string(status));
193 (void) mach_port_destroy(mach_task_self(), storePrivate->server);
194 storePrivate->server = MACH_PORT_NULL;
195 _SCErrorSet(status);
196 return FALSE;
197 }
198
199 (void) mach_port_destroy(mach_task_self(), port);
200
201 return TRUE;
202 }