elf: Remove /etc/suid-debug support
[glibc.git] / elf / rtld.c
blob51b6d9f3264065509cb08c8e6a303066e41519b8
1 /* Run time dynamic linker.
2 Copyright (C) 1995-2023 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, see
17 <https://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <dlfcn.h>
21 #include <fcntl.h>
22 #include <stdbool.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/mman.h>
27 #include <sys/param.h>
28 #include <sys/stat.h>
29 #include <ldsodefs.h>
30 #include <_itoa.h>
31 #include <entry.h>
32 #include <fpu_control.h>
33 #include <hp-timing.h>
34 #include <libc-lock.h>
35 #include <unsecvars.h>
36 #include <dl-cache.h>
37 #include <dl-osinfo.h>
38 #include <dl-procinfo.h>
39 #include <dl-prop.h>
40 #include <dl-vdso.h>
41 #include <dl-vdso-setup.h>
42 #include <tls.h>
43 #include <stap-probe.h>
44 #include <stackinfo.h>
45 #include <not-cancel.h>
46 #include <array_length.h>
47 #include <libc-early-init.h>
48 #include <dl-main.h>
49 #include <gnu/lib-names.h>
50 #include <dl-tunables.h>
51 #include <get-dynamic-info.h>
52 #include <dl-execve.h>
53 #include <dl-find_object.h>
54 #include <dl-audit-check.h>
55 #include <dl-call_tls_init_tp.h>
57 #include <assert.h>
59 /* This #define produces dynamic linking inline functions for
60 bootstrap relocation instead of general-purpose relocation.
61 Since ld.so must not have any undefined symbols the result
62 is trivial: always the map of ld.so itself. */
63 #define RTLD_BOOTSTRAP
64 #define RESOLVE_MAP(map, scope, sym, version, flags) map
65 #include "dynamic-link.h"
67 /* Must include after <dl-machine.h> for DT_MIPS definition. */
68 #include <dl-debug.h>
70 /* Only enables rtld profiling for architectures which provides non generic
71 hp-timing support. The generic support requires either syscall
72 (clock_gettime), which will incur in extra overhead on loading time.
73 Using vDSO is also an option, but it will require extra support on loader
74 to setup the vDSO pointer before its usage. */
75 #if HP_TIMING_INLINE
76 # define RLTD_TIMING_DECLARE(var, classifier,...) \
77 classifier hp_timing_t var __VA_ARGS__
78 # define RTLD_TIMING_VAR(var) RLTD_TIMING_DECLARE (var, )
79 # define RTLD_TIMING_SET(var, value) (var) = (value)
80 # define RTLD_TIMING_REF(var) &(var)
82 static inline void
83 rtld_timer_start (hp_timing_t *var)
85 HP_TIMING_NOW (*var);
88 static inline void
89 rtld_timer_stop (hp_timing_t *var, hp_timing_t start)
91 hp_timing_t stop;
92 HP_TIMING_NOW (stop);
93 HP_TIMING_DIFF (*var, start, stop);
96 static inline void
97 rtld_timer_accum (hp_timing_t *sum, hp_timing_t start)
99 hp_timing_t stop;
100 rtld_timer_stop (&stop, start);
101 HP_TIMING_ACCUM_NT(*sum, stop);
103 #else
104 # define RLTD_TIMING_DECLARE(var, classifier...)
105 # define RTLD_TIMING_SET(var, value)
106 # define RTLD_TIMING_VAR(var)
107 # define RTLD_TIMING_REF(var) 0
108 # define rtld_timer_start(var)
109 # define rtld_timer_stop(var, start)
110 # define rtld_timer_accum(sum, start)
111 #endif
113 /* Avoid PLT use for our local calls at startup. */
114 extern __typeof (__mempcpy) __mempcpy attribute_hidden;
116 /* GCC has mental blocks about _exit. */
117 extern __typeof (_exit) exit_internal asm ("_exit") attribute_hidden;
118 #define _exit exit_internal
120 /* Helper function to handle errors while resolving symbols. */
121 static void print_unresolved (int errcode, const char *objname,
122 const char *errsting);
124 /* Helper function to handle errors when a version is missing. */
125 static void print_missing_version (int errcode, const char *objname,
126 const char *errsting);
128 /* Print the various times we collected. */
129 static void print_statistics (const hp_timing_t *total_timep);
131 /* Creates an empty audit list. */
132 static void audit_list_init (struct audit_list *);
134 /* Add a string to the end of the audit list, for later parsing. Must
135 not be called after audit_list_next. */
136 static void audit_list_add_string (struct audit_list *, const char *);
138 /* Add the audit strings from the link map, found in the dynamic
139 segment at TG (either DT_AUDIT and DT_DEPAUDIT). Must be called
140 before audit_list_next. */
141 static void audit_list_add_dynamic_tag (struct audit_list *,
142 struct link_map *,
143 unsigned int tag);
145 /* Extract the next audit module from the audit list. Only modules
146 for which dso_name_valid_for_suid is true are returned. Must be
147 called after all the audit_list_add_string,
148 audit_list_add_dynamic_tags calls. */
149 static const char *audit_list_next (struct audit_list *);
151 /* Initialize *STATE with the defaults. */
152 static void dl_main_state_init (struct dl_main_state *state);
154 /* Process all environments variables the dynamic linker must recognize.
155 Since all of them start with `LD_' we are a bit smarter while finding
156 all the entries. */
157 extern char **_environ attribute_hidden;
158 static void process_envvars (struct dl_main_state *state);
160 int _dl_argc attribute_relro attribute_hidden;
161 char **_dl_argv attribute_relro = NULL;
162 rtld_hidden_data_def (_dl_argv)
164 #ifndef THREAD_SET_STACK_GUARD
165 /* Only exported for architectures that don't store the stack guard canary
166 in thread local area. */
167 uintptr_t __stack_chk_guard attribute_relro;
168 #endif
170 /* Only exported for architectures that don't store the pointer guard
171 value in thread local area. */
172 uintptr_t __pointer_chk_guard_local attribute_relro attribute_hidden;
173 #ifndef THREAD_SET_POINTER_GUARD
174 strong_alias (__pointer_chk_guard_local, __pointer_chk_guard)
175 #endif
177 /* Check that AT_SECURE=0, or that the passed name does not contain
178 directories and is not overly long. Reject empty names
179 unconditionally. */
180 static bool
181 dso_name_valid_for_suid (const char *p)
183 if (__glibc_unlikely (__libc_enable_secure))
185 /* Ignore pathnames with directories for AT_SECURE=1
186 programs, and also skip overlong names. */
187 size_t len = strlen (p);
188 if (len >= SECURE_NAME_LIMIT || memchr (p, '/', len) != NULL)
189 return false;
191 return *p != '\0';
194 static void
195 audit_list_init (struct audit_list *list)
197 list->length = 0;
198 list->current_index = 0;
199 list->current_tail = NULL;
202 static void
203 audit_list_add_string (struct audit_list *list, const char *string)
205 /* Empty strings do not load anything. */
206 if (*string == '\0')
207 return;
209 if (list->length == array_length (list->audit_strings))
210 _dl_fatal_printf ("Fatal glibc error: Too many audit modules requested\n");
212 list->audit_strings[list->length++] = string;
214 /* Initialize processing of the first string for
215 audit_list_next. */
216 if (list->length == 1)
217 list->current_tail = string;
220 static void
221 audit_list_add_dynamic_tag (struct audit_list *list, struct link_map *main_map,
222 unsigned int tag)
224 ElfW(Dyn) *info = main_map->l_info[ADDRIDX (tag)];
225 const char *strtab = (const char *) D_PTR (main_map, l_info[DT_STRTAB]);
226 if (info != NULL)
227 audit_list_add_string (list, strtab + info->d_un.d_val);
230 static const char *
231 audit_list_next (struct audit_list *list)
233 if (list->current_tail == NULL)
234 return NULL;
236 while (true)
238 /* Advance to the next string in audit_strings if the current
239 string has been exhausted. */
240 while (*list->current_tail == '\0')
242 ++list->current_index;
243 if (list->current_index == list->length)
245 list->current_tail = NULL;
246 return NULL;
248 list->current_tail = list->audit_strings[list->current_index];
251 /* Split the in-string audit list at the next colon colon. */
252 size_t len = strcspn (list->current_tail, ":");
253 if (len > 0 && len < sizeof (list->fname))
255 memcpy (list->fname, list->current_tail, len);
256 list->fname[len] = '\0';
258 else
259 /* Mark the name as unusable for dso_name_valid_for_suid. */
260 list->fname[0] = '\0';
262 /* Skip over the substring and the following delimiter. */
263 list->current_tail += len;
264 if (*list->current_tail == ':')
265 ++list->current_tail;
267 /* If the name is valid, return it. */
268 if (dso_name_valid_for_suid (list->fname))
269 return list->fname;
271 /* Otherwise wrap around to find the next list element. . */
275 /* Count audit modules before they are loaded so GLRO(dl_naudit)
276 is not yet usable. */
277 static size_t
278 audit_list_count (struct audit_list *list)
280 /* Restore the audit_list iterator state at the end. */
281 const char *saved_tail = list->current_tail;
282 size_t naudit = 0;
284 assert (list->current_index == 0);
285 while (audit_list_next (list) != NULL)
286 naudit++;
287 list->current_tail = saved_tail;
288 list->current_index = 0;
289 return naudit;
292 static void
293 dl_main_state_init (struct dl_main_state *state)
295 audit_list_init (&state->audit_list);
296 state->library_path = NULL;
297 state->library_path_source = NULL;
298 state->preloadlist = NULL;
299 state->preloadarg = NULL;
300 state->glibc_hwcaps_prepend = NULL;
301 state->glibc_hwcaps_mask = NULL;
302 state->mode = rtld_mode_normal;
303 state->any_debug = false;
304 state->version_info = false;
307 #ifndef HAVE_INLINED_SYSCALLS
308 /* Set nonzero during loading and initialization of executable and
309 libraries, cleared before the executable's entry point runs. This
310 must not be initialized to nonzero, because the unused dynamic
311 linker loaded in for libc.so's "ld.so.1" dep will provide the
312 definition seen by libc.so's initializer; that value must be zero,
313 and will be since that dynamic linker's _dl_start and dl_main will
314 never be called. */
315 int _dl_starting_up = 0;
316 rtld_hidden_def (_dl_starting_up)
317 #endif
319 /* This is the structure which defines all variables global to ld.so
320 (except those which cannot be added for some reason). */
321 struct rtld_global _rtld_global =
323 /* Get architecture specific initializer. */
324 #include <dl-procruntime.c>
325 /* Generally the default presumption without further information is an
326 * executable stack but this is not true for all platforms. */
327 ._dl_stack_flags = DEFAULT_STACK_PERMS,
328 #ifdef _LIBC_REENTRANT
329 ._dl_load_lock = _RTLD_LOCK_RECURSIVE_INITIALIZER,
330 ._dl_load_write_lock = _RTLD_LOCK_RECURSIVE_INITIALIZER,
331 ._dl_load_tls_lock = _RTLD_LOCK_RECURSIVE_INITIALIZER,
332 #endif
333 ._dl_nns = 1,
334 ._dl_ns =
336 #ifdef _LIBC_REENTRANT
337 [LM_ID_BASE] = { ._ns_unique_sym_table
338 = { .lock = _RTLD_LOCK_RECURSIVE_INITIALIZER } }
339 #endif
342 /* If we would use strong_alias here the compiler would see a
343 non-hidden definition. This would undo the effect of the previous
344 declaration. So spell out what strong_alias does plus add the
345 visibility attribute. */
346 extern struct rtld_global _rtld_local
347 __attribute__ ((alias ("_rtld_global"), visibility ("hidden")));
350 /* This variable is similar to _rtld_local, but all values are
351 read-only after relocation. */
352 struct rtld_global_ro _rtld_global_ro attribute_relro =
354 /* Get architecture specific initializer. */
355 #include <dl-procinfo.c>
356 #ifdef NEED_DL_SYSINFO
357 ._dl_sysinfo = DL_SYSINFO_DEFAULT,
358 #endif
359 ._dl_debug_fd = STDERR_FILENO,
360 ._dl_lazy = 1,
361 ._dl_fpu_control = _FPU_DEFAULT,
362 ._dl_pagesize = EXEC_PAGESIZE,
363 ._dl_inhibit_cache = 0,
365 /* Function pointers. */
366 ._dl_debug_printf = _dl_debug_printf,
367 ._dl_mcount = _dl_mcount,
368 ._dl_lookup_symbol_x = _dl_lookup_symbol_x,
369 ._dl_open = _dl_open,
370 ._dl_close = _dl_close,
371 ._dl_catch_error = _dl_catch_error,
372 ._dl_error_free = _dl_error_free,
373 ._dl_tls_get_addr_soft = _dl_tls_get_addr_soft,
374 ._dl_libc_freeres = __rtld_libc_freeres,
376 /* If we would use strong_alias here the compiler would see a
377 non-hidden definition. This would undo the effect of the previous
378 declaration. So spell out was strong_alias does plus add the
379 visibility attribute. */
380 extern struct rtld_global_ro _rtld_local_ro
381 __attribute__ ((alias ("_rtld_global_ro"), visibility ("hidden")));
384 static void dl_main (const ElfW(Phdr) *phdr, ElfW(Word) phnum,
385 ElfW(Addr) *user_entry, ElfW(auxv_t) *auxv);
387 /* These two variables cannot be moved into .data.rel.ro. */
388 static struct libname_list _dl_rtld_libname;
389 static struct libname_list _dl_rtld_libname2;
391 /* Variable for statistics. */
392 RLTD_TIMING_DECLARE (relocate_time, static);
393 RLTD_TIMING_DECLARE (load_time, static, attribute_relro);
394 RLTD_TIMING_DECLARE (start_time, static, attribute_relro);
396 /* Additional definitions needed by TLS initialization. */
397 #ifdef TLS_INIT_HELPER
398 TLS_INIT_HELPER
399 #endif
401 /* Helper function for syscall implementation. */
402 #ifdef DL_SYSINFO_IMPLEMENTATION
403 DL_SYSINFO_IMPLEMENTATION
404 #endif
406 /* Before ld.so is relocated we must not access variables which need
407 relocations. This means variables which are exported. Variables
408 declared as static are fine. If we can mark a variable hidden this
409 is fine, too. The latter is important here. We can avoid setting
410 up a temporary link map for ld.so if we can mark _rtld_global as
411 hidden. */
412 #ifndef HIDDEN_VAR_NEEDS_DYNAMIC_RELOC
413 # define DONT_USE_BOOTSTRAP_MAP 1
414 #endif
416 #ifdef DONT_USE_BOOTSTRAP_MAP
417 static ElfW(Addr) _dl_start_final (void *arg);
418 #else
419 struct dl_start_final_info
421 struct link_map l;
422 RTLD_TIMING_VAR (start_time);
424 static ElfW(Addr) _dl_start_final (void *arg,
425 struct dl_start_final_info *info);
426 #endif
428 /* These are defined magically by the linker. */
429 extern const ElfW(Ehdr) __ehdr_start attribute_hidden;
430 extern char _etext[] attribute_hidden;
431 extern char _end[] attribute_hidden;
434 #ifdef RTLD_START
435 RTLD_START
436 #else
437 # error "sysdeps/MACHINE/dl-machine.h fails to define RTLD_START"
438 #endif
440 /* This is the second half of _dl_start (below). It can be inlined safely
441 under DONT_USE_BOOTSTRAP_MAP, where it is careful not to make any GOT
442 references. When the tools don't permit us to avoid using a GOT entry
443 for _dl_rtld_global (no attribute_hidden support), we must make sure
444 this function is not inlined (see below). */
446 #ifdef DONT_USE_BOOTSTRAP_MAP
447 static inline ElfW(Addr) __attribute__ ((always_inline))
448 _dl_start_final (void *arg)
449 #else
450 static ElfW(Addr) __attribute__ ((noinline))
451 _dl_start_final (void *arg, struct dl_start_final_info *info)
452 #endif
454 ElfW(Addr) start_addr;
456 /* Do not use an initializer for these members because it would
457 interfere with __rtld_static_init. */
458 GLRO (dl_find_object) = &_dl_find_object;
460 /* If it hasn't happen yet record the startup time. */
461 rtld_timer_start (&start_time);
462 #if !defined DONT_USE_BOOTSTRAP_MAP
463 RTLD_TIMING_SET (start_time, info->start_time);
464 #endif
466 /* Transfer data about ourselves to the permanent link_map structure. */
467 #ifndef DONT_USE_BOOTSTRAP_MAP
468 GL(dl_rtld_map).l_addr = info->l.l_addr;
469 GL(dl_rtld_map).l_ld = info->l.l_ld;
470 GL(dl_rtld_map).l_ld_readonly = info->l.l_ld_readonly;
471 memcpy (GL(dl_rtld_map).l_info, info->l.l_info,
472 sizeof GL(dl_rtld_map).l_info);
473 GL(dl_rtld_map).l_mach = info->l.l_mach;
474 GL(dl_rtld_map).l_relocated = 1;
475 #endif
476 _dl_setup_hash (&GL(dl_rtld_map));
477 GL(dl_rtld_map).l_real = &GL(dl_rtld_map);
478 GL(dl_rtld_map).l_map_start = (ElfW(Addr)) &__ehdr_start;
479 GL(dl_rtld_map).l_map_end = (ElfW(Addr)) _end;
480 /* Copy the TLS related data if necessary. */
481 #ifndef DONT_USE_BOOTSTRAP_MAP
482 # if NO_TLS_OFFSET != 0
483 GL(dl_rtld_map).l_tls_offset = NO_TLS_OFFSET;
484 # endif
485 #endif
487 /* Initialize the stack end variable. */
488 __libc_stack_end = __builtin_frame_address (0);
490 /* Call the OS-dependent function to set up life so we can do things like
491 file access. It will call `dl_main' (below) to do all the real work
492 of the dynamic linker, and then unwind our frame and run the user
493 entry point on the same stack we entered on. */
494 start_addr = _dl_sysdep_start (arg, &dl_main);
496 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_STATISTICS))
498 RTLD_TIMING_VAR (rtld_total_time);
499 rtld_timer_stop (&rtld_total_time, start_time);
500 print_statistics (RTLD_TIMING_REF(rtld_total_time));
503 #ifndef ELF_MACHINE_START_ADDRESS
504 # define ELF_MACHINE_START_ADDRESS(map, start) (start)
505 #endif
506 return ELF_MACHINE_START_ADDRESS (GL(dl_ns)[LM_ID_BASE]._ns_loaded, start_addr);
509 #ifdef DONT_USE_BOOTSTRAP_MAP
510 # define bootstrap_map GL(dl_rtld_map)
511 #else
512 # define bootstrap_map info.l
513 #endif
515 static ElfW(Addr) __attribute_used__
516 _dl_start (void *arg)
518 #ifdef DONT_USE_BOOTSTRAP_MAP
519 rtld_timer_start (&start_time);
520 #else
521 struct dl_start_final_info info;
522 rtld_timer_start (&info.start_time);
523 #endif
525 /* Partly clean the `bootstrap_map' structure up. Don't use
526 `memset' since it might not be built in or inlined and we cannot
527 make function calls at this point. Use '__builtin_memset' if we
528 know it is available. We do not have to clear the memory if we
529 do not have to use the temporary bootstrap_map. Global variables
530 are initialized to zero by default. */
531 #ifndef DONT_USE_BOOTSTRAP_MAP
532 # ifdef HAVE_BUILTIN_MEMSET
533 __builtin_memset (bootstrap_map.l_info, '\0', sizeof (bootstrap_map.l_info));
534 # else
535 for (size_t cnt = 0;
536 cnt < sizeof (bootstrap_map.l_info) / sizeof (bootstrap_map.l_info[0]);
537 ++cnt)
538 bootstrap_map.l_info[cnt] = 0;
539 # endif
540 #endif
542 /* Figure out the run-time load address of the dynamic linker itself. */
543 bootstrap_map.l_addr = elf_machine_load_address ();
545 /* Read our own dynamic section and fill in the info array. */
546 bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + elf_machine_dynamic ();
547 bootstrap_map.l_ld_readonly = DL_RO_DYN_SECTION;
548 elf_get_dynamic_info (&bootstrap_map, true, false);
550 #if NO_TLS_OFFSET != 0
551 bootstrap_map.l_tls_offset = NO_TLS_OFFSET;
552 #endif
554 #ifdef ELF_MACHINE_BEFORE_RTLD_RELOC
555 ELF_MACHINE_BEFORE_RTLD_RELOC (&bootstrap_map, bootstrap_map.l_info);
556 #endif
558 if (bootstrap_map.l_addr)
560 /* Relocate ourselves so we can do normal function calls and
561 data access using the global offset table. */
563 ELF_DYNAMIC_RELOCATE (&bootstrap_map, NULL, 0, 0, 0);
565 bootstrap_map.l_relocated = 1;
567 /* Please note that we don't allow profiling of this object and
568 therefore need not test whether we have to allocate the array
569 for the relocation results (as done in dl-reloc.c). */
571 /* Now life is sane; we can call functions and access global data.
572 Set up to use the operating system facilities, and find out from
573 the operating system's program loader where to find the program
574 header table in core. Put the rest of _dl_start into a separate
575 function, that way the compiler cannot put accesses to the GOT
576 before ELF_DYNAMIC_RELOCATE. */
578 __rtld_malloc_init_stubs ();
580 #ifdef DONT_USE_BOOTSTRAP_MAP
581 return _dl_start_final (arg);
582 #else
583 return _dl_start_final (arg, &info);
584 #endif
589 /* Now life is peachy; we can do all normal operations.
590 On to the real work. */
592 /* Some helper functions. */
594 /* Arguments to relocate_doit. */
595 struct relocate_args
597 struct link_map *l;
598 int reloc_mode;
601 struct map_args
603 /* Argument to map_doit. */
604 const char *str;
605 struct link_map *loader;
606 int mode;
607 /* Return value of map_doit. */
608 struct link_map *map;
611 struct dlmopen_args
613 const char *fname;
614 struct link_map *map;
617 struct lookup_args
619 const char *name;
620 struct link_map *map;
621 void *result;
624 /* Arguments to version_check_doit. */
625 struct version_check_args
627 int doexit;
628 int dotrace;
631 static void
632 relocate_doit (void *a)
634 struct relocate_args *args = (struct relocate_args *) a;
636 _dl_relocate_object (args->l, args->l->l_scope, args->reloc_mode, 0);
639 static void
640 map_doit (void *a)
642 struct map_args *args = (struct map_args *) a;
643 int type = (args->mode == __RTLD_OPENEXEC) ? lt_executable : lt_library;
644 args->map = _dl_map_object (args->loader, args->str, type, 0,
645 args->mode, LM_ID_BASE);
648 static void
649 dlmopen_doit (void *a)
651 struct dlmopen_args *args = (struct dlmopen_args *) a;
652 args->map = _dl_open (args->fname,
653 (RTLD_LAZY | __RTLD_DLOPEN | __RTLD_AUDIT
654 | __RTLD_SECURE),
655 dl_main, LM_ID_NEWLM, _dl_argc, _dl_argv,
656 __environ);
659 static void
660 lookup_doit (void *a)
662 struct lookup_args *args = (struct lookup_args *) a;
663 const ElfW(Sym) *ref = NULL;
664 args->result = NULL;
665 lookup_t l = _dl_lookup_symbol_x (args->name, args->map, &ref,
666 args->map->l_local_scope, NULL, 0,
667 DL_LOOKUP_RETURN_NEWEST, NULL);
668 if (ref != NULL)
669 args->result = DL_SYMBOL_ADDRESS (l, ref);
672 static void
673 version_check_doit (void *a)
675 struct version_check_args *args = (struct version_check_args *) a;
676 if (_dl_check_all_versions (GL(dl_ns)[LM_ID_BASE]._ns_loaded, 1,
677 args->dotrace) && args->doexit)
678 /* We cannot start the application. Abort now. */
679 _exit (1);
683 static inline struct link_map *
684 find_needed (const char *name)
686 struct r_scope_elem *scope = &GL(dl_ns)[LM_ID_BASE]._ns_loaded->l_searchlist;
687 unsigned int n = scope->r_nlist;
689 while (n-- > 0)
690 if (_dl_name_match_p (name, scope->r_list[n]))
691 return scope->r_list[n];
693 /* Should never happen. */
694 return NULL;
697 static int
698 match_version (const char *string, struct link_map *map)
700 const char *strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
701 ElfW(Verdef) *def;
703 #define VERDEFTAG (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (DT_VERDEF))
704 if (map->l_info[VERDEFTAG] == NULL)
705 /* The file has no symbol versioning. */
706 return 0;
708 def = (ElfW(Verdef) *) ((char *) map->l_addr
709 + map->l_info[VERDEFTAG]->d_un.d_ptr);
710 while (1)
712 ElfW(Verdaux) *aux = (ElfW(Verdaux) *) ((char *) def + def->vd_aux);
714 /* Compare the version strings. */
715 if (strcmp (string, strtab + aux->vda_name) == 0)
716 /* Bingo! */
717 return 1;
719 /* If no more definitions we failed to find what we want. */
720 if (def->vd_next == 0)
721 break;
723 /* Next definition. */
724 def = (ElfW(Verdef) *) ((char *) def + def->vd_next);
727 return 0;
730 bool __rtld_tls_init_tp_called;
732 static void *
733 init_tls (size_t naudit)
735 /* Number of elements in the static TLS block. */
736 GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx);
738 /* Do not do this twice. The audit interface might have required
739 the DTV interfaces to be set up early. */
740 if (GL(dl_initial_dtv) != NULL)
741 return NULL;
743 /* Allocate the array which contains the information about the
744 dtv slots. We allocate a few entries more than needed to
745 avoid the need for reallocation. */
746 size_t nelem = GL(dl_tls_max_dtv_idx) + 1 + TLS_SLOTINFO_SURPLUS;
748 /* Allocate. */
749 GL(dl_tls_dtv_slotinfo_list) = (struct dtv_slotinfo_list *)
750 calloc (sizeof (struct dtv_slotinfo_list)
751 + nelem * sizeof (struct dtv_slotinfo), 1);
752 /* No need to check the return value. If memory allocation failed
753 the program would have been terminated. */
755 struct dtv_slotinfo *slotinfo = GL(dl_tls_dtv_slotinfo_list)->slotinfo;
756 GL(dl_tls_dtv_slotinfo_list)->len = nelem;
757 GL(dl_tls_dtv_slotinfo_list)->next = NULL;
759 /* Fill in the information from the loaded modules. No namespace
760 but the base one can be filled at this time. */
761 assert (GL(dl_ns)[LM_ID_BASE + 1]._ns_loaded == NULL);
762 int i = 0;
763 for (struct link_map *l = GL(dl_ns)[LM_ID_BASE]._ns_loaded; l != NULL;
764 l = l->l_next)
765 if (l->l_tls_blocksize != 0)
767 /* This is a module with TLS data. Store the map reference.
768 The generation counter is zero. */
769 slotinfo[i].map = l;
770 /* slotinfo[i].gen = 0; */
771 ++i;
773 assert (i == GL(dl_tls_max_dtv_idx));
775 /* Calculate the size of the static TLS surplus. */
776 _dl_tls_static_surplus_init (naudit);
778 /* Compute the TLS offsets for the various blocks. */
779 _dl_determine_tlsoffset ();
781 /* Construct the static TLS block and the dtv for the initial
782 thread. For some platforms this will include allocating memory
783 for the thread descriptor. The memory for the TLS block will
784 never be freed. It should be allocated accordingly. The dtv
785 array can be changed if dynamic loading requires it. */
786 void *tcbp = _dl_allocate_tls_storage ();
787 if (tcbp == NULL)
788 _dl_fatal_printf ("\
789 cannot allocate TLS data structures for initial thread\n");
791 /* Store for detection of the special case by __tls_get_addr
792 so it knows not to pass this dtv to the normal realloc. */
793 GL(dl_initial_dtv) = GET_DTV (tcbp);
795 /* And finally install it for the main thread. */
796 call_tls_init_tp (tcbp);
797 __rtld_tls_init_tp_called = true;
799 return tcbp;
802 static unsigned int
803 do_preload (const char *fname, struct link_map *main_map, const char *where)
805 const char *objname;
806 const char *err_str = NULL;
807 struct map_args args;
808 bool malloced;
810 args.str = fname;
811 args.loader = main_map;
812 args.mode = __RTLD_SECURE;
814 unsigned int old_nloaded = GL(dl_ns)[LM_ID_BASE]._ns_nloaded;
816 (void) _dl_catch_error (&objname, &err_str, &malloced, map_doit, &args);
817 if (__glibc_unlikely (err_str != NULL))
819 _dl_error_printf ("\
820 ERROR: ld.so: object '%s' from %s cannot be preloaded (%s): ignored.\n",
821 fname, where, err_str);
822 /* No need to call free, this is still before
823 the libc's malloc is used. */
825 else if (GL(dl_ns)[LM_ID_BASE]._ns_nloaded != old_nloaded)
826 /* It is no duplicate. */
827 return 1;
829 /* Nothing loaded. */
830 return 0;
833 static void
834 security_init (void)
836 /* Set up the stack checker's canary. */
837 uintptr_t stack_chk_guard = _dl_setup_stack_chk_guard (_dl_random);
838 #ifdef THREAD_SET_STACK_GUARD
839 THREAD_SET_STACK_GUARD (stack_chk_guard);
840 #else
841 __stack_chk_guard = stack_chk_guard;
842 #endif
844 /* Set up the pointer guard as well, if necessary. */
845 uintptr_t pointer_chk_guard
846 = _dl_setup_pointer_guard (_dl_random, stack_chk_guard);
847 #ifdef THREAD_SET_POINTER_GUARD
848 THREAD_SET_POINTER_GUARD (pointer_chk_guard);
849 #endif
850 __pointer_chk_guard_local = pointer_chk_guard;
852 /* We do not need the _dl_random value anymore. The less
853 information we leave behind, the better, so clear the
854 variable. */
855 _dl_random = NULL;
858 #include <setup-vdso.h>
860 /* The LD_PRELOAD environment variable gives list of libraries
861 separated by white space or colons that are loaded before the
862 executable's dependencies and prepended to the global scope list.
863 (If the binary is running setuid all elements containing a '/' are
864 ignored since it is insecure.) Return the number of preloads
865 performed. Ditto for --preload command argument. */
866 unsigned int
867 handle_preload_list (const char *preloadlist, struct link_map *main_map,
868 const char *where)
870 unsigned int npreloads = 0;
871 const char *p = preloadlist;
872 char fname[SECURE_PATH_LIMIT];
874 while (*p != '\0')
876 /* Split preload list at space/colon. */
877 size_t len = strcspn (p, " :");
878 if (len > 0 && len < sizeof (fname))
880 memcpy (fname, p, len);
881 fname[len] = '\0';
883 else
884 fname[0] = '\0';
886 /* Skip over the substring and the following delimiter. */
887 p += len;
888 if (*p != '\0')
889 ++p;
891 if (dso_name_valid_for_suid (fname))
892 npreloads += do_preload (fname, main_map, where);
894 return npreloads;
897 /* Called if the audit DSO cannot be used: if it does not have the
898 appropriate interfaces, or it expects a more recent version library
899 version than what the dynamic linker provides. */
900 static void
901 unload_audit_module (struct link_map *map, int original_tls_idx)
903 #ifndef NDEBUG
904 Lmid_t ns = map->l_ns;
905 #endif
906 _dl_close (map);
908 /* Make sure the namespace has been cleared entirely. */
909 assert (GL(dl_ns)[ns]._ns_loaded == NULL);
910 assert (GL(dl_ns)[ns]._ns_nloaded == 0);
912 GL(dl_tls_max_dtv_idx) = original_tls_idx;
915 /* Called to print an error message if loading of an audit module
916 failed. */
917 static void
918 report_audit_module_load_error (const char *name, const char *err_str,
919 bool malloced)
921 _dl_error_printf ("\
922 ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n",
923 name, err_str);
924 if (malloced)
925 free ((char *) err_str);
928 /* Load one audit module. */
929 static void
930 load_audit_module (const char *name, struct audit_ifaces **last_audit)
932 int original_tls_idx = GL(dl_tls_max_dtv_idx);
934 struct dlmopen_args dlmargs;
935 dlmargs.fname = name;
936 dlmargs.map = NULL;
938 const char *objname;
939 const char *err_str = NULL;
940 bool malloced;
941 _dl_catch_error (&objname, &err_str, &malloced, dlmopen_doit, &dlmargs);
942 if (__glibc_unlikely (err_str != NULL))
944 report_audit_module_load_error (name, err_str, malloced);
945 return;
948 struct lookup_args largs;
949 largs.name = "la_version";
950 largs.map = dlmargs.map;
951 _dl_catch_error (&objname, &err_str, &malloced, lookup_doit, &largs);
952 if (__glibc_likely (err_str != NULL))
954 unload_audit_module (dlmargs.map, original_tls_idx);
955 report_audit_module_load_error (name, err_str, malloced);
956 return;
959 unsigned int (*laversion) (unsigned int) = largs.result;
961 /* A null symbol indicates that something is very wrong with the
962 loaded object because defined symbols are supposed to have a
963 valid, non-null address. */
964 assert (laversion != NULL);
966 unsigned int lav = laversion (LAV_CURRENT);
967 if (lav == 0)
969 /* Only print an error message if debugging because this can
970 happen deliberately. */
971 if (GLRO(dl_debug_mask) & DL_DEBUG_FILES)
972 _dl_debug_printf ("\
973 file=%s [%lu]; audit interface function la_version returned zero; ignored.\n",
974 dlmargs.map->l_name, dlmargs.map->l_ns);
975 unload_audit_module (dlmargs.map, original_tls_idx);
976 return;
979 if (!_dl_audit_check_version (lav))
981 _dl_debug_printf ("\
982 ERROR: audit interface '%s' requires version %d (maximum supported version %d); ignored.\n",
983 name, lav, LAV_CURRENT);
984 unload_audit_module (dlmargs.map, original_tls_idx);
985 return;
988 enum { naudit_ifaces = 8 };
989 union
991 struct audit_ifaces ifaces;
992 void (*fptr[naudit_ifaces]) (void);
993 } *newp = malloc (sizeof (*newp));
994 if (newp == NULL)
995 _dl_fatal_printf ("Out of memory while loading audit modules\n");
997 /* Names of the auditing interfaces. All in one
998 long string. */
999 static const char audit_iface_names[] =
1000 "la_activity\0"
1001 "la_objsearch\0"
1002 "la_objopen\0"
1003 "la_preinit\0"
1004 LA_SYMBIND "\0"
1005 #define STRING(s) __STRING (s)
1006 "la_" STRING (ARCH_LA_PLTENTER) "\0"
1007 "la_" STRING (ARCH_LA_PLTEXIT) "\0"
1008 "la_objclose\0";
1009 unsigned int cnt = 0;
1010 const char *cp = audit_iface_names;
1013 largs.name = cp;
1014 _dl_catch_error (&objname, &err_str, &malloced, lookup_doit, &largs);
1016 /* Store the pointer. */
1017 if (err_str == NULL && largs.result != NULL)
1018 newp->fptr[cnt] = largs.result;
1019 else
1020 newp->fptr[cnt] = NULL;
1021 ++cnt;
1023 cp = strchr (cp, '\0') + 1;
1025 while (*cp != '\0');
1026 assert (cnt == naudit_ifaces);
1028 /* Now append the new auditing interface to the list. */
1029 newp->ifaces.next = NULL;
1030 if (*last_audit == NULL)
1031 *last_audit = GLRO(dl_audit) = &newp->ifaces;
1032 else
1033 *last_audit = (*last_audit)->next = &newp->ifaces;
1035 /* The dynamic linker link map is statically allocated, so the
1036 cookie in _dl_new_object has not happened. */
1037 link_map_audit_state (&GL (dl_rtld_map), GLRO (dl_naudit))->cookie
1038 = (intptr_t) &GL (dl_rtld_map);
1040 ++GLRO(dl_naudit);
1042 /* Mark the DSO as being used for auditing. */
1043 dlmargs.map->l_auditing = 1;
1046 /* Load all audit modules. */
1047 static void
1048 load_audit_modules (struct link_map *main_map, struct audit_list *audit_list)
1050 struct audit_ifaces *last_audit = NULL;
1052 while (true)
1054 const char *name = audit_list_next (audit_list);
1055 if (name == NULL)
1056 break;
1057 load_audit_module (name, &last_audit);
1060 /* Notify audit modules of the initially loaded modules (the main
1061 program and the dynamic linker itself). */
1062 if (GLRO(dl_naudit) > 0)
1064 _dl_audit_objopen (main_map, LM_ID_BASE);
1065 _dl_audit_objopen (&GL(dl_rtld_map), LM_ID_BASE);
1069 /* Check if the executable is not actually dynamically linked, and
1070 invoke it directly in that case. */
1071 static void
1072 rtld_chain_load (struct link_map *main_map, char *argv0)
1074 /* The dynamic loader run against itself. */
1075 const char *rtld_soname
1076 = ((const char *) D_PTR (&GL(dl_rtld_map), l_info[DT_STRTAB])
1077 + GL(dl_rtld_map).l_info[DT_SONAME]->d_un.d_val);
1078 if (main_map->l_info[DT_SONAME] != NULL
1079 && strcmp (rtld_soname,
1080 ((const char *) D_PTR (main_map, l_info[DT_STRTAB])
1081 + main_map->l_info[DT_SONAME]->d_un.d_val)) == 0)
1082 _dl_fatal_printf ("%s: loader cannot load itself\n", rtld_soname);
1084 /* With DT_NEEDED dependencies, the executable is dynamically
1085 linked. */
1086 if (__glibc_unlikely (main_map->l_info[DT_NEEDED] != NULL))
1087 return;
1089 /* If the executable has program interpreter, it is dynamically
1090 linked. */
1091 for (size_t i = 0; i < main_map->l_phnum; ++i)
1092 if (main_map->l_phdr[i].p_type == PT_INTERP)
1093 return;
1095 const char *pathname = _dl_argv[0];
1096 if (argv0 != NULL)
1097 _dl_argv[0] = argv0;
1098 int errcode = __rtld_execve (pathname, _dl_argv, _environ);
1099 const char *errname = strerrorname_np (errcode);
1100 if (errname != NULL)
1101 _dl_fatal_printf("%s: cannot execute %s: %s\n",
1102 rtld_soname, pathname, errname);
1103 else
1104 _dl_fatal_printf("%s: cannot execute %s: %d\n",
1105 rtld_soname, pathname, errcode);
1108 /* Called to complete the initialization of the link map for the main
1109 executable. Returns true if there is a PT_INTERP segment. */
1110 static bool
1111 rtld_setup_main_map (struct link_map *main_map)
1113 /* This have already been filled in right after _dl_new_object, or
1114 as part of _dl_map_object. */
1115 const ElfW(Phdr) *phdr = main_map->l_phdr;
1116 ElfW(Word) phnum = main_map->l_phnum;
1118 bool has_interp = false;
1120 main_map->l_map_end = 0;
1121 /* Perhaps the executable has no PT_LOAD header entries at all. */
1122 main_map->l_map_start = ~0;
1123 /* And it was opened directly. */
1124 ++main_map->l_direct_opencount;
1125 main_map->l_contiguous = 1;
1127 /* A PT_LOAD segment at an unexpected address will clear the
1128 l_contiguous flag. The ELF specification says that PT_LOAD
1129 segments need to be sorted in in increasing order, but perhaps
1130 not all executables follow this requirement. Having l_contiguous
1131 equal to 1 is just an optimization, so the code below does not
1132 try to sort the segments in case they are unordered.
1134 There is one corner case in which l_contiguous is not set to 1,
1135 but where it could be set: If a PIE (ET_DYN) binary is loaded by
1136 glibc itself (not the kernel), it is always contiguous due to the
1137 way the glibc loader works. However, the kernel loader may still
1138 create holes in this case, and the code here still uses 0
1139 conservatively for the glibc-loaded case, too. */
1140 ElfW(Addr) expected_load_address = 0;
1142 /* Scan the program header table for the dynamic section. */
1143 for (const ElfW(Phdr) *ph = phdr; ph < &phdr[phnum]; ++ph)
1144 switch (ph->p_type)
1146 case PT_PHDR:
1147 /* Find out the load address. */
1148 main_map->l_addr = (ElfW(Addr)) phdr - ph->p_vaddr;
1149 break;
1150 case PT_DYNAMIC:
1151 /* This tells us where to find the dynamic section,
1152 which tells us everything we need to do. */
1153 main_map->l_ld = (void *) main_map->l_addr + ph->p_vaddr;
1154 main_map->l_ld_readonly = (ph->p_flags & PF_W) == 0;
1155 break;
1156 case PT_INTERP:
1157 /* This "interpreter segment" was used by the program loader to
1158 find the program interpreter, which is this program itself, the
1159 dynamic linker. We note what name finds us, so that a future
1160 dlopen call or DT_NEEDED entry, for something that wants to link
1161 against the dynamic linker as a shared library, will know that
1162 the shared object is already loaded. */
1163 _dl_rtld_libname.name = ((const char *) main_map->l_addr
1164 + ph->p_vaddr);
1165 /* _dl_rtld_libname.next = NULL; Already zero. */
1166 GL(dl_rtld_map).l_libname = &_dl_rtld_libname;
1168 /* Ordinarily, we would get additional names for the loader from
1169 our DT_SONAME. This can't happen if we were actually linked as
1170 a static executable (detect this case when we have no DYNAMIC).
1171 If so, assume the filename component of the interpreter path to
1172 be our SONAME, and add it to our name list. */
1173 if (GL(dl_rtld_map).l_ld == NULL)
1175 const char *p = NULL;
1176 const char *cp = _dl_rtld_libname.name;
1178 /* Find the filename part of the path. */
1179 while (*cp != '\0')
1180 if (*cp++ == '/')
1181 p = cp;
1183 if (p != NULL)
1185 _dl_rtld_libname2.name = p;
1186 /* _dl_rtld_libname2.next = NULL; Already zero. */
1187 _dl_rtld_libname.next = &_dl_rtld_libname2;
1191 has_interp = true;
1192 break;
1193 case PT_LOAD:
1195 ElfW(Addr) mapstart;
1196 ElfW(Addr) allocend;
1198 /* Remember where the main program starts in memory. */
1199 mapstart = (main_map->l_addr
1200 + (ph->p_vaddr & ~(GLRO(dl_pagesize) - 1)));
1201 if (main_map->l_map_start > mapstart)
1202 main_map->l_map_start = mapstart;
1204 if (main_map->l_contiguous && expected_load_address != 0
1205 && expected_load_address != mapstart)
1206 main_map->l_contiguous = 0;
1208 /* Also where it ends. */
1209 allocend = main_map->l_addr + ph->p_vaddr + ph->p_memsz;
1210 if (main_map->l_map_end < allocend)
1211 main_map->l_map_end = allocend;
1213 /* The next expected address is the page following this load
1214 segment. */
1215 expected_load_address = ((allocend + GLRO(dl_pagesize) - 1)
1216 & ~(GLRO(dl_pagesize) - 1));
1218 break;
1220 case PT_TLS:
1221 if (ph->p_memsz > 0)
1223 /* Note that in the case the dynamic linker we duplicate work
1224 here since we read the PT_TLS entry already in
1225 _dl_start_final. But the result is repeatable so do not
1226 check for this special but unimportant case. */
1227 main_map->l_tls_blocksize = ph->p_memsz;
1228 main_map->l_tls_align = ph->p_align;
1229 if (ph->p_align == 0)
1230 main_map->l_tls_firstbyte_offset = 0;
1231 else
1232 main_map->l_tls_firstbyte_offset = (ph->p_vaddr
1233 & (ph->p_align - 1));
1234 main_map->l_tls_initimage_size = ph->p_filesz;
1235 main_map->l_tls_initimage = (void *) ph->p_vaddr;
1237 /* This image gets the ID one. */
1238 GL(dl_tls_max_dtv_idx) = main_map->l_tls_modid = 1;
1240 break;
1242 case PT_GNU_STACK:
1243 GL(dl_stack_flags) = ph->p_flags;
1244 break;
1246 case PT_GNU_RELRO:
1247 main_map->l_relro_addr = ph->p_vaddr;
1248 main_map->l_relro_size = ph->p_memsz;
1249 break;
1251 /* Process program headers again, but scan them backwards so
1252 that PT_NOTE can be skipped if PT_GNU_PROPERTY exits. */
1253 for (const ElfW(Phdr) *ph = &phdr[phnum]; ph != phdr; --ph)
1254 switch (ph[-1].p_type)
1256 case PT_NOTE:
1257 _dl_process_pt_note (main_map, -1, &ph[-1]);
1258 break;
1259 case PT_GNU_PROPERTY:
1260 _dl_process_pt_gnu_property (main_map, -1, &ph[-1]);
1261 break;
1264 /* Adjust the address of the TLS initialization image in case
1265 the executable is actually an ET_DYN object. */
1266 if (main_map->l_tls_initimage != NULL)
1267 main_map->l_tls_initimage
1268 = (char *) main_map->l_tls_initimage + main_map->l_addr;
1269 if (! main_map->l_map_end)
1270 main_map->l_map_end = ~0;
1271 if (! GL(dl_rtld_map).l_libname && GL(dl_rtld_map).l_name)
1273 /* We were invoked directly, so the program might not have a
1274 PT_INTERP. */
1275 _dl_rtld_libname.name = GL(dl_rtld_map).l_name;
1276 /* _dl_rtld_libname.next = NULL; Already zero. */
1277 GL(dl_rtld_map).l_libname = &_dl_rtld_libname;
1279 else
1280 assert (GL(dl_rtld_map).l_libname); /* How else did we get here? */
1282 return has_interp;
1285 /* Adjusts the contents of the stack and related globals for the user
1286 entry point. The ld.so processed skip_args arguments and bumped
1287 _dl_argv and _dl_argc accordingly. Those arguments are removed from
1288 argv here. */
1289 static void
1290 _dl_start_args_adjust (int skip_args)
1292 void **sp = (void **) (_dl_argv - skip_args - 1);
1293 void **p = sp + skip_args;
1295 if (skip_args == 0)
1296 return;
1298 /* Sanity check. */
1299 intptr_t argc __attribute__ ((unused)) = (intptr_t) sp[0] - skip_args;
1300 assert (argc == _dl_argc);
1302 /* Adjust argc on stack. */
1303 sp[0] = (void *) (intptr_t) _dl_argc;
1305 /* Update globals in rtld. */
1306 _dl_argv -= skip_args;
1307 _environ -= skip_args;
1309 /* Shuffle argv down. */
1311 *++sp = *++p;
1312 while (*p != NULL);
1314 assert (_environ == (char **) (sp + 1));
1316 /* Shuffle envp down. */
1318 *++sp = *++p;
1319 while (*p != NULL);
1321 #ifdef HAVE_AUX_VECTOR
1322 void **auxv = (void **) GLRO(dl_auxv) - skip_args;
1323 GLRO(dl_auxv) = (ElfW(auxv_t) *) auxv; /* Aliasing violation. */
1324 assert (auxv == sp + 1);
1326 /* Shuffle auxv down. */
1327 ElfW(auxv_t) ax;
1328 char *oldp = (char *) (p + 1);
1329 char *newp = (char *) (sp + 1);
1332 memcpy (&ax, oldp, sizeof (ax));
1333 memcpy (newp, &ax, sizeof (ax));
1334 oldp += sizeof (ax);
1335 newp += sizeof (ax);
1337 while (ax.a_type != AT_NULL);
1338 #endif
1341 static void
1342 dl_main (const ElfW(Phdr) *phdr,
1343 ElfW(Word) phnum,
1344 ElfW(Addr) *user_entry,
1345 ElfW(auxv_t) *auxv)
1347 struct link_map *main_map;
1348 size_t file_size;
1349 char *file;
1350 unsigned int i;
1351 bool rtld_is_main = false;
1352 void *tcbp = NULL;
1354 struct dl_main_state state;
1355 dl_main_state_init (&state);
1357 __tls_pre_init_tp ();
1359 #if !PTHREAD_IN_LIBC
1360 /* The explicit initialization here is cheaper than processing the reloc
1361 in the _rtld_local definition's initializer. */
1362 GL(dl_make_stack_executable_hook) = &_dl_make_stack_executable;
1363 #endif
1365 /* Process the environment variable which control the behaviour. */
1366 process_envvars (&state);
1368 #ifndef HAVE_INLINED_SYSCALLS
1369 /* Set up a flag which tells we are just starting. */
1370 _dl_starting_up = 1;
1371 #endif
1373 const char *ld_so_name = _dl_argv[0];
1374 if (*user_entry == (ElfW(Addr)) ENTRY_POINT)
1376 /* Ho ho. We are not the program interpreter! We are the program
1377 itself! This means someone ran ld.so as a command. Well, that
1378 might be convenient to do sometimes. We support it by
1379 interpreting the args like this:
1381 ld.so PROGRAM ARGS...
1383 The first argument is the name of a file containing an ELF
1384 executable we will load and run with the following arguments.
1385 To simplify life here, PROGRAM is searched for using the
1386 normal rules for shared objects, rather than $PATH or anything
1387 like that. We just load it and use its entry point; we don't
1388 pay attention to its PT_INTERP command (we are the interpreter
1389 ourselves). This is an easy way to test a new ld.so before
1390 installing it. */
1391 rtld_is_main = true;
1393 char *argv0 = NULL;
1394 char **orig_argv = _dl_argv;
1396 /* Note the place where the dynamic linker actually came from. */
1397 GL(dl_rtld_map).l_name = rtld_progname;
1399 while (_dl_argc > 1)
1400 if (! strcmp (_dl_argv[1], "--list"))
1402 if (state.mode != rtld_mode_help)
1404 state.mode = rtld_mode_list;
1405 /* This means do no dependency analysis. */
1406 GLRO(dl_lazy) = -1;
1409 --_dl_argc;
1410 ++_dl_argv;
1412 else if (! strcmp (_dl_argv[1], "--verify"))
1414 if (state.mode != rtld_mode_help)
1415 state.mode = rtld_mode_verify;
1417 --_dl_argc;
1418 ++_dl_argv;
1420 else if (! strcmp (_dl_argv[1], "--inhibit-cache"))
1422 GLRO(dl_inhibit_cache) = 1;
1423 --_dl_argc;
1424 ++_dl_argv;
1426 else if (! strcmp (_dl_argv[1], "--library-path")
1427 && _dl_argc > 2)
1429 state.library_path = _dl_argv[2];
1430 state.library_path_source = "--library-path";
1432 _dl_argc -= 2;
1433 _dl_argv += 2;
1435 else if (! strcmp (_dl_argv[1], "--inhibit-rpath")
1436 && _dl_argc > 2)
1438 GLRO(dl_inhibit_rpath) = _dl_argv[2];
1440 _dl_argc -= 2;
1441 _dl_argv += 2;
1443 else if (! strcmp (_dl_argv[1], "--audit") && _dl_argc > 2)
1445 audit_list_add_string (&state.audit_list, _dl_argv[2]);
1447 _dl_argc -= 2;
1448 _dl_argv += 2;
1450 else if (! strcmp (_dl_argv[1], "--preload") && _dl_argc > 2)
1452 state.preloadarg = _dl_argv[2];
1453 _dl_argc -= 2;
1454 _dl_argv += 2;
1456 else if (! strcmp (_dl_argv[1], "--argv0") && _dl_argc > 2)
1458 argv0 = _dl_argv[2];
1460 _dl_argc -= 2;
1461 _dl_argv += 2;
1463 else if (strcmp (_dl_argv[1], "--glibc-hwcaps-prepend") == 0
1464 && _dl_argc > 2)
1466 state.glibc_hwcaps_prepend = _dl_argv[2];
1467 _dl_argc -= 2;
1468 _dl_argv += 2;
1470 else if (strcmp (_dl_argv[1], "--glibc-hwcaps-mask") == 0
1471 && _dl_argc > 2)
1473 state.glibc_hwcaps_mask = _dl_argv[2];
1474 _dl_argc -= 2;
1475 _dl_argv += 2;
1477 else if (! strcmp (_dl_argv[1], "--list-tunables"))
1479 state.mode = rtld_mode_list_tunables;
1481 --_dl_argc;
1482 ++_dl_argv;
1484 else if (! strcmp (_dl_argv[1], "--list-diagnostics"))
1486 state.mode = rtld_mode_list_diagnostics;
1488 --_dl_argc;
1489 ++_dl_argv;
1491 else if (strcmp (_dl_argv[1], "--help") == 0)
1493 state.mode = rtld_mode_help;
1494 --_dl_argc;
1495 ++_dl_argv;
1497 else if (strcmp (_dl_argv[1], "--version") == 0)
1498 _dl_version ();
1499 else if (_dl_argv[1][0] == '-' && _dl_argv[1][1] == '-')
1501 if (_dl_argv[1][1] == '\0')
1502 /* End of option list. */
1503 break;
1504 else
1505 /* Unrecognized option. */
1506 _dl_usage (ld_so_name, _dl_argv[1]);
1508 else
1509 break;
1511 if (__glibc_unlikely (state.mode == rtld_mode_list_tunables))
1513 __tunables_print ();
1514 _exit (0);
1517 if (state.mode == rtld_mode_list_diagnostics)
1518 _dl_print_diagnostics (_environ);
1520 /* If we have no further argument the program was called incorrectly.
1521 Grant the user some education. */
1522 if (_dl_argc < 2)
1524 if (state.mode == rtld_mode_help)
1525 /* --help without an executable is not an error. */
1526 _dl_help (ld_so_name, &state);
1527 else
1528 _dl_usage (ld_so_name, NULL);
1531 --_dl_argc;
1532 ++_dl_argv;
1534 /* The initialization of _dl_stack_flags done below assumes the
1535 executable's PT_GNU_STACK may have been honored by the kernel, and
1536 so a PT_GNU_STACK with PF_X set means the stack started out with
1537 execute permission. However, this is not really true if the
1538 dynamic linker is the executable the kernel loaded. For this
1539 case, we must reinitialize _dl_stack_flags to match the dynamic
1540 linker itself. If the dynamic linker was built with a
1541 PT_GNU_STACK, then the kernel may have loaded us with a
1542 nonexecutable stack that we will have to make executable when we
1543 load the program below unless it has a PT_GNU_STACK indicating
1544 nonexecutable stack is ok. */
1546 for (const ElfW(Phdr) *ph = phdr; ph < &phdr[phnum]; ++ph)
1547 if (ph->p_type == PT_GNU_STACK)
1549 GL(dl_stack_flags) = ph->p_flags;
1550 break;
1553 if (__glibc_unlikely (state.mode == rtld_mode_verify
1554 || state.mode == rtld_mode_help))
1556 const char *objname;
1557 const char *err_str = NULL;
1558 struct map_args args;
1559 bool malloced;
1561 args.str = rtld_progname;
1562 args.loader = NULL;
1563 args.mode = __RTLD_OPENEXEC;
1564 (void) _dl_catch_error (&objname, &err_str, &malloced, map_doit,
1565 &args);
1566 if (__glibc_unlikely (err_str != NULL))
1568 /* We don't free the returned string, the programs stops
1569 anyway. */
1570 if (state.mode == rtld_mode_help)
1571 /* Mask the failure to load the main object. The help
1572 message contains less information in this case. */
1573 _dl_help (ld_so_name, &state);
1574 else
1575 _exit (EXIT_FAILURE);
1578 else
1580 RTLD_TIMING_VAR (start);
1581 rtld_timer_start (&start);
1582 _dl_map_object (NULL, rtld_progname, lt_executable, 0,
1583 __RTLD_OPENEXEC, LM_ID_BASE);
1584 rtld_timer_stop (&load_time, start);
1587 /* Now the map for the main executable is available. */
1588 main_map = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
1590 if (__glibc_likely (state.mode == rtld_mode_normal))
1591 rtld_chain_load (main_map, argv0);
1593 phdr = main_map->l_phdr;
1594 phnum = main_map->l_phnum;
1595 /* We overwrite here a pointer to a malloc()ed string. But since
1596 the malloc() implementation used at this point is the dummy
1597 implementations which has no real free() function it does not
1598 makes sense to free the old string first. */
1599 main_map->l_name = (char *) "";
1600 *user_entry = main_map->l_entry;
1602 /* Set bit indicating this is the main program map. */
1603 main_map->l_main_map = 1;
1605 #ifdef HAVE_AUX_VECTOR
1606 /* Adjust the on-stack auxiliary vector so that it looks like the
1607 binary was executed directly. */
1608 for (ElfW(auxv_t) *av = auxv; av->a_type != AT_NULL; av++)
1609 switch (av->a_type)
1611 case AT_PHDR:
1612 av->a_un.a_val = (uintptr_t) phdr;
1613 break;
1614 case AT_PHNUM:
1615 av->a_un.a_val = phnum;
1616 break;
1617 case AT_ENTRY:
1618 av->a_un.a_val = *user_entry;
1619 break;
1620 case AT_EXECFN:
1621 av->a_un.a_val = (uintptr_t) _dl_argv[0];
1622 break;
1624 #endif
1626 /* Set the argv[0] string now that we've processed the executable. */
1627 if (argv0 != NULL)
1628 _dl_argv[0] = argv0;
1630 /* Adjust arguments for the application entry point. */
1631 _dl_start_args_adjust (_dl_argv - orig_argv);
1633 else
1635 /* Create a link_map for the executable itself.
1636 This will be what dlopen on "" returns. */
1637 main_map = _dl_new_object ((char *) "", "", lt_executable, NULL,
1638 __RTLD_OPENEXEC, LM_ID_BASE);
1639 assert (main_map != NULL);
1640 main_map->l_phdr = phdr;
1641 main_map->l_phnum = phnum;
1642 main_map->l_entry = *user_entry;
1644 /* Even though the link map is not yet fully initialized we can add
1645 it to the map list since there are no possible users running yet. */
1646 _dl_add_to_namespace_list (main_map, LM_ID_BASE);
1647 assert (main_map == GL(dl_ns)[LM_ID_BASE]._ns_loaded);
1649 /* At this point we are in a bit of trouble. We would have to
1650 fill in the values for l_dev and l_ino. But in general we
1651 do not know where the file is. We also do not handle AT_EXECFD
1652 even if it would be passed up.
1654 We leave the values here defined to 0. This is normally no
1655 problem as the program code itself is normally no shared
1656 object and therefore cannot be loaded dynamically. Nothing
1657 prevent the use of dynamic binaries and in these situations
1658 we might get problems. We might not be able to find out
1659 whether the object is already loaded. But since there is no
1660 easy way out and because the dynamic binary must also not
1661 have an SONAME we ignore this program for now. If it becomes
1662 a problem we can force people using SONAMEs. */
1664 /* We delay initializing the path structure until we got the dynamic
1665 information for the program. */
1668 bool has_interp = rtld_setup_main_map (main_map);
1670 /* If the current libname is different from the SONAME, add the
1671 latter as well. */
1672 if (GL(dl_rtld_map).l_info[DT_SONAME] != NULL
1673 && strcmp (GL(dl_rtld_map).l_libname->name,
1674 (const char *) D_PTR (&GL(dl_rtld_map), l_info[DT_STRTAB])
1675 + GL(dl_rtld_map).l_info[DT_SONAME]->d_un.d_val) != 0)
1677 static struct libname_list newname;
1678 newname.name = ((char *) D_PTR (&GL(dl_rtld_map), l_info[DT_STRTAB])
1679 + GL(dl_rtld_map).l_info[DT_SONAME]->d_un.d_ptr);
1680 newname.next = NULL;
1681 newname.dont_free = 1;
1683 assert (GL(dl_rtld_map).l_libname->next == NULL);
1684 GL(dl_rtld_map).l_libname->next = &newname;
1686 /* The ld.so must be relocated since otherwise loading audit modules
1687 will fail since they reuse the very same ld.so. */
1688 assert (GL(dl_rtld_map).l_relocated);
1690 if (! rtld_is_main)
1692 /* Extract the contents of the dynamic section for easy access. */
1693 elf_get_dynamic_info (main_map, false, false);
1695 /* If the main map is libc.so, update the base namespace to
1696 refer to this map. If libc.so is loaded later, this happens
1697 in _dl_map_object_from_fd. */
1698 if (main_map->l_info[DT_SONAME] != NULL
1699 && (strcmp (((const char *) D_PTR (main_map, l_info[DT_STRTAB])
1700 + main_map->l_info[DT_SONAME]->d_un.d_val), LIBC_SO)
1701 == 0))
1702 GL(dl_ns)[LM_ID_BASE].libc_map = main_map;
1704 /* Set up our cache of pointers into the hash table. */
1705 _dl_setup_hash (main_map);
1708 if (__glibc_unlikely (state.mode == rtld_mode_verify))
1710 /* We were called just to verify that this is a dynamic
1711 executable using us as the program interpreter. Exit with an
1712 error if we were not able to load the binary or no interpreter
1713 is specified (i.e., this is no dynamically linked binary. */
1714 if (main_map->l_ld == NULL)
1715 _exit (1);
1717 _exit (has_interp ? 0 : 2);
1720 struct link_map **first_preload = &GL(dl_rtld_map).l_next;
1721 /* Set up the data structures for the system-supplied DSO early,
1722 so they can influence _dl_init_paths. */
1723 setup_vdso (main_map, &first_preload);
1725 /* With vDSO setup we can initialize the function pointers. */
1726 setup_vdso_pointers ();
1728 /* Initialize the data structures for the search paths for shared
1729 objects. */
1730 call_init_paths (&state);
1732 /* Initialize _r_debug_extended. */
1733 struct r_debug *r = _dl_debug_initialize (GL(dl_rtld_map).l_addr,
1734 LM_ID_BASE);
1735 r->r_state = RT_CONSISTENT;
1737 /* Put the link_map for ourselves on the chain so it can be found by
1738 name. Note that at this point the global chain of link maps contains
1739 exactly one element, which is pointed to by dl_loaded. */
1740 if (! GL(dl_rtld_map).l_name)
1741 /* If not invoked directly, the dynamic linker shared object file was
1742 found by the PT_INTERP name. */
1743 GL(dl_rtld_map).l_name = (char *) GL(dl_rtld_map).l_libname->name;
1744 GL(dl_rtld_map).l_type = lt_library;
1745 main_map->l_next = &GL(dl_rtld_map);
1746 GL(dl_rtld_map).l_prev = main_map;
1747 ++GL(dl_ns)[LM_ID_BASE]._ns_nloaded;
1748 ++GL(dl_load_adds);
1750 /* Starting from binutils-2.23, the linker will define the magic symbol
1751 __ehdr_start to point to our own ELF header if it is visible in a
1752 segment that also includes the phdrs. If that's not available, we use
1753 the old method that assumes the beginning of the file is part of the
1754 lowest-addressed PT_LOAD segment. */
1756 /* Set up the program header information for the dynamic linker
1757 itself. It is needed in the dl_iterate_phdr callbacks. */
1758 const ElfW(Ehdr) *rtld_ehdr = &__ehdr_start;
1759 assert (rtld_ehdr->e_ehsize == sizeof *rtld_ehdr);
1760 assert (rtld_ehdr->e_phentsize == sizeof (ElfW(Phdr)));
1762 const ElfW(Phdr) *rtld_phdr = (const void *) rtld_ehdr + rtld_ehdr->e_phoff;
1764 GL(dl_rtld_map).l_phdr = rtld_phdr;
1765 GL(dl_rtld_map).l_phnum = rtld_ehdr->e_phnum;
1768 /* PT_GNU_RELRO is usually the last phdr. */
1769 size_t cnt = rtld_ehdr->e_phnum;
1770 while (cnt-- > 0)
1771 if (rtld_phdr[cnt].p_type == PT_GNU_RELRO)
1773 GL(dl_rtld_map).l_relro_addr = rtld_phdr[cnt].p_vaddr;
1774 GL(dl_rtld_map).l_relro_size = rtld_phdr[cnt].p_memsz;
1775 break;
1778 /* Add the dynamic linker to the TLS list if it also uses TLS. */
1779 if (GL(dl_rtld_map).l_tls_blocksize != 0)
1780 /* Assign a module ID. Do this before loading any audit modules. */
1781 _dl_assign_tls_modid (&GL(dl_rtld_map));
1783 audit_list_add_dynamic_tag (&state.audit_list, main_map, DT_AUDIT);
1784 audit_list_add_dynamic_tag (&state.audit_list, main_map, DT_DEPAUDIT);
1786 /* At this point, all data has been obtained that is included in the
1787 --help output. */
1788 if (__glibc_unlikely (state.mode == rtld_mode_help))
1789 _dl_help (ld_so_name, &state);
1791 /* If we have auditing DSOs to load, do it now. */
1792 bool need_security_init = true;
1793 if (state.audit_list.length > 0)
1795 size_t naudit = audit_list_count (&state.audit_list);
1797 /* Since we start using the auditing DSOs right away we need to
1798 initialize the data structures now. */
1799 tcbp = init_tls (naudit);
1801 /* Initialize security features. We need to do it this early
1802 since otherwise the constructors of the audit libraries will
1803 use different values (especially the pointer guard) and will
1804 fail later on. */
1805 security_init ();
1806 need_security_init = false;
1808 load_audit_modules (main_map, &state.audit_list);
1810 /* The count based on audit strings may overestimate the number
1811 of audit modules that got loaded, but not underestimate. */
1812 assert (GLRO(dl_naudit) <= naudit);
1815 /* Keep track of the currently loaded modules to count how many
1816 non-audit modules which use TLS are loaded. */
1817 size_t count_modids = _dl_count_modids ();
1819 /* Set up debugging before the debugger is notified for the first time. */
1820 elf_setup_debug_entry (main_map, r);
1822 /* We start adding objects. */
1823 r->r_state = RT_ADD;
1824 _dl_debug_state ();
1825 LIBC_PROBE (init_start, 2, LM_ID_BASE, r);
1827 /* Auditing checkpoint: we are ready to signal that the initial map
1828 is being constructed. */
1829 _dl_audit_activity_map (main_map, LA_ACT_ADD);
1831 /* We have two ways to specify objects to preload: via environment
1832 variable and via the file /etc/ld.so.preload. The latter can also
1833 be used when security is enabled. */
1834 assert (*first_preload == NULL);
1835 struct link_map **preloads = NULL;
1836 unsigned int npreloads = 0;
1838 if (__glibc_unlikely (state.preloadlist != NULL))
1840 RTLD_TIMING_VAR (start);
1841 rtld_timer_start (&start);
1842 npreloads += handle_preload_list (state.preloadlist, main_map,
1843 "LD_PRELOAD");
1844 rtld_timer_accum (&load_time, start);
1847 if (__glibc_unlikely (state.preloadarg != NULL))
1849 RTLD_TIMING_VAR (start);
1850 rtld_timer_start (&start);
1851 npreloads += handle_preload_list (state.preloadarg, main_map,
1852 "--preload");
1853 rtld_timer_accum (&load_time, start);
1856 /* There usually is no ld.so.preload file, it should only be used
1857 for emergencies and testing. So the open call etc should usually
1858 fail. Using access() on a non-existing file is faster than using
1859 open(). So we do this first. If it succeeds we do almost twice
1860 the work but this does not matter, since it is not for production
1861 use. */
1862 static const char preload_file[] = "/etc/ld.so.preload";
1863 if (__glibc_unlikely (__access (preload_file, R_OK) == 0))
1865 /* Read the contents of the file. */
1866 file = _dl_sysdep_read_whole_file (preload_file, &file_size,
1867 PROT_READ | PROT_WRITE);
1868 if (__glibc_unlikely (file != MAP_FAILED))
1870 /* Parse the file. It contains names of libraries to be loaded,
1871 separated by white spaces or `:'. It may also contain
1872 comments introduced by `#'. */
1873 char *problem;
1874 char *runp;
1875 size_t rest;
1877 /* Eliminate comments. */
1878 runp = file;
1879 rest = file_size;
1880 while (rest > 0)
1882 char *comment = memchr (runp, '#', rest);
1883 if (comment == NULL)
1884 break;
1886 rest -= comment - runp;
1888 *comment = ' ';
1889 while (--rest > 0 && *++comment != '\n');
1892 /* We have one problematic case: if we have a name at the end of
1893 the file without a trailing terminating characters, we cannot
1894 place the \0. Handle the case separately. */
1895 if (file[file_size - 1] != ' ' && file[file_size - 1] != '\t'
1896 && file[file_size - 1] != '\n' && file[file_size - 1] != ':')
1898 problem = &file[file_size];
1899 while (problem > file && problem[-1] != ' '
1900 && problem[-1] != '\t'
1901 && problem[-1] != '\n' && problem[-1] != ':')
1902 --problem;
1904 if (problem > file)
1905 problem[-1] = '\0';
1907 else
1909 problem = NULL;
1910 file[file_size - 1] = '\0';
1913 RTLD_TIMING_VAR (start);
1914 rtld_timer_start (&start);
1916 if (file != problem)
1918 char *p;
1919 runp = file;
1920 while ((p = strsep (&runp, ": \t\n")) != NULL)
1921 if (p[0] != '\0')
1922 npreloads += do_preload (p, main_map, preload_file);
1925 if (problem != NULL)
1927 char *p = strndupa (problem, file_size - (problem - file));
1929 npreloads += do_preload (p, main_map, preload_file);
1932 rtld_timer_accum (&load_time, start);
1934 /* We don't need the file anymore. */
1935 __munmap (file, file_size);
1939 if (__glibc_unlikely (*first_preload != NULL))
1941 /* Set up PRELOADS with a vector of the preloaded libraries. */
1942 struct link_map *l = *first_preload;
1943 preloads = __alloca (npreloads * sizeof preloads[0]);
1944 i = 0;
1947 preloads[i++] = l;
1948 l = l->l_next;
1949 } while (l);
1950 assert (i == npreloads);
1953 #ifdef NEED_DL_SYSINFO_DSO
1954 /* Now that the audit modules are opened, call la_objopen for the vDSO. */
1955 if (GLRO(dl_sysinfo_map) != NULL)
1956 _dl_audit_objopen (GLRO(dl_sysinfo_map), LM_ID_BASE);
1957 #endif
1959 /* Load all the libraries specified by DT_NEEDED entries. If LD_PRELOAD
1960 specified some libraries to load, these are inserted before the actual
1961 dependencies in the executable's searchlist for symbol resolution. */
1963 RTLD_TIMING_VAR (start);
1964 rtld_timer_start (&start);
1965 _dl_map_object_deps (main_map, preloads, npreloads,
1966 state.mode == rtld_mode_trace, 0);
1967 rtld_timer_accum (&load_time, start);
1970 /* Mark all objects as being in the global scope. */
1971 for (i = main_map->l_searchlist.r_nlist; i > 0; )
1972 main_map->l_searchlist.r_list[--i]->l_global = 1;
1974 /* Remove _dl_rtld_map from the chain. */
1975 GL(dl_rtld_map).l_prev->l_next = GL(dl_rtld_map).l_next;
1976 if (GL(dl_rtld_map).l_next != NULL)
1977 GL(dl_rtld_map).l_next->l_prev = GL(dl_rtld_map).l_prev;
1979 for (i = 1; i < main_map->l_searchlist.r_nlist; ++i)
1980 if (main_map->l_searchlist.r_list[i] == &GL(dl_rtld_map))
1981 break;
1983 bool rtld_multiple_ref = false;
1984 if (__glibc_likely (i < main_map->l_searchlist.r_nlist))
1986 /* Some DT_NEEDED entry referred to the interpreter object itself, so
1987 put it back in the list of visible objects. We insert it into the
1988 chain in symbol search order because gdb uses the chain's order as
1989 its symbol search order. */
1990 rtld_multiple_ref = true;
1992 GL(dl_rtld_map).l_prev = main_map->l_searchlist.r_list[i - 1];
1993 if (__glibc_likely (state.mode == rtld_mode_normal))
1995 GL(dl_rtld_map).l_next = (i + 1 < main_map->l_searchlist.r_nlist
1996 ? main_map->l_searchlist.r_list[i + 1]
1997 : NULL);
1998 #ifdef NEED_DL_SYSINFO_DSO
1999 if (GLRO(dl_sysinfo_map) != NULL
2000 && GL(dl_rtld_map).l_prev->l_next == GLRO(dl_sysinfo_map)
2001 && GL(dl_rtld_map).l_next != GLRO(dl_sysinfo_map))
2002 GL(dl_rtld_map).l_prev = GLRO(dl_sysinfo_map);
2003 #endif
2005 else
2006 /* In trace mode there might be an invisible object (which we
2007 could not find) after the previous one in the search list.
2008 In this case it doesn't matter much where we put the
2009 interpreter object, so we just initialize the list pointer so
2010 that the assertion below holds. */
2011 GL(dl_rtld_map).l_next = GL(dl_rtld_map).l_prev->l_next;
2013 assert (GL(dl_rtld_map).l_prev->l_next == GL(dl_rtld_map).l_next);
2014 GL(dl_rtld_map).l_prev->l_next = &GL(dl_rtld_map);
2015 if (GL(dl_rtld_map).l_next != NULL)
2017 assert (GL(dl_rtld_map).l_next->l_prev == GL(dl_rtld_map).l_prev);
2018 GL(dl_rtld_map).l_next->l_prev = &GL(dl_rtld_map);
2022 /* Now let us see whether all libraries are available in the
2023 versions we need. */
2025 struct version_check_args args;
2026 args.doexit = state.mode == rtld_mode_normal;
2027 args.dotrace = state.mode == rtld_mode_trace;
2028 _dl_receive_error (print_missing_version, version_check_doit, &args);
2031 /* We do not initialize any of the TLS functionality unless any of the
2032 initial modules uses TLS. This makes dynamic loading of modules with
2033 TLS impossible, but to support it requires either eagerly doing setup
2034 now or lazily doing it later. Doing it now makes us incompatible with
2035 an old kernel that can't perform TLS_INIT_TP, even if no TLS is ever
2036 used. Trying to do it lazily is too hairy to try when there could be
2037 multiple threads (from a non-TLS-using libpthread). */
2038 bool was_tls_init_tp_called = __rtld_tls_init_tp_called;
2039 if (tcbp == NULL)
2040 tcbp = init_tls (0);
2042 if (__glibc_likely (need_security_init))
2043 /* Initialize security features. But only if we have not done it
2044 earlier. */
2045 security_init ();
2047 if (__glibc_unlikely (state.mode != rtld_mode_normal))
2049 /* We were run just to list the shared libraries. It is
2050 important that we do this before real relocation, because the
2051 functions we call below for output may no longer work properly
2052 after relocation. */
2053 struct link_map *l;
2055 if (GLRO(dl_debug_mask) & DL_DEBUG_UNUSED)
2057 /* Look through the dependencies of the main executable
2058 and determine which of them is not actually
2059 required. */
2060 struct link_map *l = main_map;
2062 /* Relocate the main executable. */
2063 struct relocate_args args = { .l = l,
2064 .reloc_mode = ((GLRO(dl_lazy)
2065 ? RTLD_LAZY : 0)
2066 | __RTLD_NOIFUNC) };
2067 _dl_receive_error (print_unresolved, relocate_doit, &args);
2069 /* This loop depends on the dependencies of the executable to
2070 correspond in number and order to the DT_NEEDED entries. */
2071 ElfW(Dyn) *dyn = main_map->l_ld;
2072 bool first = true;
2073 while (dyn->d_tag != DT_NULL)
2075 if (dyn->d_tag == DT_NEEDED)
2077 l = l->l_next;
2078 #ifdef NEED_DL_SYSINFO_DSO
2079 /* Skip the VDSO since it's not part of the list
2080 of objects we brought in via DT_NEEDED entries. */
2081 if (l == GLRO(dl_sysinfo_map))
2082 l = l->l_next;
2083 #endif
2084 if (!l->l_used)
2086 if (first)
2088 _dl_printf ("Unused direct dependencies:\n");
2089 first = false;
2092 _dl_printf ("\t%s\n", l->l_name);
2096 ++dyn;
2099 _exit (first != true);
2101 else if (! main_map->l_info[DT_NEEDED])
2102 _dl_printf ("\tstatically linked\n");
2103 else
2105 for (l = state.mode_trace_program ? main_map : main_map->l_next;
2106 l; l = l->l_next) {
2107 if (l->l_faked)
2108 /* The library was not found. */
2109 _dl_printf ("\t%s => not found\n", l->l_libname->name);
2110 else if (strcmp (l->l_libname->name, l->l_name) == 0)
2111 /* Print vDSO like libraries without duplicate name. Some
2112 consumers depend of this format. */
2113 _dl_printf ("\t%s (0x%0*zx)\n", l->l_libname->name,
2114 (int) sizeof l->l_map_start * 2,
2115 (size_t) l->l_map_start);
2116 else
2117 _dl_printf ("\t%s => %s (0x%0*zx)\n",
2118 DSO_FILENAME (l->l_libname->name),
2119 DSO_FILENAME (l->l_name),
2120 (int) sizeof l->l_map_start * 2,
2121 (size_t) l->l_map_start);
2125 if (__glibc_unlikely (state.mode != rtld_mode_trace))
2126 for (i = 1; i < (unsigned int) _dl_argc; ++i)
2128 const ElfW(Sym) *ref = NULL;
2129 ElfW(Addr) loadbase;
2130 lookup_t result;
2132 result = _dl_lookup_symbol_x (_dl_argv[i], main_map,
2133 &ref, main_map->l_scope,
2134 NULL, ELF_RTYPE_CLASS_PLT,
2135 DL_LOOKUP_ADD_DEPENDENCY, NULL);
2137 loadbase = LOOKUP_VALUE_ADDRESS (result, false);
2139 _dl_printf ("%s found at 0x%0*zd in object at 0x%0*zd\n",
2140 _dl_argv[i],
2141 (int) sizeof ref->st_value * 2,
2142 (size_t) ref->st_value,
2143 (int) sizeof loadbase * 2, (size_t) loadbase);
2145 else
2147 /* If LD_WARN is set, warn about undefined symbols. */
2148 if (GLRO(dl_lazy) >= 0 && GLRO(dl_verbose))
2150 /* We have to do symbol dependency testing. */
2151 struct relocate_args args;
2152 unsigned int i;
2154 args.reloc_mode = ((GLRO(dl_lazy) ? RTLD_LAZY : 0)
2155 | __RTLD_NOIFUNC);
2157 i = main_map->l_searchlist.r_nlist;
2158 while (i-- > 0)
2160 struct link_map *l = main_map->l_initfini[i];
2161 if (l != &GL(dl_rtld_map) && ! l->l_faked)
2163 args.l = l;
2164 _dl_receive_error (print_unresolved, relocate_doit,
2165 &args);
2170 #define VERNEEDTAG (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (DT_VERNEED))
2171 if (state.version_info)
2173 /* Print more information. This means here, print information
2174 about the versions needed. */
2175 int first = 1;
2176 struct link_map *map;
2178 for (map = main_map; map != NULL; map = map->l_next)
2180 const char *strtab;
2181 ElfW(Dyn) *dyn = map->l_info[VERNEEDTAG];
2182 ElfW(Verneed) *ent;
2184 if (dyn == NULL)
2185 continue;
2187 strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
2188 ent = (ElfW(Verneed) *) (map->l_addr + dyn->d_un.d_ptr);
2190 if (first)
2192 _dl_printf ("\n\tVersion information:\n");
2193 first = 0;
2196 _dl_printf ("\t%s:\n", DSO_FILENAME (map->l_name));
2198 while (1)
2200 ElfW(Vernaux) *aux;
2201 struct link_map *needed;
2203 needed = find_needed (strtab + ent->vn_file);
2204 aux = (ElfW(Vernaux) *) ((char *) ent + ent->vn_aux);
2206 while (1)
2208 const char *fname = NULL;
2210 if (needed != NULL
2211 && match_version (strtab + aux->vna_name,
2212 needed))
2213 fname = needed->l_name;
2215 _dl_printf ("\t\t%s (%s) %s=> %s\n",
2216 strtab + ent->vn_file,
2217 strtab + aux->vna_name,
2218 aux->vna_flags & VER_FLG_WEAK
2219 ? "[WEAK] " : "",
2220 fname ?: "not found");
2222 if (aux->vna_next == 0)
2223 /* No more symbols. */
2224 break;
2226 /* Next symbol. */
2227 aux = (ElfW(Vernaux) *) ((char *) aux
2228 + aux->vna_next);
2231 if (ent->vn_next == 0)
2232 /* No more dependencies. */
2233 break;
2235 /* Next dependency. */
2236 ent = (ElfW(Verneed) *) ((char *) ent + ent->vn_next);
2242 _exit (0);
2245 /* Now set up the variable which helps the assembler startup code. */
2246 GL(dl_ns)[LM_ID_BASE]._ns_main_searchlist = &main_map->l_searchlist;
2248 /* Save the information about the original global scope list since
2249 we need it in the memory handling later. */
2250 GLRO(dl_initial_searchlist) = *GL(dl_ns)[LM_ID_BASE]._ns_main_searchlist;
2252 /* Remember the last search directory added at startup, now that
2253 malloc will no longer be the one from dl-minimal.c. As a side
2254 effect, this marks ld.so as initialized, so that the rtld_active
2255 function returns true from now on. */
2256 GLRO(dl_init_all_dirs) = GL(dl_all_dirs);
2258 /* Print scope information. */
2259 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_SCOPES))
2261 _dl_debug_printf ("\nInitial object scopes\n");
2263 for (struct link_map *l = main_map; l != NULL; l = l->l_next)
2264 _dl_show_scope (l, 0);
2267 _rtld_main_check (main_map, _dl_argv[0]);
2269 /* Now we have all the objects loaded. Relocate them all except for
2270 the dynamic linker itself. We do this in reverse order so that copy
2271 relocs of earlier objects overwrite the data written by later
2272 objects. We do not re-relocate the dynamic linker itself in this
2273 loop because that could result in the GOT entries for functions we
2274 call being changed, and that would break us. It is safe to relocate
2275 the dynamic linker out of order because it has no copy relocs (we
2276 know that because it is self-contained). */
2278 int consider_profiling = GLRO(dl_profile) != NULL;
2280 /* If we are profiling we also must do lazy reloaction. */
2281 GLRO(dl_lazy) |= consider_profiling;
2283 RTLD_TIMING_VAR (start);
2284 rtld_timer_start (&start);
2286 unsigned i = main_map->l_searchlist.r_nlist;
2287 while (i-- > 0)
2289 struct link_map *l = main_map->l_initfini[i];
2291 /* While we are at it, help the memory handling a bit. We have to
2292 mark some data structures as allocated with the fake malloc()
2293 implementation in ld.so. */
2294 struct libname_list *lnp = l->l_libname->next;
2296 while (__builtin_expect (lnp != NULL, 0))
2298 lnp->dont_free = 1;
2299 lnp = lnp->next;
2301 /* Also allocated with the fake malloc(). */
2302 l->l_free_initfini = 0;
2304 if (l != &GL(dl_rtld_map))
2305 _dl_relocate_object (l, l->l_scope, GLRO(dl_lazy) ? RTLD_LAZY : 0,
2306 consider_profiling);
2308 /* Add object to slot information data if necessasy. */
2309 if (l->l_tls_blocksize != 0 && __rtld_tls_init_tp_called)
2310 _dl_add_to_slotinfo (l, true);
2313 rtld_timer_stop (&relocate_time, start);
2315 /* Now enable profiling if needed. Like the previous call,
2316 this has to go here because the calls it makes should use the
2317 rtld versions of the functions (particularly calloc()), but it
2318 needs to have _dl_profile_map set up by the relocator. */
2319 if (__glibc_unlikely (GL(dl_profile_map) != NULL))
2320 /* We must prepare the profiling. */
2321 _dl_start_profile ();
2323 if ((!was_tls_init_tp_called && GL(dl_tls_max_dtv_idx) > 0)
2324 || count_modids != _dl_count_modids ())
2325 ++GL(dl_tls_generation);
2327 /* Now that we have completed relocation, the initializer data
2328 for the TLS blocks has its final values and we can copy them
2329 into the main thread's TLS area, which we allocated above.
2330 Note: thread-local variables must only be accessed after completing
2331 the next step. */
2332 _dl_allocate_tls_init (tcbp, false);
2334 /* And finally install it for the main thread. */
2335 if (! __rtld_tls_init_tp_called)
2336 call_tls_init_tp (tcbp);
2338 /* Make sure no new search directories have been added. */
2339 assert (GLRO(dl_init_all_dirs) == GL(dl_all_dirs));
2341 if (rtld_multiple_ref)
2343 /* There was an explicit ref to the dynamic linker as a shared lib.
2344 Re-relocate ourselves with user-controlled symbol definitions.
2346 We must do this after TLS initialization in case after this
2347 re-relocation, we might call a user-supplied function
2348 (e.g. calloc from _dl_relocate_object) that uses TLS data. */
2350 /* Set up the object lookup structures. */
2351 _dl_find_object_init ();
2353 /* The malloc implementation has been relocated, so resolving
2354 its symbols (and potentially calling IFUNC resolvers) is safe
2355 at this point. */
2356 __rtld_malloc_init_real (main_map);
2358 /* Likewise for the locking implementation. */
2359 __rtld_mutex_init ();
2361 RTLD_TIMING_VAR (start);
2362 rtld_timer_start (&start);
2364 /* Mark the link map as not yet relocated again. */
2365 GL(dl_rtld_map).l_relocated = 0;
2366 _dl_relocate_object (&GL(dl_rtld_map), main_map->l_scope, 0, 0);
2368 rtld_timer_accum (&relocate_time, start);
2371 /* Relocation is complete. Perform early libc initialization. This
2372 is the initial libc, even if audit modules have been loaded with
2373 other libcs. */
2374 _dl_call_libc_early_init (GL(dl_ns)[LM_ID_BASE].libc_map, true);
2376 /* Do any necessary cleanups for the startup OS interface code.
2377 We do these now so that no calls are made after rtld re-relocation
2378 which might be resolved to different functions than we expect.
2379 We cannot do this before relocating the other objects because
2380 _dl_relocate_object might need to call `mprotect' for DT_TEXTREL. */
2381 _dl_sysdep_start_cleanup ();
2383 /* Auditing checkpoint: we have added all objects. */
2384 _dl_audit_activity_nsid (LM_ID_BASE, LA_ACT_CONSISTENT);
2386 /* Notify the debugger all new objects are now ready to go. We must re-get
2387 the address since by now the variable might be in another object. */
2388 r = _dl_debug_update (LM_ID_BASE);
2389 r->r_state = RT_CONSISTENT;
2390 _dl_debug_state ();
2391 LIBC_PROBE (init_complete, 2, LM_ID_BASE, r);
2393 #if defined USE_LDCONFIG && !defined MAP_COPY
2394 /* We must munmap() the cache file. */
2395 _dl_unload_cache ();
2396 #endif
2398 /* Once we return, _dl_sysdep_start will invoke
2399 the DT_INIT functions and then *USER_ENTRY. */
2402 /* This is a little helper function for resolving symbols while
2403 tracing the binary. */
2404 static void
2405 print_unresolved (int errcode __attribute__ ((unused)), const char *objname,
2406 const char *errstring)
2408 if (objname[0] == '\0')
2409 objname = RTLD_PROGNAME;
2410 _dl_error_printf ("%s (%s)\n", errstring, objname);
2413 /* This is a little helper function for resolving symbols while
2414 tracing the binary. */
2415 static void
2416 print_missing_version (int errcode __attribute__ ((unused)),
2417 const char *objname, const char *errstring)
2419 _dl_error_printf ("%s: %s: %s\n", RTLD_PROGNAME,
2420 objname, errstring);
2423 /* Process the string given as the parameter which explains which debugging
2424 options are enabled. */
2425 static void
2426 process_dl_debug (struct dl_main_state *state, const char *dl_debug)
2428 /* When adding new entries make sure that the maximal length of a name
2429 is correctly handled in the LD_DEBUG_HELP code below. */
2430 static const struct
2432 unsigned char len;
2433 const char name[10];
2434 const char helptext[41];
2435 unsigned short int mask;
2436 } debopts[] =
2438 #define LEN_AND_STR(str) sizeof (str) - 1, str
2439 { LEN_AND_STR ("libs"), "display library search paths",
2440 DL_DEBUG_LIBS | DL_DEBUG_IMPCALLS },
2441 { LEN_AND_STR ("reloc"), "display relocation processing",
2442 DL_DEBUG_RELOC | DL_DEBUG_IMPCALLS },
2443 { LEN_AND_STR ("files"), "display progress for input file",
2444 DL_DEBUG_FILES | DL_DEBUG_IMPCALLS },
2445 { LEN_AND_STR ("symbols"), "display symbol table processing",
2446 DL_DEBUG_SYMBOLS | DL_DEBUG_IMPCALLS },
2447 { LEN_AND_STR ("bindings"), "display information about symbol binding",
2448 DL_DEBUG_BINDINGS | DL_DEBUG_IMPCALLS },
2449 { LEN_AND_STR ("versions"), "display version dependencies",
2450 DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS },
2451 { LEN_AND_STR ("scopes"), "display scope information",
2452 DL_DEBUG_SCOPES },
2453 { LEN_AND_STR ("all"), "all previous options combined",
2454 DL_DEBUG_LIBS | DL_DEBUG_RELOC | DL_DEBUG_FILES | DL_DEBUG_SYMBOLS
2455 | DL_DEBUG_BINDINGS | DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS
2456 | DL_DEBUG_SCOPES },
2457 { LEN_AND_STR ("statistics"), "display relocation statistics",
2458 DL_DEBUG_STATISTICS },
2459 { LEN_AND_STR ("unused"), "determined unused DSOs",
2460 DL_DEBUG_UNUSED },
2461 { LEN_AND_STR ("help"), "display this help message and exit",
2462 DL_DEBUG_HELP },
2464 #define ndebopts (sizeof (debopts) / sizeof (debopts[0]))
2466 /* Skip separating white spaces and commas. */
2467 while (*dl_debug != '\0')
2469 if (*dl_debug != ' ' && *dl_debug != ',' && *dl_debug != ':')
2471 size_t cnt;
2472 size_t len = 1;
2474 while (dl_debug[len] != '\0' && dl_debug[len] != ' '
2475 && dl_debug[len] != ',' && dl_debug[len] != ':')
2476 ++len;
2478 for (cnt = 0; cnt < ndebopts; ++cnt)
2479 if (debopts[cnt].len == len
2480 && memcmp (dl_debug, debopts[cnt].name, len) == 0)
2482 GLRO(dl_debug_mask) |= debopts[cnt].mask;
2483 state->any_debug = true;
2484 break;
2487 if (cnt == ndebopts)
2489 /* Display a warning and skip everything until next
2490 separator. */
2491 char *copy = strndupa (dl_debug, len);
2492 _dl_error_printf ("\
2493 warning: debug option `%s' unknown; try LD_DEBUG=help\n", copy);
2496 dl_debug += len;
2497 continue;
2500 ++dl_debug;
2503 if (GLRO(dl_debug_mask) & DL_DEBUG_UNUSED)
2505 /* In order to get an accurate picture of whether a particular
2506 DT_NEEDED entry is actually used we have to process both
2507 the PLT and non-PLT relocation entries. */
2508 GLRO(dl_lazy) = 0;
2511 if (GLRO(dl_debug_mask) & DL_DEBUG_HELP)
2513 size_t cnt;
2515 _dl_printf ("\
2516 Valid options for the LD_DEBUG environment variable are:\n\n");
2518 for (cnt = 0; cnt < ndebopts; ++cnt)
2519 _dl_printf (" %.*s%s%s\n", debopts[cnt].len, debopts[cnt].name,
2520 " " + debopts[cnt].len - 3,
2521 debopts[cnt].helptext);
2523 _dl_printf ("\n\
2524 To direct the debugging output into a file instead of standard output\n\
2525 a filename can be specified using the LD_DEBUG_OUTPUT environment variable.\n");
2526 _exit (0);
2530 static void
2531 process_envvars (struct dl_main_state *state)
2533 char **runp = _environ;
2534 char *envline;
2535 char *debug_output = NULL;
2537 /* This is the default place for profiling data file. */
2538 GLRO(dl_profile_output)
2539 = &"/var/tmp\0/var/profile"[__libc_enable_secure ? 9 : 0];
2541 while ((envline = _dl_next_ld_env_entry (&runp)) != NULL)
2543 size_t len = 0;
2545 while (envline[len] != '\0' && envline[len] != '=')
2546 ++len;
2548 if (envline[len] != '=')
2549 /* This is a "LD_" variable at the end of the string without
2550 a '=' character. Ignore it since otherwise we will access
2551 invalid memory below. */
2552 continue;
2554 switch (len)
2556 case 4:
2557 /* Warning level, verbose or not. */
2558 if (memcmp (envline, "WARN", 4) == 0)
2559 GLRO(dl_verbose) = envline[5] != '\0';
2560 break;
2562 case 5:
2563 /* Debugging of the dynamic linker? */
2564 if (memcmp (envline, "DEBUG", 5) == 0)
2566 process_dl_debug (state, &envline[6]);
2567 break;
2569 if (memcmp (envline, "AUDIT", 5) == 0)
2570 audit_list_add_string (&state->audit_list, &envline[6]);
2571 break;
2573 case 7:
2574 /* Print information about versions. */
2575 if (memcmp (envline, "VERBOSE", 7) == 0)
2577 state->version_info = envline[8] != '\0';
2578 break;
2581 /* List of objects to be preloaded. */
2582 if (memcmp (envline, "PRELOAD", 7) == 0)
2584 state->preloadlist = &envline[8];
2585 break;
2588 /* Which shared object shall be profiled. */
2589 if (memcmp (envline, "PROFILE", 7) == 0 && envline[8] != '\0')
2590 GLRO(dl_profile) = &envline[8];
2591 break;
2593 case 8:
2594 /* Do we bind early? */
2595 if (memcmp (envline, "BIND_NOW", 8) == 0)
2597 GLRO(dl_lazy) = envline[9] == '\0';
2598 break;
2600 if (memcmp (envline, "BIND_NOT", 8) == 0)
2601 GLRO(dl_bind_not) = envline[9] != '\0';
2602 break;
2604 case 9:
2605 /* Test whether we want to see the content of the auxiliary
2606 array passed up from the kernel. */
2607 if (!__libc_enable_secure
2608 && memcmp (envline, "SHOW_AUXV", 9) == 0)
2609 _dl_show_auxv ();
2610 break;
2612 case 11:
2613 /* Path where the binary is found. */
2614 if (!__libc_enable_secure
2615 && memcmp (envline, "ORIGIN_PATH", 11) == 0)
2616 GLRO(dl_origin_path) = &envline[12];
2617 break;
2619 case 12:
2620 /* The library search path. */
2621 if (!__libc_enable_secure
2622 && memcmp (envline, "LIBRARY_PATH", 12) == 0)
2624 state->library_path = &envline[13];
2625 state->library_path_source = "LD_LIBRARY_PATH";
2626 break;
2629 /* Where to place the profiling data file. */
2630 if (memcmp (envline, "DEBUG_OUTPUT", 12) == 0)
2632 debug_output = &envline[13];
2633 break;
2636 if (!__libc_enable_secure
2637 && memcmp (envline, "DYNAMIC_WEAK", 12) == 0)
2638 GLRO(dl_dynamic_weak) = 1;
2639 break;
2641 case 14:
2642 /* Where to place the profiling data file. */
2643 if (!__libc_enable_secure
2644 && memcmp (envline, "PROFILE_OUTPUT", 14) == 0
2645 && envline[15] != '\0')
2646 GLRO(dl_profile_output) = &envline[15];
2647 break;
2649 case 20:
2650 /* The mode of the dynamic linker can be set. */
2651 if (memcmp (envline, "TRACE_LOADED_OBJECTS", 20) == 0)
2653 state->mode = rtld_mode_trace;
2654 state->mode_trace_program
2655 = _dl_strtoul (&envline[21], NULL) > 1;
2657 break;
2661 /* Extra security for SUID binaries. Remove all dangerous environment
2662 variables. */
2663 if (__glibc_unlikely (__libc_enable_secure))
2665 const char *nextp = UNSECURE_ENVVARS;
2668 unsetenv (nextp);
2669 nextp = strchr (nextp, '\0') + 1;
2671 while (*nextp != '\0');
2673 GLRO(dl_debug_mask) = 0;
2675 if (state->mode != rtld_mode_normal)
2676 _exit (5);
2678 /* If we have to run the dynamic linker in debugging mode and the
2679 LD_DEBUG_OUTPUT environment variable is given, we write the debug
2680 messages to this file. */
2681 else if (state->any_debug && debug_output != NULL)
2683 const int flags = O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW;
2684 size_t name_len = strlen (debug_output);
2685 char buf[name_len + 12];
2686 char *startp;
2688 buf[name_len + 11] = '\0';
2689 startp = _itoa (__getpid (), &buf[name_len + 11], 10, 0);
2690 *--startp = '.';
2691 startp = memcpy (startp - name_len, debug_output, name_len);
2693 GLRO(dl_debug_fd) = __open64_nocancel (startp, flags, DEFFILEMODE);
2694 if (GLRO(dl_debug_fd) == -1)
2695 /* We use standard output if opening the file failed. */
2696 GLRO(dl_debug_fd) = STDOUT_FILENO;
2700 #if HP_TIMING_INLINE
2701 static void
2702 print_statistics_item (const char *title, hp_timing_t time,
2703 hp_timing_t total)
2705 char cycles[HP_TIMING_PRINT_SIZE];
2706 HP_TIMING_PRINT (cycles, sizeof (cycles), time);
2708 char relative[3 * sizeof (hp_timing_t) + 2];
2709 char *cp = _itoa ((1000ULL * time) / total, relative + sizeof (relative),
2710 10, 0);
2711 /* Sets the decimal point. */
2712 char *wp = relative;
2713 switch (relative + sizeof (relative) - cp)
2715 case 3:
2716 *wp++ = *cp++;
2717 /* Fall through. */
2718 case 2:
2719 *wp++ = *cp++;
2720 /* Fall through. */
2721 case 1:
2722 *wp++ = '.';
2723 *wp++ = *cp++;
2725 *wp = '\0';
2726 _dl_debug_printf ("%s: %s cycles (%s%%)\n", title, cycles, relative);
2728 #endif
2730 /* Print the various times we collected. */
2731 static void
2732 __attribute ((noinline))
2733 print_statistics (const hp_timing_t *rtld_total_timep)
2735 #if HP_TIMING_INLINE
2737 char cycles[HP_TIMING_PRINT_SIZE];
2738 HP_TIMING_PRINT (cycles, sizeof (cycles), *rtld_total_timep);
2739 _dl_debug_printf ("\nruntime linker statistics:\n"
2740 " total startup time in dynamic loader: %s cycles\n",
2741 cycles);
2742 print_statistics_item (" time needed for relocation",
2743 relocate_time, *rtld_total_timep);
2745 #endif
2747 unsigned long int num_relative_relocations = 0;
2748 for (Lmid_t ns = 0; ns < GL(dl_nns); ++ns)
2750 if (GL(dl_ns)[ns]._ns_loaded == NULL)
2751 continue;
2753 struct r_scope_elem *scope = &GL(dl_ns)[ns]._ns_loaded->l_searchlist;
2755 for (unsigned int i = 0; i < scope->r_nlist; i++)
2757 struct link_map *l = scope->r_list [i];
2759 if (l->l_addr != 0 && l->l_info[VERSYMIDX (DT_RELCOUNT)])
2760 num_relative_relocations
2761 += l->l_info[VERSYMIDX (DT_RELCOUNT)]->d_un.d_val;
2762 #ifndef ELF_MACHINE_REL_RELATIVE
2763 /* Relative relocations are processed on these architectures if
2764 library is loaded to different address than p_vaddr. */
2765 if ((l->l_addr != 0)
2766 && l->l_info[VERSYMIDX (DT_RELACOUNT)])
2767 #else
2768 /* On e.g. IA-64 or Alpha, relative relocations are processed
2769 only if library is loaded to different address than p_vaddr. */
2770 if (l->l_addr != 0 && l->l_info[VERSYMIDX (DT_RELACOUNT)])
2771 #endif
2772 num_relative_relocations
2773 += l->l_info[VERSYMIDX (DT_RELACOUNT)]->d_un.d_val;
2777 _dl_debug_printf (" number of relocations: %lu\n"
2778 " number of relocations from cache: %lu\n"
2779 " number of relative relocations: %lu\n",
2780 GL(dl_num_relocations),
2781 GL(dl_num_cache_relocations),
2782 num_relative_relocations);
2784 #if HP_TIMING_INLINE
2785 print_statistics_item (" time needed to load objects",
2786 load_time, *rtld_total_timep);
2787 #endif