12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121 |
- #include <assert.h>
- #include <errno.h>
- #include <sched.h>
- #include <stddef.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <sys/poll.h> /* for poll */
- #include <sys/mman.h> /* for mmap */
- #include <sys/param.h>
- #include <sys/time.h>
- #include <sys/wait.h> /* for waitpid macros */
- #include <locale.h> /* for __uselocale */
- #include <resolv.h> /* for __resp */
- #include "pthread.h"
- #include "internals.h"
- #include "spinlock.h"
- #include "restart.h"
- #include "semaphore.h"
- #include <not-cancel.h>
- const int __linuxthreads_pthread_threads_max = PTHREAD_THREADS_MAX;
- #ifndef THREAD_SELF
- int __pthread_nonstandard_stacks;
- #endif
- __volatile__ int __pthread_handles_num = 2;
- __volatile__ int __pthread_threads_debug;
- __volatile__ td_thr_events_t __pthread_threads_events;
- __volatile__ pthread_descr __pthread_last_event;
- static pthread_descr manager_thread;
- #if FLOATING_STACKS
- # define thread_segment(seq) NULL
- #else
- static __inline__ pthread_descr thread_segment(int seg)
- {
- # ifdef _STACK_GROWS_UP
- return (pthread_descr)(THREAD_STACK_START_ADDRESS + (seg - 1) * STACK_SIZE)
- + 1;
- # else
- return (pthread_descr)(THREAD_STACK_START_ADDRESS - (seg - 1) * STACK_SIZE)
- - 1;
- # endif
- }
- #endif
- static __volatile__ int terminated_children;
- static int main_thread_exiting;
- static pthread_t pthread_threads_counter;
- static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
- void * (*start_routine)(void *), void *arg,
- sigset_t *mask, int father_pid,
- int report_events,
- td_thr_events_t *event_maskp);
- static void pthread_handle_free(pthread_t th_id);
- static void pthread_handle_exit(pthread_descr issuing_thread, int exitcode)
- __attribute__ ((noreturn));
- static void pthread_reap_children(void);
- static void pthread_kill_all_threads(int sig, int main_thread_also);
- static void pthread_for_each_thread(void *arg,
- void (*fn)(void *, pthread_descr));
- int
- __attribute__ ((noreturn))
- __pthread_manager(void *arg)
- {
- pthread_descr self = manager_thread = arg;
- int reqfd = __pthread_manager_reader;
- struct pollfd ufd;
- sigset_t manager_mask;
- int n;
- struct pthread_request request;
-
- #ifdef INIT_THREAD_SELF
- INIT_THREAD_SELF(self, 1);
- #endif
- #if !(USE_TLS && HAVE___THREAD)
-
- self->p_errnop = &self->p_errno;
- self->p_h_errnop = &self->p_h_errno;
- #endif
-
- sigfillset(&manager_mask);
- sigdelset(&manager_mask, __pthread_sig_cancel);
- sigdelset(&manager_mask, SIGTRAP);
- if (__pthread_threads_debug && __pthread_sig_debug > 0)
- sigdelset(&manager_mask, __pthread_sig_debug);
- sigprocmask(SIG_SETMASK, &manager_mask, NULL);
-
- __pthread_manager_adjust_prio(__pthread_main_thread->p_priority);
-
- n = TEMP_FAILURE_RETRY(read_not_cancel(reqfd, (char *)&request,
- sizeof(request)));
- ASSERT(n == sizeof(request) && request.req_kind == REQ_DEBUG);
- ufd.fd = reqfd;
- ufd.events = POLLIN;
-
- while(1) {
- n = __poll(&ufd, 1, 2000);
-
- if (getppid() == 1) {
- pthread_kill_all_threads(SIGKILL, 0);
- _exit(0);
- }
-
- if (terminated_children) {
- terminated_children = 0;
- pthread_reap_children();
- }
-
- if (n == 1 && (ufd.revents & POLLIN)) {
- n = TEMP_FAILURE_RETRY(read_not_cancel(reqfd, (char *)&request,
- sizeof(request)));
- #ifdef DEBUG
- if (n < 0) {
- char d[64];
- write(STDERR_FILENO, d, snprintf(d, sizeof(d), "*** read err %m\n"));
- } else if (n != sizeof(request)) {
- write(STDERR_FILENO, "*** short read in manager\n", 26);
- }
- #endif
- switch(request.req_kind) {
- case REQ_CREATE:
- request.req_thread->p_retcode =
- pthread_handle_create((pthread_t *) &request.req_thread->p_retval,
- request.req_args.create.attr,
- request.req_args.create.fn,
- request.req_args.create.arg,
- &request.req_args.create.mask,
- request.req_thread->p_pid,
- request.req_thread->p_report_events,
- &request.req_thread->p_eventbuf.eventmask);
- restart(request.req_thread);
- break;
- case REQ_FREE:
- pthread_handle_free(request.req_args.free.thread_id);
- break;
- case REQ_PROCESS_EXIT:
- pthread_handle_exit(request.req_thread,
- request.req_args.exit.code);
-
- break;
- case REQ_MAIN_THREAD_EXIT:
- main_thread_exiting = 1;
-
- pthread_reap_children();
- if (__pthread_main_thread->p_nextlive == __pthread_main_thread) {
- restart(__pthread_main_thread);
-
- }
- break;
- case REQ_POST:
- sem_post(request.req_args.post);
- break;
- case REQ_DEBUG:
-
- if (__pthread_threads_debug && __pthread_sig_debug > 0)
- raise(__pthread_sig_debug);
- break;
- case REQ_KICK:
-
- break;
- case REQ_FOR_EACH_THREAD:
- pthread_for_each_thread(request.req_args.for_each.arg,
- request.req_args.for_each.fn);
- restart(request.req_thread);
- break;
- }
- }
- }
- }
- int __pthread_manager_event(void *arg)
- {
- pthread_descr self = arg;
-
- #ifdef INIT_THREAD_SELF
- INIT_THREAD_SELF(self, 1);
- #endif
-
- __pthread_lock (THREAD_GETMEM(self, p_lock), NULL);
-
- __pthread_unlock (THREAD_GETMEM(self, p_lock));
- return __pthread_manager(arg);
- }
- static int
- __attribute__ ((noreturn))
- pthread_start_thread(void *arg)
- {
- pthread_descr self = (pthread_descr) arg;
- struct pthread_request request;
- void * outcome;
- #if HP_TIMING_AVAIL
- hp_timing_t tmpclock;
- #endif
-
- #ifdef INIT_THREAD_SELF
- INIT_THREAD_SELF(self, self->p_nr);
- #endif
- #if HP_TIMING_AVAIL
- HP_TIMING_NOW (tmpclock);
- THREAD_SETMEM (self, p_cpuclock_offset, tmpclock);
- #endif
-
- THREAD_SETMEM(self, p_pid, __getpid());
-
- sigprocmask(SIG_SETMASK, &self->p_start_args.mask, NULL);
-
- if (THREAD_GETMEM(self, p_start_args.schedpolicy) >= 0)
-
- __sched_setscheduler(THREAD_GETMEM(self, p_pid),
- THREAD_GETMEM(self, p_start_args.schedpolicy),
- &self->p_start_args.schedparam);
- else if (manager_thread->p_priority > 0)
-
- {
- struct sched_param default_params;
- default_params.sched_priority = 0;
- __sched_setscheduler(THREAD_GETMEM(self, p_pid),
- SCHED_OTHER, &default_params);
- }
- #if !(USE_TLS && HAVE___THREAD)
-
- __uselocale (LC_GLOBAL_LOCALE);
- #else
-
- __resp = &self->p_res;
- #endif
-
- if (__pthread_threads_debug && __pthread_sig_debug > 0) {
- request.req_thread = self;
- request.req_kind = REQ_DEBUG;
- TEMP_FAILURE_RETRY(write_not_cancel(__pthread_manager_request,
- (char *) &request, sizeof(request)));
- suspend(self);
- }
-
- outcome = self->p_start_args.start_routine(THREAD_GETMEM(self,
- p_start_args.arg));
-
- __pthread_do_exit(outcome, CURRENT_STACK_FRAME);
- }
- static int
- __attribute__ ((noreturn))
- pthread_start_thread_event(void *arg)
- {
- pthread_descr self = (pthread_descr) arg;
- #ifdef INIT_THREAD_SELF
- INIT_THREAD_SELF(self, self->p_nr);
- #endif
-
- THREAD_SETMEM(self, p_pid, __getpid());
-
- __pthread_lock (THREAD_GETMEM(self, p_lock), NULL);
-
- __pthread_unlock (THREAD_GETMEM(self, p_lock));
-
- pthread_start_thread (arg);
- }
- #if defined USE_TLS && !FLOATING_STACKS
- # error "TLS can only work with floating stacks"
- #endif
- static int pthread_allocate_stack(const pthread_attr_t *attr,
- pthread_descr default_new_thread,
- int pagesize,
- char ** out_new_thread,
- char ** out_new_thread_bottom,
- char ** out_guardaddr,
- size_t * out_guardsize,
- size_t * out_stacksize)
- {
- pthread_descr new_thread;
- char * new_thread_bottom;
- char * guardaddr;
- size_t stacksize, guardsize;
- #ifdef USE_TLS
-
- assert (default_new_thread == NULL);
- #endif
- if (attr != NULL && attr->__stackaddr_set)
- {
- #ifdef _STACK_GROWS_UP
-
- # ifdef USE_TLS
-
- new_thread = (pthread_descr) attr->__stackaddr;
- new_thread_bottom = (char *) new_thread;
- # else
- new_thread = (pthread_descr) attr->__stackaddr;
- new_thread_bottom = (char *) (new_thread + 1);
- # endif
- guardaddr = attr->__stackaddr + attr->__stacksize;
- guardsize = 0;
- #else
-
- # ifdef USE_TLS
- new_thread = (pthread_descr) attr->__stackaddr;
- # else
- new_thread =
- (pthread_descr) ((long)(attr->__stackaddr) & -sizeof(void *)) - 1;
- # endif
- new_thread_bottom = (char *) attr->__stackaddr - attr->__stacksize;
- guardaddr = new_thread_bottom;
- guardsize = 0;
- #endif
- #ifndef THREAD_SELF
- __pthread_nonstandard_stacks = 1;
- #endif
- #ifndef USE_TLS
-
- memset (new_thread, '\0', sizeof (*new_thread));
- #endif
- stacksize = attr->__stacksize;
- }
- else
- {
- #ifdef NEED_SEPARATE_REGISTER_STACK
- const size_t granularity = 2 * pagesize;
-
- #else
- const size_t granularity = pagesize;
- #endif
- void *map_addr;
-
- #if FLOATING_STACKS
- if (attr != NULL)
- {
- guardsize = page_roundup (attr->__guardsize, granularity);
- stacksize = __pthread_max_stacksize - guardsize;
- stacksize = MIN (stacksize,
- page_roundup (attr->__stacksize, granularity));
- }
- else
- {
- guardsize = granularity;
- stacksize = __pthread_max_stacksize - guardsize;
- }
- map_addr = mmap(NULL, stacksize + guardsize,
- PROT_READ | PROT_WRITE | PROT_EXEC,
- MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
- if (map_addr == MAP_FAILED)
-
- return -1;
- # ifdef NEED_SEPARATE_REGISTER_STACK
- guardaddr = map_addr + stacksize / 2;
- if (guardsize > 0)
- mprotect (guardaddr, guardsize, PROT_NONE);
- new_thread_bottom = (char *) map_addr;
- # ifdef USE_TLS
- new_thread = ((pthread_descr) (new_thread_bottom + stacksize
- + guardsize));
- # else
- new_thread = ((pthread_descr) (new_thread_bottom + stacksize
- + guardsize)) - 1;
- # endif
- # elif _STACK_GROWS_DOWN
- guardaddr = map_addr;
- if (guardsize > 0)
- mprotect (guardaddr, guardsize, PROT_NONE);
- new_thread_bottom = (char *) map_addr + guardsize;
- # ifdef USE_TLS
- new_thread = ((pthread_descr) (new_thread_bottom + stacksize));
- # else
- new_thread = ((pthread_descr) (new_thread_bottom + stacksize)) - 1;
- # endif
- # elif _STACK_GROWS_UP
- guardaddr = map_addr + stacksize;
- if (guardsize > 0)
- mprotect (guardaddr, guardsize, PROT_NONE);
- new_thread = (pthread_descr) map_addr;
- # ifdef USE_TLS
- new_thread_bottom = (char *) new_thread;
- # else
- new_thread_bottom = (char *) (new_thread + 1);
- # endif
- # else
- # error You must define a stack direction
- # endif
- #else
- # if !defined NEED_SEPARATE_REGISTER_STACK && defined _STACK_GROWS_DOWN
- void *res_addr;
- # endif
- if (attr != NULL)
- {
- guardsize = page_roundup (attr->__guardsize, granularity);
- stacksize = STACK_SIZE - guardsize;
- stacksize = MIN (stacksize,
- page_roundup (attr->__stacksize, granularity));
- }
- else
- {
- guardsize = granularity;
- stacksize = STACK_SIZE - granularity;
- }
- # ifdef NEED_SEPARATE_REGISTER_STACK
- new_thread = default_new_thread;
- new_thread_bottom = (char *) (new_thread + 1) - stacksize - guardsize;
-
-
- map_addr = (caddr_t)((char *)(new_thread + 1) - stacksize / 2);
- res_addr = mmap(map_addr, stacksize / 2,
- PROT_READ | PROT_WRITE | PROT_EXEC,
- MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
- if (res_addr != map_addr)
- {
-
- if (res_addr != MAP_FAILED)
- munmap(res_addr, stacksize / 2);
- return -1;
- }
-
- map_addr = (caddr_t)new_thread_bottom;
- res_addr = mmap(map_addr, stacksize/2,
- PROT_READ | PROT_WRITE | PROT_EXEC,
- MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
- if (res_addr != map_addr)
- {
- if (res_addr != MAP_FAILED)
- munmap(res_addr, stacksize / 2);
- munmap((caddr_t)((char *)(new_thread + 1) - stacksize/2),
- stacksize/2);
- return -1;
- }
- guardaddr = new_thread_bottom + stacksize/2;
-
- # else
- # ifdef _STACK_GROWS_DOWN
- new_thread = default_new_thread;
- new_thread_bottom = (char *) (new_thread + 1) - stacksize;
- map_addr = new_thread_bottom - guardsize;
- res_addr = mmap(map_addr, stacksize + guardsize,
- PROT_READ | PROT_WRITE | PROT_EXEC,
- MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
- if (res_addr != map_addr)
- {
-
- if (res_addr != MAP_FAILED)
- munmap (res_addr, stacksize + guardsize);
- return -1;
- }
-
- guardaddr = map_addr;
- if (guardsize > 0)
- mprotect (guardaddr, guardsize, PROT_NONE);
- # else
-
- new_thread = (pthread_descr)((unsigned long)default_new_thread &~ (STACK_SIZE - 1));
- map_addr = mmap(new_thread, stacksize + guardsize,
- PROT_READ | PROT_WRITE | PROT_EXEC,
- MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
- if (map_addr == MAP_FAILED)
- return -1;
- new_thread_bottom = map_addr + sizeof(*new_thread);
- guardaddr = map_addr + stacksize;
- if (guardsize > 0)
- mprotect (guardaddr, guardsize, PROT_NONE);
- # endif
- # endif
- #endif
- }
- *out_new_thread = (char *) new_thread;
- *out_new_thread_bottom = new_thread_bottom;
- *out_guardaddr = guardaddr;
- *out_guardsize = guardsize;
- #ifdef NEED_SEPARATE_REGISTER_STACK
- *out_stacksize = stacksize / 2;
- #else
- *out_stacksize = stacksize;
- #endif
- return 0;
- }
- static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
- void * (*start_routine)(void *), void *arg,
- sigset_t * mask, int father_pid,
- int report_events,
- td_thr_events_t *event_maskp)
- {
- size_t sseg;
- int pid;
- pthread_descr new_thread;
- char *stack_addr;
- char * new_thread_bottom;
- pthread_t new_thread_id;
- char *guardaddr = NULL;
- size_t guardsize = 0, stksize = 0;
- int pagesize = __getpagesize();
- int saved_errno = 0;
- #ifdef USE_TLS
- new_thread = _dl_allocate_tls (NULL);
- if (new_thread == NULL)
- return EAGAIN;
- # if TLS_DTV_AT_TP
-
- new_thread = (pthread_descr) ((char *) new_thread - TLS_PRE_TCB_SIZE);
- # endif
- #else
-
- new_thread = NULL;
- #endif
-
- if (attr != NULL && attr->__schedpolicy != SCHED_OTHER && geteuid () != 0)
- return EPERM;
-
- for (sseg = 2; ; sseg++)
- {
- if (sseg >= PTHREAD_THREADS_MAX)
- {
- #ifdef USE_TLS
- # if TLS_DTV_AT_TP
- new_thread = (pthread_descr) ((char *) new_thread + TLS_PRE_TCB_SIZE);
- # endif
- _dl_deallocate_tls (new_thread, true);
- #endif
- return EAGAIN;
- }
- if (__pthread_handles[sseg].h_descr != NULL)
- continue;
- if (pthread_allocate_stack(attr, thread_segment(sseg),
- pagesize, &stack_addr, &new_thread_bottom,
- &guardaddr, &guardsize, &stksize) == 0)
- {
- #ifdef USE_TLS
- new_thread->p_stackaddr = stack_addr;
- #else
- new_thread = (pthread_descr) stack_addr;
- #endif
- break;
- #ifndef __ARCH_USE_MMU__
- } else {
-
- return EAGAIN;
- #endif
- }
- }
- __pthread_handles_num++;
-
- pthread_threads_counter += PTHREAD_THREADS_MAX;
- new_thread_id = sseg + pthread_threads_counter;
-
- #if !defined USE_TLS || !TLS_DTV_AT_TP
- new_thread->p_header.data.tcb = new_thread;
- new_thread->p_header.data.self = new_thread;
- #endif
- #if TLS_MULTIPLE_THREADS_IN_TCB || !defined USE_TLS || !TLS_DTV_AT_TP
- new_thread->p_multiple_threads = 1;
- #endif
- new_thread->p_tid = new_thread_id;
- new_thread->p_lock = &(__pthread_handles[sseg].h_lock);
- new_thread->p_cancelstate = PTHREAD_CANCEL_ENABLE;
- new_thread->p_canceltype = PTHREAD_CANCEL_DEFERRED;
- #if !(USE_TLS && HAVE___THREAD)
- new_thread->p_errnop = &new_thread->p_errno;
- new_thread->p_h_errnop = &new_thread->p_h_errno;
- new_thread->p_resp = &new_thread->p_res;
- #endif
- new_thread->p_guardaddr = guardaddr;
- new_thread->p_guardsize = guardsize;
- new_thread->p_nr = sseg;
- new_thread->p_inheritsched = attr ? attr->__inheritsched : 0;
- new_thread->p_alloca_cutoff = stksize / 4 > __MAX_ALLOCA_CUTOFF
- ? __MAX_ALLOCA_CUTOFF : stksize / 4;
-
- __pthread_init_lock(&__pthread_handles[sseg].h_lock);
- __pthread_handles[sseg].h_descr = new_thread;
- __pthread_handles[sseg].h_bottom = new_thread_bottom;
-
- new_thread->p_start_args.schedpolicy = -1;
- if (attr != NULL) {
- new_thread->p_detached = attr->__detachstate;
- new_thread->p_userstack = attr->__stackaddr_set;
- switch(attr->__inheritsched) {
- case PTHREAD_EXPLICIT_SCHED:
- new_thread->p_start_args.schedpolicy = attr->__schedpolicy;
- memcpy (&new_thread->p_start_args.schedparam, &attr->__schedparam,
- sizeof (struct sched_param));
- break;
- case PTHREAD_INHERIT_SCHED:
- new_thread->p_start_args.schedpolicy = __sched_getscheduler(father_pid);
- __sched_getparam(father_pid, &new_thread->p_start_args.schedparam);
- break;
- }
- new_thread->p_priority =
- new_thread->p_start_args.schedparam.sched_priority;
- }
-
- new_thread->p_start_args.start_routine = start_routine;
- new_thread->p_start_args.arg = arg;
- new_thread->p_start_args.mask = *mask;
-
- *thread = new_thread_id;
-
- __pthread_manager_adjust_prio(new_thread->p_priority);
-
- pid = 0;
- if (report_events)
- {
-
- int idx = __td_eventword (TD_CREATE);
- uint32_t mask = __td_eventmask (TD_CREATE);
- if ((mask & (__pthread_threads_events.event_bits[idx]
- | event_maskp->event_bits[idx])) != 0)
- {
-
- __pthread_lock(new_thread->p_lock, NULL);
-
- #ifdef NEED_SEPARATE_REGISTER_STACK
-
- pid = __clone2(pthread_start_thread_event,
- (void **)new_thread_bottom,
- (char *)stack_addr - new_thread_bottom,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #elif _STACK_GROWS_UP
- pid = __clone(pthread_start_thread_event, (void *) new_thread_bottom,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #else
- pid = __clone(pthread_start_thread_event, stack_addr,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #endif
- saved_errno = errno;
- if (pid != -1)
- {
-
- new_thread->p_eventbuf.eventdata = new_thread;
- new_thread->p_eventbuf.eventnum = TD_CREATE;
- __pthread_last_event = new_thread;
-
- new_thread->p_pid = pid;
-
- __linuxthreads_create_event ();
-
- __pthread_unlock(new_thread->p_lock);
- }
- }
- }
- if (pid == 0)
- {
- #ifdef NEED_SEPARATE_REGISTER_STACK
- pid = __clone2(pthread_start_thread,
- (void **)new_thread_bottom,
- (char *)stack_addr - new_thread_bottom,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #elif _STACK_GROWS_UP
- pid = __clone(pthread_start_thread, (void *) new_thread_bottom,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #else
- pid = __clone(pthread_start_thread, stack_addr,
- CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND |
- __pthread_sig_cancel, new_thread);
- #endif
- saved_errno = errno;
- }
-
- if (pid == -1) {
-
- if (attr == NULL || !attr->__stackaddr_set)
- {
- #ifdef NEED_SEPARATE_REGISTER_STACK
- size_t stacksize = ((char *)(new_thread->p_guardaddr)
- - new_thread_bottom);
- munmap((caddr_t)new_thread_bottom,
- 2 * stacksize + new_thread->p_guardsize);
- #elif _STACK_GROWS_UP
- # ifdef USE_TLS
- size_t stacksize = guardaddr - stack_addr;
- munmap(stack_addr, stacksize + guardsize);
- # else
- size_t stacksize = guardaddr - (char *)new_thread;
- munmap(new_thread, stacksize + guardsize);
- # endif
- #else
- # ifdef USE_TLS
- size_t stacksize = stack_addr - new_thread_bottom;
- # else
- size_t stacksize = (char *)(new_thread+1) - new_thread_bottom;
- # endif
- munmap(new_thread_bottom - guardsize, guardsize + stacksize);
- #endif
- }
- #ifdef USE_TLS
- # if TLS_DTV_AT_TP
- new_thread = (pthread_descr) ((char *) new_thread + TLS_PRE_TCB_SIZE);
- # endif
- _dl_deallocate_tls (new_thread, true);
- #endif
- __pthread_handles[sseg].h_descr = NULL;
- __pthread_handles[sseg].h_bottom = NULL;
- __pthread_handles_num--;
- return saved_errno;
- }
-
- new_thread->p_prevlive = __pthread_main_thread;
- new_thread->p_nextlive = __pthread_main_thread->p_nextlive;
- __pthread_main_thread->p_nextlive->p_prevlive = new_thread;
- __pthread_main_thread->p_nextlive = new_thread;
-
- new_thread->p_pid = pid;
- return 0;
- }
- static void pthread_free(pthread_descr th)
- {
- pthread_handle handle;
- pthread_readlock_info *iter, *next;
- ASSERT(th->p_exited);
-
- handle = thread_handle(th->p_tid);
- __pthread_lock(&handle->h_lock, NULL);
- handle->h_descr = NULL;
- handle->h_bottom = (char *)(-1L);
- __pthread_unlock(&handle->h_lock);
- #ifdef FREE_THREAD
- FREE_THREAD(th, th->p_nr);
- #endif
-
- __pthread_handles_num--;
-
- for (iter = th->p_readlock_list; iter != NULL; iter = next)
- {
- next = iter->pr_next;
- free(iter);
- }
- for (iter = th->p_readlock_free; iter != NULL; iter = next)
- {
- next = iter->pr_next;
- free(iter);
- }
-
- if (!th->p_userstack)
- {
- size_t guardsize = th->p_guardsize;
-
- char *guardaddr = th->p_guardaddr;
- #ifdef _STACK_GROWS_UP
- # ifdef USE_TLS
- size_t stacksize = guardaddr - th->p_stackaddr;
- # else
- size_t stacksize = guardaddr - (char *)th;
- # endif
- guardaddr = (char *)th;
- #else
-
- # ifdef USE_TLS
- size_t stacksize = th->p_stackaddr - guardaddr - guardsize;
- # else
- size_t stacksize = (char *)(th+1) - guardaddr - guardsize;
- # endif
- # ifdef NEED_SEPARATE_REGISTER_STACK
-
- guardaddr -= stacksize;
- stacksize *= 2;
- # endif
- #endif
-
- munmap(guardaddr, stacksize + guardsize);
- }
- #ifdef USE_TLS
- # if TLS_DTV_AT_TP
- th = (pthread_descr) ((char *) th + TLS_PRE_TCB_SIZE);
- # endif
- _dl_deallocate_tls (th, true);
- #endif
- }
- static void pthread_exited(pid_t pid)
- {
- pthread_descr th;
- int detached;
-
- for (th = __pthread_main_thread->p_nextlive;
- th != __pthread_main_thread;
- th = th->p_nextlive) {
- if (th->p_pid == pid) {
-
- th->p_nextlive->p_prevlive = th->p_prevlive;
- th->p_prevlive->p_nextlive = th->p_nextlive;
-
- __pthread_lock(th->p_lock, NULL);
- th->p_exited = 1;
-
- if (th->p_report_events)
- {
-
- int idx = __td_eventword (TD_REAP);
- uint32_t mask = __td_eventmask (TD_REAP);
- if ((mask & (__pthread_threads_events.event_bits[idx]
- | th->p_eventbuf.eventmask.event_bits[idx])) != 0)
- {
-
- th->p_eventbuf.eventnum = TD_REAP;
- th->p_eventbuf.eventdata = th;
- __pthread_last_event = th;
-
- __linuxthreads_reap_event();
- }
- }
- detached = th->p_detached;
- __pthread_unlock(th->p_lock);
- if (detached)
- pthread_free(th);
- break;
- }
- }
-
- if (main_thread_exiting &&
- __pthread_main_thread->p_nextlive == __pthread_main_thread) {
- restart(__pthread_main_thread);
-
- }
- }
- static void pthread_reap_children(void)
- {
- pid_t pid;
- int status;
- while ((pid = waitpid_not_cancel(-1, &status, WNOHANG | __WCLONE)) > 0) {
- pthread_exited(pid);
- if (WIFSIGNALED(status)) {
-
- pthread_kill_all_threads(WTERMSIG(status), 1);
- _exit(0);
- }
- }
- }
- static void pthread_handle_free(pthread_t th_id)
- {
- pthread_handle handle = thread_handle(th_id);
- pthread_descr th;
- __pthread_lock(&handle->h_lock, NULL);
- if (nonexisting_handle(handle, th_id)) {
-
- __pthread_unlock(&handle->h_lock);
- return;
- }
- th = handle->h_descr;
- if (th->p_exited) {
- __pthread_unlock(&handle->h_lock);
- pthread_free(th);
- } else {
-
- th->p_detached = 1;
- __pthread_unlock(&handle->h_lock);
- }
- }
- static void pthread_kill_all_threads(int sig, int main_thread_also)
- {
- pthread_descr th;
- for (th = __pthread_main_thread->p_nextlive;
- th != __pthread_main_thread;
- th = th->p_nextlive) {
- kill(th->p_pid, sig);
- }
- if (main_thread_also) {
- kill(__pthread_main_thread->p_pid, sig);
- }
- }
- static void pthread_for_each_thread(void *arg,
- void (*fn)(void *, pthread_descr))
- {
- pthread_descr th;
- for (th = __pthread_main_thread->p_nextlive;
- th != __pthread_main_thread;
- th = th->p_nextlive) {
- fn(arg, th);
- }
- fn(arg, __pthread_main_thread);
- }
- static void pthread_handle_exit(pthread_descr issuing_thread, int exitcode)
- {
- pthread_descr th;
- __pthread_exit_requested = 1;
- __pthread_exit_code = exitcode;
-
- __flockfilelist();
-
- for (th = issuing_thread->p_nextlive;
- th != issuing_thread;
- th = th->p_nextlive) {
- kill(th->p_pid, __pthread_sig_cancel);
- }
-
- for (th = issuing_thread->p_nextlive;
- th != issuing_thread;
- th = th->p_nextlive) {
- waitpid(th->p_pid, NULL, __WCLONE);
- }
- __fresetlockfiles();
- restart(issuing_thread);
- _exit(0);
- }
- void __pthread_manager_sighandler(int sig)
- {
- int kick_manager = terminated_children == 0 && main_thread_exiting;
- terminated_children = 1;
-
- if (kick_manager) {
- struct pthread_request request;
- request.req_thread = 0;
- request.req_kind = REQ_KICK;
- TEMP_FAILURE_RETRY(write_not_cancel(__pthread_manager_request,
- (char *) &request, sizeof(request)));
- }
- }
- void __pthread_manager_adjust_prio(int thread_prio)
- {
- struct sched_param param;
- if (thread_prio <= manager_thread->p_priority) return;
- param.sched_priority =
- thread_prio < __sched_get_priority_max(SCHED_FIFO)
- ? thread_prio + 1 : thread_prio;
- __sched_setscheduler(manager_thread->p_pid, SCHED_FIFO, ¶m);
- manager_thread->p_priority = thread_prio;
- }
|