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