csb_PL: Update month translations + add yesstr/nostr (bug 19485).
[glibc.git] / nptl / nptl-init.c
blob1d3790f500241e146ffae714ba682b76d75e4fd9
1 /* Copyright (C) 2002-2018 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, see
17 <http://www.gnu.org/licenses/>. */
19 #include <assert.h>
20 #include <errno.h>
21 #include <limits.h>
22 #include <signal.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <sys/param.h>
26 #include <sys/resource.h>
27 #include <pthreadP.h>
28 #include <atomic.h>
29 #include <ldsodefs.h>
30 #include <tls.h>
31 #include <list.h>
32 #include <fork.h>
33 #include <version.h>
34 #include <shlib-compat.h>
35 #include <smp.h>
36 #include <lowlevellock.h>
37 #include <futex-internal.h>
38 #include <kernel-features.h>
39 #include <libc-pointer-arith.h>
40 #include <pthread-pids.h>
42 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
43 /* Pointer to the corresponding variable in libc. */
44 int *__libc_multiple_threads_ptr attribute_hidden;
45 #endif
47 /* Size and alignment of static TLS block. */
48 size_t __static_tls_size;
49 size_t __static_tls_align_m1;
51 #ifndef __ASSUME_SET_ROBUST_LIST
52 /* Negative if we do not have the system call and we can use it. */
53 int __set_robust_list_avail;
54 # define set_robust_list_not_avail() \
55 __set_robust_list_avail = -1
56 #else
57 # define set_robust_list_not_avail() do { } while (0)
58 #endif
60 #ifndef __ASSUME_FUTEX_CLOCK_REALTIME
61 /* Nonzero if we do not have FUTEX_CLOCK_REALTIME. */
62 int __have_futex_clock_realtime;
63 # define __set_futex_clock_realtime() \
64 __have_futex_clock_realtime = 1
65 #else
66 #define __set_futex_clock_realtime() do { } while (0)
67 #endif
69 /* Version of the library, used in libthread_db to detect mismatches. */
70 static const char nptl_version[] __attribute_used__ = VERSION;
73 #ifdef SHARED
74 static
75 #else
76 extern
77 #endif
78 void __nptl_set_robust (struct pthread *);
80 #ifdef SHARED
81 static void nptl_freeres (void);
84 static const struct pthread_functions pthread_functions =
86 .ptr_pthread_attr_destroy = __pthread_attr_destroy,
87 # if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
88 .ptr___pthread_attr_init_2_0 = __pthread_attr_init_2_0,
89 # endif
90 .ptr___pthread_attr_init_2_1 = __pthread_attr_init_2_1,
91 .ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate,
92 .ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate,
93 .ptr_pthread_attr_getinheritsched = __pthread_attr_getinheritsched,
94 .ptr_pthread_attr_setinheritsched = __pthread_attr_setinheritsched,
95 .ptr_pthread_attr_getschedparam = __pthread_attr_getschedparam,
96 .ptr_pthread_attr_setschedparam = __pthread_attr_setschedparam,
97 .ptr_pthread_attr_getschedpolicy = __pthread_attr_getschedpolicy,
98 .ptr_pthread_attr_setschedpolicy = __pthread_attr_setschedpolicy,
99 .ptr_pthread_attr_getscope = __pthread_attr_getscope,
100 .ptr_pthread_attr_setscope = __pthread_attr_setscope,
101 .ptr_pthread_condattr_destroy = __pthread_condattr_destroy,
102 .ptr_pthread_condattr_init = __pthread_condattr_init,
103 .ptr___pthread_cond_broadcast = __pthread_cond_broadcast,
104 .ptr___pthread_cond_destroy = __pthread_cond_destroy,
105 .ptr___pthread_cond_init = __pthread_cond_init,
106 .ptr___pthread_cond_signal = __pthread_cond_signal,
107 .ptr___pthread_cond_wait = __pthread_cond_wait,
108 .ptr___pthread_cond_timedwait = __pthread_cond_timedwait,
109 # if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_3_2)
110 .ptr___pthread_cond_broadcast_2_0 = __pthread_cond_broadcast_2_0,
111 .ptr___pthread_cond_destroy_2_0 = __pthread_cond_destroy_2_0,
112 .ptr___pthread_cond_init_2_0 = __pthread_cond_init_2_0,
113 .ptr___pthread_cond_signal_2_0 = __pthread_cond_signal_2_0,
114 .ptr___pthread_cond_wait_2_0 = __pthread_cond_wait_2_0,
115 .ptr___pthread_cond_timedwait_2_0 = __pthread_cond_timedwait_2_0,
116 # endif
117 .ptr_pthread_equal = __pthread_equal,
118 .ptr___pthread_exit = __pthread_exit,
119 .ptr_pthread_getschedparam = __pthread_getschedparam,
120 .ptr_pthread_setschedparam = __pthread_setschedparam,
121 .ptr_pthread_mutex_destroy = __pthread_mutex_destroy,
122 .ptr_pthread_mutex_init = __pthread_mutex_init,
123 .ptr_pthread_mutex_lock = __pthread_mutex_lock,
124 .ptr_pthread_mutex_unlock = __pthread_mutex_unlock,
125 .ptr___pthread_setcancelstate = __pthread_setcancelstate,
126 .ptr_pthread_setcanceltype = __pthread_setcanceltype,
127 .ptr___pthread_cleanup_upto = __pthread_cleanup_upto,
128 .ptr___pthread_once = __pthread_once,
129 .ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock,
130 .ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock,
131 .ptr___pthread_rwlock_unlock = __pthread_rwlock_unlock,
132 .ptr___pthread_key_create = __pthread_key_create,
133 .ptr___pthread_getspecific = __pthread_getspecific,
134 .ptr___pthread_setspecific = __pthread_setspecific,
135 .ptr__pthread_cleanup_push_defer = __pthread_cleanup_push_defer,
136 .ptr__pthread_cleanup_pop_restore = __pthread_cleanup_pop_restore,
137 .ptr_nthreads = &__nptl_nthreads,
138 .ptr___pthread_unwind = &__pthread_unwind,
139 .ptr__nptl_deallocate_tsd = __nptl_deallocate_tsd,
140 # ifdef SIGSETXID
141 .ptr__nptl_setxid = __nptl_setxid,
142 # endif
143 /* For now only the stack cache needs to be freed. */
144 .ptr_freeres = nptl_freeres,
145 .ptr_set_robust = __nptl_set_robust
147 # define ptr_pthread_functions &pthread_functions
148 #else
149 # define ptr_pthread_functions NULL
150 #endif
153 #ifdef SHARED
154 /* This function is called indirectly from the freeres code in libc. */
155 static void
156 __libc_freeres_fn_section
157 nptl_freeres (void)
159 __unwind_freeres ();
160 __free_stacks (0);
164 static
165 #endif
166 void
167 __nptl_set_robust (struct pthread *self)
169 #ifdef __NR_set_robust_list
170 INTERNAL_SYSCALL_DECL (err);
171 INTERNAL_SYSCALL (set_robust_list, err, 2, &self->robust_head,
172 sizeof (struct robust_list_head));
173 #endif
177 #ifdef SIGCANCEL
178 /* For asynchronous cancellation we use a signal. This is the handler. */
179 static void
180 sigcancel_handler (int sig, siginfo_t *si, void *ctx)
182 /* Safety check. It would be possible to call this function for
183 other signals and send a signal from another process. This is not
184 correct and might even be a security problem. Try to catch as
185 many incorrect invocations as possible. */
186 if (sig != SIGCANCEL
187 || si->si_pid != __getpid()
188 || si->si_code != SI_TKILL)
189 return;
191 struct pthread *self = THREAD_SELF;
193 int oldval = THREAD_GETMEM (self, cancelhandling);
194 while (1)
196 /* We are canceled now. When canceled by another thread this flag
197 is already set but if the signal is directly send (internally or
198 from another process) is has to be done here. */
199 int newval = oldval | CANCELING_BITMASK | CANCELED_BITMASK;
201 if (oldval == newval || (oldval & EXITING_BITMASK) != 0)
202 /* Already canceled or exiting. */
203 break;
205 int curval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling, newval,
206 oldval);
207 if (curval == oldval)
209 /* Set the return value. */
210 THREAD_SETMEM (self, result, PTHREAD_CANCELED);
212 /* Make sure asynchronous cancellation is still enabled. */
213 if ((newval & CANCELTYPE_BITMASK) != 0)
214 /* Run the registered destructors and terminate the thread. */
215 __do_cancel ();
217 break;
220 oldval = curval;
223 #endif
226 #ifdef SIGSETXID
227 struct xid_command *__xidcmd attribute_hidden;
229 /* We use the SIGSETXID signal in the setuid, setgid, etc. implementations to
230 tell each thread to call the respective setxid syscall on itself. This is
231 the handler. */
232 static void
233 sighandler_setxid (int sig, siginfo_t *si, void *ctx)
235 int result;
237 /* Safety check. It would be possible to call this function for
238 other signals and send a signal from another process. This is not
239 correct and might even be a security problem. Try to catch as
240 many incorrect invocations as possible. */
241 if (sig != SIGSETXID
242 || si->si_pid != __getpid ()
243 || si->si_code != SI_TKILL)
244 return;
246 INTERNAL_SYSCALL_DECL (err);
247 result = INTERNAL_SYSCALL_NCS (__xidcmd->syscall_no, err, 3, __xidcmd->id[0],
248 __xidcmd->id[1], __xidcmd->id[2]);
249 int error = 0;
250 if (__glibc_unlikely (INTERNAL_SYSCALL_ERROR_P (result, err)))
251 error = INTERNAL_SYSCALL_ERRNO (result, err);
252 __nptl_setxid_error (__xidcmd, error);
254 /* Reset the SETXID flag. */
255 struct pthread *self = THREAD_SELF;
256 int flags, newval;
259 flags = THREAD_GETMEM (self, cancelhandling);
260 newval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling,
261 flags & ~SETXID_BITMASK, flags);
263 while (flags != newval);
265 /* And release the futex. */
266 self->setxid_futex = 1;
267 futex_wake (&self->setxid_futex, 1, FUTEX_PRIVATE);
269 if (atomic_decrement_val (&__xidcmd->cntr) == 0)
270 futex_wake ((unsigned int *) &__xidcmd->cntr, 1, FUTEX_PRIVATE);
272 #endif
275 /* When using __thread for this, we do it in libc so as not
276 to give libpthread its own TLS segment just for this. */
277 extern void **__libc_dl_error_tsd (void) __attribute__ ((const));
280 /* This can be set by the debugger before initialization is complete. */
281 static bool __nptl_initial_report_events __attribute_used__;
283 void
284 __pthread_initialize_minimal_internal (void)
286 /* Minimal initialization of the thread descriptor. */
287 struct pthread *pd = THREAD_SELF;
288 __pthread_initialize_pids (pd);
289 THREAD_SETMEM (pd, specific[0], &pd->specific_1stblock[0]);
290 THREAD_SETMEM (pd, user_stack, true);
291 if (LLL_LOCK_INITIALIZER != 0)
292 THREAD_SETMEM (pd, lock, LLL_LOCK_INITIALIZER);
293 #if HP_TIMING_AVAIL
294 THREAD_SETMEM (pd, cpuclock_offset, GL(dl_cpuclock_offset));
295 #endif
297 /* Initialize the robust mutex data. */
299 #if __PTHREAD_MUTEX_HAVE_PREV
300 pd->robust_prev = &pd->robust_head;
301 #endif
302 pd->robust_head.list = &pd->robust_head;
303 #ifdef __NR_set_robust_list
304 pd->robust_head.futex_offset = (offsetof (pthread_mutex_t, __data.__lock)
305 - offsetof (pthread_mutex_t,
306 __data.__list.__next));
307 INTERNAL_SYSCALL_DECL (err);
308 int res = INTERNAL_SYSCALL (set_robust_list, err, 2, &pd->robust_head,
309 sizeof (struct robust_list_head));
310 if (INTERNAL_SYSCALL_ERROR_P (res, err))
311 #endif
312 set_robust_list_not_avail ();
315 #ifdef __NR_futex
316 # ifndef __ASSUME_FUTEX_CLOCK_REALTIME
318 int word = 0;
319 /* NB: the syscall actually takes six parameters. The last is the
320 bit mask. But since we will not actually wait at all the value
321 is irrelevant. Given that passing six parameters is difficult
322 on some architectures we just pass whatever random value the
323 calling convention calls for to the kernel. It causes no harm. */
324 INTERNAL_SYSCALL_DECL (err);
325 word = INTERNAL_SYSCALL (futex, err, 5, &word,
326 FUTEX_WAIT_BITSET | FUTEX_CLOCK_REALTIME
327 | FUTEX_PRIVATE_FLAG, 1, NULL, 0);
328 assert (INTERNAL_SYSCALL_ERROR_P (word, err));
329 if (INTERNAL_SYSCALL_ERRNO (word, err) != ENOSYS)
330 __set_futex_clock_realtime ();
332 # endif
333 #endif
335 /* Set initial thread's stack block from 0 up to __libc_stack_end.
336 It will be bigger than it actually is, but for unwind.c/pt-longjmp.c
337 purposes this is good enough. */
338 THREAD_SETMEM (pd, stackblock_size, (size_t) __libc_stack_end);
340 /* Initialize the list of all running threads with the main thread. */
341 INIT_LIST_HEAD (&__stack_user);
342 list_add (&pd->list, &__stack_user);
344 /* Before initializing __stack_user, the debugger could not find us and
345 had to set __nptl_initial_report_events. Propagate its setting. */
346 THREAD_SETMEM (pd, report_events, __nptl_initial_report_events);
348 #if defined SIGCANCEL || defined SIGSETXID
349 struct sigaction sa;
350 __sigemptyset (&sa.sa_mask);
352 # ifdef SIGCANCEL
353 /* Install the cancellation signal handler. If for some reason we
354 cannot install the handler we do not abort. Maybe we should, but
355 it is only asynchronous cancellation which is affected. */
356 sa.sa_sigaction = sigcancel_handler;
357 sa.sa_flags = SA_SIGINFO;
358 (void) __libc_sigaction (SIGCANCEL, &sa, NULL);
359 # endif
361 # ifdef SIGSETXID
362 /* Install the handle to change the threads' uid/gid. */
363 sa.sa_sigaction = sighandler_setxid;
364 sa.sa_flags = SA_SIGINFO | SA_RESTART;
365 (void) __libc_sigaction (SIGSETXID, &sa, NULL);
366 # endif
368 /* The parent process might have left the signals blocked. Just in
369 case, unblock it. We reuse the signal mask in the sigaction
370 structure. It is already cleared. */
371 # ifdef SIGCANCEL
372 __sigaddset (&sa.sa_mask, SIGCANCEL);
373 # endif
374 # ifdef SIGSETXID
375 __sigaddset (&sa.sa_mask, SIGSETXID);
376 # endif
378 INTERNAL_SYSCALL_DECL (err);
379 (void) INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_UNBLOCK, &sa.sa_mask,
380 NULL, _NSIG / 8);
382 #endif
384 /* Get the size of the static and alignment requirements for the TLS
385 block. */
386 size_t static_tls_align;
387 _dl_get_tls_static_info (&__static_tls_size, &static_tls_align);
389 /* Make sure the size takes all the alignments into account. */
390 if (STACK_ALIGN > static_tls_align)
391 static_tls_align = STACK_ALIGN;
392 __static_tls_align_m1 = static_tls_align - 1;
394 __static_tls_size = roundup (__static_tls_size, static_tls_align);
396 /* Determine the default allowed stack size. This is the size used
397 in case the user does not specify one. */
398 struct rlimit limit;
399 if (__getrlimit (RLIMIT_STACK, &limit) != 0
400 || limit.rlim_cur == RLIM_INFINITY)
401 /* The system limit is not usable. Use an architecture-specific
402 default. */
403 limit.rlim_cur = ARCH_STACK_DEFAULT_SIZE;
404 else if (limit.rlim_cur < PTHREAD_STACK_MIN)
405 /* The system limit is unusably small.
406 Use the minimal size acceptable. */
407 limit.rlim_cur = PTHREAD_STACK_MIN;
409 /* Make sure it meets the minimum size that allocate_stack
410 (allocatestack.c) will demand, which depends on the page size. */
411 const uintptr_t pagesz = GLRO(dl_pagesize);
412 const size_t minstack = pagesz + __static_tls_size + MINIMAL_REST_STACK;
413 if (limit.rlim_cur < minstack)
414 limit.rlim_cur = minstack;
416 /* Round the resource limit up to page size. */
417 limit.rlim_cur = ALIGN_UP (limit.rlim_cur, pagesz);
418 lll_lock (__default_pthread_attr_lock, LLL_PRIVATE);
419 __default_pthread_attr.stacksize = limit.rlim_cur;
420 __default_pthread_attr.guardsize = GLRO (dl_pagesize);
421 lll_unlock (__default_pthread_attr_lock, LLL_PRIVATE);
423 #ifdef SHARED
424 /* Make __rtld_lock_{,un}lock_recursive use pthread_mutex_{,un}lock,
425 keep the lock count from the ld.so implementation. */
426 GL(dl_rtld_lock_recursive) = (void *) __pthread_mutex_lock;
427 GL(dl_rtld_unlock_recursive) = (void *) __pthread_mutex_unlock;
428 unsigned int rtld_lock_count = GL(dl_load_lock).mutex.__data.__count;
429 GL(dl_load_lock).mutex.__data.__count = 0;
430 while (rtld_lock_count-- > 0)
431 __pthread_mutex_lock (&GL(dl_load_lock).mutex);
433 GL(dl_make_stack_executable_hook) = &__make_stacks_executable;
434 #endif
436 GL(dl_init_static_tls) = &__pthread_init_static_tls;
438 GL(dl_wait_lookup_done) = &__wait_lookup_done;
440 /* Register the fork generation counter with the libc. */
441 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
442 __libc_multiple_threads_ptr =
443 #endif
444 __libc_pthread_init (&__fork_generation, __reclaim_stacks,
445 ptr_pthread_functions);
447 /* Determine whether the machine is SMP or not. */
448 __is_smp = is_smp_system ();
450 strong_alias (__pthread_initialize_minimal_internal,
451 __pthread_initialize_minimal)
454 size_t
455 __pthread_get_minstack (const pthread_attr_t *attr)
457 return GLRO(dl_pagesize) + __static_tls_size + PTHREAD_STACK_MIN;