pthread.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371
  1. /* Linuxthreads - a simple clone()-based implementation of Posix */
  2. /* threads for Linux. */
  3. /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */
  4. /* */
  5. /* This program is free software; you can redistribute it and/or */
  6. /* modify it under the terms of the GNU Library General Public License */
  7. /* as published by the Free Software Foundation; either version 2 */
  8. /* of the License, or (at your option) any later version. */
  9. /* */
  10. /* This program is distributed in the hope that it will be useful, */
  11. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  12. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  13. /* GNU Library General Public License for more details. */
  14. /* Thread creation, initialization, and basic low-level routines */
  15. #include <errno.h>
  16. #include <stddef.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <string.h>
  20. #include <unistd.h>
  21. #include <fcntl.h>
  22. #include <sys/wait.h>
  23. #include <sys/resource.h>
  24. #include <sys/time.h>
  25. #include "pthread.h"
  26. #include "internals.h"
  27. #include "spinlock.h"
  28. #include "restart.h"
  29. #include "smp.h"
  30. #include <not-cancel.h>
  31. #define __clone clone
  32. /* Sanity check. */
  33. #if !defined __SIGRTMIN || (__SIGRTMAX - __SIGRTMIN) < 3
  34. # error "This must not happen"
  35. #endif
  36. /* mods for uClibc: __libc_sigaction is not in any standard headers */
  37. extern __typeof(sigaction) __libc_sigaction;
  38. #if !(USE_TLS && HAVE___THREAD)
  39. /* These variables are used by the setup code. */
  40. extern int _errno;
  41. extern int _h_errno;
  42. /* We need the global/static resolver state here. */
  43. # include <resolv.h>
  44. # undef _res
  45. extern struct __res_state _res;
  46. #endif
  47. #ifdef USE_TLS
  48. /* We need only a few variables. */
  49. #define manager_thread __pthread_manager_threadp
  50. pthread_descr __pthread_manager_threadp attribute_hidden;
  51. #else
  52. /* Descriptor of the initial thread */
  53. struct _pthread_descr_struct __pthread_initial_thread = {
  54. .p_header.data.self = &__pthread_initial_thread,
  55. .p_nextlive = &__pthread_initial_thread,
  56. .p_prevlive = &__pthread_initial_thread,
  57. .p_tid = PTHREAD_THREADS_MAX,
  58. .p_lock = &__pthread_handles[0].h_lock,
  59. .p_start_args = PTHREAD_START_ARGS_INITIALIZER(NULL),
  60. #if !(USE_TLS && HAVE___THREAD)
  61. .p_errnop = &_errno,
  62. .p_h_errnop = &_h_errno,
  63. .p_resp = &_res,
  64. #endif
  65. .p_userstack = 1,
  66. .p_resume_count = __ATOMIC_INITIALIZER,
  67. .p_alloca_cutoff = __MAX_ALLOCA_CUTOFF
  68. };
  69. /* Descriptor of the manager thread; none of this is used but the error
  70. variables, the p_pid and p_priority fields,
  71. and the address for identification. */
  72. #define manager_thread (&__pthread_manager_thread)
  73. struct _pthread_descr_struct __pthread_manager_thread = {
  74. .p_header.data.self = &__pthread_manager_thread,
  75. .p_header.data.multiple_threads = 1,
  76. .p_lock = &__pthread_handles[1].h_lock,
  77. .p_start_args = PTHREAD_START_ARGS_INITIALIZER(__pthread_manager),
  78. #if !(USE_TLS && HAVE___THREAD)
  79. .p_errnop = &__pthread_manager_thread.p_errno,
  80. #endif
  81. .p_nr = 1,
  82. .p_resume_count = __ATOMIC_INITIALIZER,
  83. .p_alloca_cutoff = PTHREAD_STACK_MIN / 4
  84. };
  85. #endif
  86. /* Pointer to the main thread (the father of the thread manager thread) */
  87. /* Originally, this is the initial thread, but this changes after fork() */
  88. #ifdef USE_TLS
  89. pthread_descr __pthread_main_thread;
  90. #else
  91. pthread_descr __pthread_main_thread = &__pthread_initial_thread;
  92. #endif
  93. /* Limit between the stack of the initial thread (above) and the
  94. stacks of other threads (below). Aligned on a STACK_SIZE boundary. */
  95. char *__pthread_initial_thread_bos;
  96. /* File descriptor for sending requests to the thread manager. */
  97. /* Initially -1, meaning that the thread manager is not running. */
  98. int __pthread_manager_request = -1;
  99. int __pthread_multiple_threads attribute_hidden;
  100. /* Other end of the pipe for sending requests to the thread manager. */
  101. int __pthread_manager_reader;
  102. /* Limits of the thread manager stack */
  103. char *__pthread_manager_thread_bos;
  104. char *__pthread_manager_thread_tos;
  105. /* For process-wide exit() */
  106. int __pthread_exit_requested;
  107. int __pthread_exit_code;
  108. /* Maximum stack size. */
  109. size_t __pthread_max_stacksize;
  110. /* Nozero if the machine has more than one processor. */
  111. int __pthread_smp_kernel;
  112. #if !__ASSUME_REALTIME_SIGNALS
  113. /* Pointers that select new or old suspend/resume functions
  114. based on availability of rt signals. */
  115. void (*__pthread_restart)(pthread_descr) = __pthread_restart_old;
  116. void (*__pthread_suspend)(pthread_descr) = __pthread_suspend_old;
  117. int (*__pthread_timedsuspend)(pthread_descr, const struct timespec *) = __pthread_timedsuspend_old;
  118. #endif /* __ASSUME_REALTIME_SIGNALS */
  119. /* Communicate relevant LinuxThreads constants to gdb */
  120. const int __pthread_threads_max = PTHREAD_THREADS_MAX;
  121. const int __pthread_sizeof_handle = sizeof(struct pthread_handle_struct);
  122. const int __pthread_offsetof_descr = offsetof(struct pthread_handle_struct,
  123. h_descr);
  124. const int __pthread_offsetof_pid = offsetof(struct _pthread_descr_struct,
  125. p_pid);
  126. const int __linuxthreads_pthread_sizeof_descr
  127. = sizeof(struct _pthread_descr_struct);
  128. const int __linuxthreads_initial_report_events;
  129. const char __linuxthreads_version[] = VERSION;
  130. /* Forward declarations */
  131. static void pthread_onexit_process(int retcode, void *arg);
  132. #ifndef HAVE_Z_NODELETE
  133. static void pthread_atexit_process(void *arg, int retcode);
  134. static void pthread_atexit_retcode(void *arg, int retcode);
  135. #endif
  136. static void pthread_handle_sigcancel(int sig);
  137. static void pthread_handle_sigrestart(int sig);
  138. static void pthread_handle_sigdebug(int sig);
  139. /* Signal numbers used for the communication.
  140. In these variables we keep track of the used variables. If the
  141. platform does not support any real-time signals we will define the
  142. values to some unreasonable value which will signal failing of all
  143. the functions below. */
  144. int __pthread_sig_restart = __SIGRTMIN;
  145. int __pthread_sig_cancel = __SIGRTMIN + 1;
  146. int __pthread_sig_debug = __SIGRTMIN + 2;
  147. extern int __libc_current_sigrtmin_private (void);
  148. #if !__ASSUME_REALTIME_SIGNALS
  149. static int rtsigs_initialized;
  150. static void
  151. init_rtsigs (void)
  152. {
  153. if (rtsigs_initialized)
  154. return;
  155. if (__libc_current_sigrtmin_private () == -1)
  156. {
  157. __pthread_sig_restart = SIGUSR1;
  158. __pthread_sig_cancel = SIGUSR2;
  159. __pthread_sig_debug = 0;
  160. }
  161. else
  162. {
  163. __pthread_restart = __pthread_restart_new;
  164. __pthread_suspend = __pthread_wait_for_restart_signal;
  165. __pthread_timedsuspend = __pthread_timedsuspend_new;
  166. }
  167. rtsigs_initialized = 1;
  168. }
  169. #endif
  170. /* Initialize the pthread library.
  171. Initialization is split in two functions:
  172. - a constructor function that blocks the __pthread_sig_restart signal
  173. (must do this very early, since the program could capture the signal
  174. mask with e.g. sigsetjmp before creating the first thread);
  175. - a regular function called from pthread_create when needed. */
  176. static void pthread_initialize(void) __attribute__((constructor));
  177. #ifndef HAVE_Z_NODELETE
  178. extern void *__dso_handle __attribute__ ((weak));
  179. #endif
  180. #if defined USE_TLS && !defined SHARED
  181. extern void __libc_setup_tls (size_t tcbsize, size_t tcbalign);
  182. #endif
  183. struct pthread_functions __pthread_functions =
  184. {
  185. #if !(USE_TLS && HAVE___THREAD)
  186. .ptr_pthread_internal_tsd_set = __pthread_internal_tsd_set,
  187. .ptr_pthread_internal_tsd_get = __pthread_internal_tsd_get,
  188. .ptr_pthread_internal_tsd_address = __pthread_internal_tsd_address,
  189. #endif
  190. .ptr_pthread_fork = __pthread_fork,
  191. .ptr_pthread_attr_destroy = __pthread_attr_destroy,
  192. .ptr___pthread_attr_init = __pthread_attr_init,
  193. .ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate,
  194. .ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate,
  195. .ptr_pthread_attr_getinheritsched = __pthread_attr_getinheritsched,
  196. .ptr_pthread_attr_setinheritsched = __pthread_attr_setinheritsched,
  197. .ptr_pthread_attr_getschedparam = __pthread_attr_getschedparam,
  198. .ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam,
  199. .ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy,
  200. .ptr_pthread_attr_setschedpolicy = __pthread_attr_setschedpolicy,
  201. .ptr_pthread_attr_getscope = __pthread_attr_getscope,
  202. .ptr_pthread_attr_setscope = __pthread_attr_setscope,
  203. .ptr_pthread_condattr_destroy = __pthread_condattr_destroy,
  204. .ptr_pthread_condattr_init = __pthread_condattr_init,
  205. .ptr_pthread_cond_broadcast = __pthread_cond_broadcast,
  206. .ptr_pthread_cond_destroy = __pthread_cond_destroy,
  207. .ptr_pthread_cond_init = __pthread_cond_init,
  208. .ptr_pthread_cond_signal = __pthread_cond_signal,
  209. .ptr_pthread_cond_wait = __pthread_cond_wait,
  210. .ptr_pthread_cond_timedwait = __pthread_cond_timedwait,
  211. .ptr_pthread_equal = __pthread_equal,
  212. .ptr___pthread_exit = __pthread_exit,
  213. .ptr_pthread_getschedparam = __pthread_getschedparam,
  214. .ptr_pthread_setschedparam = __pthread_setschedparam,
  215. .ptr_pthread_mutex_destroy = __pthread_mutex_destroy,
  216. .ptr_pthread_mutex_init = __pthread_mutex_init,
  217. .ptr_pthread_mutex_lock = __pthread_mutex_lock,
  218. .ptr_pthread_mutex_trylock = __pthread_mutex_trylock,
  219. .ptr_pthread_mutex_unlock = __pthread_mutex_unlock,
  220. .ptr_pthread_self = __pthread_self,
  221. .ptr_pthread_setcancelstate = __pthread_setcancelstate,
  222. .ptr_pthread_setcanceltype = __pthread_setcanceltype,
  223. .ptr_pthread_do_exit = __pthread_do_exit,
  224. .ptr_pthread_thread_self = __pthread_thread_self,
  225. .ptr_pthread_cleanup_upto = __pthread_cleanup_upto,
  226. .ptr_pthread_sigaction = __pthread_sigaction,
  227. .ptr_pthread_sigwait = __pthread_sigwait,
  228. .ptr_pthread_raise = __pthread_raise,
  229. .ptr__pthread_cleanup_push = _pthread_cleanup_push,
  230. .ptr__pthread_cleanup_pop = _pthread_cleanup_pop
  231. };
  232. #ifdef SHARED
  233. # define ptr_pthread_functions &__pthread_functions
  234. #else
  235. # define ptr_pthread_functions NULL
  236. #endif
  237. static int *__libc_multiple_threads_ptr;
  238. /* Do some minimal initialization which has to be done during the
  239. startup of the C library. */
  240. void
  241. __pthread_initialize_minimal(void)
  242. {
  243. #ifdef USE_TLS
  244. pthread_descr self;
  245. /* First of all init __pthread_handles[0] and [1] if needed. */
  246. # if __LT_SPINLOCK_INIT != 0
  247. __pthread_handles[0].h_lock = __LOCK_INITIALIZER;
  248. __pthread_handles[1].h_lock = __LOCK_INITIALIZER;
  249. # endif
  250. # ifndef SHARED
  251. /* Unlike in the dynamically linked case the dynamic linker has not
  252. taken care of initializing the TLS data structures. */
  253. __libc_setup_tls (TLS_TCB_SIZE, TLS_TCB_ALIGN);
  254. # elif !USE___THREAD
  255. if (__builtin_expect (GL(dl_tls_dtv_slotinfo_list) == NULL, 0))
  256. {
  257. tcbhead_t *tcbp;
  258. /* There is no actual TLS being used, so the thread register
  259. was not initialized in the dynamic linker. */
  260. /* We need to install special hooks so that the malloc and memalign
  261. calls in _dl_tls_setup and _dl_allocate_tls won't cause full
  262. malloc initialization that will try to set up its thread state. */
  263. extern void __libc_malloc_pthread_startup (bool first_time);
  264. __libc_malloc_pthread_startup (true);
  265. if (__builtin_expect (_dl_tls_setup (), 0)
  266. || __builtin_expect ((tcbp = _dl_allocate_tls (NULL)) == NULL, 0))
  267. {
  268. static const char msg[] = "\
  269. cannot allocate TLS data structures for initial thread\n";
  270. TEMP_FAILURE_RETRY (write_not_cancel (STDERR_FILENO,
  271. msg, sizeof msg - 1));
  272. abort ();
  273. }
  274. const char *lossage = TLS_INIT_TP (tcbp, 0);
  275. if (__builtin_expect (lossage != NULL, 0))
  276. {
  277. static const char msg[] = "cannot set up thread-local storage: ";
  278. const char nl = '\n';
  279. TEMP_FAILURE_RETRY (write_not_cancel (STDERR_FILENO,
  280. msg, sizeof msg - 1));
  281. TEMP_FAILURE_RETRY (write_not_cancel (STDERR_FILENO,
  282. lossage, strlen (lossage)));
  283. TEMP_FAILURE_RETRY (write_not_cancel (STDERR_FILENO, &nl, 1));
  284. }
  285. /* Though it was allocated with libc's malloc, that was done without
  286. the user's __malloc_hook installed. A later realloc that uses
  287. the hooks might not work with that block from the plain malloc.
  288. So we record this block as unfreeable just as the dynamic linker
  289. does when it allocates the DTV before the libc malloc exists. */
  290. GL(dl_initial_dtv) = GET_DTV (tcbp);
  291. __libc_malloc_pthread_startup (false);
  292. }
  293. # endif
  294. self = THREAD_SELF;
  295. /* The memory for the thread descriptor was allocated elsewhere as
  296. part of the TLS allocation. We have to initialize the data
  297. structure by hand. This initialization must mirror the struct
  298. definition above. */
  299. self->p_nextlive = self->p_prevlive = self;
  300. self->p_tid = PTHREAD_THREADS_MAX;
  301. self->p_lock = &__pthread_handles[0].h_lock;
  302. # ifndef HAVE___THREAD
  303. self->p_errnop = &_errno;
  304. self->p_h_errnop = &_h_errno;
  305. # endif
  306. /* self->p_start_args need not be initialized, it's all zero. */
  307. self->p_userstack = 1;
  308. # if __LT_SPINLOCK_INIT != 0
  309. self->p_resume_count = (struct pthread_atomic) __ATOMIC_INITIALIZER;
  310. # endif
  311. self->p_alloca_cutoff = __MAX_ALLOCA_CUTOFF;
  312. /* Another variable which points to the thread descriptor. */
  313. __pthread_main_thread = self;
  314. /* And fill in the pointer the the thread __pthread_handles array. */
  315. __pthread_handles[0].h_descr = self;
  316. #else /* USE_TLS */
  317. /* First of all init __pthread_handles[0] and [1]. */
  318. # if __LT_SPINLOCK_INIT != 0
  319. __pthread_handles[0].h_lock = __LOCK_INITIALIZER;
  320. __pthread_handles[1].h_lock = __LOCK_INITIALIZER;
  321. # endif
  322. __pthread_handles[0].h_descr = &__pthread_initial_thread;
  323. __pthread_handles[1].h_descr = &__pthread_manager_thread;
  324. /* If we have special thread_self processing, initialize that for the
  325. main thread now. */
  326. # ifdef INIT_THREAD_SELF
  327. INIT_THREAD_SELF(&__pthread_initial_thread, 0);
  328. # endif
  329. #endif
  330. #if HP_TIMING_AVAIL
  331. # ifdef USE_TLS
  332. self->p_cpuclock_offset = GL(dl_cpuclock_offset);
  333. # else
  334. __pthread_initial_thread.p_cpuclock_offset = GL(dl_cpuclock_offset);
  335. # endif
  336. #endif
  337. __libc_multiple_threads_ptr = __libc_pthread_init (ptr_pthread_functions);
  338. }
  339. void
  340. __pthread_init_max_stacksize(void)
  341. {
  342. struct rlimit limit;
  343. size_t max_stack;
  344. getrlimit(RLIMIT_STACK, &limit);
  345. #ifdef FLOATING_STACKS
  346. if (limit.rlim_cur == RLIM_INFINITY)
  347. limit.rlim_cur = ARCH_STACK_MAX_SIZE;
  348. # ifdef NEED_SEPARATE_REGISTER_STACK
  349. max_stack = limit.rlim_cur / 2;
  350. # else
  351. max_stack = limit.rlim_cur;
  352. # endif
  353. #else
  354. /* Play with the stack size limit to make sure that no stack ever grows
  355. beyond STACK_SIZE minus one page (to act as a guard page). */
  356. # ifdef NEED_SEPARATE_REGISTER_STACK
  357. /* STACK_SIZE bytes hold both the main stack and register backing
  358. store. The rlimit value applies to each individually. */
  359. max_stack = STACK_SIZE/2 - __getpagesize ();
  360. # else
  361. max_stack = STACK_SIZE - __getpagesize();
  362. # endif
  363. if (limit.rlim_cur > max_stack) {
  364. limit.rlim_cur = max_stack;
  365. setrlimit(RLIMIT_STACK, &limit);
  366. }
  367. #endif
  368. __pthread_max_stacksize = max_stack;
  369. if (max_stack / 4 < __MAX_ALLOCA_CUTOFF)
  370. {
  371. #ifdef USE_TLS
  372. pthread_descr self = THREAD_SELF;
  373. self->p_alloca_cutoff = max_stack / 4;
  374. #else
  375. __pthread_initial_thread.p_alloca_cutoff = max_stack / 4;
  376. #endif
  377. }
  378. }
  379. #ifdef SHARED
  380. # if USE___THREAD
  381. /* When using __thread for this, we do it in libc so as not
  382. to give libpthread its own TLS segment just for this. */
  383. extern void **__libc_dl_error_tsd (void) __attribute__ ((const));
  384. # else
  385. static void ** __attribute__ ((const))
  386. __libc_dl_error_tsd (void)
  387. {
  388. return &thread_self ()->p_libc_specific[_LIBC_TSD_KEY_DL_ERROR];
  389. }
  390. # endif
  391. #endif
  392. #ifdef USE_TLS
  393. static inline void __attribute__((always_inline))
  394. init_one_static_tls (pthread_descr descr, struct link_map *map)
  395. {
  396. # if TLS_TCB_AT_TP
  397. dtv_t *dtv = GET_DTV (descr);
  398. void *dest = (char *) descr - map->l_tls_offset;
  399. # elif TLS_DTV_AT_TP
  400. dtv_t *dtv = GET_DTV ((pthread_descr) ((char *) descr + TLS_PRE_TCB_SIZE));
  401. void *dest = (char *) descr + map->l_tls_offset + TLS_PRE_TCB_SIZE;
  402. # else
  403. # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
  404. # endif
  405. /* Fill in the DTV slot so that a later LD/GD access will find it. */
  406. dtv[map->l_tls_modid].pointer.val = dest;
  407. dtv[map->l_tls_modid].pointer.is_static = true;
  408. /* Initialize the memory. */
  409. memset (__mempcpy (dest, map->l_tls_initimage, map->l_tls_initimage_size),
  410. '\0', map->l_tls_blocksize - map->l_tls_initimage_size);
  411. }
  412. static void
  413. __pthread_init_static_tls (struct link_map *map)
  414. {
  415. size_t i;
  416. for (i = 0; i < PTHREAD_THREADS_MAX; ++i)
  417. if (__pthread_handles[i].h_descr != NULL && i != 1)
  418. {
  419. __pthread_lock (&__pthread_handles[i].h_lock, NULL);
  420. if (__pthread_handles[i].h_descr != NULL)
  421. init_one_static_tls (__pthread_handles[i].h_descr, map);
  422. __pthread_unlock (&__pthread_handles[i].h_lock);
  423. }
  424. }
  425. #endif
  426. static void pthread_initialize(void)
  427. {
  428. struct sigaction sa;
  429. sigset_t mask;
  430. /* If already done (e.g. by a constructor called earlier!), bail out */
  431. if (__pthread_initial_thread_bos != NULL) return;
  432. #ifdef TEST_FOR_COMPARE_AND_SWAP
  433. /* Test if compare-and-swap is available */
  434. __pthread_has_cas = compare_and_swap_is_available();
  435. #endif
  436. #ifdef FLOATING_STACKS
  437. /* We don't need to know the bottom of the stack. Give the pointer some
  438. value to signal that initialization happened. */
  439. __pthread_initial_thread_bos = (void *) -1l;
  440. #else
  441. /* Determine stack size limits . */
  442. __pthread_init_max_stacksize ();
  443. # ifdef _STACK_GROWS_UP
  444. /* The initial thread already has all the stack it needs */
  445. __pthread_initial_thread_bos = (char *)
  446. ((long)CURRENT_STACK_FRAME &~ (STACK_SIZE - 1));
  447. # else
  448. /* For the initial stack, reserve at least STACK_SIZE bytes of stack
  449. below the current stack address, and align that on a
  450. STACK_SIZE boundary. */
  451. __pthread_initial_thread_bos =
  452. (char *)(((long)CURRENT_STACK_FRAME - 2 * STACK_SIZE) & ~(STACK_SIZE - 1));
  453. # endif
  454. #endif
  455. #ifdef USE_TLS
  456. /* Update the descriptor for the initial thread. */
  457. THREAD_SETMEM (((pthread_descr) NULL), p_pid, __getpid());
  458. # ifndef HAVE___THREAD
  459. /* Likewise for the resolver state _res. */
  460. THREAD_SETMEM (((pthread_descr) NULL), p_resp, &_res);
  461. # endif
  462. #else
  463. /* Update the descriptor for the initial thread. */
  464. __pthread_initial_thread.p_pid = __getpid();
  465. /* Likewise for the resolver state _res. */
  466. __pthread_initial_thread.p_resp = &_res;
  467. #endif
  468. #if !__ASSUME_REALTIME_SIGNALS
  469. /* Initialize real-time signals. */
  470. init_rtsigs ();
  471. #endif
  472. /* Setup signal handlers for the initial thread.
  473. Since signal handlers are shared between threads, these settings
  474. will be inherited by all other threads. */
  475. sa.sa_handler = pthread_handle_sigrestart;
  476. sigemptyset(&sa.sa_mask);
  477. sa.sa_flags = 0;
  478. __libc_sigaction(__pthread_sig_restart, &sa, NULL);
  479. sa.sa_handler = pthread_handle_sigcancel;
  480. sigaddset(&sa.sa_mask, __pthread_sig_restart);
  481. // sa.sa_flags = 0;
  482. __libc_sigaction(__pthread_sig_cancel, &sa, NULL);
  483. if (__pthread_sig_debug > 0) {
  484. sa.sa_handler = pthread_handle_sigdebug;
  485. sigemptyset(&sa.sa_mask);
  486. // sa.sa_flags = 0;
  487. __libc_sigaction(__pthread_sig_debug, &sa, NULL);
  488. }
  489. /* Initially, block __pthread_sig_restart. Will be unblocked on demand. */
  490. sigemptyset(&mask);
  491. sigaddset(&mask, __pthread_sig_restart);
  492. sigprocmask(SIG_BLOCK, &mask, NULL);
  493. /* And unblock __pthread_sig_cancel if it has been blocked. */
  494. sigdelset(&mask, __pthread_sig_restart);
  495. sigaddset(&mask, __pthread_sig_cancel);
  496. sigprocmask(SIG_UNBLOCK, &mask, NULL);
  497. /* Register an exit function to kill all other threads. */
  498. /* Do it early so that user-registered atexit functions are called
  499. before pthread_*exit_process. */
  500. #ifndef HAVE_Z_NODELETE
  501. if (__builtin_expect (&__dso_handle != NULL, 1))
  502. __cxa_atexit ((void (*) (void *)) pthread_atexit_process, NULL,
  503. __dso_handle);
  504. else
  505. #endif
  506. __on_exit (pthread_onexit_process, NULL);
  507. /* How many processors. */
  508. __pthread_smp_kernel = is_smp_system ();
  509. #ifdef SHARED
  510. /* Transfer the old value from the dynamic linker's internal location. */
  511. *__libc_dl_error_tsd () = *(*GL(dl_error_catch_tsd)) ();
  512. GL(dl_error_catch_tsd) = &__libc_dl_error_tsd;
  513. /* Make __rtld_lock_{,un}lock_recursive use pthread_mutex_{,un}lock,
  514. keep the lock count from the ld.so implementation. */
  515. GL(dl_rtld_lock_recursive) = (void *) __pthread_mutex_lock;
  516. GL(dl_rtld_unlock_recursive) = (void *) __pthread_mutex_unlock;
  517. unsigned int rtld_lock_count = GL(dl_load_lock).mutex.__m_count;
  518. GL(dl_load_lock).mutex.__m_count = 0;
  519. while (rtld_lock_count-- > 0)
  520. __pthread_mutex_lock (&GL(dl_load_lock).mutex);
  521. #endif
  522. #ifdef USE_TLS
  523. GL(dl_init_static_tls) = &__pthread_init_static_tls;
  524. #endif
  525. }
  526. void __pthread_initialize(void)
  527. {
  528. pthread_initialize();
  529. }
  530. int __pthread_initialize_manager(void)
  531. {
  532. int manager_pipe[2];
  533. int pid;
  534. struct pthread_request request;
  535. int report_events;
  536. pthread_descr mgr;
  537. #ifdef USE_TLS
  538. tcbhead_t *tcbp;
  539. #endif
  540. __pthread_multiple_threads = 1;
  541. #if TLS_MULTIPLE_THREADS_IN_TCB || !defined USE_TLS || !TLS_DTV_AT_TP
  542. __pthread_main_thread->p_multiple_threads = 1;
  543. #endif
  544. *__libc_multiple_threads_ptr = 1;
  545. #ifndef HAVE_Z_NODELETE
  546. if (__builtin_expect (&__dso_handle != NULL, 1))
  547. __cxa_atexit ((void (*) (void *)) pthread_atexit_retcode, NULL,
  548. __dso_handle);
  549. #endif
  550. if (__pthread_max_stacksize == 0)
  551. __pthread_init_max_stacksize ();
  552. /* If basic initialization not done yet (e.g. we're called from a
  553. constructor run before our constructor), do it now */
  554. if (__pthread_initial_thread_bos == NULL) pthread_initialize();
  555. /* Setup stack for thread manager */
  556. __pthread_manager_thread_bos = malloc(THREAD_MANAGER_STACK_SIZE);
  557. if (__pthread_manager_thread_bos == NULL) return -1;
  558. __pthread_manager_thread_tos =
  559. __pthread_manager_thread_bos + THREAD_MANAGER_STACK_SIZE;
  560. /* Setup pipe to communicate with thread manager */
  561. if (pipe(manager_pipe) == -1) {
  562. free(__pthread_manager_thread_bos);
  563. return -1;
  564. }
  565. #ifdef USE_TLS
  566. /* Allocate memory for the thread descriptor and the dtv. */
  567. tcbp = _dl_allocate_tls (NULL);
  568. if (tcbp == NULL) {
  569. free(__pthread_manager_thread_bos);
  570. close_not_cancel(manager_pipe[0]);
  571. close_not_cancel(manager_pipe[1]);
  572. return -1;
  573. }
  574. # if TLS_TCB_AT_TP
  575. mgr = (pthread_descr) tcbp;
  576. # elif TLS_DTV_AT_TP
  577. /* pthread_descr is located right below tcbhead_t which _dl_allocate_tls
  578. returns. */
  579. mgr = (pthread_descr) ((char *) tcbp - TLS_PRE_TCB_SIZE);
  580. # endif
  581. __pthread_handles[1].h_descr = manager_thread = mgr;
  582. /* Initialize the descriptor. */
  583. #if !defined USE_TLS || !TLS_DTV_AT_TP
  584. mgr->p_header.data.tcb = tcbp;
  585. mgr->p_header.data.self = mgr;
  586. mgr->p_header.data.multiple_threads = 1;
  587. #elif TLS_MULTIPLE_THREADS_IN_TCB
  588. mgr->p_multiple_threads = 1;
  589. #endif
  590. mgr->p_lock = &__pthread_handles[1].h_lock;
  591. # ifndef HAVE___THREAD
  592. mgr->p_errnop = &mgr->p_errno;
  593. # endif
  594. mgr->p_start_args = (struct pthread_start_args) PTHREAD_START_ARGS_INITIALIZER(__pthread_manager);
  595. mgr->p_nr = 1;
  596. # if __LT_SPINLOCK_INIT != 0
  597. self->p_resume_count = (struct pthread_atomic) __ATOMIC_INITIALIZER;
  598. # endif
  599. mgr->p_alloca_cutoff = PTHREAD_STACK_MIN / 4;
  600. #else
  601. mgr = &__pthread_manager_thread;
  602. #endif
  603. __pthread_manager_request = manager_pipe[1]; /* writing end */
  604. __pthread_manager_reader = manager_pipe[0]; /* reading end */
  605. /* Start the thread manager */
  606. pid = 0;
  607. #ifdef USE_TLS
  608. if (__linuxthreads_initial_report_events != 0)
  609. THREAD_SETMEM (((pthread_descr) NULL), p_report_events,
  610. __linuxthreads_initial_report_events);
  611. report_events = THREAD_GETMEM (((pthread_descr) NULL), p_report_events);
  612. #else
  613. if (__linuxthreads_initial_report_events != 0)
  614. __pthread_initial_thread.p_report_events
  615. = __linuxthreads_initial_report_events;
  616. report_events = __pthread_initial_thread.p_report_events;
  617. #endif
  618. if (__builtin_expect (report_events, 0))
  619. {
  620. /* It's a bit more complicated. We have to report the creation of
  621. the manager thread. */
  622. int idx = __td_eventword (TD_CREATE);
  623. uint32_t mask = __td_eventmask (TD_CREATE);
  624. uint32_t event_bits;
  625. #ifdef USE_TLS
  626. event_bits = THREAD_GETMEM_NC (((pthread_descr) NULL),
  627. p_eventbuf.eventmask.event_bits[idx]);
  628. #else
  629. event_bits = __pthread_initial_thread.p_eventbuf.eventmask.event_bits[idx];
  630. #endif
  631. if ((mask & (__pthread_threads_events.event_bits[idx] | event_bits))
  632. != 0)
  633. {
  634. __pthread_lock(mgr->p_lock, NULL);
  635. #ifdef NEED_SEPARATE_REGISTER_STACK
  636. pid = __clone2(__pthread_manager_event,
  637. (void **) __pthread_manager_thread_bos,
  638. THREAD_MANAGER_STACK_SIZE,
  639. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND,
  640. mgr);
  641. #elif _STACK_GROWS_UP
  642. pid = __clone(__pthread_manager_event,
  643. (void **) __pthread_manager_thread_bos,
  644. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND,
  645. mgr);
  646. #else
  647. pid = __clone(__pthread_manager_event,
  648. (void **) __pthread_manager_thread_tos,
  649. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND,
  650. mgr);
  651. #endif
  652. if (pid != -1)
  653. {
  654. /* Now fill in the information about the new thread in
  655. the newly created thread's data structure. We cannot let
  656. the new thread do this since we don't know whether it was
  657. already scheduled when we send the event. */
  658. mgr->p_eventbuf.eventdata = mgr;
  659. mgr->p_eventbuf.eventnum = TD_CREATE;
  660. __pthread_last_event = mgr;
  661. mgr->p_tid = 2* PTHREAD_THREADS_MAX + 1;
  662. mgr->p_pid = pid;
  663. /* Now call the function which signals the event. */
  664. __linuxthreads_create_event ();
  665. }
  666. /* Now restart the thread. */
  667. __pthread_unlock(mgr->p_lock);
  668. }
  669. }
  670. if (__builtin_expect (pid, 0) == 0)
  671. {
  672. #ifdef NEED_SEPARATE_REGISTER_STACK
  673. pid = __clone2(__pthread_manager, (void **) __pthread_manager_thread_bos,
  674. THREAD_MANAGER_STACK_SIZE,
  675. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND, mgr);
  676. #elif _STACK_GROWS_UP
  677. pid = __clone(__pthread_manager, (void **) __pthread_manager_thread_bos,
  678. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND, mgr);
  679. #else
  680. pid = __clone(__pthread_manager, (void **) __pthread_manager_thread_tos,
  681. CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND, mgr);
  682. #endif
  683. }
  684. if (__builtin_expect (pid, 0) == -1) {
  685. #ifdef USE_TLS
  686. _dl_deallocate_tls (tcbp, true);
  687. #endif
  688. free(__pthread_manager_thread_bos);
  689. close_not_cancel(manager_pipe[0]);
  690. close_not_cancel(manager_pipe[1]);
  691. return -1;
  692. }
  693. mgr->p_tid = 2* PTHREAD_THREADS_MAX + 1;
  694. mgr->p_pid = pid;
  695. /* Make gdb aware of new thread manager */
  696. if (__builtin_expect (__pthread_threads_debug, 0) && __pthread_sig_debug > 0)
  697. {
  698. raise(__pthread_sig_debug);
  699. /* We suspend ourself and gdb will wake us up when it is
  700. ready to handle us. */
  701. __pthread_wait_for_restart_signal(thread_self());
  702. }
  703. /* Synchronize debugging of the thread manager */
  704. request.req_kind = REQ_DEBUG;
  705. TEMP_FAILURE_RETRY(write_not_cancel(__pthread_manager_request,
  706. (char *) &request, sizeof(request)));
  707. return 0;
  708. }
  709. /* Thread creation */
  710. int __pthread_create(pthread_t *thread, const pthread_attr_t *attr,
  711. void * (*start_routine)(void *), void *arg)
  712. {
  713. pthread_descr self = thread_self();
  714. struct pthread_request request;
  715. int retval;
  716. if (__builtin_expect (__pthread_manager_request, 0) < 0) {
  717. if (__pthread_initialize_manager() < 0) return EAGAIN;
  718. }
  719. request.req_thread = self;
  720. request.req_kind = REQ_CREATE;
  721. request.req_args.create.attr = attr;
  722. request.req_args.create.fn = start_routine;
  723. request.req_args.create.arg = arg;
  724. sigprocmask(SIG_SETMASK, (const sigset_t *) NULL,
  725. &request.req_args.create.mask);
  726. TEMP_FAILURE_RETRY(write_not_cancel(__pthread_manager_request,
  727. (char *) &request, sizeof(request)));
  728. suspend(self);
  729. retval = THREAD_GETMEM(self, p_retcode);
  730. if (__builtin_expect (retval, 0) == 0)
  731. *thread = (pthread_t) THREAD_GETMEM(self, p_retval);
  732. return retval;
  733. }
  734. strong_alias (__pthread_create, pthread_create)
  735. /* Simple operations on thread identifiers */
  736. pthread_descr __pthread_thread_self(void)
  737. {
  738. return thread_self();
  739. }
  740. pthread_t __pthread_self(void)
  741. {
  742. pthread_descr self = thread_self();
  743. return THREAD_GETMEM(self, p_tid);
  744. }
  745. strong_alias (__pthread_self, pthread_self);
  746. int __pthread_equal(pthread_t thread1, pthread_t thread2)
  747. {
  748. return thread1 == thread2;
  749. }
  750. strong_alias (__pthread_equal, pthread_equal);
  751. /* Helper function for thread_self in the case of user-provided stacks */
  752. #ifndef THREAD_SELF
  753. pthread_descr __pthread_find_self(void)
  754. {
  755. char * sp = CURRENT_STACK_FRAME;
  756. pthread_handle h;
  757. /* __pthread_handles[0] is the initial thread, __pthread_handles[1] is
  758. the manager threads handled specially in thread_self(), so start at 2 */
  759. h = __pthread_handles + 2;
  760. # ifdef _STACK_GROWS_UP
  761. while (! (sp >= (char *) h->h_descr && sp < (char *) h->h_descr->p_guardaddr)) h++;
  762. # else
  763. while (! (sp <= (char *) h->h_descr && sp >= h->h_bottom)) h++;
  764. # endif
  765. return h->h_descr;
  766. }
  767. #else
  768. pthread_descr __pthread_self_stack(void)
  769. {
  770. char *sp = CURRENT_STACK_FRAME;
  771. pthread_handle h;
  772. if (sp >= __pthread_manager_thread_bos && sp < __pthread_manager_thread_tos)
  773. return manager_thread;
  774. h = __pthread_handles + 2;
  775. # ifdef USE_TLS
  776. # ifdef _STACK_GROWS_UP
  777. while (h->h_descr == NULL
  778. || ! (sp >= h->h_descr->p_stackaddr && sp < h->h_descr->p_guardaddr))
  779. h++;
  780. # else
  781. while (h->h_descr == NULL
  782. || ! (sp <= (char *) h->h_descr->p_stackaddr && sp >= h->h_bottom))
  783. h++;
  784. # endif
  785. # else
  786. # ifdef _STACK_GROWS_UP
  787. while (! (sp >= (char *) h->h_descr && sp < h->h_descr->p_guardaddr))
  788. h++;
  789. # else
  790. while (! (sp <= (char *) h->h_descr && sp >= h->h_bottom))
  791. h++;
  792. # endif
  793. # endif
  794. return h->h_descr;
  795. }
  796. #endif
  797. /* Thread scheduling */
  798. int __pthread_setschedparam(pthread_t thread, int policy,
  799. const struct sched_param *param)
  800. {
  801. pthread_handle handle = thread_handle(thread);
  802. pthread_descr th;
  803. __pthread_lock(&handle->h_lock, NULL);
  804. if (__builtin_expect (invalid_handle(handle, thread), 0)) {
  805. __pthread_unlock(&handle->h_lock);
  806. return ESRCH;
  807. }
  808. th = handle->h_descr;
  809. if (__builtin_expect (__sched_setscheduler(th->p_pid, policy, param) == -1,
  810. 0)) {
  811. __pthread_unlock(&handle->h_lock);
  812. return errno;
  813. }
  814. th->p_priority = policy == SCHED_OTHER ? 0 : param->sched_priority;
  815. __pthread_unlock(&handle->h_lock);
  816. if (__pthread_manager_request >= 0)
  817. __pthread_manager_adjust_prio(th->p_priority);
  818. return 0;
  819. }
  820. strong_alias (__pthread_setschedparam, pthread_setschedparam);
  821. int __pthread_getschedparam(pthread_t thread, int *policy,
  822. struct sched_param *param)
  823. {
  824. pthread_handle handle = thread_handle(thread);
  825. int pid, pol;
  826. __pthread_lock(&handle->h_lock, NULL);
  827. if (__builtin_expect (invalid_handle(handle, thread), 0)) {
  828. __pthread_unlock(&handle->h_lock);
  829. return ESRCH;
  830. }
  831. pid = handle->h_descr->p_pid;
  832. __pthread_unlock(&handle->h_lock);
  833. pol = __sched_getscheduler(pid);
  834. if (__builtin_expect (pol, 0) == -1) return errno;
  835. if (__sched_getparam(pid, param) == -1) return errno;
  836. *policy = pol;
  837. return 0;
  838. }
  839. strong_alias (__pthread_getschedparam, pthread_getschedparam);
  840. /* Process-wide exit() request */
  841. static void pthread_onexit_process(int retcode, void *arg)
  842. {
  843. if (__builtin_expect (__pthread_manager_request, 0) >= 0) {
  844. struct pthread_request request;
  845. pthread_descr self = thread_self();
  846. request.req_thread = self;
  847. request.req_kind = REQ_PROCESS_EXIT;
  848. request.req_args.exit.code = retcode;
  849. TEMP_FAILURE_RETRY(write_not_cancel(__pthread_manager_request,
  850. (char *) &request, sizeof(request)));
  851. suspend(self);
  852. /* Main thread should accumulate times for thread manager and its
  853. children, so that timings for main thread account for all threads. */
  854. if (self == __pthread_main_thread)
  855. {
  856. #ifdef USE_TLS
  857. waitpid(manager_thread->p_pid, NULL, __WCLONE);
  858. #else
  859. waitpid(__pthread_manager_thread.p_pid, NULL, __WCLONE);
  860. #endif
  861. /* Since all threads have been asynchronously terminated
  862. (possibly holding locks), free cannot be used any more.
  863. For mtrace, we'd like to print something though. */
  864. /* #ifdef USE_TLS
  865. tcbhead_t *tcbp = (tcbhead_t *) manager_thread;
  866. # if TLS_DTV_AT_TP
  867. tcbp = (tcbhead_t) ((char *) tcbp + TLS_PRE_TCB_SIZE);
  868. # endif
  869. _dl_deallocate_tls (tcbp, true);
  870. #endif
  871. free (__pthread_manager_thread_bos); */
  872. __pthread_manager_thread_bos = __pthread_manager_thread_tos = NULL;
  873. }
  874. }
  875. }
  876. #ifndef HAVE_Z_NODELETE
  877. static int __pthread_atexit_retcode;
  878. static void pthread_atexit_process(void *arg, int retcode)
  879. {
  880. pthread_onexit_process (retcode ?: __pthread_atexit_retcode, arg);
  881. }
  882. static void pthread_atexit_retcode(void *arg, int retcode)
  883. {
  884. __pthread_atexit_retcode = retcode;
  885. }
  886. #endif
  887. /* The handler for the RESTART signal just records the signal received
  888. in the thread descriptor, and optionally performs a siglongjmp
  889. (for pthread_cond_timedwait). */
  890. static void pthread_handle_sigrestart(int sig)
  891. {
  892. pthread_descr self = check_thread_self();
  893. THREAD_SETMEM(self, p_signal, sig);
  894. if (THREAD_GETMEM(self, p_signal_jmp) != NULL)
  895. siglongjmp(*THREAD_GETMEM(self, p_signal_jmp), 1);
  896. }
  897. /* The handler for the CANCEL signal checks for cancellation
  898. (in asynchronous mode), for process-wide exit and exec requests.
  899. For the thread manager thread, redirect the signal to
  900. __pthread_manager_sighandler. */
  901. static void pthread_handle_sigcancel(int sig)
  902. {
  903. pthread_descr self = check_thread_self();
  904. sigjmp_buf * jmpbuf;
  905. if (self == manager_thread)
  906. {
  907. __pthread_manager_sighandler(sig);
  908. return;
  909. }
  910. if (__builtin_expect (__pthread_exit_requested, 0)) {
  911. /* Main thread should accumulate times for thread manager and its
  912. children, so that timings for main thread account for all threads. */
  913. if (self == __pthread_main_thread) {
  914. #ifdef USE_TLS
  915. waitpid(manager_thread->p_pid, NULL, __WCLONE);
  916. #else
  917. waitpid(__pthread_manager_thread.p_pid, NULL, __WCLONE);
  918. #endif
  919. }
  920. _exit(__pthread_exit_code);
  921. }
  922. if (__builtin_expect (THREAD_GETMEM(self, p_canceled), 0)
  923. && THREAD_GETMEM(self, p_cancelstate) == PTHREAD_CANCEL_ENABLE) {
  924. if (THREAD_GETMEM(self, p_canceltype) == PTHREAD_CANCEL_ASYNCHRONOUS)
  925. __pthread_do_exit(PTHREAD_CANCELED, CURRENT_STACK_FRAME);
  926. jmpbuf = THREAD_GETMEM(self, p_cancel_jmp);
  927. if (jmpbuf != NULL) {
  928. THREAD_SETMEM(self, p_cancel_jmp, NULL);
  929. siglongjmp(*jmpbuf, 1);
  930. }
  931. }
  932. }
  933. /* Handler for the DEBUG signal.
  934. The debugging strategy is as follows:
  935. On reception of a REQ_DEBUG request (sent by new threads created to
  936. the thread manager under debugging mode), the thread manager throws
  937. __pthread_sig_debug to itself. The debugger (if active) intercepts
  938. this signal, takes into account new threads and continue execution
  939. of the thread manager by propagating the signal because it doesn't
  940. know what it is specifically done for. In the current implementation,
  941. the thread manager simply discards it. */
  942. static void pthread_handle_sigdebug(int sig)
  943. {
  944. /* Nothing */
  945. }
  946. /* Reset the state of the thread machinery after a fork().
  947. Close the pipe used for requests and set the main thread to the forked
  948. thread.
  949. Notice that we can't free the stack segments, as the forked thread
  950. may hold pointers into them. */
  951. void __pthread_reset_main_thread(void)
  952. {
  953. pthread_descr self = thread_self();
  954. if (__pthread_manager_request != -1) {
  955. /* Free the thread manager stack */
  956. free(__pthread_manager_thread_bos);
  957. __pthread_manager_thread_bos = __pthread_manager_thread_tos = NULL;
  958. /* Close the two ends of the pipe */
  959. close_not_cancel(__pthread_manager_request);
  960. close_not_cancel(__pthread_manager_reader);
  961. __pthread_manager_request = __pthread_manager_reader = -1;
  962. }
  963. /* Update the pid of the main thread */
  964. THREAD_SETMEM(self, p_pid, __getpid());
  965. /* Make the forked thread the main thread */
  966. __pthread_main_thread = self;
  967. THREAD_SETMEM(self, p_nextlive, self);
  968. THREAD_SETMEM(self, p_prevlive, self);
  969. #if !(USE_TLS && HAVE___THREAD)
  970. /* Now this thread modifies the global variables. */
  971. THREAD_SETMEM(self, p_errnop, &_errno);
  972. THREAD_SETMEM(self, p_h_errnop, &_h_errno);
  973. THREAD_SETMEM(self, p_resp, &_res);
  974. #endif
  975. #ifndef FLOATING_STACKS
  976. /* This is to undo the setrlimit call in __pthread_init_max_stacksize.
  977. XXX This can be wrong if the user set the limit during the run. */
  978. {
  979. struct rlimit limit;
  980. if (getrlimit (RLIMIT_STACK, &limit) == 0
  981. && limit.rlim_cur != limit.rlim_max)
  982. {
  983. limit.rlim_cur = limit.rlim_max;
  984. setrlimit(RLIMIT_STACK, &limit);
  985. }
  986. }
  987. #endif
  988. }
  989. /* Process-wide exec() request */
  990. void __pthread_kill_other_threads_np(void)
  991. {
  992. struct sigaction sa;
  993. /* Terminate all other threads and thread manager */
  994. pthread_onexit_process(0, NULL);
  995. /* Make current thread the main thread in case the calling thread
  996. changes its mind, does not exec(), and creates new threads instead. */
  997. __pthread_reset_main_thread();
  998. /* Reset the signal handlers behaviour for the signals the
  999. implementation uses since this would be passed to the new
  1000. process. */
  1001. sigemptyset(&sa.sa_mask);
  1002. sa.sa_flags = 0;
  1003. sa.sa_handler = SIG_DFL;
  1004. __libc_sigaction(__pthread_sig_restart, &sa, NULL);
  1005. __libc_sigaction(__pthread_sig_cancel, &sa, NULL);
  1006. if (__pthread_sig_debug > 0)
  1007. __libc_sigaction(__pthread_sig_debug, &sa, NULL);
  1008. }
  1009. weak_alias (__pthread_kill_other_threads_np, pthread_kill_other_threads_np)
  1010. /* Concurrency symbol level. */
  1011. static int current_level;
  1012. int __pthread_setconcurrency(int level)
  1013. {
  1014. /* We don't do anything unless we have found a useful interpretation. */
  1015. current_level = level;
  1016. return 0;
  1017. }
  1018. weak_alias (__pthread_setconcurrency, pthread_setconcurrency)
  1019. int __pthread_getconcurrency(void)
  1020. {
  1021. return current_level;
  1022. }
  1023. weak_alias (__pthread_getconcurrency, pthread_getconcurrency)
  1024. /* Primitives for controlling thread execution */
  1025. void __pthread_wait_for_restart_signal(pthread_descr self)
  1026. {
  1027. sigset_t mask;
  1028. sigprocmask(SIG_SETMASK, NULL, &mask); /* Get current signal mask */
  1029. sigdelset(&mask, __pthread_sig_restart); /* Unblock the restart signal */
  1030. THREAD_SETMEM(self, p_signal, 0);
  1031. do {
  1032. __pthread_sigsuspend(&mask); /* Wait for signal. Must not be a
  1033. cancellation point. */
  1034. } while (THREAD_GETMEM(self, p_signal) !=__pthread_sig_restart);
  1035. READ_MEMORY_BARRIER(); /* See comment in __pthread_restart_new */
  1036. }
  1037. #if !__ASSUME_REALTIME_SIGNALS
  1038. /* The _old variants are for 2.0 and early 2.1 kernels which don't have RT
  1039. signals.
  1040. On these kernels, we use SIGUSR1 and SIGUSR2 for restart and cancellation.
  1041. Since the restart signal does not queue, we use an atomic counter to create
  1042. queuing semantics. This is needed to resolve a rare race condition in
  1043. pthread_cond_timedwait_relative. */
  1044. void __pthread_restart_old(pthread_descr th)
  1045. {
  1046. if (atomic_increment(&th->p_resume_count) == -1)
  1047. kill(th->p_pid, __pthread_sig_restart);
  1048. }
  1049. void __pthread_suspend_old(pthread_descr self)
  1050. {
  1051. if (atomic_decrement(&self->p_resume_count) <= 0)
  1052. __pthread_wait_for_restart_signal(self);
  1053. }
  1054. int
  1055. __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abstime)
  1056. {
  1057. sigset_t unblock, initial_mask;
  1058. int was_signalled = 0;
  1059. sigjmp_buf jmpbuf;
  1060. if (atomic_decrement(&self->p_resume_count) == 0) {
  1061. /* Set up a longjmp handler for the restart signal, unblock
  1062. the signal and sleep. */
  1063. if (sigsetjmp(jmpbuf, 1) == 0) {
  1064. THREAD_SETMEM(self, p_signal_jmp, &jmpbuf);
  1065. THREAD_SETMEM(self, p_signal, 0);
  1066. /* Unblock the restart signal */
  1067. sigemptyset(&unblock);
  1068. sigaddset(&unblock, __pthread_sig_restart);
  1069. sigprocmask(SIG_UNBLOCK, &unblock, &initial_mask);
  1070. while (1) {
  1071. struct timeval now;
  1072. struct timespec reltime;
  1073. /* Compute a time offset relative to now. */
  1074. __gettimeofday (&now, NULL);
  1075. reltime.tv_nsec = abstime->tv_nsec - now.tv_usec * 1000;
  1076. reltime.tv_sec = abstime->tv_sec - now.tv_sec;
  1077. if (reltime.tv_nsec < 0) {
  1078. reltime.tv_nsec += 1000000000;
  1079. reltime.tv_sec -= 1;
  1080. }
  1081. /* Sleep for the required duration. If woken by a signal,
  1082. resume waiting as required by Single Unix Specification. */
  1083. if (reltime.tv_sec < 0 || __libc_nanosleep(&reltime, NULL) == 0)
  1084. break;
  1085. }
  1086. /* Block the restart signal again */
  1087. sigprocmask(SIG_SETMASK, &initial_mask, NULL);
  1088. was_signalled = 0;
  1089. } else {
  1090. was_signalled = 1;
  1091. }
  1092. THREAD_SETMEM(self, p_signal_jmp, NULL);
  1093. }
  1094. /* Now was_signalled is true if we exited the above code
  1095. due to the delivery of a restart signal. In that case,
  1096. we know we have been dequeued and resumed and that the
  1097. resume count is balanced. Otherwise, there are some
  1098. cases to consider. First, try to bump up the resume count
  1099. back to zero. If it goes to 1, it means restart() was
  1100. invoked on this thread. The signal must be consumed
  1101. and the count bumped down and everything is cool. We
  1102. can return a 1 to the caller.
  1103. Otherwise, no restart was delivered yet, so a potential
  1104. race exists; we return a 0 to the caller which must deal
  1105. with this race in an appropriate way; for example by
  1106. atomically removing the thread from consideration for a
  1107. wakeup---if such a thing fails, it means a restart is
  1108. being delivered. */
  1109. if (!was_signalled) {
  1110. if (atomic_increment(&self->p_resume_count) != -1) {
  1111. __pthread_wait_for_restart_signal(self);
  1112. atomic_decrement(&self->p_resume_count); /* should be zero now! */
  1113. /* woke spontaneously and consumed restart signal */
  1114. return 1;
  1115. }
  1116. /* woke spontaneously but did not consume restart---caller must resolve */
  1117. return 0;
  1118. }
  1119. /* woken due to restart signal */
  1120. return 1;
  1121. }
  1122. #endif /* __ASSUME_REALTIME_SIGNALS */
  1123. void __pthread_restart_new(pthread_descr th)
  1124. {
  1125. /* The barrier is proabably not needed, in which case it still documents
  1126. our assumptions. The intent is to commit previous writes to shared
  1127. memory so the woken thread will have a consistent view. Complementary
  1128. read barriers are present to the suspend functions. */
  1129. WRITE_MEMORY_BARRIER();
  1130. kill(th->p_pid, __pthread_sig_restart);
  1131. }
  1132. /* There is no __pthread_suspend_new because it would just
  1133. be a wasteful wrapper for __pthread_wait_for_restart_signal */
  1134. int
  1135. __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abstime)
  1136. {
  1137. sigset_t unblock, initial_mask;
  1138. int was_signalled = 0;
  1139. sigjmp_buf jmpbuf;
  1140. if (sigsetjmp(jmpbuf, 1) == 0) {
  1141. THREAD_SETMEM(self, p_signal_jmp, &jmpbuf);
  1142. THREAD_SETMEM(self, p_signal, 0);
  1143. /* Unblock the restart signal */
  1144. sigemptyset(&unblock);
  1145. sigaddset(&unblock, __pthread_sig_restart);
  1146. sigprocmask(SIG_UNBLOCK, &unblock, &initial_mask);
  1147. while (1) {
  1148. struct timeval now;
  1149. struct timespec reltime;
  1150. /* Compute a time offset relative to now. */
  1151. __gettimeofday (&now, NULL);
  1152. reltime.tv_nsec = abstime->tv_nsec - now.tv_usec * 1000;
  1153. reltime.tv_sec = abstime->tv_sec - now.tv_sec;
  1154. if (reltime.tv_nsec < 0) {
  1155. reltime.tv_nsec += 1000000000;
  1156. reltime.tv_sec -= 1;
  1157. }
  1158. /* Sleep for the required duration. If woken by a signal,
  1159. resume waiting as required by Single Unix Specification. */
  1160. if (reltime.tv_sec < 0 || __libc_nanosleep(&reltime, NULL) == 0)
  1161. break;
  1162. }
  1163. /* Block the restart signal again */
  1164. sigprocmask(SIG_SETMASK, &initial_mask, NULL);
  1165. was_signalled = 0;
  1166. } else {
  1167. was_signalled = 1;
  1168. }
  1169. THREAD_SETMEM(self, p_signal_jmp, NULL);
  1170. /* Now was_signalled is true if we exited the above code
  1171. due to the delivery of a restart signal. In that case,
  1172. everything is cool. We have been removed from whatever
  1173. we were waiting on by the other thread, and consumed its signal.
  1174. Otherwise we this thread woke up spontaneously, or due to a signal other
  1175. than restart. This is an ambiguous case that must be resolved by
  1176. the caller; the thread is still eligible for a restart wakeup
  1177. so there is a race. */
  1178. READ_MEMORY_BARRIER(); /* See comment in __pthread_restart_new */
  1179. return was_signalled;
  1180. }
  1181. /* Debugging aid */
  1182. #ifdef DEBUG
  1183. #include <stdarg.h>
  1184. void __pthread_message(const char * fmt, ...)
  1185. {
  1186. char buffer[1024];
  1187. va_list args;
  1188. sprintf(buffer, "%05d : ", __getpid());
  1189. va_start(args, fmt);
  1190. vsnprintf(buffer + 8, sizeof(buffer) - 8, fmt, args);
  1191. va_end(args);
  1192. TEMP_FAILURE_RETRY(write_not_cancel(2, buffer, strlen(buffer)));
  1193. }
  1194. #endif