pthread.c 44 KB

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