Fix tests-printers handling for cross compiling.
[glibc.git] / csu / libc-start.c
blob99c040ab971500353147fc7ac1037182a3a3eeec
1 /* Copyright (C) 1998-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
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.
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
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <assert.h>
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <ldsodefs.h>
23 #include <exit-thread.h>
25 extern void __libc_init_first (int argc, char **argv, char **envp);
27 extern int __libc_multiple_libcs;
29 #include <tls.h>
30 #ifndef SHARED
31 # include <dl-osinfo.h>
32 extern void __pthread_initialize_minimal (void);
33 # ifndef THREAD_SET_STACK_GUARD
34 /* Only exported for architectures that don't store the stack guard canary
35 in thread local area. */
36 uintptr_t __stack_chk_guard attribute_relro;
37 # endif
38 # ifndef THREAD_SET_POINTER_GUARD
39 /* Only exported for architectures that don't store the pointer guard
40 value in thread local area. */
41 uintptr_t __pointer_chk_guard_local
42 attribute_relro attribute_hidden __attribute__ ((nocommon));
43 # endif
44 #endif
46 #ifdef HAVE_PTR_NTHREADS
47 /* We need atomic operations. */
48 # include <atomic.h>
49 #endif
52 #ifndef SHARED
53 # include <link.h>
54 # include <dl-irel.h>
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
68 static void
69 apply_irel (void)
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));
78 for (const IREL_T *ipltent = IPLT_START; ipltent < IPLT_END; ++ipltent)
79 IREL (ipltent);
80 # endif
82 #endif
85 #ifdef LIBC_START_MAIN
86 # ifdef LIBC_START_DISABLE_INLINE
87 # define STATIC static
88 # else
89 # define STATIC static inline __attribute__ ((always_inline))
90 # endif
91 #else
92 # define STATIC
93 # define LIBC_START_MAIN __libc_start_main
94 #endif
96 #ifdef MAIN_AUXVEC_ARG
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
103 #endif
105 STATIC int LIBC_START_MAIN (int (*main) (int, char **, char **
106 MAIN_AUXVEC_DECL),
107 int argc,
108 char **argv,
109 #ifdef LIBC_START_MAIN_AUXVEC_ARG
110 ElfW(auxv_t) *auxvec,
111 #endif
112 __typeof (main) init,
113 void (*fini) (void),
114 void (*rtld_fini) (void),
115 void *stack_end)
116 __attribute__ ((noreturn));
119 /* Note: the fini parameter is ignored here for shared library. It
120 is registered with __cxa_atexit. This had the disadvantage that
121 finalizers were called in more than one place. */
122 STATIC int
123 LIBC_START_MAIN (int (*main) (int, char **, char ** MAIN_AUXVEC_DECL),
124 int argc, char **argv,
125 #ifdef LIBC_START_MAIN_AUXVEC_ARG
126 ElfW(auxv_t) *auxvec,
127 #endif
128 __typeof (main) init,
129 void (*fini) (void),
130 void (*rtld_fini) (void), void *stack_end)
132 /* Result of the 'main' function. */
133 int result;
135 __libc_multiple_libcs = &_dl_starting_up && !_dl_starting_up;
137 #ifndef SHARED
138 char **ev = &argv[argc + 1];
140 __environ = ev;
142 /* Store the lowest stack address. This is done in ld.so if this is
143 the code for the DSO. */
144 __libc_stack_end = stack_end;
146 # ifdef HAVE_AUX_VECTOR
147 /* First process the auxiliary vector since we need to find the
148 program header to locate an eventually present PT_TLS entry. */
149 # ifndef LIBC_START_MAIN_AUXVEC_ARG
150 ElfW(auxv_t) *auxvec;
152 char **evp = ev;
153 while (*evp++ != NULL)
155 auxvec = (ElfW(auxv_t) *) evp;
157 # endif
158 _dl_aux_init (auxvec);
159 if (GL(dl_phdr) == NULL)
160 # endif
162 /* Starting from binutils-2.23, the linker will define the
163 magic symbol __ehdr_start to point to our own ELF header
164 if it is visible in a segment that also includes the phdrs.
165 So we can set up _dl_phdr and _dl_phnum even without any
166 information from auxv. */
168 extern const ElfW(Ehdr) __ehdr_start
169 __attribute__ ((weak, visibility ("hidden")));
170 if (&__ehdr_start != NULL)
172 assert (__ehdr_start.e_phentsize == sizeof *GL(dl_phdr));
173 GL(dl_phdr) = (const void *) &__ehdr_start + __ehdr_start.e_phoff;
174 GL(dl_phnum) = __ehdr_start.e_phnum;
178 # ifdef DL_SYSDEP_OSCHECK
179 if (!__libc_multiple_libcs)
181 /* This needs to run to initiliaze _dl_osversion before TLS
182 setup might check it. */
183 DL_SYSDEP_OSCHECK (__libc_fatal);
185 # endif
187 /* Perform IREL{,A} relocations. */
188 apply_irel ();
190 /* Initialize the thread library at least a bit since the libgcc
191 functions are using thread functions if these are available and
192 we need to setup errno. */
193 __pthread_initialize_minimal ();
195 /* Set up the stack checker's canary. */
196 uintptr_t stack_chk_guard = _dl_setup_stack_chk_guard (_dl_random);
197 # ifdef THREAD_SET_STACK_GUARD
198 THREAD_SET_STACK_GUARD (stack_chk_guard);
199 # else
200 __stack_chk_guard = stack_chk_guard;
201 # endif
203 /* Set up the pointer guard value. */
204 uintptr_t pointer_chk_guard = _dl_setup_pointer_guard (_dl_random,
205 stack_chk_guard);
206 # ifdef THREAD_SET_POINTER_GUARD
207 THREAD_SET_POINTER_GUARD (pointer_chk_guard);
208 # else
209 __pointer_chk_guard_local = pointer_chk_guard;
210 # endif
212 #endif
214 /* Register the destructor of the dynamic linker if there is any. */
215 if (__glibc_likely (rtld_fini != NULL))
216 __cxa_atexit ((void (*) (void *)) rtld_fini, NULL, NULL);
218 #ifndef SHARED
219 /* Call the initializer of the libc. This is only needed here if we
220 are compiling for the static library in which case we haven't
221 run the constructors in `_dl_start_user'. */
222 __libc_init_first (argc, argv, __environ);
224 /* Register the destructor of the program, if any. */
225 if (fini)
226 __cxa_atexit ((void (*) (void *)) fini, NULL, NULL);
228 /* Some security at this point. Prevent starting a SUID binary where
229 the standard file descriptors are not opened. We have to do this
230 only for statically linked applications since otherwise the dynamic
231 loader did the work already. */
232 if (__builtin_expect (__libc_enable_secure, 0))
233 __libc_check_standard_fds ();
234 #endif
236 /* Call the initializer of the program, if any. */
237 #ifdef SHARED
238 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS, 0))
239 GLRO(dl_debug_printf) ("\ninitialize program: %s\n\n", argv[0]);
240 #endif
241 if (init)
242 (*init) (argc, argv, __environ MAIN_AUXVEC_PARAM);
244 #ifdef SHARED
245 /* Auditing checkpoint: we have a new object. */
246 if (__glibc_unlikely (GLRO(dl_naudit) > 0))
248 struct audit_ifaces *afct = GLRO(dl_audit);
249 struct link_map *head = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
250 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
252 if (afct->preinit != NULL)
253 afct->preinit (&head->l_audit[cnt].cookie);
255 afct = afct->next;
258 #endif
260 #ifdef SHARED
261 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_IMPCALLS))
262 GLRO(dl_debug_printf) ("\ntransferring control: %s\n\n", argv[0]);
263 #endif
265 #ifndef SHARED
266 _dl_debug_initialize (0, LM_ID_BASE);
267 #endif
268 #ifdef HAVE_CLEANUP_JMP_BUF
269 /* Memory for the cancellation buffer. */
270 struct pthread_unwind_buf unwind_buf;
272 int not_first_call;
273 not_first_call = setjmp ((struct __jmp_buf_tag *) unwind_buf.cancel_jmp_buf);
274 if (__glibc_likely (! not_first_call))
276 struct pthread *self = THREAD_SELF;
278 /* Store old info. */
279 unwind_buf.priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf);
280 unwind_buf.priv.data.cleanup = THREAD_GETMEM (self, cleanup);
282 /* Store the new cleanup handler info. */
283 THREAD_SETMEM (self, cleanup_jmp_buf, &unwind_buf);
285 /* Run the program. */
286 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
288 else
290 /* Remove the thread-local data. */
291 # ifdef SHARED
292 PTHFCT_CALL (ptr__nptl_deallocate_tsd, ());
293 # else
294 extern void __nptl_deallocate_tsd (void) __attribute ((weak));
295 __nptl_deallocate_tsd ();
296 # endif
298 /* One less thread. Decrement the counter. If it is zero we
299 terminate the entire process. */
300 result = 0;
301 # ifdef SHARED
302 unsigned int *ptr = __libc_pthread_functions.ptr_nthreads;
303 # ifdef PTR_DEMANGLE
304 PTR_DEMANGLE (ptr);
305 # endif
306 # else
307 extern unsigned int __nptl_nthreads __attribute ((weak));
308 unsigned int *const ptr = &__nptl_nthreads;
309 # endif
311 if (! atomic_decrement_and_test (ptr))
312 /* Not much left to do but to exit the thread, not the process. */
313 __exit_thread ();
315 #else
316 /* Nothing fancy, just call the function. */
317 result = main (argc, argv, __environ MAIN_AUXVEC_PARAM);
318 #endif
320 exit (result);