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