1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
3 *
4 * Copyright (c) 2003 Daniel M. Eischen <deischen@freebsd.org>
5 * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by John Birrell.
19 * 4. Neither the name of the author nor the names of any co-contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #define _WANT_P_OSREL
37 #include "namespace.h"
38 #include <sys/param.h>
39 #include <sys/auxv.h>
40 #include <sys/signalvar.h>
41 #include <sys/ioctl.h>
42 #include <sys/link_elf.h>
43 #include <sys/resource.h>
44 #include <sys/sysctl.h>
45 #include <sys/ttycom.h>
46 #include <sys/mman.h>
47 #include <sys/rtprio.h>
48 #include <errno.h>
49 #include <fcntl.h>
50 #include <paths.h>
51 #include <pthread.h>
52 #include <pthread_np.h>
53 #include <signal.h>
54 #include <stdlib.h>
55 #include <string.h>
56 #include <time.h>
57 #include <unistd.h>
58 #include "un-namespace.h"
59
60 #include "libc_private.h"
61 #include "thr_private.h"
62
63 int __getosreldate(void);
64 char *_usrstack;
65 struct pthread *_thr_initial;
66 int _libthr_debug;
67 int _thread_event_mask;
68 struct pthread *_thread_last_event;
69 pthreadlist _thread_list = TAILQ_HEAD_INITIALIZER(_thread_list);
70 pthreadlist _thread_gc_list = TAILQ_HEAD_INITIALIZER(_thread_gc_list);
71 int _thread_active_threads = 1;
72 atfork_head _thr_atfork_list = TAILQ_HEAD_INITIALIZER(_thr_atfork_list);
73 struct urwlock _thr_atfork_lock = DEFAULT_URWLOCK;
74
75 struct pthread_prio _thr_priorities[3] = {
76 {RTP_PRIO_MIN, RTP_PRIO_MAX, 0}, /* FIFO */
77 {0, 0, 63}, /* OTHER */
78 {RTP_PRIO_MIN, RTP_PRIO_MAX, 0} /* RR */
79 };
80
81 struct pthread_attr _pthread_attr_default = {
82 .sched_policy = SCHED_OTHER,
83 .sched_inherit = PTHREAD_INHERIT_SCHED,
84 .prio = 0,
85 .suspend = THR_CREATE_RUNNING,
86 .flags = PTHREAD_SCOPE_SYSTEM,
87 .stackaddr_attr = NULL,
88 .stacksize_attr = THR_STACK_DEFAULT,
89 .guardsize_attr = 0,
90 .cpusetsize = 0,
91 .cpuset = NULL
92 };
93
94 struct pthread_mutex_attr _pthread_mutexattr_default = {
95 .m_type = PTHREAD_MUTEX_DEFAULT,
96 .m_protocol = PTHREAD_PRIO_NONE,
97 .m_ceiling = 0,
98 .m_pshared = PTHREAD_PROCESS_PRIVATE,
99 .m_robust = PTHREAD_MUTEX_STALLED,
100 };
101
102 struct pthread_mutex_attr _pthread_mutexattr_adaptive_default = {
103 .m_type = PTHREAD_MUTEX_ADAPTIVE_NP,
104 .m_protocol = PTHREAD_PRIO_NONE,
105 .m_ceiling = 0,
106 .m_pshared = PTHREAD_PROCESS_PRIVATE,
107 .m_robust = PTHREAD_MUTEX_STALLED,
108 };
109
110 /* Default condition variable attributes: */
111 struct pthread_cond_attr _pthread_condattr_default = {
112 .c_pshared = PTHREAD_PROCESS_PRIVATE,
113 .c_clockid = CLOCK_REALTIME
114 };
115
116 int _thr_is_smp = 0;
117 size_t _thr_guard_default;
118 size_t _thr_stack_default = THR_STACK_DEFAULT;
119 size_t _thr_stack_initial = THR_STACK_INITIAL;
120 int _thr_page_size;
121 int _thr_spinloops;
122 int _thr_yieldloops;
123 int _thr_queuefifo = 4;
124 int _gc_count;
125 struct umutex _mutex_static_lock = DEFAULT_UMUTEX;
126 struct umutex _cond_static_lock = DEFAULT_UMUTEX;
127 struct umutex _rwlock_static_lock = DEFAULT_UMUTEX;
128 struct umutex _keytable_lock = DEFAULT_UMUTEX;
129 struct urwlock _thr_list_lock = DEFAULT_URWLOCK;
130 struct umutex _thr_event_lock = DEFAULT_UMUTEX;
131 struct umutex _suspend_all_lock = DEFAULT_UMUTEX;
132 struct pthread *_single_thread;
133 int _suspend_all_cycle;
134 int _suspend_all_waiters;
135
136 int __pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *);
137 int __pthread_mutex_lock(pthread_mutex_t *);
138 int __pthread_mutex_trylock(pthread_mutex_t *);
139 void _thread_init_hack(void) __attribute__ ((constructor));
140
141 static void init_private(void);
142 static void init_main_thread(struct pthread *thread);
143
144 /*
145 * All weak references used within libc should be in this table.
146 * This is so that static libraries will work.
147 */
148
149 STATIC_LIB_REQUIRE(_fork);
150 STATIC_LIB_REQUIRE(_pthread_getspecific);
151 STATIC_LIB_REQUIRE(_pthread_key_create);
152 STATIC_LIB_REQUIRE(_pthread_key_delete);
153 STATIC_LIB_REQUIRE(_pthread_mutex_destroy);
154 STATIC_LIB_REQUIRE(_pthread_mutex_init);
155 STATIC_LIB_REQUIRE(_pthread_mutex_lock);
156 STATIC_LIB_REQUIRE(_pthread_mutex_trylock);
157 STATIC_LIB_REQUIRE(_pthread_mutex_unlock);
158 STATIC_LIB_REQUIRE(_pthread_mutexattr_init);
159 STATIC_LIB_REQUIRE(_pthread_mutexattr_destroy);
160 STATIC_LIB_REQUIRE(_pthread_mutexattr_settype);
161 STATIC_LIB_REQUIRE(_pthread_once);
162 STATIC_LIB_REQUIRE(_pthread_setspecific);
163 STATIC_LIB_REQUIRE(_raise);
164 STATIC_LIB_REQUIRE(_sem_destroy);
165 STATIC_LIB_REQUIRE(_sem_getvalue);
166 STATIC_LIB_REQUIRE(_sem_init);
167 STATIC_LIB_REQUIRE(_sem_post);
168 STATIC_LIB_REQUIRE(_sem_timedwait);
169 STATIC_LIB_REQUIRE(_sem_trywait);
170 STATIC_LIB_REQUIRE(_sem_wait);
171 STATIC_LIB_REQUIRE(_sigaction);
172 STATIC_LIB_REQUIRE(_sigprocmask);
173 STATIC_LIB_REQUIRE(_sigtimedwait);
174 STATIC_LIB_REQUIRE(_sigwait);
175 STATIC_LIB_REQUIRE(_sigwaitinfo);
176 STATIC_LIB_REQUIRE(_spinlock);
177 STATIC_LIB_REQUIRE(_spinunlock);
178 STATIC_LIB_REQUIRE(_thread_init_hack);
179
180 /*
181 * These are needed when linking statically. All references within
182 * libgcc (and in the future libc) to these routines are weak, but
183 * if they are not (strongly) referenced by the application or other
184 * libraries, then the actual functions will not be loaded.
185 */
186 STATIC_LIB_REQUIRE(_pthread_once);
187 STATIC_LIB_REQUIRE(_pthread_key_create);
188 STATIC_LIB_REQUIRE(_pthread_key_delete);
189 STATIC_LIB_REQUIRE(_pthread_getspecific);
190 STATIC_LIB_REQUIRE(_pthread_setspecific);
191 STATIC_LIB_REQUIRE(_pthread_mutex_init);
192 STATIC_LIB_REQUIRE(_pthread_mutex_destroy);
193 STATIC_LIB_REQUIRE(_pthread_mutex_lock);
194 STATIC_LIB_REQUIRE(_pthread_mutex_trylock);
195 STATIC_LIB_REQUIRE(_pthread_mutex_unlock);
196 STATIC_LIB_REQUIRE(_pthread_create);
197
198 /* Pull in all symbols required by libthread_db */
199 STATIC_LIB_REQUIRE(_thread_state_running);
200
201 #define DUAL_ENTRY(entry) \
202 (pthread_func_t)entry, (pthread_func_t)entry
203
204 static pthread_func_t jmp_table[][2] = {
205 [PJT_ATFORK] = {DUAL_ENTRY(_thr_atfork)},
206 [PJT_ATTR_DESTROY] = {DUAL_ENTRY(_thr_attr_destroy)},
207 [PJT_ATTR_GETDETACHSTATE] = {DUAL_ENTRY(_thr_attr_getdetachstate)},
208 [PJT_ATTR_GETGUARDSIZE] = {DUAL_ENTRY(_thr_attr_getguardsize)},
209 [PJT_ATTR_GETINHERITSCHED] = {DUAL_ENTRY(_thr_attr_getinheritsched)},
210 [PJT_ATTR_GETSCHEDPARAM] = {DUAL_ENTRY(_thr_attr_getschedparam)},
211 [PJT_ATTR_GETSCHEDPOLICY] = {DUAL_ENTRY(_thr_attr_getschedpolicy)},
212 [PJT_ATTR_GETSCOPE] = {DUAL_ENTRY(_thr_attr_getscope)},
213 [PJT_ATTR_GETSTACKADDR] = {DUAL_ENTRY(_thr_attr_getstackaddr)},
214 [PJT_ATTR_GETSTACKSIZE] = {DUAL_ENTRY(_thr_attr_getstacksize)},
215 [PJT_ATTR_INIT] = {DUAL_ENTRY(_thr_attr_init)},
216 [PJT_ATTR_SETDETACHSTATE] = {DUAL_ENTRY(_thr_attr_setdetachstate)},
217 [PJT_ATTR_SETGUARDSIZE] = {DUAL_ENTRY(_thr_attr_setguardsize)},
218 [PJT_ATTR_SETINHERITSCHED] = {DUAL_ENTRY(_thr_attr_setinheritsched)},
219 [PJT_ATTR_SETSCHEDPARAM] = {DUAL_ENTRY(_thr_attr_setschedparam)},
220 [PJT_ATTR_SETSCHEDPOLICY] = {DUAL_ENTRY(_thr_attr_setschedpolicy)},
221 [PJT_ATTR_SETSCOPE] = {DUAL_ENTRY(_thr_attr_setscope)},
222 [PJT_ATTR_SETSTACKADDR] = {DUAL_ENTRY(_thr_attr_setstackaddr)},
223 [PJT_ATTR_SETSTACKSIZE] = {DUAL_ENTRY(_thr_attr_setstacksize)},
224 [PJT_CANCEL] = {DUAL_ENTRY(_thr_cancel)},
225 [PJT_CLEANUP_POP] = {DUAL_ENTRY(_thr_cleanup_pop)},
226 [PJT_CLEANUP_PUSH] = {DUAL_ENTRY(_thr_cleanup_push)},
227 [PJT_COND_BROADCAST] = {DUAL_ENTRY(_thr_cond_broadcast)},
228 [PJT_COND_DESTROY] = {DUAL_ENTRY(_thr_cond_destroy)},
229 [PJT_COND_INIT] = {DUAL_ENTRY(_thr_cond_init)},
230 [PJT_COND_SIGNAL] = {DUAL_ENTRY(_thr_cond_signal)},
231 [PJT_COND_TIMEDWAIT] = {DUAL_ENTRY(_thr_cond_timedwait)},
232 [PJT_COND_WAIT] = {(pthread_func_t)__thr_cond_wait,
233 (pthread_func_t)_thr_cond_wait},
234 [PJT_DETACH] = {DUAL_ENTRY(_thr_detach)},
235 [PJT_EQUAL] = {DUAL_ENTRY(_thr_equal)},
236 [PJT_EXIT] = {DUAL_ENTRY(_Tthr_exit)},
237 [PJT_GETSPECIFIC] = {DUAL_ENTRY(_thr_getspecific)},
238 [PJT_JOIN] = {DUAL_ENTRY(_thr_join)},
239 [PJT_KEY_CREATE] = {DUAL_ENTRY(_thr_key_create)},
240 [PJT_KEY_DELETE] = {DUAL_ENTRY(_thr_key_delete)},
241 [PJT_KILL] = {DUAL_ENTRY(_Tthr_kill)},
242 [PJT_MAIN_NP] = {DUAL_ENTRY(_thr_main_np)},
243 [PJT_MUTEXATTR_DESTROY] = {DUAL_ENTRY(_thr_mutexattr_destroy)},
244 [PJT_MUTEXATTR_INIT] = {DUAL_ENTRY(_thr_mutexattr_init)},
245 [PJT_MUTEXATTR_SETTYPE] = {DUAL_ENTRY(_thr_mutexattr_settype)},
246 [PJT_MUTEX_DESTROY] = {DUAL_ENTRY(_thr_mutex_destroy)},
247 [PJT_MUTEX_INIT] = {DUAL_ENTRY(__Tthr_mutex_init)},
248 [PJT_MUTEX_LOCK] = {DUAL_ENTRY(__Tthr_mutex_lock)},
249 [PJT_MUTEX_TRYLOCK] = {DUAL_ENTRY(__Tthr_mutex_trylock)},
250 [PJT_MUTEX_UNLOCK] = {DUAL_ENTRY(_thr_mutex_unlock)},
251 [PJT_ONCE] = {DUAL_ENTRY(_thr_once)},
252 [PJT_RWLOCK_DESTROY] = {DUAL_ENTRY(_thr_rwlock_destroy)},
253 [PJT_RWLOCK_INIT] = {DUAL_ENTRY(_thr_rwlock_init)},
254 [PJT_RWLOCK_RDLOCK] = {DUAL_ENTRY(_Tthr_rwlock_rdlock)},
255 [PJT_RWLOCK_TRYRDLOCK] = {DUAL_ENTRY(_Tthr_rwlock_tryrdlock)},
256 [PJT_RWLOCK_TRYWRLOCK] = {DUAL_ENTRY(_Tthr_rwlock_trywrlock)},
257 [PJT_RWLOCK_UNLOCK] = {DUAL_ENTRY(_Tthr_rwlock_unlock)},
258 [PJT_RWLOCK_WRLOCK] = {DUAL_ENTRY(_Tthr_rwlock_wrlock)},
259 [PJT_SELF] = {DUAL_ENTRY(_Tthr_self)},
260 [PJT_SETCANCELSTATE] = {DUAL_ENTRY(_thr_setcancelstate)},
261 [PJT_SETCANCELTYPE] = {DUAL_ENTRY(_thr_setcanceltype)},
262 [PJT_SETSPECIFIC] = {DUAL_ENTRY(_thr_setspecific)},
263 [PJT_SIGMASK] = {DUAL_ENTRY(_thr_sigmask)},
264 [PJT_TESTCANCEL] = {DUAL_ENTRY(_Tthr_testcancel)},
265 [PJT_CLEANUP_POP_IMP] = {DUAL_ENTRY(__thr_cleanup_pop_imp)},
266 [PJT_CLEANUP_PUSH_IMP] = {DUAL_ENTRY(__thr_cleanup_push_imp)},
267 [PJT_CANCEL_ENTER] = {DUAL_ENTRY(_Tthr_cancel_enter)},
268 [PJT_CANCEL_LEAVE] = {DUAL_ENTRY(_Tthr_cancel_leave)},
269 [PJT_MUTEX_CONSISTENT] = {DUAL_ENTRY(_Tthr_mutex_consistent)},
270 [PJT_MUTEXATTR_GETROBUST] = {DUAL_ENTRY(_thr_mutexattr_getrobust)},
271 [PJT_MUTEXATTR_SETROBUST] = {DUAL_ENTRY(_thr_mutexattr_setrobust)},
272 [PJT_GETTHREADID_NP] = {DUAL_ENTRY(_thr_getthreadid_np)},
273 [PJT_ATTR_GET_NP] = {DUAL_ENTRY(_thr_attr_get_np)},
274 [PJT_GETNAME_NP] = {DUAL_ENTRY(_thr_getname_np)},
275 [PJT_SUSPEND_ALL_NP] = {DUAL_ENTRY(_thr_suspend_all_np)},
276 [PJT_RESUME_ALL_NP] = {DUAL_ENTRY(_thr_resume_all_np)},
277 };
278
279 static int init_once = 0;
280
281 /*
282 * For the shared version of the threads library, the above is sufficient.
283 * But for the archive version of the library, we need a little bit more.
284 * Namely, we must arrange for this particular module to be pulled in from
285 * the archive library at link time. To accomplish that, we define and
286 * initialize a variable, "_thread_autoinit_dummy_decl". This variable is
287 * referenced (as an extern) from libc/stdlib/exit.c. This will always
288 * create a need for this module, ensuring that it is present in the
289 * executable.
290 */
291 extern int _thread_autoinit_dummy_decl;
292 int _thread_autoinit_dummy_decl = 0;
293
294 void
_thread_init_hack(void)295 _thread_init_hack(void)
296 {
297
298 _libpthread_init(NULL);
299 }
300
301
302 /*
303 * Threaded process initialization.
304 *
305 * This is only called under two conditions:
306 *
307 * 1) Some thread routines have detected that the library hasn't yet
308 * been initialized (_thr_initial == NULL && curthread == NULL), or
309 *
310 * 2) An explicit call to reinitialize after a fork (indicated
311 * by curthread != NULL)
312 */
313 void
_libpthread_init(struct pthread * curthread)314 _libpthread_init(struct pthread *curthread)
315 {
316 int first, dlopened;
317
318 /* Check if this function has already been called: */
319 if (_thr_initial != NULL && curthread == NULL)
320 /* Only initialize the threaded application once. */
321 return;
322
323 /*
324 * Check the size of the jump table to make sure it is preset
325 * with the correct number of entries.
326 */
327 if (sizeof(jmp_table) != sizeof(pthread_func_t) * PJT_MAX * 2)
328 PANIC("Thread jump table not properly initialized");
329 memcpy(__thr_jtable, jmp_table, sizeof(jmp_table));
330 __thr_interpose_libc();
331
332 /* Initialize pthread private data. */
333 init_private();
334
335 /* Set the initial thread. */
336 if (curthread == NULL) {
337 first = 1;
338 /* Force _get_curthread() return NULL until set. */
339 _tcb_get()->tcb_thread = NULL;
340 /* Create and initialize the initial thread. */
341 curthread = _thr_alloc(NULL);
342 if (curthread == NULL)
343 PANIC("Can't allocate initial thread");
344 init_main_thread(curthread);
345 } else {
346 first = 0;
347 }
348
349 /*
350 * Add the thread to the thread list queue.
351 */
352 THR_LIST_ADD(curthread);
353 _thread_active_threads = 1;
354
355 /* Setup the thread specific data */
356 __thr_setup_tsd(curthread);
357
358 if (first) {
359 _thr_initial = curthread;
360 dlopened = _rtld_is_dlopened(&_thread_autoinit_dummy_decl) != 0;
361 _thr_signal_init(dlopened);
362 if (_thread_event_mask & TD_CREATE)
363 _thr_report_creation(curthread, curthread);
364 /*
365 * Always use our rtld lock implementation.
366 * It is faster because it postpones signal handlers
367 * instead of calling sigprocmask(2).
368 */
369 _thr_rtld_init();
370 }
371 }
372
373 /*
374 * This function and pthread_create() do a lot of the same things.
375 * It'd be nice to consolidate the common stuff in one place.
376 */
377 static void
init_main_thread(struct pthread * thread)378 init_main_thread(struct pthread *thread)
379 {
380 struct sched_param sched_param;
381 int i;
382
383 /* Setup the thread attributes. */
384 thr_self(&thread->tid);
385 thread->attr = _pthread_attr_default;
386 /*
387 * Set up the thread stack.
388 *
389 * Create a red zone below the main stack. All other stacks
390 * are constrained to a maximum size by the parameters
391 * passed to mmap(), but this stack is only limited by
392 * resource limits, so this stack needs an explicitly mapped
393 * red zone to protect the thread stack that is just beyond.
394 */
395 if (mmap(_usrstack - _thr_stack_initial -
396 _thr_guard_default, _thr_guard_default, 0, MAP_ANON,
397 -1, 0) == MAP_FAILED)
398 PANIC("Cannot allocate red zone for initial thread");
399
400 /*
401 * Mark the stack as an application supplied stack so that it
402 * isn't deallocated.
403 *
404 * XXX - I'm not sure it would hurt anything to deallocate
405 * the main thread stack because deallocation doesn't
406 * actually free() it; it just puts it in the free
407 * stack queue for later reuse.
408 */
409 thread->attr.stackaddr_attr = _usrstack - _thr_stack_initial;
410 thread->attr.stacksize_attr = _thr_stack_initial;
411 thread->attr.guardsize_attr = _thr_guard_default;
412 thread->attr.flags |= THR_STACK_USER;
413
414 /*
415 * Write a magic value to the thread structure
416 * to help identify valid ones:
417 */
418 thread->magic = THR_MAGIC;
419
420 thread->cancel_enable = 1;
421 thread->cancel_async = 0;
422
423 /* Initialize the mutex queues */
424 for (i = 0; i < TMQ_NITEMS; i++)
425 TAILQ_INIT(&thread->mq[i]);
426
427 thread->state = PS_RUNNING;
428
429 _thr_getscheduler(thread->tid, &thread->attr.sched_policy,
430 &sched_param);
431 thread->attr.prio = sched_param.sched_priority;
432
433 #ifdef _PTHREAD_FORCED_UNWIND
434 thread->unwind_stackend = _usrstack;
435 #endif
436
437 thread->uexterr.ver = UEXTERROR_VER;
438 if (__getosreldate() >= P_OSREL_EXTERRCTL)
439 exterrctl(EXTERRCTL_ENABLE, EXTERRCTLF_FORCE, &thread->uexterr);
440
441 /* Others cleared to zero by thr_alloc() */
442 }
443
444 bool
__thr_get_main_stack_base(char ** base)445 __thr_get_main_stack_base(char **base)
446 {
447 size_t len;
448 int mib[2];
449
450 if (elf_aux_info(AT_USRSTACKBASE, base, sizeof(*base)) == 0)
451 return (true);
452
453 mib[0] = CTL_KERN;
454 mib[1] = KERN_USRSTACK;
455 len = sizeof(*base);
456 if (sysctl(mib, nitems(mib), base, &len, NULL, 0) == 0)
457 return (true);
458
459 return (false);
460 }
461
462 bool
__thr_get_main_stack_lim(size_t * lim)463 __thr_get_main_stack_lim(size_t *lim)
464 {
465 struct rlimit rlim;
466
467 if (elf_aux_info(AT_USRSTACKLIM, lim, sizeof(*lim)) == 0)
468 return (true);
469
470 if (getrlimit(RLIMIT_STACK, &rlim) == 0) {
471 *lim = rlim.rlim_cur;
472 return (true);
473 }
474
475 return (false);
476 }
477
478 static void
init_private(void)479 init_private(void)
480 {
481 char *env, *env_bigstack, *env_splitstack;
482
483 _thr_umutex_init(&_mutex_static_lock);
484 _thr_umutex_init(&_cond_static_lock);
485 _thr_umutex_init(&_rwlock_static_lock);
486 _thr_umutex_init(&_keytable_lock);
487 _thr_urwlock_init(&_thr_atfork_lock);
488 _thr_umutex_init(&_thr_event_lock);
489 _thr_umutex_init(&_suspend_all_lock);
490 _thr_spinlock_init();
491 _thr_list_init();
492 _thr_wake_addr_init();
493 _sleepq_init();
494 _single_thread = NULL;
495 _suspend_all_waiters = 0;
496
497 /*
498 * Avoid reinitializing some things if they don't need to be,
499 * e.g. after a fork().
500 */
501 if (init_once == 0) {
502 __thr_pshared_init();
503 __thr_malloc_init();
504
505 /* Find the stack top */
506 if (!__thr_get_main_stack_base(&_usrstack))
507 PANIC("Cannot get kern.usrstack");
508 env_bigstack = getenv("LIBPTHREAD_BIGSTACK_MAIN");
509 env_splitstack = getenv("LIBPTHREAD_SPLITSTACK_MAIN");
510 if (env_bigstack != NULL || env_splitstack == NULL) {
511 if (!__thr_get_main_stack_lim(&_thr_stack_initial))
512 PANIC("Cannot get stack rlimit");
513 }
514 _thr_is_smp = sysconf(_SC_NPROCESSORS_CONF);
515 if (_thr_is_smp == -1)
516 PANIC("Cannot get _SC_NPROCESSORS_CONF");
517 _thr_is_smp = (_thr_is_smp > 1);
518 _thr_page_size = getpagesize();
519 _thr_guard_default = _thr_page_size;
520 _pthread_attr_default.guardsize_attr = _thr_guard_default;
521 _pthread_attr_default.stacksize_attr = _thr_stack_default;
522 env = getenv("LIBPTHREAD_SPINLOOPS");
523 if (env)
524 _thr_spinloops = atoi(env);
525 env = getenv("LIBPTHREAD_YIELDLOOPS");
526 if (env)
527 _thr_yieldloops = atoi(env);
528 env = getenv("LIBPTHREAD_QUEUE_FIFO");
529 if (env)
530 _thr_queuefifo = atoi(env);
531 env = getenv("LIBPTHREAD_UMTX_MIN_TIMEOUT");
532 if (env) {
533 char *endptr;
534 long mint;
535
536 mint = strtol(env, &endptr, 0);
537 if (*endptr == '\0' && mint >= 0) {
538 _umtx_op(NULL, UMTX_OP_SET_MIN_TIMEOUT,
539 mint, NULL, NULL);
540 }
541 }
542 }
543 init_once = 1;
544 }
545