]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rtld-elf/rtld.c
MFC r304011:
[FreeBSD/FreeBSD.git] / libexec / rtld-elf / rtld.c
1 /*-
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>.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
16  *
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.
27  *
28  * $FreeBSD$
29  */
30
31 /*
32  * Dynamic linker for ELF.
33  *
34  * John Polstra <jdp@polstra.com>.
35  */
36
37 #include <sys/param.h>
38 #include <sys/mount.h>
39 #include <sys/mman.h>
40 #include <sys/stat.h>
41 #include <sys/sysctl.h>
42 #include <sys/uio.h>
43 #include <sys/utsname.h>
44 #include <sys/ktrace.h>
45
46 #include <dlfcn.h>
47 #include <err.h>
48 #include <errno.h>
49 #include <fcntl.h>
50 #include <stdarg.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <string.h>
54 #include <unistd.h>
55
56 #include "debug.h"
57 #include "rtld.h"
58 #include "libmap.h"
59 #include "paths.h"
60 #include "rtld_tls.h"
61 #include "rtld_printf.h"
62 #include "notes.h"
63
64 /* Types. */
65 typedef void (*func_ptr_type)();
66 typedef void * (*path_enum_proc) (const char *path, size_t len, void *arg);
67
68 /*
69  * Function declarations.
70  */
71 static const char *basename(const char *);
72 static void digest_dynamic1(Obj_Entry *, int, const Elf_Dyn **,
73     const Elf_Dyn **, const Elf_Dyn **);
74 static void digest_dynamic2(Obj_Entry *, const Elf_Dyn *, const Elf_Dyn *,
75     const Elf_Dyn *);
76 static void digest_dynamic(Obj_Entry *, int);
77 static Obj_Entry *digest_phdr(const Elf_Phdr *, int, caddr_t, const char *);
78 static Obj_Entry *dlcheck(void *);
79 static Obj_Entry *dlopen_object(const char *name, int fd, Obj_Entry *refobj,
80     int lo_flags, int mode, RtldLockState *lockstate);
81 static Obj_Entry *do_load_object(int, const char *, char *, struct stat *, int);
82 static int do_search_info(const Obj_Entry *obj, int, struct dl_serinfo *);
83 static bool donelist_check(DoneList *, const Obj_Entry *);
84 static void errmsg_restore(char *);
85 static char *errmsg_save(void);
86 static void *fill_search_info(const char *, size_t, void *);
87 static char *find_library(const char *, const Obj_Entry *, int *);
88 static const char *gethints(bool);
89 static void init_dag(Obj_Entry *);
90 static void init_pagesizes(Elf_Auxinfo **aux_info);
91 static void init_rtld(caddr_t, Elf_Auxinfo **);
92 static void initlist_add_neededs(Needed_Entry *, Objlist *);
93 static void initlist_add_objects(Obj_Entry *, Obj_Entry *, Objlist *);
94 static void linkmap_add(Obj_Entry *);
95 static void linkmap_delete(Obj_Entry *);
96 static void load_filtees(Obj_Entry *, int flags, RtldLockState *);
97 static void unload_filtees(Obj_Entry *);
98 static int load_needed_objects(Obj_Entry *, int);
99 static int load_preload_objects(void);
100 static Obj_Entry *load_object(const char *, int fd, const Obj_Entry *, int);
101 static void map_stacks_exec(RtldLockState *);
102 static Obj_Entry *obj_from_addr(const void *);
103 static void objlist_call_fini(Objlist *, Obj_Entry *, RtldLockState *);
104 static void objlist_call_init(Objlist *, RtldLockState *);
105 static void objlist_clear(Objlist *);
106 static Objlist_Entry *objlist_find(Objlist *, const Obj_Entry *);
107 static void objlist_init(Objlist *);
108 static void objlist_push_head(Objlist *, Obj_Entry *);
109 static void objlist_push_tail(Objlist *, Obj_Entry *);
110 static void objlist_put_after(Objlist *, Obj_Entry *, Obj_Entry *);
111 static void objlist_remove(Objlist *, Obj_Entry *);
112 static int parse_libdir(const char *);
113 static void *path_enumerate(const char *, path_enum_proc, void *);
114 static int relocate_object_dag(Obj_Entry *root, bool bind_now,
115     Obj_Entry *rtldobj, int flags, RtldLockState *lockstate);
116 static int relocate_object(Obj_Entry *obj, bool bind_now, Obj_Entry *rtldobj,
117     int flags, RtldLockState *lockstate);
118 static int relocate_objects(Obj_Entry *, bool, Obj_Entry *, int,
119     RtldLockState *);
120 static int resolve_objects_ifunc(Obj_Entry *first, bool bind_now,
121     int flags, RtldLockState *lockstate);
122 static int rtld_dirname(const char *, char *);
123 static int rtld_dirname_abs(const char *, char *);
124 static void *rtld_dlopen(const char *name, int fd, int mode);
125 static void rtld_exit(void);
126 static char *search_library_path(const char *, const char *);
127 static char *search_library_pathfds(const char *, const char *, int *);
128 static const void **get_program_var_addr(const char *, RtldLockState *);
129 static void set_program_var(const char *, const void *);
130 static int symlook_default(SymLook *, const Obj_Entry *refobj);
131 static int symlook_global(SymLook *, DoneList *);
132 static void symlook_init_from_req(SymLook *, const SymLook *);
133 static int symlook_list(SymLook *, const Objlist *, DoneList *);
134 static int symlook_needed(SymLook *, const Needed_Entry *, DoneList *);
135 static int symlook_obj1_sysv(SymLook *, const Obj_Entry *);
136 static int symlook_obj1_gnu(SymLook *, const Obj_Entry *);
137 static void trace_loaded_objects(Obj_Entry *);
138 static void unlink_object(Obj_Entry *);
139 static void unload_object(Obj_Entry *);
140 static void unref_dag(Obj_Entry *);
141 static void ref_dag(Obj_Entry *);
142 static char *origin_subst_one(Obj_Entry *, char *, const char *,
143     const char *, bool);
144 static char *origin_subst(Obj_Entry *, char *);
145 static bool obj_resolve_origin(Obj_Entry *obj);
146 static void preinit_main(void);
147 static int  rtld_verify_versions(const Objlist *);
148 static int  rtld_verify_object_versions(Obj_Entry *);
149 static void object_add_name(Obj_Entry *, const char *);
150 static int  object_match_name(const Obj_Entry *, const char *);
151 static void ld_utrace_log(int, void *, void *, size_t, int, const char *);
152 static void rtld_fill_dl_phdr_info(const Obj_Entry *obj,
153     struct dl_phdr_info *phdr_info);
154 static uint32_t gnu_hash(const char *);
155 static bool matched_symbol(SymLook *, const Obj_Entry *, Sym_Match_Result *,
156     const unsigned long);
157
158 void r_debug_state(struct r_debug *, struct link_map *) __noinline __exported;
159 void _r_debug_postinit(struct link_map *) __noinline __exported;
160
161 int __sys_openat(int, const char *, int, ...);
162
163 /*
164  * Data declarations.
165  */
166 static char *error_message;     /* Message for dlerror(), or NULL */
167 struct r_debug r_debug __exported;      /* for GDB; */
168 static bool libmap_disable;     /* Disable libmap */
169 static bool ld_loadfltr;        /* Immediate filters processing */
170 static char *libmap_override;   /* Maps to use in addition to libmap.conf */
171 static bool trust;              /* False for setuid and setgid programs */
172 static bool dangerous_ld_env;   /* True if environment variables have been
173                                    used to affect the libraries loaded */
174 static char *ld_bind_now;       /* Environment variable for immediate binding */
175 static char *ld_debug;          /* Environment variable for debugging */
176 static char *ld_library_path;   /* Environment variable for search path */
177 static char *ld_library_dirs;   /* Environment variable for library descriptors */
178 static char *ld_preload;        /* Environment variable for libraries to
179                                    load first */
180 static char *ld_elf_hints_path; /* Environment variable for alternative hints path */
181 static char *ld_tracing;        /* Called from ldd to print libs */
182 static char *ld_utrace;         /* Use utrace() to log events. */
183 static struct obj_entry_q obj_list;     /* Queue of all loaded objects */
184 static Obj_Entry *obj_main;     /* The main program shared object */
185 static Obj_Entry obj_rtld;      /* The dynamic linker shared object */
186 static unsigned int obj_count;  /* Number of objects in obj_list */
187 static unsigned int obj_loads;  /* Number of loads of objects (gen count) */
188
189 static Objlist list_global =    /* Objects dlopened with RTLD_GLOBAL */
190   STAILQ_HEAD_INITIALIZER(list_global);
191 static Objlist list_main =      /* Objects loaded at program startup */
192   STAILQ_HEAD_INITIALIZER(list_main);
193 static Objlist list_fini =      /* Objects needing fini() calls */
194   STAILQ_HEAD_INITIALIZER(list_fini);
195
196 Elf_Sym sym_zero;               /* For resolving undefined weak refs. */
197
198 #define GDB_STATE(s,m)  r_debug.r_state = s; r_debug_state(&r_debug,m);
199
200 extern Elf_Dyn _DYNAMIC;
201 #pragma weak _DYNAMIC
202 #ifndef RTLD_IS_DYNAMIC
203 #define RTLD_IS_DYNAMIC()       (&_DYNAMIC != NULL)
204 #endif
205
206 int dlclose(void *) __exported;
207 char *dlerror(void) __exported;
208 void *dlopen(const char *, int) __exported;
209 void *fdlopen(int, int) __exported;
210 void *dlsym(void *, const char *) __exported;
211 dlfunc_t dlfunc(void *, const char *) __exported;
212 void *dlvsym(void *, const char *, const char *) __exported;
213 int dladdr(const void *, Dl_info *) __exported;
214 void dllockinit(void *, void *(*)(void *), void (*)(void *), void (*)(void *),
215     void (*)(void *), void (*)(void *), void (*)(void *)) __exported;
216 int dlinfo(void *, int , void *) __exported;
217 int dl_iterate_phdr(__dl_iterate_hdr_callback, void *) __exported;
218 int _rtld_addr_phdr(const void *, struct dl_phdr_info *) __exported;
219 int _rtld_get_stack_prot(void) __exported;
220 int _rtld_is_dlopened(void *) __exported;
221 void _rtld_error(const char *, ...) __exported;
222
223 int npagesizes, osreldate;
224 size_t *pagesizes;
225
226 long __stack_chk_guard[8] = {0, 0, 0, 0, 0, 0, 0, 0};
227
228 static int stack_prot = PROT_READ | PROT_WRITE | RTLD_DEFAULT_STACK_EXEC;
229 static int max_stack_flags;
230
231 /*
232  * Global declarations normally provided by crt1.  The dynamic linker is
233  * not built with crt1, so we have to provide them ourselves.
234  */
235 char *__progname;
236 char **environ;
237
238 /*
239  * Used to pass argc, argv to init functions.
240  */
241 int main_argc;
242 char **main_argv;
243
244 /*
245  * Globals to control TLS allocation.
246  */
247 size_t tls_last_offset;         /* Static TLS offset of last module */
248 size_t tls_last_size;           /* Static TLS size of last module */
249 size_t tls_static_space;        /* Static TLS space allocated */
250 size_t tls_static_max_align;
251 int tls_dtv_generation = 1;     /* Used to detect when dtv size changes  */
252 int tls_max_index = 1;          /* Largest module index allocated */
253
254 bool ld_library_path_rpath = false;
255
256 /*
257  * Globals for path names, and such
258  */
259 char *ld_elf_hints_default = _PATH_ELF_HINTS;
260 char *ld_path_libmap_conf = _PATH_LIBMAP_CONF;
261 char *ld_path_rtld = _PATH_RTLD;
262 char *ld_standard_library_path = STANDARD_LIBRARY_PATH;
263 char *ld_env_prefix = LD_;
264
265 /*
266  * Fill in a DoneList with an allocation large enough to hold all of
267  * the currently-loaded objects.  Keep this as a macro since it calls
268  * alloca and we want that to occur within the scope of the caller.
269  */
270 #define donelist_init(dlp)                                      \
271     ((dlp)->objs = alloca(obj_count * sizeof (dlp)->objs[0]),   \
272     assert((dlp)->objs != NULL),                                \
273     (dlp)->num_alloc = obj_count,                               \
274     (dlp)->num_used = 0)
275
276 #define UTRACE_DLOPEN_START             1
277 #define UTRACE_DLOPEN_STOP              2
278 #define UTRACE_DLCLOSE_START            3
279 #define UTRACE_DLCLOSE_STOP             4
280 #define UTRACE_LOAD_OBJECT              5
281 #define UTRACE_UNLOAD_OBJECT            6
282 #define UTRACE_ADD_RUNDEP               7
283 #define UTRACE_PRELOAD_FINISHED         8
284 #define UTRACE_INIT_CALL                9
285 #define UTRACE_FINI_CALL                10
286 #define UTRACE_DLSYM_START              11
287 #define UTRACE_DLSYM_STOP               12
288
289 struct utrace_rtld {
290         char sig[4];                    /* 'RTLD' */
291         int event;
292         void *handle;
293         void *mapbase;                  /* Used for 'parent' and 'init/fini' */
294         size_t mapsize;
295         int refcnt;                     /* Used for 'mode' */
296         char name[MAXPATHLEN];
297 };
298
299 #define LD_UTRACE(e, h, mb, ms, r, n) do {                      \
300         if (ld_utrace != NULL)                                  \
301                 ld_utrace_log(e, h, mb, ms, r, n);              \
302 } while (0)
303
304 static void
305 ld_utrace_log(int event, void *handle, void *mapbase, size_t mapsize,
306     int refcnt, const char *name)
307 {
308         struct utrace_rtld ut;
309
310         ut.sig[0] = 'R';
311         ut.sig[1] = 'T';
312         ut.sig[2] = 'L';
313         ut.sig[3] = 'D';
314         ut.event = event;
315         ut.handle = handle;
316         ut.mapbase = mapbase;
317         ut.mapsize = mapsize;
318         ut.refcnt = refcnt;
319         bzero(ut.name, sizeof(ut.name));
320         if (name)
321                 strlcpy(ut.name, name, sizeof(ut.name));
322         utrace(&ut, sizeof(ut));
323 }
324
325 #ifdef RTLD_VARIANT_ENV_NAMES
326 /*
327  * construct the env variable based on the type of binary that's
328  * running.
329  */
330 static inline const char *
331 _LD(const char *var)
332 {
333         static char buffer[128];
334
335         strlcpy(buffer, ld_env_prefix, sizeof(buffer));
336         strlcat(buffer, var, sizeof(buffer));
337         return (buffer);
338 }
339 #else
340 #define _LD(x)  LD_ x
341 #endif
342
343 /*
344  * Main entry point for dynamic linking.  The first argument is the
345  * stack pointer.  The stack is expected to be laid out as described
346  * in the SVR4 ABI specification, Intel 386 Processor Supplement.
347  * Specifically, the stack pointer points to a word containing
348  * ARGC.  Following that in the stack is a null-terminated sequence
349  * of pointers to argument strings.  Then comes a null-terminated
350  * sequence of pointers to environment strings.  Finally, there is a
351  * sequence of "auxiliary vector" entries.
352  *
353  * The second argument points to a place to store the dynamic linker's
354  * exit procedure pointer and the third to a place to store the main
355  * program's object.
356  *
357  * The return value is the main program's entry point.
358  */
359 func_ptr_type
360 _rtld(Elf_Addr *sp, func_ptr_type *exit_proc, Obj_Entry **objp)
361 {
362     Elf_Auxinfo *aux_info[AT_COUNT];
363     int i;
364     int argc;
365     char **argv;
366     char **env;
367     Elf_Auxinfo *aux;
368     Elf_Auxinfo *auxp;
369     const char *argv0;
370     Objlist_Entry *entry;
371     Obj_Entry *obj;
372     Obj_Entry *preload_tail;
373     Obj_Entry *last_interposer;
374     Objlist initlist;
375     RtldLockState lockstate;
376     char *library_path_rpath;
377     int mib[2];
378     size_t len;
379
380     /*
381      * On entry, the dynamic linker itself has not been relocated yet.
382      * Be very careful not to reference any global data until after
383      * init_rtld has returned.  It is OK to reference file-scope statics
384      * and string constants, and to call static and global functions.
385      */
386
387     /* Find the auxiliary vector on the stack. */
388     argc = *sp++;
389     argv = (char **) sp;
390     sp += argc + 1;     /* Skip over arguments and NULL terminator */
391     env = (char **) sp;
392     while (*sp++ != 0)  /* Skip over environment, and NULL terminator */
393         ;
394     aux = (Elf_Auxinfo *) sp;
395
396     /* Digest the auxiliary vector. */
397     for (i = 0;  i < AT_COUNT;  i++)
398         aux_info[i] = NULL;
399     for (auxp = aux;  auxp->a_type != AT_NULL;  auxp++) {
400         if (auxp->a_type < AT_COUNT)
401             aux_info[auxp->a_type] = auxp;
402     }
403
404     /* Initialize and relocate ourselves. */
405     assert(aux_info[AT_BASE] != NULL);
406     init_rtld((caddr_t) aux_info[AT_BASE]->a_un.a_ptr, aux_info);
407
408     __progname = obj_rtld.path;
409     argv0 = argv[0] != NULL ? argv[0] : "(null)";
410     environ = env;
411     main_argc = argc;
412     main_argv = argv;
413
414     if (aux_info[AT_CANARY] != NULL &&
415         aux_info[AT_CANARY]->a_un.a_ptr != NULL) {
416             i = aux_info[AT_CANARYLEN]->a_un.a_val;
417             if (i > sizeof(__stack_chk_guard))
418                     i = sizeof(__stack_chk_guard);
419             memcpy(__stack_chk_guard, aux_info[AT_CANARY]->a_un.a_ptr, i);
420     } else {
421         mib[0] = CTL_KERN;
422         mib[1] = KERN_ARND;
423
424         len = sizeof(__stack_chk_guard);
425         if (sysctl(mib, 2, __stack_chk_guard, &len, NULL, 0) == -1 ||
426             len != sizeof(__stack_chk_guard)) {
427                 /* If sysctl was unsuccessful, use the "terminator canary". */
428                 ((unsigned char *)(void *)__stack_chk_guard)[0] = 0;
429                 ((unsigned char *)(void *)__stack_chk_guard)[1] = 0;
430                 ((unsigned char *)(void *)__stack_chk_guard)[2] = '\n';
431                 ((unsigned char *)(void *)__stack_chk_guard)[3] = 255;
432         }
433     }
434
435     trust = !issetugid();
436
437     md_abi_variant_hook(aux_info);
438
439     ld_bind_now = getenv(_LD("BIND_NOW"));
440     /* 
441      * If the process is tainted, then we un-set the dangerous environment
442      * variables.  The process will be marked as tainted until setuid(2)
443      * is called.  If any child process calls setuid(2) we do not want any
444      * future processes to honor the potentially un-safe variables.
445      */
446     if (!trust) {
447         if (unsetenv(_LD("PRELOAD")) || unsetenv(_LD("LIBMAP")) ||
448             unsetenv(_LD("LIBRARY_PATH")) || unsetenv(_LD("LIBRARY_PATH_FDS")) ||
449             unsetenv(_LD("LIBMAP_DISABLE")) ||
450             unsetenv(_LD("DEBUG")) || unsetenv(_LD("ELF_HINTS_PATH")) ||
451             unsetenv(_LD("LOADFLTR")) || unsetenv(_LD("LIBRARY_PATH_RPATH"))) {
452                 _rtld_error("environment corrupt; aborting");
453                 rtld_die();
454         }
455     }
456     ld_debug = getenv(_LD("DEBUG"));
457     libmap_disable = getenv(_LD("LIBMAP_DISABLE")) != NULL;
458     libmap_override = getenv(_LD("LIBMAP"));
459     ld_library_path = getenv(_LD("LIBRARY_PATH"));
460     ld_library_dirs = getenv(_LD("LIBRARY_PATH_FDS"));
461     ld_preload = getenv(_LD("PRELOAD"));
462     ld_elf_hints_path = getenv(_LD("ELF_HINTS_PATH"));
463     ld_loadfltr = getenv(_LD("LOADFLTR")) != NULL;
464     library_path_rpath = getenv(_LD("LIBRARY_PATH_RPATH"));
465     if (library_path_rpath != NULL) {
466             if (library_path_rpath[0] == 'y' ||
467                 library_path_rpath[0] == 'Y' ||
468                 library_path_rpath[0] == '1')
469                     ld_library_path_rpath = true;
470             else
471                     ld_library_path_rpath = false;
472     }
473     dangerous_ld_env = libmap_disable || (libmap_override != NULL) ||
474         (ld_library_path != NULL) || (ld_preload != NULL) ||
475         (ld_elf_hints_path != NULL) || ld_loadfltr;
476     ld_tracing = getenv(_LD("TRACE_LOADED_OBJECTS"));
477     ld_utrace = getenv(_LD("UTRACE"));
478
479     if ((ld_elf_hints_path == NULL) || strlen(ld_elf_hints_path) == 0)
480         ld_elf_hints_path = ld_elf_hints_default;
481
482     if (ld_debug != NULL && *ld_debug != '\0')
483         debug = 1;
484     dbg("%s is initialized, base address = %p", __progname,
485         (caddr_t) aux_info[AT_BASE]->a_un.a_ptr);
486     dbg("RTLD dynamic = %p", obj_rtld.dynamic);
487     dbg("RTLD pltgot  = %p", obj_rtld.pltgot);
488
489     dbg("initializing thread locks");
490     lockdflt_init();
491
492     /*
493      * Load the main program, or process its program header if it is
494      * already loaded.
495      */
496     if (aux_info[AT_EXECFD] != NULL) {  /* Load the main program. */
497         int fd = aux_info[AT_EXECFD]->a_un.a_val;
498         dbg("loading main program");
499         obj_main = map_object(fd, argv0, NULL);
500         close(fd);
501         if (obj_main == NULL)
502             rtld_die();
503         max_stack_flags = obj->stack_flags;
504     } else {                            /* Main program already loaded. */
505         const Elf_Phdr *phdr;
506         int phnum;
507         caddr_t entry;
508
509         dbg("processing main program's program header");
510         assert(aux_info[AT_PHDR] != NULL);
511         phdr = (const Elf_Phdr *) aux_info[AT_PHDR]->a_un.a_ptr;
512         assert(aux_info[AT_PHNUM] != NULL);
513         phnum = aux_info[AT_PHNUM]->a_un.a_val;
514         assert(aux_info[AT_PHENT] != NULL);
515         assert(aux_info[AT_PHENT]->a_un.a_val == sizeof(Elf_Phdr));
516         assert(aux_info[AT_ENTRY] != NULL);
517         entry = (caddr_t) aux_info[AT_ENTRY]->a_un.a_ptr;
518         if ((obj_main = digest_phdr(phdr, phnum, entry, argv0)) == NULL)
519             rtld_die();
520     }
521
522     if (aux_info[AT_EXECPATH] != NULL) {
523             char *kexecpath;
524             char buf[MAXPATHLEN];
525
526             kexecpath = aux_info[AT_EXECPATH]->a_un.a_ptr;
527             dbg("AT_EXECPATH %p %s", kexecpath, kexecpath);
528             if (kexecpath[0] == '/')
529                     obj_main->path = kexecpath;
530             else if (getcwd(buf, sizeof(buf)) == NULL ||
531                      strlcat(buf, "/", sizeof(buf)) >= sizeof(buf) ||
532                      strlcat(buf, kexecpath, sizeof(buf)) >= sizeof(buf))
533                     obj_main->path = xstrdup(argv0);
534             else
535                     obj_main->path = xstrdup(buf);
536     } else {
537             dbg("No AT_EXECPATH");
538             obj_main->path = xstrdup(argv0);
539     }
540     dbg("obj_main path %s", obj_main->path);
541     obj_main->mainprog = true;
542
543     if (aux_info[AT_STACKPROT] != NULL &&
544       aux_info[AT_STACKPROT]->a_un.a_val != 0)
545             stack_prot = aux_info[AT_STACKPROT]->a_un.a_val;
546
547 #ifndef COMPAT_32BIT
548     /*
549      * Get the actual dynamic linker pathname from the executable if
550      * possible.  (It should always be possible.)  That ensures that
551      * gdb will find the right dynamic linker even if a non-standard
552      * one is being used.
553      */
554     if (obj_main->interp != NULL &&
555       strcmp(obj_main->interp, obj_rtld.path) != 0) {
556         free(obj_rtld.path);
557         obj_rtld.path = xstrdup(obj_main->interp);
558         __progname = obj_rtld.path;
559     }
560 #endif
561
562     digest_dynamic(obj_main, 0);
563     dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d",
564         obj_main->path, obj_main->valid_hash_sysv, obj_main->valid_hash_gnu,
565         obj_main->dynsymcount);
566
567     linkmap_add(obj_main);
568     linkmap_add(&obj_rtld);
569
570     /* Link the main program into the list of objects. */
571     TAILQ_INSERT_HEAD(&obj_list, obj_main, next);
572     obj_count++;
573     obj_loads++;
574
575     /* Initialize a fake symbol for resolving undefined weak references. */
576     sym_zero.st_info = ELF_ST_INFO(STB_GLOBAL, STT_NOTYPE);
577     sym_zero.st_shndx = SHN_UNDEF;
578     sym_zero.st_value = -(uintptr_t)obj_main->relocbase;
579
580     if (!libmap_disable)
581         libmap_disable = (bool)lm_init(libmap_override);
582
583     dbg("loading LD_PRELOAD libraries");
584     if (load_preload_objects() == -1)
585         rtld_die();
586     preload_tail = globallist_curr(TAILQ_LAST(&obj_list, obj_entry_q));
587
588     dbg("loading needed objects");
589     if (load_needed_objects(obj_main, 0) == -1)
590         rtld_die();
591
592     /* Make a list of all objects loaded at startup. */
593     last_interposer = obj_main;
594     TAILQ_FOREACH(obj, &obj_list, next) {
595         if (obj->marker)
596             continue;
597         if (obj->z_interpose && obj != obj_main) {
598             objlist_put_after(&list_main, last_interposer, obj);
599             last_interposer = obj;
600         } else {
601             objlist_push_tail(&list_main, obj);
602         }
603         obj->refcount++;
604     }
605
606     dbg("checking for required versions");
607     if (rtld_verify_versions(&list_main) == -1 && !ld_tracing)
608         rtld_die();
609
610     if (ld_tracing) {           /* We're done */
611         trace_loaded_objects(obj_main);
612         exit(0);
613     }
614
615     if (getenv(_LD("DUMP_REL_PRE")) != NULL) {
616        dump_relocations(obj_main);
617        exit (0);
618     }
619
620     /*
621      * Processing tls relocations requires having the tls offsets
622      * initialized.  Prepare offsets before starting initial
623      * relocation processing.
624      */
625     dbg("initializing initial thread local storage offsets");
626     STAILQ_FOREACH(entry, &list_main, link) {
627         /*
628          * Allocate all the initial objects out of the static TLS
629          * block even if they didn't ask for it.
630          */
631         allocate_tls_offset(entry->obj);
632     }
633
634     if (relocate_objects(obj_main,
635       ld_bind_now != NULL && *ld_bind_now != '\0',
636       &obj_rtld, SYMLOOK_EARLY, NULL) == -1)
637         rtld_die();
638
639     dbg("doing copy relocations");
640     if (do_copy_relocations(obj_main) == -1)
641         rtld_die();
642
643     if (getenv(_LD("DUMP_REL_POST")) != NULL) {
644        dump_relocations(obj_main);
645        exit (0);
646     }
647
648     /*
649      * Setup TLS for main thread.  This must be done after the
650      * relocations are processed, since tls initialization section
651      * might be the subject for relocations.
652      */
653     dbg("initializing initial thread local storage");
654     allocate_initial_tls(globallist_curr(TAILQ_FIRST(&obj_list)));
655
656     dbg("initializing key program variables");
657     set_program_var("__progname", argv[0] != NULL ? basename(argv[0]) : "");
658     set_program_var("environ", env);
659     set_program_var("__elf_aux_vector", aux);
660
661     /* Make a list of init functions to call. */
662     objlist_init(&initlist);
663     initlist_add_objects(globallist_curr(TAILQ_FIRST(&obj_list)),
664       preload_tail, &initlist);
665
666     r_debug_state(NULL, &obj_main->linkmap); /* say hello to gdb! */
667
668     map_stacks_exec(NULL);
669
670     dbg("resolving ifuncs");
671     if (resolve_objects_ifunc(obj_main,
672       ld_bind_now != NULL && *ld_bind_now != '\0', SYMLOOK_EARLY,
673       NULL) == -1)
674         rtld_die();
675
676     if (!obj_main->crt_no_init) {
677         /*
678          * Make sure we don't call the main program's init and fini
679          * functions for binaries linked with old crt1 which calls
680          * _init itself.
681          */
682         obj_main->init = obj_main->fini = (Elf_Addr)NULL;
683         obj_main->preinit_array = obj_main->init_array =
684             obj_main->fini_array = (Elf_Addr)NULL;
685     }
686
687     wlock_acquire(rtld_bind_lock, &lockstate);
688     if (obj_main->crt_no_init)
689         preinit_main();
690     objlist_call_init(&initlist, &lockstate);
691     _r_debug_postinit(&obj_main->linkmap);
692     objlist_clear(&initlist);
693     dbg("loading filtees");
694     TAILQ_FOREACH(obj, &obj_list, next) {
695         if (obj->marker)
696             continue;
697         if (ld_loadfltr || obj->z_loadfltr)
698             load_filtees(obj, 0, &lockstate);
699     }
700     lock_release(rtld_bind_lock, &lockstate);
701
702     dbg("transferring control to program entry point = %p", obj_main->entry);
703
704     /* Return the exit procedure and the program entry point. */
705     *exit_proc = rtld_exit;
706     *objp = obj_main;
707     return (func_ptr_type) obj_main->entry;
708 }
709
710 void *
711 rtld_resolve_ifunc(const Obj_Entry *obj, const Elf_Sym *def)
712 {
713         void *ptr;
714         Elf_Addr target;
715
716         ptr = (void *)make_function_pointer(def, obj);
717         target = ((Elf_Addr (*)(void))ptr)();
718         return ((void *)target);
719 }
720
721 Elf_Addr
722 _rtld_bind(Obj_Entry *obj, Elf_Size reloff)
723 {
724     const Elf_Rel *rel;
725     const Elf_Sym *def;
726     const Obj_Entry *defobj;
727     Elf_Addr *where;
728     Elf_Addr target;
729     RtldLockState lockstate;
730
731     rlock_acquire(rtld_bind_lock, &lockstate);
732     if (sigsetjmp(lockstate.env, 0) != 0)
733             lock_upgrade(rtld_bind_lock, &lockstate);
734     if (obj->pltrel)
735         rel = (const Elf_Rel *) ((caddr_t) obj->pltrel + reloff);
736     else
737         rel = (const Elf_Rel *) ((caddr_t) obj->pltrela + reloff);
738
739     where = (Elf_Addr *) (obj->relocbase + rel->r_offset);
740     def = find_symdef(ELF_R_SYM(rel->r_info), obj, &defobj, true, NULL,
741         &lockstate);
742     if (def == NULL)
743         rtld_die();
744     if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
745         target = (Elf_Addr)rtld_resolve_ifunc(defobj, def);
746     else
747         target = (Elf_Addr)(defobj->relocbase + def->st_value);
748
749     dbg("\"%s\" in \"%s\" ==> %p in \"%s\"",
750       defobj->strtab + def->st_name, basename(obj->path),
751       (void *)target, basename(defobj->path));
752
753     /*
754      * Write the new contents for the jmpslot. Note that depending on
755      * architecture, the value which we need to return back to the
756      * lazy binding trampoline may or may not be the target
757      * address. The value returned from reloc_jmpslot() is the value
758      * that the trampoline needs.
759      */
760     target = reloc_jmpslot(where, target, defobj, obj, rel);
761     lock_release(rtld_bind_lock, &lockstate);
762     return target;
763 }
764
765 /*
766  * Error reporting function.  Use it like printf.  If formats the message
767  * into a buffer, and sets things up so that the next call to dlerror()
768  * will return the message.
769  */
770 void
771 _rtld_error(const char *fmt, ...)
772 {
773     static char buf[512];
774     va_list ap;
775
776     va_start(ap, fmt);
777     rtld_vsnprintf(buf, sizeof buf, fmt, ap);
778     error_message = buf;
779     va_end(ap);
780 }
781
782 /*
783  * Return a dynamically-allocated copy of the current error message, if any.
784  */
785 static char *
786 errmsg_save(void)
787 {
788     return error_message == NULL ? NULL : xstrdup(error_message);
789 }
790
791 /*
792  * Restore the current error message from a copy which was previously saved
793  * by errmsg_save().  The copy is freed.
794  */
795 static void
796 errmsg_restore(char *saved_msg)
797 {
798     if (saved_msg == NULL)
799         error_message = NULL;
800     else {
801         _rtld_error("%s", saved_msg);
802         free(saved_msg);
803     }
804 }
805
806 static const char *
807 basename(const char *name)
808 {
809     const char *p = strrchr(name, '/');
810     return p != NULL ? p + 1 : name;
811 }
812
813 static struct utsname uts;
814
815 static char *
816 origin_subst_one(Obj_Entry *obj, char *real, const char *kw,
817     const char *subst, bool may_free)
818 {
819         char *p, *p1, *res, *resp;
820         int subst_len, kw_len, subst_count, old_len, new_len;
821
822         kw_len = strlen(kw);
823
824         /*
825          * First, count the number of the keyword occurrences, to
826          * preallocate the final string.
827          */
828         for (p = real, subst_count = 0;; p = p1 + kw_len, subst_count++) {
829                 p1 = strstr(p, kw);
830                 if (p1 == NULL)
831                         break;
832         }
833
834         /*
835          * If the keyword is not found, just return.
836          *
837          * Return non-substituted string if resolution failed.  We
838          * cannot do anything more reasonable, the failure mode of the
839          * caller is unresolved library anyway.
840          */
841         if (subst_count == 0 || (obj != NULL && !obj_resolve_origin(obj)))
842                 return (may_free ? real : xstrdup(real));
843         if (obj != NULL)
844                 subst = obj->origin_path;
845
846         /*
847          * There is indeed something to substitute.  Calculate the
848          * length of the resulting string, and allocate it.
849          */
850         subst_len = strlen(subst);
851         old_len = strlen(real);
852         new_len = old_len + (subst_len - kw_len) * subst_count;
853         res = xmalloc(new_len + 1);
854
855         /*
856          * Now, execute the substitution loop.
857          */
858         for (p = real, resp = res, *resp = '\0';;) {
859                 p1 = strstr(p, kw);
860                 if (p1 != NULL) {
861                         /* Copy the prefix before keyword. */
862                         memcpy(resp, p, p1 - p);
863                         resp += p1 - p;
864                         /* Keyword replacement. */
865                         memcpy(resp, subst, subst_len);
866                         resp += subst_len;
867                         *resp = '\0';
868                         p = p1 + kw_len;
869                 } else
870                         break;
871         }
872
873         /* Copy to the end of string and finish. */
874         strcat(resp, p);
875         if (may_free)
876                 free(real);
877         return (res);
878 }
879
880 static char *
881 origin_subst(Obj_Entry *obj, char *real)
882 {
883         char *res1, *res2, *res3, *res4;
884
885         if (obj == NULL || !trust)
886                 return (xstrdup(real));
887         if (uts.sysname[0] == '\0') {
888                 if (uname(&uts) != 0) {
889                         _rtld_error("utsname failed: %d", errno);
890                         return (NULL);
891                 }
892         }
893         res1 = origin_subst_one(obj, real, "$ORIGIN", NULL, false);
894         res2 = origin_subst_one(NULL, res1, "$OSNAME", uts.sysname, true);
895         res3 = origin_subst_one(NULL, res2, "$OSREL", uts.release, true);
896         res4 = origin_subst_one(NULL, res3, "$PLATFORM", uts.machine, true);
897         return (res4);
898 }
899
900 void
901 rtld_die(void)
902 {
903     const char *msg = dlerror();
904
905     if (msg == NULL)
906         msg = "Fatal error";
907     rtld_fdputstr(STDERR_FILENO, msg);
908     rtld_fdputchar(STDERR_FILENO, '\n');
909     _exit(1);
910 }
911
912 /*
913  * Process a shared object's DYNAMIC section, and save the important
914  * information in its Obj_Entry structure.
915  */
916 static void
917 digest_dynamic1(Obj_Entry *obj, int early, const Elf_Dyn **dyn_rpath,
918     const Elf_Dyn **dyn_soname, const Elf_Dyn **dyn_runpath)
919 {
920     const Elf_Dyn *dynp;
921     Needed_Entry **needed_tail = &obj->needed;
922     Needed_Entry **needed_filtees_tail = &obj->needed_filtees;
923     Needed_Entry **needed_aux_filtees_tail = &obj->needed_aux_filtees;
924     const Elf_Hashelt *hashtab;
925     const Elf32_Word *hashval;
926     Elf32_Word bkt, nmaskwords;
927     int bloom_size32;
928     int plttype = DT_REL;
929
930     *dyn_rpath = NULL;
931     *dyn_soname = NULL;
932     *dyn_runpath = NULL;
933
934     obj->bind_now = false;
935     for (dynp = obj->dynamic;  dynp->d_tag != DT_NULL;  dynp++) {
936         switch (dynp->d_tag) {
937
938         case DT_REL:
939             obj->rel = (const Elf_Rel *) (obj->relocbase + dynp->d_un.d_ptr);
940             break;
941
942         case DT_RELSZ:
943             obj->relsize = dynp->d_un.d_val;
944             break;
945
946         case DT_RELENT:
947             assert(dynp->d_un.d_val == sizeof(Elf_Rel));
948             break;
949
950         case DT_JMPREL:
951             obj->pltrel = (const Elf_Rel *)
952               (obj->relocbase + dynp->d_un.d_ptr);
953             break;
954
955         case DT_PLTRELSZ:
956             obj->pltrelsize = dynp->d_un.d_val;
957             break;
958
959         case DT_RELA:
960             obj->rela = (const Elf_Rela *) (obj->relocbase + dynp->d_un.d_ptr);
961             break;
962
963         case DT_RELASZ:
964             obj->relasize = dynp->d_un.d_val;
965             break;
966
967         case DT_RELAENT:
968             assert(dynp->d_un.d_val == sizeof(Elf_Rela));
969             break;
970
971         case DT_PLTREL:
972             plttype = dynp->d_un.d_val;
973             assert(dynp->d_un.d_val == DT_REL || plttype == DT_RELA);
974             break;
975
976         case DT_SYMTAB:
977             obj->symtab = (const Elf_Sym *)
978               (obj->relocbase + dynp->d_un.d_ptr);
979             break;
980
981         case DT_SYMENT:
982             assert(dynp->d_un.d_val == sizeof(Elf_Sym));
983             break;
984
985         case DT_STRTAB:
986             obj->strtab = (const char *) (obj->relocbase + dynp->d_un.d_ptr);
987             break;
988
989         case DT_STRSZ:
990             obj->strsize = dynp->d_un.d_val;
991             break;
992
993         case DT_VERNEED:
994             obj->verneed = (const Elf_Verneed *) (obj->relocbase +
995                 dynp->d_un.d_val);
996             break;
997
998         case DT_VERNEEDNUM:
999             obj->verneednum = dynp->d_un.d_val;
1000             break;
1001
1002         case DT_VERDEF:
1003             obj->verdef = (const Elf_Verdef *) (obj->relocbase +
1004                 dynp->d_un.d_val);
1005             break;
1006
1007         case DT_VERDEFNUM:
1008             obj->verdefnum = dynp->d_un.d_val;
1009             break;
1010
1011         case DT_VERSYM:
1012             obj->versyms = (const Elf_Versym *)(obj->relocbase +
1013                 dynp->d_un.d_val);
1014             break;
1015
1016         case DT_HASH:
1017             {
1018                 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1019                     dynp->d_un.d_ptr);
1020                 obj->nbuckets = hashtab[0];
1021                 obj->nchains = hashtab[1];
1022                 obj->buckets = hashtab + 2;
1023                 obj->chains = obj->buckets + obj->nbuckets;
1024                 obj->valid_hash_sysv = obj->nbuckets > 0 && obj->nchains > 0 &&
1025                   obj->buckets != NULL;
1026             }
1027             break;
1028
1029         case DT_GNU_HASH:
1030             {
1031                 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1032                     dynp->d_un.d_ptr);
1033                 obj->nbuckets_gnu = hashtab[0];
1034                 obj->symndx_gnu = hashtab[1];
1035                 nmaskwords = hashtab[2];
1036                 bloom_size32 = (__ELF_WORD_SIZE / 32) * nmaskwords;
1037                 obj->maskwords_bm_gnu = nmaskwords - 1;
1038                 obj->shift2_gnu = hashtab[3];
1039                 obj->bloom_gnu = (Elf_Addr *) (hashtab + 4);
1040                 obj->buckets_gnu = hashtab + 4 + bloom_size32;
1041                 obj->chain_zero_gnu = obj->buckets_gnu + obj->nbuckets_gnu -
1042                   obj->symndx_gnu;
1043                 /* Number of bitmask words is required to be power of 2 */
1044                 obj->valid_hash_gnu = powerof2(nmaskwords) &&
1045                     obj->nbuckets_gnu > 0 && obj->buckets_gnu != NULL;
1046             }
1047             break;
1048
1049         case DT_NEEDED:
1050             if (!obj->rtld) {
1051                 Needed_Entry *nep = NEW(Needed_Entry);
1052                 nep->name = dynp->d_un.d_val;
1053                 nep->obj = NULL;
1054                 nep->next = NULL;
1055
1056                 *needed_tail = nep;
1057                 needed_tail = &nep->next;
1058             }
1059             break;
1060
1061         case DT_FILTER:
1062             if (!obj->rtld) {
1063                 Needed_Entry *nep = NEW(Needed_Entry);
1064                 nep->name = dynp->d_un.d_val;
1065                 nep->obj = NULL;
1066                 nep->next = NULL;
1067
1068                 *needed_filtees_tail = nep;
1069                 needed_filtees_tail = &nep->next;
1070             }
1071             break;
1072
1073         case DT_AUXILIARY:
1074             if (!obj->rtld) {
1075                 Needed_Entry *nep = NEW(Needed_Entry);
1076                 nep->name = dynp->d_un.d_val;
1077                 nep->obj = NULL;
1078                 nep->next = NULL;
1079
1080                 *needed_aux_filtees_tail = nep;
1081                 needed_aux_filtees_tail = &nep->next;
1082             }
1083             break;
1084
1085         case DT_PLTGOT:
1086             obj->pltgot = (Elf_Addr *) (obj->relocbase + dynp->d_un.d_ptr);
1087             break;
1088
1089         case DT_TEXTREL:
1090             obj->textrel = true;
1091             break;
1092
1093         case DT_SYMBOLIC:
1094             obj->symbolic = true;
1095             break;
1096
1097         case DT_RPATH:
1098             /*
1099              * We have to wait until later to process this, because we
1100              * might not have gotten the address of the string table yet.
1101              */
1102             *dyn_rpath = dynp;
1103             break;
1104
1105         case DT_SONAME:
1106             *dyn_soname = dynp;
1107             break;
1108
1109         case DT_RUNPATH:
1110             *dyn_runpath = dynp;
1111             break;
1112
1113         case DT_INIT:
1114             obj->init = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1115             break;
1116
1117         case DT_PREINIT_ARRAY:
1118             obj->preinit_array = (Elf_Addr)(obj->relocbase + dynp->d_un.d_ptr);
1119             break;
1120
1121         case DT_PREINIT_ARRAYSZ:
1122             obj->preinit_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1123             break;
1124
1125         case DT_INIT_ARRAY:
1126             obj->init_array = (Elf_Addr)(obj->relocbase + dynp->d_un.d_ptr);
1127             break;
1128
1129         case DT_INIT_ARRAYSZ:
1130             obj->init_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1131             break;
1132
1133         case DT_FINI:
1134             obj->fini = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1135             break;
1136
1137         case DT_FINI_ARRAY:
1138             obj->fini_array = (Elf_Addr)(obj->relocbase + dynp->d_un.d_ptr);
1139             break;
1140
1141         case DT_FINI_ARRAYSZ:
1142             obj->fini_array_num = dynp->d_un.d_val / sizeof(Elf_Addr);
1143             break;
1144
1145         /*
1146          * Don't process DT_DEBUG on MIPS as the dynamic section
1147          * is mapped read-only. DT_MIPS_RLD_MAP is used instead.
1148          */
1149
1150 #ifndef __mips__
1151         case DT_DEBUG:
1152             if (!early)
1153                 dbg("Filling in DT_DEBUG entry");
1154             ((Elf_Dyn*)dynp)->d_un.d_ptr = (Elf_Addr) &r_debug;
1155             break;
1156 #endif
1157
1158         case DT_FLAGS:
1159                 if (dynp->d_un.d_val & DF_ORIGIN)
1160                     obj->z_origin = true;
1161                 if (dynp->d_un.d_val & DF_SYMBOLIC)
1162                     obj->symbolic = true;
1163                 if (dynp->d_un.d_val & DF_TEXTREL)
1164                     obj->textrel = true;
1165                 if (dynp->d_un.d_val & DF_BIND_NOW)
1166                     obj->bind_now = true;
1167                 /*if (dynp->d_un.d_val & DF_STATIC_TLS)
1168                     ;*/
1169             break;
1170 #ifdef __mips__
1171         case DT_MIPS_LOCAL_GOTNO:
1172                 obj->local_gotno = dynp->d_un.d_val;
1173                 break;
1174
1175         case DT_MIPS_SYMTABNO:
1176                 obj->symtabno = dynp->d_un.d_val;
1177                 break;
1178
1179         case DT_MIPS_GOTSYM:
1180                 obj->gotsym = dynp->d_un.d_val;
1181                 break;
1182
1183         case DT_MIPS_RLD_MAP:
1184                 *((Elf_Addr *)(dynp->d_un.d_ptr)) = (Elf_Addr) &r_debug;
1185                 break;
1186 #endif
1187
1188 #ifdef __powerpc64__
1189         case DT_PPC64_GLINK:
1190                 obj->glink = (Elf_Addr) (obj->relocbase + dynp->d_un.d_ptr);
1191                 break;
1192 #endif
1193
1194         case DT_FLAGS_1:
1195                 if (dynp->d_un.d_val & DF_1_NOOPEN)
1196                     obj->z_noopen = true;
1197                 if (dynp->d_un.d_val & DF_1_ORIGIN)
1198                     obj->z_origin = true;
1199                 if (dynp->d_un.d_val & DF_1_GLOBAL)
1200                     obj->z_global = true;
1201                 if (dynp->d_un.d_val & DF_1_BIND_NOW)
1202                     obj->bind_now = true;
1203                 if (dynp->d_un.d_val & DF_1_NODELETE)
1204                     obj->z_nodelete = true;
1205                 if (dynp->d_un.d_val & DF_1_LOADFLTR)
1206                     obj->z_loadfltr = true;
1207                 if (dynp->d_un.d_val & DF_1_INTERPOSE)
1208                     obj->z_interpose = true;
1209                 if (dynp->d_un.d_val & DF_1_NODEFLIB)
1210                     obj->z_nodeflib = true;
1211             break;
1212
1213         default:
1214             if (!early) {
1215                 dbg("Ignoring d_tag %ld = %#lx", (long)dynp->d_tag,
1216                     (long)dynp->d_tag);
1217             }
1218             break;
1219         }
1220     }
1221
1222     obj->traced = false;
1223
1224     if (plttype == DT_RELA) {
1225         obj->pltrela = (const Elf_Rela *) obj->pltrel;
1226         obj->pltrel = NULL;
1227         obj->pltrelasize = obj->pltrelsize;
1228         obj->pltrelsize = 0;
1229     }
1230
1231     /* Determine size of dynsym table (equal to nchains of sysv hash) */
1232     if (obj->valid_hash_sysv)
1233         obj->dynsymcount = obj->nchains;
1234     else if (obj->valid_hash_gnu) {
1235         obj->dynsymcount = 0;
1236         for (bkt = 0; bkt < obj->nbuckets_gnu; bkt++) {
1237             if (obj->buckets_gnu[bkt] == 0)
1238                 continue;
1239             hashval = &obj->chain_zero_gnu[obj->buckets_gnu[bkt]];
1240             do
1241                 obj->dynsymcount++;
1242             while ((*hashval++ & 1u) == 0);
1243         }
1244         obj->dynsymcount += obj->symndx_gnu;
1245     }
1246 }
1247
1248 static bool
1249 obj_resolve_origin(Obj_Entry *obj)
1250 {
1251
1252         if (obj->origin_path != NULL)
1253                 return (true);
1254         obj->origin_path = xmalloc(PATH_MAX);
1255         return (rtld_dirname_abs(obj->path, obj->origin_path) != -1);
1256 }
1257
1258 static void
1259 digest_dynamic2(Obj_Entry *obj, const Elf_Dyn *dyn_rpath,
1260     const Elf_Dyn *dyn_soname, const Elf_Dyn *dyn_runpath)
1261 {
1262
1263         if (obj->z_origin && !obj_resolve_origin(obj))
1264                 rtld_die();
1265
1266         if (dyn_runpath != NULL) {
1267                 obj->runpath = (char *)obj->strtab + dyn_runpath->d_un.d_val;
1268                 obj->runpath = origin_subst(obj, obj->runpath);
1269         } else if (dyn_rpath != NULL) {
1270                 obj->rpath = (char *)obj->strtab + dyn_rpath->d_un.d_val;
1271                 obj->rpath = origin_subst(obj, obj->rpath);
1272         }
1273         if (dyn_soname != NULL)
1274                 object_add_name(obj, obj->strtab + dyn_soname->d_un.d_val);
1275 }
1276
1277 static void
1278 digest_dynamic(Obj_Entry *obj, int early)
1279 {
1280         const Elf_Dyn *dyn_rpath;
1281         const Elf_Dyn *dyn_soname;
1282         const Elf_Dyn *dyn_runpath;
1283
1284         digest_dynamic1(obj, early, &dyn_rpath, &dyn_soname, &dyn_runpath);
1285         digest_dynamic2(obj, dyn_rpath, dyn_soname, dyn_runpath);
1286 }
1287
1288 /*
1289  * Process a shared object's program header.  This is used only for the
1290  * main program, when the kernel has already loaded the main program
1291  * into memory before calling the dynamic linker.  It creates and
1292  * returns an Obj_Entry structure.
1293  */
1294 static Obj_Entry *
1295 digest_phdr(const Elf_Phdr *phdr, int phnum, caddr_t entry, const char *path)
1296 {
1297     Obj_Entry *obj;
1298     const Elf_Phdr *phlimit = phdr + phnum;
1299     const Elf_Phdr *ph;
1300     Elf_Addr note_start, note_end;
1301     int nsegs = 0;
1302
1303     obj = obj_new();
1304     for (ph = phdr;  ph < phlimit;  ph++) {
1305         if (ph->p_type != PT_PHDR)
1306             continue;
1307
1308         obj->phdr = phdr;
1309         obj->phsize = ph->p_memsz;
1310         obj->relocbase = (caddr_t)phdr - ph->p_vaddr;
1311         break;
1312     }
1313
1314     obj->stack_flags = PF_X | PF_R | PF_W;
1315
1316     for (ph = phdr;  ph < phlimit;  ph++) {
1317         switch (ph->p_type) {
1318
1319         case PT_INTERP:
1320             obj->interp = (const char *)(ph->p_vaddr + obj->relocbase);
1321             break;
1322
1323         case PT_LOAD:
1324             if (nsegs == 0) {   /* First load segment */
1325                 obj->vaddrbase = trunc_page(ph->p_vaddr);
1326                 obj->mapbase = obj->vaddrbase + obj->relocbase;
1327                 obj->textsize = round_page(ph->p_vaddr + ph->p_memsz) -
1328                   obj->vaddrbase;
1329             } else {            /* Last load segment */
1330                 obj->mapsize = round_page(ph->p_vaddr + ph->p_memsz) -
1331                   obj->vaddrbase;
1332             }
1333             nsegs++;
1334             break;
1335
1336         case PT_DYNAMIC:
1337             obj->dynamic = (const Elf_Dyn *)(ph->p_vaddr + obj->relocbase);
1338             break;
1339
1340         case PT_TLS:
1341             obj->tlsindex = 1;
1342             obj->tlssize = ph->p_memsz;
1343             obj->tlsalign = ph->p_align;
1344             obj->tlsinitsize = ph->p_filesz;
1345             obj->tlsinit = (void*)(ph->p_vaddr + obj->relocbase);
1346             break;
1347
1348         case PT_GNU_STACK:
1349             obj->stack_flags = ph->p_flags;
1350             break;
1351
1352         case PT_GNU_RELRO:
1353             obj->relro_page = obj->relocbase + trunc_page(ph->p_vaddr);
1354             obj->relro_size = round_page(ph->p_memsz);
1355             break;
1356
1357         case PT_NOTE:
1358             note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr;
1359             note_end = note_start + ph->p_filesz;
1360             digest_notes(obj, note_start, note_end);
1361             break;
1362         }
1363     }
1364     if (nsegs < 1) {
1365         _rtld_error("%s: too few PT_LOAD segments", path);
1366         return NULL;
1367     }
1368
1369     obj->entry = entry;
1370     return obj;
1371 }
1372
1373 void
1374 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end)
1375 {
1376         const Elf_Note *note;
1377         const char *note_name;
1378         uintptr_t p;
1379
1380         for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end;
1381             note = (const Elf_Note *)((const char *)(note + 1) +
1382               roundup2(note->n_namesz, sizeof(Elf32_Addr)) +
1383               roundup2(note->n_descsz, sizeof(Elf32_Addr)))) {
1384                 if (note->n_namesz != sizeof(NOTE_FREEBSD_VENDOR) ||
1385                     note->n_descsz != sizeof(int32_t))
1386                         continue;
1387                 if (note->n_type != NT_FREEBSD_ABI_TAG &&
1388                     note->n_type != NT_FREEBSD_NOINIT_TAG)
1389                         continue;
1390                 note_name = (const char *)(note + 1);
1391                 if (strncmp(NOTE_FREEBSD_VENDOR, note_name,
1392                     sizeof(NOTE_FREEBSD_VENDOR)) != 0)
1393                         continue;
1394                 switch (note->n_type) {
1395                 case NT_FREEBSD_ABI_TAG:
1396                         /* FreeBSD osrel note */
1397                         p = (uintptr_t)(note + 1);
1398                         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1399                         obj->osrel = *(const int32_t *)(p);
1400                         dbg("note osrel %d", obj->osrel);
1401                         break;
1402                 case NT_FREEBSD_NOINIT_TAG:
1403                         /* FreeBSD 'crt does not call init' note */
1404                         obj->crt_no_init = true;
1405                         dbg("note crt_no_init");
1406                         break;
1407                 }
1408         }
1409 }
1410
1411 static Obj_Entry *
1412 dlcheck(void *handle)
1413 {
1414     Obj_Entry *obj;
1415
1416     TAILQ_FOREACH(obj, &obj_list, next) {
1417         if (obj == (Obj_Entry *) handle)
1418             break;
1419     }
1420
1421     if (obj == NULL || obj->refcount == 0 || obj->dl_refcount == 0) {
1422         _rtld_error("Invalid shared object handle %p", handle);
1423         return NULL;
1424     }
1425     return obj;
1426 }
1427
1428 /*
1429  * If the given object is already in the donelist, return true.  Otherwise
1430  * add the object to the list and return false.
1431  */
1432 static bool
1433 donelist_check(DoneList *dlp, const Obj_Entry *obj)
1434 {
1435     unsigned int i;
1436
1437     for (i = 0;  i < dlp->num_used;  i++)
1438         if (dlp->objs[i] == obj)
1439             return true;
1440     /*
1441      * Our donelist allocation should always be sufficient.  But if
1442      * our threads locking isn't working properly, more shared objects
1443      * could have been loaded since we allocated the list.  That should
1444      * never happen, but we'll handle it properly just in case it does.
1445      */
1446     if (dlp->num_used < dlp->num_alloc)
1447         dlp->objs[dlp->num_used++] = obj;
1448     return false;
1449 }
1450
1451 /*
1452  * Hash function for symbol table lookup.  Don't even think about changing
1453  * this.  It is specified by the System V ABI.
1454  */
1455 unsigned long
1456 elf_hash(const char *name)
1457 {
1458     const unsigned char *p = (const unsigned char *) name;
1459     unsigned long h = 0;
1460     unsigned long g;
1461
1462     while (*p != '\0') {
1463         h = (h << 4) + *p++;
1464         if ((g = h & 0xf0000000) != 0)
1465             h ^= g >> 24;
1466         h &= ~g;
1467     }
1468     return h;
1469 }
1470
1471 /*
1472  * The GNU hash function is the Daniel J. Bernstein hash clipped to 32 bits
1473  * unsigned in case it's implemented with a wider type.
1474  */
1475 static uint32_t
1476 gnu_hash(const char *s)
1477 {
1478         uint32_t h;
1479         unsigned char c;
1480
1481         h = 5381;
1482         for (c = *s; c != '\0'; c = *++s)
1483                 h = h * 33 + c;
1484         return (h & 0xffffffff);
1485 }
1486
1487
1488 /*
1489  * Find the library with the given name, and return its full pathname.
1490  * The returned string is dynamically allocated.  Generates an error
1491  * message and returns NULL if the library cannot be found.
1492  *
1493  * If the second argument is non-NULL, then it refers to an already-
1494  * loaded shared object, whose library search path will be searched.
1495  *
1496  * If a library is successfully located via LD_LIBRARY_PATH_FDS, its
1497  * descriptor (which is close-on-exec) will be passed out via the third
1498  * argument.
1499  *
1500  * The search order is:
1501  *   DT_RPATH in the referencing file _unless_ DT_RUNPATH is present (1)
1502  *   DT_RPATH of the main object if DSO without defined DT_RUNPATH (1)
1503  *   LD_LIBRARY_PATH
1504  *   DT_RUNPATH in the referencing file
1505  *   ldconfig hints (if -z nodefaultlib, filter out default library directories
1506  *       from list)
1507  *   /lib:/usr/lib _unless_ the referencing file is linked with -z nodefaultlib
1508  *
1509  * (1) Handled in digest_dynamic2 - rpath left NULL if runpath defined.
1510  */
1511 static char *
1512 find_library(const char *xname, const Obj_Entry *refobj, int *fdp)
1513 {
1514     char *pathname;
1515     char *name;
1516     bool nodeflib, objgiven;
1517
1518     objgiven = refobj != NULL;
1519     if (strchr(xname, '/') != NULL) {   /* Hard coded pathname */
1520         if (xname[0] != '/' && !trust) {
1521             _rtld_error("Absolute pathname required for shared object \"%s\"",
1522               xname);
1523             return NULL;
1524         }
1525         return (origin_subst(__DECONST(Obj_Entry *, refobj),
1526           __DECONST(char *, xname)));
1527     }
1528
1529     if (libmap_disable || !objgiven ||
1530         (name = lm_find(refobj->path, xname)) == NULL)
1531         name = (char *)xname;
1532
1533     dbg(" Searching for \"%s\"", name);
1534
1535     /*
1536      * If refobj->rpath != NULL, then refobj->runpath is NULL.  Fall
1537      * back to pre-conforming behaviour if user requested so with
1538      * LD_LIBRARY_PATH_RPATH environment variable and ignore -z
1539      * nodeflib.
1540      */
1541     if (objgiven && refobj->rpath != NULL && ld_library_path_rpath) {
1542         if ((pathname = search_library_path(name, ld_library_path)) != NULL ||
1543           (refobj != NULL &&
1544           (pathname = search_library_path(name, refobj->rpath)) != NULL) ||
1545           (pathname = search_library_pathfds(name, ld_library_dirs, fdp)) != NULL ||
1546           (pathname = search_library_path(name, gethints(false))) != NULL ||
1547           (pathname = search_library_path(name, ld_standard_library_path)) != NULL)
1548             return (pathname);
1549     } else {
1550         nodeflib = objgiven ? refobj->z_nodeflib : false;
1551         if ((objgiven &&
1552           (pathname = search_library_path(name, refobj->rpath)) != NULL) ||
1553           (objgiven && refobj->runpath == NULL && refobj != obj_main &&
1554           (pathname = search_library_path(name, obj_main->rpath)) != NULL) ||
1555           (pathname = search_library_path(name, ld_library_path)) != NULL ||
1556           (objgiven &&
1557           (pathname = search_library_path(name, refobj->runpath)) != NULL) ||
1558           (pathname = search_library_pathfds(name, ld_library_dirs, fdp)) != NULL ||
1559           (pathname = search_library_path(name, gethints(nodeflib))) != NULL ||
1560           (objgiven && !nodeflib &&
1561           (pathname = search_library_path(name, ld_standard_library_path)) != NULL))
1562             return (pathname);
1563     }
1564
1565     if (objgiven && refobj->path != NULL) {
1566         _rtld_error("Shared object \"%s\" not found, required by \"%s\"",
1567           name, basename(refobj->path));
1568     } else {
1569         _rtld_error("Shared object \"%s\" not found", name);
1570     }
1571     return NULL;
1572 }
1573
1574 /*
1575  * Given a symbol number in a referencing object, find the corresponding
1576  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
1577  * no definition was found.  Returns a pointer to the Obj_Entry of the
1578  * defining object via the reference parameter DEFOBJ_OUT.
1579  */
1580 const Elf_Sym *
1581 find_symdef(unsigned long symnum, const Obj_Entry *refobj,
1582     const Obj_Entry **defobj_out, int flags, SymCache *cache,
1583     RtldLockState *lockstate)
1584 {
1585     const Elf_Sym *ref;
1586     const Elf_Sym *def;
1587     const Obj_Entry *defobj;
1588     SymLook req;
1589     const char *name;
1590     int res;
1591
1592     /*
1593      * If we have already found this symbol, get the information from
1594      * the cache.
1595      */
1596     if (symnum >= refobj->dynsymcount)
1597         return NULL;    /* Bad object */
1598     if (cache != NULL && cache[symnum].sym != NULL) {
1599         *defobj_out = cache[symnum].obj;
1600         return cache[symnum].sym;
1601     }
1602
1603     ref = refobj->symtab + symnum;
1604     name = refobj->strtab + ref->st_name;
1605     def = NULL;
1606     defobj = NULL;
1607
1608     /*
1609      * We don't have to do a full scale lookup if the symbol is local.
1610      * We know it will bind to the instance in this load module; to
1611      * which we already have a pointer (ie ref). By not doing a lookup,
1612      * we not only improve performance, but it also avoids unresolvable
1613      * symbols when local symbols are not in the hash table. This has
1614      * been seen with the ia64 toolchain.
1615      */
1616     if (ELF_ST_BIND(ref->st_info) != STB_LOCAL) {
1617         if (ELF_ST_TYPE(ref->st_info) == STT_SECTION) {
1618             _rtld_error("%s: Bogus symbol table entry %lu", refobj->path,
1619                 symnum);
1620         }
1621         symlook_init(&req, name);
1622         req.flags = flags;
1623         req.ventry = fetch_ventry(refobj, symnum);
1624         req.lockstate = lockstate;
1625         res = symlook_default(&req, refobj);
1626         if (res == 0) {
1627             def = req.sym_out;
1628             defobj = req.defobj_out;
1629         }
1630     } else {
1631         def = ref;
1632         defobj = refobj;
1633     }
1634
1635     /*
1636      * If we found no definition and the reference is weak, treat the
1637      * symbol as having the value zero.
1638      */
1639     if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
1640         def = &sym_zero;
1641         defobj = obj_main;
1642     }
1643
1644     if (def != NULL) {
1645         *defobj_out = defobj;
1646         /* Record the information in the cache to avoid subsequent lookups. */
1647         if (cache != NULL) {
1648             cache[symnum].sym = def;
1649             cache[symnum].obj = defobj;
1650         }
1651     } else {
1652         if (refobj != &obj_rtld)
1653             _rtld_error("%s: Undefined symbol \"%s\"", refobj->path, name);
1654     }
1655     return def;
1656 }
1657
1658 /*
1659  * Return the search path from the ldconfig hints file, reading it if
1660  * necessary.  If nostdlib is true, then the default search paths are
1661  * not added to result.
1662  *
1663  * Returns NULL if there are problems with the hints file,
1664  * or if the search path there is empty.
1665  */
1666 static const char *
1667 gethints(bool nostdlib)
1668 {
1669         static char *hints, *filtered_path;
1670         static struct elfhints_hdr hdr;
1671         struct fill_search_info_args sargs, hargs;
1672         struct dl_serinfo smeta, hmeta, *SLPinfo, *hintinfo;
1673         struct dl_serpath *SLPpath, *hintpath;
1674         char *p;
1675         struct stat hint_stat;
1676         unsigned int SLPndx, hintndx, fndx, fcount;
1677         int fd;
1678         size_t flen;
1679         uint32_t dl;
1680         bool skip;
1681
1682         /* First call, read the hints file */
1683         if (hints == NULL) {
1684                 /* Keep from trying again in case the hints file is bad. */
1685                 hints = "";
1686
1687                 if ((fd = open(ld_elf_hints_path, O_RDONLY | O_CLOEXEC)) == -1)
1688                         return (NULL);
1689
1690                 /*
1691                  * Check of hdr.dirlistlen value against type limit
1692                  * intends to pacify static analyzers.  Further
1693                  * paranoia leads to checks that dirlist is fully
1694                  * contained in the file range.
1695                  */
1696                 if (read(fd, &hdr, sizeof hdr) != sizeof hdr ||
1697                     hdr.magic != ELFHINTS_MAGIC ||
1698                     hdr.version != 1 || hdr.dirlistlen > UINT_MAX / 2 ||
1699                     fstat(fd, &hint_stat) == -1) {
1700 cleanup1:
1701                         close(fd);
1702                         hdr.dirlistlen = 0;
1703                         return (NULL);
1704                 }
1705                 dl = hdr.strtab;
1706                 if (dl + hdr.dirlist < dl)
1707                         goto cleanup1;
1708                 dl += hdr.dirlist;
1709                 if (dl + hdr.dirlistlen < dl)
1710                         goto cleanup1;
1711                 dl += hdr.dirlistlen;
1712                 if (dl > hint_stat.st_size)
1713                         goto cleanup1;
1714                 p = xmalloc(hdr.dirlistlen + 1);
1715
1716                 if (lseek(fd, hdr.strtab + hdr.dirlist, SEEK_SET) == -1 ||
1717                     read(fd, p, hdr.dirlistlen + 1) !=
1718                     (ssize_t)hdr.dirlistlen + 1 || p[hdr.dirlistlen] != '\0') {
1719                         free(p);
1720                         goto cleanup1;
1721                 }
1722                 hints = p;
1723                 close(fd);
1724         }
1725
1726         /*
1727          * If caller agreed to receive list which includes the default
1728          * paths, we are done. Otherwise, if we still did not
1729          * calculated filtered result, do it now.
1730          */
1731         if (!nostdlib)
1732                 return (hints[0] != '\0' ? hints : NULL);
1733         if (filtered_path != NULL)
1734                 goto filt_ret;
1735
1736         /*
1737          * Obtain the list of all configured search paths, and the
1738          * list of the default paths.
1739          *
1740          * First estimate the size of the results.
1741          */
1742         smeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1743         smeta.dls_cnt = 0;
1744         hmeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1745         hmeta.dls_cnt = 0;
1746
1747         sargs.request = RTLD_DI_SERINFOSIZE;
1748         sargs.serinfo = &smeta;
1749         hargs.request = RTLD_DI_SERINFOSIZE;
1750         hargs.serinfo = &hmeta;
1751
1752         path_enumerate(ld_standard_library_path, fill_search_info, &sargs);
1753         path_enumerate(hints, fill_search_info, &hargs);
1754
1755         SLPinfo = xmalloc(smeta.dls_size);
1756         hintinfo = xmalloc(hmeta.dls_size);
1757
1758         /*
1759          * Next fetch both sets of paths.
1760          */
1761         sargs.request = RTLD_DI_SERINFO;
1762         sargs.serinfo = SLPinfo;
1763         sargs.serpath = &SLPinfo->dls_serpath[0];
1764         sargs.strspace = (char *)&SLPinfo->dls_serpath[smeta.dls_cnt];
1765
1766         hargs.request = RTLD_DI_SERINFO;
1767         hargs.serinfo = hintinfo;
1768         hargs.serpath = &hintinfo->dls_serpath[0];
1769         hargs.strspace = (char *)&hintinfo->dls_serpath[hmeta.dls_cnt];
1770
1771         path_enumerate(ld_standard_library_path, fill_search_info, &sargs);
1772         path_enumerate(hints, fill_search_info, &hargs);
1773
1774         /*
1775          * Now calculate the difference between two sets, by excluding
1776          * standard paths from the full set.
1777          */
1778         fndx = 0;
1779         fcount = 0;
1780         filtered_path = xmalloc(hdr.dirlistlen + 1);
1781         hintpath = &hintinfo->dls_serpath[0];
1782         for (hintndx = 0; hintndx < hmeta.dls_cnt; hintndx++, hintpath++) {
1783                 skip = false;
1784                 SLPpath = &SLPinfo->dls_serpath[0];
1785                 /*
1786                  * Check each standard path against current.
1787                  */
1788                 for (SLPndx = 0; SLPndx < smeta.dls_cnt; SLPndx++, SLPpath++) {
1789                         /* matched, skip the path */
1790                         if (!strcmp(hintpath->dls_name, SLPpath->dls_name)) {
1791                                 skip = true;
1792                                 break;
1793                         }
1794                 }
1795                 if (skip)
1796                         continue;
1797                 /*
1798                  * Not matched against any standard path, add the path
1799                  * to result. Separate consequtive paths with ':'.
1800                  */
1801                 if (fcount > 0) {
1802                         filtered_path[fndx] = ':';
1803                         fndx++;
1804                 }
1805                 fcount++;
1806                 flen = strlen(hintpath->dls_name);
1807                 strncpy((filtered_path + fndx), hintpath->dls_name, flen);
1808                 fndx += flen;
1809         }
1810         filtered_path[fndx] = '\0';
1811
1812         free(SLPinfo);
1813         free(hintinfo);
1814
1815 filt_ret:
1816         return (filtered_path[0] != '\0' ? filtered_path : NULL);
1817 }
1818
1819 static void
1820 init_dag(Obj_Entry *root)
1821 {
1822     const Needed_Entry *needed;
1823     const Objlist_Entry *elm;
1824     DoneList donelist;
1825
1826     if (root->dag_inited)
1827         return;
1828     donelist_init(&donelist);
1829
1830     /* Root object belongs to own DAG. */
1831     objlist_push_tail(&root->dldags, root);
1832     objlist_push_tail(&root->dagmembers, root);
1833     donelist_check(&donelist, root);
1834
1835     /*
1836      * Add dependencies of root object to DAG in breadth order
1837      * by exploiting the fact that each new object get added
1838      * to the tail of the dagmembers list.
1839      */
1840     STAILQ_FOREACH(elm, &root->dagmembers, link) {
1841         for (needed = elm->obj->needed; needed != NULL; needed = needed->next) {
1842             if (needed->obj == NULL || donelist_check(&donelist, needed->obj))
1843                 continue;
1844             objlist_push_tail(&needed->obj->dldags, root);
1845             objlist_push_tail(&root->dagmembers, needed->obj);
1846         }
1847     }
1848     root->dag_inited = true;
1849 }
1850
1851 Obj_Entry *
1852 globallist_curr(const Obj_Entry *obj)
1853 {
1854
1855         for (;;) {
1856                 if (obj == NULL)
1857                         return (NULL);
1858                 if (!obj->marker)
1859                         return (__DECONST(Obj_Entry *, obj));
1860                 obj = TAILQ_PREV(obj, obj_entry_q, next);
1861         }
1862 }
1863
1864 Obj_Entry *
1865 globallist_next(const Obj_Entry *obj)
1866 {
1867
1868         for (;;) {
1869                 obj = TAILQ_NEXT(obj, next);
1870                 if (obj == NULL)
1871                         return (NULL);
1872                 if (!obj->marker)
1873                         return (__DECONST(Obj_Entry *, obj));
1874         }
1875 }
1876
1877 static void
1878 process_z(Obj_Entry *root)
1879 {
1880         const Objlist_Entry *elm;
1881         Obj_Entry *obj;
1882
1883         /*
1884          * Walk over object DAG and process every dependent object
1885          * that is marked as DF_1_NODELETE or DF_1_GLOBAL. They need
1886          * to grow their own DAG.
1887          *
1888          * For DF_1_GLOBAL, DAG is required for symbol lookups in
1889          * symlook_global() to work.
1890          *
1891          * For DF_1_NODELETE, the DAG should have its reference upped.
1892          */
1893         STAILQ_FOREACH(elm, &root->dagmembers, link) {
1894                 obj = elm->obj;
1895                 if (obj == NULL)
1896                         continue;
1897                 if (obj->z_nodelete && !obj->ref_nodel) {
1898                         dbg("obj %s -z nodelete", obj->path);
1899                         init_dag(obj);
1900                         ref_dag(obj);
1901                         obj->ref_nodel = true;
1902                 }
1903                 if (obj->z_global && objlist_find(&list_global, obj) == NULL) {
1904                         dbg("obj %s -z global", obj->path);
1905                         objlist_push_tail(&list_global, obj);
1906                         init_dag(obj);
1907                 }
1908         }
1909 }
1910 /*
1911  * Initialize the dynamic linker.  The argument is the address at which
1912  * the dynamic linker has been mapped into memory.  The primary task of
1913  * this function is to relocate the dynamic linker.
1914  */
1915 static void
1916 init_rtld(caddr_t mapbase, Elf_Auxinfo **aux_info)
1917 {
1918     Obj_Entry objtmp;   /* Temporary rtld object */
1919     const Elf_Dyn *dyn_rpath;
1920     const Elf_Dyn *dyn_soname;
1921     const Elf_Dyn *dyn_runpath;
1922
1923 #ifdef RTLD_INIT_PAGESIZES_EARLY
1924     /* The page size is required by the dynamic memory allocator. */
1925     init_pagesizes(aux_info);
1926 #endif
1927
1928     /*
1929      * Conjure up an Obj_Entry structure for the dynamic linker.
1930      *
1931      * The "path" member can't be initialized yet because string constants
1932      * cannot yet be accessed. Below we will set it correctly.
1933      */
1934     memset(&objtmp, 0, sizeof(objtmp));
1935     objtmp.path = NULL;
1936     objtmp.rtld = true;
1937     objtmp.mapbase = mapbase;
1938 #ifdef PIC
1939     objtmp.relocbase = mapbase;
1940 #endif
1941     if (RTLD_IS_DYNAMIC()) {
1942         objtmp.dynamic = rtld_dynamic(&objtmp);
1943         digest_dynamic1(&objtmp, 1, &dyn_rpath, &dyn_soname, &dyn_runpath);
1944         assert(objtmp.needed == NULL);
1945 #if !defined(__mips__)
1946         /* MIPS has a bogus DT_TEXTREL. */
1947         assert(!objtmp.textrel);
1948 #endif
1949
1950         /*
1951          * Temporarily put the dynamic linker entry into the object list, so
1952          * that symbols can be found.
1953          */
1954
1955         relocate_objects(&objtmp, true, &objtmp, 0, NULL);
1956     }
1957
1958     /* Initialize the object list. */
1959     TAILQ_INIT(&obj_list);
1960
1961     /* Now that non-local variables can be accesses, copy out obj_rtld. */
1962     memcpy(&obj_rtld, &objtmp, sizeof(obj_rtld));
1963
1964 #ifndef RTLD_INIT_PAGESIZES_EARLY
1965     /* The page size is required by the dynamic memory allocator. */
1966     init_pagesizes(aux_info);
1967 #endif
1968
1969     if (aux_info[AT_OSRELDATE] != NULL)
1970             osreldate = aux_info[AT_OSRELDATE]->a_un.a_val;
1971
1972     digest_dynamic2(&obj_rtld, dyn_rpath, dyn_soname, dyn_runpath);
1973
1974     /* Replace the path with a dynamically allocated copy. */
1975     obj_rtld.path = xstrdup(ld_path_rtld);
1976
1977     r_debug.r_brk = r_debug_state;
1978     r_debug.r_state = RT_CONSISTENT;
1979 }
1980
1981 /*
1982  * Retrieve the array of supported page sizes.  The kernel provides the page
1983  * sizes in increasing order.
1984  */
1985 static void
1986 init_pagesizes(Elf_Auxinfo **aux_info)
1987 {
1988         static size_t psa[MAXPAGESIZES];
1989         int mib[2];
1990         size_t len, size;
1991
1992         if (aux_info[AT_PAGESIZES] != NULL && aux_info[AT_PAGESIZESLEN] !=
1993             NULL) {
1994                 size = aux_info[AT_PAGESIZESLEN]->a_un.a_val;
1995                 pagesizes = aux_info[AT_PAGESIZES]->a_un.a_ptr;
1996         } else {
1997                 len = 2;
1998                 if (sysctlnametomib("hw.pagesizes", mib, &len) == 0)
1999                         size = sizeof(psa);
2000                 else {
2001                         /* As a fallback, retrieve the base page size. */
2002                         size = sizeof(psa[0]);
2003                         if (aux_info[AT_PAGESZ] != NULL) {
2004                                 psa[0] = aux_info[AT_PAGESZ]->a_un.a_val;
2005                                 goto psa_filled;
2006                         } else {
2007                                 mib[0] = CTL_HW;
2008                                 mib[1] = HW_PAGESIZE;
2009                                 len = 2;
2010                         }
2011                 }
2012                 if (sysctl(mib, len, psa, &size, NULL, 0) == -1) {
2013                         _rtld_error("sysctl for hw.pagesize(s) failed");
2014                         rtld_die();
2015                 }
2016 psa_filled:
2017                 pagesizes = psa;
2018         }
2019         npagesizes = size / sizeof(pagesizes[0]);
2020         /* Discard any invalid entries at the end of the array. */
2021         while (npagesizes > 0 && pagesizes[npagesizes - 1] == 0)
2022                 npagesizes--;
2023 }
2024
2025 /*
2026  * Add the init functions from a needed object list (and its recursive
2027  * needed objects) to "list".  This is not used directly; it is a helper
2028  * function for initlist_add_objects().  The write lock must be held
2029  * when this function is called.
2030  */
2031 static void
2032 initlist_add_neededs(Needed_Entry *needed, Objlist *list)
2033 {
2034     /* Recursively process the successor needed objects. */
2035     if (needed->next != NULL)
2036         initlist_add_neededs(needed->next, list);
2037
2038     /* Process the current needed object. */
2039     if (needed->obj != NULL)
2040         initlist_add_objects(needed->obj, needed->obj, list);
2041 }
2042
2043 /*
2044  * Scan all of the DAGs rooted in the range of objects from "obj" to
2045  * "tail" and add their init functions to "list".  This recurses over
2046  * the DAGs and ensure the proper init ordering such that each object's
2047  * needed libraries are initialized before the object itself.  At the
2048  * same time, this function adds the objects to the global finalization
2049  * list "list_fini" in the opposite order.  The write lock must be
2050  * held when this function is called.
2051  */
2052 static void
2053 initlist_add_objects(Obj_Entry *obj, Obj_Entry *tail, Objlist *list)
2054 {
2055     Obj_Entry *nobj;
2056
2057     if (obj->init_scanned || obj->init_done)
2058         return;
2059     obj->init_scanned = true;
2060
2061     /* Recursively process the successor objects. */
2062     nobj = globallist_next(obj);
2063     if (nobj != NULL && obj != tail)
2064         initlist_add_objects(nobj, tail, list);
2065
2066     /* Recursively process the needed objects. */
2067     if (obj->needed != NULL)
2068         initlist_add_neededs(obj->needed, list);
2069     if (obj->needed_filtees != NULL)
2070         initlist_add_neededs(obj->needed_filtees, list);
2071     if (obj->needed_aux_filtees != NULL)
2072         initlist_add_neededs(obj->needed_aux_filtees, list);
2073
2074     /* Add the object to the init list. */
2075     if (obj->preinit_array != (Elf_Addr)NULL || obj->init != (Elf_Addr)NULL ||
2076       obj->init_array != (Elf_Addr)NULL)
2077         objlist_push_tail(list, obj);
2078
2079     /* Add the object to the global fini list in the reverse order. */
2080     if ((obj->fini != (Elf_Addr)NULL || obj->fini_array != (Elf_Addr)NULL)
2081       && !obj->on_fini_list) {
2082         objlist_push_head(&list_fini, obj);
2083         obj->on_fini_list = true;
2084     }
2085 }
2086
2087 #ifndef FPTR_TARGET
2088 #define FPTR_TARGET(f)  ((Elf_Addr) (f))
2089 #endif
2090
2091 static void
2092 free_needed_filtees(Needed_Entry *n)
2093 {
2094     Needed_Entry *needed, *needed1;
2095
2096     for (needed = n; needed != NULL; needed = needed->next) {
2097         if (needed->obj != NULL) {
2098             dlclose(needed->obj);
2099             needed->obj = NULL;
2100         }
2101     }
2102     for (needed = n; needed != NULL; needed = needed1) {
2103         needed1 = needed->next;
2104         free(needed);
2105     }
2106 }
2107
2108 static void
2109 unload_filtees(Obj_Entry *obj)
2110 {
2111
2112     free_needed_filtees(obj->needed_filtees);
2113     obj->needed_filtees = NULL;
2114     free_needed_filtees(obj->needed_aux_filtees);
2115     obj->needed_aux_filtees = NULL;
2116     obj->filtees_loaded = false;
2117 }
2118
2119 static void
2120 load_filtee1(Obj_Entry *obj, Needed_Entry *needed, int flags,
2121     RtldLockState *lockstate)
2122 {
2123
2124     for (; needed != NULL; needed = needed->next) {
2125         needed->obj = dlopen_object(obj->strtab + needed->name, -1, obj,
2126           flags, ((ld_loadfltr || obj->z_loadfltr) ? RTLD_NOW : RTLD_LAZY) |
2127           RTLD_LOCAL, lockstate);
2128     }
2129 }
2130
2131 static void
2132 load_filtees(Obj_Entry *obj, int flags, RtldLockState *lockstate)
2133 {
2134
2135     lock_restart_for_upgrade(lockstate);
2136     if (!obj->filtees_loaded) {
2137         load_filtee1(obj, obj->needed_filtees, flags, lockstate);
2138         load_filtee1(obj, obj->needed_aux_filtees, flags, lockstate);
2139         obj->filtees_loaded = true;
2140     }
2141 }
2142
2143 static int
2144 process_needed(Obj_Entry *obj, Needed_Entry *needed, int flags)
2145 {
2146     Obj_Entry *obj1;
2147
2148     for (; needed != NULL; needed = needed->next) {
2149         obj1 = needed->obj = load_object(obj->strtab + needed->name, -1, obj,
2150           flags & ~RTLD_LO_NOLOAD);
2151         if (obj1 == NULL && !ld_tracing && (flags & RTLD_LO_FILTEES) == 0)
2152             return (-1);
2153     }
2154     return (0);
2155 }
2156
2157 /*
2158  * Given a shared object, traverse its list of needed objects, and load
2159  * each of them.  Returns 0 on success.  Generates an error message and
2160  * returns -1 on failure.
2161  */
2162 static int
2163 load_needed_objects(Obj_Entry *first, int flags)
2164 {
2165     Obj_Entry *obj;
2166
2167     for (obj = first; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
2168         if (obj->marker)
2169             continue;
2170         if (process_needed(obj, obj->needed, flags) == -1)
2171             return (-1);
2172     }
2173     return (0);
2174 }
2175
2176 static int
2177 load_preload_objects(void)
2178 {
2179     char *p = ld_preload;
2180     Obj_Entry *obj;
2181     static const char delim[] = " \t:;";
2182
2183     if (p == NULL)
2184         return 0;
2185
2186     p += strspn(p, delim);
2187     while (*p != '\0') {
2188         size_t len = strcspn(p, delim);
2189         char savech;
2190
2191         savech = p[len];
2192         p[len] = '\0';
2193         obj = load_object(p, -1, NULL, 0);
2194         if (obj == NULL)
2195             return -1;  /* XXX - cleanup */
2196         obj->z_interpose = true;
2197         p[len] = savech;
2198         p += len;
2199         p += strspn(p, delim);
2200     }
2201     LD_UTRACE(UTRACE_PRELOAD_FINISHED, NULL, NULL, 0, 0, NULL);
2202     return 0;
2203 }
2204
2205 static const char *
2206 printable_path(const char *path)
2207 {
2208
2209         return (path == NULL ? "<unknown>" : path);
2210 }
2211
2212 /*
2213  * Load a shared object into memory, if it is not already loaded.  The
2214  * object may be specified by name or by user-supplied file descriptor
2215  * fd_u. In the later case, the fd_u descriptor is not closed, but its
2216  * duplicate is.
2217  *
2218  * Returns a pointer to the Obj_Entry for the object.  Returns NULL
2219  * on failure.
2220  */
2221 static Obj_Entry *
2222 load_object(const char *name, int fd_u, const Obj_Entry *refobj, int flags)
2223 {
2224     Obj_Entry *obj;
2225     int fd;
2226     struct stat sb;
2227     char *path;
2228
2229     fd = -1;
2230     if (name != NULL) {
2231         TAILQ_FOREACH(obj, &obj_list, next) {
2232             if (obj->marker)
2233                 continue;
2234             if (object_match_name(obj, name))
2235                 return (obj);
2236         }
2237
2238         path = find_library(name, refobj, &fd);
2239         if (path == NULL)
2240             return (NULL);
2241     } else
2242         path = NULL;
2243
2244     if (fd >= 0) {
2245         /*
2246          * search_library_pathfds() opens a fresh file descriptor for the
2247          * library, so there is no need to dup().
2248          */
2249     } else if (fd_u == -1) {
2250         /*
2251          * If we didn't find a match by pathname, or the name is not
2252          * supplied, open the file and check again by device and inode.
2253          * This avoids false mismatches caused by multiple links or ".."
2254          * in pathnames.
2255          *
2256          * To avoid a race, we open the file and use fstat() rather than
2257          * using stat().
2258          */
2259         if ((fd = open(path, O_RDONLY | O_CLOEXEC | O_VERIFY)) == -1) {
2260             _rtld_error("Cannot open \"%s\"", path);
2261             free(path);
2262             return (NULL);
2263         }
2264     } else {
2265         fd = fcntl(fd_u, F_DUPFD_CLOEXEC, 0);
2266         if (fd == -1) {
2267             _rtld_error("Cannot dup fd");
2268             free(path);
2269             return (NULL);
2270         }
2271     }
2272     if (fstat(fd, &sb) == -1) {
2273         _rtld_error("Cannot fstat \"%s\"", printable_path(path));
2274         close(fd);
2275         free(path);
2276         return NULL;
2277     }
2278     TAILQ_FOREACH(obj, &obj_list, next) {
2279         if (obj->marker)
2280             continue;
2281         if (obj->ino == sb.st_ino && obj->dev == sb.st_dev)
2282             break;
2283     }
2284     if (obj != NULL && name != NULL) {
2285         object_add_name(obj, name);
2286         free(path);
2287         close(fd);
2288         return obj;
2289     }
2290     if (flags & RTLD_LO_NOLOAD) {
2291         free(path);
2292         close(fd);
2293         return (NULL);
2294     }
2295
2296     /* First use of this object, so we must map it in */
2297     obj = do_load_object(fd, name, path, &sb, flags);
2298     if (obj == NULL)
2299         free(path);
2300     close(fd);
2301
2302     return obj;
2303 }
2304
2305 static Obj_Entry *
2306 do_load_object(int fd, const char *name, char *path, struct stat *sbp,
2307   int flags)
2308 {
2309     Obj_Entry *obj;
2310     struct statfs fs;
2311
2312     /*
2313      * but first, make sure that environment variables haven't been
2314      * used to circumvent the noexec flag on a filesystem.
2315      */
2316     if (dangerous_ld_env) {
2317         if (fstatfs(fd, &fs) != 0) {
2318             _rtld_error("Cannot fstatfs \"%s\"", printable_path(path));
2319             return NULL;
2320         }
2321         if (fs.f_flags & MNT_NOEXEC) {
2322             _rtld_error("Cannot execute objects on %s\n", fs.f_mntonname);
2323             return NULL;
2324         }
2325     }
2326     dbg("loading \"%s\"", printable_path(path));
2327     obj = map_object(fd, printable_path(path), sbp);
2328     if (obj == NULL)
2329         return NULL;
2330
2331     /*
2332      * If DT_SONAME is present in the object, digest_dynamic2 already
2333      * added it to the object names.
2334      */
2335     if (name != NULL)
2336         object_add_name(obj, name);
2337     obj->path = path;
2338     digest_dynamic(obj, 0);
2339     dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d", obj->path,
2340         obj->valid_hash_sysv, obj->valid_hash_gnu, obj->dynsymcount);
2341     if (obj->z_noopen && (flags & (RTLD_LO_DLOPEN | RTLD_LO_TRACE)) ==
2342       RTLD_LO_DLOPEN) {
2343         dbg("refusing to load non-loadable \"%s\"", obj->path);
2344         _rtld_error("Cannot dlopen non-loadable %s", obj->path);
2345         munmap(obj->mapbase, obj->mapsize);
2346         obj_free(obj);
2347         return (NULL);
2348     }
2349
2350     obj->dlopened = (flags & RTLD_LO_DLOPEN) != 0;
2351     TAILQ_INSERT_TAIL(&obj_list, obj, next);
2352     obj_count++;
2353     obj_loads++;
2354     linkmap_add(obj);   /* for GDB & dlinfo() */
2355     max_stack_flags |= obj->stack_flags;
2356
2357     dbg("  %p .. %p: %s", obj->mapbase,
2358          obj->mapbase + obj->mapsize - 1, obj->path);
2359     if (obj->textrel)
2360         dbg("  WARNING: %s has impure text", obj->path);
2361     LD_UTRACE(UTRACE_LOAD_OBJECT, obj, obj->mapbase, obj->mapsize, 0,
2362         obj->path);    
2363
2364     return obj;
2365 }
2366
2367 static Obj_Entry *
2368 obj_from_addr(const void *addr)
2369 {
2370     Obj_Entry *obj;
2371
2372     TAILQ_FOREACH(obj, &obj_list, next) {
2373         if (obj->marker)
2374             continue;
2375         if (addr < (void *) obj->mapbase)
2376             continue;
2377         if (addr < (void *) (obj->mapbase + obj->mapsize))
2378             return obj;
2379     }
2380     return NULL;
2381 }
2382
2383 static void
2384 preinit_main(void)
2385 {
2386     Elf_Addr *preinit_addr;
2387     int index;
2388
2389     preinit_addr = (Elf_Addr *)obj_main->preinit_array;
2390     if (preinit_addr == NULL)
2391         return;
2392
2393     for (index = 0; index < obj_main->preinit_array_num; index++) {
2394         if (preinit_addr[index] != 0 && preinit_addr[index] != 1) {
2395             dbg("calling preinit function for %s at %p", obj_main->path,
2396               (void *)preinit_addr[index]);
2397             LD_UTRACE(UTRACE_INIT_CALL, obj_main, (void *)preinit_addr[index],
2398               0, 0, obj_main->path);
2399             call_init_pointer(obj_main, preinit_addr[index]);
2400         }
2401     }
2402 }
2403
2404 /*
2405  * Call the finalization functions for each of the objects in "list"
2406  * belonging to the DAG of "root" and referenced once. If NULL "root"
2407  * is specified, every finalization function will be called regardless
2408  * of the reference count and the list elements won't be freed. All of
2409  * the objects are expected to have non-NULL fini functions.
2410  */
2411 static void
2412 objlist_call_fini(Objlist *list, Obj_Entry *root, RtldLockState *lockstate)
2413 {
2414     Objlist_Entry *elm;
2415     char *saved_msg;
2416     Elf_Addr *fini_addr;
2417     int index;
2418
2419     assert(root == NULL || root->refcount == 1);
2420
2421     /*
2422      * Preserve the current error message since a fini function might
2423      * call into the dynamic linker and overwrite it.
2424      */
2425     saved_msg = errmsg_save();
2426     do {
2427         STAILQ_FOREACH(elm, list, link) {
2428             if (root != NULL && (elm->obj->refcount != 1 ||
2429               objlist_find(&root->dagmembers, elm->obj) == NULL))
2430                 continue;
2431             /* Remove object from fini list to prevent recursive invocation. */
2432             STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2433             /*
2434              * XXX: If a dlopen() call references an object while the
2435              * fini function is in progress, we might end up trying to
2436              * unload the referenced object in dlclose() or the object
2437              * won't be unloaded although its fini function has been
2438              * called.
2439              */
2440             lock_release(rtld_bind_lock, lockstate);
2441
2442             /*
2443              * It is legal to have both DT_FINI and DT_FINI_ARRAY defined.
2444              * When this happens, DT_FINI_ARRAY is processed first.
2445              */
2446             fini_addr = (Elf_Addr *)elm->obj->fini_array;
2447             if (fini_addr != NULL && elm->obj->fini_array_num > 0) {
2448                 for (index = elm->obj->fini_array_num - 1; index >= 0;
2449                   index--) {
2450                     if (fini_addr[index] != 0 && fini_addr[index] != 1) {
2451                         dbg("calling fini function for %s at %p",
2452                             elm->obj->path, (void *)fini_addr[index]);
2453                         LD_UTRACE(UTRACE_FINI_CALL, elm->obj,
2454                             (void *)fini_addr[index], 0, 0, elm->obj->path);
2455                         call_initfini_pointer(elm->obj, fini_addr[index]);
2456                     }
2457                 }
2458             }
2459             if (elm->obj->fini != (Elf_Addr)NULL) {
2460                 dbg("calling fini function for %s at %p", elm->obj->path,
2461                     (void *)elm->obj->fini);
2462                 LD_UTRACE(UTRACE_FINI_CALL, elm->obj, (void *)elm->obj->fini,
2463                     0, 0, elm->obj->path);
2464                 call_initfini_pointer(elm->obj, elm->obj->fini);
2465             }
2466             wlock_acquire(rtld_bind_lock, lockstate);
2467             /* No need to free anything if process is going down. */
2468             if (root != NULL)
2469                 free(elm);
2470             /*
2471              * We must restart the list traversal after every fini call
2472              * because a dlclose() call from the fini function or from
2473              * another thread might have modified the reference counts.
2474              */
2475             break;
2476         }
2477     } while (elm != NULL);
2478     errmsg_restore(saved_msg);
2479 }
2480
2481 /*
2482  * Call the initialization functions for each of the objects in
2483  * "list".  All of the objects are expected to have non-NULL init
2484  * functions.
2485  */
2486 static void
2487 objlist_call_init(Objlist *list, RtldLockState *lockstate)
2488 {
2489     Objlist_Entry *elm;
2490     Obj_Entry *obj;
2491     char *saved_msg;
2492     Elf_Addr *init_addr;
2493     int index;
2494
2495     /*
2496      * Clean init_scanned flag so that objects can be rechecked and
2497      * possibly initialized earlier if any of vectors called below
2498      * cause the change by using dlopen.
2499      */
2500     TAILQ_FOREACH(obj, &obj_list, next) {
2501         if (obj->marker)
2502             continue;
2503         obj->init_scanned = false;
2504     }
2505
2506     /*
2507      * Preserve the current error message since an init function might
2508      * call into the dynamic linker and overwrite it.
2509      */
2510     saved_msg = errmsg_save();
2511     STAILQ_FOREACH(elm, list, link) {
2512         if (elm->obj->init_done) /* Initialized early. */
2513             continue;
2514         /*
2515          * Race: other thread might try to use this object before current
2516          * one completes the initilization. Not much can be done here
2517          * without better locking.
2518          */
2519         elm->obj->init_done = true;
2520         lock_release(rtld_bind_lock, lockstate);
2521
2522         /*
2523          * It is legal to have both DT_INIT and DT_INIT_ARRAY defined.
2524          * When this happens, DT_INIT is processed first.
2525          */
2526         if (elm->obj->init != (Elf_Addr)NULL) {
2527             dbg("calling init function for %s at %p", elm->obj->path,
2528                 (void *)elm->obj->init);
2529             LD_UTRACE(UTRACE_INIT_CALL, elm->obj, (void *)elm->obj->init,
2530                 0, 0, elm->obj->path);
2531             call_initfini_pointer(elm->obj, elm->obj->init);
2532         }
2533         init_addr = (Elf_Addr *)elm->obj->init_array;
2534         if (init_addr != NULL) {
2535             for (index = 0; index < elm->obj->init_array_num; index++) {
2536                 if (init_addr[index] != 0 && init_addr[index] != 1) {
2537                     dbg("calling init function for %s at %p", elm->obj->path,
2538                         (void *)init_addr[index]);
2539                     LD_UTRACE(UTRACE_INIT_CALL, elm->obj,
2540                         (void *)init_addr[index], 0, 0, elm->obj->path);
2541                     call_init_pointer(elm->obj, init_addr[index]);
2542                 }
2543             }
2544         }
2545         wlock_acquire(rtld_bind_lock, lockstate);
2546     }
2547     errmsg_restore(saved_msg);
2548 }
2549
2550 static void
2551 objlist_clear(Objlist *list)
2552 {
2553     Objlist_Entry *elm;
2554
2555     while (!STAILQ_EMPTY(list)) {
2556         elm = STAILQ_FIRST(list);
2557         STAILQ_REMOVE_HEAD(list, link);
2558         free(elm);
2559     }
2560 }
2561
2562 static Objlist_Entry *
2563 objlist_find(Objlist *list, const Obj_Entry *obj)
2564 {
2565     Objlist_Entry *elm;
2566
2567     STAILQ_FOREACH(elm, list, link)
2568         if (elm->obj == obj)
2569             return elm;
2570     return NULL;
2571 }
2572
2573 static void
2574 objlist_init(Objlist *list)
2575 {
2576     STAILQ_INIT(list);
2577 }
2578
2579 static void
2580 objlist_push_head(Objlist *list, Obj_Entry *obj)
2581 {
2582     Objlist_Entry *elm;
2583
2584     elm = NEW(Objlist_Entry);
2585     elm->obj = obj;
2586     STAILQ_INSERT_HEAD(list, elm, link);
2587 }
2588
2589 static void
2590 objlist_push_tail(Objlist *list, Obj_Entry *obj)
2591 {
2592     Objlist_Entry *elm;
2593
2594     elm = NEW(Objlist_Entry);
2595     elm->obj = obj;
2596     STAILQ_INSERT_TAIL(list, elm, link);
2597 }
2598
2599 static void
2600 objlist_put_after(Objlist *list, Obj_Entry *listobj, Obj_Entry *obj)
2601 {
2602         Objlist_Entry *elm, *listelm;
2603
2604         STAILQ_FOREACH(listelm, list, link) {
2605                 if (listelm->obj == listobj)
2606                         break;
2607         }
2608         elm = NEW(Objlist_Entry);
2609         elm->obj = obj;
2610         if (listelm != NULL)
2611                 STAILQ_INSERT_AFTER(list, listelm, elm, link);
2612         else
2613                 STAILQ_INSERT_TAIL(list, elm, link);
2614 }
2615
2616 static void
2617 objlist_remove(Objlist *list, Obj_Entry *obj)
2618 {
2619     Objlist_Entry *elm;
2620
2621     if ((elm = objlist_find(list, obj)) != NULL) {
2622         STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2623         free(elm);
2624     }
2625 }
2626
2627 /*
2628  * Relocate dag rooted in the specified object.
2629  * Returns 0 on success, or -1 on failure.
2630  */
2631
2632 static int
2633 relocate_object_dag(Obj_Entry *root, bool bind_now, Obj_Entry *rtldobj,
2634     int flags, RtldLockState *lockstate)
2635 {
2636         Objlist_Entry *elm;
2637         int error;
2638
2639         error = 0;
2640         STAILQ_FOREACH(elm, &root->dagmembers, link) {
2641                 error = relocate_object(elm->obj, bind_now, rtldobj, flags,
2642                     lockstate);
2643                 if (error == -1)
2644                         break;
2645         }
2646         return (error);
2647 }
2648
2649 /*
2650  * Prepare for, or clean after, relocating an object marked with
2651  * DT_TEXTREL or DF_TEXTREL.  Before relocating, all read-only
2652  * segments are remapped read-write.  After relocations are done, the
2653  * segment's permissions are returned back to the modes specified in
2654  * the phdrs.  If any relocation happened, or always for wired
2655  * program, COW is triggered.
2656  */
2657 static int
2658 reloc_textrel_prot(Obj_Entry *obj, bool before)
2659 {
2660         const Elf_Phdr *ph;
2661         void *base;
2662         size_t l, sz;
2663         int prot;
2664
2665         for (l = obj->phsize / sizeof(*ph), ph = obj->phdr; l > 0;
2666             l--, ph++) {
2667                 if (ph->p_type != PT_LOAD || (ph->p_flags & PF_W) != 0)
2668                         continue;
2669                 base = obj->relocbase + trunc_page(ph->p_vaddr);
2670                 sz = round_page(ph->p_vaddr + ph->p_filesz) -
2671                     trunc_page(ph->p_vaddr);
2672                 prot = convert_prot(ph->p_flags) | (before ? PROT_WRITE : 0);
2673                 if (mprotect(base, sz, prot) == -1) {
2674                         _rtld_error("%s: Cannot write-%sable text segment: %s",
2675                             obj->path, before ? "en" : "dis",
2676                             rtld_strerror(errno));
2677                         return (-1);
2678                 }
2679         }
2680         return (0);
2681 }
2682
2683 /*
2684  * Relocate single object.
2685  * Returns 0 on success, or -1 on failure.
2686  */
2687 static int
2688 relocate_object(Obj_Entry *obj, bool bind_now, Obj_Entry *rtldobj,
2689     int flags, RtldLockState *lockstate)
2690 {
2691
2692         if (obj->relocated)
2693                 return (0);
2694         obj->relocated = true;
2695         if (obj != rtldobj)
2696                 dbg("relocating \"%s\"", obj->path);
2697
2698         if (obj->symtab == NULL || obj->strtab == NULL ||
2699             !(obj->valid_hash_sysv || obj->valid_hash_gnu)) {
2700                 _rtld_error("%s: Shared object has no run-time symbol table",
2701                             obj->path);
2702                 return (-1);
2703         }
2704
2705         /* There are relocations to the write-protected text segment. */
2706         if (obj->textrel && reloc_textrel_prot(obj, true) != 0)
2707                 return (-1);
2708
2709         /* Process the non-PLT non-IFUNC relocations. */
2710         if (reloc_non_plt(obj, rtldobj, flags, lockstate))
2711                 return (-1);
2712
2713         /* Re-protected the text segment. */
2714         if (obj->textrel && reloc_textrel_prot(obj, false) != 0)
2715                 return (-1);
2716
2717         /* Set the special PLT or GOT entries. */
2718         init_pltgot(obj);
2719
2720         /* Process the PLT relocations. */
2721         if (reloc_plt(obj) == -1)
2722                 return (-1);
2723         /* Relocate the jump slots if we are doing immediate binding. */
2724         if (obj->bind_now || bind_now)
2725                 if (reloc_jmpslots(obj, flags, lockstate) == -1)
2726                         return (-1);
2727
2728         /*
2729          * Process the non-PLT IFUNC relocations.  The relocations are
2730          * processed in two phases, because IFUNC resolvers may
2731          * reference other symbols, which must be readily processed
2732          * before resolvers are called.
2733          */
2734         if (obj->non_plt_gnu_ifunc &&
2735             reloc_non_plt(obj, rtldobj, flags | SYMLOOK_IFUNC, lockstate))
2736                 return (-1);
2737
2738         if (obj->relro_size > 0) {
2739                 if (mprotect(obj->relro_page, obj->relro_size,
2740                     PROT_READ) == -1) {
2741                         _rtld_error("%s: Cannot enforce relro protection: %s",
2742                             obj->path, rtld_strerror(errno));
2743                         return (-1);
2744                 }
2745         }
2746
2747         /*
2748          * Set up the magic number and version in the Obj_Entry.  These
2749          * were checked in the crt1.o from the original ElfKit, so we
2750          * set them for backward compatibility.
2751          */
2752         obj->magic = RTLD_MAGIC;
2753         obj->version = RTLD_VERSION;
2754
2755         return (0);
2756 }
2757
2758 /*
2759  * Relocate newly-loaded shared objects.  The argument is a pointer to
2760  * the Obj_Entry for the first such object.  All objects from the first
2761  * to the end of the list of objects are relocated.  Returns 0 on success,
2762  * or -1 on failure.
2763  */
2764 static int
2765 relocate_objects(Obj_Entry *first, bool bind_now, Obj_Entry *rtldobj,
2766     int flags, RtldLockState *lockstate)
2767 {
2768         Obj_Entry *obj;
2769         int error;
2770
2771         for (error = 0, obj = first;  obj != NULL;
2772             obj = TAILQ_NEXT(obj, next)) {
2773                 if (obj->marker)
2774                         continue;
2775                 error = relocate_object(obj, bind_now, rtldobj, flags,
2776                     lockstate);
2777                 if (error == -1)
2778                         break;
2779         }
2780         return (error);
2781 }
2782
2783 /*
2784  * The handling of R_MACHINE_IRELATIVE relocations and jumpslots
2785  * referencing STT_GNU_IFUNC symbols is postponed till the other
2786  * relocations are done.  The indirect functions specified as
2787  * ifunc are allowed to call other symbols, so we need to have
2788  * objects relocated before asking for resolution from indirects.
2789  *
2790  * The R_MACHINE_IRELATIVE slots are resolved in greedy fashion,
2791  * instead of the usual lazy handling of PLT slots.  It is
2792  * consistent with how GNU does it.
2793  */
2794 static int
2795 resolve_object_ifunc(Obj_Entry *obj, bool bind_now, int flags,
2796     RtldLockState *lockstate)
2797 {
2798         if (obj->irelative && reloc_iresolve(obj, lockstate) == -1)
2799                 return (-1);
2800         if ((obj->bind_now || bind_now) && obj->gnu_ifunc &&
2801             reloc_gnu_ifunc(obj, flags, lockstate) == -1)
2802                 return (-1);
2803         return (0);
2804 }
2805
2806 static int
2807 resolve_objects_ifunc(Obj_Entry *first, bool bind_now, int flags,
2808     RtldLockState *lockstate)
2809 {
2810         Obj_Entry *obj;
2811
2812         for (obj = first; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
2813                 if (obj->marker)
2814                         continue;
2815                 if (resolve_object_ifunc(obj, bind_now, flags, lockstate) == -1)
2816                         return (-1);
2817         }
2818         return (0);
2819 }
2820
2821 static int
2822 initlist_objects_ifunc(Objlist *list, bool bind_now, int flags,
2823     RtldLockState *lockstate)
2824 {
2825         Objlist_Entry *elm;
2826
2827         STAILQ_FOREACH(elm, list, link) {
2828                 if (resolve_object_ifunc(elm->obj, bind_now, flags,
2829                     lockstate) == -1)
2830                         return (-1);
2831         }
2832         return (0);
2833 }
2834
2835 /*
2836  * Cleanup procedure.  It will be called (by the atexit mechanism) just
2837  * before the process exits.
2838  */
2839 static void
2840 rtld_exit(void)
2841 {
2842     RtldLockState lockstate;
2843
2844     wlock_acquire(rtld_bind_lock, &lockstate);
2845     dbg("rtld_exit()");
2846     objlist_call_fini(&list_fini, NULL, &lockstate);
2847     /* No need to remove the items from the list, since we are exiting. */
2848     if (!libmap_disable)
2849         lm_fini();
2850     lock_release(rtld_bind_lock, &lockstate);
2851 }
2852
2853 /*
2854  * Iterate over a search path, translate each element, and invoke the
2855  * callback on the result.
2856  */
2857 static void *
2858 path_enumerate(const char *path, path_enum_proc callback, void *arg)
2859 {
2860     const char *trans;
2861     if (path == NULL)
2862         return (NULL);
2863
2864     path += strspn(path, ":;");
2865     while (*path != '\0') {
2866         size_t len;
2867         char  *res;
2868
2869         len = strcspn(path, ":;");
2870         trans = lm_findn(NULL, path, len);
2871         if (trans)
2872             res = callback(trans, strlen(trans), arg);
2873         else
2874             res = callback(path, len, arg);
2875
2876         if (res != NULL)
2877             return (res);
2878
2879         path += len;
2880         path += strspn(path, ":;");
2881     }
2882
2883     return (NULL);
2884 }
2885
2886 struct try_library_args {
2887     const char  *name;
2888     size_t       namelen;
2889     char        *buffer;
2890     size_t       buflen;
2891 };
2892
2893 static void *
2894 try_library_path(const char *dir, size_t dirlen, void *param)
2895 {
2896     struct try_library_args *arg;
2897
2898     arg = param;
2899     if (*dir == '/' || trust) {
2900         char *pathname;
2901
2902         if (dirlen + 1 + arg->namelen + 1 > arg->buflen)
2903                 return (NULL);
2904
2905         pathname = arg->buffer;
2906         strncpy(pathname, dir, dirlen);
2907         pathname[dirlen] = '/';
2908         strcpy(pathname + dirlen + 1, arg->name);
2909
2910         dbg("  Trying \"%s\"", pathname);
2911         if (access(pathname, F_OK) == 0) {              /* We found it */
2912             pathname = xmalloc(dirlen + 1 + arg->namelen + 1);
2913             strcpy(pathname, arg->buffer);
2914             return (pathname);
2915         }
2916     }
2917     return (NULL);
2918 }
2919
2920 static char *
2921 search_library_path(const char *name, const char *path)
2922 {
2923     char *p;
2924     struct try_library_args arg;
2925
2926     if (path == NULL)
2927         return NULL;
2928
2929     arg.name = name;
2930     arg.namelen = strlen(name);
2931     arg.buffer = xmalloc(PATH_MAX);
2932     arg.buflen = PATH_MAX;
2933
2934     p = path_enumerate(path, try_library_path, &arg);
2935
2936     free(arg.buffer);
2937
2938     return (p);
2939 }
2940
2941
2942 /*
2943  * Finds the library with the given name using the directory descriptors
2944  * listed in the LD_LIBRARY_PATH_FDS environment variable.
2945  *
2946  * Returns a freshly-opened close-on-exec file descriptor for the library,
2947  * or -1 if the library cannot be found.
2948  */
2949 static char *
2950 search_library_pathfds(const char *name, const char *path, int *fdp)
2951 {
2952         char *envcopy, *fdstr, *found, *last_token;
2953         size_t len;
2954         int dirfd, fd;
2955
2956         dbg("%s('%s', '%s', fdp)", __func__, name, path);
2957
2958         /* Don't load from user-specified libdirs into setuid binaries. */
2959         if (!trust)
2960                 return (NULL);
2961
2962         /* We can't do anything if LD_LIBRARY_PATH_FDS isn't set. */
2963         if (path == NULL)
2964                 return (NULL);
2965
2966         /* LD_LIBRARY_PATH_FDS only works with relative paths. */
2967         if (name[0] == '/') {
2968                 dbg("Absolute path (%s) passed to %s", name, __func__);
2969                 return (NULL);
2970         }
2971
2972         /*
2973          * Use strtok_r() to walk the FD:FD:FD list.  This requires a local
2974          * copy of the path, as strtok_r rewrites separator tokens
2975          * with '\0'.
2976          */
2977         found = NULL;
2978         envcopy = xstrdup(path);
2979         for (fdstr = strtok_r(envcopy, ":", &last_token); fdstr != NULL;
2980             fdstr = strtok_r(NULL, ":", &last_token)) {
2981                 dirfd = parse_libdir(fdstr);
2982                 if (dirfd < 0)
2983                         break;
2984                 fd = __sys_openat(dirfd, name, O_RDONLY | O_CLOEXEC | O_VERIFY);
2985                 if (fd >= 0) {
2986                         *fdp = fd;
2987                         len = strlen(fdstr) + strlen(name) + 3;
2988                         found = xmalloc(len);
2989                         if (rtld_snprintf(found, len, "#%d/%s", dirfd, name) < 0) {
2990                                 _rtld_error("error generating '%d/%s'",
2991                                     dirfd, name);
2992                                 rtld_die();
2993                         }
2994                         dbg("open('%s') => %d", found, fd);
2995                         break;
2996                 }
2997         }
2998         free(envcopy);
2999
3000         return (found);
3001 }
3002
3003
3004 int
3005 dlclose(void *handle)
3006 {
3007     Obj_Entry *root;
3008     RtldLockState lockstate;
3009
3010     wlock_acquire(rtld_bind_lock, &lockstate);
3011     root = dlcheck(handle);
3012     if (root == NULL) {
3013         lock_release(rtld_bind_lock, &lockstate);
3014         return -1;
3015     }
3016     LD_UTRACE(UTRACE_DLCLOSE_START, handle, NULL, 0, root->dl_refcount,
3017         root->path);
3018
3019     /* Unreference the object and its dependencies. */
3020     root->dl_refcount--;
3021
3022     if (root->refcount == 1) {
3023         /*
3024          * The object will be no longer referenced, so we must unload it.
3025          * First, call the fini functions.
3026          */
3027         objlist_call_fini(&list_fini, root, &lockstate);
3028
3029         unref_dag(root);
3030
3031         /* Finish cleaning up the newly-unreferenced objects. */
3032         GDB_STATE(RT_DELETE,&root->linkmap);
3033         unload_object(root);
3034         GDB_STATE(RT_CONSISTENT,NULL);
3035     } else
3036         unref_dag(root);
3037
3038     LD_UTRACE(UTRACE_DLCLOSE_STOP, handle, NULL, 0, 0, NULL);
3039     lock_release(rtld_bind_lock, &lockstate);
3040     return 0;
3041 }
3042
3043 char *
3044 dlerror(void)
3045 {
3046     char *msg = error_message;
3047     error_message = NULL;
3048     return msg;
3049 }
3050
3051 /*
3052  * This function is deprecated and has no effect.
3053  */
3054 void
3055 dllockinit(void *context,
3056            void *(*lock_create)(void *context),
3057            void (*rlock_acquire)(void *lock),
3058            void (*wlock_acquire)(void *lock),
3059            void (*lock_release)(void *lock),
3060            void (*lock_destroy)(void *lock),
3061            void (*context_destroy)(void *context))
3062 {
3063     static void *cur_context;
3064     static void (*cur_context_destroy)(void *);
3065
3066     /* Just destroy the context from the previous call, if necessary. */
3067     if (cur_context_destroy != NULL)
3068         cur_context_destroy(cur_context);
3069     cur_context = context;
3070     cur_context_destroy = context_destroy;
3071 }
3072
3073 void *
3074 dlopen(const char *name, int mode)
3075 {
3076
3077         return (rtld_dlopen(name, -1, mode));
3078 }
3079
3080 void *
3081 fdlopen(int fd, int mode)
3082 {
3083
3084         return (rtld_dlopen(NULL, fd, mode));
3085 }
3086
3087 static void *
3088 rtld_dlopen(const char *name, int fd, int mode)
3089 {
3090     RtldLockState lockstate;
3091     int lo_flags;
3092
3093     LD_UTRACE(UTRACE_DLOPEN_START, NULL, NULL, 0, mode, name);
3094     ld_tracing = (mode & RTLD_TRACE) == 0 ? NULL : "1";
3095     if (ld_tracing != NULL) {
3096         rlock_acquire(rtld_bind_lock, &lockstate);
3097         if (sigsetjmp(lockstate.env, 0) != 0)
3098             lock_upgrade(rtld_bind_lock, &lockstate);
3099         environ = (char **)*get_program_var_addr("environ", &lockstate);
3100         lock_release(rtld_bind_lock, &lockstate);
3101     }
3102     lo_flags = RTLD_LO_DLOPEN;
3103     if (mode & RTLD_NODELETE)
3104             lo_flags |= RTLD_LO_NODELETE;
3105     if (mode & RTLD_NOLOAD)
3106             lo_flags |= RTLD_LO_NOLOAD;
3107     if (ld_tracing != NULL)
3108             lo_flags |= RTLD_LO_TRACE;
3109
3110     return (dlopen_object(name, fd, obj_main, lo_flags,
3111       mode & (RTLD_MODEMASK | RTLD_GLOBAL), NULL));
3112 }
3113
3114 static void
3115 dlopen_cleanup(Obj_Entry *obj)
3116 {
3117
3118         obj->dl_refcount--;
3119         unref_dag(obj);
3120         if (obj->refcount == 0)
3121                 unload_object(obj);
3122 }
3123
3124 static Obj_Entry *
3125 dlopen_object(const char *name, int fd, Obj_Entry *refobj, int lo_flags,
3126     int mode, RtldLockState *lockstate)
3127 {
3128     Obj_Entry *old_obj_tail;
3129     Obj_Entry *obj;
3130     Objlist initlist;
3131     RtldLockState mlockstate;
3132     int result;
3133
3134     objlist_init(&initlist);
3135
3136     if (lockstate == NULL && !(lo_flags & RTLD_LO_EARLY)) {
3137         wlock_acquire(rtld_bind_lock, &mlockstate);
3138         lockstate = &mlockstate;
3139     }
3140     GDB_STATE(RT_ADD,NULL);
3141
3142     old_obj_tail = globallist_curr(TAILQ_LAST(&obj_list, obj_entry_q));
3143     obj = NULL;
3144     if (name == NULL && fd == -1) {
3145         obj = obj_main;
3146         obj->refcount++;
3147     } else {
3148         obj = load_object(name, fd, refobj, lo_flags);
3149     }
3150
3151     if (obj) {
3152         obj->dl_refcount++;
3153         if (mode & RTLD_GLOBAL && objlist_find(&list_global, obj) == NULL)
3154             objlist_push_tail(&list_global, obj);
3155         if (globallist_next(old_obj_tail) != NULL) {
3156             /* We loaded something new. */
3157             assert(globallist_next(old_obj_tail) == obj);
3158             result = load_needed_objects(obj,
3159                 lo_flags & (RTLD_LO_DLOPEN | RTLD_LO_EARLY));
3160             init_dag(obj);
3161             ref_dag(obj);
3162             if (result != -1)
3163                 result = rtld_verify_versions(&obj->dagmembers);
3164             if (result != -1 && ld_tracing)
3165                 goto trace;
3166             if (result == -1 || relocate_object_dag(obj,
3167               (mode & RTLD_MODEMASK) == RTLD_NOW, &obj_rtld,
3168               (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
3169               lockstate) == -1) {
3170                 dlopen_cleanup(obj);
3171                 obj = NULL;
3172             } else if (lo_flags & RTLD_LO_EARLY) {
3173                 /*
3174                  * Do not call the init functions for early loaded
3175                  * filtees.  The image is still not initialized enough
3176                  * for them to work.
3177                  *
3178                  * Our object is found by the global object list and
3179                  * will be ordered among all init calls done right
3180                  * before transferring control to main.
3181                  */
3182             } else {
3183                 /* Make list of init functions to call. */
3184                 initlist_add_objects(obj, obj, &initlist);
3185             }
3186             /*
3187              * Process all no_delete or global objects here, given
3188              * them own DAGs to prevent their dependencies from being
3189              * unloaded.  This has to be done after we have loaded all
3190              * of the dependencies, so that we do not miss any.
3191              */
3192             if (obj != NULL)
3193                 process_z(obj);
3194         } else {
3195             /*
3196              * Bump the reference counts for objects on this DAG.  If
3197              * this is the first dlopen() call for the object that was
3198              * already loaded as a dependency, initialize the dag
3199              * starting at it.
3200              */
3201             init_dag(obj);
3202             ref_dag(obj);
3203
3204             if ((lo_flags & RTLD_LO_TRACE) != 0)
3205                 goto trace;
3206         }
3207         if (obj != NULL && ((lo_flags & RTLD_LO_NODELETE) != 0 ||
3208           obj->z_nodelete) && !obj->ref_nodel) {
3209             dbg("obj %s nodelete", obj->path);
3210             ref_dag(obj);
3211             obj->z_nodelete = obj->ref_nodel = true;
3212         }
3213     }
3214
3215     LD_UTRACE(UTRACE_DLOPEN_STOP, obj, NULL, 0, obj ? obj->dl_refcount : 0,
3216         name);
3217     GDB_STATE(RT_CONSISTENT,obj ? &obj->linkmap : NULL);
3218
3219     if (!(lo_flags & RTLD_LO_EARLY)) {
3220         map_stacks_exec(lockstate);
3221     }
3222
3223     if (initlist_objects_ifunc(&initlist, (mode & RTLD_MODEMASK) == RTLD_NOW,
3224       (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
3225       lockstate) == -1) {
3226         objlist_clear(&initlist);
3227         dlopen_cleanup(obj);
3228         if (lockstate == &mlockstate)
3229             lock_release(rtld_bind_lock, lockstate);
3230         return (NULL);
3231     }
3232
3233     if (!(lo_flags & RTLD_LO_EARLY)) {
3234         /* Call the init functions. */
3235         objlist_call_init(&initlist, lockstate);
3236     }
3237     objlist_clear(&initlist);
3238     if (lockstate == &mlockstate)
3239         lock_release(rtld_bind_lock, lockstate);
3240     return obj;
3241 trace:
3242     trace_loaded_objects(obj);
3243     if (lockstate == &mlockstate)
3244         lock_release(rtld_bind_lock, lockstate);
3245     exit(0);
3246 }
3247
3248 static void *
3249 do_dlsym(void *handle, const char *name, void *retaddr, const Ver_Entry *ve,
3250     int flags)
3251 {
3252     DoneList donelist;
3253     const Obj_Entry *obj, *defobj;
3254     const Elf_Sym *def;
3255     SymLook req;
3256     RtldLockState lockstate;
3257     tls_index ti;
3258     void *sym;
3259     int res;
3260
3261     def = NULL;
3262     defobj = NULL;
3263     symlook_init(&req, name);
3264     req.ventry = ve;
3265     req.flags = flags | SYMLOOK_IN_PLT;
3266     req.lockstate = &lockstate;
3267
3268     LD_UTRACE(UTRACE_DLSYM_START, handle, NULL, 0, 0, name);
3269     rlock_acquire(rtld_bind_lock, &lockstate);
3270     if (sigsetjmp(lockstate.env, 0) != 0)
3271             lock_upgrade(rtld_bind_lock, &lockstate);
3272     if (handle == NULL || handle == RTLD_NEXT ||
3273         handle == RTLD_DEFAULT || handle == RTLD_SELF) {
3274
3275         if ((obj = obj_from_addr(retaddr)) == NULL) {
3276             _rtld_error("Cannot determine caller's shared object");
3277             lock_release(rtld_bind_lock, &lockstate);
3278             LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3279             return NULL;
3280         }
3281         if (handle == NULL) {   /* Just the caller's shared object. */
3282             res = symlook_obj(&req, obj);
3283             if (res == 0) {
3284                 def = req.sym_out;
3285                 defobj = req.defobj_out;
3286             }
3287         } else if (handle == RTLD_NEXT || /* Objects after caller's */
3288                    handle == RTLD_SELF) { /* ... caller included */
3289             if (handle == RTLD_NEXT)
3290                 obj = globallist_next(obj);
3291             for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
3292                 if (obj->marker)
3293                     continue;
3294                 res = symlook_obj(&req, obj);
3295                 if (res == 0) {
3296                     if (def == NULL ||
3297                       ELF_ST_BIND(req.sym_out->st_info) != STB_WEAK) {
3298                         def = req.sym_out;
3299                         defobj = req.defobj_out;
3300                         if (ELF_ST_BIND(def->st_info) != STB_WEAK)
3301                             break;
3302                     }
3303                 }
3304             }
3305             /*
3306              * Search the dynamic linker itself, and possibly resolve the
3307              * symbol from there.  This is how the application links to
3308              * dynamic linker services such as dlopen.
3309              */
3310             if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
3311                 res = symlook_obj(&req, &obj_rtld);
3312                 if (res == 0) {
3313                     def = req.sym_out;
3314                     defobj = req.defobj_out;
3315                 }
3316             }
3317         } else {
3318             assert(handle == RTLD_DEFAULT);
3319             res = symlook_default(&req, obj);
3320             if (res == 0) {
3321                 defobj = req.defobj_out;
3322                 def = req.sym_out;
3323             }
3324         }
3325     } else {
3326         if ((obj = dlcheck(handle)) == NULL) {
3327             lock_release(rtld_bind_lock, &lockstate);
3328             LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3329             return NULL;
3330         }
3331
3332         donelist_init(&donelist);
3333         if (obj->mainprog) {
3334             /* Handle obtained by dlopen(NULL, ...) implies global scope. */
3335             res = symlook_global(&req, &donelist);
3336             if (res == 0) {
3337                 def = req.sym_out;
3338                 defobj = req.defobj_out;
3339             }
3340             /*
3341              * Search the dynamic linker itself, and possibly resolve the
3342              * symbol from there.  This is how the application links to
3343              * dynamic linker services such as dlopen.
3344              */
3345             if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
3346                 res = symlook_obj(&req, &obj_rtld);
3347                 if (res == 0) {
3348                     def = req.sym_out;
3349                     defobj = req.defobj_out;
3350                 }
3351             }
3352         }
3353         else {
3354             /* Search the whole DAG rooted at the given object. */
3355             res = symlook_list(&req, &obj->dagmembers, &donelist);
3356             if (res == 0) {
3357                 def = req.sym_out;
3358                 defobj = req.defobj_out;
3359             }
3360         }
3361     }
3362
3363     if (def != NULL) {
3364         lock_release(rtld_bind_lock, &lockstate);
3365
3366         /*
3367          * The value required by the caller is derived from the value
3368          * of the symbol. this is simply the relocated value of the
3369          * symbol.
3370          */
3371         if (ELF_ST_TYPE(def->st_info) == STT_FUNC)
3372             sym = make_function_pointer(def, defobj);
3373         else if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
3374             sym = rtld_resolve_ifunc(defobj, def);
3375         else if (ELF_ST_TYPE(def->st_info) == STT_TLS) {
3376             ti.ti_module = defobj->tlsindex;
3377             ti.ti_offset = def->st_value;
3378             sym = __tls_get_addr(&ti);
3379         } else
3380             sym = defobj->relocbase + def->st_value;
3381         LD_UTRACE(UTRACE_DLSYM_STOP, handle, sym, 0, 0, name);
3382         return (sym);
3383     }
3384
3385     _rtld_error("Undefined symbol \"%s\"", name);
3386     lock_release(rtld_bind_lock, &lockstate);
3387     LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3388     return NULL;
3389 }
3390
3391 void *
3392 dlsym(void *handle, const char *name)
3393 {
3394         return do_dlsym(handle, name, __builtin_return_address(0), NULL,
3395             SYMLOOK_DLSYM);
3396 }
3397
3398 dlfunc_t
3399 dlfunc(void *handle, const char *name)
3400 {
3401         union {
3402                 void *d;
3403                 dlfunc_t f;
3404         } rv;
3405
3406         rv.d = do_dlsym(handle, name, __builtin_return_address(0), NULL,
3407             SYMLOOK_DLSYM);
3408         return (rv.f);
3409 }
3410
3411 void *
3412 dlvsym(void *handle, const char *name, const char *version)
3413 {
3414         Ver_Entry ventry;
3415
3416         ventry.name = version;
3417         ventry.file = NULL;
3418         ventry.hash = elf_hash(version);
3419         ventry.flags= 0;
3420         return do_dlsym(handle, name, __builtin_return_address(0), &ventry,
3421             SYMLOOK_DLSYM);
3422 }
3423
3424 int
3425 _rtld_addr_phdr(const void *addr, struct dl_phdr_info *phdr_info)
3426 {
3427     const Obj_Entry *obj;
3428     RtldLockState lockstate;
3429
3430     rlock_acquire(rtld_bind_lock, &lockstate);
3431     obj = obj_from_addr(addr);
3432     if (obj == NULL) {
3433         _rtld_error("No shared object contains address");
3434         lock_release(rtld_bind_lock, &lockstate);
3435         return (0);
3436     }
3437     rtld_fill_dl_phdr_info(obj, phdr_info);
3438     lock_release(rtld_bind_lock, &lockstate);
3439     return (1);
3440 }
3441
3442 int
3443 dladdr(const void *addr, Dl_info *info)
3444 {
3445     const Obj_Entry *obj;
3446     const Elf_Sym *def;
3447     void *symbol_addr;
3448     unsigned long symoffset;
3449     RtldLockState lockstate;
3450
3451     rlock_acquire(rtld_bind_lock, &lockstate);
3452     obj = obj_from_addr(addr);
3453     if (obj == NULL) {
3454         _rtld_error("No shared object contains address");
3455         lock_release(rtld_bind_lock, &lockstate);
3456         return 0;
3457     }
3458     info->dli_fname = obj->path;
3459     info->dli_fbase = obj->mapbase;
3460     info->dli_saddr = (void *)0;
3461     info->dli_sname = NULL;
3462
3463     /*
3464      * Walk the symbol list looking for the symbol whose address is
3465      * closest to the address sent in.
3466      */
3467     for (symoffset = 0; symoffset < obj->dynsymcount; symoffset++) {
3468         def = obj->symtab + symoffset;
3469
3470         /*
3471          * For skip the symbol if st_shndx is either SHN_UNDEF or
3472          * SHN_COMMON.
3473          */
3474         if (def->st_shndx == SHN_UNDEF || def->st_shndx == SHN_COMMON)
3475             continue;
3476
3477         /*
3478          * If the symbol is greater than the specified address, or if it
3479          * is further away from addr than the current nearest symbol,
3480          * then reject it.
3481          */
3482         symbol_addr = obj->relocbase + def->st_value;
3483         if (symbol_addr > addr || symbol_addr < info->dli_saddr)
3484             continue;
3485
3486         /* Update our idea of the nearest symbol. */
3487         info->dli_sname = obj->strtab + def->st_name;
3488         info->dli_saddr = symbol_addr;
3489
3490         /* Exact match? */
3491         if (info->dli_saddr == addr)
3492             break;
3493     }
3494     lock_release(rtld_bind_lock, &lockstate);
3495     return 1;
3496 }
3497
3498 int
3499 dlinfo(void *handle, int request, void *p)
3500 {
3501     const Obj_Entry *obj;
3502     RtldLockState lockstate;
3503     int error;
3504
3505     rlock_acquire(rtld_bind_lock, &lockstate);
3506
3507     if (handle == NULL || handle == RTLD_SELF) {
3508         void *retaddr;
3509
3510         retaddr = __builtin_return_address(0);  /* __GNUC__ only */
3511         if ((obj = obj_from_addr(retaddr)) == NULL)
3512             _rtld_error("Cannot determine caller's shared object");
3513     } else
3514         obj = dlcheck(handle);
3515
3516     if (obj == NULL) {
3517         lock_release(rtld_bind_lock, &lockstate);
3518         return (-1);
3519     }
3520
3521     error = 0;
3522     switch (request) {
3523     case RTLD_DI_LINKMAP:
3524         *((struct link_map const **)p) = &obj->linkmap;
3525         break;
3526     case RTLD_DI_ORIGIN:
3527         error = rtld_dirname(obj->path, p);
3528         break;
3529
3530     case RTLD_DI_SERINFOSIZE:
3531     case RTLD_DI_SERINFO:
3532         error = do_search_info(obj, request, (struct dl_serinfo *)p);
3533         break;
3534
3535     default:
3536         _rtld_error("Invalid request %d passed to dlinfo()", request);
3537         error = -1;
3538     }
3539
3540     lock_release(rtld_bind_lock, &lockstate);
3541
3542     return (error);
3543 }
3544
3545 static void
3546 rtld_fill_dl_phdr_info(const Obj_Entry *obj, struct dl_phdr_info *phdr_info)
3547 {
3548
3549         phdr_info->dlpi_addr = (Elf_Addr)obj->relocbase;
3550         phdr_info->dlpi_name = obj->path;
3551         phdr_info->dlpi_phdr = obj->phdr;
3552         phdr_info->dlpi_phnum = obj->phsize / sizeof(obj->phdr[0]);
3553         phdr_info->dlpi_tls_modid = obj->tlsindex;
3554         phdr_info->dlpi_tls_data = obj->tlsinit;
3555         phdr_info->dlpi_adds = obj_loads;
3556         phdr_info->dlpi_subs = obj_loads - obj_count;
3557 }
3558
3559 int
3560 dl_iterate_phdr(__dl_iterate_hdr_callback callback, void *param)
3561 {
3562         struct dl_phdr_info phdr_info;
3563         Obj_Entry *obj, marker;
3564         RtldLockState bind_lockstate, phdr_lockstate;
3565         int error;
3566
3567         bzero(&marker, sizeof(marker));
3568         marker.marker = true;
3569         error = 0;
3570
3571         wlock_acquire(rtld_phdr_lock, &phdr_lockstate);
3572         rlock_acquire(rtld_bind_lock, &bind_lockstate);
3573         for (obj = globallist_curr(TAILQ_FIRST(&obj_list)); obj != NULL;) {
3574                 TAILQ_INSERT_AFTER(&obj_list, obj, &marker, next);
3575                 rtld_fill_dl_phdr_info(obj, &phdr_info);
3576                 lock_release(rtld_bind_lock, &bind_lockstate);
3577
3578                 error = callback(&phdr_info, sizeof phdr_info, param);
3579
3580                 rlock_acquire(rtld_bind_lock, &bind_lockstate);
3581                 obj = globallist_next(&marker);
3582                 TAILQ_REMOVE(&obj_list, &marker, next);
3583                 if (error != 0) {
3584                         lock_release(rtld_bind_lock, &bind_lockstate);
3585                         lock_release(rtld_phdr_lock, &phdr_lockstate);
3586                         return (error);
3587                 }
3588         }
3589
3590         if (error == 0) {
3591                 rtld_fill_dl_phdr_info(&obj_rtld, &phdr_info);
3592                 lock_release(rtld_bind_lock, &bind_lockstate);
3593                 error = callback(&phdr_info, sizeof(phdr_info), param);
3594         }
3595         lock_release(rtld_phdr_lock, &phdr_lockstate);
3596         return (error);
3597 }
3598
3599 static void *
3600 fill_search_info(const char *dir, size_t dirlen, void *param)
3601 {
3602     struct fill_search_info_args *arg;
3603
3604     arg = param;
3605
3606     if (arg->request == RTLD_DI_SERINFOSIZE) {
3607         arg->serinfo->dls_cnt ++;
3608         arg->serinfo->dls_size += sizeof(struct dl_serpath) + dirlen + 1;
3609     } else {
3610         struct dl_serpath *s_entry;
3611
3612         s_entry = arg->serpath;
3613         s_entry->dls_name  = arg->strspace;
3614         s_entry->dls_flags = arg->flags;
3615
3616         strncpy(arg->strspace, dir, dirlen);
3617         arg->strspace[dirlen] = '\0';
3618
3619         arg->strspace += dirlen + 1;
3620         arg->serpath++;
3621     }
3622
3623     return (NULL);
3624 }
3625
3626 static int
3627 do_search_info(const Obj_Entry *obj, int request, struct dl_serinfo *info)
3628 {
3629     struct dl_serinfo _info;
3630     struct fill_search_info_args args;
3631
3632     args.request = RTLD_DI_SERINFOSIZE;
3633     args.serinfo = &_info;
3634
3635     _info.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
3636     _info.dls_cnt  = 0;
3637
3638     path_enumerate(obj->rpath, fill_search_info, &args);
3639     path_enumerate(ld_library_path, fill_search_info, &args);
3640     path_enumerate(obj->runpath, fill_search_info, &args);
3641     path_enumerate(gethints(obj->z_nodeflib), fill_search_info, &args);
3642     if (!obj->z_nodeflib)
3643       path_enumerate(ld_standard_library_path, fill_search_info, &args);
3644
3645
3646     if (request == RTLD_DI_SERINFOSIZE) {
3647         info->dls_size = _info.dls_size;
3648         info->dls_cnt = _info.dls_cnt;
3649         return (0);
3650     }
3651
3652     if (info->dls_cnt != _info.dls_cnt || info->dls_size != _info.dls_size) {
3653         _rtld_error("Uninitialized Dl_serinfo struct passed to dlinfo()");
3654         return (-1);
3655     }
3656
3657     args.request  = RTLD_DI_SERINFO;
3658     args.serinfo  = info;
3659     args.serpath  = &info->dls_serpath[0];
3660     args.strspace = (char *)&info->dls_serpath[_info.dls_cnt];
3661
3662     args.flags = LA_SER_RUNPATH;
3663     if (path_enumerate(obj->rpath, fill_search_info, &args) != NULL)
3664         return (-1);
3665
3666     args.flags = LA_SER_LIBPATH;
3667     if (path_enumerate(ld_library_path, fill_search_info, &args) != NULL)
3668         return (-1);
3669
3670     args.flags = LA_SER_RUNPATH;
3671     if (path_enumerate(obj->runpath, fill_search_info, &args) != NULL)
3672         return (-1);
3673
3674     args.flags = LA_SER_CONFIG;
3675     if (path_enumerate(gethints(obj->z_nodeflib), fill_search_info, &args)
3676       != NULL)
3677         return (-1);
3678
3679     args.flags = LA_SER_DEFAULT;
3680     if (!obj->z_nodeflib &&
3681       path_enumerate(ld_standard_library_path, fill_search_info, &args) != NULL)
3682         return (-1);
3683     return (0);
3684 }
3685
3686 static int
3687 rtld_dirname(const char *path, char *bname)
3688 {
3689     const char *endp;
3690
3691     /* Empty or NULL string gets treated as "." */
3692     if (path == NULL || *path == '\0') {
3693         bname[0] = '.';
3694         bname[1] = '\0';
3695         return (0);
3696     }
3697
3698     /* Strip trailing slashes */
3699     endp = path + strlen(path) - 1;
3700     while (endp > path && *endp == '/')
3701         endp--;
3702
3703     /* Find the start of the dir */
3704     while (endp > path && *endp != '/')
3705         endp--;
3706
3707     /* Either the dir is "/" or there are no slashes */
3708     if (endp == path) {
3709         bname[0] = *endp == '/' ? '/' : '.';
3710         bname[1] = '\0';
3711         return (0);
3712     } else {
3713         do {
3714             endp--;
3715         } while (endp > path && *endp == '/');
3716     }
3717
3718     if (endp - path + 2 > PATH_MAX)
3719     {
3720         _rtld_error("Filename is too long: %s", path);
3721         return(-1);
3722     }
3723
3724     strncpy(bname, path, endp - path + 1);
3725     bname[endp - path + 1] = '\0';
3726     return (0);
3727 }
3728
3729 static int
3730 rtld_dirname_abs(const char *path, char *base)
3731 {
3732         char *last;
3733
3734         if (realpath(path, base) == NULL)
3735                 return (-1);
3736         dbg("%s -> %s", path, base);
3737         last = strrchr(base, '/');
3738         if (last == NULL)
3739                 return (-1);
3740         if (last != base)
3741                 *last = '\0';
3742         return (0);
3743 }
3744
3745 static void
3746 linkmap_add(Obj_Entry *obj)
3747 {
3748     struct link_map *l = &obj->linkmap;
3749     struct link_map *prev;
3750
3751     obj->linkmap.l_name = obj->path;
3752     obj->linkmap.l_addr = obj->mapbase;
3753     obj->linkmap.l_ld = obj->dynamic;
3754 #ifdef __mips__
3755     /* GDB needs load offset on MIPS to use the symbols */
3756     obj->linkmap.l_offs = obj->relocbase;
3757 #endif
3758
3759     if (r_debug.r_map == NULL) {
3760         r_debug.r_map = l;
3761         return;
3762     }
3763
3764     /*
3765      * Scan to the end of the list, but not past the entry for the
3766      * dynamic linker, which we want to keep at the very end.
3767      */
3768     for (prev = r_debug.r_map;
3769       prev->l_next != NULL && prev->l_next != &obj_rtld.linkmap;
3770       prev = prev->l_next)
3771         ;
3772
3773     /* Link in the new entry. */
3774     l->l_prev = prev;
3775     l->l_next = prev->l_next;
3776     if (l->l_next != NULL)
3777         l->l_next->l_prev = l;
3778     prev->l_next = l;
3779 }
3780
3781 static void
3782 linkmap_delete(Obj_Entry *obj)
3783 {
3784     struct link_map *l = &obj->linkmap;
3785
3786     if (l->l_prev == NULL) {
3787         if ((r_debug.r_map = l->l_next) != NULL)
3788             l->l_next->l_prev = NULL;
3789         return;
3790     }
3791
3792     if ((l->l_prev->l_next = l->l_next) != NULL)
3793         l->l_next->l_prev = l->l_prev;
3794 }
3795
3796 /*
3797  * Function for the debugger to set a breakpoint on to gain control.
3798  *
3799  * The two parameters allow the debugger to easily find and determine
3800  * what the runtime loader is doing and to whom it is doing it.
3801  *
3802  * When the loadhook trap is hit (r_debug_state, set at program
3803  * initialization), the arguments can be found on the stack:
3804  *
3805  *  +8   struct link_map *m
3806  *  +4   struct r_debug  *rd
3807  *  +0   RetAddr
3808  */
3809 void
3810 r_debug_state(struct r_debug* rd, struct link_map *m)
3811 {
3812     /*
3813      * The following is a hack to force the compiler to emit calls to
3814      * this function, even when optimizing.  If the function is empty,
3815      * the compiler is not obliged to emit any code for calls to it,
3816      * even when marked __noinline.  However, gdb depends on those
3817      * calls being made.
3818      */
3819     __compiler_membar();
3820 }
3821
3822 /*
3823  * A function called after init routines have completed. This can be used to
3824  * break before a program's entry routine is called, and can be used when
3825  * main is not available in the symbol table.
3826  */
3827 void
3828 _r_debug_postinit(struct link_map *m)
3829 {
3830
3831         /* See r_debug_state(). */
3832         __compiler_membar();
3833 }
3834
3835 /*
3836  * Get address of the pointer variable in the main program.
3837  * Prefer non-weak symbol over the weak one.
3838  */
3839 static const void **
3840 get_program_var_addr(const char *name, RtldLockState *lockstate)
3841 {
3842     SymLook req;
3843     DoneList donelist;
3844
3845     symlook_init(&req, name);
3846     req.lockstate = lockstate;
3847     donelist_init(&donelist);
3848     if (symlook_global(&req, &donelist) != 0)
3849         return (NULL);
3850     if (ELF_ST_TYPE(req.sym_out->st_info) == STT_FUNC)
3851         return ((const void **)make_function_pointer(req.sym_out,
3852           req.defobj_out));
3853     else if (ELF_ST_TYPE(req.sym_out->st_info) == STT_GNU_IFUNC)
3854         return ((const void **)rtld_resolve_ifunc(req.defobj_out, req.sym_out));
3855     else
3856         return ((const void **)(req.defobj_out->relocbase +
3857           req.sym_out->st_value));
3858 }
3859
3860 /*
3861  * Set a pointer variable in the main program to the given value.  This
3862  * is used to set key variables such as "environ" before any of the
3863  * init functions are called.
3864  */
3865 static void
3866 set_program_var(const char *name, const void *value)
3867 {
3868     const void **addr;
3869
3870     if ((addr = get_program_var_addr(name, NULL)) != NULL) {
3871         dbg("\"%s\": *%p <-- %p", name, addr, value);
3872         *addr = value;
3873     }
3874 }
3875
3876 /*
3877  * Search the global objects, including dependencies and main object,
3878  * for the given symbol.
3879  */
3880 static int
3881 symlook_global(SymLook *req, DoneList *donelist)
3882 {
3883     SymLook req1;
3884     const Objlist_Entry *elm;
3885     int res;
3886
3887     symlook_init_from_req(&req1, req);
3888
3889     /* Search all objects loaded at program start up. */
3890     if (req->defobj_out == NULL ||
3891       ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
3892         res = symlook_list(&req1, &list_main, donelist);
3893         if (res == 0 && (req->defobj_out == NULL ||
3894           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3895             req->sym_out = req1.sym_out;
3896             req->defobj_out = req1.defobj_out;
3897             assert(req->defobj_out != NULL);
3898         }
3899     }
3900
3901     /* Search all DAGs whose roots are RTLD_GLOBAL objects. */
3902     STAILQ_FOREACH(elm, &list_global, link) {
3903         if (req->defobj_out != NULL &&
3904           ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
3905             break;
3906         res = symlook_list(&req1, &elm->obj->dagmembers, donelist);
3907         if (res == 0 && (req->defobj_out == NULL ||
3908           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3909             req->sym_out = req1.sym_out;
3910             req->defobj_out = req1.defobj_out;
3911             assert(req->defobj_out != NULL);
3912         }
3913     }
3914
3915     return (req->sym_out != NULL ? 0 : ESRCH);
3916 }
3917
3918 /*
3919  * Given a symbol name in a referencing object, find the corresponding
3920  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
3921  * no definition was found.  Returns a pointer to the Obj_Entry of the
3922  * defining object via the reference parameter DEFOBJ_OUT.
3923  */
3924 static int
3925 symlook_default(SymLook *req, const Obj_Entry *refobj)
3926 {
3927     DoneList donelist;
3928     const Objlist_Entry *elm;
3929     SymLook req1;
3930     int res;
3931
3932     donelist_init(&donelist);
3933     symlook_init_from_req(&req1, req);
3934
3935     /* Look first in the referencing object if linked symbolically. */
3936     if (refobj->symbolic && !donelist_check(&donelist, refobj)) {
3937         res = symlook_obj(&req1, refobj);
3938         if (res == 0) {
3939             req->sym_out = req1.sym_out;
3940             req->defobj_out = req1.defobj_out;
3941             assert(req->defobj_out != NULL);
3942         }
3943     }
3944
3945     symlook_global(req, &donelist);
3946
3947     /* Search all dlopened DAGs containing the referencing object. */
3948     STAILQ_FOREACH(elm, &refobj->dldags, link) {
3949         if (req->sym_out != NULL &&
3950           ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
3951             break;
3952         res = symlook_list(&req1, &elm->obj->dagmembers, &donelist);
3953         if (res == 0 && (req->sym_out == NULL ||
3954           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
3955             req->sym_out = req1.sym_out;
3956             req->defobj_out = req1.defobj_out;
3957             assert(req->defobj_out != NULL);
3958         }
3959     }
3960
3961     /*
3962      * Search the dynamic linker itself, and possibly resolve the
3963      * symbol from there.  This is how the application links to
3964      * dynamic linker services such as dlopen.
3965      */
3966     if (req->sym_out == NULL ||
3967       ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
3968         res = symlook_obj(&req1, &obj_rtld);
3969         if (res == 0) {
3970             req->sym_out = req1.sym_out;
3971             req->defobj_out = req1.defobj_out;
3972             assert(req->defobj_out != NULL);
3973         }
3974     }
3975
3976     return (req->sym_out != NULL ? 0 : ESRCH);
3977 }
3978
3979 static int
3980 symlook_list(SymLook *req, const Objlist *objlist, DoneList *dlp)
3981 {
3982     const Elf_Sym *def;
3983     const Obj_Entry *defobj;
3984     const Objlist_Entry *elm;
3985     SymLook req1;
3986     int res;
3987
3988     def = NULL;
3989     defobj = NULL;
3990     STAILQ_FOREACH(elm, objlist, link) {
3991         if (donelist_check(dlp, elm->obj))
3992             continue;
3993         symlook_init_from_req(&req1, req);
3994         if ((res = symlook_obj(&req1, elm->obj)) == 0) {
3995             if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
3996                 def = req1.sym_out;
3997                 defobj = req1.defobj_out;
3998                 if (ELF_ST_BIND(def->st_info) != STB_WEAK)
3999                     break;
4000             }
4001         }
4002     }
4003     if (def != NULL) {
4004         req->sym_out = def;
4005         req->defobj_out = defobj;
4006         return (0);
4007     }
4008     return (ESRCH);
4009 }
4010
4011 /*
4012  * Search the chain of DAGS cointed to by the given Needed_Entry
4013  * for a symbol of the given name.  Each DAG is scanned completely
4014  * before advancing to the next one.  Returns a pointer to the symbol,
4015  * or NULL if no definition was found.
4016  */
4017 static int
4018 symlook_needed(SymLook *req, const Needed_Entry *needed, DoneList *dlp)
4019 {
4020     const Elf_Sym *def;
4021     const Needed_Entry *n;
4022     const Obj_Entry *defobj;
4023     SymLook req1;
4024     int res;
4025
4026     def = NULL;
4027     defobj = NULL;
4028     symlook_init_from_req(&req1, req);
4029     for (n = needed; n != NULL; n = n->next) {
4030         if (n->obj == NULL ||
4031             (res = symlook_list(&req1, &n->obj->dagmembers, dlp)) != 0)
4032             continue;
4033         if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
4034             def = req1.sym_out;
4035             defobj = req1.defobj_out;
4036             if (ELF_ST_BIND(def->st_info) != STB_WEAK)
4037                 break;
4038         }
4039     }
4040     if (def != NULL) {
4041         req->sym_out = def;
4042         req->defobj_out = defobj;
4043         return (0);
4044     }
4045     return (ESRCH);
4046 }
4047
4048 /*
4049  * Search the symbol table of a single shared object for a symbol of
4050  * the given name and version, if requested.  Returns a pointer to the
4051  * symbol, or NULL if no definition was found.  If the object is
4052  * filter, return filtered symbol from filtee.
4053  *
4054  * The symbol's hash value is passed in for efficiency reasons; that
4055  * eliminates many recomputations of the hash value.
4056  */
4057 int
4058 symlook_obj(SymLook *req, const Obj_Entry *obj)
4059 {
4060     DoneList donelist;
4061     SymLook req1;
4062     int flags, res, mres;
4063
4064     /*
4065      * If there is at least one valid hash at this point, we prefer to
4066      * use the faster GNU version if available.
4067      */
4068     if (obj->valid_hash_gnu)
4069         mres = symlook_obj1_gnu(req, obj);
4070     else if (obj->valid_hash_sysv)
4071         mres = symlook_obj1_sysv(req, obj);
4072     else
4073         return (EINVAL);
4074
4075     if (mres == 0) {
4076         if (obj->needed_filtees != NULL) {
4077             flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
4078             load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
4079             donelist_init(&donelist);
4080             symlook_init_from_req(&req1, req);
4081             res = symlook_needed(&req1, obj->needed_filtees, &donelist);
4082             if (res == 0) {
4083                 req->sym_out = req1.sym_out;
4084                 req->defobj_out = req1.defobj_out;
4085             }
4086             return (res);
4087         }
4088         if (obj->needed_aux_filtees != NULL) {
4089             flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
4090             load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
4091             donelist_init(&donelist);
4092             symlook_init_from_req(&req1, req);
4093             res = symlook_needed(&req1, obj->needed_aux_filtees, &donelist);
4094             if (res == 0) {
4095                 req->sym_out = req1.sym_out;
4096                 req->defobj_out = req1.defobj_out;
4097                 return (res);
4098             }
4099         }
4100     }
4101     return (mres);
4102 }
4103
4104 /* Symbol match routine common to both hash functions */
4105 static bool
4106 matched_symbol(SymLook *req, const Obj_Entry *obj, Sym_Match_Result *result,
4107     const unsigned long symnum)
4108 {
4109         Elf_Versym verndx;
4110         const Elf_Sym *symp;
4111         const char *strp;
4112
4113         symp = obj->symtab + symnum;
4114         strp = obj->strtab + symp->st_name;
4115
4116         switch (ELF_ST_TYPE(symp->st_info)) {
4117         case STT_FUNC:
4118         case STT_NOTYPE:
4119         case STT_OBJECT:
4120         case STT_COMMON:
4121         case STT_GNU_IFUNC:
4122                 if (symp->st_value == 0)
4123                         return (false);
4124                 /* fallthrough */
4125         case STT_TLS:
4126                 if (symp->st_shndx != SHN_UNDEF)
4127                         break;
4128 #ifndef __mips__
4129                 else if (((req->flags & SYMLOOK_IN_PLT) == 0) &&
4130                     (ELF_ST_TYPE(symp->st_info) == STT_FUNC))
4131                         break;
4132                 /* fallthrough */
4133 #endif
4134         default:
4135                 return (false);
4136         }
4137         if (req->name[0] != strp[0] || strcmp(req->name, strp) != 0)
4138                 return (false);
4139
4140         if (req->ventry == NULL) {
4141                 if (obj->versyms != NULL) {
4142                         verndx = VER_NDX(obj->versyms[symnum]);
4143                         if (verndx > obj->vernum) {
4144                                 _rtld_error(
4145                                     "%s: symbol %s references wrong version %d",
4146                                     obj->path, obj->strtab + symnum, verndx);
4147                                 return (false);
4148                         }
4149                         /*
4150                          * If we are not called from dlsym (i.e. this
4151                          * is a normal relocation from unversioned
4152                          * binary), accept the symbol immediately if
4153                          * it happens to have first version after this
4154                          * shared object became versioned.  Otherwise,
4155                          * if symbol is versioned and not hidden,
4156                          * remember it. If it is the only symbol with
4157                          * this name exported by the shared object, it
4158                          * will be returned as a match by the calling
4159                          * function. If symbol is global (verndx < 2)
4160                          * accept it unconditionally.
4161                          */
4162                         if ((req->flags & SYMLOOK_DLSYM) == 0 &&
4163                             verndx == VER_NDX_GIVEN) {
4164                                 result->sym_out = symp;
4165                                 return (true);
4166                         }
4167                         else if (verndx >= VER_NDX_GIVEN) {
4168                                 if ((obj->versyms[symnum] & VER_NDX_HIDDEN)
4169                                     == 0) {
4170                                         if (result->vsymp == NULL)
4171                                                 result->vsymp = symp;
4172                                         result->vcount++;
4173                                 }
4174                                 return (false);
4175                         }
4176                 }
4177                 result->sym_out = symp;
4178                 return (true);
4179         }
4180         if (obj->versyms == NULL) {
4181                 if (object_match_name(obj, req->ventry->name)) {
4182                         _rtld_error("%s: object %s should provide version %s "
4183                             "for symbol %s", obj_rtld.path, obj->path,
4184                             req->ventry->name, obj->strtab + symnum);
4185                         return (false);
4186                 }
4187         } else {
4188                 verndx = VER_NDX(obj->versyms[symnum]);
4189                 if (verndx > obj->vernum) {
4190                         _rtld_error("%s: symbol %s references wrong version %d",
4191                             obj->path, obj->strtab + symnum, verndx);
4192                         return (false);
4193                 }
4194                 if (obj->vertab[verndx].hash != req->ventry->hash ||
4195                     strcmp(obj->vertab[verndx].name, req->ventry->name)) {
4196                         /*
4197                          * Version does not match. Look if this is a
4198                          * global symbol and if it is not hidden. If
4199                          * global symbol (verndx < 2) is available,
4200                          * use it. Do not return symbol if we are
4201                          * called by dlvsym, because dlvsym looks for
4202                          * a specific version and default one is not
4203                          * what dlvsym wants.
4204                          */
4205                         if ((req->flags & SYMLOOK_DLSYM) ||
4206                             (verndx >= VER_NDX_GIVEN) ||
4207                             (obj->versyms[symnum] & VER_NDX_HIDDEN))
4208                                 return (false);
4209                 }
4210         }
4211         result->sym_out = symp;
4212         return (true);
4213 }
4214
4215 /*
4216  * Search for symbol using SysV hash function.
4217  * obj->buckets is known not to be NULL at this point; the test for this was
4218  * performed with the obj->valid_hash_sysv assignment.
4219  */
4220 static int
4221 symlook_obj1_sysv(SymLook *req, const Obj_Entry *obj)
4222 {
4223         unsigned long symnum;
4224         Sym_Match_Result matchres;
4225
4226         matchres.sym_out = NULL;
4227         matchres.vsymp = NULL;
4228         matchres.vcount = 0;
4229
4230         for (symnum = obj->buckets[req->hash % obj->nbuckets];
4231             symnum != STN_UNDEF; symnum = obj->chains[symnum]) {
4232                 if (symnum >= obj->nchains)
4233                         return (ESRCH); /* Bad object */
4234
4235                 if (matched_symbol(req, obj, &matchres, symnum)) {
4236                         req->sym_out = matchres.sym_out;
4237                         req->defobj_out = obj;
4238                         return (0);
4239                 }
4240         }
4241         if (matchres.vcount == 1) {
4242                 req->sym_out = matchres.vsymp;
4243                 req->defobj_out = obj;
4244                 return (0);
4245         }
4246         return (ESRCH);
4247 }
4248
4249 /* Search for symbol using GNU hash function */
4250 static int
4251 symlook_obj1_gnu(SymLook *req, const Obj_Entry *obj)
4252 {
4253         Elf_Addr bloom_word;
4254         const Elf32_Word *hashval;
4255         Elf32_Word bucket;
4256         Sym_Match_Result matchres;
4257         unsigned int h1, h2;
4258         unsigned long symnum;
4259
4260         matchres.sym_out = NULL;
4261         matchres.vsymp = NULL;
4262         matchres.vcount = 0;
4263
4264         /* Pick right bitmask word from Bloom filter array */
4265         bloom_word = obj->bloom_gnu[(req->hash_gnu / __ELF_WORD_SIZE) &
4266             obj->maskwords_bm_gnu];
4267
4268         /* Calculate modulus word size of gnu hash and its derivative */
4269         h1 = req->hash_gnu & (__ELF_WORD_SIZE - 1);
4270         h2 = ((req->hash_gnu >> obj->shift2_gnu) & (__ELF_WORD_SIZE - 1));
4271
4272         /* Filter out the "definitely not in set" queries */
4273         if (((bloom_word >> h1) & (bloom_word >> h2) & 1) == 0)
4274                 return (ESRCH);
4275
4276         /* Locate hash chain and corresponding value element*/
4277         bucket = obj->buckets_gnu[req->hash_gnu % obj->nbuckets_gnu];
4278         if (bucket == 0)
4279                 return (ESRCH);
4280         hashval = &obj->chain_zero_gnu[bucket];
4281         do {
4282                 if (((*hashval ^ req->hash_gnu) >> 1) == 0) {
4283                         symnum = hashval - obj->chain_zero_gnu;
4284                         if (matched_symbol(req, obj, &matchres, symnum)) {
4285                                 req->sym_out = matchres.sym_out;
4286                                 req->defobj_out = obj;
4287                                 return (0);
4288                         }
4289                 }
4290         } while ((*hashval++ & 1) == 0);
4291         if (matchres.vcount == 1) {
4292                 req->sym_out = matchres.vsymp;
4293                 req->defobj_out = obj;
4294                 return (0);
4295         }
4296         return (ESRCH);
4297 }
4298
4299 static void
4300 trace_loaded_objects(Obj_Entry *obj)
4301 {
4302     char        *fmt1, *fmt2, *fmt, *main_local, *list_containers;
4303     int         c;
4304
4305     if ((main_local = getenv(_LD("TRACE_LOADED_OBJECTS_PROGNAME"))) == NULL)
4306         main_local = "";
4307
4308     if ((fmt1 = getenv(_LD("TRACE_LOADED_OBJECTS_FMT1"))) == NULL)
4309         fmt1 = "\t%o => %p (%x)\n";
4310
4311     if ((fmt2 = getenv(_LD("TRACE_LOADED_OBJECTS_FMT2"))) == NULL)
4312         fmt2 = "\t%o (%x)\n";
4313
4314     list_containers = getenv(_LD("TRACE_LOADED_OBJECTS_ALL"));
4315
4316     for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
4317         Needed_Entry            *needed;
4318         char                    *name, *path;
4319         bool                    is_lib;
4320
4321         if (obj->marker)
4322             continue;
4323         if (list_containers && obj->needed != NULL)
4324             rtld_printf("%s:\n", obj->path);
4325         for (needed = obj->needed; needed; needed = needed->next) {
4326             if (needed->obj != NULL) {
4327                 if (needed->obj->traced && !list_containers)
4328                     continue;
4329                 needed->obj->traced = true;
4330                 path = needed->obj->path;
4331             } else
4332                 path = "not found";
4333
4334             name = (char *)obj->strtab + needed->name;
4335             is_lib = strncmp(name, "lib", 3) == 0;      /* XXX - bogus */
4336
4337             fmt = is_lib ? fmt1 : fmt2;
4338             while ((c = *fmt++) != '\0') {
4339                 switch (c) {
4340                 default:
4341                     rtld_putchar(c);
4342                     continue;
4343                 case '\\':
4344                     switch (c = *fmt) {
4345                     case '\0':
4346                         continue;
4347                     case 'n':
4348                         rtld_putchar('\n');
4349                         break;
4350                     case 't':
4351                         rtld_putchar('\t');
4352                         break;
4353                     }
4354                     break;
4355                 case '%':
4356                     switch (c = *fmt) {
4357                     case '\0':
4358                         continue;
4359                     case '%':
4360                     default:
4361                         rtld_putchar(c);
4362                         break;
4363                     case 'A':
4364                         rtld_putstr(main_local);
4365                         break;
4366                     case 'a':
4367                         rtld_putstr(obj_main->path);
4368                         break;
4369                     case 'o':
4370                         rtld_putstr(name);
4371                         break;
4372 #if 0
4373                     case 'm':
4374                         rtld_printf("%d", sodp->sod_major);
4375                         break;
4376                     case 'n':
4377                         rtld_printf("%d", sodp->sod_minor);
4378                         break;
4379 #endif
4380                     case 'p':
4381                         rtld_putstr(path);
4382                         break;
4383                     case 'x':
4384                         rtld_printf("%p", needed->obj ? needed->obj->mapbase :
4385                           0);
4386                         break;
4387                     }
4388                     break;
4389                 }
4390                 ++fmt;
4391             }
4392         }
4393     }
4394 }
4395
4396 /*
4397  * Unload a dlopened object and its dependencies from memory and from
4398  * our data structures.  It is assumed that the DAG rooted in the
4399  * object has already been unreferenced, and that the object has a
4400  * reference count of 0.
4401  */
4402 static void
4403 unload_object(Obj_Entry *root)
4404 {
4405         Obj_Entry *obj, *obj1;
4406
4407         assert(root->refcount == 0);
4408
4409         /*
4410          * Pass over the DAG removing unreferenced objects from
4411          * appropriate lists.
4412          */
4413         unlink_object(root);
4414
4415         /* Unmap all objects that are no longer referenced. */
4416         TAILQ_FOREACH_SAFE(obj, &obj_list, next, obj1) {
4417                 if (obj->marker || obj->refcount != 0)
4418                         continue;
4419                 LD_UTRACE(UTRACE_UNLOAD_OBJECT, obj, obj->mapbase,
4420                     obj->mapsize, 0, obj->path);
4421                 dbg("unloading \"%s\"", obj->path);
4422                 unload_filtees(root);
4423                 munmap(obj->mapbase, obj->mapsize);
4424                 linkmap_delete(obj);
4425                 TAILQ_REMOVE(&obj_list, obj, next);
4426                 obj_count--;
4427                 obj_free(obj);
4428         }
4429 }
4430
4431 static void
4432 unlink_object(Obj_Entry *root)
4433 {
4434     Objlist_Entry *elm;
4435
4436     if (root->refcount == 0) {
4437         /* Remove the object from the RTLD_GLOBAL list. */
4438         objlist_remove(&list_global, root);
4439
4440         /* Remove the object from all objects' DAG lists. */
4441         STAILQ_FOREACH(elm, &root->dagmembers, link) {
4442             objlist_remove(&elm->obj->dldags, root);
4443             if (elm->obj != root)
4444                 unlink_object(elm->obj);
4445         }
4446     }
4447 }
4448
4449 static void
4450 ref_dag(Obj_Entry *root)
4451 {
4452     Objlist_Entry *elm;
4453
4454     assert(root->dag_inited);
4455     STAILQ_FOREACH(elm, &root->dagmembers, link)
4456         elm->obj->refcount++;
4457 }
4458
4459 static void
4460 unref_dag(Obj_Entry *root)
4461 {
4462     Objlist_Entry *elm;
4463
4464     assert(root->dag_inited);
4465     STAILQ_FOREACH(elm, &root->dagmembers, link)
4466         elm->obj->refcount--;
4467 }
4468
4469 /*
4470  * Common code for MD __tls_get_addr().
4471  */
4472 static void *tls_get_addr_slow(Elf_Addr **, int, size_t) __noinline;
4473 static void *
4474 tls_get_addr_slow(Elf_Addr **dtvp, int index, size_t offset)
4475 {
4476     Elf_Addr *newdtv, *dtv;
4477     RtldLockState lockstate;
4478     int to_copy;
4479
4480     dtv = *dtvp;
4481     /* Check dtv generation in case new modules have arrived */
4482     if (dtv[0] != tls_dtv_generation) {
4483         wlock_acquire(rtld_bind_lock, &lockstate);
4484         newdtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4485         to_copy = dtv[1];
4486         if (to_copy > tls_max_index)
4487             to_copy = tls_max_index;
4488         memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));
4489         newdtv[0] = tls_dtv_generation;
4490         newdtv[1] = tls_max_index;
4491         free(dtv);
4492         lock_release(rtld_bind_lock, &lockstate);
4493         dtv = *dtvp = newdtv;
4494     }
4495
4496     /* Dynamically allocate module TLS if necessary */
4497     if (dtv[index + 1] == 0) {
4498         /* Signal safe, wlock will block out signals. */
4499         wlock_acquire(rtld_bind_lock, &lockstate);
4500         if (!dtv[index + 1])
4501             dtv[index + 1] = (Elf_Addr)allocate_module_tls(index);
4502         lock_release(rtld_bind_lock, &lockstate);
4503     }
4504     return ((void *)(dtv[index + 1] + offset));
4505 }
4506
4507 void *
4508 tls_get_addr_common(Elf_Addr **dtvp, int index, size_t offset)
4509 {
4510         Elf_Addr *dtv;
4511
4512         dtv = *dtvp;
4513         /* Check dtv generation in case new modules have arrived */
4514         if (__predict_true(dtv[0] == tls_dtv_generation &&
4515             dtv[index + 1] != 0))
4516                 return ((void *)(dtv[index + 1] + offset));
4517         return (tls_get_addr_slow(dtvp, index, offset));
4518 }
4519
4520 #if defined(__aarch64__) || defined(__arm__) || defined(__mips__) || \
4521     defined(__powerpc__) || defined(__riscv__)
4522
4523 /*
4524  * Allocate Static TLS using the Variant I method.
4525  */
4526 void *
4527 allocate_tls(Obj_Entry *objs, void *oldtcb, size_t tcbsize, size_t tcbalign)
4528 {
4529     Obj_Entry *obj;
4530     char *tcb;
4531     Elf_Addr **tls;
4532     Elf_Addr *dtv;
4533     Elf_Addr addr;
4534     int i;
4535
4536     if (oldtcb != NULL && tcbsize == TLS_TCB_SIZE)
4537         return (oldtcb);
4538
4539     assert(tcbsize >= TLS_TCB_SIZE);
4540     tcb = xcalloc(1, tls_static_space - TLS_TCB_SIZE + tcbsize);
4541     tls = (Elf_Addr **)(tcb + tcbsize - TLS_TCB_SIZE);
4542
4543     if (oldtcb != NULL) {
4544         memcpy(tls, oldtcb, tls_static_space);
4545         free(oldtcb);
4546
4547         /* Adjust the DTV. */
4548         dtv = tls[0];
4549         for (i = 0; i < dtv[1]; i++) {
4550             if (dtv[i+2] >= (Elf_Addr)oldtcb &&
4551                 dtv[i+2] < (Elf_Addr)oldtcb + tls_static_space) {
4552                 dtv[i+2] = dtv[i+2] - (Elf_Addr)oldtcb + (Elf_Addr)tls;
4553             }
4554         }
4555     } else {
4556         dtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4557         tls[0] = dtv;
4558         dtv[0] = tls_dtv_generation;
4559         dtv[1] = tls_max_index;
4560
4561         for (obj = globallist_curr(objs); obj != NULL;
4562           obj = globallist_next(obj)) {
4563             if (obj->tlsoffset > 0) {
4564                 addr = (Elf_Addr)tls + obj->tlsoffset;
4565                 if (obj->tlsinitsize > 0)
4566                     memcpy((void*) addr, obj->tlsinit, obj->tlsinitsize);
4567                 if (obj->tlssize > obj->tlsinitsize)
4568                     memset((void*) (addr + obj->tlsinitsize), 0,
4569                            obj->tlssize - obj->tlsinitsize);
4570                 dtv[obj->tlsindex + 1] = addr;
4571             }
4572         }
4573     }
4574
4575     return (tcb);
4576 }
4577
4578 void
4579 free_tls(void *tcb, size_t tcbsize, size_t tcbalign)
4580 {
4581     Elf_Addr *dtv;
4582     Elf_Addr tlsstart, tlsend;
4583     int dtvsize, i;
4584
4585     assert(tcbsize >= TLS_TCB_SIZE);
4586
4587     tlsstart = (Elf_Addr)tcb + tcbsize - TLS_TCB_SIZE;
4588     tlsend = tlsstart + tls_static_space;
4589
4590     dtv = *(Elf_Addr **)tlsstart;
4591     dtvsize = dtv[1];
4592     for (i = 0; i < dtvsize; i++) {
4593         if (dtv[i+2] && (dtv[i+2] < tlsstart || dtv[i+2] >= tlsend)) {
4594             free((void*)dtv[i+2]);
4595         }
4596     }
4597     free(dtv);
4598     free(tcb);
4599 }
4600
4601 #endif
4602
4603 #if defined(__i386__) || defined(__amd64__) || defined(__sparc64__)
4604
4605 /*
4606  * Allocate Static TLS using the Variant II method.
4607  */
4608 void *
4609 allocate_tls(Obj_Entry *objs, void *oldtls, size_t tcbsize, size_t tcbalign)
4610 {
4611     Obj_Entry *obj;
4612     size_t size, ralign;
4613     char *tls;
4614     Elf_Addr *dtv, *olddtv;
4615     Elf_Addr segbase, oldsegbase, addr;
4616     int i;
4617
4618     ralign = tcbalign;
4619     if (tls_static_max_align > ralign)
4620             ralign = tls_static_max_align;
4621     size = round(tls_static_space, ralign) + round(tcbsize, ralign);
4622
4623     assert(tcbsize >= 2*sizeof(Elf_Addr));
4624     tls = malloc_aligned(size, ralign);
4625     dtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4626
4627     segbase = (Elf_Addr)(tls + round(tls_static_space, ralign));
4628     ((Elf_Addr*)segbase)[0] = segbase;
4629     ((Elf_Addr*)segbase)[1] = (Elf_Addr) dtv;
4630
4631     dtv[0] = tls_dtv_generation;
4632     dtv[1] = tls_max_index;
4633
4634     if (oldtls) {
4635         /*
4636          * Copy the static TLS block over whole.
4637          */
4638         oldsegbase = (Elf_Addr) oldtls;
4639         memcpy((void *)(segbase - tls_static_space),
4640                (const void *)(oldsegbase - tls_static_space),
4641                tls_static_space);
4642
4643         /*
4644          * If any dynamic TLS blocks have been created tls_get_addr(),
4645          * move them over.
4646          */
4647         olddtv = ((Elf_Addr**)oldsegbase)[1];
4648         for (i = 0; i < olddtv[1]; i++) {
4649             if (olddtv[i+2] < oldsegbase - size || olddtv[i+2] > oldsegbase) {
4650                 dtv[i+2] = olddtv[i+2];
4651                 olddtv[i+2] = 0;
4652             }
4653         }
4654
4655         /*
4656          * We assume that this block was the one we created with
4657          * allocate_initial_tls().
4658          */
4659         free_tls(oldtls, 2*sizeof(Elf_Addr), sizeof(Elf_Addr));
4660     } else {
4661         for (obj = objs; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
4662                 if (obj->marker || obj->tlsoffset == 0)
4663                         continue;
4664                 addr = segbase - obj->tlsoffset;
4665                 memset((void*) (addr + obj->tlsinitsize),
4666                        0, obj->tlssize - obj->tlsinitsize);
4667                 if (obj->tlsinit)
4668                     memcpy((void*) addr, obj->tlsinit, obj->tlsinitsize);
4669                 dtv[obj->tlsindex + 1] = addr;
4670         }
4671     }
4672
4673     return (void*) segbase;
4674 }
4675
4676 void
4677 free_tls(void *tls, size_t tcbsize, size_t tcbalign)
4678 {
4679     Elf_Addr* dtv;
4680     size_t size, ralign;
4681     int dtvsize, i;
4682     Elf_Addr tlsstart, tlsend;
4683
4684     /*
4685      * Figure out the size of the initial TLS block so that we can
4686      * find stuff which ___tls_get_addr() allocated dynamically.
4687      */
4688     ralign = tcbalign;
4689     if (tls_static_max_align > ralign)
4690             ralign = tls_static_max_align;
4691     size = round(tls_static_space, ralign);
4692
4693     dtv = ((Elf_Addr**)tls)[1];
4694     dtvsize = dtv[1];
4695     tlsend = (Elf_Addr) tls;
4696     tlsstart = tlsend - size;
4697     for (i = 0; i < dtvsize; i++) {
4698         if (dtv[i + 2] != 0 && (dtv[i + 2] < tlsstart || dtv[i + 2] > tlsend)) {
4699                 free_aligned((void *)dtv[i + 2]);
4700         }
4701     }
4702
4703     free_aligned((void *)tlsstart);
4704     free((void*) dtv);
4705 }
4706
4707 #endif
4708
4709 /*
4710  * Allocate TLS block for module with given index.
4711  */
4712 void *
4713 allocate_module_tls(int index)
4714 {
4715     Obj_Entry* obj;
4716     char* p;
4717
4718     TAILQ_FOREACH(obj, &obj_list, next) {
4719         if (obj->marker)
4720             continue;
4721         if (obj->tlsindex == index)
4722             break;
4723     }
4724     if (!obj) {
4725         _rtld_error("Can't find module with TLS index %d", index);
4726         rtld_die();
4727     }
4728
4729     p = malloc_aligned(obj->tlssize, obj->tlsalign);
4730     memcpy(p, obj->tlsinit, obj->tlsinitsize);
4731     memset(p + obj->tlsinitsize, 0, obj->tlssize - obj->tlsinitsize);
4732
4733     return p;
4734 }
4735
4736 bool
4737 allocate_tls_offset(Obj_Entry *obj)
4738 {
4739     size_t off;
4740
4741     if (obj->tls_done)
4742         return true;
4743
4744     if (obj->tlssize == 0) {
4745         obj->tls_done = true;
4746         return true;
4747     }
4748
4749     if (tls_last_offset == 0)
4750         off = calculate_first_tls_offset(obj->tlssize, obj->tlsalign);
4751     else
4752         off = calculate_tls_offset(tls_last_offset, tls_last_size,
4753                                    obj->tlssize, obj->tlsalign);
4754
4755     /*
4756      * If we have already fixed the size of the static TLS block, we
4757      * must stay within that size. When allocating the static TLS, we
4758      * leave a small amount of space spare to be used for dynamically
4759      * loading modules which use static TLS.
4760      */
4761     if (tls_static_space != 0) {
4762         if (calculate_tls_end(off, obj->tlssize) > tls_static_space)
4763             return false;
4764     } else if (obj->tlsalign > tls_static_max_align) {
4765             tls_static_max_align = obj->tlsalign;
4766     }
4767
4768     tls_last_offset = obj->tlsoffset = off;
4769     tls_last_size = obj->tlssize;
4770     obj->tls_done = true;
4771
4772     return true;
4773 }
4774
4775 void
4776 free_tls_offset(Obj_Entry *obj)
4777 {
4778
4779     /*
4780      * If we were the last thing to allocate out of the static TLS
4781      * block, we give our space back to the 'allocator'. This is a
4782      * simplistic workaround to allow libGL.so.1 to be loaded and
4783      * unloaded multiple times.
4784      */
4785     if (calculate_tls_end(obj->tlsoffset, obj->tlssize)
4786         == calculate_tls_end(tls_last_offset, tls_last_size)) {
4787         tls_last_offset -= obj->tlssize;
4788         tls_last_size = 0;
4789     }
4790 }
4791
4792 void *
4793 _rtld_allocate_tls(void *oldtls, size_t tcbsize, size_t tcbalign)
4794 {
4795     void *ret;
4796     RtldLockState lockstate;
4797
4798     wlock_acquire(rtld_bind_lock, &lockstate);
4799     ret = allocate_tls(globallist_curr(TAILQ_FIRST(&obj_list)), oldtls,
4800       tcbsize, tcbalign);
4801     lock_release(rtld_bind_lock, &lockstate);
4802     return (ret);
4803 }
4804
4805 void
4806 _rtld_free_tls(void *tcb, size_t tcbsize, size_t tcbalign)
4807 {
4808     RtldLockState lockstate;
4809
4810     wlock_acquire(rtld_bind_lock, &lockstate);
4811     free_tls(tcb, tcbsize, tcbalign);
4812     lock_release(rtld_bind_lock, &lockstate);
4813 }
4814
4815 static void
4816 object_add_name(Obj_Entry *obj, const char *name)
4817 {
4818     Name_Entry *entry;
4819     size_t len;
4820
4821     len = strlen(name);
4822     entry = malloc(sizeof(Name_Entry) + len);
4823
4824     if (entry != NULL) {
4825         strcpy(entry->name, name);
4826         STAILQ_INSERT_TAIL(&obj->names, entry, link);
4827     }
4828 }
4829
4830 static int
4831 object_match_name(const Obj_Entry *obj, const char *name)
4832 {
4833     Name_Entry *entry;
4834
4835     STAILQ_FOREACH(entry, &obj->names, link) {
4836         if (strcmp(name, entry->name) == 0)
4837             return (1);
4838     }
4839     return (0);
4840 }
4841
4842 static Obj_Entry *
4843 locate_dependency(const Obj_Entry *obj, const char *name)
4844 {
4845     const Objlist_Entry *entry;
4846     const Needed_Entry *needed;
4847
4848     STAILQ_FOREACH(entry, &list_main, link) {
4849         if (object_match_name(entry->obj, name))
4850             return entry->obj;
4851     }
4852
4853     for (needed = obj->needed;  needed != NULL;  needed = needed->next) {
4854         if (strcmp(obj->strtab + needed->name, name) == 0 ||
4855           (needed->obj != NULL && object_match_name(needed->obj, name))) {
4856             /*
4857              * If there is DT_NEEDED for the name we are looking for,
4858              * we are all set.  Note that object might not be found if
4859              * dependency was not loaded yet, so the function can
4860              * return NULL here.  This is expected and handled
4861              * properly by the caller.
4862              */
4863             return (needed->obj);
4864         }
4865     }
4866     _rtld_error("%s: Unexpected inconsistency: dependency %s not found",
4867         obj->path, name);
4868     rtld_die();
4869 }
4870
4871 static int
4872 check_object_provided_version(Obj_Entry *refobj, const Obj_Entry *depobj,
4873     const Elf_Vernaux *vna)
4874 {
4875     const Elf_Verdef *vd;
4876     const char *vername;
4877
4878     vername = refobj->strtab + vna->vna_name;
4879     vd = depobj->verdef;
4880     if (vd == NULL) {
4881         _rtld_error("%s: version %s required by %s not defined",
4882             depobj->path, vername, refobj->path);
4883         return (-1);
4884     }
4885     for (;;) {
4886         if (vd->vd_version != VER_DEF_CURRENT) {
4887             _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
4888                 depobj->path, vd->vd_version);
4889             return (-1);
4890         }
4891         if (vna->vna_hash == vd->vd_hash) {
4892             const Elf_Verdaux *aux = (const Elf_Verdaux *)
4893                 ((char *)vd + vd->vd_aux);
4894             if (strcmp(vername, depobj->strtab + aux->vda_name) == 0)
4895                 return (0);
4896         }
4897         if (vd->vd_next == 0)
4898             break;
4899         vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4900     }
4901     if (vna->vna_flags & VER_FLG_WEAK)
4902         return (0);
4903     _rtld_error("%s: version %s required by %s not found",
4904         depobj->path, vername, refobj->path);
4905     return (-1);
4906 }
4907
4908 static int
4909 rtld_verify_object_versions(Obj_Entry *obj)
4910 {
4911     const Elf_Verneed *vn;
4912     const Elf_Verdef  *vd;
4913     const Elf_Verdaux *vda;
4914     const Elf_Vernaux *vna;
4915     const Obj_Entry *depobj;
4916     int maxvernum, vernum;
4917
4918     if (obj->ver_checked)
4919         return (0);
4920     obj->ver_checked = true;
4921
4922     maxvernum = 0;
4923     /*
4924      * Walk over defined and required version records and figure out
4925      * max index used by any of them. Do very basic sanity checking
4926      * while there.
4927      */
4928     vn = obj->verneed;
4929     while (vn != NULL) {
4930         if (vn->vn_version != VER_NEED_CURRENT) {
4931             _rtld_error("%s: Unsupported version %d of Elf_Verneed entry",
4932                 obj->path, vn->vn_version);
4933             return (-1);
4934         }
4935         vna = (const Elf_Vernaux *) ((char *)vn + vn->vn_aux);
4936         for (;;) {
4937             vernum = VER_NEED_IDX(vna->vna_other);
4938             if (vernum > maxvernum)
4939                 maxvernum = vernum;
4940             if (vna->vna_next == 0)
4941                  break;
4942             vna = (const Elf_Vernaux *) ((char *)vna + vna->vna_next);
4943         }
4944         if (vn->vn_next == 0)
4945             break;
4946         vn = (const Elf_Verneed *) ((char *)vn + vn->vn_next);
4947     }
4948
4949     vd = obj->verdef;
4950     while (vd != NULL) {
4951         if (vd->vd_version != VER_DEF_CURRENT) {
4952             _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
4953                 obj->path, vd->vd_version);
4954             return (-1);
4955         }
4956         vernum = VER_DEF_IDX(vd->vd_ndx);
4957         if (vernum > maxvernum)
4958                 maxvernum = vernum;
4959         if (vd->vd_next == 0)
4960             break;
4961         vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4962     }
4963
4964     if (maxvernum == 0)
4965         return (0);
4966
4967     /*
4968      * Store version information in array indexable by version index.
4969      * Verify that object version requirements are satisfied along the
4970      * way.
4971      */
4972     obj->vernum = maxvernum + 1;
4973     obj->vertab = xcalloc(obj->vernum, sizeof(Ver_Entry));
4974
4975     vd = obj->verdef;
4976     while (vd != NULL) {
4977         if ((vd->vd_flags & VER_FLG_BASE) == 0) {
4978             vernum = VER_DEF_IDX(vd->vd_ndx);
4979             assert(vernum <= maxvernum);
4980             vda = (const Elf_Verdaux *)((char *)vd + vd->vd_aux);
4981             obj->vertab[vernum].hash = vd->vd_hash;
4982             obj->vertab[vernum].name = obj->strtab + vda->vda_name;
4983             obj->vertab[vernum].file = NULL;
4984             obj->vertab[vernum].flags = 0;
4985         }
4986         if (vd->vd_next == 0)
4987             break;
4988         vd = (const Elf_Verdef *) ((char *)vd + vd->vd_next);
4989     }
4990
4991     vn = obj->verneed;
4992     while (vn != NULL) {
4993         depobj = locate_dependency(obj, obj->strtab + vn->vn_file);
4994         if (depobj == NULL)
4995             return (-1);
4996         vna = (const Elf_Vernaux *) ((char *)vn + vn->vn_aux);
4997         for (;;) {
4998             if (check_object_provided_version(obj, depobj, vna))
4999                 return (-1);
5000             vernum = VER_NEED_IDX(vna->vna_other);
5001             assert(vernum <= maxvernum);
5002             obj->vertab[vernum].hash = vna->vna_hash;
5003             obj->vertab[vernum].name = obj->strtab + vna->vna_name;
5004             obj->vertab[vernum].file = obj->strtab + vn->vn_file;
5005             obj->vertab[vernum].flags = (vna->vna_other & VER_NEED_HIDDEN) ?
5006                 VER_INFO_HIDDEN : 0;
5007             if (vna->vna_next == 0)
5008                  break;
5009             vna = (const Elf_Vernaux *) ((char *)vna + vna->vna_next);
5010         }
5011         if (vn->vn_next == 0)
5012             break;
5013         vn = (const Elf_Verneed *) ((char *)vn + vn->vn_next);
5014     }
5015     return 0;
5016 }
5017
5018 static int
5019 rtld_verify_versions(const Objlist *objlist)
5020 {
5021     Objlist_Entry *entry;
5022     int rc;
5023
5024     rc = 0;
5025     STAILQ_FOREACH(entry, objlist, link) {
5026         /*
5027          * Skip dummy objects or objects that have their version requirements
5028          * already checked.
5029          */
5030         if (entry->obj->strtab == NULL || entry->obj->vertab != NULL)
5031             continue;
5032         if (rtld_verify_object_versions(entry->obj) == -1) {
5033             rc = -1;
5034             if (ld_tracing == NULL)
5035                 break;
5036         }
5037     }
5038     if (rc == 0 || ld_tracing != NULL)
5039         rc = rtld_verify_object_versions(&obj_rtld);
5040     return rc;
5041 }
5042
5043 const Ver_Entry *
5044 fetch_ventry(const Obj_Entry *obj, unsigned long symnum)
5045 {
5046     Elf_Versym vernum;
5047
5048     if (obj->vertab) {
5049         vernum = VER_NDX(obj->versyms[symnum]);
5050         if (vernum >= obj->vernum) {
5051             _rtld_error("%s: symbol %s has wrong verneed value %d",
5052                 obj->path, obj->strtab + symnum, vernum);
5053         } else if (obj->vertab[vernum].hash != 0) {
5054             return &obj->vertab[vernum];
5055         }
5056     }
5057     return NULL;
5058 }
5059
5060 int
5061 _rtld_get_stack_prot(void)
5062 {
5063
5064         return (stack_prot);
5065 }
5066
5067 int
5068 _rtld_is_dlopened(void *arg)
5069 {
5070         Obj_Entry *obj;
5071         RtldLockState lockstate;
5072         int res;
5073
5074         rlock_acquire(rtld_bind_lock, &lockstate);
5075         obj = dlcheck(arg);
5076         if (obj == NULL)
5077                 obj = obj_from_addr(arg);
5078         if (obj == NULL) {
5079                 _rtld_error("No shared object contains address");
5080                 lock_release(rtld_bind_lock, &lockstate);
5081                 return (-1);
5082         }
5083         res = obj->dlopened ? 1 : 0;
5084         lock_release(rtld_bind_lock, &lockstate);
5085         return (res);
5086 }
5087
5088 static void
5089 map_stacks_exec(RtldLockState *lockstate)
5090 {
5091         void (*thr_map_stacks_exec)(void);
5092
5093         if ((max_stack_flags & PF_X) == 0 || (stack_prot & PROT_EXEC) != 0)
5094                 return;
5095         thr_map_stacks_exec = (void (*)(void))(uintptr_t)
5096             get_program_var_addr("__pthread_map_stacks_exec", lockstate);
5097         if (thr_map_stacks_exec != NULL) {
5098                 stack_prot |= PROT_EXEC;
5099                 thr_map_stacks_exec();
5100         }
5101 }
5102
5103 void
5104 symlook_init(SymLook *dst, const char *name)
5105 {
5106
5107         bzero(dst, sizeof(*dst));
5108         dst->name = name;
5109         dst->hash = elf_hash(name);
5110         dst->hash_gnu = gnu_hash(name);
5111 }
5112
5113 static void
5114 symlook_init_from_req(SymLook *dst, const SymLook *src)
5115 {
5116
5117         dst->name = src->name;
5118         dst->hash = src->hash;
5119         dst->hash_gnu = src->hash_gnu;
5120         dst->ventry = src->ventry;
5121         dst->flags = src->flags;
5122         dst->defobj_out = NULL;
5123         dst->sym_out = NULL;
5124         dst->lockstate = src->lockstate;
5125 }
5126
5127
5128 /*
5129  * Parse a file descriptor number without pulling in more of libc (e.g. atoi).
5130  */
5131 static int
5132 parse_libdir(const char *str)
5133 {
5134         static const int RADIX = 10;  /* XXXJA: possibly support hex? */
5135         const char *orig;
5136         int fd;
5137         char c;
5138
5139         orig = str;
5140         fd = 0;
5141         for (c = *str; c != '\0'; c = *++str) {
5142                 if (c < '0' || c > '9')
5143                         return (-1);
5144
5145                 fd *= RADIX;
5146                 fd += c - '0';
5147         }
5148
5149         /* Make sure we actually parsed something. */
5150         if (str == orig) {
5151                 _rtld_error("failed to parse directory FD from '%s'", str);
5152                 return (-1);
5153         }
5154         return (fd);
5155 }
5156
5157 /*
5158  * Overrides for libc_pic-provided functions.
5159  */
5160
5161 int
5162 __getosreldate(void)
5163 {
5164         size_t len;
5165         int oid[2];
5166         int error, osrel;
5167
5168         if (osreldate != 0)
5169                 return (osreldate);
5170
5171         oid[0] = CTL_KERN;
5172         oid[1] = KERN_OSRELDATE;
5173         osrel = 0;
5174         len = sizeof(osrel);
5175         error = sysctl(oid, 2, &osrel, &len, NULL, 0);
5176         if (error == 0 && osrel > 0 && len == sizeof(osrel))
5177                 osreldate = osrel;
5178         return (osreldate);
5179 }
5180
5181 void
5182 exit(int status)
5183 {
5184
5185         _exit(status);
5186 }
5187
5188 void (*__cleanup)(void);
5189 int __isthreaded = 0;
5190 int _thread_autoinit_dummy_decl = 1;
5191
5192 /*
5193  * No unresolved symbols for rtld.
5194  */
5195 void
5196 __pthread_cxa_finalize(struct dl_phdr_info *a)
5197 {
5198 }
5199
5200 void
5201 __stack_chk_fail(void)
5202 {
5203
5204         _rtld_error("stack overflow detected; terminated");
5205         rtld_die();
5206 }
5207 __weak_reference(__stack_chk_fail, __stack_chk_fail_local);
5208
5209 void
5210 __chk_fail(void)
5211 {
5212
5213         _rtld_error("buffer overflow detected; terminated");
5214         rtld_die();
5215 }
5216
5217 const char *
5218 rtld_strerror(int errnum)
5219 {
5220
5221         if (errnum < 0 || errnum >= sys_nerr)
5222                 return ("Unknown error");
5223         return (sys_errlist[errnum]);
5224 }