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