(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / elf / rtld.c
blobcd40f800881d4ba34d627383f686c850eba03c60
1 /* Run time dynamic linker.
2 Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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 <errno.h>
21 #include <dlfcn.h>
22 #include <fcntl.h>
23 #include <stdbool.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/mman.h> /* Check if MAP_ANON is defined. */
28 #include <sys/param.h>
29 #include <sys/stat.h>
30 #include <ldsodefs.h>
31 #include <stdio-common/_itoa.h>
32 #include <entry.h>
33 #include <fpu_control.h>
34 #include <hp-timing.h>
35 #include <bits/libc-lock.h>
36 #include "dynamic-link.h"
37 #include "dl-librecon.h"
38 #include <unsecvars.h>
39 #include <dl-cache.h>
40 #include <dl-procinfo.h>
41 #include <tls.h>
43 #include <assert.h>
45 /* Avoid PLT use for our local calls at startup. */
46 extern __typeof (__mempcpy) __mempcpy attribute_hidden;
48 /* GCC has mental blocks about _exit. */
49 extern __typeof (_exit) exit_internal asm ("_exit") attribute_hidden;
50 #define _exit exit_internal
52 /* Helper function to handle errors while resolving symbols. */
53 static void print_unresolved (int errcode, const char *objname,
54 const char *errsting);
56 /* Helper function to handle errors when a version is missing. */
57 static void print_missing_version (int errcode, const char *objname,
58 const char *errsting);
60 /* Print the various times we collected. */
61 static void print_statistics (hp_timing_t *total_timep);
63 /* This is a list of all the modes the dynamic loader can be in. */
64 enum mode { normal, list, verify, trace };
66 /* Process all environments variables the dynamic linker must recognize.
67 Since all of them start with `LD_' we are a bit smarter while finding
68 all the entries. */
69 static void process_envvars (enum mode *modep);
71 int _dl_argc attribute_relro attribute_hidden;
72 #ifdef DL_ARGV_NOT_RELRO
73 char **_dl_argv = NULL;
74 #else
75 char **_dl_argv attribute_relro = NULL;
76 #endif
77 INTDEF(_dl_argv)
79 /* Nonzero if we were run directly. */
80 unsigned int _dl_skip_args attribute_relro attribute_hidden;
82 #ifndef HAVE_INLINED_SYSCALLS
83 /* Set nonzero during loading and initialization of executable and
84 libraries, cleared before the executable's entry point runs. This
85 must not be initialized to nonzero, because the unused dynamic
86 linker loaded in for libc.so's "ld.so.1" dep will provide the
87 definition seen by libc.so's initializer; that value must be zero,
88 and will be since that dynamic linker's _dl_start and dl_main will
89 never be called. */
90 int _dl_starting_up = 0;
91 INTVARDEF(_dl_starting_up)
92 #endif
94 /* This is the structure which defines all variables global to ld.so
95 (except those which cannot be added for some reason). */
96 struct rtld_global _rtld_global =
98 /* Default presumption without further information is executable stack. */
99 ._dl_stack_flags = PF_R|PF_W|PF_X,
100 #ifdef _LIBC_REENTRANT
101 ._dl_load_lock = _RTLD_LOCK_RECURSIVE_INITIALIZER
102 #endif
104 /* If we would use strong_alias here the compiler would see a
105 non-hidden definition. This would undo the effect of the previous
106 declaration. So spell out was strong_alias does plus add the
107 visibility attribute. */
108 extern struct rtld_global _rtld_local
109 __attribute__ ((alias ("_rtld_global"), visibility ("hidden")));
112 /* This variable is similar to _rtld_local, but all values are
113 read-only after relocation. */
114 struct rtld_global_ro _rtld_global_ro attribute_relro =
116 /* Get architecture specific initializer. */
117 #include <dl-procinfo.c>
118 #ifdef NEED_DL_SYSINFO
119 ._dl_sysinfo = DL_SYSINFO_DEFAULT,
120 #endif
121 ._dl_debug_fd = STDERR_FILENO,
122 ._dl_use_load_bias = -2,
123 ._dl_correct_cache_id = _DL_CACHE_DEFAULT_ID,
124 ._dl_hwcap_mask = HWCAP_IMPORTANT,
125 ._dl_lazy = 1,
126 ._dl_fpu_control = _FPU_DEFAULT,
128 /* Function pointers. */
129 ._dl_get_origin = _dl_get_origin,
130 ._dl_dst_count = _dl_dst_count,
131 ._dl_dst_substitute = _dl_dst_substitute,
132 ._dl_map_object = _dl_map_object,
133 ._dl_map_object_deps = _dl_map_object_deps,
134 ._dl_relocate_object = _dl_relocate_object,
135 ._dl_check_map_versions = _dl_check_map_versions,
136 ._dl_init = _dl_init,
137 ._dl_debug_state = _dl_debug_state,
138 #ifndef MAP_COPY
139 ._dl_unload_cache = _dl_unload_cache,
140 #endif
141 ._dl_debug_printf = _dl_debug_printf,
142 ._dl_catch_error = _dl_catch_error,
143 ._dl_signal_error = _dl_signal_error,
144 ._dl_start_profile = _dl_start_profile,
145 ._dl_mcount = _dl_mcount_internal,
146 ._dl_lookup_symbol_x = _dl_lookup_symbol_x,
147 ._dl_check_caller = _dl_check_caller
149 /* If we would use strong_alias here the compiler would see a
150 non-hidden definition. This would undo the effect of the previous
151 declaration. So spell out was strong_alias does plus add the
152 visibility attribute. */
153 extern struct rtld_global_ro _rtld_local_ro
154 __attribute__ ((alias ("_rtld_global_ro"), visibility ("hidden")));
157 static void dl_main (const ElfW(Phdr) *phdr, ElfW(Word) phnum,
158 ElfW(Addr) *user_entry);
160 /* These two variables cannot be moved into .data.rel.ro. */
161 static struct libname_list _dl_rtld_libname;
162 static struct libname_list _dl_rtld_libname2;
164 /* We expect less than a second for relocation. */
165 #ifdef HP_SMALL_TIMING_AVAIL
166 # undef HP_TIMING_AVAIL
167 # define HP_TIMING_AVAIL HP_SMALL_TIMING_AVAIL
168 #endif
170 /* Variable for statistics. */
171 #ifndef HP_TIMING_NONAVAIL
172 static hp_timing_t relocate_time;
173 static hp_timing_t load_time attribute_relro;
174 static hp_timing_t start_time attribute_relro;
175 #endif
177 /* Additional definitions needed by TLS initialization. */
178 #ifdef TLS_INIT_HELPER
179 TLS_INIT_HELPER
180 #endif
182 /* Helper function for syscall implementation. */
183 #ifdef DL_SYSINFO_IMPLEMENTATION
184 DL_SYSINFO_IMPLEMENTATION
185 #endif
187 /* Before ld.so is relocated we must not access variables which need
188 relocations. This means variables which are exported. Variables
189 declared as static are fine. If we can mark a variable hidden this
190 is fine, too. The latter is important here. We can avoid setting
191 up a temporary link map for ld.so if we can mark _rtld_global as
192 hidden. */
193 #if defined PI_STATIC_AND_HIDDEN && defined HAVE_HIDDEN \
194 && defined HAVE_VISIBILITY_ATTRIBUTE
195 # define DONT_USE_BOOTSTRAP_MAP 1
196 #endif
198 #ifdef DONT_USE_BOOTSTRAP_MAP
199 static ElfW(Addr) _dl_start_final (void *arg);
200 #else
201 struct dl_start_final_info
203 struct link_map l;
204 #if !defined HP_TIMING_NONAVAIL && HP_TIMING_INLINE
205 hp_timing_t start_time;
206 #endif
208 static ElfW(Addr) _dl_start_final (void *arg,
209 struct dl_start_final_info *info);
210 #endif
212 /* These defined magically in the linker script. */
213 extern char _begin[] attribute_hidden;
214 extern char _etext[] attribute_hidden;
215 extern char _end[] attribute_hidden;
218 #ifdef RTLD_START
219 RTLD_START
220 #else
221 # error "sysdeps/MACHINE/dl-machine.h fails to define RTLD_START"
222 #endif
224 #ifndef VALIDX
225 # define VALIDX(tag) (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGNUM \
226 + DT_EXTRANUM + DT_VALTAGIDX (tag))
227 #endif
228 #ifndef ADDRIDX
229 # define ADDRIDX(tag) (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGNUM \
230 + DT_EXTRANUM + DT_VALNUM + DT_ADDRTAGIDX (tag))
231 #endif
233 /* This is the second half of _dl_start (below). It can be inlined safely
234 under DONT_USE_BOOTSTRAP_MAP, where it is careful not to make any GOT
235 references. When the tools don't permit us to avoid using a GOT entry
236 for _dl_rtld_global (no attribute_hidden support), we must make sure
237 this function is not inlined (see below). */
239 #ifdef DONT_USE_BOOTSTRAP_MAP
240 static inline ElfW(Addr) __attribute__ ((always_inline))
241 _dl_start_final (void *arg)
242 #else
243 static ElfW(Addr) __attribute__ ((noinline))
244 _dl_start_final (void *arg, struct dl_start_final_info *info)
245 #endif
247 ElfW(Addr) start_addr;
249 if (HP_TIMING_AVAIL)
251 /* If it hasn't happen yet record the startup time. */
252 if (! HP_TIMING_INLINE)
253 HP_TIMING_NOW (start_time);
254 #if !defined DONT_USE_BOOTSTRAP_MAP && !defined HP_TIMING_NONAVAIL
255 else
256 start_time = info->start_time;
257 #endif
259 /* Initialize the timing functions. */
260 HP_TIMING_DIFF_INIT ();
263 /* Transfer data about ourselves to the permanent link_map structure. */
264 #ifndef DONT_USE_BOOTSTRAP_MAP
265 GL(dl_rtld_map).l_addr = info->l.l_addr;
266 GL(dl_rtld_map).l_ld = info->l.l_ld;
267 memcpy (GL(dl_rtld_map).l_info, info->l.l_info,
268 sizeof GL(dl_rtld_map).l_info);
269 GL(dl_rtld_map).l_mach = info->l.l_mach;
270 #endif
271 _dl_setup_hash (&GL(dl_rtld_map));
272 GL(dl_rtld_map).l_real = &GL(dl_rtld_map);
273 GL(dl_rtld_map).l_opencount = 1;
274 GL(dl_rtld_map).l_map_start = (ElfW(Addr)) _begin;
275 GL(dl_rtld_map).l_map_end = (ElfW(Addr)) _end;
276 GL(dl_rtld_map).l_text_end = (ElfW(Addr)) _etext;
277 /* Copy the TLS related data if necessary. */
278 #if USE_TLS && !defined DONT_USE_BOOTSTRAP_MAP
279 # if USE___THREAD
280 assert (info->l.l_tls_modid != 0);
281 GL(dl_rtld_map).l_tls_blocksize = info->l.l_tls_blocksize;
282 GL(dl_rtld_map).l_tls_align = info->l.l_tls_align;
283 GL(dl_rtld_map).l_tls_firstbyte_offset = info->l.l_tls_firstbyte_offset;
284 GL(dl_rtld_map).l_tls_initimage_size = info->l.l_tls_initimage_size;
285 GL(dl_rtld_map).l_tls_initimage = info->l.l_tls_initimage;
286 GL(dl_rtld_map).l_tls_offset = info->l.l_tls_offset;
287 GL(dl_rtld_map).l_tls_modid = 1;
288 # else
289 assert (info->l.l_tls_modid == 0);
290 # if NO_TLS_OFFSET != 0
291 GL(dl_rtld_map).l_tls_offset = NO_TLS_OFFSET;
292 # endif
293 # endif
295 #endif
297 #if HP_TIMING_AVAIL
298 HP_TIMING_NOW (GL(dl_cpuclock_offset));
299 #endif
301 /* Initialize the stack end variable. */
302 __libc_stack_end = __builtin_frame_address (0);
304 /* Call the OS-dependent function to set up life so we can do things like
305 file access. It will call `dl_main' (below) to do all the real work
306 of the dynamic linker, and then unwind our frame and run the user
307 entry point on the same stack we entered on. */
308 start_addr = _dl_sysdep_start (arg, &dl_main);
310 #ifndef HP_TIMING_NONAVAIL
311 hp_timing_t rtld_total_time;
312 if (HP_TIMING_AVAIL)
314 hp_timing_t end_time;
316 /* Get the current time. */
317 HP_TIMING_NOW (end_time);
319 /* Compute the difference. */
320 HP_TIMING_DIFF (rtld_total_time, start_time, end_time);
322 #endif
324 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_STATISTICS, 0))
326 #ifndef HP_TIMING_NONAVAIL
327 print_statistics (&rtld_total_time);
328 #else
329 print_statistics (NULL);
330 #endif
333 return start_addr;
336 static ElfW(Addr) __attribute_used__ internal_function
337 _dl_start (void *arg)
339 #ifdef DONT_USE_BOOTSTRAP_MAP
340 # define bootstrap_map GL(dl_rtld_map)
341 #else
342 struct dl_start_final_info info;
343 # define bootstrap_map info.l
344 #endif
346 /* This #define produces dynamic linking inline functions for
347 bootstrap relocation instead of general-purpose relocation. */
348 #define RTLD_BOOTSTRAP
349 #define RESOLVE_MAP(sym, version, flags) \
350 ((*(sym))->st_shndx == SHN_UNDEF ? 0 : &bootstrap_map)
351 #define RESOLVE(sym, version, flags) \
352 ((*(sym))->st_shndx == SHN_UNDEF ? 0 : bootstrap_map.l_addr)
353 #include "dynamic-link.h"
355 if (HP_TIMING_INLINE && HP_TIMING_AVAIL)
356 #ifdef DONT_USE_BOOTSTRAP_MAP
357 HP_TIMING_NOW (start_time);
358 #else
359 HP_TIMING_NOW (info.start_time);
360 #endif
362 /* Partly clean the `bootstrap_map' structure up. Don't use
363 `memset' since it might not be built in or inlined and we cannot
364 make function calls at this point. Use '__builtin_memset' if we
365 know it is available. We do not have to clear the memory if we
366 do not have to use the temporary bootstrap_map. Global variables
367 are initialized to zero by default. */
368 #ifndef DONT_USE_BOOTSTRAP_MAP
369 # ifdef HAVE_BUILTIN_MEMSET
370 __builtin_memset (bootstrap_map.l_info, '\0', sizeof (bootstrap_map.l_info));
371 # else
372 for (size_t cnt = 0;
373 cnt < sizeof (bootstrap_map.l_info) / sizeof (bootstrap_map.l_info[0]);
374 ++cnt)
375 bootstrap_map.l_info[cnt] = 0;
376 # endif
377 #endif
379 /* Figure out the run-time load address of the dynamic linker itself. */
380 bootstrap_map.l_addr = elf_machine_load_address ();
382 /* Read our own dynamic section and fill in the info array. */
383 bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + elf_machine_dynamic ();
384 elf_get_dynamic_info (&bootstrap_map, NULL);
386 #if defined USE_TLS && NO_TLS_OFFSET != 0
387 bootstrap_map.l_tls_offset = NO_TLS_OFFSET;
388 #endif
390 /* Get the dynamic linker's own program header. First we need the ELF
391 file header. The `_begin' symbol created by the linker script points
392 to it. When we have something like GOTOFF relocs, we can use a plain
393 reference to find the runtime address. Without that, we have to rely
394 on the `l_addr' value, which is not the value we want when prelinked. */
395 #if USE___THREAD
396 dtv_t initdtv[3];
397 ElfW(Ehdr) *ehdr
398 # ifdef DONT_USE_BOOTSTRAP_MAP
399 = (ElfW(Ehdr) *) &_begin;
400 # else
401 # error This will not work with prelink.
402 = (ElfW(Ehdr) *) bootstrap_map.l_addr;
403 # endif
404 ElfW(Phdr) *phdr = (ElfW(Phdr) *) ((void *) ehdr + ehdr->e_phoff);
405 size_t cnt = ehdr->e_phnum; /* PT_TLS is usually the last phdr. */
406 while (cnt-- > 0)
407 if (phdr[cnt].p_type == PT_TLS)
409 void *tlsblock;
410 size_t max_align = MAX (TLS_INIT_TCB_ALIGN, phdr[cnt].p_align);
411 char *p;
413 bootstrap_map.l_tls_blocksize = phdr[cnt].p_memsz;
414 bootstrap_map.l_tls_align = phdr[cnt].p_align;
415 if (phdr[cnt].p_align == 0)
416 bootstrap_map.l_tls_firstbyte_offset = 0;
417 else
418 bootstrap_map.l_tls_firstbyte_offset = (phdr[cnt].p_vaddr
419 & (phdr[cnt].p_align - 1));
420 assert (bootstrap_map.l_tls_blocksize != 0);
421 bootstrap_map.l_tls_initimage_size = phdr[cnt].p_filesz;
422 bootstrap_map.l_tls_initimage = (void *) (bootstrap_map.l_addr
423 + phdr[cnt].p_vaddr);
425 /* We can now allocate the initial TLS block. This can happen
426 on the stack. We'll get the final memory later when we
427 know all about the various objects loaded at startup
428 time. */
429 # if TLS_TCB_AT_TP
430 tlsblock = alloca (roundup (bootstrap_map.l_tls_blocksize,
431 TLS_INIT_TCB_ALIGN)
432 + TLS_INIT_TCB_SIZE
433 + max_align);
434 # elif TLS_DTV_AT_TP
435 tlsblock = alloca (roundup (TLS_INIT_TCB_SIZE,
436 bootstrap_map.l_tls_align)
437 + bootstrap_map.l_tls_blocksize
438 + max_align);
439 # else
440 /* In case a model with a different layout for the TCB and DTV
441 is defined add another #elif here and in the following #ifs. */
442 # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
443 # endif
444 /* Align the TLS block. */
445 tlsblock = (void *) (((uintptr_t) tlsblock + max_align - 1)
446 & ~(max_align - 1));
448 /* Initialize the dtv. [0] is the length, [1] the generation
449 counter. */
450 initdtv[0].counter = 1;
451 initdtv[1].counter = 0;
453 /* Initialize the TLS block. */
454 # if TLS_TCB_AT_TP
455 initdtv[2].pointer = tlsblock;
456 # elif TLS_DTV_AT_TP
457 bootstrap_map.l_tls_offset = roundup (TLS_INIT_TCB_SIZE,
458 bootstrap_map.l_tls_align);
459 initdtv[2].pointer = (char *) tlsblock + bootstrap_map.l_tls_offset;
460 # else
461 # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
462 # endif
463 p = __mempcpy (initdtv[2].pointer, bootstrap_map.l_tls_initimage,
464 bootstrap_map.l_tls_initimage_size);
465 # ifdef HAVE_BUILTIN_MEMSET
466 __builtin_memset (p, '\0', (bootstrap_map.l_tls_blocksize
467 - bootstrap_map.l_tls_initimage_size));
468 # else
470 size_t remaining = (bootstrap_map.l_tls_blocksize
471 - bootstrap_map.l_tls_initimage_size);
472 while (remaining-- > 0)
473 *p++ = '\0';
475 #endif
477 /* Install the pointer to the dtv. */
479 /* Initialize the thread pointer. */
480 # if TLS_TCB_AT_TP
481 bootstrap_map.l_tls_offset
482 = roundup (bootstrap_map.l_tls_blocksize, TLS_INIT_TCB_ALIGN);
484 INSTALL_DTV ((char *) tlsblock + bootstrap_map.l_tls_offset,
485 initdtv);
487 const char *lossage = TLS_INIT_TP ((char *) tlsblock
488 + bootstrap_map.l_tls_offset, 0);
489 # elif TLS_DTV_AT_TP
490 INSTALL_DTV (tlsblock, initdtv);
491 const char *lossage = TLS_INIT_TP (tlsblock, 0);
492 # else
493 # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
494 # endif
495 if (__builtin_expect (lossage != NULL, 0))
496 _dl_fatal_printf ("cannot set up thread-local storage: %s\n",
497 lossage);
499 /* So far this is module number one. */
500 bootstrap_map.l_tls_modid = 1;
502 /* There can only be one PT_TLS entry. */
503 break;
505 #endif /* USE___THREAD */
507 #ifdef ELF_MACHINE_BEFORE_RTLD_RELOC
508 ELF_MACHINE_BEFORE_RTLD_RELOC (bootstrap_map.l_info);
509 #endif
511 if (bootstrap_map.l_addr || ! bootstrap_map.l_info[VALIDX(DT_GNU_PRELINKED)])
513 /* Relocate ourselves so we can do normal function calls and
514 data access using the global offset table. */
516 ELF_DYNAMIC_RELOCATE (&bootstrap_map, 0, 0);
519 /* Please note that we don't allow profiling of this object and
520 therefore need not test whether we have to allocate the array
521 for the relocation results (as done in dl-reloc.c). */
523 /* Now life is sane; we can call functions and access global data.
524 Set up to use the operating system facilities, and find out from
525 the operating system's program loader where to find the program
526 header table in core. Put the rest of _dl_start into a separate
527 function, that way the compiler cannot put accesses to the GOT
528 before ELF_DYNAMIC_RELOCATE. */
530 #ifdef DONT_USE_BOOTSTRAP_MAP
531 ElfW(Addr) entry = _dl_start_final (arg);
532 #else
533 ElfW(Addr) entry = _dl_start_final (arg, &info);
534 #endif
536 #ifndef ELF_MACHINE_START_ADDRESS
537 # define ELF_MACHINE_START_ADDRESS(map, start) (start)
538 #endif
540 return ELF_MACHINE_START_ADDRESS (GL(dl_ns)[LM_ID_BASE]._ns_loaded, entry);
546 /* Now life is peachy; we can do all normal operations.
547 On to the real work. */
549 /* Some helper functions. */
551 /* Arguments to relocate_doit. */
552 struct relocate_args
554 struct link_map *l;
555 int lazy;
558 struct map_args
560 /* Argument to map_doit. */
561 char *str;
562 struct link_map *loader;
563 int is_preloaded;
564 int mode;
565 /* Return value of map_doit. */
566 struct link_map *map;
569 /* Arguments to version_check_doit. */
570 struct version_check_args
572 int doexit;
573 int dotrace;
576 static void
577 relocate_doit (void *a)
579 struct relocate_args *args = (struct relocate_args *) a;
581 _dl_relocate_object (args->l, args->l->l_scope, args->lazy, 0);
584 static void
585 map_doit (void *a)
587 struct map_args *args = (struct map_args *) a;
588 args->map = _dl_map_object (args->loader, args->str,
589 args->is_preloaded, lt_library, 0, args->mode,
590 LM_ID_BASE);
593 static void
594 version_check_doit (void *a)
596 struct version_check_args *args = (struct version_check_args *) a;
597 if (_dl_check_all_versions (GL(dl_ns)[LM_ID_BASE]._ns_loaded, 1,
598 args->dotrace) && args->doexit)
599 /* We cannot start the application. Abort now. */
600 _exit (1);
604 static inline struct link_map *
605 find_needed (const char *name)
607 struct r_scope_elem *scope = &GL(dl_ns)[LM_ID_BASE]._ns_loaded->l_searchlist;
608 unsigned int n = scope->r_nlist;
610 while (n-- > 0)
611 if (_dl_name_match_p (name, scope->r_list[n]))
612 return scope->r_list[n];
614 /* Should never happen. */
615 return NULL;
618 static int
619 match_version (const char *string, struct link_map *map)
621 const char *strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
622 ElfW(Verdef) *def;
624 #define VERDEFTAG (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (DT_VERDEF))
625 if (map->l_info[VERDEFTAG] == NULL)
626 /* The file has no symbol versioning. */
627 return 0;
629 def = (ElfW(Verdef) *) ((char *) map->l_addr
630 + map->l_info[VERDEFTAG]->d_un.d_ptr);
631 while (1)
633 ElfW(Verdaux) *aux = (ElfW(Verdaux) *) ((char *) def + def->vd_aux);
635 /* Compare the version strings. */
636 if (strcmp (string, strtab + aux->vda_name) == 0)
637 /* Bingo! */
638 return 1;
640 /* If no more definitions we failed to find what we want. */
641 if (def->vd_next == 0)
642 break;
644 /* Next definition. */
645 def = (ElfW(Verdef) *) ((char *) def + def->vd_next);
648 return 0;
651 #ifdef _LIBC_REENTRANT
652 /* _dl_error_catch_tsd points to this for the single-threaded case.
653 It's reset by the thread library for multithreaded programs. */
654 void ** __attribute__ ((const))
655 _dl_initial_error_catch_tsd (void)
657 static void *data;
658 return &data;
660 #endif
662 #if defined SHARED && defined _LIBC_REENTRANT \
663 && defined __rtld_lock_default_lock_recursive
664 static void rtld_lock_default_lock_recursive (void *lock)
666 __rtld_lock_default_lock_recursive (lock);
669 static void rtld_lock_default_unlock_recursive (void *lock)
671 __rtld_lock_default_unlock_recursive (lock);
673 #endif
676 /* The library search path. */
677 static const char *library_path attribute_relro;
678 /* The list preloaded objects. */
679 static const char *preloadlist attribute_relro;
680 /* Nonzero if information about versions has to be printed. */
681 static int version_info attribute_relro;
683 static void
684 dl_main (const ElfW(Phdr) *phdr,
685 ElfW(Word) phnum,
686 ElfW(Addr) *user_entry)
688 const ElfW(Phdr) *ph;
689 enum mode mode;
690 struct link_map **preloads;
691 unsigned int npreloads;
692 struct link_map *main_map;
693 size_t file_size;
694 char *file;
695 bool has_interp = false;
696 unsigned int i;
697 bool prelinked = false;
698 bool rtld_is_main = false;
699 #ifndef HP_TIMING_NONAVAIL
700 hp_timing_t start;
701 hp_timing_t stop;
702 hp_timing_t diff;
703 #endif
704 #ifdef USE_TLS
705 void *tcbp;
706 #endif
708 #ifdef _LIBC_REENTRANT
709 /* Explicit initialization since the reloc would just be more work. */
710 GL(dl_error_catch_tsd) = &_dl_initial_error_catch_tsd;
711 #endif
713 #ifdef USE_TLS
714 GL(dl_init_static_tls) = &_dl_nothread_init_static_tls;
715 #endif
717 #if defined SHARED && defined _LIBC_REENTRANT \
718 && defined __rtld_lock_default_lock_recursive
719 GL(dl_rtld_lock_recursive) = rtld_lock_default_lock_recursive;
720 GL(dl_rtld_unlock_recursive) = rtld_lock_default_unlock_recursive;
721 #endif
723 /* The explicit initialization here is cheaper than processing the reloc
724 in the _rtld_local definition's initializer. */
725 GL(dl_make_stack_executable_hook) = &_dl_make_stack_executable;
727 /* Process the environment variable which control the behaviour. */
728 process_envvars (&mode);
730 #ifndef HAVE_INLINED_SYSCALLS
731 /* Set up a flag which tells we are just starting. */
732 INTUSE(_dl_starting_up) = 1;
733 #endif
735 if (*user_entry == (ElfW(Addr)) ENTRY_POINT)
737 /* Ho ho. We are not the program interpreter! We are the program
738 itself! This means someone ran ld.so as a command. Well, that
739 might be convenient to do sometimes. We support it by
740 interpreting the args like this:
742 ld.so PROGRAM ARGS...
744 The first argument is the name of a file containing an ELF
745 executable we will load and run with the following arguments.
746 To simplify life here, PROGRAM is searched for using the
747 normal rules for shared objects, rather than $PATH or anything
748 like that. We just load it and use its entry point; we don't
749 pay attention to its PT_INTERP command (we are the interpreter
750 ourselves). This is an easy way to test a new ld.so before
751 installing it. */
752 rtld_is_main = true;
754 /* Note the place where the dynamic linker actually came from. */
755 GL(dl_rtld_map).l_name = rtld_progname;
757 while (_dl_argc > 1)
758 if (! strcmp (INTUSE(_dl_argv)[1], "--list"))
760 mode = list;
761 GLRO(dl_lazy) = -1; /* This means do no dependency analysis. */
763 ++_dl_skip_args;
764 --_dl_argc;
765 ++INTUSE(_dl_argv);
767 else if (! strcmp (INTUSE(_dl_argv)[1], "--verify"))
769 mode = verify;
771 ++_dl_skip_args;
772 --_dl_argc;
773 ++INTUSE(_dl_argv);
775 else if (! strcmp (INTUSE(_dl_argv)[1], "--library-path")
776 && _dl_argc > 2)
778 library_path = INTUSE(_dl_argv)[2];
780 _dl_skip_args += 2;
781 _dl_argc -= 2;
782 INTUSE(_dl_argv) += 2;
784 else if (! strcmp (INTUSE(_dl_argv)[1], "--inhibit-rpath")
785 && _dl_argc > 2)
787 GLRO(dl_inhibit_rpath) = INTUSE(_dl_argv)[2];
789 _dl_skip_args += 2;
790 _dl_argc -= 2;
791 INTUSE(_dl_argv) += 2;
793 else
794 break;
796 /* If we have no further argument the program was called incorrectly.
797 Grant the user some education. */
798 if (_dl_argc < 2)
799 _dl_fatal_printf ("\
800 Usage: ld.so [OPTION]... EXECUTABLE-FILE [ARGS-FOR-PROGRAM...]\n\
801 You have invoked `ld.so', the helper program for shared library executables.\n\
802 This program usually lives in the file `/lib/ld.so', and special directives\n\
803 in executable files using ELF shared libraries tell the system's program\n\
804 loader to load the helper program from this file. This helper program loads\n\
805 the shared libraries needed by the program executable, prepares the program\n\
806 to run, and runs it. You may invoke this helper program directly from the\n\
807 command line to load and run an ELF executable file; this is like executing\n\
808 that file itself, but always uses this helper program from the file you\n\
809 specified, instead of the helper program file specified in the executable\n\
810 file you run. This is mostly of use for maintainers to test new versions\n\
811 of this helper program; chances are you did not intend to run this program.\n\
813 --list list all dependencies and how they are resolved\n\
814 --verify verify that given object really is a dynamically linked\n\
815 object we can handle\n\
816 --library-path PATH use given PATH instead of content of the environment\n\
817 variable LD_LIBRARY_PATH\n\
818 --inhibit-rpath LIST ignore RUNPATH and RPATH information in object names\n\
819 in LIST\n");
821 ++_dl_skip_args;
822 --_dl_argc;
823 ++INTUSE(_dl_argv);
825 /* Initialize the data structures for the search paths for shared
826 objects. */
827 _dl_init_paths (library_path);
829 /* The initialization of _dl_stack_flags done below assumes the
830 executable's PT_GNU_STACK may have been honored by the kernel, and
831 so a PT_GNU_STACK with PF_X set means the stack started out with
832 execute permission. However, this is not really true if the
833 dynamic linker is the executable the kernel loaded. For this
834 case, we must reinitialize _dl_stack_flags to match the dynamic
835 linker itself. If the dynamic linker was built with a
836 PT_GNU_STACK, then the kernel may have loaded us with a
837 nonexecutable stack that we will have to make executable when we
838 load the program below unless it has a PT_GNU_STACK indicating
839 nonexecutable stack is ok. */
841 for (ph = phdr; ph < &phdr[phnum]; ++ph)
842 if (ph->p_type == PT_GNU_STACK)
844 GL(dl_stack_flags) = ph->p_flags;
845 break;
848 if (__builtin_expect (mode, normal) == verify)
850 const char *objname;
851 const char *err_str = NULL;
852 struct map_args args;
854 args.str = rtld_progname;
855 args.loader = NULL;
856 args.is_preloaded = 0;
857 args.mode = __RTLD_OPENEXEC;
858 (void) _dl_catch_error (&objname, &err_str, map_doit, &args);
859 if (__builtin_expect (err_str != NULL, 0))
860 /* We don't free the returned string, the programs stops
861 anyway. */
862 _exit (EXIT_FAILURE);
864 else
866 HP_TIMING_NOW (start);
867 _dl_map_object (NULL, rtld_progname, 0, lt_library, 0,
868 __RTLD_OPENEXEC, LM_ID_BASE);
869 HP_TIMING_NOW (stop);
871 HP_TIMING_DIFF (load_time, start, stop);
874 /* Now the map for the main executable is available. */
875 main_map = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
877 phdr = main_map->l_phdr;
878 phnum = main_map->l_phnum;
879 /* We overwrite here a pointer to a malloc()ed string. But since
880 the malloc() implementation used at this point is the dummy
881 implementations which has no real free() function it does not
882 makes sense to free the old string first. */
883 main_map->l_name = (char *) "";
884 *user_entry = main_map->l_entry;
886 else
888 /* Create a link_map for the executable itself.
889 This will be what dlopen on "" returns. */
890 _dl_new_object ((char *) "", "", lt_executable, NULL, 0, LM_ID_BASE);
891 main_map = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
892 if (main_map == NULL)
893 _dl_fatal_printf ("cannot allocate memory for link map\n");
894 main_map->l_phdr = phdr;
895 main_map->l_phnum = phnum;
896 main_map->l_entry = *user_entry;
898 /* At this point we are in a bit of trouble. We would have to
899 fill in the values for l_dev and l_ino. But in general we
900 do not know where the file is. We also do not handle AT_EXECFD
901 even if it would be passed up.
903 We leave the values here defined to 0. This is normally no
904 problem as the program code itself is normally no shared
905 object and therefore cannot be loaded dynamically. Nothing
906 prevent the use of dynamic binaries and in these situations
907 we might get problems. We might not be able to find out
908 whether the object is already loaded. But since there is no
909 easy way out and because the dynamic binary must also not
910 have an SONAME we ignore this program for now. If it becomes
911 a problem we can force people using SONAMEs. */
913 /* We delay initializing the path structure until we got the dynamic
914 information for the program. */
917 main_map->l_map_end = 0;
918 main_map->l_text_end = 0;
919 /* Perhaps the executable has no PT_LOAD header entries at all. */
920 main_map->l_map_start = ~0;
921 /* We opened the file, account for it. */
922 ++main_map->l_opencount;
923 /* And it was opened directly. */
924 ++main_map->l_direct_opencount;
926 /* Scan the program header table for the dynamic section. */
927 for (ph = phdr; ph < &phdr[phnum]; ++ph)
928 switch (ph->p_type)
930 case PT_PHDR:
931 /* Find out the load address. */
932 main_map->l_addr = (ElfW(Addr)) phdr - ph->p_vaddr;
933 break;
934 case PT_DYNAMIC:
935 /* This tells us where to find the dynamic section,
936 which tells us everything we need to do. */
937 main_map->l_ld = (void *) main_map->l_addr + ph->p_vaddr;
938 break;
939 case PT_INTERP:
940 /* This "interpreter segment" was used by the program loader to
941 find the program interpreter, which is this program itself, the
942 dynamic linker. We note what name finds us, so that a future
943 dlopen call or DT_NEEDED entry, for something that wants to link
944 against the dynamic linker as a shared library, will know that
945 the shared object is already loaded. */
946 _dl_rtld_libname.name = ((const char *) main_map->l_addr
947 + ph->p_vaddr);
948 /* _dl_rtld_libname.next = NULL; Already zero. */
949 GL(dl_rtld_map).l_libname = &_dl_rtld_libname;
951 /* Ordinarilly, we would get additional names for the loader from
952 our DT_SONAME. This can't happen if we were actually linked as
953 a static executable (detect this case when we have no DYNAMIC).
954 If so, assume the filename component of the interpreter path to
955 be our SONAME, and add it to our name list. */
956 if (GL(dl_rtld_map).l_ld == NULL)
958 const char *p = NULL;
959 const char *cp = _dl_rtld_libname.name;
961 /* Find the filename part of the path. */
962 while (*cp != '\0')
963 if (*cp++ == '/')
964 p = cp;
966 if (p != NULL)
968 _dl_rtld_libname2.name = p;
969 /* _dl_rtld_libname2.next = NULL; Already zero. */
970 _dl_rtld_libname.next = &_dl_rtld_libname2;
974 has_interp = true;
975 break;
976 case PT_LOAD:
978 ElfW(Addr) mapstart;
979 ElfW(Addr) allocend;
981 /* Remember where the main program starts in memory. */
982 mapstart = (main_map->l_addr + (ph->p_vaddr & ~(ph->p_align - 1)));
983 if (main_map->l_map_start > mapstart)
984 main_map->l_map_start = mapstart;
986 /* Also where it ends. */
987 allocend = main_map->l_addr + ph->p_vaddr + ph->p_memsz;
988 if (main_map->l_map_end < allocend)
989 main_map->l_map_end = allocend;
990 if ((ph->p_flags & PF_X) && allocend > main_map->l_text_end)
991 main_map->l_text_end = allocend;
993 break;
994 #ifdef USE_TLS
995 case PT_TLS:
996 if (ph->p_memsz > 0)
998 /* Note that in the case the dynamic linker we duplicate work
999 here since we read the PT_TLS entry already in
1000 _dl_start_final. But the result is repeatable so do not
1001 check for this special but unimportant case. */
1002 main_map->l_tls_blocksize = ph->p_memsz;
1003 main_map->l_tls_align = ph->p_align;
1004 if (ph->p_align == 0)
1005 main_map->l_tls_firstbyte_offset = 0;
1006 else
1007 main_map->l_tls_firstbyte_offset = (ph->p_vaddr
1008 & (ph->p_align - 1));
1009 main_map->l_tls_initimage_size = ph->p_filesz;
1010 main_map->l_tls_initimage = (void *) ph->p_vaddr;
1012 /* This image gets the ID one. */
1013 GL(dl_tls_max_dtv_idx) = main_map->l_tls_modid = 1;
1015 break;
1016 #endif
1017 case PT_GNU_STACK:
1018 GL(dl_stack_flags) = ph->p_flags;
1019 break;
1021 case PT_GNU_RELRO:
1022 main_map->l_relro_addr = ph->p_vaddr;
1023 main_map->l_relro_size = ph->p_memsz;
1024 break;
1026 #ifdef USE_TLS
1027 /* Adjust the address of the TLS initialization image in case
1028 the executable is actually an ET_DYN object. */
1029 if (main_map->l_tls_initimage != NULL)
1030 main_map->l_tls_initimage
1031 = (char *) main_map->l_tls_initimage + main_map->l_addr;
1032 #endif
1033 if (! main_map->l_map_end)
1034 main_map->l_map_end = ~0;
1035 if (! main_map->l_text_end)
1036 main_map->l_text_end = ~0;
1037 if (! GL(dl_rtld_map).l_libname && GL(dl_rtld_map).l_name)
1039 /* We were invoked directly, so the program might not have a
1040 PT_INTERP. */
1041 _dl_rtld_libname.name = GL(dl_rtld_map).l_name;
1042 /* _dl_rtld_libname.next = NULL; Already zero. */
1043 GL(dl_rtld_map).l_libname = &_dl_rtld_libname;
1045 else
1046 assert (GL(dl_rtld_map).l_libname); /* How else did we get here? */
1048 if (! rtld_is_main)
1050 /* Extract the contents of the dynamic section for easy access. */
1051 elf_get_dynamic_info (main_map, NULL);
1052 /* Set up our cache of pointers into the hash table. */
1053 _dl_setup_hash (main_map);
1056 if (__builtin_expect (mode, normal) == verify)
1058 /* We were called just to verify that this is a dynamic
1059 executable using us as the program interpreter. Exit with an
1060 error if we were not able to load the binary or no interpreter
1061 is specified (i.e., this is no dynamically linked binary. */
1062 if (main_map->l_ld == NULL)
1063 _exit (1);
1065 /* We allow here some platform specific code. */
1066 #ifdef DISTINGUISH_LIB_VERSIONS
1067 DISTINGUISH_LIB_VERSIONS;
1068 #endif
1069 _exit (has_interp ? 0 : 2);
1072 if (! rtld_is_main)
1073 /* Initialize the data structures for the search paths for shared
1074 objects. */
1075 _dl_init_paths (library_path);
1077 /* Put the link_map for ourselves on the chain so it can be found by
1078 name. Note that at this point the global chain of link maps contains
1079 exactly one element, which is pointed to by dl_loaded. */
1080 if (! GL(dl_rtld_map).l_name)
1081 /* If not invoked directly, the dynamic linker shared object file was
1082 found by the PT_INTERP name. */
1083 GL(dl_rtld_map).l_name = (char *) GL(dl_rtld_map).l_libname->name;
1084 GL(dl_rtld_map).l_type = lt_library;
1085 main_map->l_next = &GL(dl_rtld_map);
1086 GL(dl_rtld_map).l_prev = main_map;
1087 ++GL(dl_ns)[LM_ID_BASE]._ns_nloaded;
1088 ++GL(dl_load_adds);
1090 /* If LD_USE_LOAD_BIAS env variable has not been seen, default
1091 to not using bias for non-prelinked PIEs and libraries
1092 and using it for executables or prelinked PIEs or libraries. */
1093 if (GLRO(dl_use_load_bias) == (ElfW(Addr)) -2)
1094 GLRO(dl_use_load_bias) = main_map->l_addr == 0 ? -1 : 0;
1096 /* Set up the program header information for the dynamic linker
1097 itself. It is needed in the dl_iterate_phdr() callbacks. */
1098 ElfW(Ehdr) *rtld_ehdr = (ElfW(Ehdr) *) GL(dl_rtld_map).l_map_start;
1099 ElfW(Phdr) *rtld_phdr = (ElfW(Phdr) *) (GL(dl_rtld_map).l_map_start
1100 + rtld_ehdr->e_phoff);
1101 GL(dl_rtld_map).l_phdr = rtld_phdr;
1102 GL(dl_rtld_map).l_phnum = rtld_ehdr->e_phnum;
1104 /* PT_GNU_RELRO is usually the last phdr. */
1105 size_t cnt = rtld_ehdr->e_phnum;
1106 while (cnt-- > 0)
1107 if (rtld_phdr[cnt].p_type == PT_GNU_RELRO)
1109 GL(dl_rtld_map).l_relro_addr = rtld_phdr[cnt].p_vaddr;
1110 GL(dl_rtld_map).l_relro_size = rtld_phdr[cnt].p_memsz;
1111 break;
1114 /* We have two ways to specify objects to preload: via environment
1115 variable and via the file /etc/ld.so.preload. The latter can also
1116 be used when security is enabled. */
1117 preloads = NULL;
1118 npreloads = 0;
1120 if (__builtin_expect (preloadlist != NULL, 0))
1122 /* The LD_PRELOAD environment variable gives list of libraries
1123 separated by white space or colons that are loaded before the
1124 executable's dependencies and prepended to the global scope
1125 list. If the binary is running setuid all elements
1126 containing a '/' are ignored since it is insecure. */
1127 char *list = strdupa (preloadlist);
1128 char *p;
1130 HP_TIMING_NOW (start);
1132 /* Prevent optimizing strsep. Speed is not important here. */
1133 while ((p = (strsep) (&list, " :")) != NULL)
1134 if (p[0] != '\0'
1135 && (__builtin_expect (! INTUSE(__libc_enable_secure), 1)
1136 || strchr (p, '/') == NULL))
1138 struct link_map *new_map = _dl_map_object (main_map, p, 1,
1139 lt_library, 0, 0,
1140 LM_ID_BASE);
1141 if (++new_map->l_opencount == 1)
1142 /* It is no duplicate. */
1143 ++npreloads;
1146 HP_TIMING_NOW (stop);
1147 HP_TIMING_DIFF (diff, start, stop);
1148 HP_TIMING_ACCUM_NT (load_time, diff);
1151 /* There usually is no ld.so.preload file, it should only be used
1152 for emergencies and testing. So the open call etc should usually
1153 fail. Using access() on a non-existing file is faster than using
1154 open(). So we do this first. If it succeeds we do almost twice
1155 the work but this does not matter, since it is not for production
1156 use. */
1157 static const char preload_file[] = "/etc/ld.so.preload";
1158 if (__builtin_expect (__access (preload_file, R_OK) == 0, 0))
1160 /* Read the contents of the file. */
1161 file = _dl_sysdep_read_whole_file (preload_file, &file_size,
1162 PROT_READ | PROT_WRITE);
1163 if (__builtin_expect (file != MAP_FAILED, 0))
1165 /* Parse the file. It contains names of libraries to be loaded,
1166 separated by white spaces or `:'. It may also contain
1167 comments introduced by `#'. */
1168 char *problem;
1169 char *runp;
1170 size_t rest;
1172 /* Eliminate comments. */
1173 runp = file;
1174 rest = file_size;
1175 while (rest > 0)
1177 char *comment = memchr (runp, '#', rest);
1178 if (comment == NULL)
1179 break;
1181 rest -= comment - runp;
1183 *comment = ' ';
1184 while (--rest > 0 && *++comment != '\n');
1187 /* We have one problematic case: if we have a name at the end of
1188 the file without a trailing terminating characters, we cannot
1189 place the \0. Handle the case separately. */
1190 if (file[file_size - 1] != ' ' && file[file_size - 1] != '\t'
1191 && file[file_size - 1] != '\n' && file[file_size - 1] != ':')
1193 problem = &file[file_size];
1194 while (problem > file && problem[-1] != ' '
1195 && problem[-1] != '\t'
1196 && problem[-1] != '\n' && problem[-1] != ':')
1197 --problem;
1199 if (problem > file)
1200 problem[-1] = '\0';
1202 else
1204 problem = NULL;
1205 file[file_size - 1] = '\0';
1208 HP_TIMING_NOW (start);
1210 if (file != problem)
1212 char *p;
1213 runp = file;
1214 while ((p = strsep (&runp, ": \t\n")) != NULL)
1215 if (p[0] != '\0')
1217 const char *objname;
1218 const char *err_str = NULL;
1219 struct map_args args;
1221 args.str = p;
1222 args.loader = main_map;
1223 args.is_preloaded = 1;
1224 args.mode = 0;
1226 (void) _dl_catch_error (&objname, &err_str, map_doit,
1227 &args);
1228 if (__builtin_expect (err_str != NULL, 0))
1230 _dl_error_printf ("\
1231 ERROR: ld.so: object '%s' from %s cannot be preloaded: ignored.\n",
1232 p, preload_file);
1233 /* No need to call free, this is still before
1234 the libc's malloc is used. */
1236 else if (++args.map->l_opencount == 1)
1237 /* It is no duplicate. */
1238 ++npreloads;
1242 if (problem != NULL)
1244 char *p = strndupa (problem, file_size - (problem - file));
1245 struct link_map *new_map = _dl_map_object (main_map, p, 1,
1246 lt_library, 0, 0,
1247 LM_ID_BASE);
1248 if (++new_map->l_opencount == 1)
1249 /* It is no duplicate. */
1250 ++npreloads;
1253 HP_TIMING_NOW (stop);
1254 HP_TIMING_DIFF (diff, start, stop);
1255 HP_TIMING_ACCUM_NT (load_time, diff);
1257 /* We don't need the file anymore. */
1258 __munmap (file, file_size);
1262 if (__builtin_expect (npreloads, 0) != 0)
1264 /* Set up PRELOADS with a vector of the preloaded libraries. */
1265 struct link_map *l;
1266 preloads = __alloca (npreloads * sizeof preloads[0]);
1267 l = GL(dl_rtld_map).l_next; /* End of the chain before preloads. */
1268 i = 0;
1271 preloads[i++] = l;
1272 l = l->l_next;
1273 } while (l);
1274 assert (i == npreloads);
1277 #if defined NEED_DL_SYSINFO || defined NEED_DL_SYSINFO_DSO
1278 struct link_map *sysinfo_map = NULL;
1279 if (GLRO(dl_sysinfo_dso) != NULL)
1281 /* Do an abridged version of the work _dl_map_object_from_fd would do
1282 to map in the object. It's already mapped and prelinked (and
1283 better be, since it's read-only and so we couldn't relocate it).
1284 We just want our data structures to describe it as if we had just
1285 mapped and relocated it normally. */
1286 struct link_map *l = _dl_new_object ((char *) "", "", lt_library, NULL,
1287 0, LM_ID_BASE);
1288 if (__builtin_expect (l != NULL, 1))
1290 static ElfW(Dyn) dyn_temp[DL_RO_DYN_TEMP_CNT] attribute_relro;
1292 l->l_phdr = ((const void *) GLRO(dl_sysinfo_dso)
1293 + GLRO(dl_sysinfo_dso)->e_phoff);
1294 l->l_phnum = GLRO(dl_sysinfo_dso)->e_phnum;
1295 for (uint_fast16_t i = 0; i < l->l_phnum; ++i)
1297 const ElfW(Phdr) *const ph = &l->l_phdr[i];
1298 if (ph->p_type == PT_DYNAMIC)
1300 l->l_ld = (void *) ph->p_vaddr;
1301 l->l_ldnum = ph->p_memsz / sizeof (ElfW(Dyn));
1303 else if (ph->p_type == PT_LOAD)
1305 if (! l->l_addr)
1306 l->l_addr = ph->p_vaddr;
1307 else if (ph->p_vaddr + ph->p_memsz >= l->l_map_end)
1308 l->l_map_end = ph->p_vaddr + ph->p_memsz;
1309 else if ((ph->p_flags & PF_X)
1310 && ph->p_vaddr + ph->p_memsz >= l->l_text_end)
1311 l->l_text_end = ph->p_vaddr + ph->p_memsz;
1314 l->l_map_start = (ElfW(Addr)) GLRO(dl_sysinfo_dso);
1315 l->l_addr = l->l_map_start - l->l_addr;
1316 l->l_map_end += l->l_addr;
1317 l->l_text_end += l->l_addr;
1318 l->l_ld = (void *) ((ElfW(Addr)) l->l_ld + l->l_addr);
1319 elf_get_dynamic_info (l, dyn_temp);
1320 _dl_setup_hash (l);
1321 l->l_relocated = 1;
1323 /* Now that we have the info handy, use the DSO image's soname
1324 so this object can be looked up by name. Note that we do not
1325 set l_name here. That field gives the file name of the DSO,
1326 and this DSO is not associated with any file. */
1327 if (l->l_info[DT_SONAME] != NULL)
1329 /* Work around a kernel problem. The kernel cannot handle
1330 addresses in the vsyscall DSO pages in writev() calls. */
1331 const char *dsoname = ((char *) D_PTR (l, l_info[DT_STRTAB])
1332 + l->l_info[DT_SONAME]->d_un.d_val);
1333 size_t len = strlen (dsoname);
1334 char *copy = malloc (len);
1335 if (copy == NULL)
1336 _dl_fatal_printf ("out of memory\n");
1337 l->l_libname->name = memcpy (copy, dsoname, len);
1340 /* We have a prelinked DSO preloaded by the system. */
1341 sysinfo_map = l;
1342 # ifdef NEED_DL_SYSINFO
1343 if (GLRO(dl_sysinfo) == DL_SYSINFO_DEFAULT)
1344 GLRO(dl_sysinfo) = GLRO(dl_sysinfo_dso)->e_entry + l->l_addr;
1345 # endif
1348 #endif
1350 /* Load all the libraries specified by DT_NEEDED entries. If LD_PRELOAD
1351 specified some libraries to load, these are inserted before the actual
1352 dependencies in the executable's searchlist for symbol resolution. */
1353 HP_TIMING_NOW (start);
1354 _dl_map_object_deps (main_map, preloads, npreloads, mode == trace, 0);
1355 HP_TIMING_NOW (stop);
1356 HP_TIMING_DIFF (diff, start, stop);
1357 HP_TIMING_ACCUM_NT (load_time, diff);
1359 /* Mark all objects as being in the global scope and set the open
1360 counter. */
1361 for (i = main_map->l_searchlist.r_nlist; i > 0; )
1363 --i;
1364 main_map->l_searchlist.r_list[i]->l_global = 1;
1365 ++main_map->l_searchlist.r_list[i]->l_opencount;
1368 #ifndef MAP_ANON
1369 /* We are done mapping things, so close the zero-fill descriptor. */
1370 __close (_dl_zerofd);
1371 _dl_zerofd = -1;
1372 #endif
1374 /* Remove _dl_rtld_map from the chain. */
1375 GL(dl_rtld_map).l_prev->l_next = GL(dl_rtld_map).l_next;
1376 if (GL(dl_rtld_map).l_next)
1377 GL(dl_rtld_map).l_next->l_prev = GL(dl_rtld_map).l_prev;
1379 if (__builtin_expect (GL(dl_rtld_map).l_opencount > 1, 1))
1381 /* Some DT_NEEDED entry referred to the interpreter object itself, so
1382 put it back in the list of visible objects. We insert it into the
1383 chain in symbol search order because gdb uses the chain's order as
1384 its symbol search order. */
1385 i = 1;
1386 while (main_map->l_searchlist.r_list[i] != &GL(dl_rtld_map))
1387 ++i;
1388 GL(dl_rtld_map).l_prev = main_map->l_searchlist.r_list[i - 1];
1389 if (__builtin_expect (mode, normal) == normal)
1391 GL(dl_rtld_map).l_next = (i + 1 < main_map->l_searchlist.r_nlist
1392 ? main_map->l_searchlist.r_list[i + 1]
1393 : NULL);
1394 #if defined NEED_DL_SYSINFO || defined NEED_DL_SYSINFO_DSO
1395 if (sysinfo_map != NULL
1396 && GL(dl_rtld_map).l_prev->l_next == sysinfo_map
1397 && GL(dl_rtld_map).l_next != sysinfo_map)
1398 GL(dl_rtld_map).l_prev = sysinfo_map;
1399 #endif
1401 else
1402 /* In trace mode there might be an invisible object (which we
1403 could not find) after the previous one in the search list.
1404 In this case it doesn't matter much where we put the
1405 interpreter object, so we just initialize the list pointer so
1406 that the assertion below holds. */
1407 GL(dl_rtld_map).l_next = GL(dl_rtld_map).l_prev->l_next;
1409 assert (GL(dl_rtld_map).l_prev->l_next == GL(dl_rtld_map).l_next);
1410 GL(dl_rtld_map).l_prev->l_next = &GL(dl_rtld_map);
1411 if (GL(dl_rtld_map).l_next != NULL)
1413 assert (GL(dl_rtld_map).l_next->l_prev == GL(dl_rtld_map).l_prev);
1414 GL(dl_rtld_map).l_next->l_prev = &GL(dl_rtld_map);
1418 /* Now let us see whether all libraries are available in the
1419 versions we need. */
1421 struct version_check_args args;
1422 args.doexit = mode == normal;
1423 args.dotrace = mode == trace;
1424 _dl_receive_error (print_missing_version, version_check_doit, &args);
1427 #ifdef USE_TLS
1428 /* Now it is time to determine the layout of the static TLS block
1429 and allocate it for the initial thread. Note that we always
1430 allocate the static block, we never defer it even if no
1431 DF_STATIC_TLS bit is set. The reason is that we know glibc will
1432 use the static model. First add the dynamic linker to the list
1433 if it also uses TLS. */
1434 if (GL(dl_rtld_map).l_tls_blocksize != 0)
1435 /* Assign a module ID. */
1436 GL(dl_rtld_map).l_tls_modid = _dl_next_tls_modid ();
1438 # ifndef TLS_INIT_TP_EXPENSIVE
1439 # define TLS_INIT_TP_EXPENSIVE 0
1440 # endif
1442 /* We do not initialize any of the TLS functionality unless any of the
1443 initial modules uses TLS. This makes dynamic loading of modules with
1444 TLS impossible, but to support it requires either eagerly doing setup
1445 now or lazily doing it later. Doing it now makes us incompatible with
1446 an old kernel that can't perform TLS_INIT_TP, even if no TLS is ever
1447 used. Trying to do it lazily is too hairy to try when there could be
1448 multiple threads (from a non-TLS-using libpthread). */
1449 if (!TLS_INIT_TP_EXPENSIVE || GL(dl_tls_max_dtv_idx) > 0)
1451 struct link_map *l;
1452 size_t nelem;
1453 struct dtv_slotinfo *slotinfo;
1455 /* Number of elements in the static TLS block. */
1456 GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx);
1458 /* Allocate the array which contains the information about the
1459 dtv slots. We allocate a few entries more than needed to
1460 avoid the need for reallocation. */
1461 nelem = GL(dl_tls_max_dtv_idx) + 1 + TLS_SLOTINFO_SURPLUS;
1463 /* Allocate. */
1464 GL(dl_tls_dtv_slotinfo_list) = (struct dtv_slotinfo_list *)
1465 malloc (sizeof (struct dtv_slotinfo_list)
1466 + nelem * sizeof (struct dtv_slotinfo));
1467 /* No need to check the return value. If memory allocation failed
1468 the program would have been terminated. */
1470 slotinfo = memset (GL(dl_tls_dtv_slotinfo_list)->slotinfo, '\0',
1471 nelem * sizeof (struct dtv_slotinfo));
1472 GL(dl_tls_dtv_slotinfo_list)->len = nelem;
1473 GL(dl_tls_dtv_slotinfo_list)->next = NULL;
1475 /* Fill in the information from the loaded modules. */
1476 for (l = main_map, i = 0; l != NULL; l = l->l_next)
1477 if (l->l_tls_blocksize != 0)
1478 /* This is a module with TLS data. Store the map reference.
1479 The generation counter is zero. */
1480 slotinfo[++i].map = l;
1481 assert (i == GL(dl_tls_max_dtv_idx));
1483 /* Compute the TLS offsets for the various blocks. */
1484 _dl_determine_tlsoffset ();
1486 /* Construct the static TLS block and the dtv for the initial
1487 thread. For some platforms this will include allocating memory
1488 for the thread descriptor. The memory for the TLS block will
1489 never be freed. It should be allocated accordingly. The dtv
1490 array can be changed if dynamic loading requires it. */
1491 tcbp = _dl_allocate_tls_storage ();
1492 if (tcbp == NULL)
1493 _dl_fatal_printf ("\
1494 cannot allocate TLS data structures for initial thread");
1496 /* Store for detection of the special case by __tls_get_addr
1497 so it knows not to pass this dtv to the normal realloc. */
1498 GL(dl_initial_dtv) = GET_DTV (tcbp);
1500 #endif
1502 if (__builtin_expect (mode, normal) != normal)
1504 /* We were run just to list the shared libraries. It is
1505 important that we do this before real relocation, because the
1506 functions we call below for output may no longer work properly
1507 after relocation. */
1508 struct link_map *l;
1510 if (GLRO(dl_debug_mask) & DL_DEBUG_PRELINK)
1512 struct r_scope_elem *scope = &main_map->l_searchlist;
1514 for (i = 0; i < scope->r_nlist; i++)
1516 l = scope->r_list [i];
1517 if (l->l_faked)
1519 _dl_printf ("\t%s => not found\n", l->l_libname->name);
1520 continue;
1522 if (_dl_name_match_p (GLRO(dl_trace_prelink), l))
1523 GLRO(dl_trace_prelink_map) = l;
1524 _dl_printf ("\t%s => %s (0x%0*Zx, 0x%0*Zx)",
1525 l->l_libname->name[0] ? l->l_libname->name
1526 : rtld_progname ?: "<main program>",
1527 l->l_name[0] ? l->l_name
1528 : rtld_progname ?: "<main program>",
1529 (int) sizeof l->l_map_start * 2,
1530 (size_t) l->l_map_start,
1531 (int) sizeof l->l_addr * 2,
1532 (size_t) l->l_addr);
1533 #ifdef USE_TLS
1534 if (l->l_tls_modid)
1535 _dl_printf (" TLS(0x%Zx, 0x%0*Zx)\n", l->l_tls_modid,
1536 (int) sizeof l->l_tls_offset * 2,
1537 (size_t) l->l_tls_offset);
1538 else
1539 #endif
1540 _dl_printf ("\n");
1543 else if (GLRO(dl_debug_mask) & DL_DEBUG_UNUSED)
1545 /* Look through the dependencies of the main executable
1546 and determine which of them is not actually
1547 required. */
1548 struct link_map *l = main_map;
1550 /* Relocate the main executable. */
1551 struct relocate_args args = { .l = l, .lazy = GLRO(dl_lazy) };
1552 _dl_receive_error (print_unresolved, relocate_doit, &args);
1554 /* This loop depends on the dependencies of the executable to
1555 correspond in number and order to the DT_NEEDED entries. */
1556 ElfW(Dyn) *dyn = main_map->l_ld;
1557 bool first = true;
1558 while (dyn->d_tag != DT_NULL)
1560 if (dyn->d_tag == DT_NEEDED)
1562 l = l->l_next;
1564 if (!l->l_used)
1566 if (first)
1568 _dl_printf ("Unused direct dependencies:\n");
1569 first = false;
1572 _dl_printf ("\t%s\n", l->l_name);
1576 ++dyn;
1579 _exit (first != true);
1581 else if (! main_map->l_info[DT_NEEDED])
1582 _dl_printf ("\tstatically linked\n");
1583 else
1585 for (l = main_map->l_next; l; l = l->l_next)
1586 if (l->l_faked)
1587 /* The library was not found. */
1588 _dl_printf ("\t%s => not found\n", l->l_libname->name);
1589 else if (strcmp (l->l_libname->name, l->l_name) == 0)
1590 _dl_printf ("\t%s (0x%0*Zx)\n", l->l_libname->name,
1591 (int) sizeof l->l_map_start * 2,
1592 (size_t) l->l_map_start);
1593 else
1594 _dl_printf ("\t%s => %s (0x%0*Zx)\n", l->l_libname->name,
1595 l->l_name, (int) sizeof l->l_map_start * 2,
1596 (size_t) l->l_map_start);
1599 if (__builtin_expect (mode, trace) != trace)
1600 for (i = 1; i < (unsigned int) _dl_argc; ++i)
1602 const ElfW(Sym) *ref = NULL;
1603 ElfW(Addr) loadbase;
1604 lookup_t result;
1606 result = _dl_lookup_symbol_x (INTUSE(_dl_argv)[i], main_map,
1607 &ref, main_map->l_scope, NULL,
1608 ELF_RTYPE_CLASS_PLT,
1609 DL_LOOKUP_ADD_DEPENDENCY, NULL);
1611 loadbase = LOOKUP_VALUE_ADDRESS (result);
1613 _dl_printf ("%s found at 0x%0*Zd in object at 0x%0*Zd\n",
1614 INTUSE(_dl_argv)[i],
1615 (int) sizeof ref->st_value * 2,
1616 (size_t) ref->st_value,
1617 (int) sizeof loadbase * 2, (size_t) loadbase);
1619 else
1621 /* If LD_WARN is set warn about undefined symbols. */
1622 if (GLRO(dl_lazy) >= 0 && GLRO(dl_verbose))
1624 /* We have to do symbol dependency testing. */
1625 struct relocate_args args;
1626 struct link_map *l;
1628 args.lazy = GLRO(dl_lazy);
1630 l = main_map;
1631 while (l->l_next)
1632 l = l->l_next;
1635 if (l != &GL(dl_rtld_map) && ! l->l_faked)
1637 args.l = l;
1638 _dl_receive_error (print_unresolved, relocate_doit,
1639 &args);
1641 l = l->l_prev;
1642 } while (l);
1644 if ((GLRO(dl_debug_mask) & DL_DEBUG_PRELINK)
1645 && GL(dl_rtld_map).l_opencount > 1)
1646 _dl_relocate_object (&GL(dl_rtld_map), main_map->l_scope,
1647 0, 0);
1650 #define VERNEEDTAG (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (DT_VERNEED))
1651 if (version_info)
1653 /* Print more information. This means here, print information
1654 about the versions needed. */
1655 int first = 1;
1656 struct link_map *map;
1658 for (map = main_map; map != NULL; map = map->l_next)
1660 const char *strtab;
1661 ElfW(Dyn) *dyn = map->l_info[VERNEEDTAG];
1662 ElfW(Verneed) *ent;
1664 if (dyn == NULL)
1665 continue;
1667 strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
1668 ent = (ElfW(Verneed) *) (map->l_addr + dyn->d_un.d_ptr);
1670 if (first)
1672 _dl_printf ("\n\tVersion information:\n");
1673 first = 0;
1676 _dl_printf ("\t%s:\n",
1677 map->l_name[0] ? map->l_name : rtld_progname);
1679 while (1)
1681 ElfW(Vernaux) *aux;
1682 struct link_map *needed;
1684 needed = find_needed (strtab + ent->vn_file);
1685 aux = (ElfW(Vernaux) *) ((char *) ent + ent->vn_aux);
1687 while (1)
1689 const char *fname = NULL;
1691 if (needed != NULL
1692 && match_version (strtab + aux->vna_name,
1693 needed))
1694 fname = needed->l_name;
1696 _dl_printf ("\t\t%s (%s) %s=> %s\n",
1697 strtab + ent->vn_file,
1698 strtab + aux->vna_name,
1699 aux->vna_flags & VER_FLG_WEAK
1700 ? "[WEAK] " : "",
1701 fname ?: "not found");
1703 if (aux->vna_next == 0)
1704 /* No more symbols. */
1705 break;
1707 /* Next symbol. */
1708 aux = (ElfW(Vernaux) *) ((char *) aux
1709 + aux->vna_next);
1712 if (ent->vn_next == 0)
1713 /* No more dependencies. */
1714 break;
1716 /* Next dependency. */
1717 ent = (ElfW(Verneed) *) ((char *) ent + ent->vn_next);
1723 _exit (0);
1726 if (main_map->l_info[ADDRIDX (DT_GNU_LIBLIST)]
1727 && ! __builtin_expect (GLRO(dl_profile) != NULL, 0))
1729 ElfW(Lib) *liblist, *liblistend;
1730 struct link_map **r_list, **r_listend, *l;
1731 const char *strtab = (const void *) D_PTR (main_map, l_info[DT_STRTAB]);
1733 assert (main_map->l_info[VALIDX (DT_GNU_LIBLISTSZ)] != NULL);
1734 liblist = (ElfW(Lib) *)
1735 main_map->l_info[ADDRIDX (DT_GNU_LIBLIST)]->d_un.d_ptr;
1736 liblistend = (ElfW(Lib) *)
1737 ((char *) liblist +
1738 main_map->l_info[VALIDX (DT_GNU_LIBLISTSZ)]->d_un.d_val);
1739 r_list = main_map->l_searchlist.r_list;
1740 r_listend = r_list + main_map->l_searchlist.r_nlist;
1742 for (; r_list < r_listend && liblist < liblistend; r_list++)
1744 l = *r_list;
1746 if (l == main_map)
1747 continue;
1749 /* If the library is not mapped where it should, fail. */
1750 if (l->l_addr)
1751 break;
1753 /* Next, check if checksum matches. */
1754 if (l->l_info [VALIDX(DT_CHECKSUM)] == NULL
1755 || l->l_info [VALIDX(DT_CHECKSUM)]->d_un.d_val
1756 != liblist->l_checksum)
1757 break;
1759 if (l->l_info [VALIDX(DT_GNU_PRELINKED)] == NULL
1760 || l->l_info [VALIDX(DT_GNU_PRELINKED)]->d_un.d_val
1761 != liblist->l_time_stamp)
1762 break;
1764 if (! _dl_name_match_p (strtab + liblist->l_name, l))
1765 break;
1767 ++liblist;
1771 if (r_list == r_listend && liblist == liblistend)
1772 prelinked = true;
1774 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0))
1775 _dl_debug_printf ("\nprelink checking: %s\n",
1776 prelinked ? "ok" : "failed");
1780 /* Initialize _r_debug. */
1781 struct r_debug *r = _dl_debug_initialize (GL(dl_rtld_map).l_addr);
1783 struct link_map *l = main_map;
1785 #ifdef ELF_MACHINE_DEBUG_SETUP
1787 /* Some machines (e.g. MIPS) don't use DT_DEBUG in this way. */
1789 ELF_MACHINE_DEBUG_SETUP (l, r);
1790 ELF_MACHINE_DEBUG_SETUP (&GL(dl_rtld_map), r);
1792 #else
1794 if (l->l_info[DT_DEBUG] != NULL)
1795 /* There is a DT_DEBUG entry in the dynamic section. Fill it in
1796 with the run-time address of the r_debug structure */
1797 l->l_info[DT_DEBUG]->d_un.d_ptr = (ElfW(Addr)) r;
1799 /* Fill in the pointer in the dynamic linker's own dynamic section, in
1800 case you run gdb on the dynamic linker directly. */
1801 if (GL(dl_rtld_map).l_info[DT_DEBUG] != NULL)
1802 GL(dl_rtld_map).l_info[DT_DEBUG]->d_un.d_ptr = (ElfW(Addr)) r;
1803 #endif
1806 /* Now set up the variable which helps the assembler startup code. */
1807 GL(dl_ns)[LM_ID_BASE]._ns_main_searchlist = &main_map->l_searchlist;
1808 GL(dl_ns)[LM_ID_BASE]._ns_global_scope[0] = &main_map->l_searchlist;
1810 /* Save the information about the original global scope list since
1811 we need it in the memory handling later. */
1812 GLRO(dl_initial_searchlist) = *GL(dl_ns)[LM_ID_BASE]._ns_main_searchlist;
1814 if (prelinked)
1816 struct link_map *l;
1818 if (main_map->l_info [ADDRIDX (DT_GNU_CONFLICT)] != NULL)
1820 ElfW(Rela) *conflict, *conflictend;
1821 #ifndef HP_TIMING_NONAVAIL
1822 hp_timing_t start;
1823 hp_timing_t stop;
1824 #endif
1826 HP_TIMING_NOW (start);
1827 assert (main_map->l_info [VALIDX (DT_GNU_CONFLICTSZ)] != NULL);
1828 conflict = (ElfW(Rela) *)
1829 main_map->l_info [ADDRIDX (DT_GNU_CONFLICT)]->d_un.d_ptr;
1830 conflictend = (ElfW(Rela) *)
1831 ((char *) conflict
1832 + main_map->l_info [VALIDX (DT_GNU_CONFLICTSZ)]->d_un.d_val);
1833 _dl_resolve_conflicts (main_map, conflict, conflictend);
1834 HP_TIMING_NOW (stop);
1835 HP_TIMING_DIFF (relocate_time, start, stop);
1839 /* Mark all the objects so we know they have been already relocated. */
1840 for (l = main_map; l != NULL; l = l->l_next)
1842 l->l_relocated = 1;
1843 if (l->l_relro_size)
1844 _dl_protect_relro (l);
1847 _dl_sysdep_start_cleanup ();
1849 else
1851 /* Now we have all the objects loaded. Relocate them all except for
1852 the dynamic linker itself. We do this in reverse order so that copy
1853 relocs of earlier objects overwrite the data written by later
1854 objects. We do not re-relocate the dynamic linker itself in this
1855 loop because that could result in the GOT entries for functions we
1856 call being changed, and that would break us. It is safe to relocate
1857 the dynamic linker out of order because it has no copy relocs (we
1858 know that because it is self-contained). */
1860 struct link_map *l;
1861 int consider_profiling = GLRO(dl_profile) != NULL;
1862 #ifndef HP_TIMING_NONAVAIL
1863 hp_timing_t start;
1864 hp_timing_t stop;
1865 hp_timing_t add;
1866 #endif
1868 /* If we are profiling we also must do lazy reloaction. */
1869 GLRO(dl_lazy) |= consider_profiling;
1871 l = main_map;
1872 while (l->l_next)
1873 l = l->l_next;
1875 HP_TIMING_NOW (start);
1878 /* While we are at it, help the memory handling a bit. We have to
1879 mark some data structures as allocated with the fake malloc()
1880 implementation in ld.so. */
1881 struct libname_list *lnp = l->l_libname->next;
1883 while (__builtin_expect (lnp != NULL, 0))
1885 lnp->dont_free = 1;
1886 lnp = lnp->next;
1889 if (l != &GL(dl_rtld_map))
1890 _dl_relocate_object (l, l->l_scope, GLRO(dl_lazy),
1891 consider_profiling);
1893 l = l->l_prev;
1895 while (l);
1896 HP_TIMING_NOW (stop);
1898 HP_TIMING_DIFF (relocate_time, start, stop);
1900 /* Do any necessary cleanups for the startup OS interface code.
1901 We do these now so that no calls are made after rtld re-relocation
1902 which might be resolved to different functions than we expect.
1903 We cannot do this before relocating the other objects because
1904 _dl_relocate_object might need to call `mprotect' for DT_TEXTREL. */
1905 _dl_sysdep_start_cleanup ();
1907 /* Now enable profiling if needed. Like the previous call,
1908 this has to go here because the calls it makes should use the
1909 rtld versions of the functions (particularly calloc()), but it
1910 needs to have _dl_profile_map set up by the relocator. */
1911 if (__builtin_expect (GL(dl_profile_map) != NULL, 0))
1912 /* We must prepare the profiling. */
1913 _dl_start_profile ();
1915 if (GL(dl_rtld_map).l_opencount > 1)
1917 /* There was an explicit ref to the dynamic linker as a shared lib.
1918 Re-relocate ourselves with user-controlled symbol definitions. */
1919 HP_TIMING_NOW (start);
1920 _dl_relocate_object (&GL(dl_rtld_map), main_map->l_scope, 0, 0);
1921 HP_TIMING_NOW (stop);
1922 HP_TIMING_DIFF (add, start, stop);
1923 HP_TIMING_ACCUM_NT (relocate_time, add);
1927 #ifndef NONTLS_INIT_TP
1928 # define NONTLS_INIT_TP do { } while (0)
1929 #endif
1931 #ifdef USE_TLS
1932 if (GL(dl_tls_max_dtv_idx) > 0 || USE___THREAD || !TLS_INIT_TP_EXPENSIVE)
1934 /* Now that we have completed relocation, the initializer data
1935 for the TLS blocks has its final values and we can copy them
1936 into the main thread's TLS area, which we allocated above. */
1937 _dl_allocate_tls_init (tcbp);
1939 /* And finally install it for the main thread. If ld.so itself uses
1940 TLS we know the thread pointer was initialized earlier. */
1941 const char *lossage = TLS_INIT_TP (tcbp, USE___THREAD);
1942 if (__builtin_expect (lossage != NULL, 0))
1943 _dl_fatal_printf ("cannot set up thread-local storage: %s\n", lossage);
1945 else
1946 #endif
1947 NONTLS_INIT_TP;
1949 /* Notify the debugger that all objects are now mapped in. */
1950 r->r_state = RT_ADD;
1951 _dl_debug_state ();
1953 #ifndef MAP_COPY
1954 /* We must munmap() the cache file. */
1955 _dl_unload_cache ();
1956 #endif
1958 /* Once we return, _dl_sysdep_start will invoke
1959 the DT_INIT functions and then *USER_ENTRY. */
1962 /* This is a little helper function for resolving symbols while
1963 tracing the binary. */
1964 static void
1965 print_unresolved (int errcode __attribute__ ((unused)), const char *objname,
1966 const char *errstring)
1968 if (objname[0] == '\0')
1969 objname = rtld_progname ?: "<main program>";
1970 _dl_error_printf ("%s (%s)\n", errstring, objname);
1973 /* This is a little helper function for resolving symbols while
1974 tracing the binary. */
1975 static void
1976 print_missing_version (int errcode __attribute__ ((unused)),
1977 const char *objname, const char *errstring)
1979 _dl_error_printf ("%s: %s: %s\n", rtld_progname ?: "<program name unknown>",
1980 objname, errstring);
1983 /* Nonzero if any of the debugging options is enabled. */
1984 static int any_debug attribute_relro;
1986 /* Process the string given as the parameter which explains which debugging
1987 options are enabled. */
1988 static void
1989 process_dl_debug (const char *dl_debug)
1991 /* When adding new entries make sure that the maximal length of a name
1992 is correctly handled in the LD_DEBUG_HELP code below. */
1993 static const struct
1995 unsigned char len;
1996 const char name[10];
1997 const char helptext[41];
1998 unsigned short int mask;
1999 } debopts[] =
2001 #define LEN_AND_STR(str) sizeof (str) - 1, str
2002 { LEN_AND_STR ("libs"), "display library search paths",
2003 DL_DEBUG_LIBS | DL_DEBUG_IMPCALLS },
2004 { LEN_AND_STR ("reloc"), "display relocation processing",
2005 DL_DEBUG_RELOC | DL_DEBUG_IMPCALLS },
2006 { LEN_AND_STR ("files"), "display progress for input file",
2007 DL_DEBUG_FILES | DL_DEBUG_IMPCALLS },
2008 { LEN_AND_STR ("symbols"), "display symbol table processing",
2009 DL_DEBUG_SYMBOLS | DL_DEBUG_IMPCALLS },
2010 { LEN_AND_STR ("bindings"), "display information about symbol binding",
2011 DL_DEBUG_BINDINGS | DL_DEBUG_IMPCALLS },
2012 { LEN_AND_STR ("versions"), "display version dependencies",
2013 DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS },
2014 { LEN_AND_STR ("all"), "all previous options combined",
2015 DL_DEBUG_LIBS | DL_DEBUG_RELOC | DL_DEBUG_FILES | DL_DEBUG_SYMBOLS
2016 | DL_DEBUG_BINDINGS | DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS },
2017 { LEN_AND_STR ("statistics"), "display relocation statistics",
2018 DL_DEBUG_STATISTICS },
2019 { LEN_AND_STR ("unused"), "determined unused DSOs",
2020 DL_DEBUG_UNUSED },
2021 { LEN_AND_STR ("help"), "display this help message and exit",
2022 DL_DEBUG_HELP },
2024 #define ndebopts (sizeof (debopts) / sizeof (debopts[0]))
2026 /* Skip separating white spaces and commas. */
2027 while (*dl_debug != '\0')
2029 if (*dl_debug != ' ' && *dl_debug != ',' && *dl_debug != ':')
2031 size_t cnt;
2032 size_t len = 1;
2034 while (dl_debug[len] != '\0' && dl_debug[len] != ' '
2035 && dl_debug[len] != ',' && dl_debug[len] != ':')
2036 ++len;
2038 for (cnt = 0; cnt < ndebopts; ++cnt)
2039 if (debopts[cnt].len == len
2040 && memcmp (dl_debug, debopts[cnt].name, len) == 0)
2042 GLRO(dl_debug_mask) |= debopts[cnt].mask;
2043 any_debug = 1;
2044 break;
2047 if (cnt == ndebopts)
2049 /* Display a warning and skip everything until next
2050 separator. */
2051 char *copy = strndupa (dl_debug, len);
2052 _dl_error_printf ("\
2053 warning: debug option `%s' unknown; try LD_DEBUG=help\n", copy);
2056 dl_debug += len;
2057 continue;
2060 ++dl_debug;
2063 if (GLRO(dl_debug_mask) & DL_DEBUG_HELP)
2065 size_t cnt;
2067 _dl_printf ("\
2068 Valid options for the LD_DEBUG environment variable are:\n\n");
2070 for (cnt = 0; cnt < ndebopts; ++cnt)
2071 _dl_printf (" %.*s%s%s\n", debopts[cnt].len, debopts[cnt].name,
2072 " " + debopts[cnt].len - 3,
2073 debopts[cnt].helptext);
2075 _dl_printf ("\n\
2076 To direct the debugging output into a file instead of standard output\n\
2077 a filename can be specified using the LD_DEBUG_OUTPUT environment variable.\n");
2078 _exit (0);
2082 /* Process all environments variables the dynamic linker must recognize.
2083 Since all of them start with `LD_' we are a bit smarter while finding
2084 all the entries. */
2085 extern char **_environ attribute_hidden;
2088 static void
2089 process_envvars (enum mode *modep)
2091 char **runp = _environ;
2092 char *envline;
2093 enum mode mode = normal;
2094 char *debug_output = NULL;
2096 /* This is the default place for profiling data file. */
2097 GLRO(dl_profile_output)
2098 = &"/var/tmp\0/var/profile"[INTUSE(__libc_enable_secure) ? 9 : 0];
2100 while ((envline = _dl_next_ld_env_entry (&runp)) != NULL)
2102 size_t len = 0;
2104 while (envline[len] != '\0' && envline[len] != '=')
2105 ++len;
2107 if (envline[len] != '=')
2108 /* This is a "LD_" variable at the end of the string without
2109 a '=' character. Ignore it since otherwise we will access
2110 invalid memory below. */
2111 continue;
2113 switch (len)
2115 case 4:
2116 /* Warning level, verbose or not. */
2117 if (memcmp (envline, "WARN", 4) == 0)
2118 GLRO(dl_verbose) = envline[5] != '\0';
2119 break;
2121 case 5:
2122 /* Debugging of the dynamic linker? */
2123 if (memcmp (envline, "DEBUG", 5) == 0)
2124 process_dl_debug (&envline[6]);
2125 break;
2127 case 7:
2128 /* Print information about versions. */
2129 if (memcmp (envline, "VERBOSE", 7) == 0)
2131 version_info = envline[8] != '\0';
2132 break;
2135 /* List of objects to be preloaded. */
2136 if (memcmp (envline, "PRELOAD", 7) == 0)
2138 preloadlist = &envline[8];
2139 break;
2142 /* Which shared object shall be profiled. */
2143 if (memcmp (envline, "PROFILE", 7) == 0 && envline[8] != '\0')
2144 GLRO(dl_profile) = &envline[8];
2145 break;
2147 case 8:
2148 /* Do we bind early? */
2149 if (memcmp (envline, "BIND_NOW", 8) == 0)
2151 GLRO(dl_lazy) = envline[9] == '\0';
2152 break;
2154 if (memcmp (envline, "BIND_NOT", 8) == 0)
2155 GLRO(dl_bind_not) = envline[9] != '\0';
2156 break;
2158 case 9:
2159 /* Test whether we want to see the content of the auxiliary
2160 array passed up from the kernel. */
2161 if (!INTUSE(__libc_enable_secure)
2162 && memcmp (envline, "SHOW_AUXV", 9) == 0)
2163 _dl_show_auxv ();
2164 break;
2166 case 10:
2167 /* Mask for the important hardware capabilities. */
2168 if (memcmp (envline, "HWCAP_MASK", 10) == 0)
2169 GLRO(dl_hwcap_mask) = __strtoul_internal (&envline[11], NULL,
2170 0, 0);
2171 break;
2173 case 11:
2174 /* Path where the binary is found. */
2175 if (!INTUSE(__libc_enable_secure)
2176 && memcmp (envline, "ORIGIN_PATH", 11) == 0)
2177 GLRO(dl_origin_path) = &envline[12];
2178 break;
2180 case 12:
2181 /* The library search path. */
2182 if (memcmp (envline, "LIBRARY_PATH", 12) == 0)
2184 library_path = &envline[13];
2185 break;
2188 /* Where to place the profiling data file. */
2189 if (memcmp (envline, "DEBUG_OUTPUT", 12) == 0)
2191 debug_output = &envline[13];
2192 break;
2195 if (!INTUSE(__libc_enable_secure)
2196 && memcmp (envline, "DYNAMIC_WEAK", 12) == 0)
2197 GLRO(dl_dynamic_weak) = 1;
2198 break;
2200 case 13:
2201 /* We might have some extra environment variable with length 13
2202 to handle. */
2203 #ifdef EXTRA_LD_ENVVARS_13
2204 EXTRA_LD_ENVVARS_13
2205 #endif
2206 if (!INTUSE(__libc_enable_secure)
2207 && memcmp (envline, "USE_LOAD_BIAS", 13) == 0)
2208 GLRO(dl_use_load_bias) = envline[14] == '1' ? -1 : 0;
2209 break;
2211 case 14:
2212 /* Where to place the profiling data file. */
2213 if (!INTUSE(__libc_enable_secure)
2214 && memcmp (envline, "PROFILE_OUTPUT", 14) == 0
2215 && envline[15] != '\0')
2216 GLRO(dl_profile_output) = &envline[15];
2217 break;
2219 case 16:
2220 /* The mode of the dynamic linker can be set. */
2221 if (memcmp (envline, "TRACE_PRELINKING", 16) == 0)
2223 mode = trace;
2224 GLRO(dl_verbose) = 1;
2225 GLRO(dl_debug_mask) |= DL_DEBUG_PRELINK;
2226 GLRO(dl_trace_prelink) = &envline[17];
2228 break;
2230 case 20:
2231 /* The mode of the dynamic linker can be set. */
2232 if (memcmp (envline, "TRACE_LOADED_OBJECTS", 20) == 0)
2233 mode = trace;
2234 break;
2236 /* We might have some extra environment variable to handle. This
2237 is tricky due to the pre-processing of the length of the name
2238 in the switch statement here. The code here assumes that added
2239 environment variables have a different length. */
2240 #ifdef EXTRA_LD_ENVVARS
2241 EXTRA_LD_ENVVARS
2242 #endif
2246 /* The caller wants this information. */
2247 *modep = mode;
2249 /* Extra security for SUID binaries. Remove all dangerous environment
2250 variables. */
2251 if (__builtin_expect (INTUSE(__libc_enable_secure), 0))
2253 static const char unsecure_envvars[] =
2254 #ifdef EXTRA_UNSECURE_ENVVARS
2255 EXTRA_UNSECURE_ENVVARS
2256 #endif
2257 UNSECURE_ENVVARS;
2258 const char *nextp;
2260 nextp = unsecure_envvars;
2263 unsetenv (nextp);
2264 /* We could use rawmemchr but this need not be fast. */
2265 nextp = (char *) (strchr) (nextp, '\0') + 1;
2267 while (*nextp != '\0');
2269 if (__access ("/etc/suid-debug", F_OK) != 0)
2271 unsetenv ("MALLOC_CHECK_");
2272 GLRO(dl_debug_mask) = 0;
2275 if (mode != normal)
2276 _exit (5);
2278 /* If we have to run the dynamic linker in debugging mode and the
2279 LD_DEBUG_OUTPUT environment variable is given, we write the debug
2280 messages to this file. */
2281 else if (any_debug && debug_output != NULL)
2283 #ifdef O_NOFOLLOW
2284 const int flags = O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW;
2285 #else
2286 const int flags = O_WRONLY | O_APPEND | O_CREAT;
2287 #endif
2288 size_t name_len = strlen (debug_output);
2289 char buf[name_len + 12];
2290 char *startp;
2292 buf[name_len + 11] = '\0';
2293 startp = _itoa (__getpid (), &buf[name_len + 11], 10, 0);
2294 *--startp = '.';
2295 startp = memcpy (startp - name_len, debug_output, name_len);
2297 GLRO(dl_debug_fd) = __open (startp, flags, DEFFILEMODE);
2298 if (GLRO(dl_debug_fd) == -1)
2299 /* We use standard output if opening the file failed. */
2300 GLRO(dl_debug_fd) = STDOUT_FILENO;
2305 /* Print the various times we collected. */
2306 static void
2307 __attribute ((noinline))
2308 print_statistics (hp_timing_t *rtld_total_timep)
2310 #ifndef HP_TIMING_NONAVAIL
2311 char buf[200];
2312 char *cp;
2313 char *wp;
2315 /* Total time rtld used. */
2316 if (HP_TIMING_AVAIL)
2318 HP_TIMING_PRINT (buf, sizeof (buf), *rtld_total_timep);
2319 _dl_debug_printf ("\nruntime linker statistics:\n"
2320 " total startup time in dynamic loader: %s\n", buf);
2322 /* Print relocation statistics. */
2323 char pbuf[30];
2324 HP_TIMING_PRINT (buf, sizeof (buf), relocate_time);
2325 cp = _itoa ((1000ULL * relocate_time) / *rtld_total_timep,
2326 pbuf + sizeof (pbuf), 10, 0);
2327 wp = pbuf;
2328 switch (pbuf + sizeof (pbuf) - cp)
2330 case 3:
2331 *wp++ = *cp++;
2332 case 2:
2333 *wp++ = *cp++;
2334 case 1:
2335 *wp++ = '.';
2336 *wp++ = *cp++;
2338 *wp = '\0';
2339 _dl_debug_printf ("\
2340 time needed for relocation: %s (%s%%)\n", buf, pbuf);
2342 #endif
2344 unsigned long int num_relative_relocations = 0;
2345 for (Lmid_t ns = 0; ns < DL_NNS; ++ns)
2347 if (GL(dl_ns)[ns]._ns_loaded == NULL)
2348 continue;
2350 struct r_scope_elem *scope = &GL(dl_ns)[ns]._ns_loaded->l_searchlist;
2352 for (unsigned int i = 0; i < scope->r_nlist; i++)
2354 struct link_map *l = scope->r_list [i];
2356 if (l->l_addr != 0 && l->l_info[VERSYMIDX (DT_RELCOUNT)])
2357 num_relative_relocations
2358 += l->l_info[VERSYMIDX (DT_RELCOUNT)]->d_un.d_val;
2359 #ifndef ELF_MACHINE_REL_RELATIVE
2360 /* Relative relocations are processed on these architectures if
2361 library is loaded to different address than p_vaddr or
2362 if not prelinked. */
2363 if ((l->l_addr != 0 || !l->l_info[VALIDX(DT_GNU_PRELINKED)])
2364 && l->l_info[VERSYMIDX (DT_RELACOUNT)])
2365 #else
2366 /* On e.g. IA-64 or Alpha, relative relocations are processed
2367 only if library is loaded to different address than p_vaddr. */
2368 if (l->l_addr != 0 && l->l_info[VERSYMIDX (DT_RELACOUNT)])
2369 #endif
2370 num_relative_relocations
2371 += l->l_info[VERSYMIDX (DT_RELACOUNT)]->d_un.d_val;
2375 _dl_debug_printf (" number of relocations: %lu\n"
2376 " number of relocations from cache: %lu\n"
2377 " number of relative relocations: %lu\n",
2378 GL(dl_num_relocations),
2379 GL(dl_num_cache_relocations),
2380 num_relative_relocations);
2382 #ifndef HP_TIMING_NONAVAIL
2383 /* Time spend while loading the object and the dependencies. */
2384 if (HP_TIMING_AVAIL)
2386 char pbuf[30];
2387 HP_TIMING_PRINT (buf, sizeof (buf), load_time);
2388 cp = _itoa ((1000ULL * load_time) / *rtld_total_timep,
2389 pbuf + sizeof (pbuf), 10, 0);
2390 wp = pbuf;
2391 switch (pbuf + sizeof (pbuf) - cp)
2393 case 3:
2394 *wp++ = *cp++;
2395 case 2:
2396 *wp++ = *cp++;
2397 case 1:
2398 *wp++ = '.';
2399 *wp++ = *cp++;
2401 *wp = '\0';
2402 _dl_debug_printf ("\
2403 time needed to load objects: %s (%s%%)\n",
2404 buf, pbuf);
2406 #endif