]> git.saurik.com Git - apple/xnu.git/blob - osfmk/kern/ipc_sync.c
xnu-3248.30.4.tar.gz
[apple/xnu.git] / osfmk / kern / ipc_sync.c
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 * @OSF_COPYRIGHT@
30 *
31 */
32
33 #include <kern/sync_sema.h>
34 #include <kern/sync_lock.h>
35 #include <kern/ipc_kobject.h>
36 #include <kern/ipc_sync.h>
37 #include <ipc/port.h>
38 #include <ipc/ipc_space.h>
39 #include <ipc/ipc_port.h>
40 #include <mach/mach_types.h>
41 #include <mach/semaphore.h>
42 #include <mach/lock_set_server.h>
43 #include <mach/mach_port_server.h>
44 #include <mach/port.h>
45
46
47 /*
48 * Routine: port_name_to_semaphore
49 * Purpose:
50 * Convert from a port name in the current space to a semaphore.
51 * Produces a semaphore ref, which may be null.
52 * Conditions:
53 * Nothing locked.
54 */
55 kern_return_t
56 port_name_to_semaphore(
57 mach_port_name_t name,
58 semaphore_t *semaphorep)
59 {
60 ipc_port_t kern_port;
61 kern_return_t kr;
62
63 if (!MACH_PORT_VALID(name)) {
64 *semaphorep = SEMAPHORE_NULL;
65 return KERN_INVALID_NAME;
66 }
67
68 kr = ipc_object_translate(current_space(), name, MACH_PORT_RIGHT_SEND,
69 (ipc_object_t *) &kern_port);
70 if (kr != KERN_SUCCESS) {
71 *semaphorep = SEMAPHORE_NULL;
72 return kr;
73 }
74 /* have the port locked */
75 assert(IP_VALID(kern_port));
76
77 *semaphorep = convert_port_to_semaphore(kern_port);
78 ip_unlock(kern_port);
79
80 return KERN_SUCCESS;
81 }
82
83 /*
84 * Routine: convert_port_to_semaphore
85 * Purpose:
86 * Convert from a port to a semaphore.
87 * Doesn't consume the port [send-right] ref;
88 * produces a semaphore ref, which may be null.
89 * Conditions:
90 * Caller has a send-right reference to port.
91 * Port may or may not be locked.
92 */
93 semaphore_t
94 convert_port_to_semaphore (ipc_port_t port)
95 {
96
97 if (IP_VALID(port)) {
98 semaphore_t semaphore;
99
100 /*
101 * No need to lock because we have a reference on the
102 * port, and if it is a true semaphore port, that reference
103 * keeps the semaphore bound to the port (and active).
104 */
105 if (ip_kotype(port) == IKOT_SEMAPHORE) {
106 assert(ip_active(port));
107 semaphore = (semaphore_t) port->ip_kobject;
108 semaphore_reference(semaphore);
109 return (semaphore);
110 }
111 }
112 return SEMAPHORE_NULL;
113 }
114
115
116 /*
117 * Routine: convert_semaphore_to_port
118 * Purpose:
119 * Convert a semaphore reference to a send right to a
120 * semaphore port.
121 *
122 * Consumes the semaphore reference. If the semaphore
123 * port currently has no send rights (or doesn't exist
124 * yet), the reference is donated to the port to represent
125 * all extant send rights collectively.
126 */
127 ipc_port_t
128 convert_semaphore_to_port (semaphore_t semaphore)
129 {
130 ipc_port_t port, send;
131
132 if (semaphore == SEMAPHORE_NULL)
133 return (IP_NULL);
134
135 /* caller is donating a reference */
136 port = semaphore->port;
137
138 if (!IP_VALID(port)) {
139 port = ipc_port_alloc_kernel();
140 assert(IP_VALID(port));
141 ipc_kobject_set_atomically(port, (ipc_kobject_t) semaphore, IKOT_SEMAPHORE);
142
143 /* If we lose the race, deallocate and pick up the other guy's port */
144 if (!OSCompareAndSwapPtr(IP_NULL, port, &semaphore->port)) {
145 ipc_port_dealloc_kernel(port);
146 port = semaphore->port;
147 assert(ip_kotype(port) == IKOT_SEMAPHORE);
148 assert(port->ip_kobject == (ipc_kobject_t)semaphore);
149 }
150 }
151
152 ip_lock(port);
153 assert(ip_active(port));
154 send = ipc_port_make_send_locked(port);
155
156 if (1 == port->ip_srights) {
157 ipc_port_t old_notify;
158
159 /* transfer our ref to the port, and arm the no-senders notification */
160 assert(IP_NULL == port->ip_nsrequest);
161 ipc_port_nsrequest(port, port->ip_mscount, ipc_port_make_sonce_locked(port), &old_notify);
162 /* port unlocked */
163 assert(IP_NULL == old_notify);
164 } else {
165 /* piggyback on the existing port reference, so consume ours */
166 ip_unlock(port);
167 semaphore_dereference(semaphore);
168 }
169 return (send);
170 }
171
172 /*
173 * Routine: semaphore_notify
174 * Purpose:
175 * Called whenever the Mach port system detects no-senders
176 * on the semaphore port.
177 *
178 * When a send-right is first created, a no-senders
179 * notification is armed (and a semaphore reference is donated).
180 *
181 * A no-senders notification will be posted when no one else holds a
182 * send-right (reference) to the semaphore's port. This notification function
183 * will consume the semaphore reference donated to the extant collection of
184 * send-rights.
185 */
186 void
187 semaphore_notify(mach_msg_header_t *msg)
188 {
189 mach_no_senders_notification_t *notification = (void *)msg;
190 ipc_port_t port = notification->not_header.msgh_remote_port;
191 semaphore_t semaphore;
192
193 assert(ip_active(port));
194 assert(IKOT_SEMAPHORE == ip_kotype(port));
195 semaphore = (semaphore_t)port->ip_kobject;
196
197 semaphore_dereference(semaphore);
198 }
199
200 lock_set_t
201 convert_port_to_lock_set (__unused ipc_port_t port)
202 {
203 return (LOCK_SET_NULL);
204 }
205
206 ipc_port_t
207 convert_lock_set_to_port (__unused lock_set_t lock_set)
208 {
209 return (IP_NULL);
210 }
211