xref: /freebsd/lib/libthr/thread/thr_init.c (revision e6747c7ce113750a674ffd9cddb9bcd2116e6d78)
1bb535300SJeff Roberson /*
2a091d823SDavid Xu  * Copyright (c) 2003 Daniel M. Eischen <deischen@freebsd.org>
3bb535300SJeff Roberson  * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
4bb535300SJeff Roberson  * All rights reserved.
5bb535300SJeff Roberson  *
6bb535300SJeff Roberson  * Redistribution and use in source and binary forms, with or without
7bb535300SJeff Roberson  * modification, are permitted provided that the following conditions
8bb535300SJeff Roberson  * are met:
9bb535300SJeff Roberson  * 1. Redistributions of source code must retain the above copyright
10bb535300SJeff Roberson  *    notice, this list of conditions and the following disclaimer.
11bb535300SJeff Roberson  * 2. Redistributions in binary form must reproduce the above copyright
12bb535300SJeff Roberson  *    notice, this list of conditions and the following disclaimer in the
13bb535300SJeff Roberson  *    documentation and/or other materials provided with the distribution.
14bb535300SJeff Roberson  * 3. All advertising materials mentioning features or use of this software
15bb535300SJeff Roberson  *    must display the following acknowledgement:
16bb535300SJeff Roberson  *	This product includes software developed by John Birrell.
17bb535300SJeff Roberson  * 4. Neither the name of the author nor the names of any co-contributors
18bb535300SJeff Roberson  *    may be used to endorse or promote products derived from this software
19bb535300SJeff Roberson  *    without specific prior written permission.
20bb535300SJeff Roberson  *
21bb535300SJeff Roberson  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
22bb535300SJeff Roberson  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23bb535300SJeff Roberson  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24bb535300SJeff Roberson  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25bb535300SJeff Roberson  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26bb535300SJeff Roberson  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27bb535300SJeff Roberson  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28bb535300SJeff Roberson  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29bb535300SJeff Roberson  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30bb535300SJeff Roberson  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31bb535300SJeff Roberson  * SUCH DAMAGE.
32bb535300SJeff Roberson  *
33bb535300SJeff Roberson  * $FreeBSD$
34bb535300SJeff Roberson  */
35bb535300SJeff Roberson 
36bb535300SJeff Roberson #include "namespace.h"
37bb535300SJeff Roberson #include <sys/types.h>
38a091d823SDavid Xu #include <sys/signalvar.h>
39bb535300SJeff Roberson #include <sys/ioctl.h>
40bb535300SJeff Roberson #include <sys/sysctl.h>
41bb535300SJeff Roberson #include <sys/ttycom.h>
42bb535300SJeff Roberson #include <sys/mman.h>
437b4f8f03SDavid Xu #include <sys/rtprio.h>
44bb535300SJeff Roberson #include <errno.h>
45bb535300SJeff Roberson #include <fcntl.h>
46bb535300SJeff Roberson #include <paths.h>
47bb535300SJeff Roberson #include <pthread.h>
48a091d823SDavid Xu #include <pthread_np.h>
49bb535300SJeff Roberson #include <signal.h>
50bb535300SJeff Roberson #include <stdlib.h>
51bb535300SJeff Roberson #include <string.h>
529572a734SDavid Xu #include <time.h>
53bb535300SJeff Roberson #include <unistd.h>
54bb535300SJeff Roberson #include "un-namespace.h"
55bb535300SJeff Roberson 
56a091d823SDavid Xu #include "libc_private.h"
57bb535300SJeff Roberson #include "thr_private.h"
58bb535300SJeff Roberson 
5937a6356bSDavid Xu char		*_usrstack;
60cf905a15SDavid Xu struct pthread	*_thr_initial;
61cf905a15SDavid Xu int		_thr_scope_system;
62cf905a15SDavid Xu int		_libthr_debug;
63cf905a15SDavid Xu int		_thread_event_mask;
64cf905a15SDavid Xu struct pthread	*_thread_last_event;
65cf905a15SDavid Xu pthreadlist	_thread_list = TAILQ_HEAD_INITIALIZER(_thread_list);
66cf905a15SDavid Xu pthreadlist 	_thread_gc_list = TAILQ_HEAD_INITIALIZER(_thread_gc_list);
67cf905a15SDavid Xu int		_thread_active_threads = 1;
68cf905a15SDavid Xu atfork_head	_thr_atfork_list = TAILQ_HEAD_INITIALIZER(_thr_atfork_list);
69bddd24cdSDavid Xu struct umutex	_thr_atfork_lock = DEFAULT_UMUTEX;
70cf905a15SDavid Xu 
71245116caSDavid Xu struct pthread_prio	_thr_priorities[3] = {
727b4f8f03SDavid Xu 	{RTP_PRIO_MIN,  RTP_PRIO_MAX, 0}, /* FIFO */
737b4f8f03SDavid Xu 	{0, 0, 63}, /* OTHER */
747b4f8f03SDavid Xu 	{RTP_PRIO_MIN, RTP_PRIO_MAX, 0}  /* RR */
75245116caSDavid Xu };
76245116caSDavid Xu 
77cf905a15SDavid Xu struct pthread_attr _pthread_attr_default = {
789ad4b644SDavid Xu 	.sched_policy = SCHED_OTHER,
79cf905a15SDavid Xu 	.sched_inherit = 0,
80245116caSDavid Xu 	.prio = 0,
81cf905a15SDavid Xu 	.suspend = THR_CREATE_RUNNING,
826f79c826SDavid Xu 	.flags = PTHREAD_SCOPE_SYSTEM,
83cf905a15SDavid Xu 	.stackaddr_attr = NULL,
84cf905a15SDavid Xu 	.stacksize_attr = THR_STACK_DEFAULT,
85cf905a15SDavid Xu 	.guardsize_attr = 0
86cf905a15SDavid Xu };
87cf905a15SDavid Xu 
88cf905a15SDavid Xu struct pthread_mutex_attr _pthread_mutexattr_default = {
89cf905a15SDavid Xu 	.m_type = PTHREAD_MUTEX_DEFAULT,
90cf905a15SDavid Xu 	.m_protocol = PTHREAD_PRIO_NONE,
91cf905a15SDavid Xu 	.m_ceiling = 0,
92cf905a15SDavid Xu 	.m_flags = 0
93cf905a15SDavid Xu };
94cf905a15SDavid Xu 
95cf905a15SDavid Xu /* Default condition variable attributes: */
96cf905a15SDavid Xu struct pthread_cond_attr _pthread_condattr_default = {
97cf905a15SDavid Xu 	.c_pshared = PTHREAD_PROCESS_PRIVATE,
98cf905a15SDavid Xu 	.c_clockid = CLOCK_REALTIME
99cf905a15SDavid Xu };
100cf905a15SDavid Xu 
101cf905a15SDavid Xu pid_t		_thr_pid;
1026b73f085SDavid Xu int		_thr_smp_cpus = 1;
10337a6356bSDavid Xu size_t		_thr_guard_default;
10437a6356bSDavid Xu size_t		_thr_stack_default = THR_STACK_DEFAULT;
10537a6356bSDavid Xu size_t		_thr_stack_initial = THR_STACK_INITIAL;
106cf905a15SDavid Xu int		_thr_page_size;
107cf905a15SDavid Xu int		_gc_count;
108bddd24cdSDavid Xu struct umutex	_mutex_static_lock = DEFAULT_UMUTEX;
109bddd24cdSDavid Xu struct umutex	_cond_static_lock = DEFAULT_UMUTEX;
110bddd24cdSDavid Xu struct umutex	_rwlock_static_lock = DEFAULT_UMUTEX;
111bddd24cdSDavid Xu struct umutex	_keytable_lock = DEFAULT_UMUTEX;
112bddd24cdSDavid Xu struct umutex	_thr_list_lock = DEFAULT_UMUTEX;
113bddd24cdSDavid Xu struct umutex	_thr_event_lock = DEFAULT_UMUTEX;
114cf905a15SDavid Xu 
115a091d823SDavid Xu int	__pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *);
116a091d823SDavid Xu int	__pthread_mutex_lock(pthread_mutex_t *);
117a091d823SDavid Xu int	__pthread_mutex_trylock(pthread_mutex_t *);
118a091d823SDavid Xu void	_thread_init_hack(void) __attribute__ ((constructor));
119a091d823SDavid Xu 
120a091d823SDavid Xu static void init_private(void);
121a091d823SDavid Xu static void init_main_thread(struct pthread *thread);
1224dee39feSMike Makonnen 
123bb535300SJeff Roberson /*
124bb535300SJeff Roberson  * All weak references used within libc should be in this table.
125a091d823SDavid Xu  * This is so that static libraries will work.
126bb535300SJeff Roberson  */
12705c3a5eaSDavid Xu 
12805c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_fork);
1299572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_getspecific);
1309572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_key_create);
1319572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_key_delete);
1329572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_destroy);
1339572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_init);
1349572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_lock);
1359572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_trylock);
1369572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_unlock);
1379572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutexattr_init);
1389572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutexattr_destroy);
1399572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutexattr_settype);
1409572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_once);
1419572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_setspecific);
14205c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_raise);
14305c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_destroy);
14405c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_getvalue);
14505c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_init);
14605c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_post);
14705c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_timedwait);
14805c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_trywait);
14905c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sem_wait);
1509572a734SDavid Xu STATIC_LIB_REQUIRE(_sigaction);
1519572a734SDavid Xu STATIC_LIB_REQUIRE(_sigprocmask);
1529572a734SDavid Xu STATIC_LIB_REQUIRE(_sigsuspend);
15305c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sigtimedwait);
15405c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sigwait);
15505c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_sigwaitinfo);
15605c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_spinlock);
15705c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_spinlock_debug);
15805c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_spinunlock);
1599572a734SDavid Xu STATIC_LIB_REQUIRE(_thread_init_hack);
16005c3a5eaSDavid Xu STATIC_LIB_REQUIRE(_vfork);
161bb535300SJeff Roberson 
162bb535300SJeff Roberson /*
163bb535300SJeff Roberson  * These are needed when linking statically.  All references within
164bb535300SJeff Roberson  * libgcc (and in the future libc) to these routines are weak, but
165bb535300SJeff Roberson  * if they are not (strongly) referenced by the application or other
166bb535300SJeff Roberson  * libraries, then the actual functions will not be loaded.
167bb535300SJeff Roberson  */
1689572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_once);
1699572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_key_create);
1709572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_key_delete);
1719572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_getspecific);
1729572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_setspecific);
1739572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_init);
1749572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_destroy);
1759572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_lock);
1769572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_trylock);
1779572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_mutex_unlock);
1789572a734SDavid Xu STATIC_LIB_REQUIRE(_pthread_create);
1799572a734SDavid Xu 
1809572a734SDavid Xu /* Pull in all symbols required by libthread_db */
1819572a734SDavid Xu STATIC_LIB_REQUIRE(_thread_state_running);
182bb535300SJeff Roberson 
183a091d823SDavid Xu #define	DUAL_ENTRY(entry)	\
184a091d823SDavid Xu 	(pthread_func_t)entry, (pthread_func_t)entry
185a091d823SDavid Xu 
186a091d823SDavid Xu static pthread_func_t jmp_table[][2] = {
187f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_atfork)},	/* PJT_ATFORK */
188f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_destroy)},	/* PJT_ATTR_DESTROY */
189f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getdetachstate)},	/* PJT_ATTR_GETDETACHSTATE */
190f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getguardsize)},	/* PJT_ATTR_GETGUARDSIZE */
191f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getinheritsched)},	/* PJT_ATTR_GETINHERITSCHED */
192f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getschedparam)},	/* PJT_ATTR_GETSCHEDPARAM */
193f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getschedpolicy)},	/* PJT_ATTR_GETSCHEDPOLICY */
194f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getscope)},	/* PJT_ATTR_GETSCOPE */
195f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getstackaddr)},	/* PJT_ATTR_GETSTACKADDR */
196f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_getstacksize)},	/* PJT_ATTR_GETSTACKSIZE */
197f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_init)},	/* PJT_ATTR_INIT */
198f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setdetachstate)},	/* PJT_ATTR_SETDETACHSTATE */
199f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setguardsize)},	/* PJT_ATTR_SETGUARDSIZE */
200f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setinheritsched)},	/* PJT_ATTR_SETINHERITSCHED */
201f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setschedparam)},	/* PJT_ATTR_SETSCHEDPARAM */
202f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setschedpolicy)},	/* PJT_ATTR_SETSCHEDPOLICY */
203f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setscope)},	/* PJT_ATTR_SETSCOPE */
204f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setstackaddr)},	/* PJT_ATTR_SETSTACKADDR */
205f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_attr_setstacksize)},	/* PJT_ATTR_SETSTACKSIZE */
206f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_cancel)},	/* PJT_CANCEL */
207f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_cleanup_pop)},	/* PJT_CLEANUP_POP */
208f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_cleanup_push)},	/* PJT_CLEANUP_PUSH */
209a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_cond_broadcast)},	/* PJT_COND_BROADCAST */
210a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_cond_destroy)},	/* PJT_COND_DESTROY */
211a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_cond_init)},	/* PJT_COND_INIT */
212a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_cond_signal)},	/* PJT_COND_SIGNAL */
213f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_cond_timedwait)},	/* PJT_COND_TIMEDWAIT */
214a091d823SDavid Xu 	{(pthread_func_t)__pthread_cond_wait,
215a091d823SDavid Xu 	 (pthread_func_t)_pthread_cond_wait},	/* PJT_COND_WAIT */
216f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_detach)},	/* PJT_DETACH */
217f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_equal)},	/* PJT_EQUAL */
218f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_exit)},	/* PJT_EXIT */
219a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_getspecific)},	/* PJT_GETSPECIFIC */
220f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_join)},	/* PJT_JOIN */
221a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_key_create)},	/* PJT_KEY_CREATE */
222a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_key_delete)},	/* PJT_KEY_DELETE*/
223f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_kill)},	/* PJT_KILL */
224a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_main_np)},		/* PJT_MAIN_NP */
225f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_mutexattr_destroy)}, /* PJT_MUTEXATTR_DESTROY */
226f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_mutexattr_init)},	/* PJT_MUTEXATTR_INIT */
227f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_mutexattr_settype)}, /* PJT_MUTEXATTR_SETTYPE */
228a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_mutex_destroy)},	/* PJT_MUTEX_DESTROY */
229a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_mutex_init)},	/* PJT_MUTEX_INIT */
230a091d823SDavid Xu 	{(pthread_func_t)__pthread_mutex_lock,
231a091d823SDavid Xu 	 (pthread_func_t)_pthread_mutex_lock},	/* PJT_MUTEX_LOCK */
232a091d823SDavid Xu 	{(pthread_func_t)__pthread_mutex_trylock,
233a091d823SDavid Xu 	 (pthread_func_t)_pthread_mutex_trylock},/* PJT_MUTEX_TRYLOCK */
234a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_mutex_unlock)},	/* PJT_MUTEX_UNLOCK */
235a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_once)},		/* PJT_ONCE */
236a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_destroy)},	/* PJT_RWLOCK_DESTROY */
237a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_init)},	/* PJT_RWLOCK_INIT */
238a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_rdlock)},	/* PJT_RWLOCK_RDLOCK */
239a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_tryrdlock)},/* PJT_RWLOCK_TRYRDLOCK */
240a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_trywrlock)},/* PJT_RWLOCK_TRYWRLOCK */
241a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_unlock)},	/* PJT_RWLOCK_UNLOCK */
242a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_rwlock_wrlock)},	/* PJT_RWLOCK_WRLOCK */
243a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_self)},		/* PJT_SELF */
244f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_setcancelstate)},	/* PJT_SETCANCELSTATE */
245f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_setcanceltype)},	/* PJT_SETCANCELTYPE */
246a091d823SDavid Xu 	{DUAL_ENTRY(_pthread_setspecific)},	/* PJT_SETSPECIFIC */
247f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_sigmask)},		/* PJT_SIGMASK */
248f4cd2a5bSDaniel Eischen 	{DUAL_ENTRY(_pthread_testcancel)}	/* PJT_TESTCANCEL */
249a091d823SDavid Xu };
250a091d823SDavid Xu 
251a091d823SDavid Xu static int init_once = 0;
252bb535300SJeff Roberson 
253bb535300SJeff Roberson /*
254a091d823SDavid Xu  * For the shared version of the threads library, the above is sufficient.
255a091d823SDavid Xu  * But for the archive version of the library, we need a little bit more.
256a091d823SDavid Xu  * Namely, we must arrange for this particular module to be pulled in from
257a091d823SDavid Xu  * the archive library at link time.  To accomplish that, we define and
258a091d823SDavid Xu  * initialize a variable, "_thread_autoinit_dummy_decl".  This variable is
259a091d823SDavid Xu  * referenced (as an extern) from libc/stdlib/exit.c. This will always
260a091d823SDavid Xu  * create a need for this module, ensuring that it is present in the
261a091d823SDavid Xu  * executable.
262a091d823SDavid Xu  */
263a091d823SDavid Xu extern int _thread_autoinit_dummy_decl;
264a091d823SDavid Xu int _thread_autoinit_dummy_decl = 0;
265a091d823SDavid Xu 
266a091d823SDavid Xu void
267a091d823SDavid Xu _thread_init_hack(void)
268a091d823SDavid Xu {
269a091d823SDavid Xu 
270a091d823SDavid Xu 	_libpthread_init(NULL);
271a091d823SDavid Xu }
272a091d823SDavid Xu 
273a091d823SDavid Xu 
274a091d823SDavid Xu /*
275a091d823SDavid Xu  * Threaded process initialization.
276a091d823SDavid Xu  *
277a091d823SDavid Xu  * This is only called under two conditions:
278a091d823SDavid Xu  *
279a091d823SDavid Xu  *   1) Some thread routines have detected that the library hasn't yet
280a091d823SDavid Xu  *      been initialized (_thr_initial == NULL && curthread == NULL), or
281a091d823SDavid Xu  *
282a091d823SDavid Xu  *   2) An explicit call to reinitialize after a fork (indicated
283a091d823SDavid Xu  *      by curthread != NULL)
284f2c3dd08SMike Makonnen  */
285f2c3dd08SMike Makonnen void
286a091d823SDavid Xu _libpthread_init(struct pthread *curthread)
287f2c3dd08SMike Makonnen {
288a091d823SDavid Xu 	int fd, first = 0;
289a091d823SDavid Xu 	sigset_t sigset, oldset;
290bb535300SJeff Roberson 
291bb535300SJeff Roberson 	/* Check if this function has already been called: */
292a091d823SDavid Xu 	if ((_thr_initial != NULL) && (curthread == NULL))
293a091d823SDavid Xu 		/* Only initialize the threaded application once. */
294bb535300SJeff Roberson 		return;
295bb535300SJeff Roberson 
296bb535300SJeff Roberson 	/*
297a091d823SDavid Xu 	 * Check the size of the jump table to make sure it is preset
298a091d823SDavid Xu 	 * with the correct number of entries.
299a091d823SDavid Xu 	 */
300a091d823SDavid Xu 	if (sizeof(jmp_table) != (sizeof(pthread_func_t) * PJT_MAX * 2))
301a091d823SDavid Xu 		PANIC("Thread jump table not properly initialized");
302a091d823SDavid Xu 	memcpy(__thr_jtable, jmp_table, sizeof(jmp_table));
303a091d823SDavid Xu 
304bb535300SJeff Roberson 	/*
305bb535300SJeff Roberson 	 * Check for the special case of this process running as
306bb535300SJeff Roberson 	 * or in place of init as pid = 1:
307bb535300SJeff Roberson 	 */
308a091d823SDavid Xu 	if ((_thr_pid = getpid()) == 1) {
309bb535300SJeff Roberson 		/*
310bb535300SJeff Roberson 		 * Setup a new session for this process which is
311bb535300SJeff Roberson 		 * assumed to be running as root.
312bb535300SJeff Roberson 		 */
313bb535300SJeff Roberson 		if (setsid() == -1)
314bb535300SJeff Roberson 			PANIC("Can't set session ID");
315bb535300SJeff Roberson 		if (revoke(_PATH_CONSOLE) != 0)
316bb535300SJeff Roberson 			PANIC("Can't revoke console");
317bb535300SJeff Roberson 		if ((fd = __sys_open(_PATH_CONSOLE, O_RDWR)) < 0)
318bb535300SJeff Roberson 			PANIC("Can't open console");
319bb535300SJeff Roberson 		if (setlogin("root") == -1)
320bb535300SJeff Roberson 			PANIC("Can't set login to root");
32137a6356bSDavid Xu 		if (_ioctl(fd, TIOCSCTTY, (char *) NULL) == -1)
322bb535300SJeff Roberson 			PANIC("Can't set controlling terminal");
323bb535300SJeff Roberson 	}
324bb535300SJeff Roberson 
325a091d823SDavid Xu 	/* Initialize pthread private data. */
326a091d823SDavid Xu 	init_private();
327a091d823SDavid Xu 
328a091d823SDavid Xu 	/* Set the initial thread. */
329a091d823SDavid Xu 	if (curthread == NULL) {
330a091d823SDavid Xu 		first = 1;
331a091d823SDavid Xu 		/* Create and initialize the initial thread. */
332a091d823SDavid Xu 		curthread = _thr_alloc(NULL);
333a091d823SDavid Xu 		if (curthread == NULL)
334a091d823SDavid Xu 			PANIC("Can't allocate initial thread");
335a091d823SDavid Xu 		init_main_thread(curthread);
336a091d823SDavid Xu 	}
337bb535300SJeff Roberson 	/*
338a091d823SDavid Xu 	 * Add the thread to the thread list queue.
339bb535300SJeff Roberson 	 */
340a091d823SDavid Xu 	THR_LIST_ADD(curthread);
341a091d823SDavid Xu 	_thread_active_threads = 1;
342a091d823SDavid Xu 
343a091d823SDavid Xu 	/* Setup the thread specific data */
344a091d823SDavid Xu 	_tcb_set(curthread->tcb);
345a091d823SDavid Xu 
346a091d823SDavid Xu 	if (first) {
347a091d823SDavid Xu 		SIGFILLSET(sigset);
348a091d823SDavid Xu 		SIGDELSET(sigset, SIGTRAP);
349a091d823SDavid Xu 		__sys_sigprocmask(SIG_SETMASK, &sigset, &oldset);
350a091d823SDavid Xu 		_thr_signal_init();
351a091d823SDavid Xu 		_thr_initial = curthread;
352a091d823SDavid Xu 		SIGDELSET(oldset, SIGCANCEL);
353a091d823SDavid Xu 		__sys_sigprocmask(SIG_SETMASK, &oldset, NULL);
3547a4cd8d3SDavid Xu 		if (_thread_event_mask & TD_CREATE)
355d245d9e1SDavid Xu 			_thr_report_creation(curthread, curthread);
356a091d823SDavid Xu 	}
357bb535300SJeff Roberson }
3583f07b4bcSMike Makonnen 
359a091d823SDavid Xu /*
360a091d823SDavid Xu  * This function and pthread_create() do a lot of the same things.
361a091d823SDavid Xu  * It'd be nice to consolidate the common stuff in one place.
362a091d823SDavid Xu  */
363a091d823SDavid Xu static void
364a091d823SDavid Xu init_main_thread(struct pthread *thread)
365a091d823SDavid Xu {
366e2dc286cSDavid Xu 	struct sched_param sched_param;
367e2dc286cSDavid Xu 
368a091d823SDavid Xu 	/* Setup the thread attributes. */
369a091d823SDavid Xu 	thr_self(&thread->tid);
370a091d823SDavid Xu 	thread->attr = _pthread_attr_default;
371a091d823SDavid Xu 	/*
372a091d823SDavid Xu 	 * Set up the thread stack.
373a091d823SDavid Xu 	 *
374a091d823SDavid Xu 	 * Create a red zone below the main stack.  All other stacks
375a091d823SDavid Xu 	 * are constrained to a maximum size by the parameters
376a091d823SDavid Xu 	 * passed to mmap(), but this stack is only limited by
377a091d823SDavid Xu 	 * resource limits, so this stack needs an explicitly mapped
378a091d823SDavid Xu 	 * red zone to protect the thread stack that is just beyond.
379a091d823SDavid Xu 	 */
38037a6356bSDavid Xu 	if (mmap(_usrstack - _thr_stack_initial -
381a091d823SDavid Xu 	    _thr_guard_default, _thr_guard_default, 0, MAP_ANON,
382a091d823SDavid Xu 	    -1, 0) == MAP_FAILED)
383a091d823SDavid Xu 		PANIC("Cannot allocate red zone for initial thread");
384bb535300SJeff Roberson 
385a091d823SDavid Xu 	/*
386a091d823SDavid Xu 	 * Mark the stack as an application supplied stack so that it
387a091d823SDavid Xu 	 * isn't deallocated.
388a091d823SDavid Xu 	 *
389a091d823SDavid Xu 	 * XXX - I'm not sure it would hurt anything to deallocate
390a091d823SDavid Xu 	 *       the main thread stack because deallocation doesn't
391a091d823SDavid Xu 	 *       actually free() it; it just puts it in the free
392a091d823SDavid Xu 	 *       stack queue for later reuse.
393a091d823SDavid Xu 	 */
39437a6356bSDavid Xu 	thread->attr.stackaddr_attr = _usrstack - _thr_stack_initial;
395a091d823SDavid Xu 	thread->attr.stacksize_attr = _thr_stack_initial;
396a091d823SDavid Xu 	thread->attr.guardsize_attr = _thr_guard_default;
397a091d823SDavid Xu 	thread->attr.flags |= THR_STACK_USER;
398bb535300SJeff Roberson 
399a091d823SDavid Xu 	/*
400a091d823SDavid Xu 	 * Write a magic value to the thread structure
401a091d823SDavid Xu 	 * to help identify valid ones:
402a091d823SDavid Xu 	 */
403a091d823SDavid Xu 	thread->magic = THR_MAGIC;
404a091d823SDavid Xu 
405a091d823SDavid Xu 	thread->cancelflags = PTHREAD_CANCEL_ENABLE | PTHREAD_CANCEL_DEFERRED;
4068956297aSDavid Xu 	thr_set_name(thread->tid, "initial thread");
407a091d823SDavid Xu 
408a091d823SDavid Xu 	/* Initialize the mutex queue: */
409a091d823SDavid Xu 	TAILQ_INIT(&thread->mutexq);
4108ab9d78bSDavid Xu 	TAILQ_INIT(&thread->pp_mutexq);
411a091d823SDavid Xu 
412a091d823SDavid Xu 	thread->state = PS_RUNNING;
413a091d823SDavid Xu 
414e6747c7cSDavid Xu 	_thr_getscheduler(thread->tid, &thread->attr.sched_policy,
415e6747c7cSDavid Xu 		 &sched_param);
416e2dc286cSDavid Xu 	thread->attr.prio = sched_param.sched_priority;
417e2dc286cSDavid Xu 
418a091d823SDavid Xu 	/* Others cleared to zero by thr_alloc() */
419a091d823SDavid Xu }
420a091d823SDavid Xu 
421a091d823SDavid Xu static void
422a091d823SDavid Xu init_private(void)
423a091d823SDavid Xu {
424a091d823SDavid Xu 	size_t len;
425a091d823SDavid Xu 	int mib[2];
426a091d823SDavid Xu 
427bddd24cdSDavid Xu 	_thr_umutex_init(&_mutex_static_lock);
428bddd24cdSDavid Xu 	_thr_umutex_init(&_cond_static_lock);
429bddd24cdSDavid Xu 	_thr_umutex_init(&_rwlock_static_lock);
430bddd24cdSDavid Xu 	_thr_umutex_init(&_keytable_lock);
431bddd24cdSDavid Xu 	_thr_umutex_init(&_thr_atfork_lock);
432bddd24cdSDavid Xu 	_thr_umutex_init(&_thr_event_lock);
4336f716c2fSDavid Xu 	_thr_once_init();
434a091d823SDavid Xu 	_thr_spinlock_init();
435a091d823SDavid Xu 	_thr_list_init();
436a091d823SDavid Xu 
437a091d823SDavid Xu 	/*
438a091d823SDavid Xu 	 * Avoid reinitializing some things if they don't need to be,
439a091d823SDavid Xu 	 * e.g. after a fork().
440a091d823SDavid Xu 	 */
441a091d823SDavid Xu 	if (init_once == 0) {
442bb535300SJeff Roberson 		/* Find the stack top */
443bb535300SJeff Roberson 		mib[0] = CTL_KERN;
444bb535300SJeff Roberson 		mib[1] = KERN_USRSTACK;
445bb535300SJeff Roberson 		len = sizeof (_usrstack);
446bb535300SJeff Roberson 		if (sysctl(mib, 2, &_usrstack, &len, NULL, 0) == -1)
447a091d823SDavid Xu 			PANIC("Cannot get kern.usrstack from sysctl");
4486b73f085SDavid Xu 		len = sizeof(_thr_smp_cpus);
4496b73f085SDavid Xu 		sysctlbyname("kern.smp.cpus", &_thr_smp_cpus, &len, NULL, 0);
450a091d823SDavid Xu 		_thr_page_size = getpagesize();
451a091d823SDavid Xu 		_thr_guard_default = _thr_page_size;
452a091d823SDavid Xu 		_pthread_attr_default.guardsize_attr = _thr_guard_default;
453a091d823SDavid Xu 		_pthread_attr_default.stacksize_attr = _thr_stack_default;
454bb535300SJeff Roberson 
455a091d823SDavid Xu 		TAILQ_INIT(&_thr_atfork_list);
456a091d823SDavid Xu #ifdef SYSTEM_SCOPE_ONLY
457a091d823SDavid Xu 		_thr_scope_system = 1;
458a091d823SDavid Xu #else
459a091d823SDavid Xu 		if (getenv("LIBPTHREAD_SYSTEM_SCOPE") != NULL)
460a091d823SDavid Xu 			_thr_scope_system = 1;
461a091d823SDavid Xu 		else if (getenv("LIBPTHREAD_PROCESS_SCOPE") != NULL)
462a091d823SDavid Xu 			_thr_scope_system = -1;
463bb535300SJeff Roberson #endif
464a091d823SDavid Xu 	}
465a091d823SDavid Xu 	init_once = 1;
466a091d823SDavid Xu }
467