init.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /* Copyright (C) 2002-2007, 2008, 2009 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <assert.h>
  17. #include <errno.h>
  18. #include <limits.h>
  19. #include <signal.h>
  20. #include <stdlib.h>
  21. #include <unistd.h>
  22. #include <sys/param.h>
  23. #include <sys/resource.h>
  24. #include <pthreadP.h>
  25. #include <atomic.h>
  26. #include <ldsodefs.h>
  27. #include <tls.h>
  28. #include <fork.h>
  29. #include <version.h>
  30. #include <smp.h>
  31. #include <lowlevellock.h>
  32. #include <bits/kernel-features.h>
  33. #include <stdio.h>
  34. extern __typeof(sigaction) __libc_sigaction;
  35. /* Size and alignment of static TLS block. */
  36. size_t __static_tls_size;
  37. size_t __static_tls_align_m1;
  38. #ifndef __ASSUME_SET_ROBUST_LIST
  39. /* Negative if we do not have the system call and we can use it. */
  40. int __set_robust_list_avail;
  41. # define set_robust_list_not_avail() \
  42. __set_robust_list_avail = -1
  43. #else
  44. # define set_robust_list_not_avail() do { } while (0)
  45. #endif
  46. #ifndef __ASSUME_FUTEX_CLOCK_REALTIME
  47. /* Nonzero if we do not have FUTEX_CLOCK_REALTIME. */
  48. int __have_futex_clock_realtime;
  49. # define __set_futex_clock_realtime() \
  50. __have_futex_clock_realtime = 1
  51. #else
  52. #define __set_futex_clock_realtime() do { } while (0)
  53. #endif
  54. /* Version of the library, used in libthread_db to detect mismatches. */
  55. static const char nptl_version[] __attribute_used__ = VERSION;
  56. #ifndef SHARED
  57. extern void __libc_setup_tls (size_t tcbsize, size_t tcbalign);
  58. #endif
  59. #ifdef SHARED
  60. static void nptl_freeres (void);
  61. static const struct pthread_functions pthread_functions =
  62. {
  63. .ptr_pthread_attr_destroy = __pthread_attr_destroy,
  64. .ptr___pthread_attr_init_2_1 = __pthread_attr_init_2_1,
  65. .ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate,
  66. .ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate,
  67. .ptr_pthread_attr_getinheritsched = __pthread_attr_getinheritsched,
  68. .ptr_pthread_attr_setinheritsched = __pthread_attr_setinheritsched,
  69. .ptr_pthread_attr_getschedparam = __pthread_attr_getschedparam,
  70. .ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam,
  71. .ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy,
  72. .ptr_pthread_attr_setschedpolicy = __pthread_attr_setschedpolicy,
  73. .ptr_pthread_attr_getscope = __pthread_attr_getscope,
  74. .ptr_pthread_attr_setscope = __pthread_attr_setscope,
  75. .ptr_pthread_condattr_destroy = __pthread_condattr_destroy,
  76. .ptr_pthread_condattr_init = __pthread_condattr_init,
  77. .ptr___pthread_cond_broadcast = __pthread_cond_broadcast,
  78. .ptr___pthread_cond_destroy = __pthread_cond_destroy,
  79. .ptr___pthread_cond_init = __pthread_cond_init,
  80. .ptr___pthread_cond_signal = __pthread_cond_signal,
  81. .ptr___pthread_cond_wait = __pthread_cond_wait,
  82. .ptr___pthread_cond_timedwait = __pthread_cond_timedwait,
  83. .ptr_pthread_equal = __pthread_equal,
  84. .ptr___pthread_exit = __pthread_exit,
  85. .ptr_pthread_getschedparam = __pthread_getschedparam,
  86. .ptr_pthread_setschedparam = __pthread_setschedparam,
  87. .ptr_pthread_mutex_destroy = INTUSE(__pthread_mutex_destroy),
  88. .ptr_pthread_mutex_init = INTUSE(__pthread_mutex_init),
  89. .ptr_pthread_mutex_lock = INTUSE(__pthread_mutex_lock),
  90. .ptr_pthread_mutex_unlock = INTUSE(__pthread_mutex_unlock),
  91. .ptr_pthread_self = __pthread_self,
  92. .ptr_pthread_setcancelstate = __pthread_setcancelstate,
  93. .ptr_pthread_setcanceltype = __pthread_setcanceltype,
  94. .ptr___pthread_cleanup_upto = __pthread_cleanup_upto,
  95. .ptr___pthread_once = __pthread_once_internal,
  96. .ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock_internal,
  97. .ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock_internal,
  98. .ptr___pthread_rwlock_unlock = __pthread_rwlock_unlock_internal,
  99. .ptr___pthread_key_create = __pthread_key_create_internal,
  100. .ptr___pthread_getspecific = __pthread_getspecific_internal,
  101. .ptr___pthread_setspecific = __pthread_setspecific_internal,
  102. .ptr__pthread_cleanup_push_defer = _pthread_cleanup_push_defer,
  103. .ptr__pthread_cleanup_pop_restore = _pthread_cleanup_pop_restore,
  104. .ptr_nthreads = &__nptl_nthreads,
  105. .ptr___pthread_unwind = &__pthread_unwind,
  106. .ptr__nptl_deallocate_tsd = __nptl_deallocate_tsd,
  107. .ptr__nptl_setxid = __nptl_setxid,
  108. /* For now only the stack cache needs to be freed. */
  109. .ptr_freeres = nptl_freeres
  110. };
  111. # define ptr_pthread_functions &pthread_functions
  112. #else
  113. # define ptr_pthread_functions NULL
  114. #endif
  115. #ifdef SHARED
  116. /* This function is called indirectly from the freeres code in libc. */
  117. static void
  118. __libc_freeres_fn_section
  119. nptl_freeres (void)
  120. {
  121. __unwind_freeres ();
  122. __free_stacks (0);
  123. }
  124. #endif
  125. /* For asynchronous cancellation we use a signal. This is the handler. */
  126. static void
  127. sigcancel_handler (int sig, siginfo_t *si, void *ctx)
  128. {
  129. #ifdef __ASSUME_CORRECT_SI_PID
  130. /* Determine the process ID. It might be negative if the thread is
  131. in the middle of a fork() call. */
  132. pid_t pid = THREAD_GETMEM (THREAD_SELF, pid);
  133. if (__builtin_expect (pid < 0, 0))
  134. pid = -pid;
  135. #endif
  136. /* Safety check. It would be possible to call this function for
  137. other signals and send a signal from another process. This is not
  138. correct and might even be a security problem. Try to catch as
  139. many incorrect invocations as possible. */
  140. if (sig != SIGCANCEL
  141. #ifdef __ASSUME_CORRECT_SI_PID
  142. /* Kernels before 2.5.75 stored the thread ID and not the process
  143. ID in si_pid so we skip this test. */
  144. || si->si_pid != pid
  145. #endif
  146. || si->si_code != SI_TKILL)
  147. return;
  148. struct pthread *self = THREAD_SELF;
  149. int oldval = THREAD_GETMEM (self, cancelhandling);
  150. while (1)
  151. {
  152. /* We are canceled now. When canceled by another thread this flag
  153. is already set but if the signal is directly send (internally or
  154. from another process) is has to be done here. */
  155. int newval = oldval | CANCELING_BITMASK | CANCELED_BITMASK;
  156. if (oldval == newval || (oldval & EXITING_BITMASK) != 0)
  157. /* Already canceled or exiting. */
  158. break;
  159. int curval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling, newval,
  160. oldval);
  161. if (curval == oldval)
  162. {
  163. /* Set the return value. */
  164. THREAD_SETMEM (self, result, PTHREAD_CANCELED);
  165. /* Make sure asynchronous cancellation is still enabled. */
  166. if ((newval & CANCELTYPE_BITMASK) != 0)
  167. /* Run the registered destructors and terminate the thread. */
  168. __do_cancel ();
  169. break;
  170. }
  171. oldval = curval;
  172. }
  173. }
  174. struct xid_command *__xidcmd attribute_hidden;
  175. /* For asynchronous cancellation we use a signal. This is the handler. */
  176. static void
  177. sighandler_setxid (int sig, siginfo_t *si, void *ctx)
  178. {
  179. #ifdef __ASSUME_CORRECT_SI_PID
  180. /* Determine the process ID. It might be negative if the thread is
  181. in the middle of a fork() call. */
  182. pid_t pid = THREAD_GETMEM (THREAD_SELF, pid);
  183. if (__builtin_expect (pid < 0, 0))
  184. pid = -pid;
  185. #endif
  186. /* Safety check. It would be possible to call this function for
  187. other signals and send a signal from another process. This is not
  188. correct and might even be a security problem. Try to catch as
  189. many incorrect invocations as possible. */
  190. if (sig != SIGSETXID
  191. #ifdef __ASSUME_CORRECT_SI_PID
  192. /* Kernels before 2.5.75 stored the thread ID and not the process
  193. ID in si_pid so we skip this test. */
  194. || si->si_pid != pid
  195. #endif
  196. || si->si_code != SI_TKILL)
  197. return;
  198. INTERNAL_SYSCALL_DECL (err);
  199. INTERNAL_SYSCALL_NCS (__xidcmd->syscall_no, err, 3, __xidcmd->id[0],
  200. __xidcmd->id[1], __xidcmd->id[2]);
  201. /* Reset the SETXID flag. */
  202. struct pthread *self = THREAD_SELF;
  203. int flags, newval;
  204. do
  205. {
  206. flags = THREAD_GETMEM (self, cancelhandling);
  207. newval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling,
  208. flags & ~SETXID_BITMASK, flags);
  209. }
  210. while (flags != newval);
  211. /* And release the futex. */
  212. self->setxid_futex = 1;
  213. lll_futex_wake (&self->setxid_futex, 1, LLL_PRIVATE);
  214. if (atomic_decrement_val (&__xidcmd->cntr) == 0)
  215. lll_futex_wake (&__xidcmd->cntr, 1, LLL_PRIVATE);
  216. }
  217. /* When using __thread for this, we do it in libc so as not
  218. to give libpthread its own TLS segment just for this. */
  219. extern void **__libc_dl_error_tsd (void) __attribute__ ((const));
  220. /* This can be set by the debugger before initialization is complete. */
  221. static bool __nptl_initial_report_events __attribute_used__;
  222. void
  223. __pthread_initialize_minimal_internal (void)
  224. {
  225. static int initialized = 0;
  226. if (initialized)
  227. return;
  228. initialized = 1;
  229. #ifndef SHARED
  230. /* Unlike in the dynamically linked case the dynamic linker has not
  231. taken care of initializing the TLS data structures. */
  232. __libc_setup_tls (TLS_TCB_SIZE, TLS_TCB_ALIGN);
  233. /* We must prevent gcc from being clever and move any of the
  234. following code ahead of the __libc_setup_tls call. This function
  235. will initialize the thread register which is subsequently
  236. used. */
  237. __asm__ __volatile__ ("");
  238. #endif
  239. /* Minimal initialization of the thread descriptor. */
  240. struct pthread *pd = THREAD_SELF;
  241. INTERNAL_SYSCALL_DECL (err);
  242. pd->pid = pd->tid = INTERNAL_SYSCALL (set_tid_address, err, 1, &pd->tid);
  243. THREAD_SETMEM (pd, specific[0], &pd->specific_1stblock[0]);
  244. THREAD_SETMEM (pd, user_stack, true);
  245. if (LLL_LOCK_INITIALIZER != 0)
  246. THREAD_SETMEM (pd, lock, LLL_LOCK_INITIALIZER);
  247. #if HP_TIMING_AVAIL
  248. THREAD_SETMEM (pd, cpuclock_offset, GL(dl_cpuclock_offset));
  249. #endif
  250. /* Initialize the robust mutex data. */
  251. #ifdef __PTHREAD_MUTEX_HAVE_PREV
  252. pd->robust_prev = &pd->robust_head;
  253. #endif
  254. pd->robust_head.list = &pd->robust_head;
  255. #ifdef __NR_set_robust_list
  256. pd->robust_head.futex_offset = (offsetof (pthread_mutex_t, __data.__lock)
  257. - offsetof (pthread_mutex_t,
  258. __data.__list.__next));
  259. int res = INTERNAL_SYSCALL (set_robust_list, err, 2, &pd->robust_head,
  260. sizeof (struct robust_list_head));
  261. if (INTERNAL_SYSCALL_ERROR_P (res, err))
  262. #endif
  263. set_robust_list_not_avail ();
  264. #ifndef __ASSUME_PRIVATE_FUTEX
  265. /* Private futexes are always used (at least internally) so that
  266. doing the test once this early is beneficial. */
  267. {
  268. int word = 0;
  269. word = INTERNAL_SYSCALL (futex, err, 3, &word,
  270. FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1);
  271. if (!INTERNAL_SYSCALL_ERROR_P (word, err))
  272. THREAD_SETMEM (pd, header.private_futex, FUTEX_PRIVATE_FLAG);
  273. }
  274. /* Private futexes have been introduced earlier than the
  275. FUTEX_CLOCK_REALTIME flag. We don't have to run the test if we
  276. know the former are not supported. This also means we know the
  277. kernel will return ENOSYS for unknown operations. */
  278. if (THREAD_GETMEM (pd, header.private_futex) != 0)
  279. #endif
  280. #ifndef __ASSUME_FUTEX_CLOCK_REALTIME
  281. {
  282. int word = 0;
  283. /* NB: the syscall actually takes six parameters. The last is the
  284. bit mask. But since we will not actually wait at all the value
  285. is irrelevant. Given that passing six parameters is difficult
  286. on some architectures we just pass whatever random value the
  287. calling convention calls for to the kernel. It causes no harm. */
  288. word = INTERNAL_SYSCALL (futex, err, 5, &word,
  289. FUTEX_WAIT_BITSET | FUTEX_CLOCK_REALTIME
  290. | FUTEX_PRIVATE_FLAG, 1, NULL, 0);
  291. assert (INTERNAL_SYSCALL_ERROR_P (word, err));
  292. if (INTERNAL_SYSCALL_ERRNO (word, err) != ENOSYS)
  293. __set_futex_clock_realtime ();
  294. }
  295. #endif
  296. /* Set initial thread's stack block from 0 up to __libc_stack_end.
  297. It will be bigger than it actually is, but for unwind.c/pt-longjmp.c
  298. purposes this is good enough. */
  299. THREAD_SETMEM (pd, stackblock_size, (size_t) __libc_stack_end);
  300. /* Initialize the list of all running threads with the main thread. */
  301. INIT_LIST_HEAD (&__stack_user);
  302. list_add (&pd->list, &__stack_user);
  303. /* Before initializing __stack_user, the debugger could not find us and
  304. had to set __nptl_initial_report_events. Propagate its setting. */
  305. THREAD_SETMEM (pd, report_events, __nptl_initial_report_events);
  306. /* Install the cancellation signal handler. If for some reason we
  307. cannot install the handler we do not abort. Maybe we should, but
  308. it is only asynchronous cancellation which is affected. */
  309. struct sigaction sa;
  310. sa.sa_sigaction = sigcancel_handler;
  311. sa.sa_flags = SA_SIGINFO;
  312. __sigemptyset (&sa.sa_mask);
  313. (void) __libc_sigaction (SIGCANCEL, &sa, NULL);
  314. /* Install the handle to change the threads' uid/gid. */
  315. sa.sa_sigaction = sighandler_setxid;
  316. sa.sa_flags = SA_SIGINFO | SA_RESTART;
  317. (void) __libc_sigaction (SIGSETXID, &sa, NULL);
  318. /* The parent process might have left the signals blocked. Just in
  319. case, unblock it. We reuse the signal mask in the sigaction
  320. structure. It is already cleared. */
  321. __sigaddset (&sa.sa_mask, SIGCANCEL);
  322. __sigaddset (&sa.sa_mask, SIGSETXID);
  323. (void) INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_UNBLOCK, &sa.sa_mask,
  324. NULL, _NSIG / 8);
  325. /* Get the size of the static and alignment requirements for the TLS
  326. block. */
  327. size_t static_tls_align;
  328. _dl_get_tls_static_info (&__static_tls_size, &static_tls_align);
  329. /* Make sure the size takes all the alignments into account. */
  330. if (STACK_ALIGN > static_tls_align)
  331. static_tls_align = STACK_ALIGN;
  332. __static_tls_align_m1 = static_tls_align - 1;
  333. __static_tls_size = roundup (__static_tls_size, static_tls_align);
  334. /* Determine the default allowed stack size. This is the size used
  335. in case the user does not specify one. */
  336. struct rlimit limit;
  337. if (getrlimit (RLIMIT_STACK, &limit) != 0
  338. || limit.rlim_cur == RLIM_INFINITY)
  339. /* The system limit is not usable. Use an architecture-specific
  340. default. */
  341. limit.rlim_cur = ARCH_STACK_DEFAULT_SIZE;
  342. else if (limit.rlim_cur < PTHREAD_STACK_MIN)
  343. /* The system limit is unusably small.
  344. Use the minimal size acceptable. */
  345. limit.rlim_cur = PTHREAD_STACK_MIN;
  346. /* Make sure it meets the minimum size that allocate_stack
  347. (allocatestack.c) will demand, which depends on the page size. */
  348. const uintptr_t pagesz = sysconf (_SC_PAGESIZE);
  349. const size_t minstack = pagesz + __static_tls_size + MINIMAL_REST_STACK;
  350. if (limit.rlim_cur < minstack)
  351. limit.rlim_cur = minstack;
  352. /* Round the resource limit up to page size. */
  353. limit.rlim_cur = (limit.rlim_cur + pagesz - 1) & -pagesz;
  354. __default_stacksize = limit.rlim_cur;
  355. #ifdef SHARED
  356. /* Transfer the old value from the dynamic linker's internal location. */
  357. *__libc_dl_error_tsd () = *(*GL(dl_error_catch_tsd)) ();
  358. GL(dl_error_catch_tsd) = &__libc_dl_error_tsd;
  359. #endif
  360. GL(dl_init_static_tls) = &__pthread_init_static_tls;
  361. /* Register the fork generation counter with the libc. */
  362. #ifndef TLS_MULTIPLE_THREADS_IN_TCB
  363. __libc_multiple_threads_ptr =
  364. #endif
  365. __libc_pthread_init (&__fork_generation, __reclaim_stacks,
  366. ptr_pthread_functions);
  367. /* Determine whether the machine is SMP or not. */
  368. __is_smp = is_smp_system ();
  369. /* uClibc-specific stdio initialization for threads. */
  370. {
  371. FILE *fp;
  372. _stdio_user_locking = 0; /* 2 if threading not initialized */
  373. for (fp = _stdio_openlist; fp != NULL; fp = fp->__nextopen) {
  374. if (fp->__user_locking != 1) {
  375. fp->__user_locking = 0;
  376. }
  377. }
  378. }
  379. }
  380. strong_alias (__pthread_initialize_minimal_internal,
  381. __pthread_initialize_minimal)