]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (c) 2014 Apple 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 | /* CFMachPort.c | |
25 | Copyright (c) 1998-2014, Apple Inc. All rights reserved. | |
26 | Responsibility: Christopher Kane | |
27 | */ | |
28 | ||
29 | #include <CoreFoundation/CFMachPort.h> | |
30 | #include <CoreFoundation/CFRunLoop.h> | |
31 | #include <CoreFoundation/CFArray.h> | |
32 | #include <dispatch/dispatch.h> | |
33 | #include <dispatch/private.h> | |
34 | #include <mach/mach.h> | |
35 | #include <dlfcn.h> | |
36 | #include <stdio.h> | |
37 | #include "CFInternal.h" | |
38 | ||
39 | ||
40 | #define AVOID_WEAK_COLLECTIONS 1 | |
41 | ||
42 | #if !AVOID_WEAK_COLLECTIONS | |
43 | #import "CFPointerArray.h" | |
44 | #endif | |
45 | ||
46 | static dispatch_queue_t _CFMachPortQueue() { | |
47 | static volatile dispatch_queue_t __CFMachPortQueue = NULL; | |
48 | static dispatch_once_t onceToken; | |
49 | dispatch_once(&onceToken, ^{ | |
50 | dispatch_queue_attr_t dqattr = dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL, QOS_CLASS_BACKGROUND, 0); | |
51 | __CFMachPortQueue = dispatch_queue_create("com.apple.CFMachPort", dqattr); | |
52 | }); | |
53 | return __CFMachPortQueue; | |
54 | } | |
55 | ||
56 | ||
57 | enum { | |
58 | kCFMachPortStateReady = 0, | |
59 | kCFMachPortStateInvalidating = 1, | |
60 | kCFMachPortStateInvalid = 2, | |
61 | kCFMachPortStateDeallocating = 3 | |
62 | }; | |
63 | ||
64 | struct __CFMachPort { | |
65 | CFRuntimeBase _base; | |
66 | int32_t _state; | |
67 | mach_port_t _port; /* immutable */ | |
68 | dispatch_source_t _dsrc; /* protected by _lock */ | |
69 | dispatch_semaphore_t _dsrc_sem; /* protected by _lock */ | |
70 | CFMachPortInvalidationCallBack _icallout; /* protected by _lock */ | |
71 | CFRunLoopSourceRef _source; /* immutable, once created */ | |
72 | CFMachPortCallBack _callout; /* immutable */ | |
73 | CFMachPortContext _context; /* immutable */ | |
74 | CFLock_t _lock; | |
75 | const void *(*retain)(const void *info); // use these to store the real callbacks | |
76 | void (*release)(const void *info); | |
77 | }; | |
78 | ||
79 | /* Bit 1 in the base reserved bits is used for has-receive-ref state */ | |
80 | /* Bit 2 in the base reserved bits is used for has-send-ref state */ | |
81 | /* Bit 3 in the base reserved bits is used for has-send-ref2 state */ | |
82 | ||
83 | CF_INLINE Boolean __CFMachPortHasReceive(CFMachPortRef mp) { | |
84 | return (Boolean)__CFBitfieldGetValue(((const CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 1, 1); | |
85 | } | |
86 | ||
87 | CF_INLINE void __CFMachPortSetHasReceive(CFMachPortRef mp) { | |
88 | __CFBitfieldSetValue(((CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 1, 1, 1); | |
89 | } | |
90 | ||
91 | CF_INLINE Boolean __CFMachPortHasSend(CFMachPortRef mp) { | |
92 | return (Boolean)__CFBitfieldGetValue(((const CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 2, 2); | |
93 | } | |
94 | ||
95 | CF_INLINE void __CFMachPortSetHasSend(CFMachPortRef mp) { | |
96 | __CFBitfieldSetValue(((CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 2, 2, 1); | |
97 | } | |
98 | ||
99 | CF_INLINE Boolean __CFMachPortHasSend2(CFMachPortRef mp) { | |
100 | return (Boolean)__CFBitfieldGetValue(((const CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 3, 3); | |
101 | } | |
102 | /* | |
103 | //TODO we should either use this or delete the entire Send2 flag concept | |
104 | CF_INLINE void __CFMachPortSetHasSend2(CFMachPortRef mp) { | |
105 | __CFBitfieldSetValue(((CFRuntimeBase *)mp)->_cfinfo[CF_INFO_BITS], 3, 3, 1); | |
106 | } | |
107 | */ | |
108 | CF_INLINE Boolean __CFMachPortIsValid(CFMachPortRef mp) { | |
109 | return kCFMachPortStateReady == mp->_state; | |
110 | } | |
111 | ||
112 | ||
113 | void _CFMachPortInstallNotifyPort(CFRunLoopRef rl, CFStringRef mode) { | |
114 | } | |
115 | ||
116 | static Boolean __CFMachPortEqual(CFTypeRef cf1, CFTypeRef cf2) { | |
117 | CFMachPortRef mp1 = (CFMachPortRef)cf1; | |
118 | CFMachPortRef mp2 = (CFMachPortRef)cf2; | |
119 | return (mp1->_port == mp2->_port); | |
120 | } | |
121 | ||
122 | static CFHashCode __CFMachPortHash(CFTypeRef cf) { | |
123 | CFMachPortRef mp = (CFMachPortRef)cf; | |
124 | return (CFHashCode)mp->_port; | |
125 | } | |
126 | ||
127 | static CFStringRef __CFMachPortCopyDescription(CFTypeRef cf) { | |
128 | CFMachPortRef mp = (CFMachPortRef)cf; | |
129 | CFStringRef contextDesc = NULL; | |
130 | if (NULL != mp->_context.info && NULL != mp->_context.copyDescription) { | |
131 | contextDesc = mp->_context.copyDescription(mp->_context.info); | |
132 | } | |
133 | if (NULL == contextDesc) { | |
134 | contextDesc = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFMachPort context %p>"), mp->_context.info); | |
135 | } | |
136 | Dl_info info; | |
137 | void *addr = mp->_callout; | |
138 | const char *name = (dladdr(addr, &info) && info.dli_saddr == addr && info.dli_sname) ? info.dli_sname : "???"; | |
139 | CFStringRef result = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFMachPort %p [%p]>{valid = %s, port = %x, source = %p, callout = %s (%p), context = %@}"), cf, CFGetAllocator(mp), (__CFMachPortIsValid(mp) ? "Yes" : "No"), mp->_port, mp->_source, name, addr, contextDesc); | |
140 | if (NULL != contextDesc) { | |
141 | CFRelease(contextDesc); | |
142 | } | |
143 | return result; | |
144 | } | |
145 | ||
146 | // Only call with mp->_lock locked | |
147 | CF_INLINE void __CFMachPortInvalidateLocked(CFRunLoopSourceRef source, CFMachPortRef mp) { | |
148 | CFMachPortInvalidationCallBack cb = mp->_icallout; | |
149 | if (cb) { | |
150 | __CFUnlock(&mp->_lock); | |
151 | cb(mp, mp->_context.info); | |
152 | __CFLock(&mp->_lock); | |
153 | } | |
154 | if (NULL != source) { | |
155 | __CFUnlock(&mp->_lock); | |
156 | CFRunLoopSourceInvalidate(source); | |
157 | CFRelease(source); | |
158 | __CFLock(&mp->_lock); | |
159 | } | |
160 | void *info = mp->_context.info; | |
161 | void (*release)(const void *info) = mp->release; | |
162 | mp->_context.info = NULL; | |
163 | if (release) { | |
164 | __CFUnlock(&mp->_lock); | |
165 | release(info); | |
166 | __CFLock(&mp->_lock); | |
167 | } | |
168 | mp->_state = kCFMachPortStateInvalid; | |
169 | OSMemoryBarrier(); | |
170 | } | |
171 | ||
172 | static void __CFMachPortDeallocate(CFTypeRef cf) { | |
173 | CHECK_FOR_FORK_RET(); | |
174 | CFMachPortRef mp = (CFMachPortRef)cf; | |
175 | ||
176 | // CFMachPortRef is invalid before we get here, except under GC | |
177 | __CFLock(&mp->_lock); | |
178 | CFRunLoopSourceRef source = NULL; | |
179 | Boolean wasReady = (mp->_state == kCFMachPortStateReady); | |
180 | if (wasReady) { | |
181 | mp->_state = kCFMachPortStateInvalidating; | |
182 | OSMemoryBarrier(); | |
183 | if (mp->_dsrc) { | |
184 | dispatch_source_cancel(mp->_dsrc); | |
185 | mp->_dsrc = NULL; | |
186 | } | |
187 | source = mp->_source; | |
188 | mp->_source = NULL; | |
189 | } | |
190 | if (wasReady) { | |
191 | __CFMachPortInvalidateLocked(source, mp); | |
192 | } | |
193 | mp->_state = kCFMachPortStateDeallocating; | |
194 | ||
195 | // hand ownership of the port and semaphores to the block below | |
196 | mach_port_t port = mp->_port; | |
197 | dispatch_semaphore_t sem1 = mp->_dsrc_sem; | |
198 | Boolean doSend2 = __CFMachPortHasSend2(mp), doSend = __CFMachPortHasSend(mp), doReceive = __CFMachPortHasReceive(mp); | |
199 | ||
200 | __CFUnlock(&mp->_lock); | |
201 | ||
202 | dispatch_async(__CFDispatchQueueGetGenericBackground(), ^{ | |
203 | if (sem1) { | |
204 | dispatch_semaphore_wait(sem1, DISPATCH_TIME_FOREVER); | |
205 | // immediate release is only safe if dispatch_semaphore_signal() does not touch the semaphore after doing the signal bit | |
206 | dispatch_release(sem1); | |
207 | } | |
208 | ||
209 | // MUST deallocate the send right FIRST if necessary, | |
210 | // then the receive right if necessary. Don't ask me why; | |
211 | // if it's done in the other order the port will leak. | |
212 | if (doSend2) { | |
213 | mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_SEND, -1); | |
214 | } | |
215 | if (doSend) { | |
216 | mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_SEND, -1); | |
217 | } | |
218 | if (doReceive) { | |
219 | mach_port_mod_refs(mach_task_self(), port, MACH_PORT_RIGHT_RECEIVE, -1); | |
220 | } | |
221 | }); | |
222 | } | |
223 | ||
224 | // This lock protects __CFAllMachPorts. Take before any instance-specific lock. | |
225 | static CFLock_t __CFAllMachPortsLock = CFLockInit; | |
226 | ||
227 | #if AVOID_WEAK_COLLECTIONS | |
228 | static CFMutableArrayRef __CFAllMachPorts = NULL; | |
229 | #else | |
230 | static __CFPointerArray *__CFAllMachPorts = nil; | |
231 | #endif | |
232 | ||
233 | static Boolean __CFMachPortCheck(mach_port_t) __attribute__((noinline)); | |
234 | static Boolean __CFMachPortCheck(mach_port_t port) { | |
235 | mach_port_type_t type = 0; | |
236 | kern_return_t ret = mach_port_type(mach_task_self(), port, &type); | |
237 | return (KERN_SUCCESS != ret || (0 == (type & MACH_PORT_TYPE_PORT_RIGHTS))) ? false : true; | |
238 | } | |
239 | ||
240 | static void __CFMachPortChecker(Boolean fromTimer) { | |
241 | __CFLock(&__CFAllMachPortsLock); // take this lock first before any instance-specific lock | |
242 | #if AVOID_WEAK_COLLECTIONS | |
243 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? CFArrayGetCount(__CFAllMachPorts) : 0; idx < cnt; idx++) { | |
244 | CFMachPortRef mp = (CFMachPortRef)CFArrayGetValueAtIndex(__CFAllMachPorts, idx); | |
245 | #else | |
246 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? [__CFAllMachPorts count] : 0; idx < cnt; idx++) { | |
247 | CFMachPortRef mp = (CFMachPortRef)[__CFAllMachPorts pointerAtIndex:idx]; | |
248 | #endif | |
249 | if (!mp) continue; | |
250 | // second clause cleans no-longer-wanted CFMachPorts out of our strong table | |
251 | if (!__CFMachPortCheck(mp->_port) || (!kCFUseCollectableAllocator && 1 == CFGetRetainCount(mp))) { | |
252 | CFRunLoopSourceRef source = NULL; | |
253 | Boolean wasReady = (mp->_state == kCFMachPortStateReady); | |
254 | if (wasReady) { | |
255 | __CFLock(&mp->_lock); // take this lock second | |
256 | mp->_state = kCFMachPortStateInvalidating; | |
257 | OSMemoryBarrier(); | |
258 | if (mp->_dsrc) { | |
259 | dispatch_source_cancel(mp->_dsrc); | |
260 | mp->_dsrc = NULL; | |
261 | } | |
262 | source = mp->_source; | |
263 | mp->_source = NULL; | |
264 | CFRetain(mp); | |
265 | __CFUnlock(&mp->_lock); | |
266 | dispatch_async(dispatch_get_main_queue(), ^{ | |
267 | // We can grab the mach port-specific spin lock here since we're no longer on the same thread as the one taking the all mach ports spin lock. | |
268 | // But be sure to release it during callouts | |
269 | __CFLock(&mp->_lock); | |
270 | __CFMachPortInvalidateLocked(source, mp); | |
271 | __CFUnlock(&mp->_lock); | |
272 | CFRelease(mp); | |
273 | }); | |
274 | } | |
275 | #if AVOID_WEAK_COLLECTIONS | |
276 | CFArrayRemoveValueAtIndex(__CFAllMachPorts, idx); | |
277 | #else | |
278 | [__CFAllMachPorts removePointerAtIndex:idx]; | |
279 | #endif | |
280 | idx--; | |
281 | cnt--; | |
282 | } | |
283 | } | |
284 | #if !AVOID_WEAK_COLLECTIONS | |
285 | [__CFAllMachPorts compact]; | |
286 | #endif | |
287 | __CFUnlock(&__CFAllMachPortsLock); | |
288 | }; | |
289 | ||
290 | ||
291 | static CFTypeID __kCFMachPortTypeID = _kCFRuntimeNotATypeID; | |
292 | ||
293 | static const CFRuntimeClass __CFMachPortClass = { | |
294 | 0, | |
295 | "CFMachPort", | |
296 | NULL, // init | |
297 | NULL, // copy | |
298 | __CFMachPortDeallocate, | |
299 | __CFMachPortEqual, | |
300 | __CFMachPortHash, | |
301 | NULL, // | |
302 | __CFMachPortCopyDescription | |
303 | }; | |
304 | ||
305 | CFTypeID CFMachPortGetTypeID(void) { | |
306 | static dispatch_once_t initOnce; | |
307 | dispatch_once(&initOnce, ^{ __kCFMachPortTypeID = _CFRuntimeRegisterClass(&__CFMachPortClass); }); | |
308 | return __kCFMachPortTypeID; | |
309 | } | |
310 | ||
311 | /* Note: any receive or send rights that the port contains coming in will | |
312 | * not be cleaned up by CFMachPort; it will increment and decrement | |
313 | * references on the port if the kernel ever allows that in the future, | |
314 | * but will not cleanup any references you got when you got the port. */ | |
315 | CFMachPortRef _CFMachPortCreateWithPort2(CFAllocatorRef allocator, mach_port_t port, CFMachPortCallBack callout, CFMachPortContext *context, Boolean *shouldFreeInfo, Boolean deathWatch) { | |
316 | if (shouldFreeInfo) *shouldFreeInfo = true; | |
317 | CHECK_FOR_FORK_RET(NULL); | |
318 | ||
319 | mach_port_type_t type = 0; | |
320 | kern_return_t ret = mach_port_type(mach_task_self(), port, &type); | |
321 | if (KERN_SUCCESS != ret || (0 == (type & MACH_PORT_TYPE_PORT_RIGHTS))) { | |
322 | if (type & ~MACH_PORT_TYPE_DEAD_NAME) { | |
323 | CFLog(kCFLogLevelError, CFSTR("*** CFMachPortCreateWithPort(): bad Mach port parameter (0x%lx) or unsupported mysterious kind of Mach port (%d, %ld)"), (unsigned long)port, ret, (unsigned long)type); | |
324 | } | |
325 | return NULL; | |
326 | } | |
327 | ||
328 | #if 0 | |
329 | static dispatch_source_t timerSource = NULL; | |
330 | static dispatch_once_t onceToken; | |
331 | dispatch_once(&onceToken, ^{ | |
332 | timerSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_INTERVAL, 60 * 1000 /* milliseconds */, 0, _CFMachPortQueue()); | |
333 | dispatch_source_set_event_handler(timerSource, ^{ | |
334 | __CFMachPortChecker(true); | |
335 | }); | |
336 | dispatch_resume(timerSource); | |
337 | }); | |
338 | #endif | |
339 | ||
340 | CFMachPortRef mp = NULL; | |
341 | __CFLock(&__CFAllMachPortsLock); | |
342 | #if AVOID_WEAK_COLLECTIONS | |
343 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? CFArrayGetCount(__CFAllMachPorts) : 0; idx < cnt; idx++) { | |
344 | CFMachPortRef p = (CFMachPortRef)CFArrayGetValueAtIndex(__CFAllMachPorts, idx); | |
345 | if (p && p->_port == port) { | |
346 | CFRetain(p); | |
347 | mp = p; | |
348 | break; | |
349 | } | |
350 | } | |
351 | #else | |
352 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? [__CFAllMachPorts count] : 0; idx < cnt; idx++) { | |
353 | CFMachPortRef p = (CFMachPortRef)[__CFAllMachPorts pointerAtIndex:idx]; | |
354 | if (p && p->_port == port) { | |
355 | CFRetain(p); | |
356 | mp = p; | |
357 | break; | |
358 | } | |
359 | } | |
360 | #endif | |
361 | __CFUnlock(&__CFAllMachPortsLock); | |
362 | ||
363 | if (!mp) { | |
364 | CFIndex size = sizeof(struct __CFMachPort) - sizeof(CFRuntimeBase); | |
365 | CFMachPortRef memory = (CFMachPortRef)_CFRuntimeCreateInstance(allocator, CFMachPortGetTypeID(), size, NULL); | |
366 | if (NULL == memory) { | |
367 | return NULL; | |
368 | } | |
369 | memory->_port = port; | |
370 | memory->_dsrc = NULL; | |
371 | memory->_dsrc_sem = NULL; | |
372 | memory->_icallout = NULL; | |
373 | memory->_source = NULL; | |
374 | memory->_context.info = NULL; | |
375 | memory->_context.retain = NULL; | |
376 | memory->_context.release = NULL; | |
377 | memory->_context.copyDescription = NULL; | |
378 | memory->retain = NULL; | |
379 | memory->release = NULL; | |
380 | memory->_callout = callout; | |
381 | memory->_lock = CFLockInit; | |
382 | if (NULL != context) { | |
383 | objc_memmove_collectable(&memory->_context, context, sizeof(CFMachPortContext)); | |
384 | memory->_context.info = context->retain ? (void *)context->retain(context->info) : context->info; | |
385 | memory->retain = context->retain; | |
386 | memory->release = context->release; | |
387 | memory->_context.retain = (void *)0xAAAAAAAAAACCCAAA; | |
388 | memory->_context.release = (void *)0xAAAAAAAAAABBBAAA; | |
389 | } | |
390 | memory->_state = kCFMachPortStateReady; | |
391 | __CFLock(&__CFAllMachPortsLock); | |
392 | #if AVOID_WEAK_COLLECTIONS | |
393 | if (!__CFAllMachPorts) __CFAllMachPorts = CFArrayCreateMutable(kCFAllocatorSystemDefault, 0, &kCFTypeArrayCallBacks); | |
394 | CFArrayAppendValue(__CFAllMachPorts, memory); | |
395 | #else | |
396 | if (!__CFAllMachPorts) __CFAllMachPorts = [[__CFPointerArray alloc] initWithOptions:(kCFUseCollectableAllocator ? CFPointerFunctionsZeroingWeakMemory : CFPointerFunctionsStrongMemory)]; | |
397 | [__CFAllMachPorts addPointer:memory]; | |
398 | #endif | |
399 | __CFUnlock(&__CFAllMachPortsLock); | |
400 | mp = memory; | |
401 | if (shouldFreeInfo) *shouldFreeInfo = false; | |
402 | ||
403 | if (type & MACH_PORT_TYPE_SEND_RIGHTS) { | |
404 | dispatch_source_t theSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_MACH_SEND, port, DISPATCH_MACH_SEND_DEAD, _CFMachPortQueue()); | |
405 | if (theSource) { | |
406 | dispatch_semaphore_t sem = dispatch_semaphore_create(0); | |
407 | dispatch_source_set_cancel_handler(theSource, ^{ dispatch_semaphore_signal(sem); dispatch_release(theSource); }); | |
408 | dispatch_source_set_event_handler(theSource, ^{ __CFMachPortChecker(false); }); | |
409 | memory->_dsrc_sem = sem; | |
410 | memory->_dsrc = theSource; | |
411 | dispatch_resume(theSource); | |
412 | } | |
413 | } | |
414 | } | |
415 | ||
416 | if (mp && !CFMachPortIsValid(mp)) { // must do this outside lock to avoid deadlock | |
417 | CFRelease(mp); | |
418 | mp = NULL; | |
419 | } | |
420 | return mp; | |
421 | } | |
422 | ||
423 | CFMachPortRef CFMachPortCreateWithPort(CFAllocatorRef allocator, mach_port_t port, CFMachPortCallBack callout, CFMachPortContext *context, Boolean *shouldFreeInfo) { | |
424 | return _CFMachPortCreateWithPort2(allocator, port, callout, context, shouldFreeInfo, true); | |
425 | } | |
426 | ||
427 | CFMachPortRef CFMachPortCreate(CFAllocatorRef allocator, CFMachPortCallBack callout, CFMachPortContext *context, Boolean *shouldFreeInfo) { | |
428 | if (shouldFreeInfo) *shouldFreeInfo = true; | |
429 | CHECK_FOR_FORK_RET(NULL); | |
430 | mach_port_t port = MACH_PORT_NULL; | |
431 | kern_return_t ret = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port); | |
432 | if (KERN_SUCCESS == ret) { | |
433 | ret = mach_port_insert_right(mach_task_self(), port, port, MACH_MSG_TYPE_MAKE_SEND); | |
434 | } | |
435 | if (KERN_SUCCESS != ret) { | |
436 | if (MACH_PORT_NULL != port) mach_port_destroy(mach_task_self(), port); | |
437 | return NULL; | |
438 | } | |
439 | CFMachPortRef result = _CFMachPortCreateWithPort2(allocator, port, callout, context, shouldFreeInfo, true); | |
440 | if (NULL == result) { | |
441 | if (MACH_PORT_NULL != port) mach_port_destroy(mach_task_self(), port); | |
442 | return NULL; | |
443 | } | |
444 | __CFMachPortSetHasReceive(result); | |
445 | __CFMachPortSetHasSend(result); | |
446 | return result; | |
447 | } | |
448 | ||
449 | void CFMachPortInvalidate(CFMachPortRef mp) { | |
450 | CHECK_FOR_FORK_RET(); | |
451 | CF_OBJC_FUNCDISPATCHV(CFMachPortGetTypeID(), void, (NSMachPort *)mp, invalidate); | |
452 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
453 | CFRetain(mp); | |
454 | CFRunLoopSourceRef source = NULL; | |
455 | Boolean wasReady = false; | |
456 | __CFLock(&__CFAllMachPortsLock); // take this lock first | |
457 | __CFLock(&mp->_lock); | |
458 | wasReady = (mp->_state == kCFMachPortStateReady); | |
459 | if (wasReady) { | |
460 | mp->_state = kCFMachPortStateInvalidating; | |
461 | OSMemoryBarrier(); | |
462 | #if AVOID_WEAK_COLLECTIONS | |
463 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? CFArrayGetCount(__CFAllMachPorts) : 0; idx < cnt; idx++) { | |
464 | CFMachPortRef p = (CFMachPortRef)CFArrayGetValueAtIndex(__CFAllMachPorts, idx); | |
465 | if (p == mp) { | |
466 | CFArrayRemoveValueAtIndex(__CFAllMachPorts, idx); | |
467 | break; | |
468 | } | |
469 | } | |
470 | #else | |
471 | for (CFIndex idx = 0, cnt = __CFAllMachPorts ? [__CFAllMachPorts count] : 0; idx < cnt; idx++) { | |
472 | CFMachPortRef p = (CFMachPortRef)[__CFAllMachPorts pointerAtIndex:idx]; | |
473 | if (p == mp) { | |
474 | [__CFAllMachPorts removePointerAtIndex:idx]; | |
475 | break; | |
476 | } | |
477 | } | |
478 | #endif | |
479 | if (mp->_dsrc) { | |
480 | dispatch_source_cancel(mp->_dsrc); | |
481 | mp->_dsrc = NULL; | |
482 | } | |
483 | source = mp->_source; | |
484 | mp->_source = NULL; | |
485 | } | |
486 | __CFUnlock(&mp->_lock); | |
487 | __CFUnlock(&__CFAllMachPortsLock); // release this lock last | |
488 | if (wasReady) { | |
489 | __CFLock(&mp->_lock); | |
490 | __CFMachPortInvalidateLocked(source, mp); | |
491 | __CFUnlock(&mp->_lock); | |
492 | } | |
493 | CFRelease(mp); | |
494 | } | |
495 | ||
496 | mach_port_t CFMachPortGetPort(CFMachPortRef mp) { | |
497 | CHECK_FOR_FORK_RET(0); | |
498 | CF_OBJC_FUNCDISPATCHV(CFMachPortGetTypeID(), mach_port_t, (NSMachPort *)mp, machPort); | |
499 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
500 | return mp->_port; | |
501 | } | |
502 | ||
503 | void CFMachPortGetContext(CFMachPortRef mp, CFMachPortContext *context) { | |
504 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
505 | CFAssert1(0 == context->version, __kCFLogAssertion, "%s(): context version not initialized to 0", __PRETTY_FUNCTION__); | |
506 | objc_memmove_collectable(context, &mp->_context, sizeof(CFMachPortContext)); | |
507 | } | |
508 | ||
509 | Boolean CFMachPortIsValid(CFMachPortRef mp) { | |
510 | CF_OBJC_FUNCDISPATCHV(CFMachPortGetTypeID(), Boolean, (NSMachPort *)mp, isValid); | |
511 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
512 | if (!__CFMachPortIsValid(mp)) return false; | |
513 | mach_port_type_t type = 0; | |
514 | kern_return_t ret = mach_port_type(mach_task_self(), mp->_port, &type); | |
515 | if (KERN_SUCCESS != ret || (type & ~(MACH_PORT_TYPE_SEND|MACH_PORT_TYPE_SEND_ONCE|MACH_PORT_TYPE_RECEIVE|MACH_PORT_TYPE_DNREQUEST))) { | |
516 | return false; | |
517 | } | |
518 | return true; | |
519 | } | |
520 | ||
521 | CFMachPortInvalidationCallBack CFMachPortGetInvalidationCallBack(CFMachPortRef mp) { | |
522 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
523 | __CFLock(&mp->_lock); | |
524 | CFMachPortInvalidationCallBack cb = mp->_icallout; | |
525 | __CFUnlock(&mp->_lock); | |
526 | return cb; | |
527 | } | |
528 | ||
529 | /* After the CFMachPort has started going invalid, or done invalid, you can't change this, and | |
530 | we'll only do the callout directly on a transition from NULL to non-NULL. */ | |
531 | void CFMachPortSetInvalidationCallBack(CFMachPortRef mp, CFMachPortInvalidationCallBack callout) { | |
532 | CHECK_FOR_FORK_RET(); | |
533 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
534 | if (callout) { | |
535 | mach_port_type_t type = 0; | |
536 | kern_return_t ret = mach_port_type(mach_task_self(), mp->_port, &type); | |
537 | if (KERN_SUCCESS != ret || 0 == (type & MACH_PORT_TYPE_SEND_RIGHTS)) { | |
538 | CFLog(kCFLogLevelError, CFSTR("*** WARNING: CFMachPortSetInvalidationCallBack() called on a CFMachPort with a Mach port (0x%x) which does not have any send rights. This is not going to work. Callback function: %p"), mp->_port, callout); | |
539 | } | |
540 | } | |
541 | __CFLock(&mp->_lock); | |
542 | if (__CFMachPortIsValid(mp) || !callout) { | |
543 | mp->_icallout = callout; | |
544 | } else if (!mp->_icallout && callout) { | |
545 | __CFUnlock(&mp->_lock); | |
546 | callout(mp, mp->_context.info); | |
547 | __CFLock(&mp->_lock); | |
548 | } else { | |
549 | CFLog(kCFLogLevelWarning, CFSTR("CFMachPortSetInvalidationCallBack(): attempt to set invalidation callback (%p) on invalid CFMachPort (%p) thwarted"), callout, mp); | |
550 | } | |
551 | __CFUnlock(&mp->_lock); | |
552 | } | |
553 | ||
554 | /* Returns the number of messages queued for a receive port. */ | |
555 | CFIndex CFMachPortGetQueuedMessageCount(CFMachPortRef mp) { | |
556 | CHECK_FOR_FORK_RET(0); | |
557 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
558 | mach_port_status_t status; | |
559 | mach_msg_type_number_t num = MACH_PORT_RECEIVE_STATUS_COUNT; | |
560 | kern_return_t ret = mach_port_get_attributes(mach_task_self(), mp->_port, MACH_PORT_RECEIVE_STATUS, (mach_port_info_t)&status, &num); | |
561 | return (KERN_SUCCESS != ret) ? 0 : status.mps_msgcount; | |
562 | } | |
563 | ||
564 | static mach_port_t __CFMachPortGetPort(void *info) { | |
565 | CFMachPortRef mp = (CFMachPortRef)info; | |
566 | return mp->_port; | |
567 | } | |
568 | ||
569 | CF_PRIVATE void *__CFMachPortPerform(void *msg, CFIndex size, CFAllocatorRef allocator, void *info) { | |
570 | CHECK_FOR_FORK_RET(NULL); | |
571 | CFMachPortRef mp = (CFMachPortRef)info; | |
572 | __CFLock(&mp->_lock); | |
573 | Boolean isValid = __CFMachPortIsValid(mp); | |
574 | void *context_info = NULL; | |
575 | void (*context_release)(const void *) = NULL; | |
576 | if (isValid) { | |
577 | if (mp->retain) { | |
578 | context_info = (void *)mp->retain(mp->_context.info); | |
579 | context_release = mp->release; | |
580 | } else { | |
581 | context_info = mp->_context.info; | |
582 | } | |
583 | } | |
584 | __CFUnlock(&mp->_lock); | |
585 | if (isValid) { | |
586 | mp->_callout(mp, msg, size, context_info); | |
587 | ||
588 | if (context_release) { | |
589 | context_release(context_info); | |
590 | } | |
591 | CHECK_FOR_FORK_RET(NULL); | |
592 | } | |
593 | return NULL; | |
594 | } | |
595 | ||
596 | ||
597 | ||
598 | ||
599 | CFRunLoopSourceRef CFMachPortCreateRunLoopSource(CFAllocatorRef allocator, CFMachPortRef mp, CFIndex order) { | |
600 | CHECK_FOR_FORK_RET(NULL); | |
601 | __CFGenericValidateType(mp, CFMachPortGetTypeID()); | |
602 | if (!CFMachPortIsValid(mp)) return NULL; | |
603 | CFRunLoopSourceRef result = NULL; | |
604 | __CFLock(&mp->_lock); | |
605 | if (__CFMachPortIsValid(mp)) { | |
606 | if (NULL != mp->_source && !CFRunLoopSourceIsValid(mp->_source)) { | |
607 | CFRelease(mp->_source); | |
608 | mp->_source = NULL; | |
609 | } | |
610 | if (NULL == mp->_source) { | |
611 | CFRunLoopSourceContext1 context; | |
612 | context.version = 1; | |
613 | context.info = (void *)mp; | |
614 | context.retain = (const void *(*)(const void *))CFRetain; | |
615 | context.release = (void (*)(const void *))CFRelease; | |
616 | context.copyDescription = (CFStringRef (*)(const void *))__CFMachPortCopyDescription; | |
617 | context.equal = (Boolean (*)(const void *, const void *))__CFMachPortEqual; | |
618 | context.hash = (CFHashCode (*)(const void *))__CFMachPortHash; | |
619 | context.getPort = __CFMachPortGetPort; | |
620 | context.perform = __CFMachPortPerform; | |
621 | mp->_source = CFRunLoopSourceCreate(allocator, order, (CFRunLoopSourceContext *)&context); | |
622 | } | |
623 | result = mp->_source ? (CFRunLoopSourceRef)CFRetain(mp->_source) : NULL; | |
624 | } | |
625 | __CFUnlock(&mp->_lock); | |
626 | return result; | |
627 | } | |
628 |