1 /*
2 * Copyright (c) 2012-2016 Apple 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 #define PTHREAD_INTERNAL 1
30
31 #include <stdatomic.h>
32 #include <kern/debug.h>
33 #include <kern/mach_param.h>
34 #include <kern/sched_prim.h>
35 #include <kern/task.h>
36 #include <kern/thread.h>
37 #include <kern/affinity.h>
38 #include <kern/zalloc.h>
39 #include <kern/policy_internal.h>
40 #include <kern/sync_sema.h>
41
42 #include <machine/machine_routines.h>
43 #include <mach/task.h>
44 #include <mach/thread_act.h>
45 #include <sys/param.h>
46 #include <sys/eventvar.h>
47 #include <sys/pthread_shims.h>
48 #include <pthread/workqueue_internal.h>
49 #include <sys/cdefs.h>
50 #include <sys/proc_info.h>
51 #include <sys/proc_internal.h>
52 #include <sys/sysproto.h>
53 #include <sys/systm.h>
54 #include <sys/ulock.h>
55 #include <vm/vm_map.h>
56 #include <vm/vm_protos.h>
57 #include <kern/kcdata.h>
58
59 /* version number of the in-kernel shims given to pthread.kext */
60 #define PTHREAD_SHIMS_VERSION 1
61
62 /* on arm, the callbacks function has two #ifdef arm pointers */
63 #if defined(__arm__)
64 #define PTHREAD_CALLBACK_MEMBER __unused_was_map_is_1gb
65 #else
66 #define PTHREAD_CALLBACK_MEMBER kevent_workq_internal
67 #endif
68
69 /* compile time asserts to check the length of structures in pthread_shims.h */
70 static_assert((sizeof(struct pthread_functions_s) - offsetof(struct pthread_functions_s, psynch_rw_yieldwrlock) - sizeof(void*)) == (sizeof(void*) * 100));
71 static_assert((sizeof(struct pthread_callbacks_s) - offsetof(struct pthread_callbacks_s, PTHREAD_CALLBACK_MEMBER) - sizeof(void*)) == (sizeof(void*) * 100));
72
73 /* old pthread code had definitions for these as they don't exist in headers */
74 extern kern_return_t mach_port_deallocate(ipc_space_t, mach_port_name_t);
75 extern void thread_deallocate_safe(thread_t thread);
76
77 #define PTHREAD_STRUCT_ACCESSOR(get, set, rettype, structtype, member) \
78 static rettype \
79 get(structtype x) { \
80 return (x)->member; \
81 } \
82 static void \
83 set(structtype x, rettype y) { \
84 (x)->member = y; \
85 }
86
87 PTHREAD_STRUCT_ACCESSOR(proc_get_threadstart, proc_set_threadstart, user_addr_t, struct proc*, p_threadstart);
88 PTHREAD_STRUCT_ACCESSOR(proc_get_pthsize, proc_set_pthsize, int, struct proc*, p_pthsize);
89 PTHREAD_STRUCT_ACCESSOR(proc_get_wqthread, proc_set_wqthread, user_addr_t, struct proc*, p_wqthread);
90 PTHREAD_STRUCT_ACCESSOR(proc_get_stack_addr_hint, proc_set_stack_addr_hint, user_addr_t, struct proc *, p_stack_addr_hint);
91 PTHREAD_STRUCT_ACCESSOR(proc_get_pthread_tsd_offset, proc_set_pthread_tsd_offset, uint32_t, struct proc *, p_pth_tsd_offset);
92 PTHREAD_STRUCT_ACCESSOR(proc_get_mach_thread_self_tsd_offset, proc_set_mach_thread_self_tsd_offset, uint64_t, struct proc *, p_mach_thread_self_offset);
93 PTHREAD_STRUCT_ACCESSOR(proc_get_pthhash, proc_set_pthhash, void*, struct proc*, p_pthhash);
94
95 #define WQPTR_IS_INITING_VALUE ((void *)~(uintptr_t)0)
96
97 static void
proc_set_dispatchqueue_offset(struct proc * p,uint64_t offset)98 proc_set_dispatchqueue_offset(struct proc *p, uint64_t offset)
99 {
100 p->p_dispatchqueue_offset = offset;
101 }
102
103 static void
proc_set_workqueue_quantum_offset(struct proc * p,uint64_t offset)104 proc_set_workqueue_quantum_offset(struct proc *p, uint64_t offset)
105 {
106 p->p_pthread_wq_quantum_offset = offset;
107 }
108
109 static void
proc_set_return_to_kernel_offset(struct proc * p,uint64_t offset)110 proc_set_return_to_kernel_offset(struct proc *p, uint64_t offset)
111 {
112 p->p_return_to_kernel_offset = offset;
113 }
114
115 static user_addr_t
proc_get_user_stack(struct proc * p)116 proc_get_user_stack(struct proc *p)
117 {
118 return p->user_stack;
119 }
120
121 static void
uthread_set_returnval(struct uthread * uth,int retval)122 uthread_set_returnval(struct uthread *uth, int retval)
123 {
124 uth->uu_rval[0] = retval;
125 }
126
127 __attribute__((noreturn))
128 static void
pthread_returning_to_userspace(void)129 pthread_returning_to_userspace(void)
130 {
131 thread_exception_return();
132 }
133
134 __attribute__((noreturn))
135 static void
pthread_bootstrap_return(void)136 pthread_bootstrap_return(void)
137 {
138 thread_bootstrap_return();
139 }
140
141 static uint32_t
get_task_threadmax(void)142 get_task_threadmax(void)
143 {
144 return task_threadmax;
145 }
146
147 static uint64_t
proc_get_register(struct proc * p)148 proc_get_register(struct proc *p)
149 {
150 return p->p_lflag & P_LREGISTER;
151 }
152
153 static void
proc_set_register(struct proc * p)154 proc_set_register(struct proc *p)
155 {
156 proc_setregister(p);
157 }
158
159 static void*
uthread_get_uukwe(struct uthread * t)160 uthread_get_uukwe(struct uthread *t)
161 {
162 return &t->uu_save.uus_kwe;
163 }
164
165 static int
uthread_is_cancelled(struct uthread * t)166 uthread_is_cancelled(struct uthread *t)
167 {
168 return (t->uu_flag & (UT_CANCELDISABLE | UT_CANCEL | UT_CANCELED)) == UT_CANCEL;
169 }
170
171 static vm_map_t
_current_map(void)172 _current_map(void)
173 {
174 return current_map();
175 }
176
177 static boolean_t
qos_main_thread_active(void)178 qos_main_thread_active(void)
179 {
180 return TRUE;
181 }
182
183 static int
proc_usynch_get_requested_thread_qos(struct uthread * uth)184 proc_usynch_get_requested_thread_qos(struct uthread *uth)
185 {
186 thread_t thread = uth ? get_machthread(uth) : current_thread();
187 int requested_qos;
188
189 requested_qos = proc_get_thread_policy(thread, TASK_POLICY_ATTRIBUTE, TASK_POLICY_QOS);
190
191 /*
192 * For the purposes of userspace synchronization, it doesn't make sense to
193 * place an override of UNSPECIFIED on another thread, if the current thread
194 * doesn't have any QoS set. In these cases, upgrade to
195 * THREAD_QOS_USER_INTERACTIVE.
196 */
197 if (requested_qos == THREAD_QOS_UNSPECIFIED) {
198 requested_qos = THREAD_QOS_USER_INTERACTIVE;
199 }
200
201 return requested_qos;
202 }
203
204 static boolean_t
proc_usynch_thread_qos_add_override_for_resource(task_t task,struct uthread * uth,uint64_t tid,int override_qos,boolean_t first_override_for_resource,user_addr_t resource,int resource_type)205 proc_usynch_thread_qos_add_override_for_resource(task_t task, struct uthread *uth,
206 uint64_t tid, int override_qos, boolean_t first_override_for_resource,
207 user_addr_t resource, int resource_type)
208 {
209 thread_t thread = uth ? get_machthread(uth) : THREAD_NULL;
210
211 return proc_thread_qos_add_override(task, thread, tid, override_qos,
212 first_override_for_resource, resource, resource_type) == 0;
213 }
214
215 static boolean_t
proc_usynch_thread_qos_remove_override_for_resource(task_t task,struct uthread * uth,uint64_t tid,user_addr_t resource,int resource_type)216 proc_usynch_thread_qos_remove_override_for_resource(task_t task,
217 struct uthread *uth, uint64_t tid, user_addr_t resource, int resource_type)
218 {
219 thread_t thread = uth ? get_machthread(uth) : THREAD_NULL;
220
221 return proc_thread_qos_remove_override(task, thread, tid, resource,
222 resource_type) == 0;
223 }
224
225
226 static wait_result_t
psynch_wait_prepare(uintptr_t kwq,struct turnstile ** tstore,thread_t owner,block_hint_t block_hint,uint64_t deadline)227 psynch_wait_prepare(uintptr_t kwq, struct turnstile **tstore,
228 thread_t owner, block_hint_t block_hint, uint64_t deadline)
229 {
230 struct turnstile *ts;
231 wait_result_t wr;
232
233 if (tstore) {
234 ts = turnstile_prepare(kwq, tstore, TURNSTILE_NULL,
235 TURNSTILE_PTHREAD_MUTEX);
236
237 turnstile_update_inheritor(ts, owner,
238 (TURNSTILE_DELAYED_UPDATE | TURNSTILE_INHERITOR_THREAD));
239
240 thread_set_pending_block_hint(current_thread(), block_hint);
241
242 wr = waitq_assert_wait64_leeway(&ts->ts_waitq, (event64_t)kwq,
243 THREAD_ABORTSAFE, TIMEOUT_URGENCY_USER_NORMAL, deadline, 0);
244 } else {
245 thread_set_pending_block_hint(current_thread(), block_hint);
246
247 wr = assert_wait_deadline_with_leeway((event_t)kwq, THREAD_ABORTSAFE,
248 TIMEOUT_URGENCY_USER_NORMAL, deadline, 0);
249 }
250
251 return wr;
252 }
253
254 static void
psynch_wait_update_complete(struct turnstile * ts)255 psynch_wait_update_complete(struct turnstile *ts)
256 {
257 assert(ts);
258 turnstile_update_inheritor_complete(ts, TURNSTILE_INTERLOCK_NOT_HELD);
259 }
260
261 static void
psynch_wait_complete(uintptr_t kwq,struct turnstile ** tstore)262 psynch_wait_complete(uintptr_t kwq, struct turnstile **tstore)
263 {
264 assert(tstore);
265 turnstile_complete(kwq, tstore, NULL, TURNSTILE_PTHREAD_MUTEX);
266 }
267
268 static void
psynch_wait_update_owner(uintptr_t kwq,thread_t owner,struct turnstile ** tstore)269 psynch_wait_update_owner(uintptr_t kwq, thread_t owner,
270 struct turnstile **tstore)
271 {
272 struct turnstile *ts;
273
274 ts = turnstile_prepare(kwq, tstore, TURNSTILE_NULL,
275 TURNSTILE_PTHREAD_MUTEX);
276
277 turnstile_update_inheritor(ts, owner,
278 (TURNSTILE_IMMEDIATE_UPDATE | TURNSTILE_INHERITOR_THREAD));
279 turnstile_update_inheritor_complete(ts, TURNSTILE_INTERLOCK_HELD);
280 turnstile_complete(kwq, tstore, NULL, TURNSTILE_PTHREAD_MUTEX);
281 }
282
283 static void
psynch_wait_cleanup(void)284 psynch_wait_cleanup(void)
285 {
286 turnstile_cleanup();
287 }
288
289 static kern_return_t
psynch_wait_wakeup(uintptr_t kwq,struct ksyn_waitq_element * kwe,struct turnstile ** tstore)290 psynch_wait_wakeup(uintptr_t kwq, struct ksyn_waitq_element *kwe,
291 struct turnstile **tstore)
292 {
293 struct thread *th;
294 struct turnstile *ts;
295 kern_return_t kr;
296
297 th = get_machthread(__container_of(kwe, struct uthread, uu_save.uus_kwe));
298
299 if (tstore) {
300 ts = turnstile_prepare(kwq, tstore, TURNSTILE_NULL,
301 TURNSTILE_PTHREAD_MUTEX);
302 turnstile_update_inheritor(ts, th,
303 (TURNSTILE_IMMEDIATE_UPDATE | TURNSTILE_INHERITOR_THREAD));
304
305 kr = waitq_wakeup64_thread(&ts->ts_waitq, (event64_t)kwq, th,
306 THREAD_AWAKENED);
307
308 turnstile_update_inheritor_complete(ts, TURNSTILE_INTERLOCK_HELD);
309 turnstile_complete(kwq, tstore, NULL, TURNSTILE_PTHREAD_MUTEX);
310 } else {
311 kr = thread_wakeup_thread((event_t)kwq, th);
312 }
313
314 return kr;
315 }
316
317 /* kernel (core) to kext shims */
318
319 void
pthread_init(void)320 pthread_init(void)
321 {
322 if (!pthread_functions) {
323 panic("pthread kernel extension not loaded (function table is NULL).");
324 }
325 pthread_functions->pthread_init();
326 }
327
328 void
pth_proc_hashinit(proc_t p)329 pth_proc_hashinit(proc_t p)
330 {
331 pthread_functions->pth_proc_hashinit(p);
332 }
333
334 void
pth_proc_hashdelete(proc_t p)335 pth_proc_hashdelete(proc_t p)
336 {
337 pthread_functions->pth_proc_hashdelete(p);
338 }
339
340 /* syscall shims */
341 int
bsdthread_create(struct proc * p,struct bsdthread_create_args * uap,user_addr_t * retval)342 bsdthread_create(struct proc *p, struct bsdthread_create_args *uap, user_addr_t *retval)
343 {
344 return pthread_functions->bsdthread_create(p, uap->func, uap->func_arg, uap->stack, uap->pthread, uap->flags, retval);
345 }
346
347 int
bsdthread_register(struct proc * p,struct bsdthread_register_args * uap,__unused int32_t * retval)348 bsdthread_register(struct proc *p, struct bsdthread_register_args *uap, __unused int32_t *retval)
349 {
350 kern_return_t kr;
351 static_assert(offsetof(struct bsdthread_register_args, threadstart) + sizeof(user_addr_t) ==
352 offsetof(struct bsdthread_register_args, wqthread));
353 kr = machine_thread_function_pointers_convert_from_user(current_thread(), &uap->threadstart, 2);
354 assert(kr == KERN_SUCCESS);
355
356 if (pthread_functions->version >= 1) {
357 return pthread_functions->bsdthread_register2(p, uap->threadstart,
358 uap->wqthread, uap->flags, uap->stack_addr_hint,
359 uap->targetconc_ptr, uap->dispatchqueue_offset,
360 uap->tsd_offset, retval);
361 } else {
362 return pthread_functions->bsdthread_register(p, uap->threadstart,
363 uap->wqthread, uap->flags, uap->stack_addr_hint,
364 uap->targetconc_ptr, uap->dispatchqueue_offset,
365 retval);
366 }
367 }
368
369 int
bsdthread_terminate(struct proc * p,struct bsdthread_terminate_args * uap,int32_t * retval)370 bsdthread_terminate(struct proc *p, struct bsdthread_terminate_args *uap, int32_t *retval)
371 {
372 thread_t th = current_thread();
373 uthread_t uth = current_uthread();
374 struct _bsdthread_terminate *bts = &uth->uu_save.uus_bsdthread_terminate;
375 mach_port_name_t sem = (mach_port_name_t)uap->sema_or_ulock;
376 mach_port_name_t thp = uap->port;
377
378 if (thread_get_tag(th) & THREAD_TAG_WORKQUEUE) {
379 workq_thread_terminate(p, get_bsdthread_info(th));
380 }
381
382 /*
383 * Gross compatibility hack: ports end in 0x3 and ulocks are aligned.
384 * If the `semaphore` value doesn't look like a port, then it is
385 * a ulock address that will be woken by uthread_joiner_wake()
386 *
387 * We also need to delay destroying the thread port so that
388 * pthread_join()'s ulock_wait() can resolve the thread until
389 * uthread_joiner_wake() has run.
390 */
391 if (uap->sema_or_ulock && uap->sema_or_ulock != ipc_entry_name_mask(sem)) {
392 thread_set_tag(th, THREAD_TAG_USER_JOIN);
393 bts->ulock_addr = uap->sema_or_ulock;
394 bts->kport = thp;
395
396 sem = thp = MACH_PORT_NULL;
397 }
398
399 return pthread_functions->bsdthread_terminate(p, uap->stackaddr, uap->freesize, thp, sem, retval);
400 }
401
402 int
thread_selfid(struct proc * p,__unused struct thread_selfid_args * uap,uint64_t * retval)403 thread_selfid(struct proc *p, __unused struct thread_selfid_args *uap, uint64_t *retval)
404 {
405 return pthread_functions->thread_selfid(p, retval);
406 }
407
408 /* pthread synchroniser syscalls */
409
410 int
psynch_mutexwait(proc_t p,struct psynch_mutexwait_args * uap,uint32_t * retval)411 psynch_mutexwait(proc_t p, struct psynch_mutexwait_args *uap, uint32_t *retval)
412 {
413 return pthread_functions->psynch_mutexwait(p, uap->mutex, uap->mgen, uap->ugen, uap->tid, uap->flags, retval);
414 }
415
416 int
psynch_mutexdrop(proc_t p,struct psynch_mutexdrop_args * uap,uint32_t * retval)417 psynch_mutexdrop(proc_t p, struct psynch_mutexdrop_args *uap, uint32_t *retval)
418 {
419 return pthread_functions->psynch_mutexdrop(p, uap->mutex, uap->mgen, uap->ugen, uap->tid, uap->flags, retval);
420 }
421
422 int
psynch_cvbroad(proc_t p,struct psynch_cvbroad_args * uap,uint32_t * retval)423 psynch_cvbroad(proc_t p, struct psynch_cvbroad_args *uap, uint32_t *retval)
424 {
425 return pthread_functions->psynch_cvbroad(p, uap->cv, uap->cvlsgen, uap->cvudgen, uap->flags, uap->mutex, uap->mugen, uap->tid, retval);
426 }
427
428 int
psynch_cvsignal(proc_t p,struct psynch_cvsignal_args * uap,uint32_t * retval)429 psynch_cvsignal(proc_t p, struct psynch_cvsignal_args *uap, uint32_t *retval)
430 {
431 return pthread_functions->psynch_cvsignal(p, uap->cv, uap->cvlsgen, uap->cvugen, uap->thread_port, uap->mutex, uap->mugen, uap->tid, uap->flags, retval);
432 }
433
434 int
psynch_cvwait(proc_t p,struct psynch_cvwait_args * uap,uint32_t * retval)435 psynch_cvwait(proc_t p, struct psynch_cvwait_args * uap, uint32_t * retval)
436 {
437 return pthread_functions->psynch_cvwait(p, uap->cv, uap->cvlsgen, uap->cvugen, uap->mutex, uap->mugen, uap->flags, uap->sec, uap->nsec, retval);
438 }
439
440 int
psynch_cvclrprepost(proc_t p,struct psynch_cvclrprepost_args * uap,int * retval)441 psynch_cvclrprepost(proc_t p, struct psynch_cvclrprepost_args * uap, int *retval)
442 {
443 return pthread_functions->psynch_cvclrprepost(p, uap->cv, uap->cvgen, uap->cvugen, uap->cvsgen, uap->prepocnt, uap->preposeq, uap->flags, retval);
444 }
445
446 int
psynch_rw_longrdlock(proc_t p,struct psynch_rw_longrdlock_args * uap,uint32_t * retval)447 psynch_rw_longrdlock(proc_t p, struct psynch_rw_longrdlock_args * uap, uint32_t *retval)
448 {
449 return pthread_functions->psynch_rw_longrdlock(p, uap->rwlock, uap->lgenval, uap->ugenval, uap->rw_wc, uap->flags, retval);
450 }
451
452 int
psynch_rw_rdlock(proc_t p,struct psynch_rw_rdlock_args * uap,uint32_t * retval)453 psynch_rw_rdlock(proc_t p, struct psynch_rw_rdlock_args * uap, uint32_t * retval)
454 {
455 return pthread_functions->psynch_rw_rdlock(p, uap->rwlock, uap->lgenval, uap->ugenval, uap->rw_wc, uap->flags, retval);
456 }
457
458 int
psynch_rw_unlock(proc_t p,struct psynch_rw_unlock_args * uap,uint32_t * retval)459 psynch_rw_unlock(proc_t p, struct psynch_rw_unlock_args *uap, uint32_t *retval)
460 {
461 return pthread_functions->psynch_rw_unlock(p, uap->rwlock, uap->lgenval, uap->ugenval, uap->rw_wc, uap->flags, retval);
462 }
463
464 int
psynch_rw_unlock2(__unused proc_t p,__unused struct psynch_rw_unlock2_args * uap,__unused uint32_t * retval)465 psynch_rw_unlock2(__unused proc_t p, __unused struct psynch_rw_unlock2_args *uap, __unused uint32_t *retval)
466 {
467 return ENOTSUP;
468 }
469
470 int
psynch_rw_wrlock(proc_t p,struct psynch_rw_wrlock_args * uap,uint32_t * retval)471 psynch_rw_wrlock(proc_t p, struct psynch_rw_wrlock_args *uap, uint32_t *retval)
472 {
473 return pthread_functions->psynch_rw_wrlock(p, uap->rwlock, uap->lgenval, uap->ugenval, uap->rw_wc, uap->flags, retval);
474 }
475
476 int
psynch_rw_yieldwrlock(proc_t p,struct psynch_rw_yieldwrlock_args * uap,uint32_t * retval)477 psynch_rw_yieldwrlock(proc_t p, struct psynch_rw_yieldwrlock_args *uap, uint32_t *retval)
478 {
479 return pthread_functions->psynch_rw_yieldwrlock(p, uap->rwlock, uap->lgenval, uap->ugenval, uap->rw_wc, uap->flags, retval);
480 }
481
482 int
psynch_rw_upgrade(__unused proc_t p,__unused struct psynch_rw_upgrade_args * uap,__unused uint32_t * retval)483 psynch_rw_upgrade(__unused proc_t p, __unused struct psynch_rw_upgrade_args * uap, __unused uint32_t *retval)
484 {
485 return 0;
486 }
487
488 int
psynch_rw_downgrade(__unused proc_t p,__unused struct psynch_rw_downgrade_args * uap,__unused int * retval)489 psynch_rw_downgrade(__unused proc_t p, __unused struct psynch_rw_downgrade_args * uap, __unused int *retval)
490 {
491 return 0;
492 }
493
494 void
kdp_pthread_find_owner(thread_t thread,struct stackshot_thread_waitinfo * waitinfo)495 kdp_pthread_find_owner(thread_t thread, struct stackshot_thread_waitinfo *waitinfo)
496 {
497 if (pthread_functions->pthread_find_owner) {
498 pthread_functions->pthread_find_owner(thread, waitinfo);
499 }
500 }
501
502 void *
kdp_pthread_get_thread_kwq(thread_t thread)503 kdp_pthread_get_thread_kwq(thread_t thread)
504 {
505 if (pthread_functions->pthread_get_thread_kwq) {
506 return pthread_functions->pthread_get_thread_kwq(thread);
507 }
508
509 return NULL;
510 }
511
512 void
thread_will_park_or_terminate(__unused thread_t thread)513 thread_will_park_or_terminate(__unused thread_t thread)
514 {
515 }
516
517 static bool
old_proc_get_pthread_jit_allowlist(struct proc * t)518 old_proc_get_pthread_jit_allowlist(struct proc *t)
519 {
520 bool unused_late = false;
521 return proc_get_pthread_jit_allowlist(t, &unused_late);
522 }
523
524 /*
525 * The callbacks structure (defined in pthread_shims.h) contains a collection
526 * of kernel functions that were not deemed sensible to expose as a KPI to all
527 * kernel extensions. So the kext is given them in the form of a structure of
528 * function pointers.
529 */
530 static const struct pthread_callbacks_s pthread_callbacks = {
531 .version = PTHREAD_SHIMS_VERSION,
532 .config_thread_max = CONFIG_THREAD_MAX,
533 .get_task_threadmax = get_task_threadmax,
534
535 .proc_get_threadstart = proc_get_threadstart,
536 .proc_set_threadstart = proc_set_threadstart,
537 .proc_get_pthsize = proc_get_pthsize,
538 .proc_set_pthsize = proc_set_pthsize,
539 .proc_get_wqthread = proc_get_wqthread,
540 .proc_set_wqthread = proc_set_wqthread,
541 .proc_set_dispatchqueue_offset = proc_set_dispatchqueue_offset,
542 .proc_set_workqueue_quantum_offset = proc_set_workqueue_quantum_offset,
543 .proc_get_pthhash = proc_get_pthhash,
544 .proc_set_pthhash = proc_set_pthhash,
545 .proc_get_register = proc_get_register,
546 .proc_set_register = proc_set_register,
547 .proc_get_pthread_jit_allowlist = old_proc_get_pthread_jit_allowlist,
548 .proc_get_pthread_jit_allowlist2 = proc_get_pthread_jit_allowlist,
549
550 /* kernel IPI interfaces */
551 .task_get_ipcspace = get_task_ipcspace,
552 .vm_map_page_info = vm_map_page_info,
553 .ipc_port_copyout_send_pinned = ipc_port_copyout_send_pinned,
554 .thread_set_wq_state32 = thread_set_wq_state32,
555 #if !defined(__arm__)
556 .thread_set_wq_state64 = thread_set_wq_state64,
557 #endif
558
559 .uthread_get_uukwe = uthread_get_uukwe,
560 .uthread_set_returnval = uthread_set_returnval,
561 .uthread_is_cancelled = uthread_is_cancelled,
562
563 .thread_exception_return = pthread_returning_to_userspace,
564 .thread_bootstrap_return = pthread_bootstrap_return,
565 .unix_syscall_return = unix_syscall_return,
566
567 .get_bsdthread_info = get_bsdthread_info,
568 .thread_policy_set_internal = thread_policy_set_internal,
569 .thread_policy_get = thread_policy_get,
570
571 .__pthread_testcancel = __pthread_testcancel,
572
573 .mach_port_deallocate = mach_port_deallocate,
574 .semaphore_signal_internal_trap = semaphore_signal_internal_trap,
575 .current_map = _current_map,
576
577 .thread_create_immovable = thread_create_immovable,
578 .thread_terminate_pinned = thread_terminate_pinned,
579 .thread_resume = thread_resume,
580
581 .kevent_workq_internal = kevent_workq_internal,
582
583 .convert_thread_to_port_pinned = convert_thread_to_port_pinned,
584
585 .proc_get_stack_addr_hint = proc_get_stack_addr_hint,
586 .proc_set_stack_addr_hint = proc_set_stack_addr_hint,
587 .proc_get_pthread_tsd_offset = proc_get_pthread_tsd_offset,
588 .proc_set_pthread_tsd_offset = proc_set_pthread_tsd_offset,
589 .proc_get_mach_thread_self_tsd_offset = proc_get_mach_thread_self_tsd_offset,
590 .proc_set_mach_thread_self_tsd_offset = proc_set_mach_thread_self_tsd_offset,
591
592 .thread_set_tsd_base = thread_set_tsd_base,
593
594 .proc_usynch_get_requested_thread_qos = proc_usynch_get_requested_thread_qos,
595
596 .qos_main_thread_active = qos_main_thread_active,
597 .thread_set_voucher_name = thread_set_voucher_name,
598
599 .proc_usynch_thread_qos_add_override_for_resource = proc_usynch_thread_qos_add_override_for_resource,
600 .proc_usynch_thread_qos_remove_override_for_resource = proc_usynch_thread_qos_remove_override_for_resource,
601
602 .thread_set_tag = thread_set_tag,
603 .thread_get_tag = thread_get_tag,
604
605 .proc_set_return_to_kernel_offset = proc_set_return_to_kernel_offset,
606 .thread_will_park_or_terminate = thread_will_park_or_terminate,
607
608 .proc_get_user_stack = proc_get_user_stack,
609 .task_findtid = task_findtid,
610 .thread_deallocate_safe = thread_deallocate_safe,
611
612 .psynch_wait_prepare = psynch_wait_prepare,
613 .psynch_wait_update_complete = psynch_wait_update_complete,
614 .psynch_wait_complete = psynch_wait_complete,
615 .psynch_wait_cleanup = psynch_wait_cleanup,
616 .psynch_wait_wakeup = psynch_wait_wakeup,
617 .psynch_wait_update_owner = psynch_wait_update_owner,
618 };
619
620 pthread_callbacks_t pthread_kern = &pthread_callbacks;
621 pthread_functions_t pthread_functions = NULL;
622
623 /*
624 * pthread_kext_register is called by pthread.kext upon load, it has to provide
625 * us with a function pointer table of pthread internal calls. In return, this
626 * file provides it with a table of function pointers it needs.
627 */
628
629 void
pthread_kext_register(pthread_functions_t fns,pthread_callbacks_t * callbacks)630 pthread_kext_register(pthread_functions_t fns, pthread_callbacks_t *callbacks)
631 {
632 if (pthread_functions != NULL) {
633 panic("Re-initialisation of pthread kext callbacks.");
634 }
635
636 if (callbacks != NULL) {
637 *callbacks = &pthread_callbacks;
638 } else {
639 panic("pthread_kext_register called without callbacks pointer.");
640 }
641
642 if (fns) {
643 pthread_functions = fns;
644 }
645 }
646