2.9
[glibc/nacl-glibc.git] / nptl / allocatestack.c
blob9ab4d6281c7450ba26b933d807773b88d390c36c
1 /* Copyright (C) 2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <assert.h>
21 #include <errno.h>
22 #include <signal.h>
23 #include <stdint.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/mman.h>
27 #include <sys/param.h>
28 #include <dl-sysdep.h>
29 #include <tls.h>
30 #include <lowlevellock.h>
31 #include <kernel-features.h>
34 #ifndef NEED_SEPARATE_REGISTER_STACK
36 /* Most architectures have exactly one stack pointer. Some have more. */
37 # define STACK_VARIABLES void *stackaddr = NULL
39 /* How to pass the values to the 'create_thread' function. */
40 # define STACK_VARIABLES_ARGS stackaddr
42 /* How to declare function which gets there parameters. */
43 # define STACK_VARIABLES_PARMS void *stackaddr
45 /* How to declare allocate_stack. */
46 # define ALLOCATE_STACK_PARMS void **stack
48 /* This is how the function is called. We do it this way to allow
49 other variants of the function to have more parameters. */
50 # define ALLOCATE_STACK(attr, pd) allocate_stack (attr, pd, &stackaddr)
52 #else
54 /* We need two stacks. The kernel will place them but we have to tell
55 the kernel about the size of the reserved address space. */
56 # define STACK_VARIABLES void *stackaddr = NULL; size_t stacksize = 0
58 /* How to pass the values to the 'create_thread' function. */
59 # define STACK_VARIABLES_ARGS stackaddr, stacksize
61 /* How to declare function which gets there parameters. */
62 # define STACK_VARIABLES_PARMS void *stackaddr, size_t stacksize
64 /* How to declare allocate_stack. */
65 # define ALLOCATE_STACK_PARMS void **stack, size_t *stacksize
67 /* This is how the function is called. We do it this way to allow
68 other variants of the function to have more parameters. */
69 # define ALLOCATE_STACK(attr, pd) \
70 allocate_stack (attr, pd, &stackaddr, &stacksize)
72 #endif
75 /* Default alignment of stack. */
76 #ifndef STACK_ALIGN
77 # define STACK_ALIGN __alignof__ (long double)
78 #endif
80 /* Default value for minimal stack size after allocating thread
81 descriptor and guard. */
82 #ifndef MINIMAL_REST_STACK
83 # define MINIMAL_REST_STACK 4096
84 #endif
87 /* Newer kernels have the MAP_STACK flag to indicate a mapping is used for
88 a stack. Use it when possible. */
89 #ifndef MAP_STACK
90 # define MAP_STACK 0
91 #endif
93 /* This yields the pointer that TLS support code calls the thread pointer. */
94 #if TLS_TCB_AT_TP
95 # define TLS_TPADJ(pd) (pd)
96 #elif TLS_DTV_AT_TP
97 # define TLS_TPADJ(pd) ((struct pthread *)((char *) (pd) + TLS_PRE_TCB_SIZE))
98 #endif
100 /* Cache handling for not-yet free stacks. */
102 /* Maximum size in kB of cache. */
103 static size_t stack_cache_maxsize = 40 * 1024 * 1024; /* 40MiBi by default. */
104 static size_t stack_cache_actsize;
106 /* Mutex protecting this variable. */
107 static int stack_cache_lock = LLL_LOCK_INITIALIZER;
109 /* List of queued stack frames. */
110 static LIST_HEAD (stack_cache);
112 /* List of the stacks in use. */
113 static LIST_HEAD (stack_used);
115 /* List of the threads with user provided stacks in use. No need to
116 initialize this, since it's done in __pthread_initialize_minimal. */
117 list_t __stack_user __attribute__ ((nocommon));
118 hidden_data_def (__stack_user)
120 #if COLORING_INCREMENT != 0
121 /* Number of threads created. */
122 static unsigned int nptl_ncreated;
123 #endif
126 /* Check whether the stack is still used or not. */
127 #define FREE_P(descr) ((descr)->tid <= 0)
130 /* We create a double linked list of all cache entries. Double linked
131 because this allows removing entries from the end. */
134 /* Get a stack frame from the cache. We have to match by size since
135 some blocks might be too small or far too large. */
136 static struct pthread *
137 get_cached_stack (size_t *sizep, void **memp)
139 size_t size = *sizep;
140 struct pthread *result = NULL;
141 list_t *entry;
143 lll_lock (stack_cache_lock, LLL_PRIVATE);
145 /* Search the cache for a matching entry. We search for the
146 smallest stack which has at least the required size. Note that
147 in normal situations the size of all allocated stacks is the
148 same. As the very least there are only a few different sizes.
149 Therefore this loop will exit early most of the time with an
150 exact match. */
151 list_for_each (entry, &stack_cache)
153 struct pthread *curr;
155 curr = list_entry (entry, struct pthread, list);
156 if (FREE_P (curr) && curr->stackblock_size >= size)
158 if (curr->stackblock_size == size)
160 result = curr;
161 break;
164 if (result == NULL
165 || result->stackblock_size > curr->stackblock_size)
166 result = curr;
170 if (__builtin_expect (result == NULL, 0)
171 /* Make sure the size difference is not too excessive. In that
172 case we do not use the block. */
173 || __builtin_expect (result->stackblock_size > 4 * size, 0))
175 /* Release the lock. */
176 lll_unlock (stack_cache_lock, LLL_PRIVATE);
178 return NULL;
181 /* Dequeue the entry. */
182 list_del (&result->list);
184 /* And add to the list of stacks in use. */
185 list_add (&result->list, &stack_used);
187 /* And decrease the cache size. */
188 stack_cache_actsize -= result->stackblock_size;
190 /* Release the lock early. */
191 lll_unlock (stack_cache_lock, LLL_PRIVATE);
193 /* Report size and location of the stack to the caller. */
194 *sizep = result->stackblock_size;
195 *memp = result->stackblock;
197 /* Cancellation handling is back to the default. */
198 result->cancelhandling = 0;
199 result->cleanup = NULL;
201 /* No pending event. */
202 result->nextevent = NULL;
204 /* Clear the DTV. */
205 dtv_t *dtv = GET_DTV (TLS_TPADJ (result));
206 memset (dtv, '\0', (dtv[-1].counter + 1) * sizeof (dtv_t));
208 /* Re-initialize the TLS. */
209 _dl_allocate_tls_init (TLS_TPADJ (result));
211 return result;
215 /* Free stacks until cache size is lower than LIMIT. */
216 static void
217 free_stacks (size_t limit)
219 /* We reduce the size of the cache. Remove the last entries until
220 the size is below the limit. */
221 list_t *entry;
222 list_t *prev;
224 /* Search from the end of the list. */
225 list_for_each_prev_safe (entry, prev, &stack_cache)
227 struct pthread *curr;
229 curr = list_entry (entry, struct pthread, list);
230 if (FREE_P (curr))
232 /* Unlink the block. */
233 list_del (entry);
235 /* Account for the freed memory. */
236 stack_cache_actsize -= curr->stackblock_size;
238 /* Free the memory associated with the ELF TLS. */
239 _dl_deallocate_tls (TLS_TPADJ (curr), false);
241 /* Remove this block. This should never fail. If it does
242 something is really wrong. */
243 if (munmap (curr->stackblock, curr->stackblock_size) != 0)
244 abort ();
246 /* Maybe we have freed enough. */
247 if (stack_cache_actsize <= limit)
248 break;
254 /* Add a stack frame which is not used anymore to the stack. Must be
255 called with the cache lock held. */
256 static inline void
257 __attribute ((always_inline))
258 queue_stack (struct pthread *stack)
260 /* We unconditionally add the stack to the list. The memory may
261 still be in use but it will not be reused until the kernel marks
262 the stack as not used anymore. */
263 list_add (&stack->list, &stack_cache);
265 stack_cache_actsize += stack->stackblock_size;
266 if (__builtin_expect (stack_cache_actsize > stack_cache_maxsize, 0))
267 free_stacks (stack_cache_maxsize);
271 /* This function is called indirectly from the freeres code in libc. */
272 void
273 __free_stack_cache (void)
275 free_stacks (0);
279 static int
280 internal_function
281 change_stack_perm (struct pthread *pd
282 #ifdef NEED_SEPARATE_REGISTER_STACK
283 , size_t pagemask
284 #endif
287 #ifdef NEED_SEPARATE_REGISTER_STACK
288 void *stack = (pd->stackblock
289 + (((((pd->stackblock_size - pd->guardsize) / 2)
290 & pagemask) + pd->guardsize) & pagemask));
291 size_t len = pd->stackblock + pd->stackblock_size - stack;
292 #elif _STACK_GROWS_DOWN
293 void *stack = pd->stackblock + pd->guardsize;
294 size_t len = pd->stackblock_size - pd->guardsize;
295 #elif _STACK_GROWS_UP
296 void *stack = pd->stackblock;
297 size_t len = (uintptr_t) pd - pd->guardsize - (uintptr_t) pd->stackblock;
298 #else
299 # error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP"
300 #endif
301 if (mprotect (stack, len, PROT_READ | PROT_WRITE | PROT_EXEC) != 0)
302 return errno;
304 return 0;
308 static int
309 allocate_stack (const struct pthread_attr *attr, struct pthread **pdp,
310 ALLOCATE_STACK_PARMS)
312 struct pthread *pd;
313 size_t size;
314 size_t pagesize_m1 = __getpagesize () - 1;
315 void *stacktop;
317 assert (attr != NULL);
318 assert (powerof2 (pagesize_m1 + 1));
319 assert (TCB_ALIGNMENT >= STACK_ALIGN);
321 /* Get the stack size from the attribute if it is set. Otherwise we
322 use the default we determined at start time. */
323 size = attr->stacksize ?: __default_stacksize;
325 /* Get memory for the stack. */
326 if (__builtin_expect (attr->flags & ATTR_FLAG_STACKADDR, 0))
328 uintptr_t adj;
330 /* If the user also specified the size of the stack make sure it
331 is large enough. */
332 if (attr->stacksize != 0
333 && attr->stacksize < (__static_tls_size + MINIMAL_REST_STACK))
334 return EINVAL;
336 /* Adjust stack size for alignment of the TLS block. */
337 #if TLS_TCB_AT_TP
338 adj = ((uintptr_t) attr->stackaddr - TLS_TCB_SIZE)
339 & __static_tls_align_m1;
340 assert (size > adj + TLS_TCB_SIZE);
341 #elif TLS_DTV_AT_TP
342 adj = ((uintptr_t) attr->stackaddr - __static_tls_size)
343 & __static_tls_align_m1;
344 assert (size > adj);
345 #endif
347 /* The user provided some memory. Let's hope it matches the
348 size... We do not allocate guard pages if the user provided
349 the stack. It is the user's responsibility to do this if it
350 is wanted. */
351 #if TLS_TCB_AT_TP
352 pd = (struct pthread *) ((uintptr_t) attr->stackaddr
353 - TLS_TCB_SIZE - adj);
354 #elif TLS_DTV_AT_TP
355 pd = (struct pthread *) (((uintptr_t) attr->stackaddr
356 - __static_tls_size - adj)
357 - TLS_PRE_TCB_SIZE);
358 #endif
360 /* The user provided stack memory needs to be cleared. */
361 memset (pd, '\0', sizeof (struct pthread));
363 /* The first TSD block is included in the TCB. */
364 pd->specific[0] = pd->specific_1stblock;
366 /* Remember the stack-related values. */
367 pd->stackblock = (char *) attr->stackaddr - size;
368 pd->stackblock_size = size;
370 /* This is a user-provided stack. It will not be queued in the
371 stack cache nor will the memory (except the TLS memory) be freed. */
372 pd->user_stack = true;
374 /* This is at least the second thread. */
375 pd->header.multiple_threads = 1;
376 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
377 __pthread_multiple_threads = *__libc_multiple_threads_ptr = 1;
378 #endif
380 #ifndef __ASSUME_PRIVATE_FUTEX
381 /* The thread must know when private futexes are supported. */
382 pd->header.private_futex = THREAD_GETMEM (THREAD_SELF,
383 header.private_futex);
384 #endif
386 #ifdef NEED_DL_SYSINFO
387 /* Copy the sysinfo value from the parent. */
388 THREAD_SYSINFO(pd) = THREAD_SELF_SYSINFO;
389 #endif
391 /* The process ID is also the same as that of the caller. */
392 pd->pid = THREAD_GETMEM (THREAD_SELF, pid);
394 /* Allocate the DTV for this thread. */
395 if (_dl_allocate_tls (TLS_TPADJ (pd)) == NULL)
397 /* Something went wrong. */
398 assert (errno == ENOMEM);
399 return EAGAIN;
403 /* Prepare to modify global data. */
404 lll_lock (stack_cache_lock, LLL_PRIVATE);
406 /* And add to the list of stacks in use. */
407 list_add (&pd->list, &__stack_user);
409 lll_unlock (stack_cache_lock, LLL_PRIVATE);
411 else
413 /* Allocate some anonymous memory. If possible use the cache. */
414 size_t guardsize;
415 size_t reqsize;
416 void *mem;
417 const int prot = (PROT_READ | PROT_WRITE
418 | ((GL(dl_stack_flags) & PF_X) ? PROT_EXEC : 0));
420 #if COLORING_INCREMENT != 0
421 /* Add one more page for stack coloring. Don't do it for stacks
422 with 16 times pagesize or larger. This might just cause
423 unnecessary misalignment. */
424 if (size <= 16 * pagesize_m1)
425 size += pagesize_m1 + 1;
426 #endif
428 /* Adjust the stack size for alignment. */
429 size &= ~__static_tls_align_m1;
430 assert (size != 0);
432 /* Make sure the size of the stack is enough for the guard and
433 eventually the thread descriptor. */
434 guardsize = (attr->guardsize + pagesize_m1) & ~pagesize_m1;
435 if (__builtin_expect (size < ((guardsize + __static_tls_size
436 + MINIMAL_REST_STACK + pagesize_m1)
437 & ~pagesize_m1),
439 /* The stack is too small (or the guard too large). */
440 return EINVAL;
442 /* Try to get a stack from the cache. */
443 reqsize = size;
444 pd = get_cached_stack (&size, &mem);
445 if (pd == NULL)
447 /* To avoid aliasing effects on a larger scale than pages we
448 adjust the allocated stack size if necessary. This way
449 allocations directly following each other will not have
450 aliasing problems. */
451 #if MULTI_PAGE_ALIASING != 0
452 if ((size % MULTI_PAGE_ALIASING) == 0)
453 size += pagesize_m1 + 1;
454 #endif
456 mem = mmap (NULL, size, prot,
457 MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0);
459 if (__builtin_expect (mem == MAP_FAILED, 0))
461 if (errno == ENOMEM)
462 __set_errno (EAGAIN);
464 return errno;
467 /* SIZE is guaranteed to be greater than zero.
468 So we can never get a null pointer back from mmap. */
469 assert (mem != NULL);
471 #if COLORING_INCREMENT != 0
472 /* Atomically increment NCREATED. */
473 unsigned int ncreated = atomic_increment_val (&nptl_ncreated);
475 /* We chose the offset for coloring by incrementing it for
476 every new thread by a fixed amount. The offset used
477 module the page size. Even if coloring would be better
478 relative to higher alignment values it makes no sense to
479 do it since the mmap() interface does not allow us to
480 specify any alignment for the returned memory block. */
481 size_t coloring = (ncreated * COLORING_INCREMENT) & pagesize_m1;
483 /* Make sure the coloring offsets does not disturb the alignment
484 of the TCB and static TLS block. */
485 if (__builtin_expect ((coloring & __static_tls_align_m1) != 0, 0))
486 coloring = (((coloring + __static_tls_align_m1)
487 & ~(__static_tls_align_m1))
488 & ~pagesize_m1);
489 #else
490 /* Unless specified we do not make any adjustments. */
491 # define coloring 0
492 #endif
494 /* Place the thread descriptor at the end of the stack. */
495 #if TLS_TCB_AT_TP
496 pd = (struct pthread *) ((char *) mem + size - coloring) - 1;
497 #elif TLS_DTV_AT_TP
498 pd = (struct pthread *) ((((uintptr_t) mem + size - coloring
499 - __static_tls_size)
500 & ~__static_tls_align_m1)
501 - TLS_PRE_TCB_SIZE);
502 #endif
504 /* Remember the stack-related values. */
505 pd->stackblock = mem;
506 pd->stackblock_size = size;
508 /* We allocated the first block thread-specific data array.
509 This address will not change for the lifetime of this
510 descriptor. */
511 pd->specific[0] = pd->specific_1stblock;
513 /* This is at least the second thread. */
514 pd->header.multiple_threads = 1;
515 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
516 __pthread_multiple_threads = *__libc_multiple_threads_ptr = 1;
517 #endif
519 #ifndef __ASSUME_PRIVATE_FUTEX
520 /* The thread must know when private futexes are supported. */
521 pd->header.private_futex = THREAD_GETMEM (THREAD_SELF,
522 header.private_futex);
523 #endif
525 #ifdef NEED_DL_SYSINFO
526 /* Copy the sysinfo value from the parent. */
527 THREAD_SYSINFO(pd) = THREAD_SELF_SYSINFO;
528 #endif
530 /* The process ID is also the same as that of the caller. */
531 pd->pid = THREAD_GETMEM (THREAD_SELF, pid);
533 /* Allocate the DTV for this thread. */
534 if (_dl_allocate_tls (TLS_TPADJ (pd)) == NULL)
536 /* Something went wrong. */
537 assert (errno == ENOMEM);
539 /* Free the stack memory we just allocated. */
540 (void) munmap (mem, size);
542 return EAGAIN;
546 /* Prepare to modify global data. */
547 lll_lock (stack_cache_lock, LLL_PRIVATE);
549 /* And add to the list of stacks in use. */
550 list_add (&pd->list, &stack_used);
552 lll_unlock (stack_cache_lock, LLL_PRIVATE);
555 /* There might have been a race. Another thread might have
556 caused the stacks to get exec permission while this new
557 stack was prepared. Detect if this was possible and
558 change the permission if necessary. */
559 if (__builtin_expect ((GL(dl_stack_flags) & PF_X) != 0
560 && (prot & PROT_EXEC) == 0, 0))
562 int err = change_stack_perm (pd
563 #ifdef NEED_SEPARATE_REGISTER_STACK
564 , ~pagesize_m1
565 #endif
567 if (err != 0)
569 /* Free the stack memory we just allocated. */
570 (void) munmap (mem, size);
572 return err;
577 /* Note that all of the stack and the thread descriptor is
578 zeroed. This means we do not have to initialize fields
579 with initial value zero. This is specifically true for
580 the 'tid' field which is always set back to zero once the
581 stack is not used anymore and for the 'guardsize' field
582 which will be read next. */
585 /* Create or resize the guard area if necessary. */
586 if (__builtin_expect (guardsize > pd->guardsize, 0))
588 #ifdef NEED_SEPARATE_REGISTER_STACK
589 char *guard = mem + (((size - guardsize) / 2) & ~pagesize_m1);
590 #elif _STACK_GROWS_DOWN
591 char *guard = mem;
592 # elif _STACK_GROWS_UP
593 char *guard = (char *) (((uintptr_t) pd - guardsize) & ~pagesize_m1);
594 #endif
595 if (mprotect (guard, guardsize, PROT_NONE) != 0)
597 int err;
598 mprot_error:
599 err = errno;
601 lll_lock (stack_cache_lock, LLL_PRIVATE);
603 /* Remove the thread from the list. */
604 list_del (&pd->list);
606 lll_unlock (stack_cache_lock, LLL_PRIVATE);
608 /* Get rid of the TLS block we allocated. */
609 _dl_deallocate_tls (TLS_TPADJ (pd), false);
611 /* Free the stack memory regardless of whether the size
612 of the cache is over the limit or not. If this piece
613 of memory caused problems we better do not use it
614 anymore. Uh, and we ignore possible errors. There
615 is nothing we could do. */
616 (void) munmap (mem, size);
618 return err;
621 pd->guardsize = guardsize;
623 else if (__builtin_expect (pd->guardsize - guardsize > size - reqsize,
626 /* The old guard area is too large. */
628 #ifdef NEED_SEPARATE_REGISTER_STACK
629 char *guard = mem + (((size - guardsize) / 2) & ~pagesize_m1);
630 char *oldguard = mem + (((size - pd->guardsize) / 2) & ~pagesize_m1);
632 if (oldguard < guard
633 && mprotect (oldguard, guard - oldguard, prot) != 0)
634 goto mprot_error;
636 if (mprotect (guard + guardsize,
637 oldguard + pd->guardsize - guard - guardsize,
638 prot) != 0)
639 goto mprot_error;
640 #elif _STACK_GROWS_DOWN
641 if (mprotect ((char *) mem + guardsize, pd->guardsize - guardsize,
642 prot) != 0)
643 goto mprot_error;
644 #elif _STACK_GROWS_UP
645 if (mprotect ((char *) pd - pd->guardsize,
646 pd->guardsize - guardsize, prot) != 0)
647 goto mprot_error;
648 #endif
650 pd->guardsize = guardsize;
652 /* The pthread_getattr_np() calls need to get passed the size
653 requested in the attribute, regardless of how large the
654 actually used guardsize is. */
655 pd->reported_guardsize = guardsize;
658 /* Initialize the lock. We have to do this unconditionally since the
659 stillborn thread could be canceled while the lock is taken. */
660 pd->lock = LLL_LOCK_INITIALIZER;
662 /* The robust mutex lists also need to be initialized
663 unconditionally because the cleanup for the previous stack owner
664 might have happened in the kernel. */
665 pd->robust_head.futex_offset = (offsetof (pthread_mutex_t, __data.__lock)
666 - offsetof (pthread_mutex_t,
667 __data.__list.__next));
668 pd->robust_head.list_op_pending = NULL;
669 #ifdef __PTHREAD_MUTEX_HAVE_PREV
670 pd->robust_prev = &pd->robust_head;
671 #endif
672 pd->robust_head.list = &pd->robust_head;
674 /* We place the thread descriptor at the end of the stack. */
675 *pdp = pd;
677 #if TLS_TCB_AT_TP
678 /* The stack begins before the TCB and the static TLS block. */
679 stacktop = ((char *) (pd + 1) - __static_tls_size);
680 #elif TLS_DTV_AT_TP
681 stacktop = (char *) (pd - 1);
682 #endif
684 #ifdef NEED_SEPARATE_REGISTER_STACK
685 *stack = pd->stackblock;
686 *stacksize = stacktop - *stack;
687 #elif _STACK_GROWS_DOWN
688 *stack = stacktop;
689 #elif _STACK_GROWS_UP
690 *stack = pd->stackblock;
691 assert (*stack > 0);
692 #endif
694 return 0;
698 void
699 internal_function
700 __deallocate_stack (struct pthread *pd)
702 lll_lock (stack_cache_lock, LLL_PRIVATE);
704 /* Remove the thread from the list of threads with user defined
705 stacks. */
706 list_del (&pd->list);
708 /* Not much to do. Just free the mmap()ed memory. Note that we do
709 not reset the 'used' flag in the 'tid' field. This is done by
710 the kernel. If no thread has been created yet this field is
711 still zero. */
712 if (__builtin_expect (! pd->user_stack, 1))
713 (void) queue_stack (pd);
714 else
715 /* Free the memory associated with the ELF TLS. */
716 _dl_deallocate_tls (TLS_TPADJ (pd), false);
718 lll_unlock (stack_cache_lock, LLL_PRIVATE);
723 internal_function
724 __make_stacks_executable (void **stack_endp)
726 /* First the main thread's stack. */
727 int err = _dl_make_stack_executable (stack_endp);
728 if (err != 0)
729 return err;
731 #ifdef NEED_SEPARATE_REGISTER_STACK
732 const size_t pagemask = ~(__getpagesize () - 1);
733 #endif
735 lll_lock (stack_cache_lock, LLL_PRIVATE);
737 list_t *runp;
738 list_for_each (runp, &stack_used)
740 err = change_stack_perm (list_entry (runp, struct pthread, list)
741 #ifdef NEED_SEPARATE_REGISTER_STACK
742 , pagemask
743 #endif
745 if (err != 0)
746 break;
749 /* Also change the permission for the currently unused stacks. This
750 might be wasted time but better spend it here than adding a check
751 in the fast path. */
752 if (err == 0)
753 list_for_each (runp, &stack_cache)
755 err = change_stack_perm (list_entry (runp, struct pthread, list)
756 #ifdef NEED_SEPARATE_REGISTER_STACK
757 , pagemask
758 #endif
760 if (err != 0)
761 break;
764 lll_unlock (stack_cache_lock, LLL_PRIVATE);
766 return err;
770 /* In case of a fork() call the memory allocation in the child will be
771 the same but only one thread is running. All stacks except that of
772 the one running thread are not used anymore. We have to recycle
773 them. */
774 void
775 __reclaim_stacks (void)
777 struct pthread *self = (struct pthread *) THREAD_SELF;
779 /* No locking necessary. The caller is the only stack in use. */
781 /* Mark all stacks except the still running one as free. */
782 list_t *runp;
783 list_for_each (runp, &stack_used)
785 struct pthread *curp = list_entry (runp, struct pthread, list);
786 if (curp != self)
788 /* This marks the stack as free. */
789 curp->tid = 0;
791 /* The PID field must be initialized for the new process. */
792 curp->pid = self->pid;
794 /* Account for the size of the stack. */
795 stack_cache_actsize += curp->stackblock_size;
797 if (curp->specific_used)
799 /* Clear the thread-specific data. */
800 memset (curp->specific_1stblock, '\0',
801 sizeof (curp->specific_1stblock));
803 curp->specific_used = false;
805 for (size_t cnt = 1; cnt < PTHREAD_KEY_1STLEVEL_SIZE; ++cnt)
806 if (curp->specific[cnt] != NULL)
808 memset (curp->specific[cnt], '\0',
809 sizeof (curp->specific_1stblock));
811 /* We have allocated the block which we do not
812 free here so re-set the bit. */
813 curp->specific_used = true;
819 /* Reset the PIDs in any cached stacks. */
820 list_for_each (runp, &stack_cache)
822 struct pthread *curp = list_entry (runp, struct pthread, list);
823 curp->pid = self->pid;
826 /* Add the stack of all running threads to the cache. */
827 list_splice (&stack_used, &stack_cache);
829 /* Remove the entry for the current thread to from the cache list
830 and add it to the list of running threads. Which of the two
831 lists is decided by the user_stack flag. */
832 list_del (&self->list);
834 /* Re-initialize the lists for all the threads. */
835 INIT_LIST_HEAD (&stack_used);
836 INIT_LIST_HEAD (&__stack_user);
838 if (__builtin_expect (THREAD_GETMEM (self, user_stack), 0))
839 list_add (&self->list, &__stack_user);
840 else
841 list_add (&self->list, &stack_used);
843 /* There is one thread running. */
844 __nptl_nthreads = 1;
846 /* Initialize the lock. */
847 stack_cache_lock = LLL_LOCK_INITIALIZER;
851 #if HP_TIMING_AVAIL
852 # undef __find_thread_by_id
853 /* Find a thread given the thread ID. */
854 attribute_hidden
855 struct pthread *
856 __find_thread_by_id (pid_t tid)
858 struct pthread *result = NULL;
860 lll_lock (stack_cache_lock, LLL_PRIVATE);
862 /* Iterate over the list with system-allocated threads first. */
863 list_t *runp;
864 list_for_each (runp, &stack_used)
866 struct pthread *curp;
868 curp = list_entry (runp, struct pthread, list);
870 if (curp->tid == tid)
872 result = curp;
873 goto out;
877 /* Now the list with threads using user-allocated stacks. */
878 list_for_each (runp, &__stack_user)
880 struct pthread *curp;
882 curp = list_entry (runp, struct pthread, list);
884 if (curp->tid == tid)
886 result = curp;
887 goto out;
891 out:
892 lll_unlock (stack_cache_lock, LLL_PRIVATE);
894 return result;
896 #endif
899 static void
900 internal_function
901 setxid_signal_thread (struct xid_command *cmdp, struct pthread *t)
903 if (! IS_DETACHED (t))
905 int ch;
908 ch = t->cancelhandling;
910 /* If the thread is exiting right now, ignore it. */
911 if ((ch & EXITING_BITMASK) != 0)
912 return;
914 while (atomic_compare_and_exchange_bool_acq (&t->cancelhandling,
915 ch | SETXID_BITMASK, ch));
918 int val;
919 INTERNAL_SYSCALL_DECL (err);
920 #if __ASSUME_TGKILL
921 val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid),
922 t->tid, SIGSETXID);
923 #else
924 # ifdef __NR_tgkill
925 val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid),
926 t->tid, SIGSETXID);
927 if (INTERNAL_SYSCALL_ERROR_P (val, err)
928 && INTERNAL_SYSCALL_ERRNO (val, err) == ENOSYS)
929 # endif
930 val = INTERNAL_SYSCALL (tkill, err, 2, t->tid, SIGSETXID);
931 #endif
933 if (!INTERNAL_SYSCALL_ERROR_P (val, err))
934 atomic_increment (&cmdp->cntr);
939 attribute_hidden
940 __nptl_setxid (struct xid_command *cmdp)
942 int result;
943 lll_lock (stack_cache_lock, LLL_PRIVATE);
945 __xidcmd = cmdp;
946 cmdp->cntr = 0;
948 struct pthread *self = THREAD_SELF;
950 /* Iterate over the list with system-allocated threads first. */
951 list_t *runp;
952 list_for_each (runp, &stack_used)
954 struct pthread *t = list_entry (runp, struct pthread, list);
955 if (t == self)
956 continue;
958 setxid_signal_thread (cmdp, t);
961 /* Now the list with threads using user-allocated stacks. */
962 list_for_each (runp, &__stack_user)
964 struct pthread *t = list_entry (runp, struct pthread, list);
965 if (t == self)
966 continue;
968 setxid_signal_thread (cmdp, t);
971 int cur = cmdp->cntr;
972 while (cur != 0)
974 lll_futex_wait (&cmdp->cntr, cur, LLL_PRIVATE);
975 cur = cmdp->cntr;
978 /* This must be last, otherwise the current thread might not have
979 permissions to send SIGSETXID syscall to the other threads. */
980 INTERNAL_SYSCALL_DECL (err);
981 result = INTERNAL_SYSCALL_NCS (cmdp->syscall_no, err, 3,
982 cmdp->id[0], cmdp->id[1], cmdp->id[2]);
983 if (INTERNAL_SYSCALL_ERROR_P (result, err))
985 __set_errno (INTERNAL_SYSCALL_ERRNO (result, err));
986 result = -1;
989 lll_unlock (stack_cache_lock, LLL_PRIVATE);
990 return result;
993 static inline void __attribute__((always_inline))
994 init_one_static_tls (struct pthread *curp, struct link_map *map)
996 dtv_t *dtv = GET_DTV (TLS_TPADJ (curp));
997 # if TLS_TCB_AT_TP
998 void *dest = (char *) curp - map->l_tls_offset;
999 # elif TLS_DTV_AT_TP
1000 void *dest = (char *) curp + map->l_tls_offset + TLS_PRE_TCB_SIZE;
1001 # else
1002 # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
1003 # endif
1005 /* Fill in the DTV slot so that a later LD/GD access will find it. */
1006 dtv[map->l_tls_modid].pointer.val = dest;
1007 dtv[map->l_tls_modid].pointer.is_static = true;
1009 /* Initialize the memory. */
1010 memset (__mempcpy (dest, map->l_tls_initimage, map->l_tls_initimage_size),
1011 '\0', map->l_tls_blocksize - map->l_tls_initimage_size);
1014 void
1015 attribute_hidden
1016 __pthread_init_static_tls (struct link_map *map)
1018 lll_lock (stack_cache_lock, LLL_PRIVATE);
1020 /* Iterate over the list with system-allocated threads first. */
1021 list_t *runp;
1022 list_for_each (runp, &stack_used)
1023 init_one_static_tls (list_entry (runp, struct pthread, list), map);
1025 /* Now the list with threads using user-allocated stacks. */
1026 list_for_each (runp, &__stack_user)
1027 init_one_static_tls (list_entry (runp, struct pthread, list), map);
1029 lll_unlock (stack_cache_lock, LLL_PRIVATE);
1033 void
1034 attribute_hidden
1035 __wait_lookup_done (void)
1037 lll_lock (stack_cache_lock, LLL_PRIVATE);
1039 struct pthread *self = THREAD_SELF;
1041 /* Iterate over the list with system-allocated threads first. */
1042 list_t *runp;
1043 list_for_each (runp, &stack_used)
1045 struct pthread *t = list_entry (runp, struct pthread, list);
1046 if (t == self || t->header.gscope_flag == THREAD_GSCOPE_FLAG_UNUSED)
1047 continue;
1049 int *const gscope_flagp = &t->header.gscope_flag;
1051 /* We have to wait until this thread is done with the global
1052 scope. First tell the thread that we are waiting and
1053 possibly have to be woken. */
1054 if (atomic_compare_and_exchange_bool_acq (gscope_flagp,
1055 THREAD_GSCOPE_FLAG_WAIT,
1056 THREAD_GSCOPE_FLAG_USED))
1057 continue;
1060 lll_futex_wait (gscope_flagp, THREAD_GSCOPE_FLAG_WAIT, LLL_PRIVATE);
1061 while (*gscope_flagp == THREAD_GSCOPE_FLAG_WAIT);
1064 /* Now the list with threads using user-allocated stacks. */
1065 list_for_each (runp, &__stack_user)
1067 struct pthread *t = list_entry (runp, struct pthread, list);
1068 if (t == self || t->header.gscope_flag == THREAD_GSCOPE_FLAG_UNUSED)
1069 continue;
1071 int *const gscope_flagp = &t->header.gscope_flag;
1073 /* We have to wait until this thread is done with the global
1074 scope. First tell the thread that we are waiting and
1075 possibly have to be woken. */
1076 if (atomic_compare_and_exchange_bool_acq (gscope_flagp,
1077 THREAD_GSCOPE_FLAG_WAIT,
1078 THREAD_GSCOPE_FLAG_USED))
1079 continue;
1082 lll_futex_wait (gscope_flagp, THREAD_GSCOPE_FLAG_WAIT, LLL_PRIVATE);
1083 while (*gscope_flagp == THREAD_GSCOPE_FLAG_WAIT);
1086 lll_unlock (stack_cache_lock, LLL_PRIVATE);