2 * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra.
3 * Copyright 2003 Alexander Kabaev <kan@FreeBSD.ORG>.
4 * Copyright 2009-2012 Konstantin Belousov <kib@FreeBSD.ORG>.
5 * Copyright 2012 John Marino <draco@marino.st>.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * Dynamic linker for ELF.
34 * John Polstra <jdp@polstra.com>.
38 #error "GCC is needed to compile this file"
41 #include <sys/param.h>
42 #include <sys/mount.h>
45 #include <sys/sysctl.h>
47 #include <sys/utsname.h>
48 #include <sys/ktrace.h>
49 #include <sys/resident.h>
52 #include <machine/tls.h>
67 #include "rtld_printf.h"
70 #define PATH_RTLD "/usr/libexec/ld-elf.so.2"
71 #define LD_ARY_CACHE 16
74 typedef void (*func_ptr_type)();
75 typedef void * (*path_enum_proc) (const char *path, size_t len, void *arg);
78 * Function declarations.
80 static const char *_getenv_ld(const char *id);
81 static void die(void) __dead2;
82 static void digest_dynamic1(Obj_Entry *, int, const Elf_Dyn **,
83 const Elf_Dyn **, const Elf_Dyn **);
84 static void digest_dynamic2(Obj_Entry *, const Elf_Dyn *, const Elf_Dyn *,
86 static void digest_dynamic(Obj_Entry *, int);
87 static Obj_Entry *digest_phdr(const Elf_Phdr *, int, caddr_t, const char *);
88 static Obj_Entry *dlcheck(void *);
89 static Obj_Entry *dlopen_object(const char *name, int fd, Obj_Entry *refobj,
90 int lo_flags, int mode, RtldLockState *lockstate);
91 static Obj_Entry *do_load_object(int, const char *, char *, struct stat *, int);
92 static int do_search_info(const Obj_Entry *obj, int, struct dl_serinfo *);
93 static bool donelist_check(DoneList *, const Obj_Entry *);
94 static void errmsg_restore(char *);
95 static char *errmsg_save(void);
96 static void *fill_search_info(const char *, size_t, void *);
97 static char *find_library(const char *, const Obj_Entry *);
98 static const char *gethints(bool);
99 static void init_dag(Obj_Entry *);
100 static void init_rtld(caddr_t, Elf_Auxinfo **);
101 static void initlist_add_neededs(Needed_Entry *, Objlist *);
102 static void initlist_add_objects(Obj_Entry *, Obj_Entry **, Objlist *);
103 static bool is_exported(const Elf_Sym *);
104 static void linkmap_add(Obj_Entry *);
105 static void linkmap_delete(Obj_Entry *);
106 static void load_filtees(Obj_Entry *, int flags, RtldLockState *);
107 static void unload_filtees(Obj_Entry *);
108 static int load_needed_objects(Obj_Entry *, int);
109 static int load_preload_objects(void);
110 static Obj_Entry *load_object(const char *, int fd, const Obj_Entry *, int);
111 static void map_stacks_exec(RtldLockState *);
112 static Obj_Entry *obj_from_addr(const void *);
113 static void objlist_call_fini(Objlist *, Obj_Entry *, RtldLockState *);
114 static void objlist_call_init(Objlist *, RtldLockState *);
115 static void objlist_clear(Objlist *);
116 static Objlist_Entry *objlist_find(Objlist *, const Obj_Entry *);
117 static void objlist_init(Objlist *);
118 static void objlist_push_head(Objlist *, Obj_Entry *);
119 static void objlist_push_tail(Objlist *, Obj_Entry *);
120 static void objlist_remove(Objlist *, Obj_Entry *);
121 static void *path_enumerate(const char *, path_enum_proc, void *);
122 static int relocate_objects(Obj_Entry *, bool, Obj_Entry *, int,
124 static int resolve_objects_ifunc(Obj_Entry *first, bool bind_now,
125 int flags, RtldLockState *lockstate);
126 static int rtld_dirname(const char *, char *);
127 static int rtld_dirname_abs(const char *, char *);
128 static void *rtld_dlopen(const char *name, int fd, int mode);
129 static void rtld_exit(void);
130 static char *search_library_path(const char *, const char *);
131 static const void **get_program_var_addr(const char *, RtldLockState *);
132 static void set_program_var(const char *, const void *);
133 static int symlook_default(SymLook *, const Obj_Entry *refobj);
134 static int symlook_global(SymLook *, DoneList *);
135 static void symlook_init_from_req(SymLook *, const SymLook *);
136 static int symlook_list(SymLook *, const Objlist *, DoneList *);
137 static int symlook_needed(SymLook *, const Needed_Entry *, DoneList *);
138 static int symlook_obj1_sysv(SymLook *, const Obj_Entry *);
139 static int symlook_obj1_gnu(SymLook *, const Obj_Entry *);
140 static void trace_loaded_objects(Obj_Entry *);
141 static void unlink_object(Obj_Entry *);
142 static void unload_object(Obj_Entry *);
143 static void unref_dag(Obj_Entry *);
144 static void ref_dag(Obj_Entry *);
145 static int origin_subst_one(char **, const char *, const char *,
146 const char *, char *);
147 static char *origin_subst(const char *, const char *);
148 static void preinitialize_main_object (void);
149 static int rtld_verify_versions(const Objlist *);
150 static int rtld_verify_object_versions(Obj_Entry *);
151 static void object_add_name(Obj_Entry *, const char *);
152 static int object_match_name(const Obj_Entry *, const char *);
153 static void ld_utrace_log(int, void *, void *, size_t, int, const char *);
154 static void rtld_fill_dl_phdr_info(const Obj_Entry *obj,
155 struct dl_phdr_info *phdr_info);
156 static uint_fast32_t gnu_hash (const char *);
157 static bool matched_symbol(SymLook *, const Obj_Entry *, Sym_Match_Result *,
158 const unsigned long);
160 void r_debug_state(struct r_debug *, struct link_map *) __noinline;
165 static char *error_message; /* Message for dlerror(), or NULL */
166 struct r_debug r_debug; /* for GDB; */
167 static bool libmap_disable; /* Disable libmap */
168 static bool ld_loadfltr; /* Immediate filters processing */
169 static char *libmap_override; /* Maps to use in addition to libmap.conf */
170 static bool trust; /* False for setuid and setgid programs */
171 static bool dangerous_ld_env; /* True if environment variables have been
172 used to affect the libraries loaded */
173 static const char *ld_bind_now; /* Environment variable for immediate binding */
174 static const char *ld_debug; /* Environment variable for debugging */
175 static const char *ld_library_path; /* Environment variable for search path */
176 static char *ld_preload; /* Environment variable for libraries to
178 static const char *ld_elf_hints_path; /* Environment variable for alternative hints path */
179 static const char *ld_tracing; /* Called from ldd to print libs */
180 static const char *ld_utrace; /* Use utrace() to log events. */
181 static int (*rtld_functrace)( /* Optional function call tracing hook */
182 const char *caller_obj,
183 const char *callee_obj,
184 const char *callee_func,
186 static const Obj_Entry *rtld_functrace_obj; /* Object thereof */
187 static Obj_Entry *obj_list; /* Head of linked list of shared objects */
188 static Obj_Entry **obj_tail; /* Link field of last object in list */
189 static Obj_Entry **preload_tail;
190 static Obj_Entry *obj_main; /* The main program shared object */
191 static Obj_Entry obj_rtld; /* The dynamic linker shared object */
192 static unsigned int obj_count; /* Number of objects in obj_list */
193 static unsigned int obj_loads; /* Number of objects in obj_list */
195 static int ld_resident; /* Non-zero if resident */
196 static const char *ld_ary[LD_ARY_CACHE];
198 static Objlist initlist;
200 static Objlist list_global = /* Objects dlopened with RTLD_GLOBAL */
201 STAILQ_HEAD_INITIALIZER(list_global);
202 static Objlist list_main = /* Objects loaded at program startup */
203 STAILQ_HEAD_INITIALIZER(list_main);
204 static Objlist list_fini = /* Objects needing fini() calls */
205 STAILQ_HEAD_INITIALIZER(list_fini);
207 static Elf_Sym sym_zero; /* For resolving undefined weak refs. */
209 #define GDB_STATE(s,m) r_debug.r_state = s; r_debug_state(&r_debug,m);
211 extern Elf_Dyn _DYNAMIC;
212 #pragma weak _DYNAMIC
213 #ifndef RTLD_IS_DYNAMIC
214 #define RTLD_IS_DYNAMIC() (&_DYNAMIC != NULL)
217 #ifdef ENABLE_OSRELDATE
221 static int stack_prot = PROT_READ | PROT_WRITE | RTLD_DEFAULT_STACK_EXEC;
222 static int max_stack_flags;
225 * These are the functions the dynamic linker exports to application
226 * programs. They are the only symbols the dynamic linker is willing
227 * to export from itself.
229 static func_ptr_type exports[] = {
230 (func_ptr_type) &_rtld_error,
231 (func_ptr_type) &dlclose,
232 (func_ptr_type) &dlerror,
233 (func_ptr_type) &dlopen,
234 (func_ptr_type) &fdlopen,
235 (func_ptr_type) &dlfunc,
236 (func_ptr_type) &dlsym,
237 (func_ptr_type) &dlvsym,
238 (func_ptr_type) &dladdr,
239 (func_ptr_type) &dlinfo,
240 (func_ptr_type) &dl_iterate_phdr,
242 (func_ptr_type) &___tls_get_addr,
244 (func_ptr_type) &__tls_get_addr,
245 (func_ptr_type) &__tls_get_addr_tcb,
246 (func_ptr_type) &_rtld_allocate_tls,
247 (func_ptr_type) &_rtld_free_tls,
248 (func_ptr_type) &_rtld_call_init,
249 (func_ptr_type) &_rtld_thread_init,
250 (func_ptr_type) &_rtld_addr_phdr,
251 (func_ptr_type) &_rtld_get_stack_prot,
256 * Global declarations normally provided by crt1. The dynamic linker is
257 * not built with crt1, so we have to provide them ourselves.
263 * Used to pass argc, argv to init functions.
269 * Globals to control TLS allocation.
271 size_t tls_last_offset; /* Static TLS offset of last module */
272 size_t tls_last_size; /* Static TLS size of last module */
273 size_t tls_static_space; /* Static TLS space allocated */
274 int tls_dtv_generation = 1; /* Used to detect when dtv size changes */
275 int tls_max_index = 1; /* Largest module index allocated */
278 * Fill in a DoneList with an allocation large enough to hold all of
279 * the currently-loaded objects. Keep this as a macro since it calls
280 * alloca and we want that to occur within the scope of the caller.
282 #define donelist_init(dlp) \
283 ((dlp)->objs = alloca(obj_count * sizeof (dlp)->objs[0]), \
284 assert((dlp)->objs != NULL), \
285 (dlp)->num_alloc = obj_count, \
288 #define UTRACE_DLOPEN_START 1
289 #define UTRACE_DLOPEN_STOP 2
290 #define UTRACE_DLCLOSE_START 3
291 #define UTRACE_DLCLOSE_STOP 4
292 #define UTRACE_LOAD_OBJECT 5
293 #define UTRACE_UNLOAD_OBJECT 6
294 #define UTRACE_ADD_RUNDEP 7
295 #define UTRACE_PRELOAD_FINISHED 8
296 #define UTRACE_INIT_CALL 9
297 #define UTRACE_FINI_CALL 10
300 char sig[4]; /* 'RTLD' */
303 void *mapbase; /* Used for 'parent' and 'init/fini' */
305 int refcnt; /* Used for 'mode' */
306 char name[MAXPATHLEN];
309 #define LD_UTRACE(e, h, mb, ms, r, n) do { \
310 if (ld_utrace != NULL) \
311 ld_utrace_log(e, h, mb, ms, r, n); \
315 ld_utrace_log(int event, void *handle, void *mapbase, size_t mapsize,
316 int refcnt, const char *name)
318 struct utrace_rtld ut;
326 ut.mapbase = mapbase;
327 ut.mapsize = mapsize;
329 bzero(ut.name, sizeof(ut.name));
331 strlcpy(ut.name, name, sizeof(ut.name));
332 utrace(&ut, sizeof(ut));
336 * Main entry point for dynamic linking. The first argument is the
337 * stack pointer. The stack is expected to be laid out as described
338 * in the SVR4 ABI specification, Intel 386 Processor Supplement.
339 * Specifically, the stack pointer points to a word containing
340 * ARGC. Following that in the stack is a null-terminated sequence
341 * of pointers to argument strings. Then comes a null-terminated
342 * sequence of pointers to environment strings. Finally, there is a
343 * sequence of "auxiliary vector" entries.
345 * The second argument points to a place to store the dynamic linker's
346 * exit procedure pointer and the third to a place to store the main
349 * The return value is the main program's entry point.
352 _rtld(Elf_Addr *sp, func_ptr_type *exit_proc, Obj_Entry **objp)
354 Elf_Auxinfo *aux_info[AT_COUNT];
362 Objlist_Entry *entry;
365 /* marino: DO NOT MOVE THESE VARIABLES TO _rtld
366 Obj_Entry **preload_tail;
368 from global to here. It will break the DWARF2 unwind scheme.
369 The system compilers were unaffected, but not gcc 4.6
373 * On entry, the dynamic linker itself has not been relocated yet.
374 * Be very careful not to reference any global data until after
375 * init_rtld has returned. It is OK to reference file-scope statics
376 * and string constants, and to call static and global functions.
379 /* Find the auxiliary vector on the stack. */
382 sp += argc + 1; /* Skip over arguments and NULL terminator */
386 * If we aren't already resident we have to dig out some more info.
387 * Note that auxinfo does not exist when we are resident.
389 * I'm not sure about the ld_resident check. It seems to read zero
390 * prior to relocation, which is what we want. When running from a
391 * resident copy everything will be relocated so we are definitely
394 if (ld_resident == 0) {
395 while (*sp++ != 0) /* Skip over environment, and NULL terminator */
397 aux = (Elf_Auxinfo *) sp;
399 /* Digest the auxiliary vector. */
400 for (i = 0; i < AT_COUNT; i++)
402 for (auxp = aux; auxp->a_type != AT_NULL; auxp++) {
403 if (auxp->a_type < AT_COUNT)
404 aux_info[auxp->a_type] = auxp;
407 /* Initialize and relocate ourselves. */
408 assert(aux_info[AT_BASE] != NULL);
409 init_rtld((caddr_t) aux_info[AT_BASE]->a_un.a_ptr, aux_info);
412 ld_index = 0; /* don't use old env cache in case we are resident */
413 __progname = obj_rtld.path;
414 argv0 = argv[0] != NULL ? argv[0] : "(null)";
419 trust = !issetugid();
421 ld_bind_now = _getenv_ld("LD_BIND_NOW");
423 * If the process is tainted, then we un-set the dangerous environment
424 * variables. The process will be marked as tainted until setuid(2)
425 * is called. If any child process calls setuid(2) we do not want any
426 * future processes to honor the potentially un-safe variables.
429 if ( unsetenv("LD_DEBUG")
430 || unsetenv("LD_PRELOAD")
431 || unsetenv("LD_LIBRARY_PATH")
432 || unsetenv("LD_ELF_HINTS_PATH")
433 || unsetenv("LD_LIBMAP")
434 || unsetenv("LD_LIBMAP_DISABLE")
435 || unsetenv("LD_LOADFLTR")
437 _rtld_error("environment corrupt; aborting");
441 ld_debug = _getenv_ld("LD_DEBUG");
442 libmap_disable = _getenv_ld("LD_LIBMAP_DISABLE") != NULL;
443 libmap_override = (char *)_getenv_ld("LD_LIBMAP");
444 ld_library_path = _getenv_ld("LD_LIBRARY_PATH");
445 ld_preload = (char *)_getenv_ld("LD_PRELOAD");
446 ld_elf_hints_path = _getenv_ld("LD_ELF_HINTS_PATH");
447 ld_loadfltr = _getenv_ld("LD_LOADFLTR") != NULL;
448 dangerous_ld_env = (ld_library_path != NULL)
449 || (ld_preload != NULL)
450 || (ld_elf_hints_path != NULL)
452 || (libmap_override != NULL)
455 ld_tracing = _getenv_ld("LD_TRACE_LOADED_OBJECTS");
456 ld_utrace = _getenv_ld("LD_UTRACE");
458 if ((ld_elf_hints_path == NULL) || strlen(ld_elf_hints_path) == 0)
459 ld_elf_hints_path = _PATH_ELF_HINTS;
461 if (ld_debug != NULL && *ld_debug != '\0')
463 dbg("%s is initialized, base address = %p", __progname,
464 (caddr_t) aux_info[AT_BASE]->a_un.a_ptr);
465 dbg("RTLD dynamic = %p", obj_rtld.dynamic);
466 dbg("RTLD pltgot = %p", obj_rtld.pltgot);
468 dbg("initializing thread locks");
472 * If we are resident we can skip work that we have already done.
473 * Note that the stack is reset and there is no Elf_Auxinfo
474 * when running from a resident image, and the static globals setup
475 * between here and resident_skip will have already been setup.
481 * Load the main program, or process its program header if it is
484 if (aux_info[AT_EXECFD] != NULL) { /* Load the main program. */
485 int fd = aux_info[AT_EXECFD]->a_un.a_val;
486 dbg("loading main program");
487 obj_main = map_object(fd, argv0, NULL);
489 if (obj_main == NULL)
491 max_stack_flags = obj->stack_flags;
492 } else { /* Main program already loaded. */
493 const Elf_Phdr *phdr;
497 dbg("processing main program's program header");
498 assert(aux_info[AT_PHDR] != NULL);
499 phdr = (const Elf_Phdr *) aux_info[AT_PHDR]->a_un.a_ptr;
500 assert(aux_info[AT_PHNUM] != NULL);
501 phnum = aux_info[AT_PHNUM]->a_un.a_val;
502 assert(aux_info[AT_PHENT] != NULL);
503 assert(aux_info[AT_PHENT]->a_un.a_val == sizeof(Elf_Phdr));
504 assert(aux_info[AT_ENTRY] != NULL);
505 entry = (caddr_t) aux_info[AT_ENTRY]->a_un.a_ptr;
506 if ((obj_main = digest_phdr(phdr, phnum, entry, argv0)) == NULL)
510 char buf[MAXPATHLEN];
511 if (aux_info[AT_EXECPATH] != NULL) {
514 kexecpath = aux_info[AT_EXECPATH]->a_un.a_ptr;
515 dbg("AT_EXECPATH %p %s", kexecpath, kexecpath);
516 if (kexecpath[0] == '/')
517 obj_main->path = kexecpath;
518 else if (getcwd(buf, sizeof(buf)) == NULL ||
519 strlcat(buf, "/", sizeof(buf)) >= sizeof(buf) ||
520 strlcat(buf, kexecpath, sizeof(buf)) >= sizeof(buf))
521 obj_main->path = xstrdup(argv0);
523 obj_main->path = xstrdup(buf);
525 char resolved[MAXPATHLEN];
526 dbg("No AT_EXECPATH");
527 if (argv0[0] == '/') {
528 if (realpath(argv0, resolved) != NULL)
529 obj_main->path = xstrdup(resolved);
531 obj_main->path = xstrdup(argv0);
533 if (getcwd(buf, sizeof(buf)) != NULL
534 && strlcat(buf, "/", sizeof(buf)) < sizeof(buf)
535 && strlcat(buf, argv0, sizeof (buf)) < sizeof(buf)
536 && access(buf, R_OK) == 0
537 && realpath(buf, resolved) != NULL)
538 obj_main->path = xstrdup(resolved);
540 obj_main->path = xstrdup(argv0);
543 dbg("obj_main path %s", obj_main->path);
544 obj_main->mainprog = true;
546 if (aux_info[AT_STACKPROT] != NULL &&
547 aux_info[AT_STACKPROT]->a_un.a_val != 0)
548 stack_prot = aux_info[AT_STACKPROT]->a_un.a_val;
551 * Get the actual dynamic linker pathname from the executable if
552 * possible. (It should always be possible.) That ensures that
553 * gdb will find the right dynamic linker even if a non-standard
556 if (obj_main->interp != NULL &&
557 strcmp(obj_main->interp, obj_rtld.path) != 0) {
559 obj_rtld.path = xstrdup(obj_main->interp);
560 __progname = obj_rtld.path;
563 digest_dynamic(obj_main, 0);
564 dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d",
565 obj_main->path, obj_main->valid_hash_sysv, obj_main->valid_hash_gnu,
566 obj_main->dynsymcount);
568 linkmap_add(obj_main);
569 linkmap_add(&obj_rtld);
571 /* Link the main program into the list of objects. */
572 *obj_tail = obj_main;
573 obj_tail = &obj_main->next;
577 /* Initialize a fake symbol for resolving undefined weak references. */
578 sym_zero.st_info = ELF_ST_INFO(STB_GLOBAL, STT_NOTYPE);
579 sym_zero.st_shndx = SHN_UNDEF;
580 sym_zero.st_value = -(uintptr_t)obj_main->relocbase;
583 libmap_disable = (bool)lm_init(libmap_override);
585 dbg("loading LD_PRELOAD libraries");
586 if (load_preload_objects() == -1)
588 preload_tail = obj_tail;
590 dbg("loading needed objects");
591 if (load_needed_objects(obj_main, 0) == -1)
594 /* Make a list of all objects loaded at startup. */
595 for (obj = obj_list; obj != NULL; obj = obj->next) {
596 objlist_push_tail(&list_main, obj);
600 dbg("checking for required versions");
601 if (rtld_verify_versions(&list_main) == -1 && !ld_tracing)
606 if (ld_tracing) { /* We're done */
607 trace_loaded_objects(obj_main);
611 if (ld_resident) /* XXX clean this up! */
614 if (_getenv_ld("LD_DUMP_REL_PRE") != NULL) {
615 dump_relocations(obj_main);
619 /* setup TLS for main thread */
620 dbg("initializing initial thread local storage");
621 STAILQ_FOREACH(entry, &list_main, link) {
623 * Allocate all the initial objects out of the static TLS
624 * block even if they didn't ask for it.
626 allocate_tls_offset(entry->obj);
629 tls_static_space = tls_last_offset + RTLD_STATIC_TLS_EXTRA;
632 * Do not try to allocate the TLS here, let libc do it itself.
633 * (crt1 for the program will call _init_tls())
636 if (relocate_objects(obj_main,
637 ld_bind_now != NULL && *ld_bind_now != '\0',
638 &obj_rtld, SYMLOOK_EARLY, NULL) == -1)
641 dbg("doing copy relocations");
642 if (do_copy_relocations(obj_main) == -1)
647 if (_getenv_ld("LD_RESIDENT_UNREGISTER_NOW")) {
648 if (exec_sys_unregister(-1) < 0) {
649 dbg("exec_sys_unregister failed %d\n", errno);
652 dbg("exec_sys_unregister success\n");
656 if (_getenv_ld("LD_DUMP_REL_POST") != NULL) {
657 dump_relocations(obj_main);
661 dbg("initializing key program variables");
662 set_program_var("__progname", argv[0] != NULL ? basename(argv[0]) : "");
663 set_program_var("environ", env);
664 set_program_var("__elf_aux_vector", aux);
666 if (_getenv_ld("LD_RESIDENT_REGISTER_NOW")) {
667 extern void resident_start(void);
669 if (exec_sys_register(resident_start) < 0) {
670 dbg("exec_sys_register failed %d\n", errno);
673 dbg("exec_sys_register success\n");
677 /* Make a list of init functions to call. */
678 objlist_init(&initlist);
679 initlist_add_objects(obj_list, preload_tail, &initlist);
681 r_debug_state(NULL, &obj_main->linkmap); /* say hello to gdb! */
683 map_stacks_exec(NULL);
685 dbg("resolving ifuncs");
686 if (resolve_objects_ifunc(obj_main,
687 ld_bind_now != NULL && *ld_bind_now != '\0', SYMLOOK_EARLY,
692 * Do NOT call the initlist here, give libc a chance to set up
693 * the initial TLS segment. crt1 will then call _rtld_call_init().
696 dbg("transferring control to program entry point = %p", obj_main->entry);
698 /* Return the exit procedure and the program entry point. */
699 *exit_proc = rtld_exit;
701 return (func_ptr_type) obj_main->entry;
705 * Call the initialization list for dynamically loaded libraries.
706 * (called from crt1.c).
709 _rtld_call_init(void)
711 RtldLockState lockstate;
714 if (!obj_main->note_present && obj_main->valid_hash_gnu) {
716 * The use of a linker script with a PHDRS directive that does not include
717 * PT_NOTE will block the crt_no_init note. In this case we'll look for the
718 * recently added GNU hash dynamic tag which gets built by default. It is
719 * extremely unlikely to find a pre-3.1 binary without a PT_NOTE header and
720 * a gnu hash tag. If gnu hash found, consider binary to use new crt code.
722 obj_main->crt_no_init = true;
723 dbg("Setting crt_no_init without presence of PT_NOTE header");
726 wlock_acquire(rtld_bind_lock, &lockstate);
727 if (obj_main->crt_no_init) {
728 preinitialize_main_object();
732 * Make sure we don't call the main program's init and fini functions
733 * for binaries linked with old crt1 which calls _init itself.
735 obj_main->init = obj_main->fini = (Elf_Addr)NULL;
736 obj_main->init_array = obj_main->fini_array = (Elf_Addr)NULL;
738 objlist_call_init(&initlist, &lockstate);
739 objlist_clear(&initlist);
740 dbg("loading filtees");
741 for (obj = obj_list->next; obj != NULL; obj = obj->next) {
742 if (ld_loadfltr || obj->z_loadfltr)
743 load_filtees(obj, 0, &lockstate);
745 lock_release(rtld_bind_lock, &lockstate);
749 rtld_resolve_ifunc(const Obj_Entry *obj, const Elf_Sym *def)
754 ptr = (void *)make_function_pointer(def, obj);
755 target = ((Elf_Addr (*)(void))ptr)();
756 return ((void *)target);
760 _rtld_bind(Obj_Entry *obj, Elf_Size reloff, void *stack)
764 const Obj_Entry *defobj;
767 RtldLockState lockstate;
769 rlock_acquire(rtld_bind_lock, &lockstate);
770 if (sigsetjmp(lockstate.env, 0) != 0)
771 lock_upgrade(rtld_bind_lock, &lockstate);
773 rel = (const Elf_Rel *) ((caddr_t) obj->pltrel + reloff);
775 rel = (const Elf_Rel *) ((caddr_t) obj->pltrela + reloff);
777 where = (Elf_Addr *) (obj->relocbase + rel->r_offset);
778 def = find_symdef(ELF_R_SYM(rel->r_info), obj, &defobj, true, NULL,
782 if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
783 target = (Elf_Addr)rtld_resolve_ifunc(defobj, def);
785 target = (Elf_Addr)(defobj->relocbase + def->st_value);
787 dbg("\"%s\" in \"%s\" ==> %p in \"%s\"",
788 defobj->strtab + def->st_name, basename(obj->path),
789 (void *)target, basename(defobj->path));
792 * If we have a function call tracing hook, and the
793 * hook would like to keep tracing this one function,
794 * prevent the relocation so we will wind up here
795 * the next time again.
797 * We don't want to functrace calls from the functracer
798 * to avoid recursive loops.
800 if (rtld_functrace != NULL && obj != rtld_functrace_obj) {
801 if (rtld_functrace(obj->path,
803 defobj->strtab + def->st_name,
805 lock_release(rtld_bind_lock, &lockstate);
811 * Write the new contents for the jmpslot. Note that depending on
812 * architecture, the value which we need to return back to the
813 * lazy binding trampoline may or may not be the target
814 * address. The value returned from reloc_jmpslot() is the value
815 * that the trampoline needs.
817 target = reloc_jmpslot(where, target, defobj, obj, rel);
818 lock_release(rtld_bind_lock, &lockstate);
823 * Error reporting function. Use it like printf. If formats the message
824 * into a buffer, and sets things up so that the next call to dlerror()
825 * will return the message.
828 _rtld_error(const char *fmt, ...)
830 static char buf[512];
834 rtld_vsnprintf(buf, sizeof buf, fmt, ap);
840 * Return a dynamically-allocated copy of the current error message, if any.
845 return error_message == NULL ? NULL : xstrdup(error_message);
849 * Restore the current error message from a copy which was previously saved
850 * by errmsg_save(). The copy is freed.
853 errmsg_restore(char *saved_msg)
855 if (saved_msg == NULL)
856 error_message = NULL;
858 _rtld_error("%s", saved_msg);
864 basename(const char *name)
866 const char *p = strrchr(name, '/');
867 return p != NULL ? p + 1 : name;
870 static struct utsname uts;
873 origin_subst_one(char **res, const char *real, const char *kw, const char *subst,
883 subst_len = kw_len = 0;
887 if (subst_len == 0) {
888 subst_len = strlen(subst);
892 *res = xmalloc(PATH_MAX);
895 if ((res1 - *res) + subst_len + (p1 - p) >= PATH_MAX) {
896 _rtld_error("Substitution of %s in %s cannot be performed",
898 if (may_free != NULL)
903 memcpy(res1, p, p1 - p);
905 memcpy(res1, subst, subst_len);
910 if (may_free != NULL)
913 *res = xstrdup(real);
917 if (may_free != NULL)
919 if (strlcat(res1, p, PATH_MAX - (res1 - *res)) >= PATH_MAX) {
929 origin_subst(const char *real, const char *origin_path)
931 char *res1, *res2, *res3, *res4;
933 if (uts.sysname[0] == '\0') {
934 if (uname(&uts) != 0) {
935 _rtld_error("utsname failed: %d", errno);
939 if (!origin_subst_one(&res1, real, "$ORIGIN", origin_path, NULL) ||
940 !origin_subst_one(&res2, res1, "$OSNAME", uts.sysname, res1) ||
941 !origin_subst_one(&res3, res2, "$OSREL", uts.release, res2) ||
942 !origin_subst_one(&res4, res3, "$PLATFORM", uts.machine, res3))
950 const char *msg = dlerror();
954 rtld_fdputstr(STDERR_FILENO, msg);
955 rtld_fdputchar(STDERR_FILENO, '\n');
960 * Process a shared object's DYNAMIC section, and save the important
961 * information in its Obj_Entry structure.
964 digest_dynamic1(Obj_Entry *obj, int early, const Elf_Dyn **dyn_rpath,
965 const Elf_Dyn **dyn_soname, const Elf_Dyn **dyn_runpath)
968 Needed_Entry **needed_tail = &obj->needed;
969 Needed_Entry **needed_filtees_tail = &obj->needed_filtees;
970 Needed_Entry **needed_aux_filtees_tail = &obj->needed_aux_filtees;
971 const Elf_Hashelt *hashtab;
972 const Elf32_Word *hashval;
973 Elf32_Word bkt, nmaskwords;
976 int plttype = DT_REL;
982 obj->bind_now = false;
983 for (dynp = obj->dynamic; dynp->d_tag != DT_NULL; dynp++) {
984 switch (dynp->d_tag) {
987 obj->rel = (const Elf_Rel *) (obj->relocbase + dynp->d_un.d_ptr);
991 obj->relsize = dynp->d_un.d_val;
995 assert(dynp->d_un.d_val == sizeof(Elf_Rel));
999 obj->pltrel = (const Elf_Rel *)
1000 (obj->relocbase + dynp->d_un.d_ptr);
1004 obj->pltrelsize = dynp->d_un.d_val;
1008 obj->rela = (const Elf_Rela *) (obj->relocbase + dynp->d_un.d_ptr);
1012 obj->relasize = dynp->d_un.d_val;
1016 assert(dynp->d_un.d_val == sizeof(Elf_Rela));
1020 plttype = dynp->d_un.d_val;
1021 assert(dynp->d_un.d_val == DT_REL || plttype == DT_RELA);
1025 obj->symtab = (const Elf_Sym *)
1026 (obj->relocbase + dynp->d_un.d_ptr);
1030 assert(dynp->d_un.d_val == sizeof(Elf_Sym));
1034 obj->strtab = (const char *) (obj->relocbase + dynp->d_un.d_ptr);
1038 obj->strsize = dynp->d_un.d_val;
1042 obj->verneed = (const Elf_Verneed *) (obj->relocbase +
1047 obj->verneednum = dynp->d_un.d_val;
1051 obj->verdef = (const Elf_Verdef *) (obj->relocbase +
1056 obj->verdefnum = dynp->d_un.d_val;
1060 obj->versyms = (const Elf_Versym *)(obj->relocbase +
1066 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1068 obj->nbuckets = hashtab[0];
1069 obj->nchains = hashtab[1];
1070 obj->buckets = hashtab + 2;
1071 obj->chains = obj->buckets + obj->nbuckets;
1072 obj->valid_hash_sysv = obj->nbuckets > 0 && obj->nchains > 0 &&
1073 obj->buckets != NULL;
1079 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1081 obj->nbuckets_gnu = hashtab[0];
1082 obj->symndx_gnu = hashtab[1];
1083 nmaskwords = hashtab[2];
1084 bloom_size32 = (__ELF_WORD_SIZE / 32) * nmaskwords;
1085 /* Number of bitmask words is required to be power of 2 */
1086 nmw_power2 = ((nmaskwords & (nmaskwords - 1)) == 0);
1087 obj->maskwords_bm_gnu = nmaskwords - 1;
1088 obj->shift2_gnu = hashtab[3];
1089 obj->bloom_gnu = (Elf_Addr *) (hashtab + 4);
1090 obj->buckets_gnu = hashtab + 4 + bloom_size32;
1091 obj->chain_zero_gnu = obj->buckets_gnu + obj->nbuckets_gnu -
1093 obj->valid_hash_gnu = nmw_power2 && obj->nbuckets_gnu > 0 &&
1094 obj->buckets_gnu != NULL;
1100 Needed_Entry *nep = NEW(Needed_Entry);
1101 nep->name = dynp->d_un.d_val;
1106 needed_tail = &nep->next;
1112 Needed_Entry *nep = NEW(Needed_Entry);
1113 nep->name = dynp->d_un.d_val;
1117 *needed_filtees_tail = nep;
1118 needed_filtees_tail = &nep->next;
1124 Needed_Entry *nep = NEW(Needed_Entry);
1125 nep->name = dynp->d_un.d_val;
1129 *needed_aux_filtees_tail = nep;
1130 needed_aux_filtees_tail = &nep->next;
1135 obj->pltgot = (Elf_Addr *) (obj->relocbase + dynp->d_un.d_ptr);
1139 obj->textrel = true;
1143 obj->symbolic = true;
1148 * We have to wait until later to process this, because we
1149 * might not have gotten the address of the string table yet.
1159 *dyn_runpath = dynp;
1163 obj->init = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1167 obj->fini = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1170 case DT_PREINIT_ARRAY:
1171 obj->preinit_array = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1175 obj->init_array = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1179 obj->fini_array = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1182 case DT_PREINIT_ARRAYSZ:
1183 obj->preinit_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1186 case DT_INIT_ARRAYSZ:
1187 obj->init_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1190 case DT_FINI_ARRAYSZ:
1191 obj->fini_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1195 /* XXX - not implemented yet */
1197 dbg("Filling in DT_DEBUG entry");
1198 ((Elf_Dyn*)dynp)->d_un.d_ptr = (Elf_Addr) &r_debug;
1202 if ((dynp->d_un.d_val & DF_ORIGIN) && trust)
1203 obj->z_origin = true;
1204 if (dynp->d_un.d_val & DF_SYMBOLIC)
1205 obj->symbolic = true;
1206 if (dynp->d_un.d_val & DF_TEXTREL)
1207 obj->textrel = true;
1208 if (dynp->d_un.d_val & DF_BIND_NOW)
1209 obj->bind_now = true;
1210 /*if (dynp->d_un.d_val & DF_STATIC_TLS)
1215 if (dynp->d_un.d_val & DF_1_NOOPEN)
1216 obj->z_noopen = true;
1217 if ((dynp->d_un.d_val & DF_1_ORIGIN) && trust)
1218 obj->z_origin = true;
1219 /*if (dynp->d_un.d_val & DF_1_GLOBAL)
1221 if (dynp->d_un.d_val & DF_1_BIND_NOW)
1222 obj->bind_now = true;
1223 if (dynp->d_un.d_val & DF_1_NODELETE)
1224 obj->z_nodelete = true;
1225 if (dynp->d_un.d_val & DF_1_LOADFLTR)
1226 obj->z_loadfltr = true;
1227 if (dynp->d_un.d_val & DF_1_NODEFLIB)
1228 obj->z_nodeflib = true;
1233 dbg("Ignoring d_tag %ld = %#lx", (long)dynp->d_tag,
1240 obj->traced = false;
1242 if (plttype == DT_RELA) {
1243 obj->pltrela = (const Elf_Rela *) obj->pltrel;
1245 obj->pltrelasize = obj->pltrelsize;
1246 obj->pltrelsize = 0;
1249 /* Determine size of dynsym table (equal to nchains of sysv hash) */
1250 if (obj->valid_hash_sysv)
1251 obj->dynsymcount = obj->nchains;
1252 else if (obj->valid_hash_gnu) {
1253 obj->dynsymcount = 0;
1254 for (bkt = 0; bkt < obj->nbuckets_gnu; bkt++) {
1255 if (obj->buckets_gnu[bkt] == 0)
1257 hashval = &obj->chain_zero_gnu[obj->buckets_gnu[bkt]];
1260 while ((*hashval++ & 1u) == 0);
1262 obj->dynsymcount += obj->symndx_gnu;
1267 digest_dynamic2(Obj_Entry *obj, const Elf_Dyn *dyn_rpath,
1268 const Elf_Dyn *dyn_soname, const Elf_Dyn *dyn_runpath)
1271 if (obj->z_origin && obj->origin_path == NULL) {
1272 obj->origin_path = xmalloc(PATH_MAX);
1273 if (rtld_dirname_abs(obj->path, obj->origin_path) == -1)
1277 if (dyn_runpath != NULL) {
1278 obj->runpath = (char *)obj->strtab + dyn_runpath->d_un.d_val;
1280 obj->runpath = origin_subst(obj->runpath, obj->origin_path);
1282 else if (dyn_rpath != NULL) {
1283 obj->rpath = (char *)obj->strtab + dyn_rpath->d_un.d_val;
1285 obj->rpath = origin_subst(obj->rpath, obj->origin_path);
1288 if (dyn_soname != NULL)
1289 object_add_name(obj, obj->strtab + dyn_soname->d_un.d_val);
1293 digest_dynamic(Obj_Entry *obj, int early)
1295 const Elf_Dyn *dyn_rpath;
1296 const Elf_Dyn *dyn_soname;
1297 const Elf_Dyn *dyn_runpath;
1299 digest_dynamic1(obj, early, &dyn_rpath, &dyn_soname, &dyn_runpath);
1300 digest_dynamic2(obj, dyn_rpath, dyn_soname, dyn_runpath);
1304 * Process a shared object's program header. This is used only for the
1305 * main program, when the kernel has already loaded the main program
1306 * into memory before calling the dynamic linker. It creates and
1307 * returns an Obj_Entry structure.
1310 digest_phdr(const Elf_Phdr *phdr, int phnum, caddr_t entry, const char *path)
1313 const Elf_Phdr *phlimit = phdr + phnum;
1315 Elf_Addr note_start, note_end;
1319 for (ph = phdr; ph < phlimit; ph++) {
1320 if (ph->p_type != PT_PHDR)
1324 obj->phsize = ph->p_memsz;
1325 obj->relocbase = (caddr_t)phdr - ph->p_vaddr;
1329 obj->stack_flags = PF_X | PF_R | PF_W;
1331 for (ph = phdr; ph < phlimit; ph++) {
1332 switch (ph->p_type) {
1335 obj->interp = (const char *)(ph->p_vaddr + obj->relocbase);
1339 if (nsegs == 0) { /* First load segment */
1340 obj->vaddrbase = trunc_page(ph->p_vaddr);
1341 obj->mapbase = obj->vaddrbase + obj->relocbase;
1342 obj->textsize = round_page(ph->p_vaddr + ph->p_memsz) -
1344 } else { /* Last load segment */
1345 obj->mapsize = round_page(ph->p_vaddr + ph->p_memsz) -
1352 obj->dynamic = (const Elf_Dyn *)(ph->p_vaddr + obj->relocbase);
1357 obj->tlssize = ph->p_memsz;
1358 obj->tlsalign = ph->p_align;
1359 obj->tlsinitsize = ph->p_filesz;
1360 obj->tlsinit = (void*)(ph->p_vaddr + obj->relocbase);
1364 obj->stack_flags = ph->p_flags;
1368 obj->relro_page = obj->relocbase + trunc_page(ph->p_vaddr);
1369 obj->relro_size = round_page(ph->p_memsz);
1373 obj->note_present = true;
1374 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr;
1375 note_end = note_start + ph->p_filesz;
1376 digest_notes(obj, note_start, note_end);
1381 _rtld_error("%s: too few PT_LOAD segments", path);
1390 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end)
1392 const Elf_Note *note;
1393 const char *note_name;
1396 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end;
1397 note = (const Elf_Note *)((const char *)(note + 1) +
1398 roundup2(note->n_namesz, sizeof(Elf32_Addr)) +
1399 roundup2(note->n_descsz, sizeof(Elf32_Addr)))) {
1400 if (note->n_namesz != sizeof(NOTE_VENDOR) ||
1401 note->n_descsz != sizeof(int32_t))
1403 if (note->n_type != ABI_NOTETYPE && note->n_type != CRT_NOINIT_NOTETYPE)
1405 note_name = (const char *)(note + 1);
1406 if (strncmp(NOTE_VENDOR, note_name, sizeof(NOTE_VENDOR)) != 0)
1408 switch (note->n_type) {
1410 /* DragonFly osrel note */
1411 p = (uintptr_t)(note + 1);
1412 p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1413 obj->osrel = *(const int32_t *)(p);
1414 dbg("note osrel %d", obj->osrel);
1416 case CRT_NOINIT_NOTETYPE:
1417 /* DragonFly 'crt does not call init' note */
1418 obj->crt_no_init = true;
1419 dbg("note crt_no_init");
1426 dlcheck(void *handle)
1430 for (obj = obj_list; obj != NULL; obj = obj->next)
1431 if (obj == (Obj_Entry *) handle)
1434 if (obj == NULL || obj->refcount == 0 || obj->dl_refcount == 0) {
1435 _rtld_error("Invalid shared object handle %p", handle);
1442 * If the given object is already in the donelist, return true. Otherwise
1443 * add the object to the list and return false.
1446 donelist_check(DoneList *dlp, const Obj_Entry *obj)
1450 for (i = 0; i < dlp->num_used; i++)
1451 if (dlp->objs[i] == obj)
1454 * Our donelist allocation should always be sufficient. But if
1455 * our threads locking isn't working properly, more shared objects
1456 * could have been loaded since we allocated the list. That should
1457 * never happen, but we'll handle it properly just in case it does.
1459 if (dlp->num_used < dlp->num_alloc)
1460 dlp->objs[dlp->num_used++] = obj;
1465 * Hash function for symbol table lookup. Don't even think about changing
1466 * this. It is specified by the System V ABI.
1469 elf_hash(const char *name)
1471 const unsigned char *p = (const unsigned char *) name;
1472 unsigned long h = 0;
1475 while (*p != '\0') {
1476 h = (h << 4) + *p++;
1477 if ((g = h & 0xf0000000) != 0)
1485 * The GNU hash function is the Daniel J. Bernstein hash clipped to 32 bits
1486 * unsigned in case it's implemented with a wider type.
1488 static uint_fast32_t
1489 gnu_hash (const char *s)
1491 uint_fast32_t h = 5381;
1492 for (unsigned char c = *s; c != '\0'; c = *++s)
1494 return h & 0xffffffff;
1498 * Find the library with the given name, and return its full pathname.
1499 * The returned string is dynamically allocated. Generates an error
1500 * message and returns NULL if the library cannot be found.
1502 * If the second argument is non-NULL, then it refers to an already-
1503 * loaded shared object, whose library search path will be searched.
1505 * The search order is:
1506 * DT_RPATH in the referencing file _unless_ DT_RUNPATH is present (1)
1507 * DT_RPATH of the main object if DSO without defined DT_RUNPATH (1)
1509 * DT_RUNPATH in the referencing file
1510 * ldconfig hints (if -z nodefaultlib, filter out /usr/lib from list)
1511 * /usr/lib _unless_ the referencing file is linked with -z nodefaultlib
1513 * (1) Handled in digest_dynamic2 - rpath left NULL if runpath defined.
1516 find_library(const char *xname, const Obj_Entry *refobj)
1520 bool objgiven = (refobj != NULL);
1522 if (strchr(xname, '/') != NULL) { /* Hard coded pathname */
1523 if (xname[0] != '/' && !trust) {
1524 _rtld_error("Absolute pathname required for shared object \"%s\"",
1528 if (objgiven && refobj->z_origin)
1529 return origin_subst(xname, refobj->origin_path);
1531 return xstrdup(xname);
1534 if (libmap_disable || !objgiven ||
1535 (name = lm_find(refobj->path, xname)) == NULL)
1536 name = (char *)xname;
1538 dbg(" Searching for \"%s\"", name);
1541 (pathname = search_library_path(name, refobj->rpath)) != NULL) ||
1542 (objgiven && (refobj->runpath == NULL) && (refobj != obj_main) &&
1543 (pathname = search_library_path(name, obj_main->rpath)) != NULL) ||
1544 (pathname = search_library_path(name, ld_library_path)) != NULL ||
1546 (pathname = search_library_path(name, refobj->runpath)) != NULL) ||
1547 (pathname = search_library_path(name, gethints(refobj->z_nodeflib)))
1549 (objgiven && !refobj->z_nodeflib &&
1550 (pathname = search_library_path(name, STANDARD_LIBRARY_PATH)) != NULL))
1553 if(objgiven && refobj->path != NULL) {
1554 _rtld_error("Shared object \"%s\" not found, required by \"%s\"",
1555 name, basename(refobj->path));
1557 _rtld_error("Shared object \"%s\" not found", name);
1563 * Given a symbol number in a referencing object, find the corresponding
1564 * definition of the symbol. Returns a pointer to the symbol, or NULL if
1565 * no definition was found. Returns a pointer to the Obj_Entry of the
1566 * defining object via the reference parameter DEFOBJ_OUT.
1569 find_symdef(unsigned long symnum, const Obj_Entry *refobj,
1570 const Obj_Entry **defobj_out, int flags, SymCache *cache,
1571 RtldLockState *lockstate)
1575 const Obj_Entry *defobj;
1581 * If we have already found this symbol, get the information from
1584 if (symnum >= refobj->dynsymcount)
1585 return NULL; /* Bad object */
1586 if (cache != NULL && cache[symnum].sym != NULL) {
1587 *defobj_out = cache[symnum].obj;
1588 return cache[symnum].sym;
1591 ref = refobj->symtab + symnum;
1592 name = refobj->strtab + ref->st_name;
1597 * We don't have to do a full scale lookup if the symbol is local.
1598 * We know it will bind to the instance in this load module; to
1599 * which we already have a pointer (ie ref). By not doing a lookup,
1600 * we not only improve performance, but it also avoids unresolvable
1601 * symbols when local symbols are not in the hash table.
1603 * This might occur for TLS module relocations, which simply use
1606 if (ELF_ST_BIND(ref->st_info) != STB_LOCAL) {
1607 if (ELF_ST_TYPE(ref->st_info) == STT_SECTION) {
1608 _rtld_error("%s: Bogus symbol table entry %lu", refobj->path,
1611 symlook_init(&req, name);
1613 req.ventry = fetch_ventry(refobj, symnum);
1614 req.lockstate = lockstate;
1615 res = symlook_default(&req, refobj);
1618 defobj = req.defobj_out;
1626 * If we found no definition and the reference is weak, treat the
1627 * symbol as having the value zero.
1629 if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
1635 *defobj_out = defobj;
1636 /* Record the information in the cache to avoid subsequent lookups. */
1637 if (cache != NULL) {
1638 cache[symnum].sym = def;
1639 cache[symnum].obj = defobj;
1642 if (refobj != &obj_rtld)
1643 _rtld_error("%s: Undefined symbol \"%s\"", refobj->path, name);
1649 * Return the search path from the ldconfig hints file, reading it if
1650 * necessary. Returns NULL if there are problems with the hints file,
1651 * or if the search path there is empty.
1652 * If DF_1_NODEFLIB flag set, omit STANDARD_LIBRARY_PATH directories
1655 gethints(bool nostdlib)
1657 static char *hints, *filtered_path;
1658 struct elfhints_hdr hdr;
1659 struct fill_search_info_args sargs, hargs;
1660 struct dl_serinfo smeta, hmeta, *SLPinfo, *hintinfo;
1661 struct dl_serpath *SLPpath, *hintpath;
1663 unsigned int SLPndx, hintndx, fndx, fcount;
1668 if (hints == NULL) {
1669 /* Keep from trying again in case the hints file is bad. */
1672 if ((fd = open(ld_elf_hints_path, O_RDONLY)) == -1)
1674 if (read(fd, &hdr, sizeof hdr) != sizeof hdr ||
1675 hdr.magic != ELFHINTS_MAGIC || hdr.version != 1) {
1679 p = xmalloc(hdr.dirlistlen + 1);
1680 if (lseek(fd, hdr.strtab + hdr.dirlist, SEEK_SET) == -1 ||
1681 read(fd, p, hdr.dirlistlen + 1) != (ssize_t)hdr.dirlistlen + 1) {
1691 return (hints[0] != '\0' ? hints : NULL);
1693 if (filtered_path != NULL)
1696 smeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1698 hmeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1701 sargs.request = RTLD_DI_SERINFOSIZE;
1702 sargs.serinfo = &smeta;
1703 hargs.request = RTLD_DI_SERINFOSIZE;
1704 hargs.serinfo = &hmeta;
1706 path_enumerate(STANDARD_LIBRARY_PATH, fill_search_info, &sargs);
1707 path_enumerate(p, fill_search_info, &hargs);
1709 SLPinfo = malloc(smeta.dls_size);
1710 hintinfo = malloc(hmeta.dls_size);
1712 sargs.request = RTLD_DI_SERINFO;
1713 sargs.serinfo = SLPinfo;
1714 sargs.serpath = &SLPinfo->dls_serpath[0];
1715 sargs.strspace = (char *)&SLPinfo->dls_serpath[smeta.dls_cnt];
1717 hargs.request = RTLD_DI_SERINFO;
1718 hargs.serinfo = hintinfo;
1719 hargs.serpath = &hintinfo->dls_serpath[0];
1720 hargs.strspace = (char *)&hintinfo->dls_serpath[hmeta.dls_cnt];
1722 path_enumerate(STANDARD_LIBRARY_PATH, fill_search_info, &sargs);
1723 path_enumerate(p, fill_search_info, &hargs);
1727 filtered_path = xmalloc(hdr.dirlistlen + 1);
1728 hintpath = &hintinfo->dls_serpath[0];
1729 for (hintndx = 0; hintndx < hmeta.dls_cnt; hintndx++, hintpath++) {
1731 SLPpath = &SLPinfo->dls_serpath[0];
1732 for (SLPndx = 0; SLPndx < smeta.dls_cnt; SLPndx++, SLPpath++) {
1733 if (!strcmp(hintpath->dls_name, SLPpath->dls_name)) {
1741 filtered_path[fndx] = ':';
1745 flen = strlen(hintpath->dls_name);
1746 strncpy((filtered_path + fndx), hintpath->dls_name, flen);
1749 filtered_path[fndx] = '\0';
1755 return (filtered_path[0] != '\0' ? filtered_path : NULL);
1759 init_dag(Obj_Entry *root)
1761 const Needed_Entry *needed;
1762 const Objlist_Entry *elm;
1765 if (root->dag_inited)
1767 donelist_init(&donelist);
1769 /* Root object belongs to own DAG. */
1770 objlist_push_tail(&root->dldags, root);
1771 objlist_push_tail(&root->dagmembers, root);
1772 donelist_check(&donelist, root);
1775 * Add dependencies of root object to DAG in breadth order
1776 * by exploiting the fact that each new object get added
1777 * to the tail of the dagmembers list.
1779 STAILQ_FOREACH(elm, &root->dagmembers, link) {
1780 for (needed = elm->obj->needed; needed != NULL; needed = needed->next) {
1781 if (needed->obj == NULL || donelist_check(&donelist, needed->obj))
1783 objlist_push_tail(&needed->obj->dldags, root);
1784 objlist_push_tail(&root->dagmembers, needed->obj);
1787 root->dag_inited = true;
1791 process_nodelete(Obj_Entry *root)
1793 const Objlist_Entry *elm;
1796 * Walk over object DAG and process every dependent object that
1797 * is marked as DF_1_NODELETE. They need to grow their own DAG,
1798 * which then should have its reference upped separately.
1800 STAILQ_FOREACH(elm, &root->dagmembers, link) {
1801 if (elm->obj != NULL && elm->obj->z_nodelete &&
1802 !elm->obj->ref_nodel) {
1803 dbg("obj %s nodelete", elm->obj->path);
1806 elm->obj->ref_nodel = true;
1812 * Initialize the dynamic linker. The argument is the address at which
1813 * the dynamic linker has been mapped into memory. The primary task of
1814 * this function is to relocate the dynamic linker.
1817 init_rtld(caddr_t mapbase, Elf_Auxinfo **aux_info)
1819 Obj_Entry objtmp; /* Temporary rtld object */
1820 const Elf_Dyn *dyn_rpath;
1821 const Elf_Dyn *dyn_soname;
1822 const Elf_Dyn *dyn_runpath;
1825 * Conjure up an Obj_Entry structure for the dynamic linker.
1827 * The "path" member can't be initialized yet because string constants
1828 * cannot yet be accessed. Below we will set it correctly.
1830 memset(&objtmp, 0, sizeof(objtmp));
1833 objtmp.mapbase = mapbase;
1835 objtmp.relocbase = mapbase;
1837 if (RTLD_IS_DYNAMIC()) {
1838 objtmp.dynamic = rtld_dynamic(&objtmp);
1839 digest_dynamic1(&objtmp, 1, &dyn_rpath, &dyn_soname, &dyn_runpath);
1840 assert(objtmp.needed == NULL);
1841 assert(!objtmp.textrel);
1844 * Temporarily put the dynamic linker entry into the object list, so
1845 * that symbols can be found.
1848 relocate_objects(&objtmp, true, &objtmp, 0, NULL);
1851 /* Initialize the object list. */
1852 obj_tail = &obj_list;
1854 /* Now that non-local variables can be accesses, copy out obj_rtld. */
1855 memcpy(&obj_rtld, &objtmp, sizeof(obj_rtld));
1857 #ifdef ENABLE_OSRELDATE
1858 if (aux_info[AT_OSRELDATE] != NULL)
1859 osreldate = aux_info[AT_OSRELDATE]->a_un.a_val;
1862 digest_dynamic2(&obj_rtld, dyn_rpath, dyn_soname, dyn_runpath);
1864 /* Replace the path with a dynamically allocated copy. */
1865 obj_rtld.path = xstrdup(PATH_RTLD);
1867 r_debug.r_brk = r_debug_state;
1868 r_debug.r_state = RT_CONSISTENT;
1872 * Add the init functions from a needed object list (and its recursive
1873 * needed objects) to "list". This is not used directly; it is a helper
1874 * function for initlist_add_objects(). The write lock must be held
1875 * when this function is called.
1878 initlist_add_neededs(Needed_Entry *needed, Objlist *list)
1880 /* Recursively process the successor needed objects. */
1881 if (needed->next != NULL)
1882 initlist_add_neededs(needed->next, list);
1884 /* Process the current needed object. */
1885 if (needed->obj != NULL)
1886 initlist_add_objects(needed->obj, &needed->obj->next, list);
1890 * Scan all of the DAGs rooted in the range of objects from "obj" to
1891 * "tail" and add their init functions to "list". This recurses over
1892 * the DAGs and ensure the proper init ordering such that each object's
1893 * needed libraries are initialized before the object itself. At the
1894 * same time, this function adds the objects to the global finalization
1895 * list "list_fini" in the opposite order. The write lock must be
1896 * held when this function is called.
1899 initlist_add_objects(Obj_Entry *obj, Obj_Entry **tail, Objlist *list)
1902 if (obj->init_scanned || obj->init_done)
1904 obj->init_scanned = true;
1906 /* Recursively process the successor objects. */
1907 if (&obj->next != tail)
1908 initlist_add_objects(obj->next, tail, list);
1910 /* Recursively process the needed objects. */
1911 if (obj->needed != NULL)
1912 initlist_add_neededs(obj->needed, list);
1913 if (obj->needed_filtees != NULL)
1914 initlist_add_neededs(obj->needed_filtees, list);
1915 if (obj->needed_aux_filtees != NULL)
1916 initlist_add_neededs(obj->needed_aux_filtees, list);
1918 /* Add the object to the init list. */
1919 if (obj->preinit_array != (Elf_Addr)NULL || obj->init != (Elf_Addr)NULL ||
1920 obj->init_array != (Elf_Addr)NULL)
1921 objlist_push_tail(list, obj);
1923 /* Add the object to the global fini list in the reverse order. */
1924 if ((obj->fini != (Elf_Addr)NULL || obj->fini_array != (Elf_Addr)NULL)
1925 && !obj->on_fini_list) {
1926 objlist_push_head(&list_fini, obj);
1927 obj->on_fini_list = true;
1932 #define FPTR_TARGET(f) ((Elf_Addr) (f))
1936 is_exported(const Elf_Sym *def)
1939 const func_ptr_type *p;
1941 value = (Elf_Addr)(obj_rtld.relocbase + def->st_value);
1942 for (p = exports; *p != NULL; p++)
1943 if (FPTR_TARGET(*p) == value)
1949 free_needed_filtees(Needed_Entry *n)
1951 Needed_Entry *needed, *needed1;
1953 for (needed = n; needed != NULL; needed = needed->next) {
1954 if (needed->obj != NULL) {
1955 dlclose(needed->obj);
1959 for (needed = n; needed != NULL; needed = needed1) {
1960 needed1 = needed->next;
1966 unload_filtees(Obj_Entry *obj)
1969 free_needed_filtees(obj->needed_filtees);
1970 obj->needed_filtees = NULL;
1971 free_needed_filtees(obj->needed_aux_filtees);
1972 obj->needed_aux_filtees = NULL;
1973 obj->filtees_loaded = false;
1977 load_filtee1(Obj_Entry *obj, Needed_Entry *needed, int flags,
1978 RtldLockState *lockstate)
1981 for (; needed != NULL; needed = needed->next) {
1982 needed->obj = dlopen_object(obj->strtab + needed->name, -1, obj,
1983 flags, ((ld_loadfltr || obj->z_loadfltr) ? RTLD_NOW : RTLD_LAZY) |
1984 RTLD_LOCAL, lockstate);
1989 load_filtees(Obj_Entry *obj, int flags, RtldLockState *lockstate)
1992 lock_restart_for_upgrade(lockstate);
1993 if (!obj->filtees_loaded) {
1994 load_filtee1(obj, obj->needed_filtees, flags, lockstate);
1995 load_filtee1(obj, obj->needed_aux_filtees, flags, lockstate);
1996 obj->filtees_loaded = true;
2001 process_needed(Obj_Entry *obj, Needed_Entry *needed, int flags)
2005 for (; needed != NULL; needed = needed->next) {
2006 obj1 = needed->obj = load_object(obj->strtab + needed->name, -1, obj,
2007 flags & ~RTLD_LO_NOLOAD);
2008 if (obj1 == NULL && !ld_tracing && (flags & RTLD_LO_FILTEES) == 0)
2015 * Given a shared object, traverse its list of needed objects, and load
2016 * each of them. Returns 0 on success. Generates an error message and
2017 * returns -1 on failure.
2020 load_needed_objects(Obj_Entry *first, int flags)
2024 for (obj = first; obj != NULL; obj = obj->next) {
2025 if (process_needed(obj, obj->needed, flags) == -1)
2032 load_preload_objects(void)
2034 char *p = ld_preload;
2035 static const char delim[] = " \t:;";
2040 p += strspn(p, delim);
2041 while (*p != '\0') {
2042 size_t len = strcspn(p, delim);
2050 obj = load_object(p, -1, NULL, 0);
2052 return -1; /* XXX - cleanup */
2055 p += strspn(p, delim);
2057 /* Check for the magic tracing function */
2058 symlook_init(&req, RTLD_FUNCTRACE);
2059 res = symlook_obj(&req, obj);
2061 rtld_functrace = (void *)(req.defobj_out->relocbase +
2062 req.sym_out->st_value);
2063 rtld_functrace_obj = req.defobj_out;
2066 LD_UTRACE(UTRACE_PRELOAD_FINISHED, NULL, NULL, 0, 0, NULL);
2071 printable_path(const char *path)
2074 return (path == NULL ? "<unknown>" : path);
2078 * Load a shared object into memory, if it is not already loaded. The
2079 * object may be specified by name or by user-supplied file descriptor
2080 * fd_u. In the later case, the fd_u descriptor is not closed, but its
2083 * Returns a pointer to the Obj_Entry for the object. Returns NULL
2087 load_object(const char *name, int fd_u, const Obj_Entry *refobj, int flags)
2095 for (obj = obj_list->next; obj != NULL; obj = obj->next) {
2096 if (object_match_name(obj, name))
2100 path = find_library(name, refobj);
2107 * If we didn't find a match by pathname, or the name is not
2108 * supplied, open the file and check again by device and inode.
2109 * This avoids false mismatches caused by multiple links or ".."
2112 * To avoid a race, we open the file and use fstat() rather than
2117 if ((fd = open(path, O_RDONLY)) == -1) {
2118 _rtld_error("Cannot open \"%s\"", path);
2125 _rtld_error("Cannot dup fd");
2130 if (fstat(fd, &sb) == -1) {
2131 _rtld_error("Cannot fstat \"%s\"", printable_path(path));
2136 for (obj = obj_list->next; obj != NULL; obj = obj->next)
2137 if (obj->ino == sb.st_ino && obj->dev == sb.st_dev)
2139 if (obj != NULL && name != NULL) {
2140 object_add_name(obj, name);
2145 if (flags & RTLD_LO_NOLOAD) {
2151 /* First use of this object, so we must map it in */
2152 obj = do_load_object(fd, name, path, &sb, flags);
2161 do_load_object(int fd, const char *name, char *path, struct stat *sbp,
2168 * but first, make sure that environment variables haven't been
2169 * used to circumvent the noexec flag on a filesystem.
2171 if (dangerous_ld_env) {
2172 if (fstatfs(fd, &fs) != 0) {
2173 _rtld_error("Cannot fstatfs \"%s\"", printable_path(path));
2176 if (fs.f_flags & MNT_NOEXEC) {
2177 _rtld_error("Cannot execute objects on %s\n", fs.f_mntonname);
2181 dbg("loading \"%s\"", printable_path(path));
2182 obj = map_object(fd, printable_path(path), sbp);
2187 * If DT_SONAME is present in the object, digest_dynamic2 already
2188 * added it to the object names.
2191 object_add_name(obj, name);
2193 digest_dynamic(obj, 0);
2194 dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d", obj->path,
2195 obj->valid_hash_sysv, obj->valid_hash_gnu, obj->dynsymcount);
2196 if (obj->z_noopen && (flags & (RTLD_LO_DLOPEN | RTLD_LO_TRACE)) ==
2198 dbg("refusing to load non-loadable \"%s\"", obj->path);
2199 _rtld_error("Cannot dlopen non-loadable %s", obj->path);
2200 munmap(obj->mapbase, obj->mapsize);
2206 obj_tail = &obj->next;
2209 linkmap_add(obj); /* for GDB & dlinfo() */
2210 max_stack_flags |= obj->stack_flags;
2212 dbg(" %p .. %p: %s", obj->mapbase,
2213 obj->mapbase + obj->mapsize - 1, obj->path);
2215 dbg(" WARNING: %s has impure text", obj->path);
2216 LD_UTRACE(UTRACE_LOAD_OBJECT, obj, obj->mapbase, obj->mapsize, 0,
2223 obj_from_addr(const void *addr)
2227 for (obj = obj_list; obj != NULL; obj = obj->next) {
2228 if (addr < (void *) obj->mapbase)
2230 if (addr < (void *) (obj->mapbase + obj->mapsize))
2237 * Call the finalization functions for each of the objects in "list"
2238 * belonging to the DAG of "root" and referenced once. If NULL "root"
2239 * is specified, every finalization function will be called regardless
2240 * of the reference count and the list elements won't be freed. All of
2241 * the objects are expected to have non-NULL fini functions.
2244 objlist_call_fini(Objlist *list, Obj_Entry *root, RtldLockState *lockstate)
2248 Elf_Addr *fini_addr;
2251 assert(root == NULL || root->refcount == 1);
2254 * Preserve the current error message since a fini function might
2255 * call into the dynamic linker and overwrite it.
2257 saved_msg = errmsg_save();
2259 STAILQ_FOREACH(elm, list, link) {
2260 if (root != NULL && (elm->obj->refcount != 1 ||
2261 objlist_find(&root->dagmembers, elm->obj) == NULL))
2264 /* Remove object from fini list to prevent recursive invocation. */
2265 STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2267 * XXX: If a dlopen() call references an object while the
2268 * fini function is in progress, we might end up trying to
2269 * unload the referenced object in dlclose() or the object
2270 * won't be unloaded although its fini function has been
2273 lock_release(rtld_bind_lock, lockstate);
2276 * It is legal to have both DT_FINI and DT_FINI_ARRAY defined. When this
2277 * happens, DT_FINI_ARRAY is processed first, and it is also processed
2278 * backwards. It is possible to encounter DT_FINI_ARRAY elements with
2279 * values of 0 or 1, but they need to be ignored.
2281 fini_addr = (Elf_Addr *)elm->obj->fini_array;
2282 if (fini_addr != NULL && elm->obj->fini_array_num > 0) {
2283 for (index = elm->obj->fini_array_num - 1; index >= 0; index--) {
2284 if (fini_addr[index] != 0 && fini_addr[index] != 1) {
2285 dbg("calling fini array function for %s at %p",
2286 elm->obj->path, (void *)fini_addr[index]);
2287 LD_UTRACE(UTRACE_FINI_CALL, elm->obj,
2288 (void *)fini_addr[index], 0, 0, elm->obj->path);
2289 call_initfini_pointer(elm->obj, fini_addr[index]);
2293 if (elm->obj->fini != (Elf_Addr)NULL) {
2294 dbg("calling fini function for %s at %p", elm->obj->path,
2295 (void *)elm->obj->fini);
2296 LD_UTRACE(UTRACE_FINI_CALL, elm->obj, (void *)elm->obj->fini,
2297 0, 0, elm->obj->path);
2298 call_initfini_pointer(elm->obj, elm->obj->fini);
2300 wlock_acquire(rtld_bind_lock, lockstate);
2301 /* No need to free anything if process is going down. */
2305 * We must restart the list traversal after every fini call
2306 * because a dlclose() call from the fini function or from
2307 * another thread might have modified the reference counts.
2311 } while (elm != NULL);
2312 errmsg_restore(saved_msg);
2316 * If the main program is defined with a .preinit_array section, call
2317 * each function in order. This must occur before the initialization
2318 * of any shared object or the main program.
2321 preinitialize_main_object (void)
2323 Elf_Addr *preinit_addr;
2326 preinit_addr = (Elf_Addr *)obj_main->preinit_array;
2327 if (preinit_addr == NULL)
2330 for (index = 0; index < obj_main->preinit_array_num; index++) {
2331 if (preinit_addr[index] != 0 && preinit_addr[index] != 1) {
2332 dbg("calling preinit function for %s at %p", obj_main->path,
2333 (void *)preinit_addr[index]);
2334 LD_UTRACE(UTRACE_INIT_CALL, obj_main, (void *)preinit_addr[index],
2335 0, 0, obj_main->path);
2336 call_init_pointer(obj_main, preinit_addr[index]);
2342 * Call the initialization functions for each of the objects in
2343 * "list". All of the objects are expected to have non-NULL init
2347 objlist_call_init(Objlist *list, RtldLockState *lockstate)
2352 Elf_Addr *init_addr;
2356 * Clean init_scanned flag so that objects can be rechecked and
2357 * possibly initialized earlier if any of vectors called below
2358 * cause the change by using dlopen.
2360 for (obj = obj_list; obj != NULL; obj = obj->next)
2361 obj->init_scanned = false;
2364 * Preserve the current error message since an init function might
2365 * call into the dynamic linker and overwrite it.
2367 saved_msg = errmsg_save();
2368 STAILQ_FOREACH(elm, list, link) {
2369 if (elm->obj->init_done) /* Initialized early. */
2373 * Race: other thread might try to use this object before current
2374 * one completes the initilization. Not much can be done here
2375 * without better locking.
2377 elm->obj->init_done = true;
2378 lock_release(rtld_bind_lock, lockstate);
2381 * It is legal to have both DT_INIT and DT_INIT_ARRAY defined. When
2382 * this happens, DT_INIT is processed first. It is possible to
2383 * encounter DT_INIT_ARRAY elements with values of 0 or 1, but they
2384 * need to be ignored.
2386 if (elm->obj->init != (Elf_Addr)NULL) {
2387 dbg("calling init function for %s at %p", elm->obj->path,
2388 (void *)elm->obj->init);
2389 LD_UTRACE(UTRACE_INIT_CALL, elm->obj, (void *)elm->obj->init,
2390 0, 0, elm->obj->path);
2391 call_initfini_pointer(elm->obj, elm->obj->init);
2393 init_addr = (Elf_Addr *)elm->obj->init_array;
2394 if (init_addr != NULL) {
2395 for (index = 0; index < elm->obj->init_array_num; index++) {
2396 if (init_addr[index] != 0 && init_addr[index] != 1) {
2397 dbg("calling init array function for %s at %p", elm->obj->path,
2398 (void *)init_addr[index]);
2399 LD_UTRACE(UTRACE_INIT_CALL, elm->obj,
2400 (void *)init_addr[index], 0, 0, elm->obj->path);
2401 call_init_pointer(elm->obj, init_addr[index]);
2405 wlock_acquire(rtld_bind_lock, lockstate);
2407 errmsg_restore(saved_msg);
2411 objlist_clear(Objlist *list)
2415 while (!STAILQ_EMPTY(list)) {
2416 elm = STAILQ_FIRST(list);
2417 STAILQ_REMOVE_HEAD(list, link);
2422 static Objlist_Entry *
2423 objlist_find(Objlist *list, const Obj_Entry *obj)
2427 STAILQ_FOREACH(elm, list, link)
2428 if (elm->obj == obj)
2434 objlist_init(Objlist *list)
2440 objlist_push_head(Objlist *list, Obj_Entry *obj)
2444 elm = NEW(Objlist_Entry);
2446 STAILQ_INSERT_HEAD(list, elm, link);
2450 objlist_push_tail(Objlist *list, Obj_Entry *obj)
2454 elm = NEW(Objlist_Entry);
2456 STAILQ_INSERT_TAIL(list, elm, link);
2460 objlist_remove(Objlist *list, Obj_Entry *obj)
2464 if ((elm = objlist_find(list, obj)) != NULL) {
2465 STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2471 * Relocate newly-loaded shared objects. The argument is a pointer to
2472 * the Obj_Entry for the first such object. All objects from the first
2473 * to the end of the list of objects are relocated. Returns 0 on success,
2477 relocate_objects(Obj_Entry *first, bool bind_now, Obj_Entry *rtldobj,
2478 int flags, RtldLockState *lockstate)
2482 for (obj = first; obj != NULL; obj = obj->next) {
2485 obj->relocated = true;
2487 dbg("relocating \"%s\"", obj->path);
2489 if (obj->symtab == NULL || obj->strtab == NULL ||
2490 !(obj->valid_hash_sysv || obj->valid_hash_gnu)) {
2491 _rtld_error("%s: Shared object has no run-time symbol table",
2497 /* There are relocations to the write-protected text segment. */
2498 if (mprotect(obj->mapbase, obj->textsize,
2499 PROT_READ|PROT_WRITE|PROT_EXEC) == -1) {
2500 _rtld_error("%s: Cannot write-enable text segment: %s",
2501 obj->path, rtld_strerror(errno));
2506 /* Process the non-PLT relocations. */
2507 if (reloc_non_plt(obj, rtldobj, flags, lockstate))
2511 * Reprotect the text segment. Make sure it is included in the
2512 * core dump since we modified it. This unfortunately causes the
2513 * entire text segment to core-out but we don't have much of a
2514 * choice. We could try to only reenable core dumps on pages
2515 * in which relocations occured but that is likely most of the text
2516 * pages anyway, and even that would not work because the rest of
2517 * the text pages would wind up as a read-only OBJT_DEFAULT object
2518 * (created due to our modifications) backed by the original OBJT_VNODE
2519 * object, and the ELF coredump code is currently only able to dump
2520 * vnode records for pure vnode-backed mappings, not vnode backings
2521 * to memory objects.
2524 madvise(obj->mapbase, obj->textsize, MADV_CORE);
2525 if (mprotect(obj->mapbase, obj->textsize,
2526 PROT_READ|PROT_EXEC) == -1) {
2527 _rtld_error("%s: Cannot write-protect text segment: %s",
2528 obj->path, rtld_strerror(errno));
2534 /* Set the special PLT or GOT entries. */
2537 /* Process the PLT relocations. */
2538 if (reloc_plt(obj) == -1)
2540 /* Relocate the jump slots if we are doing immediate binding. */
2541 if (obj->bind_now || bind_now)
2542 if (reloc_jmpslots(obj, flags, lockstate) == -1)
2546 * Set up the magic number and version in the Obj_Entry. These
2547 * were checked in the crt1.o from the original ElfKit, so we
2548 * set them for backward compatibility.
2550 obj->magic = RTLD_MAGIC;
2551 obj->version = RTLD_VERSION;
2554 * Set relocated data to read-only status if protection specified
2557 if (obj->relro_size) {
2558 if (mprotect(obj->relro_page, obj->relro_size, PROT_READ) == -1) {
2559 _rtld_error("%s: Cannot enforce relro relocation: %s",
2560 obj->path, rtld_strerror(errno));
2570 * The handling of R_MACHINE_IRELATIVE relocations and jumpslots
2571 * referencing STT_GNU_IFUNC symbols is postponed till the other
2572 * relocations are done. The indirect functions specified as
2573 * ifunc are allowed to call other symbols, so we need to have
2574 * objects relocated before asking for resolution from indirects.
2576 * The R_MACHINE_IRELATIVE slots are resolved in greedy fashion,
2577 * instead of the usual lazy handling of PLT slots. It is
2578 * consistent with how GNU does it.
2581 resolve_object_ifunc(Obj_Entry *obj, bool bind_now, int flags,
2582 RtldLockState *lockstate)
2584 if (obj->irelative && reloc_iresolve(obj, lockstate) == -1)
2586 if ((obj->bind_now || bind_now) && obj->gnu_ifunc &&
2587 reloc_gnu_ifunc(obj, flags, lockstate) == -1)
2593 resolve_objects_ifunc(Obj_Entry *first, bool bind_now, int flags,
2594 RtldLockState *lockstate)
2598 for (obj = first; obj != NULL; obj = obj->next) {
2599 if (resolve_object_ifunc(obj, bind_now, flags, lockstate) == -1)
2606 initlist_objects_ifunc(Objlist *list, bool bind_now, int flags,
2607 RtldLockState *lockstate)
2611 STAILQ_FOREACH(elm, list, link) {
2612 if (resolve_object_ifunc(elm->obj, bind_now, flags,
2620 * Cleanup procedure. It will be called (by the atexit mechanism) just
2621 * before the process exits.
2626 RtldLockState lockstate;
2628 wlock_acquire(rtld_bind_lock, &lockstate);
2630 objlist_call_fini(&list_fini, NULL, &lockstate);
2631 /* No need to remove the items from the list, since we are exiting. */
2632 if (!libmap_disable)
2634 lock_release(rtld_bind_lock, &lockstate);
2638 path_enumerate(const char *path, path_enum_proc callback, void *arg)
2643 path += strspn(path, ":;");
2644 while (*path != '\0') {
2648 len = strcspn(path, ":;");
2649 res = callback(path, len, arg);
2655 path += strspn(path, ":;");
2661 struct try_library_args {
2669 try_library_path(const char *dir, size_t dirlen, void *param)
2671 struct try_library_args *arg;
2674 if (*dir == '/' || trust) {
2677 if (dirlen + 1 + arg->namelen + 1 > arg->buflen)
2680 pathname = arg->buffer;
2681 strncpy(pathname, dir, dirlen);
2682 pathname[dirlen] = '/';
2683 strcpy(pathname + dirlen + 1, arg->name);
2685 dbg(" Trying \"%s\"", pathname);
2686 if (access(pathname, F_OK) == 0) { /* We found it */
2687 pathname = xmalloc(dirlen + 1 + arg->namelen + 1);
2688 strcpy(pathname, arg->buffer);
2696 search_library_path(const char *name, const char *path)
2699 struct try_library_args arg;
2705 arg.namelen = strlen(name);
2706 arg.buffer = xmalloc(PATH_MAX);
2707 arg.buflen = PATH_MAX;
2709 p = path_enumerate(path, try_library_path, &arg);
2717 dlclose(void *handle)
2720 RtldLockState lockstate;
2722 wlock_acquire(rtld_bind_lock, &lockstate);
2723 root = dlcheck(handle);
2725 lock_release(rtld_bind_lock, &lockstate);
2728 LD_UTRACE(UTRACE_DLCLOSE_START, handle, NULL, 0, root->dl_refcount,
2731 /* Unreference the object and its dependencies. */
2732 root->dl_refcount--;
2734 if (root->refcount == 1) {
2736 * The object will be no longer referenced, so we must unload it.
2737 * First, call the fini functions.
2739 objlist_call_fini(&list_fini, root, &lockstate);
2743 /* Finish cleaning up the newly-unreferenced objects. */
2744 GDB_STATE(RT_DELETE,&root->linkmap);
2745 unload_object(root);
2746 GDB_STATE(RT_CONSISTENT,NULL);
2750 LD_UTRACE(UTRACE_DLCLOSE_STOP, handle, NULL, 0, 0, NULL);
2751 lock_release(rtld_bind_lock, &lockstate);
2758 char *msg = error_message;
2759 error_message = NULL;
2764 dlopen(const char *name, int mode)
2767 return (rtld_dlopen(name, -1, mode));
2771 fdlopen(int fd, int mode)
2774 return (rtld_dlopen(NULL, fd, mode));
2778 rtld_dlopen(const char *name, int fd, int mode)
2780 RtldLockState lockstate;
2783 LD_UTRACE(UTRACE_DLOPEN_START, NULL, NULL, 0, mode, name);
2784 ld_tracing = (mode & RTLD_TRACE) == 0 ? NULL : "1";
2785 if (ld_tracing != NULL) {
2786 rlock_acquire(rtld_bind_lock, &lockstate);
2787 if (sigsetjmp(lockstate.env, 0) != 0)
2788 lock_upgrade(rtld_bind_lock, &lockstate);
2789 environ = (char **)*get_program_var_addr("environ", &lockstate);
2790 lock_release(rtld_bind_lock, &lockstate);
2792 lo_flags = RTLD_LO_DLOPEN;
2793 if (mode & RTLD_NODELETE)
2794 lo_flags |= RTLD_LO_NODELETE;
2795 if (mode & RTLD_NOLOAD)
2796 lo_flags |= RTLD_LO_NOLOAD;
2797 if (ld_tracing != NULL)
2798 lo_flags |= RTLD_LO_TRACE;
2800 return (dlopen_object(name, fd, obj_main, lo_flags,
2801 mode & (RTLD_MODEMASK | RTLD_GLOBAL), NULL));
2805 dlopen_cleanup(Obj_Entry *obj)
2810 if (obj->refcount == 0)
2815 dlopen_object(const char *name, int fd, Obj_Entry *refobj, int lo_flags,
2816 int mode, RtldLockState *lockstate)
2818 Obj_Entry **old_obj_tail;
2821 RtldLockState mlockstate;
2824 objlist_init(&initlist);
2826 if (lockstate == NULL && !(lo_flags & RTLD_LO_EARLY)) {
2827 wlock_acquire(rtld_bind_lock, &mlockstate);
2828 lockstate = &mlockstate;
2830 GDB_STATE(RT_ADD,NULL);
2832 old_obj_tail = obj_tail;
2834 if (name == NULL && fd == -1) {
2838 obj = load_object(name, fd, refobj, lo_flags);
2843 if (mode & RTLD_GLOBAL && objlist_find(&list_global, obj) == NULL)
2844 objlist_push_tail(&list_global, obj);
2845 if (*old_obj_tail != NULL) { /* We loaded something new. */
2846 assert(*old_obj_tail == obj);
2847 result = load_needed_objects(obj,
2848 lo_flags & (RTLD_LO_DLOPEN | RTLD_LO_EARLY));
2852 result = rtld_verify_versions(&obj->dagmembers);
2853 if (result != -1 && ld_tracing)
2855 if (result == -1 || (relocate_objects(obj,
2856 (mode & RTLD_MODEMASK) == RTLD_NOW, &obj_rtld,
2857 (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
2858 lockstate)) == -1) {
2859 dlopen_cleanup(obj);
2861 } else if (lo_flags & RTLD_LO_EARLY) {
2863 * Do not call the init functions for early loaded
2864 * filtees. The image is still not initialized enough
2867 * Our object is found by the global object list and
2868 * will be ordered among all init calls done right
2869 * before transferring control to main.
2872 /* Make list of init functions to call. */
2873 initlist_add_objects(obj, &obj->next, &initlist);
2876 * Process all no_delete objects here, given them own
2877 * DAGs to prevent their dependencies from being unloaded.
2878 * This has to be done after we have loaded all of the
2879 * dependencies, so that we do not miss any.
2881 process_nodelete(obj);
2884 * Bump the reference counts for objects on this DAG. If
2885 * this is the first dlopen() call for the object that was
2886 * already loaded as a dependency, initialize the dag
2892 if ((lo_flags & RTLD_LO_TRACE) != 0)
2895 if (obj != NULL && ((lo_flags & RTLD_LO_NODELETE) != 0 ||
2896 obj->z_nodelete) && !obj->ref_nodel) {
2897 dbg("obj %s nodelete", obj->path);
2899 obj->z_nodelete = obj->ref_nodel = true;
2903 LD_UTRACE(UTRACE_DLOPEN_STOP, obj, NULL, 0, obj ? obj->dl_refcount : 0,
2905 GDB_STATE(RT_CONSISTENT,obj ? &obj->linkmap : NULL);
2907 if (!(lo_flags & RTLD_LO_EARLY)) {
2908 map_stacks_exec(lockstate);
2911 if (initlist_objects_ifunc(&initlist, (mode & RTLD_MODEMASK) == RTLD_NOW,
2912 (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
2914 objlist_clear(&initlist);
2915 dlopen_cleanup(obj);
2916 if (lockstate == &mlockstate)
2917 lock_release(rtld_bind_lock, lockstate);
2921 if (!(lo_flags & RTLD_LO_EARLY)) {
2922 /* Call the init functions. */
2923 objlist_call_init(&initlist, lockstate);
2925 objlist_clear(&initlist);
2926 if (lockstate == &mlockstate)
2927 lock_release(rtld_bind_lock, lockstate);
2930 trace_loaded_objects(obj);
2931 if (lockstate == &mlockstate)
2932 lock_release(rtld_bind_lock, lockstate);
2937 do_dlsym(void *handle, const char *name, void *retaddr, const Ver_Entry *ve,
2941 const Obj_Entry *obj, *defobj;
2944 RtldLockState lockstate;
2949 symlook_init(&req, name);
2951 req.flags = flags | SYMLOOK_IN_PLT;
2952 req.lockstate = &lockstate;
2954 rlock_acquire(rtld_bind_lock, &lockstate);
2955 if (sigsetjmp(lockstate.env, 0) != 0)
2956 lock_upgrade(rtld_bind_lock, &lockstate);
2957 if (handle == NULL || handle == RTLD_NEXT ||
2958 handle == RTLD_DEFAULT || handle == RTLD_SELF) {
2960 if ((obj = obj_from_addr(retaddr)) == NULL) {
2961 _rtld_error("Cannot determine caller's shared object");
2962 lock_release(rtld_bind_lock, &lockstate);
2965 if (handle == NULL) { /* Just the caller's shared object. */
2966 res = symlook_obj(&req, obj);
2969 defobj = req.defobj_out;
2971 } else if (handle == RTLD_NEXT || /* Objects after caller's */
2972 handle == RTLD_SELF) { /* ... caller included */
2973 if (handle == RTLD_NEXT)
2975 for (; obj != NULL; obj = obj->next) {
2976 res = symlook_obj(&req, obj);
2979 ELF_ST_BIND(req.sym_out->st_info) != STB_WEAK) {
2981 defobj = req.defobj_out;
2982 if (ELF_ST_BIND(def->st_info) != STB_WEAK)
2988 * Search the dynamic linker itself, and possibly resolve the
2989 * symbol from there. This is how the application links to
2990 * dynamic linker services such as dlopen.
2992 if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
2993 res = symlook_obj(&req, &obj_rtld);
2994 if (res == 0 && is_exported(req.sym_out)) {
2996 defobj = req.defobj_out;
3000 assert(handle == RTLD_DEFAULT);
3001 res = symlook_default(&req, obj);
3003 defobj = req.defobj_out;
3008 if ((obj = dlcheck(handle)) == NULL) {
3009 lock_release(rtld_bind_lock, &lockstate);
3013 donelist_init(&donelist);
3014 if (obj->mainprog) {
3015 /* Handle obtained by dlopen(NULL, ...) implies global scope. */
3016 res = symlook_global(&req, &donelist);
3019 defobj = req.defobj_out;
3022 * Search the dynamic linker itself, and possibly resolve the
3023 * symbol from there. This is how the application links to
3024 * dynamic linker services such as dlopen.
3026 if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
3027 res = symlook_obj(&req, &obj_rtld);
3030 defobj = req.defobj_out;
3035 /* Search the whole DAG rooted at the given object. */
3036 res = symlook_list(&req, &obj->dagmembers, &donelist);
3039 defobj = req.defobj_out;
3045 lock_release(rtld_bind_lock, &lockstate);
3048 * The value required by the caller is derived from the value
3049 * of the symbol. For the ia64 architecture, we need to
3050 * construct a function descriptor which the caller can use to
3051 * call the function with the right 'gp' value. For other
3052 * architectures and for non-functions, the value is simply
3053 * the relocated value of the symbol.
3055 if (ELF_ST_TYPE(def->st_info) == STT_FUNC)
3056 return (make_function_pointer(def, defobj));
3057 else if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
3058 return (rtld_resolve_ifunc(defobj, def));
3059 else if (ELF_ST_TYPE(def->st_info) == STT_TLS) {
3061 ti.ti_module = defobj->tlsindex;
3062 ti.ti_offset = def->st_value;
3063 return (__tls_get_addr(&ti));
3065 return (defobj->relocbase + def->st_value);
3068 _rtld_error("Undefined symbol \"%s\"", name);
3069 lock_release(rtld_bind_lock, &lockstate);
3074 dlsym(void *handle, const char *name)
3076 return do_dlsym(handle, name, __builtin_return_address(0), NULL,
3081 dlfunc(void *handle, const char *name)
3088 rv.d = do_dlsym(handle, name, __builtin_return_address(0), NULL,
3094 dlvsym(void *handle, const char *name, const char *version)
3098 ventry.name = version;
3100 ventry.hash = elf_hash(version);
3102 return do_dlsym(handle, name, __builtin_return_address(0), &ventry,
3107 _rtld_addr_phdr(const void *addr, struct dl_phdr_info *phdr_info)
3109 const Obj_Entry *obj;
3110 RtldLockState lockstate;
3112 rlock_acquire(rtld_bind_lock, &lockstate);
3113 obj = obj_from_addr(addr);
3115 _rtld_error("No shared object contains address");
3116 lock_release(rtld_bind_lock, &lockstate);
3119 rtld_fill_dl_phdr_info(obj, phdr_info);
3120 lock_release(rtld_bind_lock, &lockstate);
3125 dladdr(const void *addr, Dl_info *info)
3127 const Obj_Entry *obj;
3130 unsigned long symoffset;
3131 RtldLockState lockstate;
3133 rlock_acquire(rtld_bind_lock, &lockstate);
3134 obj = obj_from_addr(addr);
3136 _rtld_error("No shared object contains address");
3137 lock_release(rtld_bind_lock, &lockstate);
3140 info->dli_fname = obj->path;
3141 info->dli_fbase = obj->mapbase;
3142 info->dli_saddr = NULL;
3143 info->dli_sname = NULL;
3146 * Walk the symbol list looking for the symbol whose address is
3147 * closest to the address sent in.
3149 for (symoffset = 0; symoffset < obj->dynsymcount; symoffset++) {
3150 def = obj->symtab + symoffset;
3153 * For skip the symbol if st_shndx is either SHN_UNDEF or
3156 if (def->st_shndx == SHN_UNDEF || def->st_shndx == SHN_COMMON)
3160 * If the symbol is greater than the specified address, or if it
3161 * is further away from addr than the current nearest symbol,
3164 symbol_addr = obj->relocbase + def->st_value;
3165 if (symbol_addr > addr || symbol_addr < info->dli_saddr)
3168 /* Update our idea of the nearest symbol. */
3169 info->dli_sname = obj->strtab + def->st_name;
3170 info->dli_saddr = symbol_addr;
3173 if (info->dli_saddr == addr)
3176 lock_release(rtld_bind_lock, &lockstate);
3181 dlinfo(void *handle, int request, void *p)
3183 const Obj_Entry *obj;
3184 RtldLockState lockstate;
3187 rlock_acquire(rtld_bind_lock, &lockstate);
3189 if (handle == NULL || handle == RTLD_SELF) {
3192 retaddr = __builtin_return_address(0); /* __GNUC__ only */
3193 if ((obj = obj_from_addr(retaddr)) == NULL)
3194 _rtld_error("Cannot determine caller's shared object");
3196 obj = dlcheck(handle);
3199 lock_release(rtld_bind_lock, &lockstate);
3205 case RTLD_DI_LINKMAP:
3206 *((struct link_map const **)p) = &obj->linkmap;
3208 case RTLD_DI_ORIGIN:
3209 error = rtld_dirname(obj->path, p);
3212 case RTLD_DI_SERINFOSIZE:
3213 case RTLD_DI_SERINFO:
3214 error = do_search_info(obj, request, (struct dl_serinfo *)p);
3218 _rtld_error("Invalid request %d passed to dlinfo()", request);
3222 lock_release(rtld_bind_lock, &lockstate);
3228 rtld_fill_dl_phdr_info(const Obj_Entry *obj, struct dl_phdr_info *phdr_info)
3231 phdr_info->dlpi_addr = (Elf_Addr)obj->relocbase;
3232 phdr_info->dlpi_name = STAILQ_FIRST(&obj->names) ?
3233 STAILQ_FIRST(&obj->names)->name : obj->path;
3234 phdr_info->dlpi_phdr = obj->phdr;
3235 phdr_info->dlpi_phnum = obj->phsize / sizeof(obj->phdr[0]);
3236 phdr_info->dlpi_tls_modid = obj->tlsindex;
3237 phdr_info->dlpi_tls_data = obj->tlsinit;
3238 phdr_info->dlpi_adds = obj_loads;
3239 phdr_info->dlpi_subs = obj_loads - obj_count;
3243 dl_iterate_phdr(__dl_iterate_hdr_callback callback, void *param)
3245 struct dl_phdr_info phdr_info;
3246 const Obj_Entry *obj;
3247 RtldLockState bind_lockstate, phdr_lockstate;
3250 wlock_acquire(rtld_phdr_lock, &phdr_lockstate);
3251 rlock_acquire(rtld_bind_lock, &bind_lockstate);
3255 for (obj = obj_list; obj != NULL; obj = obj->next) {
3256 rtld_fill_dl_phdr_info(obj, &phdr_info);
3257 if ((error = callback(&phdr_info, sizeof phdr_info, param)) != 0)
3261 lock_release(rtld_bind_lock, &bind_lockstate);
3262 lock_release(rtld_phdr_lock, &phdr_lockstate);
3268 fill_search_info(const char *dir, size_t dirlen, void *param)
3270 struct fill_search_info_args *arg;
3274 if (arg->request == RTLD_DI_SERINFOSIZE) {
3275 arg->serinfo->dls_cnt ++;
3276 arg->serinfo->dls_size += sizeof(struct dl_serpath) + dirlen + 1;
3278 struct dl_serpath *s_entry;
3280 s_entry = arg->serpath;
3281 s_entry->dls_name = arg->strspace;
3282 s_entry->dls_flags = arg->flags;
3284 strncpy(arg->strspace, dir, dirlen);
3285 arg->strspace[dirlen] = '\0';
3287 arg->strspace += dirlen + 1;
3295 do_search_info(const Obj_Entry *obj, int request, struct dl_serinfo *info)
3297 struct dl_serinfo _info;
3298 struct fill_search_info_args args;
3300 args.request = RTLD_DI_SERINFOSIZE;
3301 args.serinfo = &_info;
3303 _info.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
3306 path_enumerate(obj->rpath, fill_search_info, &args);
3307 path_enumerate(ld_library_path, fill_search_info, &args);
3308 path_enumerate(obj->runpath, fill_search_info, &args);
3309 path_enumerate(gethints(obj->z_nodeflib), fill_search_info, &args);
3310 if (!obj->z_nodeflib)
3311 path_enumerate(STANDARD_LIBRARY_PATH, fill_search_info, &args);
3314 if (request == RTLD_DI_SERINFOSIZE) {
3315 info->dls_size = _info.dls_size;
3316 info->dls_cnt = _info.dls_cnt;
3320 if (info->dls_cnt != _info.dls_cnt || info->dls_size != _info.dls_size) {
3321 _rtld_error("Uninitialized Dl_serinfo struct passed to dlinfo()");
3325 args.request = RTLD_DI_SERINFO;
3326 args.serinfo = info;
3327 args.serpath = &info->dls_serpath[0];
3328 args.strspace = (char *)&info->dls_serpath[_info.dls_cnt];
3330 args.flags = LA_SER_RUNPATH;
3331 if (path_enumerate(obj->rpath, fill_search_info, &args) != NULL)
3334 args.flags = LA_SER_LIBPATH;
3335 if (path_enumerate(ld_library_path, fill_search_info, &args) != NULL)
3338 args.flags = LA_SER_RUNPATH;
3339 if (path_enumerate(obj->runpath, fill_search_info, &args) != NULL)
3342 args.flags = LA_SER_CONFIG;
3343 if (path_enumerate(gethints(obj->z_nodeflib), fill_search_info, &args)
3347 args.flags = LA_SER_DEFAULT;
3348 if (!obj->z_nodeflib &&
3349 path_enumerate(STANDARD_LIBRARY_PATH, fill_search_info, &args) != NULL)
3355 rtld_dirname(const char *path, char *bname)
3359 /* Empty or NULL string gets treated as "." */
3360 if (path == NULL || *path == '\0') {
3366 /* Strip trailing slashes */
3367 endp = path + strlen(path) - 1;
3368 while (endp > path && *endp == '/')
3371 /* Find the start of the dir */
3372 while (endp > path && *endp != '/')
3375 /* Either the dir is "/" or there are no slashes */
3377 bname[0] = *endp == '/' ? '/' : '.';
3383 } while (endp > path && *endp == '/');
3386 if (endp - path + 2 > PATH_MAX)
3388 _rtld_error("Filename is too long: %s", path);
3392 strncpy(bname, path, endp - path + 1);
3393 bname[endp - path + 1] = '\0';
3398 rtld_dirname_abs(const char *path, char *base)
3400 char base_rel[PATH_MAX];
3402 if (rtld_dirname(path, base) == -1)
3406 if (getcwd(base_rel, sizeof(base_rel)) == NULL ||
3407 strlcat(base_rel, "/", sizeof(base_rel)) >= sizeof(base_rel) ||
3408 strlcat(base_rel, base, sizeof(base_rel)) >= sizeof(base_rel))
3410 strcpy(base, base_rel);
3415 linkmap_add(Obj_Entry *obj)
3417 struct link_map *l = &obj->linkmap;
3418 struct link_map *prev;
3420 obj->linkmap.l_name = obj->path;
3421 obj->linkmap.l_addr = obj->mapbase;
3422 obj->linkmap.l_ld = obj->dynamic;
3424 /* GDB needs load offset on MIPS to use the symbols */
3425 obj->linkmap.l_offs = obj->relocbase;
3428 if (r_debug.r_map == NULL) {
3434 * Scan to the end of the list, but not past the entry for the
3435 * dynamic linker, which we want to keep at the very end.
3437 for (prev = r_debug.r_map;
3438 prev->l_next != NULL && prev->l_next != &obj_rtld.linkmap;
3439 prev = prev->l_next)
3442 /* Link in the new entry. */
3444 l->l_next = prev->l_next;
3445 if (l->l_next != NULL)
3446 l->l_next->l_prev = l;
3451 linkmap_delete(Obj_Entry *obj)
3453 struct link_map *l = &obj->linkmap;
3455 if (l->l_prev == NULL) {
3456 if ((r_debug.r_map = l->l_next) != NULL)
3457 l->l_next->l_prev = NULL;
3461 if ((l->l_prev->l_next = l->l_next) != NULL)
3462 l->l_next->l_prev = l->l_prev;
3466 * Function for the debugger to set a breakpoint on to gain control.
3468 * The two parameters allow the debugger to easily find and determine
3469 * what the runtime loader is doing and to whom it is doing it.
3471 * When the loadhook trap is hit (r_debug_state, set at program
3472 * initialization), the arguments can be found on the stack:
3474 * +8 struct link_map *m
3475 * +4 struct r_debug *rd
3479 r_debug_state(struct r_debug* rd, struct link_map *m)
3482 * The following is a hack to force the compiler to emit calls to
3483 * this function, even when optimizing. If the function is empty,
3484 * the compiler is not obliged to emit any code for calls to it,
3485 * even when marked __noinline. However, gdb depends on those
3488 __asm __volatile("" : : : "memory");
3492 * Get address of the pointer variable in the main program.
3493 * Prefer non-weak symbol over the weak one.
3495 static const void **
3496 get_program_var_addr(const char *name, RtldLockState *lockstate)
3501 symlook_init(&req, name);
3502 req.lockstate = lockstate;
3503 donelist_init(&donelist);
3504 if (symlook_global(&req, &donelist) != 0)
3506 if (ELF_ST_TYPE(req.sym_out->st_info) == STT_FUNC)
3507 return ((const void **)make_function_pointer(req.sym_out,
3509 else if (ELF_ST_TYPE(req.sym_out->st_info) == STT_GNU_IFUNC)
3510 return ((const void **)rtld_resolve_ifunc(req.defobj_out, req.sym_out));
3512 return ((const void **)(req.defobj_out->relocbase + req.sym_out->st_value));
3516 * Set a pointer variable in the main program to the given value. This
3517 * is used to set key variables such as "environ" before any of the
3518 * init functions are called.
3521 set_program_var(const char *name, const void *value)
3525 if ((addr = get_program_var_addr(name, NULL)) != NULL) {
3526 dbg("\"%s\": *%p <-- %p", name, addr, value);
3532 * Search the global objects, including dependencies and main object,
3533 * for the given symbol.
3536 symlook_global(SymLook *req, DoneList *donelist)
3539 const Objlist_Entry *elm;
3542 symlook_init_from_req(&req1, req);
3544 /* Search all objects loaded at program start up. */
3545 if (req->defobj_out == NULL ||
3546 ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
3547 res = symlook_list(&req1, &list_main, donelist);
3548 if (res == 0 && (req->defobj_out == NULL ||
3549 ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3550 req->sym_out = req1.sym_out;
3551 req->defobj_out = req1.defobj_out;
3552 assert(req->defobj_out != NULL);
3556 /* Search all DAGs whose roots are RTLD_GLOBAL objects. */
3557 STAILQ_FOREACH(elm, &list_global, link) {
3558 if (req->defobj_out != NULL &&
3559 ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
3561 res = symlook_list(&req1, &elm->obj->dagmembers, donelist);
3562 if (res == 0 && (req->defobj_out == NULL ||
3563 ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3564 req->sym_out = req1.sym_out;
3565 req->defobj_out = req1.defobj_out;
3566 assert(req->defobj_out != NULL);
3570 return (req->sym_out != NULL ? 0 : ESRCH);
3574 * This is a special version of getenv which is far more efficient
3575 * at finding LD_ environment vars.
3579 _getenv_ld(const char *id)
3583 int idlen = strlen(id);
3585 if (ld_index == LD_ARY_CACHE)
3587 if (ld_index == 0) {
3588 for (i = j = 0; (envp = environ[i]) != NULL && j < LD_ARY_CACHE; ++i) {
3589 if (envp[0] == 'L' && envp[1] == 'D' && envp[2] == '_')
3596 for (i = ld_index - 1; i >= 0; --i) {
3597 if (strncmp(ld_ary[i], id, idlen) == 0 && ld_ary[i][idlen] == '=')
3598 return(ld_ary[i] + idlen + 1);
3604 * Given a symbol name in a referencing object, find the corresponding
3605 * definition of the symbol. Returns a pointer to the symbol, or NULL if
3606 * no definition was found. Returns a pointer to the Obj_Entry of the
3607 * defining object via the reference parameter DEFOBJ_OUT.
3610 symlook_default(SymLook *req, const Obj_Entry *refobj)
3613 const Objlist_Entry *elm;
3617 donelist_init(&donelist);
3618 symlook_init_from_req(&req1, req);
3620 /* Look first in the referencing object if linked symbolically. */
3621 if (refobj->symbolic && !donelist_check(&donelist, refobj)) {
3622 res = symlook_obj(&req1, refobj);
3624 req->sym_out = req1.sym_out;
3625 req->defobj_out = req1.defobj_out;
3626 assert(req->defobj_out != NULL);
3630 symlook_global(req, &donelist);
3632 /* Search all dlopened DAGs containing the referencing object. */
3633 STAILQ_FOREACH(elm, &refobj->dldags, link) {
3634 if (req->sym_out != NULL &&
3635 ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
3637 res = symlook_list(&req1, &elm->obj->dagmembers, &donelist);
3638 if (res == 0 && (req->sym_out == NULL ||
3639 ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3640 req->sym_out = req1.sym_out;
3641 req->defobj_out = req1.defobj_out;
3642 assert(req->defobj_out != NULL);
3647 * Search the dynamic linker itself, and possibly resolve the
3648 * symbol from there. This is how the application links to
3649 * dynamic linker services such as dlopen. Only the values listed
3650 * in the "exports" array can be resolved from the dynamic linker.
3652 if (req->sym_out == NULL ||
3653 ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
3654 res = symlook_obj(&req1, &obj_rtld);
3655 if (res == 0 && is_exported(req1.sym_out)) {
3656 req->sym_out = req1.sym_out;
3657 req->defobj_out = req1.defobj_out;
3658 assert(req->defobj_out != NULL);
3662 return (req->sym_out != NULL ? 0 : ESRCH);
3666 symlook_list(SymLook *req, const Objlist *objlist, DoneList *dlp)
3669 const Obj_Entry *defobj;
3670 const Objlist_Entry *elm;
3676 STAILQ_FOREACH(elm, objlist, link) {
3677 if (donelist_check(dlp, elm->obj))
3679 symlook_init_from_req(&req1, req);
3680 if ((res = symlook_obj(&req1, elm->obj)) == 0) {
3681 if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
3683 defobj = req1.defobj_out;
3684 if (ELF_ST_BIND(def->st_info) != STB_WEAK)
3691 req->defobj_out = defobj;
3698 * Search the chain of DAGS cointed to by the given Needed_Entry
3699 * for a symbol of the given name. Each DAG is scanned completely
3700 * before advancing to the next one. Returns a pointer to the symbol,
3701 * or NULL if no definition was found.
3704 symlook_needed(SymLook *req, const Needed_Entry *needed, DoneList *dlp)
3707 const Needed_Entry *n;
3708 const Obj_Entry *defobj;
3714 symlook_init_from_req(&req1, req);
3715 for (n = needed; n != NULL; n = n->next) {
3716 if (n->obj == NULL ||
3717 (res = symlook_list(&req1, &n->obj->dagmembers, dlp)) != 0)
3719 if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
3721 defobj = req1.defobj_out;
3722 if (ELF_ST_BIND(def->st_info) != STB_WEAK)
3728 req->defobj_out = defobj;
3735 * Search the symbol table of a single shared object for a symbol of
3736 * the given name and version, if requested. Returns a pointer to the
3737 * symbol, or NULL if no definition was found. If the object is
3738 * filter, return filtered symbol from filtee.
3740 * The symbol's hash value is passed in for efficiency reasons; that
3741 * eliminates many recomputations of the hash value.
3744 symlook_obj(SymLook *req, const Obj_Entry *obj)
3748 int flags, res, mres;
3751 * There is at least one valid hash at this point, and we prefer to use
3752 * the faster GNU version if available.
3754 if (obj->valid_hash_gnu)
3755 mres = symlook_obj1_gnu(req, obj);
3757 mres = symlook_obj1_sysv(req, obj);
3760 if (obj->needed_filtees != NULL) {
3761 flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
3762 load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
3763 donelist_init(&donelist);
3764 symlook_init_from_req(&req1, req);
3765 res = symlook_needed(&req1, obj->needed_filtees, &donelist);
3767 req->sym_out = req1.sym_out;
3768 req->defobj_out = req1.defobj_out;
3772 if (obj->needed_aux_filtees != NULL) {
3773 flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
3774 load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
3775 donelist_init(&donelist);
3776 symlook_init_from_req(&req1, req);
3777 res = symlook_needed(&req1, obj->needed_aux_filtees, &donelist);
3779 req->sym_out = req1.sym_out;
3780 req->defobj_out = req1.defobj_out;
3788 /* Symbol match routine common to both hash functions */
3790 matched_symbol(SymLook *req, const Obj_Entry *obj, Sym_Match_Result *result,
3791 const unsigned long symnum)
3794 const Elf_Sym *symp;
3797 symp = obj->symtab + symnum;
3798 strp = obj->strtab + symp->st_name;
3800 switch (ELF_ST_TYPE(symp->st_info)) {
3806 if (symp->st_value == 0)
3810 if (symp->st_shndx != SHN_UNDEF)
3812 else if (((req->flags & SYMLOOK_IN_PLT) == 0) &&
3813 (ELF_ST_TYPE(symp->st_info) == STT_FUNC))
3819 if (strcmp(req->name, strp) != 0)
3822 if (req->ventry == NULL) {
3823 if (obj->versyms != NULL) {
3824 verndx = VER_NDX(obj->versyms[symnum]);
3825 if (verndx > obj->vernum) {
3827 "%s: symbol %s references wrong version %d",
3828 obj->path, obj->strtab + symnum, verndx);
3832 * If we are not called from dlsym (i.e. this
3833 * is a normal relocation from unversioned
3834 * binary), accept the symbol immediately if
3835 * it happens to have first version after this
3836 * shared object became versioned. Otherwise,
3837 * if symbol is versioned and not hidden,
3838 * remember it. If it is the only symbol with
3839 * this name exported by the shared object, it
3840 * will be returned as a match by the calling
3841 * function. If symbol is global (verndx < 2)
3842 * accept it unconditionally.
3844 if ((req->flags & SYMLOOK_DLSYM) == 0 &&
3845 verndx == VER_NDX_GIVEN) {
3846 result->sym_out = symp;
3849 else if (verndx >= VER_NDX_GIVEN) {
3850 if ((obj->versyms[symnum] & VER_NDX_HIDDEN)
3852 if (result->vsymp == NULL)
3853 result->vsymp = symp;
3859 result->sym_out = symp;
3862 if (obj->versyms == NULL) {
3863 if (object_match_name(obj, req->ventry->name)) {
3864 _rtld_error("%s: object %s should provide version %s "
3865 "for symbol %s", obj_rtld.path, obj->path,
3866 req->ventry->name, obj->strtab + symnum);
3870 verndx = VER_NDX(obj->versyms[symnum]);
3871 if (verndx > obj->vernum) {
3872 _rtld_error("%s: symbol %s references wrong version %d",
3873 obj->path, obj->strtab + symnum, verndx);
3876 if (obj->vertab[verndx].hash != req->ventry->hash ||
3877 strcmp(obj->vertab[verndx].name, req->ventry->name)) {
3879 * Version does not match. Look if this is a
3880 * global symbol and if it is not hidden. If
3881 * global symbol (verndx < 2) is available,
3882 * use it. Do not return symbol if we are
3883 * called by dlvsym, because dlvsym looks for
3884 * a specific version and default one is not
3885 * what dlvsym wants.
3887 if ((req->flags & SYMLOOK_DLSYM) ||
3888 (verndx >= VER_NDX_GIVEN) ||
3889 (obj->versyms[symnum] & VER_NDX_HIDDEN))
3893 result->sym_out = symp;
3898 * Search for symbol using SysV hash function.
3899 * obj->buckets is known not to be NULL at this point; the test for this was
3900 * performed with the obj->valid_hash_sysv assignment.
3903 symlook_obj1_sysv(SymLook *req, const Obj_Entry *obj)
3905 unsigned long symnum;
3906 Sym_Match_Result matchres;
3908 matchres.sym_out = NULL;
3909 matchres.vsymp = NULL;
3910 matchres.vcount = 0;
3912 for (symnum = obj->buckets[req->hash % obj->nbuckets];
3913 symnum != STN_UNDEF; symnum = obj->chains[symnum]) {
3914 if (symnum >= obj->nchains)
3915 return (ESRCH); /* Bad object */
3917 if (matched_symbol(req, obj, &matchres, symnum)) {
3918 req->sym_out = matchres.sym_out;
3919 req->defobj_out = obj;
3923 if (matchres.vcount == 1) {
3924 req->sym_out = matchres.vsymp;
3925 req->defobj_out = obj;
3931 /* Search for symbol using GNU hash function */
3933 symlook_obj1_gnu(SymLook *req, const Obj_Entry *obj)
3935 Elf_Addr bloom_word;
3936 const Elf32_Word *hashval;
3938 Sym_Match_Result matchres;
3939 unsigned int h1, h2;
3940 unsigned long symnum;
3942 matchres.sym_out = NULL;
3943 matchres.vsymp = NULL;
3944 matchres.vcount = 0;
3946 /* Pick right bitmask word from Bloom filter array */
3947 bloom_word = obj->bloom_gnu[(req->hash_gnu / __ELF_WORD_SIZE) &
3948 obj->maskwords_bm_gnu];
3950 /* Calculate modulus word size of gnu hash and its derivative */
3951 h1 = req->hash_gnu & (__ELF_WORD_SIZE - 1);
3952 h2 = ((req->hash_gnu >> obj->shift2_gnu) & (__ELF_WORD_SIZE - 1));
3954 /* Filter out the "definitely not in set" queries */
3955 if (((bloom_word >> h1) & (bloom_word >> h2) & 1) == 0)
3958 /* Locate hash chain and corresponding value element*/
3959 bucket = obj->buckets_gnu[req->hash_gnu % obj->nbuckets_gnu];
3962 hashval = &obj->chain_zero_gnu[bucket];
3964 if (((*hashval ^ req->hash_gnu) >> 1) == 0) {
3965 symnum = hashval - obj->chain_zero_gnu;
3966 if (matched_symbol(req, obj, &matchres, symnum)) {
3967 req->sym_out = matchres.sym_out;
3968 req->defobj_out = obj;
3972 } while ((*hashval++ & 1) == 0);
3973 if (matchres.vcount == 1) {
3974 req->sym_out = matchres.vsymp;
3975 req->defobj_out = obj;
3982 trace_loaded_objects(Obj_Entry *obj)
3984 const char *fmt1, *fmt2, *fmt, *main_local, *list_containers;
3987 if ((main_local = _getenv_ld("LD_TRACE_LOADED_OBJECTS_PROGNAME")) == NULL)
3990 if ((fmt1 = _getenv_ld("LD_TRACE_LOADED_OBJECTS_FMT1")) == NULL)
3991 fmt1 = "\t%o => %p (%x)\n";
3993 if ((fmt2 = _getenv_ld("LD_TRACE_LOADED_OBJECTS_FMT2")) == NULL)
3994 fmt2 = "\t%o (%x)\n";
3996 list_containers = _getenv_ld("LD_TRACE_LOADED_OBJECTS_ALL");
3998 for (; obj; obj = obj->next) {
3999 Needed_Entry *needed;
4003 if (list_containers && obj->needed != NULL)
4004 rtld_printf("%s:\n", obj->path);
4005 for (needed = obj->needed; needed; needed = needed->next) {
4006 if (needed->obj != NULL) {
4007 if (needed->obj->traced && !list_containers)
4009 needed->obj->traced = true;
4010 path = needed->obj->path;
4014 name = (char *)obj->strtab + needed->name;
4015 is_lib = strncmp(name, "lib", 3) == 0; /* XXX - bogus */
4017 fmt = is_lib ? fmt1 : fmt2;
4018 while ((c = *fmt++) != '\0') {
4044 rtld_putstr(main_local);
4047 rtld_putstr(obj_main->path);
4056 rtld_printf("%p", needed->obj ? needed->obj->mapbase :
4069 * Unload a dlopened object and its dependencies from memory and from
4070 * our data structures. It is assumed that the DAG rooted in the
4071 * object has already been unreferenced, and that the object has a
4072 * reference count of 0.
4075 unload_object(Obj_Entry *root)
4080 assert(root->refcount == 0);
4083 * Pass over the DAG removing unreferenced objects from
4084 * appropriate lists.
4086 unlink_object(root);
4088 /* Unmap all objects that are no longer referenced. */
4089 linkp = &obj_list->next;
4090 while ((obj = *linkp) != NULL) {
4091 if (obj->refcount == 0) {
4092 LD_UTRACE(UTRACE_UNLOAD_OBJECT, obj, obj->mapbase, obj->mapsize, 0,
4094 dbg("unloading \"%s\"", obj->path);
4095 unload_filtees(root);
4096 munmap(obj->mapbase, obj->mapsize);
4097 linkmap_delete(obj);
4108 unlink_object(Obj_Entry *root)
4112 if (root->refcount == 0) {
4113 /* Remove the object from the RTLD_GLOBAL list. */
4114 objlist_remove(&list_global, root);
4116 /* Remove the object from all objects' DAG lists. */
4117 STAILQ_FOREACH(elm, &root->dagmembers, link) {
4118 objlist_remove(&elm->obj->dldags, root);
4119 if (elm->obj != root)
4120 unlink_object(elm->obj);
4126 ref_dag(Obj_Entry *root)
4130 assert(root->dag_inited);
4131 STAILQ_FOREACH(elm, &root->dagmembers, link)
4132 elm->obj->refcount++;
4136 unref_dag(Obj_Entry *root)
4140 assert(root->dag_inited);
4141 STAILQ_FOREACH(elm, &root->dagmembers, link)
4142 elm->obj->refcount--;
4146 * Common code for MD __tls_get_addr().
4149 tls_get_addr_common(Elf_Addr** dtvp, int index, size_t offset)
4151 Elf_Addr* dtv = *dtvp;
4152 RtldLockState lockstate;
4154 /* Check dtv generation in case new modules have arrived */
4155 if (dtv[0] != tls_dtv_generation) {
4159 wlock_acquire(rtld_bind_lock, &lockstate);
4160 newdtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4162 if (to_copy > tls_max_index)
4163 to_copy = tls_max_index;
4164 memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));
4165 newdtv[0] = tls_dtv_generation;
4166 newdtv[1] = tls_max_index;
4168 lock_release(rtld_bind_lock, &lockstate);
4169 dtv = *dtvp = newdtv;
4172 /* Dynamically allocate module TLS if necessary */
4173 if (!dtv[index + 1]) {
4174 /* Signal safe, wlock will block out signals. */
4175 wlock_acquire(rtld_bind_lock, &lockstate);
4176 if (!dtv[index + 1])
4177 dtv[index + 1] = (Elf_Addr)allocate_module_tls(index);
4178 lock_release(rtld_bind_lock, &lockstate);
4180 return (void*) (dtv[index + 1] + offset);
4183 #if defined(RTLD_STATIC_TLS_VARIANT_II)
4186 * Allocate the static TLS area. Return a pointer to the TCB. The
4187 * static area is based on negative offsets relative to the tcb.
4189 * The TCB contains an errno pointer for the system call layer, but because
4190 * we are the RTLD we really have no idea how the caller was compiled so
4191 * the information has to be passed in. errno can either be:
4193 * type 0 errno is a simple non-TLS global pointer.
4194 * (special case for e.g. libc_rtld)
4195 * type 1 errno accessed by GOT entry (dynamically linked programs)
4196 * type 2 errno accessed by %gs:OFFSET (statically linked programs)
4199 allocate_tls(Obj_Entry *objs)
4204 struct tls_tcb *tcb;
4209 * Allocate the new TCB. static TLS storage is placed just before the
4210 * TCB to support the %gs:OFFSET (negative offset) model.
4212 data_size = (tls_static_space + RTLD_STATIC_TLS_ALIGN_MASK) &
4213 ~RTLD_STATIC_TLS_ALIGN_MASK;
4214 tcb = malloc(data_size + sizeof(*tcb));
4215 tcb = (void *)((char *)tcb + data_size); /* actual tcb location */
4217 dtv_size = (tls_max_index + 2) * sizeof(Elf_Addr);
4218 dtv = malloc(dtv_size);
4219 bzero(dtv, dtv_size);
4221 #ifdef RTLD_TCB_HAS_SELF_POINTER
4222 tcb->tcb_self = tcb;
4225 tcb->tcb_pthread = NULL;
4227 dtv[0] = tls_dtv_generation;
4228 dtv[1] = tls_max_index;
4230 for (obj = objs; obj; obj = obj->next) {
4231 if (obj->tlsoffset) {
4232 addr = (Elf_Addr)tcb - obj->tlsoffset;
4233 memset((void *)(addr + obj->tlsinitsize),
4234 0, obj->tlssize - obj->tlsinitsize);
4236 memcpy((void*) addr, obj->tlsinit, obj->tlsinitsize);
4237 dtv[obj->tlsindex + 1] = addr;
4244 free_tls(struct tls_tcb *tcb)
4248 Elf_Addr tls_start, tls_end;
4251 data_size = (tls_static_space + RTLD_STATIC_TLS_ALIGN_MASK) &
4252 ~RTLD_STATIC_TLS_ALIGN_MASK;
4256 tls_end = (Elf_Addr)tcb;
4257 tls_start = (Elf_Addr)tcb - data_size;
4258 for (i = 0; i < dtv_size; i++) {
4259 if (dtv[i+2] != 0 && (dtv[i+2] < tls_start || dtv[i+2] > tls_end)) {
4260 free((void *)dtv[i+2]);
4264 free((void*) tls_start);
4268 #error "Unsupported TLS layout"
4272 * Allocate TLS block for module with given index.
4275 allocate_module_tls(int index)
4280 for (obj = obj_list; obj; obj = obj->next) {
4281 if (obj->tlsindex == index)
4285 _rtld_error("Can't find module with TLS index %d", index);
4289 p = malloc(obj->tlssize);
4291 _rtld_error("Cannot allocate TLS block for index %d", index);
4294 memcpy(p, obj->tlsinit, obj->tlsinitsize);
4295 memset(p + obj->tlsinitsize, 0, obj->tlssize - obj->tlsinitsize);
4301 allocate_tls_offset(Obj_Entry *obj)
4308 if (obj->tlssize == 0) {
4309 obj->tls_done = true;
4313 if (obj->tlsindex == 1)
4314 off = calculate_first_tls_offset(obj->tlssize, obj->tlsalign);
4316 off = calculate_tls_offset(tls_last_offset, tls_last_size,
4317 obj->tlssize, obj->tlsalign);
4320 * If we have already fixed the size of the static TLS block, we
4321 * must stay within that size. When allocating the static TLS, we
4322 * leave a small amount of space spare to be used for dynamically
4323 * loading modules which use static TLS.
4325 if (tls_static_space) {
4326 if (calculate_tls_end(off, obj->tlssize) > tls_static_space)
4330 tls_last_offset = obj->tlsoffset = off;
4331 tls_last_size = obj->tlssize;
4332 obj->tls_done = true;
4338 free_tls_offset(Obj_Entry *obj)
4340 #ifdef RTLD_STATIC_TLS_VARIANT_II
4342 * If we were the last thing to allocate out of the static TLS
4343 * block, we give our space back to the 'allocator'. This is a
4344 * simplistic workaround to allow libGL.so.1 to be loaded and
4345 * unloaded multiple times. We only handle the Variant II
4346 * mechanism for now - this really needs a proper allocator.
4348 if (calculate_tls_end(obj->tlsoffset, obj->tlssize)
4349 == calculate_tls_end(tls_last_offset, tls_last_size)) {
4350 tls_last_offset -= obj->tlssize;
4357 _rtld_allocate_tls(void)
4359 struct tls_tcb *new_tcb;
4360 RtldLockState lockstate;
4362 wlock_acquire(rtld_bind_lock, &lockstate);
4363 new_tcb = allocate_tls(obj_list);
4364 lock_release(rtld_bind_lock, &lockstate);
4369 _rtld_free_tls(struct tls_tcb *tcb)
4371 RtldLockState lockstate;
4373 wlock_acquire(rtld_bind_lock, &lockstate);
4375 lock_release(rtld_bind_lock, &lockstate);
4379 object_add_name(Obj_Entry *obj, const char *name)
4385 entry = malloc(sizeof(Name_Entry) + len);
4387 if (entry != NULL) {
4388 strcpy(entry->name, name);
4389 STAILQ_INSERT_TAIL(&obj->names, entry, link);
4394 object_match_name(const Obj_Entry *obj, const char *name)
4398 STAILQ_FOREACH(entry, &obj->names, link) {
4399 if (strcmp(name, entry->name) == 0)
4406 locate_dependency(const Obj_Entry *obj, const char *name)
4408 const Objlist_Entry *entry;
4409 const Needed_Entry *needed;
4411 STAILQ_FOREACH(entry, &list_main, link) {
4412 if (object_match_name(entry->obj, name))
4416 for (needed = obj->needed; needed != NULL; needed = needed->next) {
4417 if (strcmp(obj->strtab + needed->name, name) == 0 ||
4418 (needed->obj != NULL && object_match_name(needed->obj, name))) {
4420 * If there is DT_NEEDED for the name we are looking for,
4421 * we are all set. Note that object might not be found if
4422 * dependency was not loaded yet, so the function can
4423 * return NULL here. This is expected and handled
4424 * properly by the caller.
4426 return (needed->obj);
4429 _rtld_error("%s: Unexpected inconsistency: dependency %s not found",
4435 check_object_provided_version(Obj_Entry *refobj, const Obj_Entry *depobj,
4436 const Elf_Vernaux *vna)
4438 const Elf_Verdef *vd;
4439 const char *vername;
4441 vername = refobj->strtab + vna->vna_name;
4442 vd = depobj->verdef;
4444 _rtld_error("%s: version %s required by %s not defined",
4445 depobj->path, vername, refobj->path);
4449 if (vd->vd_version != VER_DEF_CURRENT) {
4450 _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
4451 depobj->path, vd->vd_version);
4454 if (vna->vna_hash == vd->vd_hash) {
4455 const Elf_Verdaux *aux = (const Elf_Verdaux *)
4456 ((char *)vd + vd->vd_aux);
4457 if (strcmp(vername, depobj->strtab + aux->vda_name) == 0)
4460 if (vd->vd_next == 0)
4462 vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4464 if (vna->vna_flags & VER_FLG_WEAK)
4466 _rtld_error("%s: version %s required by %s not found",
4467 depobj->path, vername, refobj->path);
4472 rtld_verify_object_versions(Obj_Entry *obj)
4474 const Elf_Verneed *vn;
4475 const Elf_Verdef *vd;
4476 const Elf_Verdaux *vda;
4477 const Elf_Vernaux *vna;
4478 const Obj_Entry *depobj;
4479 int maxvernum, vernum;
4481 if (obj->ver_checked)
4483 obj->ver_checked = true;
4487 * Walk over defined and required version records and figure out
4488 * max index used by any of them. Do very basic sanity checking
4492 while (vn != NULL) {
4493 if (vn->vn_version != VER_NEED_CURRENT) {
4494 _rtld_error("%s: Unsupported version %d of Elf_Verneed entry",
4495 obj->path, vn->vn_version);
4498 vna = (const Elf_Vernaux *) ((char *)vn + vn->vn_aux);
4500 vernum = VER_NEED_IDX(vna->vna_other);
4501 if (vernum > maxvernum)
4503 if (vna->vna_next == 0)
4505 vna = (const Elf_Vernaux *) ((char *)vna + vna->vna_next);
4507 if (vn->vn_next == 0)
4509 vn = (const Elf_Verneed *) ((char *)vn + vn->vn_next);
4513 while (vd != NULL) {
4514 if (vd->vd_version != VER_DEF_CURRENT) {
4515 _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
4516 obj->path, vd->vd_version);
4519 vernum = VER_DEF_IDX(vd->vd_ndx);
4520 if (vernum > maxvernum)
4522 if (vd->vd_next == 0)
4524 vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4531 * Store version information in array indexable by version index.
4532 * Verify that object version requirements are satisfied along the
4535 obj->vernum = maxvernum + 1;
4536 obj->vertab = xcalloc(obj->vernum, sizeof(Ver_Entry));
4539 while (vd != NULL) {
4540 if ((vd->vd_flags & VER_FLG_BASE) == 0) {
4541 vernum = VER_DEF_IDX(vd->vd_ndx);
4542 assert(vernum <= maxvernum);
4543 vda = (const Elf_Verdaux *)((char *)vd + vd->vd_aux);
4544 obj->vertab[vernum].hash = vd->vd_hash;
4545 obj->vertab[vernum].name = obj->strtab + vda->vda_name;
4546 obj->vertab[vernum].file = NULL;
4547 obj->vertab[vernum].flags = 0;
4549 if (vd->vd_next == 0)
4551 vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4555 while (vn != NULL) {
4556 depobj = locate_dependency(obj, obj->strtab + vn->vn_file);
4559 vna = (const Elf_Vernaux *) ((char *)vn + vn->vn_aux);
4561 if (check_object_provided_version(obj, depobj, vna))
4563 vernum = VER_NEED_IDX(vna->vna_other);
4564 assert(vernum <= maxvernum);
4565 obj->vertab[vernum].hash = vna->vna_hash;
4566 obj->vertab[vernum].name = obj->strtab + vna->vna_name;
4567 obj->vertab[vernum].file = obj->strtab + vn->vn_file;
4568 obj->vertab[vernum].flags = (vna->vna_other & VER_NEED_HIDDEN) ?
4569 VER_INFO_HIDDEN : 0;
4570 if (vna->vna_next == 0)
4572 vna = (const Elf_Vernaux *) ((char *)vna + vna->vna_next);
4574 if (vn->vn_next == 0)
4576 vn = (const Elf_Verneed *) ((char *)vn + vn->vn_next);
4582 rtld_verify_versions(const Objlist *objlist)
4584 Objlist_Entry *entry;
4588 STAILQ_FOREACH(entry, objlist, link) {
4590 * Skip dummy objects or objects that have their version requirements
4593 if (entry->obj->strtab == NULL || entry->obj->vertab != NULL)
4595 if (rtld_verify_object_versions(entry->obj) == -1) {
4597 if (ld_tracing == NULL)
4601 if (rc == 0 || ld_tracing != NULL)
4602 rc = rtld_verify_object_versions(&obj_rtld);
4607 fetch_ventry(const Obj_Entry *obj, unsigned long symnum)
4612 vernum = VER_NDX(obj->versyms[symnum]);
4613 if (vernum >= obj->vernum) {
4614 _rtld_error("%s: symbol %s has wrong verneed value %d",
4615 obj->path, obj->strtab + symnum, vernum);
4616 } else if (obj->vertab[vernum].hash != 0) {
4617 return &obj->vertab[vernum];
4624 _rtld_get_stack_prot(void)
4627 return (stack_prot);
4631 map_stacks_exec(RtldLockState *lockstate)
4635 * Stack protection must be implemented in the kernel before the dynamic
4636 * linker can handle PT_GNU_STACK sections.
4637 * The following is the FreeBSD implementation of map_stacks_exec()
4638 * void (*thr_map_stacks_exec)(void);
4640 * if ((max_stack_flags & PF_X) == 0 || (stack_prot & PROT_EXEC) != 0)
4642 * thr_map_stacks_exec = (void (*)(void))(uintptr_t)
4643 * get_program_var_addr("__pthread_map_stacks_exec", lockstate);
4644 * if (thr_map_stacks_exec != NULL) {
4645 * stack_prot |= PROT_EXEC;
4646 * thr_map_stacks_exec();
4652 symlook_init(SymLook *dst, const char *name)
4655 bzero(dst, sizeof(*dst));
4657 dst->hash = elf_hash(name);
4658 dst->hash_gnu = gnu_hash(name);
4662 symlook_init_from_req(SymLook *dst, const SymLook *src)
4665 dst->name = src->name;
4666 dst->hash = src->hash;
4667 dst->hash_gnu = src->hash_gnu;
4668 dst->ventry = src->ventry;
4669 dst->flags = src->flags;
4670 dst->defobj_out = NULL;
4671 dst->sym_out = NULL;
4672 dst->lockstate = src->lockstate;
4675 #ifdef ENABLE_OSRELDATE
4677 * Overrides for libc_pic-provided functions.
4681 __getosreldate(void)
4691 oid[1] = KERN_OSRELDATE;
4693 len = sizeof(osrel);
4694 error = sysctl(oid, 2, &osrel, &len, NULL, 0);
4695 if (error == 0 && osrel > 0 && len == sizeof(osrel))
4702 * No unresolved symbols for rtld.
4705 __pthread_cxa_finalize(struct dl_phdr_info *a)
4710 rtld_strerror(int errnum)
4713 if (errnum < 0 || errnum >= sys_nerr)
4714 return ("Unknown error");
4715 return (sys_errlist[errnum]);