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