]> git.ipfire.org Git - thirdparty/glibc.git/blame - csu/libc-start.c
Extend NSS test suite
[thirdparty/glibc.git] / csu / libc-start.c
CommitLineData
bfff8b1b 1/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
7dea968e
UD
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
7dea968e
UD
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
7dea968e 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
7dea968e 17
288f7d79 18#include <assert.h>
3db52d94 19#include <stdlib.h>
dde2652b 20#include <stdio.h>
3db52d94 21#include <unistd.h>
a42195db 22#include <ldsodefs.h>
e0db6517 23#include <exit-thread.h>
67e58f39
SP
24#include <libc-internal.h>
25
26#include <elf/dl-tunables.h>
3db52d94 27
31161268
UD
28extern void __libc_init_first (int argc, char **argv, char **envp);
29
31161268
UD
30extern int __libc_multiple_libcs;
31
7ae4abe9 32#include <tls.h>
4fb7a71f 33#ifndef SHARED
dde2652b 34# include <dl-osinfo.h>
35f1e827
UD
35# ifndef THREAD_SET_STACK_GUARD
36/* Only exported for architectures that don't store the stack guard canary
37 in thread local area. */
38uintptr_t __stack_chk_guard attribute_relro;
39# endif
c61b4d41
CD
40# ifndef THREAD_SET_POINTER_GUARD
41/* Only exported for architectures that don't store the pointer guard
42 value in thread local area. */
43uintptr_t __pointer_chk_guard_local
44 attribute_relro attribute_hidden __attribute__ ((nocommon));
45# endif
4fb7a71f
AJ
46#endif
47
47202270
UD
48#ifdef HAVE_PTR_NTHREADS
49/* We need atomic operations. */
50# include <atomic.h>
51#endif
52
17427edd 53
21ad0558
RM
54#ifndef SHARED
55# include <link.h>
56# include <dl-irel.h>
57
58# ifdef ELF_MACHINE_IRELA
59# define IREL_T ElfW(Rela)
60# define IPLT_START __rela_iplt_start
61# define IPLT_END __rela_iplt_end
62# define IREL elf_irela
63# elif defined ELF_MACHINE_IREL
64# define IREL_T ElfW(Rel)
65# define IPLT_START __rel_iplt_start
66# define IPLT_END __rel_iplt_end
67# define IREL elf_irel
68# endif
69
21ad0558
RM
70static void
71apply_irel (void)
72{
35a5b08b
RM
73# ifdef IREL
74 /* We use weak references for these so that we'll still work with a linker
75 that doesn't define them. Such a linker doesn't support IFUNC at all
76 and so uses won't work, but a statically-linked program that doesn't
77 use any IFUNC symbols won't have a problem. */
78 extern const IREL_T IPLT_START[] __attribute__ ((weak));
79 extern const IREL_T IPLT_END[] __attribute__ ((weak));
21ad0558
RM
80 for (const IREL_T *ipltent = IPLT_START; ipltent < IPLT_END; ++ipltent)
81 IREL (ipltent);
35a5b08b 82# endif
21ad0558
RM
83}
84#endif
85
86
2b089f21 87#ifdef LIBC_START_MAIN
11986c68
UD
88# ifdef LIBC_START_DISABLE_INLINE
89# define STATIC static
90# else
91# define STATIC static inline __attribute__ ((always_inline))
92# endif
2b089f21
RM
93#else
94# define STATIC
e97ed6dd 95# define LIBC_START_MAIN __libc_start_main
2b089f21
RM
96#endif
97
2b089f21 98#ifdef MAIN_AUXVEC_ARG
09d65ff3
UD
99/* main gets passed a pointer to the auxiliary. */
100# define MAIN_AUXVEC_DECL , void *
101# define MAIN_AUXVEC_PARAM , auxvec
102#else
103# define MAIN_AUXVEC_DECL
104# define MAIN_AUXVEC_PARAM
2b089f21
RM
105#endif
106
4158ba08
SP
107#ifndef ARCH_INIT_CPU_FEATURES
108# define ARCH_INIT_CPU_FEATURES()
109#endif
110
09d65ff3
UD
111STATIC int LIBC_START_MAIN (int (*main) (int, char **, char **
112 MAIN_AUXVEC_DECL),
2b089f21 113 int argc,
70d9946a 114 char **argv,
2b089f21 115#ifdef LIBC_START_MAIN_AUXVEC_ARG
70d9946a 116 ElfW(auxv_t) *auxvec,
2b089f21 117#endif
2b089f21 118 __typeof (main) init,
2b089f21
RM
119 void (*fini) (void),
120 void (*rtld_fini) (void),
70d9946a 121 void *stack_end)
17427edd 122 __attribute__ ((noreturn));
a828c2f5 123
9dcafc55 124
43c59a70
UD
125/* Note: the fini parameter is ignored here for shared library. It
126 is registered with __cxa_atexit. This had the disadvantage that
127 finalizers were called in more than one place. */
2b089f21 128STATIC int
09d65ff3 129LIBC_START_MAIN (int (*main) (int, char **, char ** MAIN_AUXVEC_DECL),
70d9946a 130 int argc, char **argv,
2b089f21 131#ifdef LIBC_START_MAIN_AUXVEC_ARG
70d9946a 132 ElfW(auxv_t) *auxvec,
2b089f21 133#endif
2b089f21 134 __typeof (main) init,
2b089f21 135 void (*fini) (void),
70d9946a 136 void (*rtld_fini) (void), void *stack_end)
7dea968e 137{
7ae4abe9
UD
138 /* Result of the 'main' function. */
139 int result;
140
7ae4abe9 141 __libc_multiple_libcs = &_dl_starting_up && !_dl_starting_up;
c0fb8a56 142
3fb2606a 143#ifndef SHARED
70d9946a 144 char **ev = &argv[argc + 1];
4f657581 145
70d9946a 146 __environ = ev;
ab95290c 147
ea4f25a7
UD
148 /* Store the lowest stack address. This is done in ld.so if this is
149 the code for the DSO. */
c0fb8a56 150 __libc_stack_end = stack_end;
31161268 151
8a30f00f
UD
152# ifdef HAVE_AUX_VECTOR
153 /* First process the auxiliary vector since we need to find the
154 program header to locate an eventually present PT_TLS entry. */
2b089f21 155# ifndef LIBC_START_MAIN_AUXVEC_ARG
70d9946a 156 ElfW(auxv_t) *auxvec;
2b089f21 157 {
70d9946a 158 char **evp = ev;
97026947
UD
159 while (*evp++ != NULL)
160 ;
70d9946a 161 auxvec = (ElfW(auxv_t) *) evp;
2b089f21
RM
162 }
163# endif
164 _dl_aux_init (auxvec);
288f7d79 165 if (GL(dl_phdr) == NULL)
8a30f00f 166# endif
288f7d79
RM
167 {
168 /* Starting from binutils-2.23, the linker will define the
169 magic symbol __ehdr_start to point to our own ELF header
170 if it is visible in a segment that also includes the phdrs.
171 So we can set up _dl_phdr and _dl_phnum even without any
172 information from auxv. */
173
ae9552cf
MR
174 extern const ElfW(Ehdr) __ehdr_start
175 __attribute__ ((weak, visibility ("hidden")));
288f7d79
RM
176 if (&__ehdr_start != NULL)
177 {
178 assert (__ehdr_start.e_phentsize == sizeof *GL(dl_phdr));
179 GL(dl_phdr) = (const void *) &__ehdr_start + __ehdr_start.e_phoff;
180 GL(dl_phnum) = __ehdr_start.e_phnum;
181 }
182 }
183
67e58f39
SP
184 /* Initialize very early so that tunables can use it. */
185 __libc_init_secure ();
186
187 __tunables_init (__environ);
188
4158ba08
SP
189 ARCH_INIT_CPU_FEATURES ();
190
21ad0558
RM
191 /* Perform IREL{,A} relocations. */
192 apply_irel ();
1c3c269b 193
003a27e8
NA
194 /* The stack guard goes into the TCB, so initialize it early. */
195 __libc_setup_tls ();
a828c2f5 196
35f1e827 197 /* Set up the stack checker's canary. */
5b656a0d 198 uintptr_t stack_chk_guard = _dl_setup_stack_chk_guard (_dl_random);
75fb247e 199# ifdef THREAD_SET_STACK_GUARD
35f1e827 200 THREAD_SET_STACK_GUARD (stack_chk_guard);
75fb247e 201# else
35f1e827 202 __stack_chk_guard = stack_chk_guard;
75fb247e 203# endif
c61b4d41 204
003a27e8
NA
205# ifdef DL_SYSDEP_OSCHECK
206 if (!__libc_multiple_libcs)
207 {
208 /* This needs to run to initiliaze _dl_osversion before TLS
209 setup might check it. */
210 DL_SYSDEP_OSCHECK (__libc_fatal);
211 }
212# endif
213
214 /* Initialize libpthread if linked in. */
215 if (__pthread_initialize_minimal != NULL)
216 __pthread_initialize_minimal ();
217
c61b4d41
CD
218 /* Set up the pointer guard value. */
219 uintptr_t pointer_chk_guard = _dl_setup_pointer_guard (_dl_random,
220 stack_chk_guard);
221# ifdef THREAD_SET_POINTER_GUARD
222 THREAD_SET_POINTER_GUARD (pointer_chk_guard);
223# else
224 __pointer_chk_guard_local = pointer_chk_guard;
225# endif
226
75fb247e
UD
227#endif
228
3db52d94 229 /* Register the destructor of the dynamic linker if there is any. */
a1ffb40e 230 if (__glibc_likely (rtld_fini != NULL))
c08bc50a 231 __cxa_atexit ((void (*) (void *)) rtld_fini, NULL, NULL);
3db52d94 232
43c59a70 233#ifndef SHARED
dacc8ffa
UD
234 /* Call the initializer of the libc. This is only needed here if we
235 are compiling for the static library in which case we haven't
236 run the constructors in `_dl_start_user'. */
31161268
UD
237 __libc_init_first (argc, argv, __environ);
238
43c59a70
UD
239 /* Register the destructor of the program, if any. */
240 if (fini)
241 __cxa_atexit ((void (*) (void *)) fini, NULL, NULL);
242
9946f75a
UD
243 /* Some security at this point. Prevent starting a SUID binary where
244 the standard file descriptors are not opened. We have to do this
245 only for statically linked applications since otherwise the dynamic
246 loader did the work already. */
247 if (__builtin_expect (__libc_enable_secure, 0))
248 __libc_check_standard_fds ();
249#endif
250
4194bc66 251 /* Call the initializer of the program, if any. */
b5567b2a 252#ifdef SHARED
afdca0f2 253 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS, 0))
154d10bd 254 GLRO(dl_debug_printf) ("\ninitialize program: %s\n\n", argv[0]);
31161268 255#endif
4194bc66 256 if (init)
04395c90 257 (*init) (argc, argv, __environ MAIN_AUXVEC_PARAM);
3db52d94 258
9dcafc55
UD
259#ifdef SHARED
260 /* Auditing checkpoint: we have a new object. */
a1ffb40e 261 if (__glibc_unlikely (GLRO(dl_naudit) > 0))
9dcafc55
UD
262 {
263 struct audit_ifaces *afct = GLRO(dl_audit);
264 struct link_map *head = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
265 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
266 {
267 if (afct->preinit != NULL)
268 afct->preinit (&head->l_audit[cnt].cookie);
269
270 afct = afct->next;
271 }
272 }
273#endif
274
b5567b2a 275#ifdef SHARED
a1ffb40e 276 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS))
154d10bd 277 GLRO(dl_debug_printf) ("\ntransferring control: %s\n\n", argv[0]);
31161268
UD
278#endif
279
f737dfd0
CD
280#ifndef SHARED
281 _dl_debug_initialize (0, LM_ID_BASE);
282#endif
09d65ff3
UD
283#ifdef HAVE_CLEANUP_JMP_BUF
284 /* Memory for the cancellation buffer. */
285 struct pthread_unwind_buf unwind_buf;
286
287 int not_first_call;
288 not_first_call = setjmp ((struct __jmp_buf_tag *) unwind_buf.cancel_jmp_buf);
a1ffb40e 289 if (__glibc_likely (! not_first_call))
7ae4abe9 290 {
09d65ff3 291 struct pthread *self = THREAD_SELF;
7ae4abe9 292
09d65ff3
UD
293 /* Store old info. */
294 unwind_buf.priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf);
295 unwind_buf.priv.data.cleanup = THREAD_GETMEM (self, cleanup);
2b089f21 296
09d65ff3
UD
297 /* Store the new cleanup handler info. */
298 THREAD_SETMEM (self, cleanup_jmp_buf, &unwind_buf);
299
300 /* Run the program. */
301 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
7ae4abe9 302 }
7ae4abe9 303 else
47202270 304 {
3fa21fd8
UD
305 /* Remove the thread-local data. */
306# ifdef SHARED
ea1533e0 307 PTHFCT_CALL (ptr__nptl_deallocate_tsd, ());
3fa21fd8
UD
308# else
309 extern void __nptl_deallocate_tsd (void) __attribute ((weak));
310 __nptl_deallocate_tsd ();
311# endif
312
47202270
UD
313 /* One less thread. Decrement the counter. If it is zero we
314 terminate the entire process. */
315 result = 0;
09d65ff3 316# ifdef SHARED
ea1533e0 317 unsigned int *ptr = __libc_pthread_functions.ptr_nthreads;
e10bb107 318# ifdef PTR_DEMANGLE
ea1533e0 319 PTR_DEMANGLE (ptr);
e10bb107 320# endif
09d65ff3 321# else
9cfe5381
RM
322 extern unsigned int __nptl_nthreads __attribute ((weak));
323 unsigned int *const ptr = &__nptl_nthreads;
09d65ff3 324# endif
47202270
UD
325
326 if (! atomic_decrement_and_test (ptr))
47202270 327 /* Not much left to do but to exit the thread, not the process. */
e0db6517 328 __exit_thread ();
47202270 329 }
09d65ff3
UD
330#else
331 /* Nothing fancy, just call the function. */
332 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
7ae4abe9
UD
333#endif
334
335 exit (result);
7dea968e 336}