]> git.ipfire.org Git - thirdparty/glibc.git/blame - csu/libc-start.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / csu / libc-start.c
CommitLineData
04277e02 1/* Copyright (C) 1998-2019 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
7ae4abe9 30#include <tls.h>
4fb7a71f 31#ifndef SHARED
dde2652b 32# include <dl-osinfo.h>
35f1e827
UD
33# ifndef THREAD_SET_STACK_GUARD
34/* Only exported for architectures that don't store the stack guard canary
35 in thread local area. */
36uintptr_t __stack_chk_guard attribute_relro;
37# endif
c61b4d41
CD
38# ifndef THREAD_SET_POINTER_GUARD
39/* Only exported for architectures that don't store the pointer guard
40 value in thread local area. */
41uintptr_t __pointer_chk_guard_local
42 attribute_relro attribute_hidden __attribute__ ((nocommon));
43# endif
4fb7a71f
AJ
44#endif
45
47202270
UD
46#ifdef HAVE_PTR_NTHREADS
47/* We need atomic operations. */
48# include <atomic.h>
49#endif
50
17427edd 51
21ad0558
RM
52#ifndef SHARED
53# include <link.h>
54# include <dl-irel.h>
55
56# ifdef ELF_MACHINE_IRELA
57# define IREL_T ElfW(Rela)
58# define IPLT_START __rela_iplt_start
59# define IPLT_END __rela_iplt_end
60# define IREL elf_irela
61# elif defined ELF_MACHINE_IREL
62# define IREL_T ElfW(Rel)
63# define IPLT_START __rel_iplt_start
64# define IPLT_END __rel_iplt_end
65# define IREL elf_irel
66# endif
67
21ad0558
RM
68static void
69apply_irel (void)
70{
35a5b08b
RM
71# ifdef IREL
72 /* We use weak references for these so that we'll still work with a linker
73 that doesn't define them. Such a linker doesn't support IFUNC at all
74 and so uses won't work, but a statically-linked program that doesn't
75 use any IFUNC symbols won't have a problem. */
76 extern const IREL_T IPLT_START[] __attribute__ ((weak));
77 extern const IREL_T IPLT_END[] __attribute__ ((weak));
21ad0558
RM
78 for (const IREL_T *ipltent = IPLT_START; ipltent < IPLT_END; ++ipltent)
79 IREL (ipltent);
35a5b08b 80# endif
21ad0558
RM
81}
82#endif
83
84
2b089f21 85#ifdef LIBC_START_MAIN
11986c68
UD
86# ifdef LIBC_START_DISABLE_INLINE
87# define STATIC static
88# else
89# define STATIC static inline __attribute__ ((always_inline))
90# endif
2b089f21
RM
91#else
92# define STATIC
e97ed6dd 93# define LIBC_START_MAIN __libc_start_main
2b089f21
RM
94#endif
95
2b089f21 96#ifdef MAIN_AUXVEC_ARG
09d65ff3
UD
97/* main gets passed a pointer to the auxiliary. */
98# define MAIN_AUXVEC_DECL , void *
99# define MAIN_AUXVEC_PARAM , auxvec
100#else
101# define MAIN_AUXVEC_DECL
102# define MAIN_AUXVEC_PARAM
2b089f21
RM
103#endif
104
4158ba08
SP
105#ifndef ARCH_INIT_CPU_FEATURES
106# define ARCH_INIT_CPU_FEATURES()
107#endif
108
91ac3a7d
TMQMF
109#include <libc-start.h>
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
9d7a3741
L
144 _dl_relocate_static_pie ();
145
70d9946a 146 char **ev = &argv[argc + 1];
4f657581 147
70d9946a 148 __environ = ev;
ab95290c 149
ea4f25a7
UD
150 /* Store the lowest stack address. This is done in ld.so if this is
151 the code for the DSO. */
c0fb8a56 152 __libc_stack_end = stack_end;
31161268 153
8a30f00f
UD
154# ifdef HAVE_AUX_VECTOR
155 /* First process the auxiliary vector since we need to find the
156 program header to locate an eventually present PT_TLS entry. */
2b089f21 157# ifndef LIBC_START_MAIN_AUXVEC_ARG
70d9946a 158 ElfW(auxv_t) *auxvec;
2b089f21 159 {
70d9946a 160 char **evp = ev;
97026947
UD
161 while (*evp++ != NULL)
162 ;
70d9946a 163 auxvec = (ElfW(auxv_t) *) evp;
2b089f21
RM
164 }
165# endif
166 _dl_aux_init (auxvec);
288f7d79 167 if (GL(dl_phdr) == NULL)
8a30f00f 168# endif
288f7d79
RM
169 {
170 /* Starting from binutils-2.23, the linker will define the
171 magic symbol __ehdr_start to point to our own ELF header
172 if it is visible in a segment that also includes the phdrs.
173 So we can set up _dl_phdr and _dl_phnum even without any
174 information from auxv. */
175
ae9552cf
MR
176 extern const ElfW(Ehdr) __ehdr_start
177 __attribute__ ((weak, visibility ("hidden")));
288f7d79
RM
178 if (&__ehdr_start != NULL)
179 {
180 assert (__ehdr_start.e_phentsize == sizeof *GL(dl_phdr));
181 GL(dl_phdr) = (const void *) &__ehdr_start + __ehdr_start.e_phoff;
182 GL(dl_phnum) = __ehdr_start.e_phnum;
183 }
184 }
185
67e58f39
SP
186 /* Initialize very early so that tunables can use it. */
187 __libc_init_secure ();
188
189 __tunables_init (__environ);
190
4158ba08
SP
191 ARCH_INIT_CPU_FEATURES ();
192
21ad0558 193 /* Perform IREL{,A} relocations. */
91ac3a7d 194 ARCH_SETUP_IREL ();
1c3c269b 195
003a27e8 196 /* The stack guard goes into the TCB, so initialize it early. */
bcfa607b 197 ARCH_SETUP_TLS ();
a828c2f5 198
91ac3a7d
TMQMF
199 /* In some architectures, IREL{,A} relocations happen after TLS setup in
200 order to let IFUNC resolvers benefit from TCB information, e.g. powerpc's
201 hwcap and platform fields available in the TCB. */
202 ARCH_APPLY_IREL ();
203
35f1e827 204 /* Set up the stack checker's canary. */
5b656a0d 205 uintptr_t stack_chk_guard = _dl_setup_stack_chk_guard (_dl_random);
75fb247e 206# ifdef THREAD_SET_STACK_GUARD
35f1e827 207 THREAD_SET_STACK_GUARD (stack_chk_guard);
75fb247e 208# else
35f1e827 209 __stack_chk_guard = stack_chk_guard;
75fb247e 210# endif
c61b4d41 211
003a27e8
NA
212# ifdef DL_SYSDEP_OSCHECK
213 if (!__libc_multiple_libcs)
214 {
215 /* This needs to run to initiliaze _dl_osversion before TLS
216 setup might check it. */
217 DL_SYSDEP_OSCHECK (__libc_fatal);
218 }
219# endif
220
221 /* Initialize libpthread if linked in. */
222 if (__pthread_initialize_minimal != NULL)
223 __pthread_initialize_minimal ();
224
c61b4d41
CD
225 /* Set up the pointer guard value. */
226 uintptr_t pointer_chk_guard = _dl_setup_pointer_guard (_dl_random,
227 stack_chk_guard);
228# ifdef THREAD_SET_POINTER_GUARD
229 THREAD_SET_POINTER_GUARD (pointer_chk_guard);
230# else
231 __pointer_chk_guard_local = pointer_chk_guard;
232# endif
233
91ac3a7d 234#endif /* !SHARED */
75fb247e 235
3db52d94 236 /* Register the destructor of the dynamic linker if there is any. */
a1ffb40e 237 if (__glibc_likely (rtld_fini != NULL))
c08bc50a 238 __cxa_atexit ((void (*) (void *)) rtld_fini, NULL, NULL);
3db52d94 239
43c59a70 240#ifndef SHARED
dacc8ffa
UD
241 /* Call the initializer of the libc. This is only needed here if we
242 are compiling for the static library in which case we haven't
243 run the constructors in `_dl_start_user'. */
31161268
UD
244 __libc_init_first (argc, argv, __environ);
245
43c59a70
UD
246 /* Register the destructor of the program, if any. */
247 if (fini)
248 __cxa_atexit ((void (*) (void *)) fini, NULL, NULL);
249
9946f75a
UD
250 /* Some security at this point. Prevent starting a SUID binary where
251 the standard file descriptors are not opened. We have to do this
252 only for statically linked applications since otherwise the dynamic
253 loader did the work already. */
254 if (__builtin_expect (__libc_enable_secure, 0))
255 __libc_check_standard_fds ();
256#endif
257
4194bc66 258 /* Call the initializer of the program, if any. */
b5567b2a 259#ifdef SHARED
afdca0f2 260 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS, 0))
154d10bd 261 GLRO(dl_debug_printf) ("\ninitialize program: %s\n\n", argv[0]);
31161268 262#endif
4194bc66 263 if (init)
04395c90 264 (*init) (argc, argv, __environ MAIN_AUXVEC_PARAM);
3db52d94 265
9dcafc55
UD
266#ifdef SHARED
267 /* Auditing checkpoint: we have a new object. */
a1ffb40e 268 if (__glibc_unlikely (GLRO(dl_naudit) > 0))
9dcafc55
UD
269 {
270 struct audit_ifaces *afct = GLRO(dl_audit);
271 struct link_map *head = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
272 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
273 {
274 if (afct->preinit != NULL)
275 afct->preinit (&head->l_audit[cnt].cookie);
276
277 afct = afct->next;
278 }
279 }
280#endif
281
b5567b2a 282#ifdef SHARED
a1ffb40e 283 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS))
154d10bd 284 GLRO(dl_debug_printf) ("\ntransferring control: %s\n\n", argv[0]);
31161268
UD
285#endif
286
f737dfd0
CD
287#ifndef SHARED
288 _dl_debug_initialize (0, LM_ID_BASE);
289#endif
09d65ff3
UD
290#ifdef HAVE_CLEANUP_JMP_BUF
291 /* Memory for the cancellation buffer. */
292 struct pthread_unwind_buf unwind_buf;
293
294 int not_first_call;
295 not_first_call = setjmp ((struct __jmp_buf_tag *) unwind_buf.cancel_jmp_buf);
a1ffb40e 296 if (__glibc_likely (! not_first_call))
7ae4abe9 297 {
09d65ff3 298 struct pthread *self = THREAD_SELF;
7ae4abe9 299
09d65ff3
UD
300 /* Store old info. */
301 unwind_buf.priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf);
302 unwind_buf.priv.data.cleanup = THREAD_GETMEM (self, cleanup);
2b089f21 303
09d65ff3
UD
304 /* Store the new cleanup handler info. */
305 THREAD_SETMEM (self, cleanup_jmp_buf, &unwind_buf);
306
307 /* Run the program. */
308 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
7ae4abe9 309 }
7ae4abe9 310 else
47202270 311 {
3fa21fd8
UD
312 /* Remove the thread-local data. */
313# ifdef SHARED
ea1533e0 314 PTHFCT_CALL (ptr__nptl_deallocate_tsd, ());
3fa21fd8
UD
315# else
316 extern void __nptl_deallocate_tsd (void) __attribute ((weak));
317 __nptl_deallocate_tsd ();
318# endif
319
47202270
UD
320 /* One less thread. Decrement the counter. If it is zero we
321 terminate the entire process. */
322 result = 0;
09d65ff3 323# ifdef SHARED
ea1533e0 324 unsigned int *ptr = __libc_pthread_functions.ptr_nthreads;
e10bb107 325# ifdef PTR_DEMANGLE
ea1533e0 326 PTR_DEMANGLE (ptr);
e10bb107 327# endif
09d65ff3 328# else
9cfe5381
RM
329 extern unsigned int __nptl_nthreads __attribute ((weak));
330 unsigned int *const ptr = &__nptl_nthreads;
09d65ff3 331# endif
47202270
UD
332
333 if (! atomic_decrement_and_test (ptr))
47202270 334 /* Not much left to do but to exit the thread, not the process. */
e0db6517 335 __exit_thread ();
47202270 336 }
09d65ff3
UD
337#else
338 /* Nothing fancy, just call the function. */
339 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
7ae4abe9
UD
340#endif
341
342 exit (result);
7dea968e 343}