1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (C) 2005 Daniel M. Eischen <deischen@freebsd.org>
5 * Copyright (c) 2005 David Xu <davidxu@freebsd.org>
6 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>.
7 *
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice unmodified, this list of conditions, and the following
15 *    disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $FreeBSD$
32 */
33
34#ifndef _THR_PRIVATE_H
35#define _THR_PRIVATE_H
36
37/*
38 * Include files.
39 */
40#include <sys/types.h>
41#include <sys/time.h>
42#include <sys/cdefs.h>
43#include <sys/queue.h>
44#include <sys/param.h>
45#include <sys/cpuset.h>
46#include <machine/atomic.h>
47#include <errno.h>
48#include <limits.h>
49#include <signal.h>
50#include <stdbool.h>
51#include <stddef.h>
52#include <stdio.h>
53#include <unistd.h>
54#include <ucontext.h>
55#include <sys/thr.h>
56#include <pthread.h>
57
58__NULLABILITY_PRAGMA_PUSH
59
60#define	SYM_FB10(sym)			__CONCAT(sym, _fb10)
61#define	SYM_FBP10(sym)			__CONCAT(sym, _fbp10)
62#define	WEAK_REF(sym, alias)		__weak_reference(sym, alias)
63#define	SYM_COMPAT(sym, impl, ver)	__sym_compat(sym, impl, ver)
64#define	SYM_DEFAULT(sym, impl, ver)	__sym_default(sym, impl, ver)
65
66#define	FB10_COMPAT(func, sym)				\
67	WEAK_REF(func, SYM_FB10(sym));			\
68	SYM_COMPAT(sym, SYM_FB10(sym), FBSD_1.0)
69
70#define	FB10_COMPAT_PRIVATE(func, sym)			\
71	WEAK_REF(func, SYM_FBP10(sym));			\
72	SYM_DEFAULT(sym, SYM_FBP10(sym), FBSDprivate_1.0)
73
74struct pthread;
75extern struct pthread	*_thr_initial __hidden;
76
77#include "pthread_md.h"
78#include "thr_umtx.h"
79#include "thread_db.h"
80
81#ifdef _PTHREAD_FORCED_UNWIND
82#define _BSD_SOURCE
83#include <unwind.h>
84#endif
85
86typedef TAILQ_HEAD(pthreadlist, pthread) pthreadlist;
87typedef TAILQ_HEAD(atfork_head, pthread_atfork) atfork_head;
88TAILQ_HEAD(mutex_queue, pthread_mutex);
89
90/* Signal to do cancellation */
91#define	SIGCANCEL		SIGTHR
92
93/*
94 * Kernel fatal error handler macro.
95 */
96#define PANIC(args...)		_thread_exitf(__FILE__, __LINE__, ##args)
97
98/* Output debug messages like this: */
99#define stdout_debug(args...)	_thread_printf(STDOUT_FILENO, ##args)
100#define stderr_debug(args...)	_thread_printf(STDERR_FILENO, ##args)
101
102#ifdef _PTHREADS_INVARIANTS
103#define THR_ASSERT(cond, msg) do {	\
104	if (__predict_false(!(cond)))	\
105		PANIC(msg);		\
106} while (0)
107#else
108#define THR_ASSERT(cond, msg)
109#endif
110
111#ifdef PIC
112# define STATIC_LIB_REQUIRE(name)
113#else
114# define STATIC_LIB_REQUIRE(name) __asm (".globl " #name)
115#endif
116
117#define	TIMESPEC_ADD(dst, src, val)				\
118	do { 							\
119		(dst)->tv_sec = (src)->tv_sec + (val)->tv_sec;	\
120		(dst)->tv_nsec = (src)->tv_nsec + (val)->tv_nsec; \
121		if ((dst)->tv_nsec >= 1000000000) {		\
122			(dst)->tv_sec++;			\
123			(dst)->tv_nsec -= 1000000000;		\
124		}						\
125	} while (0)
126
127#define	TIMESPEC_SUB(dst, src, val)				\
128	do { 							\
129		(dst)->tv_sec = (src)->tv_sec - (val)->tv_sec;	\
130		(dst)->tv_nsec = (src)->tv_nsec - (val)->tv_nsec; \
131		if ((dst)->tv_nsec < 0) {			\
132			(dst)->tv_sec--;			\
133			(dst)->tv_nsec += 1000000000;		\
134		}						\
135	} while (0)
136
137/* Magic cookie set for shared pthread locks and cv's pointers */
138#define	THR_PSHARED_PTR						\
139    ((void *)(uintptr_t)((1ULL << (NBBY * sizeof(long) - 1)) | 1))
140
141/* XXX These values should be same as those defined in pthread.h */
142#define	THR_MUTEX_INITIALIZER		((struct pthread_mutex *)NULL)
143#define	THR_ADAPTIVE_MUTEX_INITIALIZER	((struct pthread_mutex *)1)
144#define	THR_MUTEX_DESTROYED		((struct pthread_mutex *)2)
145#define	THR_COND_INITIALIZER		((struct pthread_cond *)NULL)
146#define	THR_COND_DESTROYED		((struct pthread_cond *)1)
147#define	THR_RWLOCK_INITIALIZER		((struct pthread_rwlock *)NULL)
148#define	THR_RWLOCK_DESTROYED		((struct pthread_rwlock *)1)
149
150#define PMUTEX_FLAG_TYPE_MASK	0x0ff
151#define PMUTEX_FLAG_PRIVATE	0x100
152#define PMUTEX_FLAG_DEFERRED	0x200
153#define PMUTEX_TYPE(mtxflags)	((mtxflags) & PMUTEX_FLAG_TYPE_MASK)
154
155#define	PMUTEX_OWNER_ID(m)	((m)->m_lock.m_owner & ~UMUTEX_CONTESTED)
156
157#define MAX_DEFER_WAITERS       50
158
159/*
160 * Values for pthread_mutex m_ps indicator.
161 */
162#define	PMUTEX_INITSTAGE_ALLOC	0
163#define	PMUTEX_INITSTAGE_BUSY	1
164#define	PMUTEX_INITSTAGE_DONE	2
165
166struct pthread_mutex {
167	/*
168	 * Lock for accesses to this structure.
169	 */
170	struct umutex			m_lock;
171	int				m_flags;
172	int				m_count;
173	int				m_spinloops;
174	int				m_yieldloops;
175	int				m_ps;	/* pshared init stage */
176	/*
177	 * Link for all mutexes a thread currently owns, of the same
178	 * prio type.
179	 */
180	TAILQ_ENTRY(pthread_mutex)	m_qe;
181	/* Link for all private mutexes a thread currently owns. */
182	TAILQ_ENTRY(pthread_mutex)	m_pqe;
183	struct pthread_mutex		*m_rb_prev;
184};
185
186struct pthread_mutex_attr {
187	enum pthread_mutextype	m_type;
188	int			m_protocol;
189	int			m_ceiling;
190	int			m_pshared;
191	int			m_robust;
192};
193
194#define PTHREAD_MUTEXATTR_STATIC_INITIALIZER \
195	{ PTHREAD_MUTEX_DEFAULT, PTHREAD_PRIO_NONE, 0, MUTEX_FLAGS_PRIVATE, \
196	    PTHREAD_MUTEX_STALLED }
197
198struct pthread_cond {
199	__uint32_t	__has_user_waiters;
200	struct ucond	kcond;
201};
202
203struct pthread_cond_attr {
204	int		c_pshared;
205	int		c_clockid;
206};
207
208struct pthread_barrier {
209	struct umutex		b_lock;
210	struct ucond		b_cv;
211	int64_t			b_cycle;
212	int			b_count;
213	int			b_waiters;
214	int			b_refcount;
215	int			b_destroying;
216};
217
218struct pthread_barrierattr {
219	int		pshared;
220};
221
222struct pthread_spinlock {
223	struct umutex	s_lock;
224};
225
226/*
227 * Flags for condition variables.
228 */
229#define COND_FLAGS_PRIVATE	0x01
230#define COND_FLAGS_INITED	0x02
231#define COND_FLAGS_BUSY		0x04
232
233/*
234 * Cleanup definitions.
235 */
236struct pthread_cleanup {
237	struct pthread_cleanup	*prev;
238	void			(*routine)(void *);
239	void			*routine_arg;
240	int			onheap;
241};
242
243#define	THR_CLEANUP_PUSH(td, func, arg) {		\
244	struct pthread_cleanup __cup;			\
245							\
246	__cup.routine = func;				\
247	__cup.routine_arg = arg;			\
248	__cup.onheap = 0;				\
249	__cup.prev = (td)->cleanup;			\
250	(td)->cleanup = &__cup;
251
252#define	THR_CLEANUP_POP(td, exec)			\
253	(td)->cleanup = __cup.prev;			\
254	if ((exec) != 0)				\
255		__cup.routine(__cup.routine_arg);	\
256}
257
258struct pthread_atfork {
259	TAILQ_ENTRY(pthread_atfork) qe;
260	void (*prepare)(void);
261	void (*parent)(void);
262	void (*child)(void);
263};
264
265struct pthread_attr {
266#define pthread_attr_start_copy	sched_policy
267	int	sched_policy;
268	int	sched_inherit;
269	int	prio;
270	int	suspend;
271#define	THR_STACK_USER		0x100	/* 0xFF reserved for <pthread.h> */
272	int	flags;
273	void	*stackaddr_attr;
274	size_t	stacksize_attr;
275	size_t	guardsize_attr;
276#define pthread_attr_end_copy	cpuset
277	cpuset_t	*cpuset;
278	size_t	cpusetsize;
279};
280
281struct wake_addr {
282	struct wake_addr *link;
283	unsigned int	value;
284	char		pad[12];
285};
286
287struct sleepqueue {
288	TAILQ_HEAD(, pthread)    sq_blocked;
289	SLIST_HEAD(, sleepqueue) sq_freeq;
290	LIST_ENTRY(sleepqueue)   sq_hash;
291	SLIST_ENTRY(sleepqueue)  sq_flink;
292	void			 *sq_wchan;
293	int			 sq_type;
294};
295
296/*
297 * Thread creation state attributes.
298 */
299#define THR_CREATE_RUNNING		0
300#define THR_CREATE_SUSPENDED		1
301
302/*
303 * Miscellaneous definitions.
304 */
305#define THR_STACK_DEFAULT		(sizeof(void *) / 4 * 1024 * 1024)
306
307/*
308 * Maximum size of initial thread's stack.  This perhaps deserves to be larger
309 * than the stacks of other threads, since many applications are likely to run
310 * almost entirely on this stack.
311 */
312#define THR_STACK_INITIAL		(THR_STACK_DEFAULT * 2)
313
314/*
315 * Define priorities returned by kernel.
316 */
317#define THR_MIN_PRIORITY		(_thr_priorities[SCHED_OTHER-1].pri_min)
318#define THR_MAX_PRIORITY		(_thr_priorities[SCHED_OTHER-1].pri_max)
319#define THR_DEF_PRIORITY		(_thr_priorities[SCHED_OTHER-1].pri_default)
320
321#define THR_MIN_RR_PRIORITY		(_thr_priorities[SCHED_RR-1].pri_min)
322#define THR_MAX_RR_PRIORITY		(_thr_priorities[SCHED_RR-1].pri_max)
323#define THR_DEF_RR_PRIORITY		(_thr_priorities[SCHED_RR-1].pri_default)
324
325/* XXX The SCHED_FIFO should have same priority range as SCHED_RR */
326#define THR_MIN_FIFO_PRIORITY		(_thr_priorities[SCHED_FIFO_1].pri_min)
327#define THR_MAX_FIFO_PRIORITY		(_thr_priorities[SCHED_FIFO-1].pri_max)
328#define THR_DEF_FIFO_PRIORITY		(_thr_priorities[SCHED_FIFO-1].pri_default)
329
330struct pthread_prio {
331	int	pri_min;
332	int	pri_max;
333	int	pri_default;
334};
335
336struct pthread_rwlockattr {
337	int		pshared;
338};
339
340struct pthread_rwlock {
341	struct urwlock 	lock;
342	uint32_t	owner;
343};
344
345/*
346 * Thread states.
347 */
348enum pthread_state {
349	PS_RUNNING,
350	PS_DEAD
351};
352
353struct pthread_specific_elem {
354	const void	*data;
355	int		seqno;
356};
357
358struct pthread_key {
359	volatile int	allocated;
360	int		seqno;
361	void            (*destructor)(void *);
362};
363
364/*
365 * lwpid_t is 32bit but kernel thr API exports tid as long type
366 * to preserve the ABI for M:N model in very early date (r131431).
367 */
368#define TID(thread)	((uint32_t) ((thread)->tid))
369
370/*
371 * Thread structure.
372 */
373struct pthread {
374#define _pthread_startzero	tid
375	/* Kernel thread id. */
376	long			tid;
377#define	TID_TERMINATED		1
378
379	/*
380	 * Lock for accesses to this thread structure.
381	 */
382	struct umutex		lock;
383
384	/* Internal condition variable cycle number. */
385	uint32_t		cycle;
386
387	/* How many low level locks the thread held. */
388	int			locklevel;
389
390	/*
391	 * Set to non-zero when this thread has entered a critical
392	 * region.  We allow for recursive entries into critical regions.
393	 */
394	int			critical_count;
395
396	/* Signal blocked counter. */
397	int			sigblock;
398
399	/* Fast sigblock var. */
400	uint32_t		fsigblock;
401
402	/* Queue entry for list of all threads. */
403	TAILQ_ENTRY(pthread)	tle;	/* link for all threads in process */
404
405	/* Queue entry for GC lists. */
406	TAILQ_ENTRY(pthread)	gcle;
407
408	/* Hash queue entry. */
409	LIST_ENTRY(pthread)	hle;
410
411	/* Sleep queue entry */
412	TAILQ_ENTRY(pthread)    wle;
413
414	/* Threads reference count. */
415	int			refcount;
416
417	/*
418	 * Thread start routine, argument, stack pointer and thread
419	 * attributes.
420	 */
421	void			*(*start_routine)(void *);
422	void			*arg;
423	struct pthread_attr	attr;
424
425#define	SHOULD_CANCEL(thr)					\
426	((thr)->cancel_pending && (thr)->cancel_enable &&	\
427	 (thr)->no_cancel == 0)
428
429	/* Cancellation is enabled */
430	int			cancel_enable;
431
432	/* Cancellation request is pending */
433	int			cancel_pending;
434
435	/* Thread is at cancellation point */
436	int			cancel_point;
437
438	/* Cancellation is temporarily disabled */
439	int			no_cancel;
440
441	/* Asynchronouse cancellation is enabled */
442	int			cancel_async;
443
444	/* Cancellation is in progress */
445	int			cancelling;
446
447	/* Thread temporary signal mask. */
448	sigset_t		sigmask;
449
450	/* Thread should unblock SIGCANCEL. */
451	int			unblock_sigcancel;
452
453	/* In sigsuspend state */
454	int			in_sigsuspend;
455
456	/* deferred signal info	*/
457	siginfo_t		deferred_siginfo;
458
459	/* signal mask to restore. */
460	sigset_t		deferred_sigmask;
461
462	/* the sigaction should be used for deferred signal. */
463	struct sigaction	deferred_sigact;
464
465	/* deferred signal delivery is performed, do not reenter. */
466	int			deferred_run;
467
468	/* Force new thread to exit. */
469	int			force_exit;
470
471	/* Thread state: */
472	enum pthread_state 	state;
473
474	/*
475	 * Error variable used instead of errno. The function __error()
476	 * returns a pointer to this.
477	 */
478	int			error;
479
480	/*
481	 * The joiner is the thread that is joining to this thread.  The
482	 * join status keeps track of a join operation to another thread.
483	 */
484	struct pthread		*joiner;
485
486	/* Miscellaneous flags; only set with scheduling lock held. */
487	int			flags;
488#define THR_FLAGS_PRIVATE	0x0001
489#define	THR_FLAGS_NEED_SUSPEND	0x0002	/* thread should be suspended */
490#define	THR_FLAGS_SUSPENDED	0x0004	/* thread is suspended */
491#define	THR_FLAGS_DETACHED	0x0008	/* thread is detached */
492
493	/* Thread list flags; only set with thread list lock held. */
494	int			tlflags;
495#define	TLFLAGS_GC_SAFE		0x0001	/* thread safe for cleaning */
496#define	TLFLAGS_IN_TDLIST	0x0002	/* thread in all thread list */
497#define	TLFLAGS_IN_GCLIST	0x0004	/* thread in gc list */
498
499	/*
500	 * Queues of the owned mutexes.  Private queue must have index
501	 * + 1 of the corresponding full queue.
502	 */
503#define	TMQ_NORM		0	/* NORMAL or PRIO_INHERIT normal */
504#define	TMQ_NORM_PRIV		1	/* NORMAL or PRIO_INHERIT normal priv */
505#define	TMQ_NORM_PP		2	/* PRIO_PROTECT normal mutexes */
506#define	TMQ_NORM_PP_PRIV	3	/* PRIO_PROTECT normal priv */
507#define	TMQ_ROBUST_PP		4	/* PRIO_PROTECT robust mutexes */
508#define	TMQ_ROBUST_PP_PRIV	5	/* PRIO_PROTECT robust priv */
509#define	TMQ_NITEMS		6
510	struct mutex_queue	mq[TMQ_NITEMS];
511
512	void				*ret;
513	struct pthread_specific_elem	*specific;
514	int				specific_data_count;
515
516	/* Number rwlocks rdlocks held. */
517	int			rdlock_count;
518
519	/*
520	 * Current locks bitmap for rtld. */
521	int			rtld_bits;
522
523	/* Thread control block */
524	struct tcb		*tcb;
525
526	/* Cleanup handlers Link List */
527	struct pthread_cleanup	*cleanup;
528
529#ifdef _PTHREAD_FORCED_UNWIND
530	struct _Unwind_Exception	ex;
531	void			*unwind_stackend;
532	int			unwind_disabled;
533#endif
534
535	/*
536	 * Magic value to help recognize a valid thread structure
537	 * from an invalid one:
538	 */
539#define	THR_MAGIC		((u_int32_t) 0xd09ba115)
540	u_int32_t		magic;
541
542	/* Enable event reporting */
543	int			report_events;
544
545	/* Event mask */
546	int			event_mask;
547
548	/* Event */
549	td_event_msg_t		event_buf;
550
551	/* Wait channel */
552	void			*wchan;
553
554	/* Referenced mutex. */
555	struct pthread_mutex	*mutex_obj;
556
557	/* Thread will sleep. */
558	int			will_sleep;
559
560	/* Number of threads deferred. */
561	int			nwaiter_defer;
562
563	int			robust_inited;
564	uintptr_t		robust_list;
565	uintptr_t		priv_robust_list;
566	uintptr_t		inact_mtx;
567
568	/* Deferred threads from pthread_cond_signal. */
569	unsigned int 		*defer_waiters[MAX_DEFER_WAITERS];
570#define _pthread_endzero	wake_addr
571
572	struct wake_addr	*wake_addr;
573#define WAKE_ADDR(td)           ((td)->wake_addr)
574
575	/* Sleep queue */
576	struct	sleepqueue	*sleepqueue;
577
578	/* pthread_set/get_name_np */
579	char			*name;
580
581	/* rtld thread-local dlerror message and seen control */
582	char			dlerror_msg[512];
583	int			dlerror_seen;
584};
585
586#define THR_SHOULD_GC(thrd) 						\
587	((thrd)->refcount == 0 && (thrd)->state == PS_DEAD &&		\
588	 ((thrd)->flags & THR_FLAGS_DETACHED) != 0)
589
590#define	THR_IN_CRITICAL(thrd)				\
591	(((thrd)->locklevel > 0) ||			\
592	((thrd)->critical_count > 0))
593
594#define	THR_CRITICAL_ENTER(thrd)			\
595	(thrd)->critical_count++
596
597#define	THR_CRITICAL_LEAVE(thrd)			\
598	do {						\
599		(thrd)->critical_count--;		\
600		_thr_ast(thrd);				\
601	} while (0)
602
603#define THR_UMUTEX_TRYLOCK(thrd, lck)			\
604	_thr_umutex_trylock((lck), TID(thrd))
605
606#define	THR_UMUTEX_LOCK(thrd, lck)			\
607	_thr_umutex_lock((lck), TID(thrd))
608
609#define	THR_UMUTEX_TIMEDLOCK(thrd, lck, timo)		\
610	_thr_umutex_timedlock((lck), TID(thrd), (timo))
611
612#define	THR_UMUTEX_UNLOCK(thrd, lck)			\
613	_thr_umutex_unlock((lck), TID(thrd))
614
615#define	THR_LOCK_ACQUIRE(thrd, lck)			\
616do {							\
617	(thrd)->locklevel++;				\
618	_thr_umutex_lock(lck, TID(thrd));		\
619} while (0)
620
621#define	THR_LOCK_ACQUIRE_SPIN(thrd, lck)		\
622do {							\
623	(thrd)->locklevel++;				\
624	_thr_umutex_lock_spin(lck, TID(thrd));		\
625} while (0)
626
627#ifdef	_PTHREADS_INVARIANTS
628#define	THR_ASSERT_LOCKLEVEL(thrd)			\
629do {							\
630	if (__predict_false((thrd)->locklevel <= 0))	\
631		_thr_assert_lock_level();		\
632} while (0)
633#else
634#define THR_ASSERT_LOCKLEVEL(thrd)
635#endif
636
637#define	THR_LOCK_RELEASE(thrd, lck)			\
638do {							\
639	THR_ASSERT_LOCKLEVEL(thrd);			\
640	_thr_umutex_unlock((lck), TID(thrd));		\
641	(thrd)->locklevel--;				\
642	_thr_ast(thrd);					\
643} while (0)
644
645#define	THR_LOCK(curthrd)		THR_LOCK_ACQUIRE(curthrd, &(curthrd)->lock)
646#define	THR_UNLOCK(curthrd)		THR_LOCK_RELEASE(curthrd, &(curthrd)->lock)
647#define	THR_THREAD_LOCK(curthrd, thr)	THR_LOCK_ACQUIRE(curthrd, &(thr)->lock)
648#define	THR_THREAD_UNLOCK(curthrd, thr)	THR_LOCK_RELEASE(curthrd, &(thr)->lock)
649
650#define	THREAD_LIST_RDLOCK(curthrd)				\
651do {								\
652	(curthrd)->locklevel++;					\
653	_thr_rwl_rdlock(&_thr_list_lock);			\
654} while (0)
655
656#define	THREAD_LIST_WRLOCK(curthrd)				\
657do {								\
658	(curthrd)->locklevel++;					\
659	_thr_rwl_wrlock(&_thr_list_lock);			\
660} while (0)
661
662#define	THREAD_LIST_UNLOCK(curthrd)				\
663do {								\
664	_thr_rwl_unlock(&_thr_list_lock);			\
665	(curthrd)->locklevel--;					\
666	_thr_ast(curthrd);					\
667} while (0)
668
669/*
670 * Macros to insert/remove threads to the all thread list and
671 * the gc list.
672 */
673#define	THR_LIST_ADD(thrd) do {					\
674	if (((thrd)->tlflags & TLFLAGS_IN_TDLIST) == 0) {	\
675		TAILQ_INSERT_HEAD(&_thread_list, thrd, tle);	\
676		_thr_hash_add(thrd);				\
677		(thrd)->tlflags |= TLFLAGS_IN_TDLIST;		\
678	}							\
679} while (0)
680#define	THR_LIST_REMOVE(thrd) do {				\
681	if (((thrd)->tlflags & TLFLAGS_IN_TDLIST) != 0) {	\
682		TAILQ_REMOVE(&_thread_list, thrd, tle);		\
683		_thr_hash_remove(thrd);				\
684		(thrd)->tlflags &= ~TLFLAGS_IN_TDLIST;		\
685	}							\
686} while (0)
687#define	THR_GCLIST_ADD(thrd) do {				\
688	if (((thrd)->tlflags & TLFLAGS_IN_GCLIST) == 0) {	\
689		TAILQ_INSERT_HEAD(&_thread_gc_list, thrd, gcle);\
690		(thrd)->tlflags |= TLFLAGS_IN_GCLIST;		\
691		_gc_count++;					\
692	}							\
693} while (0)
694#define	THR_GCLIST_REMOVE(thrd) do {				\
695	if (((thrd)->tlflags & TLFLAGS_IN_GCLIST) != 0) {	\
696		TAILQ_REMOVE(&_thread_gc_list, thrd, gcle);	\
697		(thrd)->tlflags &= ~TLFLAGS_IN_GCLIST;		\
698		_gc_count--;					\
699	}							\
700} while (0)
701
702#define THR_REF_ADD(curthread, pthread) {			\
703	THR_CRITICAL_ENTER(curthread);				\
704	pthread->refcount++;					\
705} while (0)
706
707#define THR_REF_DEL(curthread, pthread) {			\
708	pthread->refcount--;					\
709	THR_CRITICAL_LEAVE(curthread);				\
710} while (0)
711
712#define GC_NEEDED()	(_gc_count >= 5)
713
714#define SHOULD_REPORT_EVENT(curthr, e)			\
715	(curthr->report_events && 			\
716	 (((curthr)->event_mask | _thread_event_mask ) & e) != 0)
717
718#ifndef __LIBC_ISTHREADED_DECLARED
719#define __LIBC_ISTHREADED_DECLARED
720extern int __isthreaded;
721#endif
722
723/*
724 * Global variables for the pthread kernel.
725 */
726
727extern char		*_usrstack __hidden;
728
729/* For debugger */
730extern int		_libthr_debug;
731extern int		_thread_event_mask;
732extern struct pthread	*_thread_last_event;
733/* Used in symbol lookup of libthread_db */
734extern struct pthread_key	_thread_keytable[];
735
736/* List of all threads: */
737extern pthreadlist	_thread_list;
738
739/* List of threads needing GC: */
740extern pthreadlist	_thread_gc_list __hidden;
741
742extern int		_thread_active_threads;
743extern atfork_head	_thr_atfork_list __hidden;
744extern struct urwlock	_thr_atfork_lock __hidden;
745
746/* Default thread attributes: */
747extern struct pthread_attr _pthread_attr_default __hidden;
748
749/* Default mutex attributes: */
750extern struct pthread_mutex_attr _pthread_mutexattr_default __hidden;
751extern struct pthread_mutex_attr _pthread_mutexattr_adaptive_default __hidden;
752
753/* Default condition variable attributes: */
754extern struct pthread_cond_attr _pthread_condattr_default __hidden;
755
756extern struct pthread_prio _thr_priorities[] __hidden;
757
758extern int	_thr_is_smp __hidden;
759
760extern size_t	_thr_guard_default __hidden;
761extern size_t	_thr_stack_default __hidden;
762extern size_t	_thr_stack_initial __hidden;
763extern int	_thr_page_size __hidden;
764extern int	_thr_spinloops __hidden;
765extern int	_thr_yieldloops __hidden;
766extern int	_thr_queuefifo __hidden;
767
768/* Garbage thread count. */
769extern int	_gc_count __hidden;
770
771extern struct umutex	_mutex_static_lock __hidden;
772extern struct umutex	_cond_static_lock __hidden;
773extern struct umutex	_rwlock_static_lock __hidden;
774extern struct umutex	_keytable_lock __hidden;
775extern struct urwlock	_thr_list_lock __hidden;
776extern struct umutex	_thr_event_lock __hidden;
777extern struct umutex	_suspend_all_lock __hidden;
778extern int		_suspend_all_waiters __hidden;
779extern int		_suspend_all_cycle __hidden;
780extern struct pthread	*_single_thread __hidden;
781
782/*
783 * Function prototype definitions.
784 */
785__BEGIN_DECLS
786void	_thr_setthreaded(int) __hidden;
787int	_mutex_cv_lock(struct pthread_mutex *, int, bool) __hidden;
788int	_mutex_cv_unlock(struct pthread_mutex *, int *, int *) __hidden;
789int     _mutex_cv_attach(struct pthread_mutex *, int) __hidden;
790int     _mutex_cv_detach(struct pthread_mutex *, int *) __hidden;
791int     _mutex_owned(struct pthread *, const struct pthread_mutex *) __hidden;
792int	_mutex_reinit(pthread_mutex_t *) __hidden;
793void	_mutex_fork(struct pthread *curthread) __hidden;
794int	_mutex_enter_robust(struct pthread *curthread, struct pthread_mutex *m)
795	    __hidden;
796void	_mutex_leave_robust(struct pthread *curthread, struct pthread_mutex *m)
797	    __hidden;
798void	_libpthread_init(struct pthread *) __hidden;
799struct pthread *_thr_alloc(struct pthread *) __hidden;
800void	_thread_exit(const char *, int, const char *) __hidden __dead2;
801void	_thread_exitf(const char *, int, const char *, ...) __hidden __dead2
802	    __printflike(3, 4);
803int	_thr_ref_add(struct pthread *, struct pthread *, int) __hidden;
804void	_thr_ref_delete(struct pthread *, struct pthread *) __hidden;
805void	_thr_ref_delete_unlocked(struct pthread *, struct pthread *) __hidden;
806int	_thr_find_thread(struct pthread *, struct pthread *, int) __hidden;
807void	_thr_rtld_init(void) __hidden;
808void	_thr_rtld_postfork_child(void) __hidden;
809int	_thr_stack_alloc(struct pthread_attr *) __hidden;
810void	_thr_stack_free(struct pthread_attr *) __hidden;
811void	_thr_free(struct pthread *, struct pthread *) __hidden;
812void	_thr_gc(struct pthread *) __hidden;
813void    _thread_cleanupspecific(void) __hidden;
814void	_thread_printf(int, const char *, ...) __hidden __printflike(2, 3);
815void	_thread_vprintf(int, const char *, va_list) __hidden;
816void	_thr_spinlock_init(void) __hidden;
817void	_thr_cancel_enter(struct pthread *) __hidden;
818void	_thr_cancel_enter2(struct pthread *, int) __hidden;
819void	_thr_cancel_leave(struct pthread *, int) __hidden;
820void	_thr_testcancel(struct pthread *) __hidden;
821void	_thr_signal_block(struct pthread *) __hidden;
822void	_thr_signal_unblock(struct pthread *) __hidden;
823void	_thr_signal_block_check_fast(void) __hidden;
824void	_thr_signal_block_setup(struct pthread *) __hidden;
825void	_thr_signal_init(int) __hidden;
826void	_thr_signal_deinit(void) __hidden;
827int	_thr_send_sig(struct pthread *, int sig) __hidden;
828void	_thr_list_init(void) __hidden;
829void	_thr_hash_add(struct pthread *) __hidden;
830void	_thr_hash_remove(struct pthread *) __hidden;
831struct pthread *_thr_hash_find(struct pthread *) __hidden;
832void	_thr_link(struct pthread *, struct pthread *) __hidden;
833void	_thr_unlink(struct pthread *, struct pthread *) __hidden;
834void	_thr_assert_lock_level(void) __hidden __dead2;
835void	_thr_ast(struct pthread *) __hidden;
836void	_thr_report_creation(struct pthread *curthread,
837	    struct pthread *newthread) __hidden;
838void	_thr_report_death(struct pthread *curthread) __hidden;
839int	_thr_getscheduler(lwpid_t, int *, struct sched_param *) __hidden;
840int	_thr_setscheduler(lwpid_t, int, const struct sched_param *) __hidden;
841void	_thr_signal_prefork(void) __hidden;
842void	_thr_signal_postfork(void) __hidden;
843void	_thr_signal_postfork_child(void) __hidden;
844void	_thr_suspend_all_lock(struct pthread *) __hidden;
845void	_thr_suspend_all_unlock(struct pthread *) __hidden;
846void	_thr_try_gc(struct pthread *, struct pthread *) __hidden;
847int	_rtp_to_schedparam(const struct rtprio *rtp, int *policy,
848		struct sched_param *param) __hidden;
849int	_schedparam_to_rtp(int policy, const struct sched_param *param,
850		struct rtprio *rtp) __hidden;
851void	_thread_bp_create(void);
852void	_thread_bp_death(void);
853int	_sched_yield(void);
854
855void	_pthread_cleanup_push(void (*)(void *), void *);
856void	_pthread_cleanup_pop(int);
857void	_pthread_exit_mask(void *status, sigset_t *mask) __dead2 __hidden;
858#ifndef _LIBC_PRIVATE_H_
859void	_pthread_cancel_enter(int maycancel);
860void 	_pthread_cancel_leave(int maycancel);
861#endif
862int	_pthread_mutex_consistent(pthread_mutex_t * _Nonnull);
863int	_pthread_mutexattr_getrobust(pthread_mutexattr_t * _Nonnull __restrict,
864	    int * _Nonnull __restrict);
865int	_pthread_mutexattr_setrobust(pthread_mutexattr_t * _Nonnull, int);
866
867/* #include <fcntl.h> */
868#ifdef  _SYS_FCNTL_H_
869#ifndef _LIBC_PRIVATE_H_
870int     __sys_fcntl(int, int, ...);
871int     __sys_openat(int, const char *, int, ...);
872#endif /* _LIBC_PRIVATE_H_ */
873#endif /* _SYS_FCNTL_H_ */
874
875/* #include <signal.h> */
876#ifdef _SIGNAL_H_
877#ifndef _LIBC_PRIVATE_H_
878int     __sys_sigaction(int, const struct sigaction *, struct sigaction *);
879int     __sys_sigprocmask(int, const sigset_t *, sigset_t *);
880int     __sys_sigsuspend(const sigset_t *);
881int	__sys_sigtimedwait(const sigset_t *, siginfo_t *,
882		const struct timespec *);
883int	__sys_sigwait(const sigset_t *, int *);
884int	__sys_sigwaitinfo(const sigset_t *set, siginfo_t *info);
885#endif /* _LIBC_PRIVATE_H_ */
886#endif /* _SYS_FCNTL_H_ */
887
888/* #include <time.h> */
889#ifdef	_TIME_H_
890#ifndef _LIBC_PRIVATE_H_
891int	__sys_clock_nanosleep(clockid_t, int, const struct timespec *,
892	    struct timespec *);
893int	__sys_nanosleep(const struct timespec *, struct timespec *);
894#endif /* _LIBC_PRIVATE_H_ */
895#endif /* _SYS_FCNTL_H_ */
896
897/* #include <sys/ucontext.h> */
898#ifdef _SYS_UCONTEXT_H_
899#ifndef _LIBC_PRIVATE_H_
900int	__sys_setcontext(const ucontext_t *ucp);
901int	__sys_swapcontext(ucontext_t *oucp, const ucontext_t *ucp);
902#endif /* _LIBC_PRIVATE_H_ */
903#endif /* _SYS_FCNTL_H_ */
904
905/* #include <unistd.h> */
906#ifdef  _UNISTD_H_
907#ifndef _LIBC_PRIVATE_H_
908int     __sys_close(int);
909int	__sys_fork(void);
910ssize_t __sys_read(int, void *, size_t);
911#endif /* _LIBC_PRIVATE_H_ */
912#endif /* _SYS_FCNTL_H_ */
913
914static inline int
915_thr_isthreaded(void)
916{
917	return (__isthreaded != 0);
918}
919
920static inline int
921_thr_is_inited(void)
922{
923	return (_thr_initial != NULL);
924}
925
926static inline void
927_thr_check_init(void)
928{
929	if (_thr_initial == NULL)
930		_libpthread_init(NULL);
931}
932
933struct wake_addr *_thr_alloc_wake_addr(void);
934void	_thr_release_wake_addr(struct wake_addr *);
935int	_thr_sleep(struct pthread *, int, const struct timespec *);
936
937void _thr_wake_addr_init(void) __hidden;
938
939static inline void
940_thr_clear_wake(struct pthread *td)
941{
942	td->wake_addr->value = 0;
943}
944
945static inline int
946_thr_is_woken(struct pthread *td)
947{
948	return td->wake_addr->value != 0;
949}
950
951static inline void
952_thr_set_wake(unsigned int *waddr)
953{
954	*waddr = 1;
955	_thr_umtx_wake(waddr, INT_MAX, 0);
956}
957
958void _thr_wake_all(unsigned int *waddrs[], int) __hidden;
959
960static inline struct pthread *
961_sleepq_first(struct sleepqueue *sq)
962{
963	return TAILQ_FIRST(&sq->sq_blocked);
964}
965
966void	_sleepq_init(void) __hidden;
967struct sleepqueue *_sleepq_alloc(void) __hidden;
968void	_sleepq_free(struct sleepqueue *) __hidden;
969void	_sleepq_lock(void *) __hidden;
970void	_sleepq_unlock(void *) __hidden;
971struct sleepqueue *_sleepq_lookup(void *) __hidden;
972void	_sleepq_add(void *, struct pthread *) __hidden;
973int	_sleepq_remove(struct sleepqueue *, struct pthread *) __hidden;
974void	_sleepq_drop(struct sleepqueue *,
975		void (*cb)(struct pthread *, void *arg), void *) __hidden;
976
977int	_pthread_mutex_init_calloc_cb(pthread_mutex_t *mutex,
978	    void *(calloc_cb)(size_t, size_t));
979
980struct dl_phdr_info;
981void __pthread_cxa_finalize(struct dl_phdr_info *phdr_info);
982void _thr_tsd_unload(struct dl_phdr_info *phdr_info) __hidden;
983void _thr_sigact_unload(struct dl_phdr_info *phdr_info) __hidden;
984void _thr_stack_fix_protection(struct pthread *thrd);
985void __pthread_distribute_static_tls(size_t offset, void *src, size_t len,
986    size_t total_len);
987
988int *__error_threaded(void) __hidden;
989void __thr_interpose_libc(void) __hidden;
990pid_t __thr_fork(void);
991pid_t __thr_pdfork(int *, int);
992int __thr_setcontext(const ucontext_t *ucp);
993int __thr_sigaction(int sig, const struct sigaction *act,
994    struct sigaction *oact) __hidden;
995int __thr_sigprocmask(int how, const sigset_t *set, sigset_t *oset);
996int __thr_sigsuspend(const sigset_t * set);
997int __thr_sigtimedwait(const sigset_t *set, siginfo_t *info,
998    const struct timespec * timeout);
999int __thr_sigwait(const sigset_t *set, int *sig);
1000int __thr_sigwaitinfo(const sigset_t *set, siginfo_t *info);
1001int __thr_swapcontext(ucontext_t *oucp, const ucontext_t *ucp);
1002
1003void __thr_map_stacks_exec(void);
1004
1005struct _spinlock;
1006void __thr_spinunlock(struct _spinlock *lck);
1007void __thr_spinlock(struct _spinlock *lck);
1008
1009struct tcb *_tcb_ctor(struct pthread *, int);
1010void	_tcb_dtor(struct tcb *);
1011
1012void __thr_pshared_init(void) __hidden;
1013void *__thr_pshared_offpage(void *key, int doalloc) __hidden;
1014void __thr_pshared_destroy(void *key) __hidden;
1015void __thr_pshared_atfork_pre(void) __hidden;
1016void __thr_pshared_atfork_post(void) __hidden;
1017
1018void *__thr_calloc(size_t num, size_t size);
1019void __thr_free(void *cp);
1020void *__thr_malloc(size_t nbytes);
1021void *__thr_realloc(void *cp, size_t nbytes);
1022void __thr_malloc_init(void);
1023void __thr_malloc_prefork(struct pthread *curthread);
1024void __thr_malloc_postfork(struct pthread *curthread);
1025
1026int _thr_join(pthread_t, void **);
1027int _Tthr_kill(pthread_t, int);
1028int _thr_getthreadid_np(void);
1029void __thr_cleanup_push_imp(void (*)(void *), void *,
1030    struct _pthread_cleanup_info *);
1031void __thr_cleanup_pop_imp(int);
1032void _thr_cleanup_push(void (*)(void *), void *);
1033void _thr_cleanup_pop(int);
1034void _Tthr_testcancel(void);
1035void _Tthr_cancel_enter(int);
1036void _Tthr_cancel_leave(int);
1037int _thr_cancel(pthread_t);
1038int _thr_atfork(void (*)(void), void (*)(void), void (*)(void));
1039int _thr_attr_destroy(pthread_attr_t *);
1040int _thr_attr_get_np(pthread_t, pthread_attr_t *);
1041int _thr_attr_getdetachstate(const pthread_attr_t *, int *);
1042int _thr_attr_getguardsize(const pthread_attr_t * __restrict,
1043    size_t * __restrict);
1044int _thr_attr_getinheritsched(const pthread_attr_t * __restrict,
1045    int * __restrict);
1046int _thr_attr_getschedparam(const pthread_attr_t * __restrict,
1047    struct sched_param * __restrict);
1048int _thr_attr_getschedpolicy(const pthread_attr_t * __restrict,
1049    int * __restrict);
1050int _thr_attr_getscope(const pthread_attr_t * __restrict, int * __restrict);
1051int _thr_attr_getstackaddr(const pthread_attr_t *, void **);
1052int _thr_attr_getstacksize(const pthread_attr_t * __restrict,
1053    size_t * __restrict);
1054int _thr_attr_init(pthread_attr_t *);
1055int _thr_attr_setdetachstate(pthread_attr_t *, int);
1056int _thr_attr_setguardsize(pthread_attr_t *, size_t);
1057int _thr_attr_setinheritsched(pthread_attr_t *, int);
1058int _thr_attr_setschedparam(pthread_attr_t * __restrict,
1059    const struct sched_param * __restrict);
1060int _thr_attr_setschedpolicy(pthread_attr_t *, int);
1061int _thr_attr_setscope(pthread_attr_t *, int);
1062int _thr_attr_setstackaddr(pthread_attr_t *, void *);
1063int _thr_attr_setstacksize(pthread_attr_t *, size_t);
1064int _thr_cond_init(pthread_cond_t * __restrict,
1065    const pthread_condattr_t * __restrict);
1066int _thr_cond_destroy(pthread_cond_t *);
1067int _thr_cond_timedwait(pthread_cond_t * __restrict,
1068    pthread_mutex_t * __restrict, const struct timespec * __restrict);
1069int _thr_cond_signal(pthread_cond_t * cond);
1070int _thr_cond_broadcast(pthread_cond_t * cond);
1071int __thr_cond_wait(pthread_cond_t *, pthread_mutex_t *);
1072int _thr_cond_wait(pthread_cond_t *, pthread_mutex_t *);
1073int _thr_detach(pthread_t);
1074int _thr_equal(pthread_t, pthread_t);
1075void _Tthr_exit(void *);
1076int _thr_key_create(pthread_key_t *, void (*)(void *));
1077int _thr_key_delete(pthread_key_t);
1078int _thr_setspecific(pthread_key_t, const void *);
1079void *_thr_getspecific(pthread_key_t);
1080int _thr_setcancelstate(int, int *);
1081int _thr_setcanceltype(int, int *);
1082pthread_t _Tthr_self(void);
1083int _thr_rwlock_init(pthread_rwlock_t *, const pthread_rwlockattr_t *);
1084int _thr_rwlock_destroy(pthread_rwlock_t *);
1085int _Tthr_rwlock_rdlock(pthread_rwlock_t *);
1086int _Tthr_rwlock_tryrdlock(pthread_rwlock_t *);
1087int _Tthr_rwlock_trywrlock(pthread_rwlock_t *);
1088int _Tthr_rwlock_wrlock(pthread_rwlock_t *);
1089int _Tthr_rwlock_unlock(pthread_rwlock_t *);
1090int _thr_once(pthread_once_t *, void (*)(void));
1091int _thr_sigmask(int, const sigset_t *, sigset_t *);
1092int _thr_main_np(void);
1093int _thr_mutexattr_init(pthread_mutexattr_t *);
1094int _thr_mutexattr_destroy(pthread_mutexattr_t *);
1095int _thr_mutexattr_settype(pthread_mutexattr_t *, int);
1096int _thr_mutexattr_getrobust(pthread_mutexattr_t *, int *);
1097int _thr_mutexattr_setrobust(pthread_mutexattr_t *, int);
1098int __Tthr_mutex_init(pthread_mutex_t * __restrict,
1099    const pthread_mutexattr_t * __restrict);
1100int _Tthr_mutex_consistent(pthread_mutex_t *);
1101int _thr_mutex_destroy(pthread_mutex_t *);
1102int _thr_mutex_unlock(pthread_mutex_t *);
1103int __Tthr_mutex_lock(pthread_mutex_t *);
1104int __Tthr_mutex_trylock(pthread_mutex_t *);
1105
1106__END_DECLS
1107__NULLABILITY_PRAGMA_POP
1108
1109#endif  /* !_THR_PRIVATE_H */
1110