]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rtld-elf/rtld.c
MFC r361725, r361728:
[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                 if (dynp->d_un.d_val & DF_1_PIE)
1325                     obj->z_pie = true;
1326             break;
1327
1328         default:
1329             if (!early) {
1330                 dbg("Ignoring d_tag %ld = %#lx", (long)dynp->d_tag,
1331                     (long)dynp->d_tag);
1332             }
1333             break;
1334         }
1335     }
1336
1337     obj->traced = false;
1338
1339     if (plttype == DT_RELA) {
1340         obj->pltrela = (const Elf_Rela *) obj->pltrel;
1341         obj->pltrel = NULL;
1342         obj->pltrelasize = obj->pltrelsize;
1343         obj->pltrelsize = 0;
1344     }
1345
1346     /* Determine size of dynsym table (equal to nchains of sysv hash) */
1347     if (obj->valid_hash_sysv)
1348         obj->dynsymcount = obj->nchains;
1349     else if (obj->valid_hash_gnu) {
1350         obj->dynsymcount = 0;
1351         for (bkt = 0; bkt < obj->nbuckets_gnu; bkt++) {
1352             if (obj->buckets_gnu[bkt] == 0)
1353                 continue;
1354             hashval = &obj->chain_zero_gnu[obj->buckets_gnu[bkt]];
1355             do
1356                 obj->dynsymcount++;
1357             while ((*hashval++ & 1u) == 0);
1358         }
1359         obj->dynsymcount += obj->symndx_gnu;
1360     }
1361
1362     if (obj->linkmap.l_refname != NULL)
1363         obj->linkmap.l_refname = obj->strtab + (unsigned long)obj->
1364           linkmap.l_refname;
1365 }
1366
1367 static bool
1368 obj_resolve_origin(Obj_Entry *obj)
1369 {
1370
1371         if (obj->origin_path != NULL)
1372                 return (true);
1373         obj->origin_path = xmalloc(PATH_MAX);
1374         return (rtld_dirname_abs(obj->path, obj->origin_path) != -1);
1375 }
1376
1377 static bool
1378 digest_dynamic2(Obj_Entry *obj, const Elf_Dyn *dyn_rpath,
1379     const Elf_Dyn *dyn_soname, const Elf_Dyn *dyn_runpath)
1380 {
1381
1382         if (obj->z_origin && !obj_resolve_origin(obj))
1383                 return (false);
1384
1385         if (dyn_runpath != NULL) {
1386                 obj->runpath = (const char *)obj->strtab + dyn_runpath->d_un.d_val;
1387                 obj->runpath = origin_subst(obj, obj->runpath);
1388         } else if (dyn_rpath != NULL) {
1389                 obj->rpath = (const char *)obj->strtab + dyn_rpath->d_un.d_val;
1390                 obj->rpath = origin_subst(obj, obj->rpath);
1391         }
1392         if (dyn_soname != NULL)
1393                 object_add_name(obj, obj->strtab + dyn_soname->d_un.d_val);
1394         return (true);
1395 }
1396
1397 static bool
1398 digest_dynamic(Obj_Entry *obj, int early)
1399 {
1400         const Elf_Dyn *dyn_rpath;
1401         const Elf_Dyn *dyn_soname;
1402         const Elf_Dyn *dyn_runpath;
1403
1404         digest_dynamic1(obj, early, &dyn_rpath, &dyn_soname, &dyn_runpath);
1405         return (digest_dynamic2(obj, dyn_rpath, dyn_soname, dyn_runpath));
1406 }
1407
1408 /*
1409  * Process a shared object's program header.  This is used only for the
1410  * main program, when the kernel has already loaded the main program
1411  * into memory before calling the dynamic linker.  It creates and
1412  * returns an Obj_Entry structure.
1413  */
1414 static Obj_Entry *
1415 digest_phdr(const Elf_Phdr *phdr, int phnum, caddr_t entry, const char *path)
1416 {
1417     Obj_Entry *obj;
1418     const Elf_Phdr *phlimit = phdr + phnum;
1419     const Elf_Phdr *ph;
1420     Elf_Addr note_start, note_end;
1421     int nsegs = 0;
1422
1423     obj = obj_new();
1424     for (ph = phdr;  ph < phlimit;  ph++) {
1425         if (ph->p_type != PT_PHDR)
1426             continue;
1427
1428         obj->phdr = phdr;
1429         obj->phsize = ph->p_memsz;
1430         obj->relocbase = __DECONST(char *, phdr) - ph->p_vaddr;
1431         break;
1432     }
1433
1434     obj->stack_flags = PF_X | PF_R | PF_W;
1435
1436     for (ph = phdr;  ph < phlimit;  ph++) {
1437         switch (ph->p_type) {
1438
1439         case PT_INTERP:
1440             obj->interp = (const char *)(ph->p_vaddr + obj->relocbase);
1441             break;
1442
1443         case PT_LOAD:
1444             if (nsegs == 0) {   /* First load segment */
1445                 obj->vaddrbase = trunc_page(ph->p_vaddr);
1446                 obj->mapbase = obj->vaddrbase + obj->relocbase;
1447                 obj->textsize = round_page(ph->p_vaddr + ph->p_memsz) -
1448                   obj->vaddrbase;
1449             } else {            /* Last load segment */
1450                 obj->mapsize = round_page(ph->p_vaddr + ph->p_memsz) -
1451                   obj->vaddrbase;
1452             }
1453             nsegs++;
1454             break;
1455
1456         case PT_DYNAMIC:
1457             obj->dynamic = (const Elf_Dyn *)(ph->p_vaddr + obj->relocbase);
1458             break;
1459
1460         case PT_TLS:
1461             obj->tlsindex = 1;
1462             obj->tlssize = ph->p_memsz;
1463             obj->tlsalign = ph->p_align;
1464             obj->tlsinitsize = ph->p_filesz;
1465             obj->tlsinit = (void*)(ph->p_vaddr + obj->relocbase);
1466             obj->tlspoffset = ph->p_offset;
1467             break;
1468
1469         case PT_GNU_STACK:
1470             obj->stack_flags = ph->p_flags;
1471             break;
1472
1473         case PT_GNU_RELRO:
1474             obj->relro_page = obj->relocbase + trunc_page(ph->p_vaddr);
1475             obj->relro_size = round_page(ph->p_memsz);
1476             break;
1477
1478         case PT_NOTE:
1479             note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr;
1480             note_end = note_start + ph->p_filesz;
1481             digest_notes(obj, note_start, note_end);
1482             break;
1483         }
1484     }
1485     if (nsegs < 1) {
1486         _rtld_error("%s: too few PT_LOAD segments", path);
1487         return NULL;
1488     }
1489
1490     obj->entry = entry;
1491     return obj;
1492 }
1493
1494 void
1495 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end)
1496 {
1497         const Elf_Note *note;
1498         const char *note_name;
1499         uintptr_t p;
1500
1501         for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end;
1502             note = (const Elf_Note *)((const char *)(note + 1) +
1503               roundup2(note->n_namesz, sizeof(Elf32_Addr)) +
1504               roundup2(note->n_descsz, sizeof(Elf32_Addr)))) {
1505                 if (note->n_namesz != sizeof(NOTE_FREEBSD_VENDOR) ||
1506                     note->n_descsz != sizeof(int32_t))
1507                         continue;
1508                 if (note->n_type != NT_FREEBSD_ABI_TAG &&
1509                     note->n_type != NT_FREEBSD_FEATURE_CTL &&
1510                     note->n_type != NT_FREEBSD_NOINIT_TAG)
1511                         continue;
1512                 note_name = (const char *)(note + 1);
1513                 if (strncmp(NOTE_FREEBSD_VENDOR, note_name,
1514                     sizeof(NOTE_FREEBSD_VENDOR)) != 0)
1515                         continue;
1516                 switch (note->n_type) {
1517                 case NT_FREEBSD_ABI_TAG:
1518                         /* FreeBSD osrel note */
1519                         p = (uintptr_t)(note + 1);
1520                         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1521                         obj->osrel = *(const int32_t *)(p);
1522                         dbg("note osrel %d", obj->osrel);
1523                         break;
1524                 case NT_FREEBSD_FEATURE_CTL:
1525                         /* FreeBSD ABI feature control note */
1526                         p = (uintptr_t)(note + 1);
1527                         p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1528                         obj->fctl0 = *(const uint32_t *)(p);
1529                         dbg("note fctl0 %#x", obj->fctl0);
1530                         break;
1531                 case NT_FREEBSD_NOINIT_TAG:
1532                         /* FreeBSD 'crt does not call init' note */
1533                         obj->crt_no_init = true;
1534                         dbg("note crt_no_init");
1535                         break;
1536                 }
1537         }
1538 }
1539
1540 static Obj_Entry *
1541 dlcheck(void *handle)
1542 {
1543     Obj_Entry *obj;
1544
1545     TAILQ_FOREACH(obj, &obj_list, next) {
1546         if (obj == (Obj_Entry *) handle)
1547             break;
1548     }
1549
1550     if (obj == NULL || obj->refcount == 0 || obj->dl_refcount == 0) {
1551         _rtld_error("Invalid shared object handle %p", handle);
1552         return NULL;
1553     }
1554     return obj;
1555 }
1556
1557 /*
1558  * If the given object is already in the donelist, return true.  Otherwise
1559  * add the object to the list and return false.
1560  */
1561 static bool
1562 donelist_check(DoneList *dlp, const Obj_Entry *obj)
1563 {
1564     unsigned int i;
1565
1566     for (i = 0;  i < dlp->num_used;  i++)
1567         if (dlp->objs[i] == obj)
1568             return true;
1569     /*
1570      * Our donelist allocation should always be sufficient.  But if
1571      * our threads locking isn't working properly, more shared objects
1572      * could have been loaded since we allocated the list.  That should
1573      * never happen, but we'll handle it properly just in case it does.
1574      */
1575     if (dlp->num_used < dlp->num_alloc)
1576         dlp->objs[dlp->num_used++] = obj;
1577     return false;
1578 }
1579
1580 /*
1581  * Hash function for symbol table lookup.  Don't even think about changing
1582  * this.  It is specified by the System V ABI.
1583  */
1584 unsigned long
1585 elf_hash(const char *name)
1586 {
1587     const unsigned char *p = (const unsigned char *) name;
1588     unsigned long h = 0;
1589     unsigned long g;
1590
1591     while (*p != '\0') {
1592         h = (h << 4) + *p++;
1593         if ((g = h & 0xf0000000) != 0)
1594             h ^= g >> 24;
1595         h &= ~g;
1596     }
1597     return h;
1598 }
1599
1600 /*
1601  * The GNU hash function is the Daniel J. Bernstein hash clipped to 32 bits
1602  * unsigned in case it's implemented with a wider type.
1603  */
1604 static uint32_t
1605 gnu_hash(const char *s)
1606 {
1607         uint32_t h;
1608         unsigned char c;
1609
1610         h = 5381;
1611         for (c = *s; c != '\0'; c = *++s)
1612                 h = h * 33 + c;
1613         return (h & 0xffffffff);
1614 }
1615
1616
1617 /*
1618  * Find the library with the given name, and return its full pathname.
1619  * The returned string is dynamically allocated.  Generates an error
1620  * message and returns NULL if the library cannot be found.
1621  *
1622  * If the second argument is non-NULL, then it refers to an already-
1623  * loaded shared object, whose library search path will be searched.
1624  *
1625  * If a library is successfully located via LD_LIBRARY_PATH_FDS, its
1626  * descriptor (which is close-on-exec) will be passed out via the third
1627  * argument.
1628  *
1629  * The search order is:
1630  *   DT_RPATH in the referencing file _unless_ DT_RUNPATH is present (1)
1631  *   DT_RPATH of the main object if DSO without defined DT_RUNPATH (1)
1632  *   LD_LIBRARY_PATH
1633  *   DT_RUNPATH in the referencing file
1634  *   ldconfig hints (if -z nodefaultlib, filter out default library directories
1635  *       from list)
1636  *   /lib:/usr/lib _unless_ the referencing file is linked with -z nodefaultlib
1637  *
1638  * (1) Handled in digest_dynamic2 - rpath left NULL if runpath defined.
1639  */
1640 static char *
1641 find_library(const char *xname, const Obj_Entry *refobj, int *fdp)
1642 {
1643         char *pathname, *refobj_path;
1644         const char *name;
1645         bool nodeflib, objgiven;
1646
1647         objgiven = refobj != NULL;
1648
1649         if (libmap_disable || !objgiven ||
1650             (name = lm_find(refobj->path, xname)) == NULL)
1651                 name = xname;
1652
1653         if (strchr(name, '/') != NULL) {        /* Hard coded pathname */
1654                 if (name[0] != '/' && !trust) {
1655                         _rtld_error("Absolute pathname required "
1656                             "for shared object \"%s\"", name);
1657                         return (NULL);
1658                 }
1659                 return (origin_subst(__DECONST(Obj_Entry *, refobj),
1660                     __DECONST(char *, name)));
1661         }
1662
1663         dbg(" Searching for \"%s\"", name);
1664         refobj_path = objgiven ? refobj->path : NULL;
1665
1666         /*
1667          * If refobj->rpath != NULL, then refobj->runpath is NULL.  Fall
1668          * back to pre-conforming behaviour if user requested so with
1669          * LD_LIBRARY_PATH_RPATH environment variable and ignore -z
1670          * nodeflib.
1671          */
1672         if (objgiven && refobj->rpath != NULL && ld_library_path_rpath) {
1673                 pathname = search_library_path(name, ld_library_path,
1674                     refobj_path, fdp);
1675                 if (pathname != NULL)
1676                         return (pathname);
1677                 if (refobj != NULL) {
1678                         pathname = search_library_path(name, refobj->rpath,
1679                             refobj_path, fdp);
1680                         if (pathname != NULL)
1681                                 return (pathname);
1682                 }
1683                 pathname = search_library_pathfds(name, ld_library_dirs, fdp);
1684                 if (pathname != NULL)
1685                         return (pathname);
1686                 pathname = search_library_path(name, gethints(false),
1687                     refobj_path, fdp);
1688                 if (pathname != NULL)
1689                         return (pathname);
1690                 pathname = search_library_path(name, ld_standard_library_path,
1691                     refobj_path, fdp);
1692                 if (pathname != NULL)
1693                         return (pathname);
1694         } else {
1695                 nodeflib = objgiven ? refobj->z_nodeflib : false;
1696                 if (objgiven) {
1697                         pathname = search_library_path(name, refobj->rpath,
1698                             refobj->path, fdp);
1699                         if (pathname != NULL)
1700                                 return (pathname);
1701                 }
1702                 if (objgiven && refobj->runpath == NULL && refobj != obj_main) {
1703                         pathname = search_library_path(name, obj_main->rpath,
1704                             refobj_path, fdp);
1705                         if (pathname != NULL)
1706                                 return (pathname);
1707                 }
1708                 pathname = search_library_path(name, ld_library_path,
1709                     refobj_path, fdp);
1710                 if (pathname != NULL)
1711                         return (pathname);
1712                 if (objgiven) {
1713                         pathname = search_library_path(name, refobj->runpath,
1714                             refobj_path, fdp);
1715                         if (pathname != NULL)
1716                                 return (pathname);
1717                 }
1718                 pathname = search_library_pathfds(name, ld_library_dirs, fdp);
1719                 if (pathname != NULL)
1720                         return (pathname);
1721                 pathname = search_library_path(name, gethints(nodeflib),
1722                     refobj_path, fdp);
1723                 if (pathname != NULL)
1724                         return (pathname);
1725                 if (objgiven && !nodeflib) {
1726                         pathname = search_library_path(name,
1727                             ld_standard_library_path, refobj_path, fdp);
1728                         if (pathname != NULL)
1729                                 return (pathname);
1730                 }
1731         }
1732
1733         if (objgiven && refobj->path != NULL) {
1734                 _rtld_error("Shared object \"%s\" not found, "
1735                     "required by \"%s\"", name, basename(refobj->path));
1736         } else {
1737                 _rtld_error("Shared object \"%s\" not found", name);
1738         }
1739         return (NULL);
1740 }
1741
1742 /*
1743  * Given a symbol number in a referencing object, find the corresponding
1744  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
1745  * no definition was found.  Returns a pointer to the Obj_Entry of the
1746  * defining object via the reference parameter DEFOBJ_OUT.
1747  */
1748 const Elf_Sym *
1749 find_symdef(unsigned long symnum, const Obj_Entry *refobj,
1750     const Obj_Entry **defobj_out, int flags, SymCache *cache,
1751     RtldLockState *lockstate)
1752 {
1753     const Elf_Sym *ref;
1754     const Elf_Sym *def;
1755     const Obj_Entry *defobj;
1756     const Ver_Entry *ve;
1757     SymLook req;
1758     const char *name;
1759     int res;
1760
1761     /*
1762      * If we have already found this symbol, get the information from
1763      * the cache.
1764      */
1765     if (symnum >= refobj->dynsymcount)
1766         return NULL;    /* Bad object */
1767     if (cache != NULL && cache[symnum].sym != NULL) {
1768         *defobj_out = cache[symnum].obj;
1769         return cache[symnum].sym;
1770     }
1771
1772     ref = refobj->symtab + symnum;
1773     name = refobj->strtab + ref->st_name;
1774     def = NULL;
1775     defobj = NULL;
1776     ve = NULL;
1777
1778     /*
1779      * We don't have to do a full scale lookup if the symbol is local.
1780      * We know it will bind to the instance in this load module; to
1781      * which we already have a pointer (ie ref). By not doing a lookup,
1782      * we not only improve performance, but it also avoids unresolvable
1783      * symbols when local symbols are not in the hash table. This has
1784      * been seen with the ia64 toolchain.
1785      */
1786     if (ELF_ST_BIND(ref->st_info) != STB_LOCAL) {
1787         if (ELF_ST_TYPE(ref->st_info) == STT_SECTION) {
1788             _rtld_error("%s: Bogus symbol table entry %lu", refobj->path,
1789                 symnum);
1790         }
1791         symlook_init(&req, name);
1792         req.flags = flags;
1793         ve = req.ventry = fetch_ventry(refobj, symnum);
1794         req.lockstate = lockstate;
1795         res = symlook_default(&req, refobj);
1796         if (res == 0) {
1797             def = req.sym_out;
1798             defobj = req.defobj_out;
1799         }
1800     } else {
1801         def = ref;
1802         defobj = refobj;
1803     }
1804
1805     /*
1806      * If we found no definition and the reference is weak, treat the
1807      * symbol as having the value zero.
1808      */
1809     if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
1810         def = &sym_zero;
1811         defobj = obj_main;
1812     }
1813
1814     if (def != NULL) {
1815         *defobj_out = defobj;
1816         /* Record the information in the cache to avoid subsequent lookups. */
1817         if (cache != NULL) {
1818             cache[symnum].sym = def;
1819             cache[symnum].obj = defobj;
1820         }
1821     } else {
1822         if (refobj != &obj_rtld)
1823             _rtld_error("%s: Undefined symbol \"%s%s%s\"", refobj->path, name,
1824               ve != NULL ? "@" : "", ve != NULL ? ve->name : "");
1825     }
1826     return def;
1827 }
1828
1829 /*
1830  * Return the search path from the ldconfig hints file, reading it if
1831  * necessary.  If nostdlib is true, then the default search paths are
1832  * not added to result.
1833  *
1834  * Returns NULL if there are problems with the hints file,
1835  * or if the search path there is empty.
1836  */
1837 static const char *
1838 gethints(bool nostdlib)
1839 {
1840         static char *filtered_path;
1841         static const char *hints;
1842         static struct elfhints_hdr hdr;
1843         struct fill_search_info_args sargs, hargs;
1844         struct dl_serinfo smeta, hmeta, *SLPinfo, *hintinfo;
1845         struct dl_serpath *SLPpath, *hintpath;
1846         char *p;
1847         struct stat hint_stat;
1848         unsigned int SLPndx, hintndx, fndx, fcount;
1849         int fd;
1850         size_t flen;
1851         uint32_t dl;
1852         bool skip;
1853
1854         /* First call, read the hints file */
1855         if (hints == NULL) {
1856                 /* Keep from trying again in case the hints file is bad. */
1857                 hints = "";
1858
1859                 if ((fd = open(ld_elf_hints_path, O_RDONLY | O_CLOEXEC)) == -1)
1860                         return (NULL);
1861
1862                 /*
1863                  * Check of hdr.dirlistlen value against type limit
1864                  * intends to pacify static analyzers.  Further
1865                  * paranoia leads to checks that dirlist is fully
1866                  * contained in the file range.
1867                  */
1868                 if (read(fd, &hdr, sizeof hdr) != sizeof hdr ||
1869                     hdr.magic != ELFHINTS_MAGIC ||
1870                     hdr.version != 1 || hdr.dirlistlen > UINT_MAX / 2 ||
1871                     fstat(fd, &hint_stat) == -1) {
1872 cleanup1:
1873                         close(fd);
1874                         hdr.dirlistlen = 0;
1875                         return (NULL);
1876                 }
1877                 dl = hdr.strtab;
1878                 if (dl + hdr.dirlist < dl)
1879                         goto cleanup1;
1880                 dl += hdr.dirlist;
1881                 if (dl + hdr.dirlistlen < dl)
1882                         goto cleanup1;
1883                 dl += hdr.dirlistlen;
1884                 if (dl > hint_stat.st_size)
1885                         goto cleanup1;
1886                 p = xmalloc(hdr.dirlistlen + 1);
1887                 if (pread(fd, p, hdr.dirlistlen + 1,
1888                     hdr.strtab + hdr.dirlist) != (ssize_t)hdr.dirlistlen + 1 ||
1889                     p[hdr.dirlistlen] != '\0') {
1890                         free(p);
1891                         goto cleanup1;
1892                 }
1893                 hints = p;
1894                 close(fd);
1895         }
1896
1897         /*
1898          * If caller agreed to receive list which includes the default
1899          * paths, we are done. Otherwise, if we still did not
1900          * calculated filtered result, do it now.
1901          */
1902         if (!nostdlib)
1903                 return (hints[0] != '\0' ? hints : NULL);
1904         if (filtered_path != NULL)
1905                 goto filt_ret;
1906
1907         /*
1908          * Obtain the list of all configured search paths, and the
1909          * list of the default paths.
1910          *
1911          * First estimate the size of the results.
1912          */
1913         smeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1914         smeta.dls_cnt = 0;
1915         hmeta.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
1916         hmeta.dls_cnt = 0;
1917
1918         sargs.request = RTLD_DI_SERINFOSIZE;
1919         sargs.serinfo = &smeta;
1920         hargs.request = RTLD_DI_SERINFOSIZE;
1921         hargs.serinfo = &hmeta;
1922
1923         path_enumerate(ld_standard_library_path, fill_search_info, NULL,
1924             &sargs);
1925         path_enumerate(hints, fill_search_info, NULL, &hargs);
1926
1927         SLPinfo = xmalloc(smeta.dls_size);
1928         hintinfo = xmalloc(hmeta.dls_size);
1929
1930         /*
1931          * Next fetch both sets of paths.
1932          */
1933         sargs.request = RTLD_DI_SERINFO;
1934         sargs.serinfo = SLPinfo;
1935         sargs.serpath = &SLPinfo->dls_serpath[0];
1936         sargs.strspace = (char *)&SLPinfo->dls_serpath[smeta.dls_cnt];
1937
1938         hargs.request = RTLD_DI_SERINFO;
1939         hargs.serinfo = hintinfo;
1940         hargs.serpath = &hintinfo->dls_serpath[0];
1941         hargs.strspace = (char *)&hintinfo->dls_serpath[hmeta.dls_cnt];
1942
1943         path_enumerate(ld_standard_library_path, fill_search_info, NULL,
1944             &sargs);
1945         path_enumerate(hints, fill_search_info, NULL, &hargs);
1946
1947         /*
1948          * Now calculate the difference between two sets, by excluding
1949          * standard paths from the full set.
1950          */
1951         fndx = 0;
1952         fcount = 0;
1953         filtered_path = xmalloc(hdr.dirlistlen + 1);
1954         hintpath = &hintinfo->dls_serpath[0];
1955         for (hintndx = 0; hintndx < hmeta.dls_cnt; hintndx++, hintpath++) {
1956                 skip = false;
1957                 SLPpath = &SLPinfo->dls_serpath[0];
1958                 /*
1959                  * Check each standard path against current.
1960                  */
1961                 for (SLPndx = 0; SLPndx < smeta.dls_cnt; SLPndx++, SLPpath++) {
1962                         /* matched, skip the path */
1963                         if (!strcmp(hintpath->dls_name, SLPpath->dls_name)) {
1964                                 skip = true;
1965                                 break;
1966                         }
1967                 }
1968                 if (skip)
1969                         continue;
1970                 /*
1971                  * Not matched against any standard path, add the path
1972                  * to result. Separate consequtive paths with ':'.
1973                  */
1974                 if (fcount > 0) {
1975                         filtered_path[fndx] = ':';
1976                         fndx++;
1977                 }
1978                 fcount++;
1979                 flen = strlen(hintpath->dls_name);
1980                 strncpy((filtered_path + fndx), hintpath->dls_name, flen);
1981                 fndx += flen;
1982         }
1983         filtered_path[fndx] = '\0';
1984
1985         free(SLPinfo);
1986         free(hintinfo);
1987
1988 filt_ret:
1989         return (filtered_path[0] != '\0' ? filtered_path : NULL);
1990 }
1991
1992 static void
1993 init_dag(Obj_Entry *root)
1994 {
1995     const Needed_Entry *needed;
1996     const Objlist_Entry *elm;
1997     DoneList donelist;
1998
1999     if (root->dag_inited)
2000         return;
2001     donelist_init(&donelist);
2002
2003     /* Root object belongs to own DAG. */
2004     objlist_push_tail(&root->dldags, root);
2005     objlist_push_tail(&root->dagmembers, root);
2006     donelist_check(&donelist, root);
2007
2008     /*
2009      * Add dependencies of root object to DAG in breadth order
2010      * by exploiting the fact that each new object get added
2011      * to the tail of the dagmembers list.
2012      */
2013     STAILQ_FOREACH(elm, &root->dagmembers, link) {
2014         for (needed = elm->obj->needed; needed != NULL; needed = needed->next) {
2015             if (needed->obj == NULL || donelist_check(&donelist, needed->obj))
2016                 continue;
2017             objlist_push_tail(&needed->obj->dldags, root);
2018             objlist_push_tail(&root->dagmembers, needed->obj);
2019         }
2020     }
2021     root->dag_inited = true;
2022 }
2023
2024 static void
2025 init_marker(Obj_Entry *marker)
2026 {
2027
2028         bzero(marker, sizeof(*marker));
2029         marker->marker = true;
2030 }
2031
2032 Obj_Entry *
2033 globallist_curr(const Obj_Entry *obj)
2034 {
2035
2036         for (;;) {
2037                 if (obj == NULL)
2038                         return (NULL);
2039                 if (!obj->marker)
2040                         return (__DECONST(Obj_Entry *, obj));
2041                 obj = TAILQ_PREV(obj, obj_entry_q, next);
2042         }
2043 }
2044
2045 Obj_Entry *
2046 globallist_next(const Obj_Entry *obj)
2047 {
2048
2049         for (;;) {
2050                 obj = TAILQ_NEXT(obj, next);
2051                 if (obj == NULL)
2052                         return (NULL);
2053                 if (!obj->marker)
2054                         return (__DECONST(Obj_Entry *, obj));
2055         }
2056 }
2057
2058 /* Prevent the object from being unmapped while the bind lock is dropped. */
2059 static void
2060 hold_object(Obj_Entry *obj)
2061 {
2062
2063         obj->holdcount++;
2064 }
2065
2066 static void
2067 unhold_object(Obj_Entry *obj)
2068 {
2069
2070         assert(obj->holdcount > 0);
2071         if (--obj->holdcount == 0 && obj->unholdfree)
2072                 release_object(obj);
2073 }
2074
2075 static void
2076 process_z(Obj_Entry *root)
2077 {
2078         const Objlist_Entry *elm;
2079         Obj_Entry *obj;
2080
2081         /*
2082          * Walk over object DAG and process every dependent object
2083          * that is marked as DF_1_NODELETE or DF_1_GLOBAL. They need
2084          * to grow their own DAG.
2085          *
2086          * For DF_1_GLOBAL, DAG is required for symbol lookups in
2087          * symlook_global() to work.
2088          *
2089          * For DF_1_NODELETE, the DAG should have its reference upped.
2090          */
2091         STAILQ_FOREACH(elm, &root->dagmembers, link) {
2092                 obj = elm->obj;
2093                 if (obj == NULL)
2094                         continue;
2095                 if (obj->z_nodelete && !obj->ref_nodel) {
2096                         dbg("obj %s -z nodelete", obj->path);
2097                         init_dag(obj);
2098                         ref_dag(obj);
2099                         obj->ref_nodel = true;
2100                 }
2101                 if (obj->z_global && objlist_find(&list_global, obj) == NULL) {
2102                         dbg("obj %s -z global", obj->path);
2103                         objlist_push_tail(&list_global, obj);
2104                         init_dag(obj);
2105                 }
2106         }
2107 }
2108 /*
2109  * Initialize the dynamic linker.  The argument is the address at which
2110  * the dynamic linker has been mapped into memory.  The primary task of
2111  * this function is to relocate the dynamic linker.
2112  */
2113 static void
2114 init_rtld(caddr_t mapbase, Elf_Auxinfo **aux_info)
2115 {
2116     Obj_Entry objtmp;   /* Temporary rtld object */
2117     const Elf_Ehdr *ehdr;
2118     const Elf_Dyn *dyn_rpath;
2119     const Elf_Dyn *dyn_soname;
2120     const Elf_Dyn *dyn_runpath;
2121
2122 #ifdef RTLD_INIT_PAGESIZES_EARLY
2123     /* The page size is required by the dynamic memory allocator. */
2124     init_pagesizes(aux_info);
2125 #endif
2126
2127     /*
2128      * Conjure up an Obj_Entry structure for the dynamic linker.
2129      *
2130      * The "path" member can't be initialized yet because string constants
2131      * cannot yet be accessed. Below we will set it correctly.
2132      */
2133     memset(&objtmp, 0, sizeof(objtmp));
2134     objtmp.path = NULL;
2135     objtmp.rtld = true;
2136     objtmp.mapbase = mapbase;
2137 #ifdef PIC
2138     objtmp.relocbase = mapbase;
2139 #endif
2140
2141     objtmp.dynamic = rtld_dynamic(&objtmp);
2142     digest_dynamic1(&objtmp, 1, &dyn_rpath, &dyn_soname, &dyn_runpath);
2143     assert(objtmp.needed == NULL);
2144 #if !defined(__mips__)
2145     /* MIPS has a bogus DT_TEXTREL. */
2146     assert(!objtmp.textrel);
2147 #endif
2148     /*
2149      * Temporarily put the dynamic linker entry into the object list, so
2150      * that symbols can be found.
2151      */
2152     relocate_objects(&objtmp, true, &objtmp, 0, NULL);
2153
2154     ehdr = (Elf_Ehdr *)mapbase;
2155     objtmp.phdr = (Elf_Phdr *)((char *)mapbase + ehdr->e_phoff);
2156     objtmp.phsize = ehdr->e_phnum * sizeof(objtmp.phdr[0]);
2157
2158     /* Initialize the object list. */
2159     TAILQ_INIT(&obj_list);
2160
2161     /* Now that non-local variables can be accesses, copy out obj_rtld. */
2162     memcpy(&obj_rtld, &objtmp, sizeof(obj_rtld));
2163
2164 #ifndef RTLD_INIT_PAGESIZES_EARLY
2165     /* The page size is required by the dynamic memory allocator. */
2166     init_pagesizes(aux_info);
2167 #endif
2168
2169     if (aux_info[AT_OSRELDATE] != NULL)
2170             osreldate = aux_info[AT_OSRELDATE]->a_un.a_val;
2171
2172     digest_dynamic2(&obj_rtld, dyn_rpath, dyn_soname, dyn_runpath);
2173
2174     /* Replace the path with a dynamically allocated copy. */
2175     obj_rtld.path = xstrdup(ld_path_rtld);
2176
2177     r_debug.r_brk = r_debug_state;
2178     r_debug.r_state = RT_CONSISTENT;
2179 }
2180
2181 /*
2182  * Retrieve the array of supported page sizes.  The kernel provides the page
2183  * sizes in increasing order.
2184  */
2185 static void
2186 init_pagesizes(Elf_Auxinfo **aux_info)
2187 {
2188         static size_t psa[MAXPAGESIZES];
2189         int mib[2];
2190         size_t len, size;
2191
2192         if (aux_info[AT_PAGESIZES] != NULL && aux_info[AT_PAGESIZESLEN] !=
2193             NULL) {
2194                 size = aux_info[AT_PAGESIZESLEN]->a_un.a_val;
2195                 pagesizes = aux_info[AT_PAGESIZES]->a_un.a_ptr;
2196         } else {
2197                 len = 2;
2198                 if (sysctlnametomib("hw.pagesizes", mib, &len) == 0)
2199                         size = sizeof(psa);
2200                 else {
2201                         /* As a fallback, retrieve the base page size. */
2202                         size = sizeof(psa[0]);
2203                         if (aux_info[AT_PAGESZ] != NULL) {
2204                                 psa[0] = aux_info[AT_PAGESZ]->a_un.a_val;
2205                                 goto psa_filled;
2206                         } else {
2207                                 mib[0] = CTL_HW;
2208                                 mib[1] = HW_PAGESIZE;
2209                                 len = 2;
2210                         }
2211                 }
2212                 if (sysctl(mib, len, psa, &size, NULL, 0) == -1) {
2213                         _rtld_error("sysctl for hw.pagesize(s) failed");
2214                         rtld_die();
2215                 }
2216 psa_filled:
2217                 pagesizes = psa;
2218         }
2219         npagesizes = size / sizeof(pagesizes[0]);
2220         /* Discard any invalid entries at the end of the array. */
2221         while (npagesizes > 0 && pagesizes[npagesizes - 1] == 0)
2222                 npagesizes--;
2223 }
2224
2225 /*
2226  * Add the init functions from a needed object list (and its recursive
2227  * needed objects) to "list".  This is not used directly; it is a helper
2228  * function for initlist_add_objects().  The write lock must be held
2229  * when this function is called.
2230  */
2231 static void
2232 initlist_add_neededs(Needed_Entry *needed, Objlist *list)
2233 {
2234     /* Recursively process the successor needed objects. */
2235     if (needed->next != NULL)
2236         initlist_add_neededs(needed->next, list);
2237
2238     /* Process the current needed object. */
2239     if (needed->obj != NULL)
2240         initlist_add_objects(needed->obj, needed->obj, list);
2241 }
2242
2243 /*
2244  * Scan all of the DAGs rooted in the range of objects from "obj" to
2245  * "tail" and add their init functions to "list".  This recurses over
2246  * the DAGs and ensure the proper init ordering such that each object's
2247  * needed libraries are initialized before the object itself.  At the
2248  * same time, this function adds the objects to the global finalization
2249  * list "list_fini" in the opposite order.  The write lock must be
2250  * held when this function is called.
2251  */
2252 static void
2253 initlist_add_objects(Obj_Entry *obj, Obj_Entry *tail, Objlist *list)
2254 {
2255     Obj_Entry *nobj;
2256
2257     if (obj->init_scanned || obj->init_done)
2258         return;
2259     obj->init_scanned = true;
2260
2261     /* Recursively process the successor objects. */
2262     nobj = globallist_next(obj);
2263     if (nobj != NULL && obj != tail)
2264         initlist_add_objects(nobj, tail, list);
2265
2266     /* Recursively process the needed objects. */
2267     if (obj->needed != NULL)
2268         initlist_add_neededs(obj->needed, list);
2269     if (obj->needed_filtees != NULL)
2270         initlist_add_neededs(obj->needed_filtees, list);
2271     if (obj->needed_aux_filtees != NULL)
2272         initlist_add_neededs(obj->needed_aux_filtees, list);
2273
2274     /* Add the object to the init list. */
2275     objlist_push_tail(list, obj);
2276
2277     /* Add the object to the global fini list in the reverse order. */
2278     if ((obj->fini != (Elf_Addr)NULL || obj->fini_array != (Elf_Addr)NULL)
2279       && !obj->on_fini_list) {
2280         objlist_push_head(&list_fini, obj);
2281         obj->on_fini_list = true;
2282     }
2283 }
2284
2285 #ifndef FPTR_TARGET
2286 #define FPTR_TARGET(f)  ((Elf_Addr) (f))
2287 #endif
2288
2289 static void
2290 free_needed_filtees(Needed_Entry *n, RtldLockState *lockstate)
2291 {
2292     Needed_Entry *needed, *needed1;
2293
2294     for (needed = n; needed != NULL; needed = needed->next) {
2295         if (needed->obj != NULL) {
2296             dlclose_locked(needed->obj, lockstate);
2297             needed->obj = NULL;
2298         }
2299     }
2300     for (needed = n; needed != NULL; needed = needed1) {
2301         needed1 = needed->next;
2302         free(needed);
2303     }
2304 }
2305
2306 static void
2307 unload_filtees(Obj_Entry *obj, RtldLockState *lockstate)
2308 {
2309
2310         free_needed_filtees(obj->needed_filtees, lockstate);
2311         obj->needed_filtees = NULL;
2312         free_needed_filtees(obj->needed_aux_filtees, lockstate);
2313         obj->needed_aux_filtees = NULL;
2314         obj->filtees_loaded = false;
2315 }
2316
2317 static void
2318 load_filtee1(Obj_Entry *obj, Needed_Entry *needed, int flags,
2319     RtldLockState *lockstate)
2320 {
2321
2322     for (; needed != NULL; needed = needed->next) {
2323         needed->obj = dlopen_object(obj->strtab + needed->name, -1, obj,
2324           flags, ((ld_loadfltr || obj->z_loadfltr) ? RTLD_NOW : RTLD_LAZY) |
2325           RTLD_LOCAL, lockstate);
2326     }
2327 }
2328
2329 static void
2330 load_filtees(Obj_Entry *obj, int flags, RtldLockState *lockstate)
2331 {
2332
2333     lock_restart_for_upgrade(lockstate);
2334     if (!obj->filtees_loaded) {
2335         load_filtee1(obj, obj->needed_filtees, flags, lockstate);
2336         load_filtee1(obj, obj->needed_aux_filtees, flags, lockstate);
2337         obj->filtees_loaded = true;
2338     }
2339 }
2340
2341 static int
2342 process_needed(Obj_Entry *obj, Needed_Entry *needed, int flags)
2343 {
2344     Obj_Entry *obj1;
2345
2346     for (; needed != NULL; needed = needed->next) {
2347         obj1 = needed->obj = load_object(obj->strtab + needed->name, -1, obj,
2348           flags & ~RTLD_LO_NOLOAD);
2349         if (obj1 == NULL && !ld_tracing && (flags & RTLD_LO_FILTEES) == 0)
2350             return (-1);
2351     }
2352     return (0);
2353 }
2354
2355 /*
2356  * Given a shared object, traverse its list of needed objects, and load
2357  * each of them.  Returns 0 on success.  Generates an error message and
2358  * returns -1 on failure.
2359  */
2360 static int
2361 load_needed_objects(Obj_Entry *first, int flags)
2362 {
2363     Obj_Entry *obj;
2364
2365     for (obj = first; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
2366         if (obj->marker)
2367             continue;
2368         if (process_needed(obj, obj->needed, flags) == -1)
2369             return (-1);
2370     }
2371     return (0);
2372 }
2373
2374 static int
2375 load_preload_objects(void)
2376 {
2377     char *p = ld_preload;
2378     Obj_Entry *obj;
2379     static const char delim[] = " \t:;";
2380
2381     if (p == NULL)
2382         return 0;
2383
2384     p += strspn(p, delim);
2385     while (*p != '\0') {
2386         size_t len = strcspn(p, delim);
2387         char savech;
2388
2389         savech = p[len];
2390         p[len] = '\0';
2391         obj = load_object(p, -1, NULL, 0);
2392         if (obj == NULL)
2393             return -1;  /* XXX - cleanup */
2394         obj->z_interpose = true;
2395         p[len] = savech;
2396         p += len;
2397         p += strspn(p, delim);
2398     }
2399     LD_UTRACE(UTRACE_PRELOAD_FINISHED, NULL, NULL, 0, 0, NULL);
2400     return 0;
2401 }
2402
2403 static const char *
2404 printable_path(const char *path)
2405 {
2406
2407         return (path == NULL ? "<unknown>" : path);
2408 }
2409
2410 /*
2411  * Load a shared object into memory, if it is not already loaded.  The
2412  * object may be specified by name or by user-supplied file descriptor
2413  * fd_u. In the later case, the fd_u descriptor is not closed, but its
2414  * duplicate is.
2415  *
2416  * Returns a pointer to the Obj_Entry for the object.  Returns NULL
2417  * on failure.
2418  */
2419 static Obj_Entry *
2420 load_object(const char *name, int fd_u, const Obj_Entry *refobj, int flags)
2421 {
2422     Obj_Entry *obj;
2423     int fd;
2424     struct stat sb;
2425     char *path;
2426
2427     fd = -1;
2428     if (name != NULL) {
2429         TAILQ_FOREACH(obj, &obj_list, next) {
2430             if (obj->marker || obj->doomed)
2431                 continue;
2432             if (object_match_name(obj, name))
2433                 return (obj);
2434         }
2435
2436         path = find_library(name, refobj, &fd);
2437         if (path == NULL)
2438             return (NULL);
2439     } else
2440         path = NULL;
2441
2442     if (fd >= 0) {
2443         /*
2444          * search_library_pathfds() opens a fresh file descriptor for the
2445          * library, so there is no need to dup().
2446          */
2447     } else if (fd_u == -1) {
2448         /*
2449          * If we didn't find a match by pathname, or the name is not
2450          * supplied, open the file and check again by device and inode.
2451          * This avoids false mismatches caused by multiple links or ".."
2452          * in pathnames.
2453          *
2454          * To avoid a race, we open the file and use fstat() rather than
2455          * using stat().
2456          */
2457         if ((fd = open(path, O_RDONLY | O_CLOEXEC | O_VERIFY)) == -1) {
2458             _rtld_error("Cannot open \"%s\"", path);
2459             free(path);
2460             return (NULL);
2461         }
2462     } else {
2463         fd = fcntl(fd_u, F_DUPFD_CLOEXEC, 0);
2464         if (fd == -1) {
2465             _rtld_error("Cannot dup fd");
2466             free(path);
2467             return (NULL);
2468         }
2469     }
2470     if (fstat(fd, &sb) == -1) {
2471         _rtld_error("Cannot fstat \"%s\"", printable_path(path));
2472         close(fd);
2473         free(path);
2474         return NULL;
2475     }
2476     TAILQ_FOREACH(obj, &obj_list, next) {
2477         if (obj->marker || obj->doomed)
2478             continue;
2479         if (obj->ino == sb.st_ino && obj->dev == sb.st_dev)
2480             break;
2481     }
2482     if (obj != NULL && name != NULL) {
2483         object_add_name(obj, name);
2484         free(path);
2485         close(fd);
2486         return obj;
2487     }
2488     if (flags & RTLD_LO_NOLOAD) {
2489         free(path);
2490         close(fd);
2491         return (NULL);
2492     }
2493
2494     /* First use of this object, so we must map it in */
2495     obj = do_load_object(fd, name, path, &sb, flags);
2496     if (obj == NULL)
2497         free(path);
2498     close(fd);
2499
2500     return obj;
2501 }
2502
2503 static Obj_Entry *
2504 do_load_object(int fd, const char *name, char *path, struct stat *sbp,
2505   int flags)
2506 {
2507     Obj_Entry *obj;
2508     struct statfs fs;
2509
2510     /*
2511      * but first, make sure that environment variables haven't been
2512      * used to circumvent the noexec flag on a filesystem.
2513      */
2514     if (dangerous_ld_env) {
2515         if (fstatfs(fd, &fs) != 0) {
2516             _rtld_error("Cannot fstatfs \"%s\"", printable_path(path));
2517             return NULL;
2518         }
2519         if (fs.f_flags & MNT_NOEXEC) {
2520             _rtld_error("Cannot execute objects on %s", fs.f_mntonname);
2521             return NULL;
2522         }
2523     }
2524     dbg("loading \"%s\"", printable_path(path));
2525     obj = map_object(fd, printable_path(path), sbp);
2526     if (obj == NULL)
2527         return NULL;
2528
2529     /*
2530      * If DT_SONAME is present in the object, digest_dynamic2 already
2531      * added it to the object names.
2532      */
2533     if (name != NULL)
2534         object_add_name(obj, name);
2535     obj->path = path;
2536     if (!digest_dynamic(obj, 0))
2537         goto errp;
2538     if (obj->z_pie) {
2539         _rtld_error("Cannot load PIE binary %s as DSO", obj->path);
2540         goto errp;
2541     }
2542     dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d", obj->path,
2543         obj->valid_hash_sysv, obj->valid_hash_gnu, obj->dynsymcount);
2544     if (obj->z_noopen && (flags & (RTLD_LO_DLOPEN | RTLD_LO_TRACE)) ==
2545       RTLD_LO_DLOPEN) {
2546         dbg("refusing to load non-loadable \"%s\"", obj->path);
2547         _rtld_error("Cannot dlopen non-loadable %s", obj->path);
2548         goto errp;
2549     }
2550
2551     obj->dlopened = (flags & RTLD_LO_DLOPEN) != 0;
2552     TAILQ_INSERT_TAIL(&obj_list, obj, next);
2553     obj_count++;
2554     obj_loads++;
2555     linkmap_add(obj);   /* for GDB & dlinfo() */
2556     max_stack_flags |= obj->stack_flags;
2557
2558     dbg("  %p .. %p: %s", obj->mapbase,
2559          obj->mapbase + obj->mapsize - 1, obj->path);
2560     if (obj->textrel)
2561         dbg("  WARNING: %s has impure text", obj->path);
2562     LD_UTRACE(UTRACE_LOAD_OBJECT, obj, obj->mapbase, obj->mapsize, 0,
2563         obj->path);    
2564
2565     return (obj);
2566
2567 errp:
2568     munmap(obj->mapbase, obj->mapsize);
2569     obj_free(obj);
2570     return (NULL);
2571 }
2572
2573 static Obj_Entry *
2574 obj_from_addr(const void *addr)
2575 {
2576     Obj_Entry *obj;
2577
2578     TAILQ_FOREACH(obj, &obj_list, next) {
2579         if (obj->marker)
2580             continue;
2581         if (addr < (void *) obj->mapbase)
2582             continue;
2583         if (addr < (void *)(obj->mapbase + obj->mapsize))
2584             return obj;
2585     }
2586     return NULL;
2587 }
2588
2589 static void
2590 preinit_main(void)
2591 {
2592     Elf_Addr *preinit_addr;
2593     int index;
2594
2595     preinit_addr = (Elf_Addr *)obj_main->preinit_array;
2596     if (preinit_addr == NULL)
2597         return;
2598
2599     for (index = 0; index < obj_main->preinit_array_num; index++) {
2600         if (preinit_addr[index] != 0 && preinit_addr[index] != 1) {
2601             dbg("calling preinit function for %s at %p", obj_main->path,
2602               (void *)preinit_addr[index]);
2603             LD_UTRACE(UTRACE_INIT_CALL, obj_main, (void *)preinit_addr[index],
2604               0, 0, obj_main->path);
2605             call_init_pointer(obj_main, preinit_addr[index]);
2606         }
2607     }
2608 }
2609
2610 /*
2611  * Call the finalization functions for each of the objects in "list"
2612  * belonging to the DAG of "root" and referenced once. If NULL "root"
2613  * is specified, every finalization function will be called regardless
2614  * of the reference count and the list elements won't be freed. All of
2615  * the objects are expected to have non-NULL fini functions.
2616  */
2617 static void
2618 objlist_call_fini(Objlist *list, Obj_Entry *root, RtldLockState *lockstate)
2619 {
2620     Objlist_Entry *elm;
2621     char *saved_msg;
2622     Elf_Addr *fini_addr;
2623     int index;
2624
2625     assert(root == NULL || root->refcount == 1);
2626
2627     if (root != NULL)
2628         root->doomed = true;
2629
2630     /*
2631      * Preserve the current error message since a fini function might
2632      * call into the dynamic linker and overwrite it.
2633      */
2634     saved_msg = errmsg_save();
2635     do {
2636         STAILQ_FOREACH(elm, list, link) {
2637             if (root != NULL && (elm->obj->refcount != 1 ||
2638               objlist_find(&root->dagmembers, elm->obj) == NULL))
2639                 continue;
2640             /* Remove object from fini list to prevent recursive invocation. */
2641             STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2642             /* Ensure that new references cannot be acquired. */
2643             elm->obj->doomed = true;
2644
2645             hold_object(elm->obj);
2646             lock_release(rtld_bind_lock, lockstate);
2647             /*
2648              * It is legal to have both DT_FINI and DT_FINI_ARRAY defined.
2649              * When this happens, DT_FINI_ARRAY is processed first.
2650              */
2651             fini_addr = (Elf_Addr *)elm->obj->fini_array;
2652             if (fini_addr != NULL && elm->obj->fini_array_num > 0) {
2653                 for (index = elm->obj->fini_array_num - 1; index >= 0;
2654                   index--) {
2655                     if (fini_addr[index] != 0 && fini_addr[index] != 1) {
2656                         dbg("calling fini function for %s at %p",
2657                             elm->obj->path, (void *)fini_addr[index]);
2658                         LD_UTRACE(UTRACE_FINI_CALL, elm->obj,
2659                             (void *)fini_addr[index], 0, 0, elm->obj->path);
2660                         call_initfini_pointer(elm->obj, fini_addr[index]);
2661                     }
2662                 }
2663             }
2664             if (elm->obj->fini != (Elf_Addr)NULL) {
2665                 dbg("calling fini function for %s at %p", elm->obj->path,
2666                     (void *)elm->obj->fini);
2667                 LD_UTRACE(UTRACE_FINI_CALL, elm->obj, (void *)elm->obj->fini,
2668                     0, 0, elm->obj->path);
2669                 call_initfini_pointer(elm->obj, elm->obj->fini);
2670             }
2671             wlock_acquire(rtld_bind_lock, lockstate);
2672             unhold_object(elm->obj);
2673             /* No need to free anything if process is going down. */
2674             if (root != NULL)
2675                 free(elm);
2676             /*
2677              * We must restart the list traversal after every fini call
2678              * because a dlclose() call from the fini function or from
2679              * another thread might have modified the reference counts.
2680              */
2681             break;
2682         }
2683     } while (elm != NULL);
2684     errmsg_restore(saved_msg);
2685 }
2686
2687 /*
2688  * Call the initialization functions for each of the objects in
2689  * "list".  All of the objects are expected to have non-NULL init
2690  * functions.
2691  */
2692 static void
2693 objlist_call_init(Objlist *list, RtldLockState *lockstate)
2694 {
2695     Objlist_Entry *elm;
2696     Obj_Entry *obj;
2697     char *saved_msg;
2698     Elf_Addr *init_addr;
2699     void (*reg)(void (*)(void));
2700     int index;
2701
2702     /*
2703      * Clean init_scanned flag so that objects can be rechecked and
2704      * possibly initialized earlier if any of vectors called below
2705      * cause the change by using dlopen.
2706      */
2707     TAILQ_FOREACH(obj, &obj_list, next) {
2708         if (obj->marker)
2709             continue;
2710         obj->init_scanned = false;
2711     }
2712
2713     /*
2714      * Preserve the current error message since an init function might
2715      * call into the dynamic linker and overwrite it.
2716      */
2717     saved_msg = errmsg_save();
2718     STAILQ_FOREACH(elm, list, link) {
2719         if (elm->obj->init_done) /* Initialized early. */
2720             continue;
2721         /*
2722          * Race: other thread might try to use this object before current
2723          * one completes the initialization. Not much can be done here
2724          * without better locking.
2725          */
2726         elm->obj->init_done = true;
2727         hold_object(elm->obj);
2728         reg = NULL;
2729         if (elm->obj == obj_main && obj_main->crt_no_init) {
2730                 reg = (void (*)(void (*)(void)))get_program_var_addr(
2731                     "__libc_atexit", lockstate);
2732         }
2733         lock_release(rtld_bind_lock, lockstate);
2734         if (reg != NULL) {
2735                 reg(rtld_exit);
2736                 rtld_exit_ptr = rtld_nop_exit;
2737         }
2738
2739         /*
2740          * It is legal to have both DT_INIT and DT_INIT_ARRAY defined.
2741          * When this happens, DT_INIT is processed first.
2742          */
2743         if (elm->obj->init != (Elf_Addr)NULL) {
2744             dbg("calling init function for %s at %p", elm->obj->path,
2745                 (void *)elm->obj->init);
2746             LD_UTRACE(UTRACE_INIT_CALL, elm->obj, (void *)elm->obj->init,
2747                 0, 0, elm->obj->path);
2748             call_initfini_pointer(elm->obj, elm->obj->init);
2749         }
2750         init_addr = (Elf_Addr *)elm->obj->init_array;
2751         if (init_addr != NULL) {
2752             for (index = 0; index < elm->obj->init_array_num; index++) {
2753                 if (init_addr[index] != 0 && init_addr[index] != 1) {
2754                     dbg("calling init function for %s at %p", elm->obj->path,
2755                         (void *)init_addr[index]);
2756                     LD_UTRACE(UTRACE_INIT_CALL, elm->obj,
2757                         (void *)init_addr[index], 0, 0, elm->obj->path);
2758                     call_init_pointer(elm->obj, init_addr[index]);
2759                 }
2760             }
2761         }
2762         wlock_acquire(rtld_bind_lock, lockstate);
2763         unhold_object(elm->obj);
2764     }
2765     errmsg_restore(saved_msg);
2766 }
2767
2768 static void
2769 objlist_clear(Objlist *list)
2770 {
2771     Objlist_Entry *elm;
2772
2773     while (!STAILQ_EMPTY(list)) {
2774         elm = STAILQ_FIRST(list);
2775         STAILQ_REMOVE_HEAD(list, link);
2776         free(elm);
2777     }
2778 }
2779
2780 static Objlist_Entry *
2781 objlist_find(Objlist *list, const Obj_Entry *obj)
2782 {
2783     Objlist_Entry *elm;
2784
2785     STAILQ_FOREACH(elm, list, link)
2786         if (elm->obj == obj)
2787             return elm;
2788     return NULL;
2789 }
2790
2791 static void
2792 objlist_init(Objlist *list)
2793 {
2794     STAILQ_INIT(list);
2795 }
2796
2797 static void
2798 objlist_push_head(Objlist *list, Obj_Entry *obj)
2799 {
2800     Objlist_Entry *elm;
2801
2802     elm = NEW(Objlist_Entry);
2803     elm->obj = obj;
2804     STAILQ_INSERT_HEAD(list, elm, link);
2805 }
2806
2807 static void
2808 objlist_push_tail(Objlist *list, Obj_Entry *obj)
2809 {
2810     Objlist_Entry *elm;
2811
2812     elm = NEW(Objlist_Entry);
2813     elm->obj = obj;
2814     STAILQ_INSERT_TAIL(list, elm, link);
2815 }
2816
2817 static void
2818 objlist_put_after(Objlist *list, Obj_Entry *listobj, Obj_Entry *obj)
2819 {
2820         Objlist_Entry *elm, *listelm;
2821
2822         STAILQ_FOREACH(listelm, list, link) {
2823                 if (listelm->obj == listobj)
2824                         break;
2825         }
2826         elm = NEW(Objlist_Entry);
2827         elm->obj = obj;
2828         if (listelm != NULL)
2829                 STAILQ_INSERT_AFTER(list, listelm, elm, link);
2830         else
2831                 STAILQ_INSERT_TAIL(list, elm, link);
2832 }
2833
2834 static void
2835 objlist_remove(Objlist *list, Obj_Entry *obj)
2836 {
2837     Objlist_Entry *elm;
2838
2839     if ((elm = objlist_find(list, obj)) != NULL) {
2840         STAILQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
2841         free(elm);
2842     }
2843 }
2844
2845 /*
2846  * Relocate dag rooted in the specified object.
2847  * Returns 0 on success, or -1 on failure.
2848  */
2849
2850 static int
2851 relocate_object_dag(Obj_Entry *root, bool bind_now, Obj_Entry *rtldobj,
2852     int flags, RtldLockState *lockstate)
2853 {
2854         Objlist_Entry *elm;
2855         int error;
2856
2857         error = 0;
2858         STAILQ_FOREACH(elm, &root->dagmembers, link) {
2859                 error = relocate_object(elm->obj, bind_now, rtldobj, flags,
2860                     lockstate);
2861                 if (error == -1)
2862                         break;
2863         }
2864         return (error);
2865 }
2866
2867 /*
2868  * Prepare for, or clean after, relocating an object marked with
2869  * DT_TEXTREL or DF_TEXTREL.  Before relocating, all read-only
2870  * segments are remapped read-write.  After relocations are done, the
2871  * segment's permissions are returned back to the modes specified in
2872  * the phdrs.  If any relocation happened, or always for wired
2873  * program, COW is triggered.
2874  */
2875 static int
2876 reloc_textrel_prot(Obj_Entry *obj, bool before)
2877 {
2878         const Elf_Phdr *ph;
2879         void *base;
2880         size_t l, sz;
2881         int prot;
2882
2883         for (l = obj->phsize / sizeof(*ph), ph = obj->phdr; l > 0;
2884             l--, ph++) {
2885                 if (ph->p_type != PT_LOAD || (ph->p_flags & PF_W) != 0)
2886                         continue;
2887                 base = obj->relocbase + trunc_page(ph->p_vaddr);
2888                 sz = round_page(ph->p_vaddr + ph->p_filesz) -
2889                     trunc_page(ph->p_vaddr);
2890                 prot = convert_prot(ph->p_flags) | (before ? PROT_WRITE : 0);
2891                 if (mprotect(base, sz, prot) == -1) {
2892                         _rtld_error("%s: Cannot write-%sable text segment: %s",
2893                             obj->path, before ? "en" : "dis",
2894                             rtld_strerror(errno));
2895                         return (-1);
2896                 }
2897         }
2898         return (0);
2899 }
2900
2901 /*
2902  * Relocate single object.
2903  * Returns 0 on success, or -1 on failure.
2904  */
2905 static int
2906 relocate_object(Obj_Entry *obj, bool bind_now, Obj_Entry *rtldobj,
2907     int flags, RtldLockState *lockstate)
2908 {
2909
2910         if (obj->relocated)
2911                 return (0);
2912         obj->relocated = true;
2913         if (obj != rtldobj)
2914                 dbg("relocating \"%s\"", obj->path);
2915
2916         if (obj->symtab == NULL || obj->strtab == NULL ||
2917             !(obj->valid_hash_sysv || obj->valid_hash_gnu)) {
2918                 _rtld_error("%s: Shared object has no run-time symbol table",
2919                             obj->path);
2920                 return (-1);
2921         }
2922
2923         /* There are relocations to the write-protected text segment. */
2924         if (obj->textrel && reloc_textrel_prot(obj, true) != 0)
2925                 return (-1);
2926
2927         /* Process the non-PLT non-IFUNC relocations. */
2928         if (reloc_non_plt(obj, rtldobj, flags, lockstate))
2929                 return (-1);
2930
2931         /* Re-protected the text segment. */
2932         if (obj->textrel && reloc_textrel_prot(obj, false) != 0)
2933                 return (-1);
2934
2935         /* Set the special PLT or GOT entries. */
2936         init_pltgot(obj);
2937
2938         /* Process the PLT relocations. */
2939         if (reloc_plt(obj, flags, lockstate) == -1)
2940                 return (-1);
2941         /* Relocate the jump slots if we are doing immediate binding. */
2942         if ((obj->bind_now || bind_now) && reloc_jmpslots(obj, flags,
2943             lockstate) == -1)
2944                 return (-1);
2945
2946         if (!obj->mainprog && obj_enforce_relro(obj) == -1)
2947                 return (-1);
2948
2949         /*
2950          * Set up the magic number and version in the Obj_Entry.  These
2951          * were checked in the crt1.o from the original ElfKit, so we
2952          * set them for backward compatibility.
2953          */
2954         obj->magic = RTLD_MAGIC;
2955         obj->version = RTLD_VERSION;
2956
2957         return (0);
2958 }
2959
2960 /*
2961  * Relocate newly-loaded shared objects.  The argument is a pointer to
2962  * the Obj_Entry for the first such object.  All objects from the first
2963  * to the end of the list of objects are relocated.  Returns 0 on success,
2964  * or -1 on failure.
2965  */
2966 static int
2967 relocate_objects(Obj_Entry *first, bool bind_now, Obj_Entry *rtldobj,
2968     int flags, RtldLockState *lockstate)
2969 {
2970         Obj_Entry *obj;
2971         int error;
2972
2973         for (error = 0, obj = first;  obj != NULL;
2974             obj = TAILQ_NEXT(obj, next)) {
2975                 if (obj->marker)
2976                         continue;
2977                 error = relocate_object(obj, bind_now, rtldobj, flags,
2978                     lockstate);
2979                 if (error == -1)
2980                         break;
2981         }
2982         return (error);
2983 }
2984
2985 /*
2986  * The handling of R_MACHINE_IRELATIVE relocations and jumpslots
2987  * referencing STT_GNU_IFUNC symbols is postponed till the other
2988  * relocations are done.  The indirect functions specified as
2989  * ifunc are allowed to call other symbols, so we need to have
2990  * objects relocated before asking for resolution from indirects.
2991  *
2992  * The R_MACHINE_IRELATIVE slots are resolved in greedy fashion,
2993  * instead of the usual lazy handling of PLT slots.  It is
2994  * consistent with how GNU does it.
2995  */
2996 static int
2997 resolve_object_ifunc(Obj_Entry *obj, bool bind_now, int flags,
2998     RtldLockState *lockstate)
2999 {
3000
3001         if (obj->ifuncs_resolved)
3002                 return (0);
3003         obj->ifuncs_resolved = true;
3004         if (!obj->irelative && !obj->irelative_nonplt &&
3005             !((obj->bind_now || bind_now) && obj->gnu_ifunc))
3006                 return (0);
3007         if (obj_disable_relro(obj) == -1 ||
3008             (obj->irelative && reloc_iresolve(obj, lockstate) == -1) ||
3009             (obj->irelative_nonplt && reloc_iresolve_nonplt(obj,
3010             lockstate) == -1) ||
3011             ((obj->bind_now || bind_now) && obj->gnu_ifunc &&
3012             reloc_gnu_ifunc(obj, flags, lockstate) == -1) ||
3013             obj_enforce_relro(obj) == -1)
3014                 return (-1);
3015         return (0);
3016 }
3017
3018 static int
3019 initlist_objects_ifunc(Objlist *list, bool bind_now, int flags,
3020     RtldLockState *lockstate)
3021 {
3022         Objlist_Entry *elm;
3023         Obj_Entry *obj;
3024
3025         STAILQ_FOREACH(elm, list, link) {
3026                 obj = elm->obj;
3027                 if (obj->marker)
3028                         continue;
3029                 if (resolve_object_ifunc(obj, bind_now, flags,
3030                     lockstate) == -1)
3031                         return (-1);
3032         }
3033         return (0);
3034 }
3035
3036 /*
3037  * Cleanup procedure.  It will be called (by the atexit mechanism) just
3038  * before the process exits.
3039  */
3040 static void
3041 rtld_exit(void)
3042 {
3043     RtldLockState lockstate;
3044
3045     wlock_acquire(rtld_bind_lock, &lockstate);
3046     dbg("rtld_exit()");
3047     objlist_call_fini(&list_fini, NULL, &lockstate);
3048     /* No need to remove the items from the list, since we are exiting. */
3049     if (!libmap_disable)
3050         lm_fini();
3051     lock_release(rtld_bind_lock, &lockstate);
3052 }
3053
3054 static void
3055 rtld_nop_exit(void)
3056 {
3057 }
3058
3059 /*
3060  * Iterate over a search path, translate each element, and invoke the
3061  * callback on the result.
3062  */
3063 static void *
3064 path_enumerate(const char *path, path_enum_proc callback,
3065     const char *refobj_path, void *arg)
3066 {
3067     const char *trans;
3068     if (path == NULL)
3069         return (NULL);
3070
3071     path += strspn(path, ":;");
3072     while (*path != '\0') {
3073         size_t len;
3074         char  *res;
3075
3076         len = strcspn(path, ":;");
3077         trans = lm_findn(refobj_path, path, len);
3078         if (trans)
3079             res = callback(trans, strlen(trans), arg);
3080         else
3081             res = callback(path, len, arg);
3082
3083         if (res != NULL)
3084             return (res);
3085
3086         path += len;
3087         path += strspn(path, ":;");
3088     }
3089
3090     return (NULL);
3091 }
3092
3093 struct try_library_args {
3094     const char  *name;
3095     size_t       namelen;
3096     char        *buffer;
3097     size_t       buflen;
3098     int          fd;
3099 };
3100
3101 static void *
3102 try_library_path(const char *dir, size_t dirlen, void *param)
3103 {
3104     struct try_library_args *arg;
3105     int fd;
3106
3107     arg = param;
3108     if (*dir == '/' || trust) {
3109         char *pathname;
3110
3111         if (dirlen + 1 + arg->namelen + 1 > arg->buflen)
3112                 return (NULL);
3113
3114         pathname = arg->buffer;
3115         strncpy(pathname, dir, dirlen);
3116         pathname[dirlen] = '/';
3117         strcpy(pathname + dirlen + 1, arg->name);
3118
3119         dbg("  Trying \"%s\"", pathname);
3120         fd = open(pathname, O_RDONLY | O_CLOEXEC | O_VERIFY);
3121         if (fd >= 0) {
3122             dbg("  Opened \"%s\", fd %d", pathname, fd);
3123             pathname = xmalloc(dirlen + 1 + arg->namelen + 1);
3124             strcpy(pathname, arg->buffer);
3125             arg->fd = fd;
3126             return (pathname);
3127         } else {
3128             dbg("  Failed to open \"%s\": %s",
3129                 pathname, rtld_strerror(errno));
3130         }
3131     }
3132     return (NULL);
3133 }
3134
3135 static char *
3136 search_library_path(const char *name, const char *path,
3137     const char *refobj_path, int *fdp)
3138 {
3139     char *p;
3140     struct try_library_args arg;
3141
3142     if (path == NULL)
3143         return NULL;
3144
3145     arg.name = name;
3146     arg.namelen = strlen(name);
3147     arg.buffer = xmalloc(PATH_MAX);
3148     arg.buflen = PATH_MAX;
3149     arg.fd = -1;
3150
3151     p = path_enumerate(path, try_library_path, refobj_path, &arg);
3152     *fdp = arg.fd;
3153
3154     free(arg.buffer);
3155
3156     return (p);
3157 }
3158
3159
3160 /*
3161  * Finds the library with the given name using the directory descriptors
3162  * listed in the LD_LIBRARY_PATH_FDS environment variable.
3163  *
3164  * Returns a freshly-opened close-on-exec file descriptor for the library,
3165  * or -1 if the library cannot be found.
3166  */
3167 static char *
3168 search_library_pathfds(const char *name, const char *path, int *fdp)
3169 {
3170         char *envcopy, *fdstr, *found, *last_token;
3171         size_t len;
3172         int dirfd, fd;
3173
3174         dbg("%s('%s', '%s', fdp)", __func__, name, path);
3175
3176         /* Don't load from user-specified libdirs into setuid binaries. */
3177         if (!trust)
3178                 return (NULL);
3179
3180         /* We can't do anything if LD_LIBRARY_PATH_FDS isn't set. */
3181         if (path == NULL)
3182                 return (NULL);
3183
3184         /* LD_LIBRARY_PATH_FDS only works with relative paths. */
3185         if (name[0] == '/') {
3186                 dbg("Absolute path (%s) passed to %s", name, __func__);
3187                 return (NULL);
3188         }
3189
3190         /*
3191          * Use strtok_r() to walk the FD:FD:FD list.  This requires a local
3192          * copy of the path, as strtok_r rewrites separator tokens
3193          * with '\0'.
3194          */
3195         found = NULL;
3196         envcopy = xstrdup(path);
3197         for (fdstr = strtok_r(envcopy, ":", &last_token); fdstr != NULL;
3198             fdstr = strtok_r(NULL, ":", &last_token)) {
3199                 dirfd = parse_integer(fdstr);
3200                 if (dirfd < 0) {
3201                         _rtld_error("failed to parse directory FD: '%s'",
3202                                 fdstr);
3203                         break;
3204                 }
3205                 fd = __sys_openat(dirfd, name, O_RDONLY | O_CLOEXEC | O_VERIFY);
3206                 if (fd >= 0) {
3207                         *fdp = fd;
3208                         len = strlen(fdstr) + strlen(name) + 3;
3209                         found = xmalloc(len);
3210                         if (rtld_snprintf(found, len, "#%d/%s", dirfd, name) < 0) {
3211                                 _rtld_error("error generating '%d/%s'",
3212                                     dirfd, name);
3213                                 rtld_die();
3214                         }
3215                         dbg("open('%s') => %d", found, fd);
3216                         break;
3217                 }
3218         }
3219         free(envcopy);
3220
3221         return (found);
3222 }
3223
3224
3225 int
3226 dlclose(void *handle)
3227 {
3228         RtldLockState lockstate;
3229         int error;
3230
3231         wlock_acquire(rtld_bind_lock, &lockstate);
3232         error = dlclose_locked(handle, &lockstate);
3233         lock_release(rtld_bind_lock, &lockstate);
3234         return (error);
3235 }
3236
3237 static int
3238 dlclose_locked(void *handle, RtldLockState *lockstate)
3239 {
3240     Obj_Entry *root;
3241
3242     root = dlcheck(handle);
3243     if (root == NULL)
3244         return -1;
3245     LD_UTRACE(UTRACE_DLCLOSE_START, handle, NULL, 0, root->dl_refcount,
3246         root->path);
3247
3248     /* Unreference the object and its dependencies. */
3249     root->dl_refcount--;
3250
3251     if (root->refcount == 1) {
3252         /*
3253          * The object will be no longer referenced, so we must unload it.
3254          * First, call the fini functions.
3255          */
3256         objlist_call_fini(&list_fini, root, lockstate);
3257
3258         unref_dag(root);
3259
3260         /* Finish cleaning up the newly-unreferenced objects. */
3261         GDB_STATE(RT_DELETE,&root->linkmap);
3262         unload_object(root, lockstate);
3263         GDB_STATE(RT_CONSISTENT,NULL);
3264     } else
3265         unref_dag(root);
3266
3267     LD_UTRACE(UTRACE_DLCLOSE_STOP, handle, NULL, 0, 0, NULL);
3268     return 0;
3269 }
3270
3271 char *
3272 dlerror(void)
3273 {
3274     char *msg = error_message;
3275     error_message = NULL;
3276     return msg;
3277 }
3278
3279 /*
3280  * This function is deprecated and has no effect.
3281  */
3282 void
3283 dllockinit(void *context,
3284     void *(*_lock_create)(void *context) __unused,
3285     void (*_rlock_acquire)(void *lock) __unused,
3286     void (*_wlock_acquire)(void *lock)  __unused,
3287     void (*_lock_release)(void *lock) __unused,
3288     void (*_lock_destroy)(void *lock) __unused,
3289     void (*context_destroy)(void *context))
3290 {
3291     static void *cur_context;
3292     static void (*cur_context_destroy)(void *);
3293
3294     /* Just destroy the context from the previous call, if necessary. */
3295     if (cur_context_destroy != NULL)
3296         cur_context_destroy(cur_context);
3297     cur_context = context;
3298     cur_context_destroy = context_destroy;
3299 }
3300
3301 void *
3302 dlopen(const char *name, int mode)
3303 {
3304
3305         return (rtld_dlopen(name, -1, mode));
3306 }
3307
3308 void *
3309 fdlopen(int fd, int mode)
3310 {
3311
3312         return (rtld_dlopen(NULL, fd, mode));
3313 }
3314
3315 static void *
3316 rtld_dlopen(const char *name, int fd, int mode)
3317 {
3318     RtldLockState lockstate;
3319     int lo_flags;
3320
3321     LD_UTRACE(UTRACE_DLOPEN_START, NULL, NULL, 0, mode, name);
3322     ld_tracing = (mode & RTLD_TRACE) == 0 ? NULL : "1";
3323     if (ld_tracing != NULL) {
3324         rlock_acquire(rtld_bind_lock, &lockstate);
3325         if (sigsetjmp(lockstate.env, 0) != 0)
3326             lock_upgrade(rtld_bind_lock, &lockstate);
3327         environ = __DECONST(char **, *get_program_var_addr("environ", &lockstate));
3328         lock_release(rtld_bind_lock, &lockstate);
3329     }
3330     lo_flags = RTLD_LO_DLOPEN;
3331     if (mode & RTLD_NODELETE)
3332             lo_flags |= RTLD_LO_NODELETE;
3333     if (mode & RTLD_NOLOAD)
3334             lo_flags |= RTLD_LO_NOLOAD;
3335     if (mode & RTLD_DEEPBIND)
3336             lo_flags |= RTLD_LO_DEEPBIND;
3337     if (ld_tracing != NULL)
3338             lo_flags |= RTLD_LO_TRACE | RTLD_LO_IGNSTLS;
3339
3340     return (dlopen_object(name, fd, obj_main, lo_flags,
3341       mode & (RTLD_MODEMASK | RTLD_GLOBAL), NULL));
3342 }
3343
3344 static void
3345 dlopen_cleanup(Obj_Entry *obj, RtldLockState *lockstate)
3346 {
3347
3348         obj->dl_refcount--;
3349         unref_dag(obj);
3350         if (obj->refcount == 0)
3351                 unload_object(obj, lockstate);
3352 }
3353
3354 static Obj_Entry *
3355 dlopen_object(const char *name, int fd, Obj_Entry *refobj, int lo_flags,
3356     int mode, RtldLockState *lockstate)
3357 {
3358     Obj_Entry *old_obj_tail;
3359     Obj_Entry *obj;
3360     Objlist initlist;
3361     RtldLockState mlockstate;
3362     int result;
3363
3364     objlist_init(&initlist);
3365
3366     if (lockstate == NULL && !(lo_flags & RTLD_LO_EARLY)) {
3367         wlock_acquire(rtld_bind_lock, &mlockstate);
3368         lockstate = &mlockstate;
3369     }
3370     GDB_STATE(RT_ADD,NULL);
3371
3372     old_obj_tail = globallist_curr(TAILQ_LAST(&obj_list, obj_entry_q));
3373     obj = NULL;
3374     if (name == NULL && fd == -1) {
3375         obj = obj_main;
3376         obj->refcount++;
3377     } else {
3378         obj = load_object(name, fd, refobj, lo_flags);
3379     }
3380
3381     if (obj) {
3382         obj->dl_refcount++;
3383         if (mode & RTLD_GLOBAL && objlist_find(&list_global, obj) == NULL)
3384             objlist_push_tail(&list_global, obj);
3385         if (globallist_next(old_obj_tail) != NULL) {
3386             /* We loaded something new. */
3387             assert(globallist_next(old_obj_tail) == obj);
3388             if ((lo_flags & RTLD_LO_DEEPBIND) != 0)
3389                 obj->symbolic = true;
3390             result = 0;
3391             if ((lo_flags & (RTLD_LO_EARLY | RTLD_LO_IGNSTLS)) == 0 &&
3392               obj->static_tls && !allocate_tls_offset(obj)) {
3393                 _rtld_error("%s: No space available "
3394                   "for static Thread Local Storage", obj->path);
3395                 result = -1;
3396             }
3397             if (result != -1)
3398                 result = load_needed_objects(obj, lo_flags & (RTLD_LO_DLOPEN |
3399                     RTLD_LO_EARLY | RTLD_LO_IGNSTLS));
3400             init_dag(obj);
3401             ref_dag(obj);
3402             if (result != -1)
3403                 result = rtld_verify_versions(&obj->dagmembers);
3404             if (result != -1 && ld_tracing)
3405                 goto trace;
3406             if (result == -1 || relocate_object_dag(obj,
3407               (mode & RTLD_MODEMASK) == RTLD_NOW, &obj_rtld,
3408               (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
3409               lockstate) == -1) {
3410                 dlopen_cleanup(obj, lockstate);
3411                 obj = NULL;
3412             } else if (lo_flags & RTLD_LO_EARLY) {
3413                 /*
3414                  * Do not call the init functions for early loaded
3415                  * filtees.  The image is still not initialized enough
3416                  * for them to work.
3417                  *
3418                  * Our object is found by the global object list and
3419                  * will be ordered among all init calls done right
3420                  * before transferring control to main.
3421                  */
3422             } else {
3423                 /* Make list of init functions to call. */
3424                 initlist_add_objects(obj, obj, &initlist);
3425             }
3426             /*
3427              * Process all no_delete or global objects here, given
3428              * them own DAGs to prevent their dependencies from being
3429              * unloaded.  This has to be done after we have loaded all
3430              * of the dependencies, so that we do not miss any.
3431              */
3432             if (obj != NULL)
3433                 process_z(obj);
3434         } else {
3435             /*
3436              * Bump the reference counts for objects on this DAG.  If
3437              * this is the first dlopen() call for the object that was
3438              * already loaded as a dependency, initialize the dag
3439              * starting at it.
3440              */
3441             init_dag(obj);
3442             ref_dag(obj);
3443
3444             if ((lo_flags & RTLD_LO_TRACE) != 0)
3445                 goto trace;
3446         }
3447         if (obj != NULL && ((lo_flags & RTLD_LO_NODELETE) != 0 ||
3448           obj->z_nodelete) && !obj->ref_nodel) {
3449             dbg("obj %s nodelete", obj->path);
3450             ref_dag(obj);
3451             obj->z_nodelete = obj->ref_nodel = true;
3452         }
3453     }
3454
3455     LD_UTRACE(UTRACE_DLOPEN_STOP, obj, NULL, 0, obj ? obj->dl_refcount : 0,
3456         name);
3457     GDB_STATE(RT_CONSISTENT,obj ? &obj->linkmap : NULL);
3458
3459     if ((lo_flags & RTLD_LO_EARLY) == 0) {
3460         map_stacks_exec(lockstate);
3461         if (obj != NULL)
3462             distribute_static_tls(&initlist, lockstate);
3463     }
3464
3465     if (initlist_objects_ifunc(&initlist, (mode & RTLD_MODEMASK) == RTLD_NOW,
3466       (lo_flags & RTLD_LO_EARLY) ? SYMLOOK_EARLY : 0,
3467       lockstate) == -1) {
3468         objlist_clear(&initlist);
3469         dlopen_cleanup(obj, lockstate);
3470         if (lockstate == &mlockstate)
3471             lock_release(rtld_bind_lock, lockstate);
3472         return (NULL);
3473     }
3474
3475     if (!(lo_flags & RTLD_LO_EARLY)) {
3476         /* Call the init functions. */
3477         objlist_call_init(&initlist, lockstate);
3478     }
3479     objlist_clear(&initlist);
3480     if (lockstate == &mlockstate)
3481         lock_release(rtld_bind_lock, lockstate);
3482     return obj;
3483 trace:
3484     trace_loaded_objects(obj);
3485     if (lockstate == &mlockstate)
3486         lock_release(rtld_bind_lock, lockstate);
3487     exit(0);
3488 }
3489
3490 static void *
3491 do_dlsym(void *handle, const char *name, void *retaddr, const Ver_Entry *ve,
3492     int flags)
3493 {
3494     DoneList donelist;
3495     const Obj_Entry *obj, *defobj;
3496     const Elf_Sym *def;
3497     SymLook req;
3498     RtldLockState lockstate;
3499     tls_index ti;
3500     void *sym;
3501     int res;
3502
3503     def = NULL;
3504     defobj = NULL;
3505     symlook_init(&req, name);
3506     req.ventry = ve;
3507     req.flags = flags | SYMLOOK_IN_PLT;
3508     req.lockstate = &lockstate;
3509
3510     LD_UTRACE(UTRACE_DLSYM_START, handle, NULL, 0, 0, name);
3511     rlock_acquire(rtld_bind_lock, &lockstate);
3512     if (sigsetjmp(lockstate.env, 0) != 0)
3513             lock_upgrade(rtld_bind_lock, &lockstate);
3514     if (handle == NULL || handle == RTLD_NEXT ||
3515         handle == RTLD_DEFAULT || handle == RTLD_SELF) {
3516
3517         if ((obj = obj_from_addr(retaddr)) == NULL) {
3518             _rtld_error("Cannot determine caller's shared object");
3519             lock_release(rtld_bind_lock, &lockstate);
3520             LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3521             return NULL;
3522         }
3523         if (handle == NULL) {   /* Just the caller's shared object. */
3524             res = symlook_obj(&req, obj);
3525             if (res == 0) {
3526                 def = req.sym_out;
3527                 defobj = req.defobj_out;
3528             }
3529         } else if (handle == RTLD_NEXT || /* Objects after caller's */
3530                    handle == RTLD_SELF) { /* ... caller included */
3531             if (handle == RTLD_NEXT)
3532                 obj = globallist_next(obj);
3533             for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
3534                 if (obj->marker)
3535                     continue;
3536                 res = symlook_obj(&req, obj);
3537                 if (res == 0) {
3538                     if (def == NULL ||
3539                       ELF_ST_BIND(req.sym_out->st_info) != STB_WEAK) {
3540                         def = req.sym_out;
3541                         defobj = req.defobj_out;
3542                         if (ELF_ST_BIND(def->st_info) != STB_WEAK)
3543                             break;
3544                     }
3545                 }
3546             }
3547             /*
3548              * Search the dynamic linker itself, and possibly resolve the
3549              * symbol from there.  This is how the application links to
3550              * dynamic linker services such as dlopen.
3551              */
3552             if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
3553                 res = symlook_obj(&req, &obj_rtld);
3554                 if (res == 0) {
3555                     def = req.sym_out;
3556                     defobj = req.defobj_out;
3557                 }
3558             }
3559         } else {
3560             assert(handle == RTLD_DEFAULT);
3561             res = symlook_default(&req, obj);
3562             if (res == 0) {
3563                 defobj = req.defobj_out;
3564                 def = req.sym_out;
3565             }
3566         }
3567     } else {
3568         if ((obj = dlcheck(handle)) == NULL) {
3569             lock_release(rtld_bind_lock, &lockstate);
3570             LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3571             return NULL;
3572         }
3573
3574         donelist_init(&donelist);
3575         if (obj->mainprog) {
3576             /* Handle obtained by dlopen(NULL, ...) implies global scope. */
3577             res = symlook_global(&req, &donelist);
3578             if (res == 0) {
3579                 def = req.sym_out;
3580                 defobj = req.defobj_out;
3581             }
3582             /*
3583              * Search the dynamic linker itself, and possibly resolve the
3584              * symbol from there.  This is how the application links to
3585              * dynamic linker services such as dlopen.
3586              */
3587             if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
3588                 res = symlook_obj(&req, &obj_rtld);
3589                 if (res == 0) {
3590                     def = req.sym_out;
3591                     defobj = req.defobj_out;
3592                 }
3593             }
3594         }
3595         else {
3596             /* Search the whole DAG rooted at the given object. */
3597             res = symlook_list(&req, &obj->dagmembers, &donelist);
3598             if (res == 0) {
3599                 def = req.sym_out;
3600                 defobj = req.defobj_out;
3601             }
3602         }
3603     }
3604
3605     if (def != NULL) {
3606         lock_release(rtld_bind_lock, &lockstate);
3607
3608         /*
3609          * The value required by the caller is derived from the value
3610          * of the symbol. this is simply the relocated value of the
3611          * symbol.
3612          */
3613         if (ELF_ST_TYPE(def->st_info) == STT_FUNC)
3614             sym = make_function_pointer(def, defobj);
3615         else if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
3616             sym = rtld_resolve_ifunc(defobj, def);
3617         else if (ELF_ST_TYPE(def->st_info) == STT_TLS) {
3618             ti.ti_module = defobj->tlsindex;
3619             ti.ti_offset = def->st_value;
3620             sym = __tls_get_addr(&ti);
3621         } else
3622             sym = defobj->relocbase + def->st_value;
3623         LD_UTRACE(UTRACE_DLSYM_STOP, handle, sym, 0, 0, name);
3624         return (sym);
3625     }
3626
3627     _rtld_error("Undefined symbol \"%s%s%s\"", name, ve != NULL ? "@" : "",
3628       ve != NULL ? ve->name : "");
3629     lock_release(rtld_bind_lock, &lockstate);
3630     LD_UTRACE(UTRACE_DLSYM_STOP, handle, NULL, 0, 0, name);
3631     return NULL;
3632 }
3633
3634 void *
3635 dlsym(void *handle, const char *name)
3636 {
3637         return do_dlsym(handle, name, __builtin_return_address(0), NULL,
3638             SYMLOOK_DLSYM);
3639 }
3640
3641 dlfunc_t
3642 dlfunc(void *handle, const char *name)
3643 {
3644         union {
3645                 void *d;
3646                 dlfunc_t f;
3647         } rv;
3648
3649         rv.d = do_dlsym(handle, name, __builtin_return_address(0), NULL,
3650             SYMLOOK_DLSYM);
3651         return (rv.f);
3652 }
3653
3654 void *
3655 dlvsym(void *handle, const char *name, const char *version)
3656 {
3657         Ver_Entry ventry;
3658
3659         ventry.name = version;
3660         ventry.file = NULL;
3661         ventry.hash = elf_hash(version);
3662         ventry.flags= 0;
3663         return do_dlsym(handle, name, __builtin_return_address(0), &ventry,
3664             SYMLOOK_DLSYM);
3665 }
3666
3667 int
3668 _rtld_addr_phdr(const void *addr, struct dl_phdr_info *phdr_info)
3669 {
3670     const Obj_Entry *obj;
3671     RtldLockState lockstate;
3672
3673     rlock_acquire(rtld_bind_lock, &lockstate);
3674     obj = obj_from_addr(addr);
3675     if (obj == NULL) {
3676         _rtld_error("No shared object contains address");
3677         lock_release(rtld_bind_lock, &lockstate);
3678         return (0);
3679     }
3680     rtld_fill_dl_phdr_info(obj, phdr_info);
3681     lock_release(rtld_bind_lock, &lockstate);
3682     return (1);
3683 }
3684
3685 int
3686 dladdr(const void *addr, Dl_info *info)
3687 {
3688     const Obj_Entry *obj;
3689     const Elf_Sym *def;
3690     void *symbol_addr;
3691     unsigned long symoffset;
3692     RtldLockState lockstate;
3693
3694     rlock_acquire(rtld_bind_lock, &lockstate);
3695     obj = obj_from_addr(addr);
3696     if (obj == NULL) {
3697         _rtld_error("No shared object contains address");
3698         lock_release(rtld_bind_lock, &lockstate);
3699         return 0;
3700     }
3701     info->dli_fname = obj->path;
3702     info->dli_fbase = obj->mapbase;
3703     info->dli_saddr = (void *)0;
3704     info->dli_sname = NULL;
3705
3706     /*
3707      * Walk the symbol list looking for the symbol whose address is
3708      * closest to the address sent in.
3709      */
3710     for (symoffset = 0; symoffset < obj->dynsymcount; symoffset++) {
3711         def = obj->symtab + symoffset;
3712
3713         /*
3714          * For skip the symbol if st_shndx is either SHN_UNDEF or
3715          * SHN_COMMON.
3716          */
3717         if (def->st_shndx == SHN_UNDEF || def->st_shndx == SHN_COMMON)
3718             continue;
3719
3720         /*
3721          * If the symbol is greater than the specified address, or if it
3722          * is further away from addr than the current nearest symbol,
3723          * then reject it.
3724          */
3725         symbol_addr = obj->relocbase + def->st_value;
3726         if (symbol_addr > addr || symbol_addr < info->dli_saddr)
3727             continue;
3728
3729         /* Update our idea of the nearest symbol. */
3730         info->dli_sname = obj->strtab + def->st_name;
3731         info->dli_saddr = symbol_addr;
3732
3733         /* Exact match? */
3734         if (info->dli_saddr == addr)
3735             break;
3736     }
3737     lock_release(rtld_bind_lock, &lockstate);
3738     return 1;
3739 }
3740
3741 int
3742 dlinfo(void *handle, int request, void *p)
3743 {
3744     const Obj_Entry *obj;
3745     RtldLockState lockstate;
3746     int error;
3747
3748     rlock_acquire(rtld_bind_lock, &lockstate);
3749
3750     if (handle == NULL || handle == RTLD_SELF) {
3751         void *retaddr;
3752
3753         retaddr = __builtin_return_address(0);  /* __GNUC__ only */
3754         if ((obj = obj_from_addr(retaddr)) == NULL)
3755             _rtld_error("Cannot determine caller's shared object");
3756     } else
3757         obj = dlcheck(handle);
3758
3759     if (obj == NULL) {
3760         lock_release(rtld_bind_lock, &lockstate);
3761         return (-1);
3762     }
3763
3764     error = 0;
3765     switch (request) {
3766     case RTLD_DI_LINKMAP:
3767         *((struct link_map const **)p) = &obj->linkmap;
3768         break;
3769     case RTLD_DI_ORIGIN:
3770         error = rtld_dirname(obj->path, p);
3771         break;
3772
3773     case RTLD_DI_SERINFOSIZE:
3774     case RTLD_DI_SERINFO:
3775         error = do_search_info(obj, request, (struct dl_serinfo *)p);
3776         break;
3777
3778     default:
3779         _rtld_error("Invalid request %d passed to dlinfo()", request);
3780         error = -1;
3781     }
3782
3783     lock_release(rtld_bind_lock, &lockstate);
3784
3785     return (error);
3786 }
3787
3788 static void
3789 rtld_fill_dl_phdr_info(const Obj_Entry *obj, struct dl_phdr_info *phdr_info)
3790 {
3791
3792         phdr_info->dlpi_addr = (Elf_Addr)obj->relocbase;
3793         phdr_info->dlpi_name = obj->path;
3794         phdr_info->dlpi_phdr = obj->phdr;
3795         phdr_info->dlpi_phnum = obj->phsize / sizeof(obj->phdr[0]);
3796         phdr_info->dlpi_tls_modid = obj->tlsindex;
3797         phdr_info->dlpi_tls_data = obj->tlsinit;
3798         phdr_info->dlpi_adds = obj_loads;
3799         phdr_info->dlpi_subs = obj_loads - obj_count;
3800 }
3801
3802 int
3803 dl_iterate_phdr(__dl_iterate_hdr_callback callback, void *param)
3804 {
3805         struct dl_phdr_info phdr_info;
3806         Obj_Entry *obj, marker;
3807         RtldLockState bind_lockstate, phdr_lockstate;
3808         int error;
3809
3810         init_marker(&marker);
3811         error = 0;
3812
3813         wlock_acquire(rtld_phdr_lock, &phdr_lockstate);
3814         wlock_acquire(rtld_bind_lock, &bind_lockstate);
3815         for (obj = globallist_curr(TAILQ_FIRST(&obj_list)); obj != NULL;) {
3816                 TAILQ_INSERT_AFTER(&obj_list, obj, &marker, next);
3817                 rtld_fill_dl_phdr_info(obj, &phdr_info);
3818                 hold_object(obj);
3819                 lock_release(rtld_bind_lock, &bind_lockstate);
3820
3821                 error = callback(&phdr_info, sizeof phdr_info, param);
3822
3823                 wlock_acquire(rtld_bind_lock, &bind_lockstate);
3824                 unhold_object(obj);
3825                 obj = globallist_next(&marker);
3826                 TAILQ_REMOVE(&obj_list, &marker, next);
3827                 if (error != 0) {
3828                         lock_release(rtld_bind_lock, &bind_lockstate);
3829                         lock_release(rtld_phdr_lock, &phdr_lockstate);
3830                         return (error);
3831                 }
3832         }
3833
3834         if (error == 0) {
3835                 rtld_fill_dl_phdr_info(&obj_rtld, &phdr_info);
3836                 lock_release(rtld_bind_lock, &bind_lockstate);
3837                 error = callback(&phdr_info, sizeof(phdr_info), param);
3838         }
3839         lock_release(rtld_phdr_lock, &phdr_lockstate);
3840         return (error);
3841 }
3842
3843 static void *
3844 fill_search_info(const char *dir, size_t dirlen, void *param)
3845 {
3846     struct fill_search_info_args *arg;
3847
3848     arg = param;
3849
3850     if (arg->request == RTLD_DI_SERINFOSIZE) {
3851         arg->serinfo->dls_cnt ++;
3852         arg->serinfo->dls_size += sizeof(struct dl_serpath) + dirlen + 1;
3853     } else {
3854         struct dl_serpath *s_entry;
3855
3856         s_entry = arg->serpath;
3857         s_entry->dls_name  = arg->strspace;
3858         s_entry->dls_flags = arg->flags;
3859
3860         strncpy(arg->strspace, dir, dirlen);
3861         arg->strspace[dirlen] = '\0';
3862
3863         arg->strspace += dirlen + 1;
3864         arg->serpath++;
3865     }
3866
3867     return (NULL);
3868 }
3869
3870 static int
3871 do_search_info(const Obj_Entry *obj, int request, struct dl_serinfo *info)
3872 {
3873     struct dl_serinfo _info;
3874     struct fill_search_info_args args;
3875
3876     args.request = RTLD_DI_SERINFOSIZE;
3877     args.serinfo = &_info;
3878
3879     _info.dls_size = __offsetof(struct dl_serinfo, dls_serpath);
3880     _info.dls_cnt  = 0;
3881
3882     path_enumerate(obj->rpath, fill_search_info, NULL, &args);
3883     path_enumerate(ld_library_path, fill_search_info, NULL, &args);
3884     path_enumerate(obj->runpath, fill_search_info, NULL, &args);
3885     path_enumerate(gethints(obj->z_nodeflib), fill_search_info, NULL, &args);
3886     if (!obj->z_nodeflib)
3887       path_enumerate(ld_standard_library_path, fill_search_info, NULL, &args);
3888
3889
3890     if (request == RTLD_DI_SERINFOSIZE) {
3891         info->dls_size = _info.dls_size;
3892         info->dls_cnt = _info.dls_cnt;
3893         return (0);
3894     }
3895
3896     if (info->dls_cnt != _info.dls_cnt || info->dls_size != _info.dls_size) {
3897         _rtld_error("Uninitialized Dl_serinfo struct passed to dlinfo()");
3898         return (-1);
3899     }
3900
3901     args.request  = RTLD_DI_SERINFO;
3902     args.serinfo  = info;
3903     args.serpath  = &info->dls_serpath[0];
3904     args.strspace = (char *)&info->dls_serpath[_info.dls_cnt];
3905
3906     args.flags = LA_SER_RUNPATH;
3907     if (path_enumerate(obj->rpath, fill_search_info, NULL, &args) != NULL)
3908         return (-1);
3909
3910     args.flags = LA_SER_LIBPATH;
3911     if (path_enumerate(ld_library_path, fill_search_info, NULL, &args) != NULL)
3912         return (-1);
3913
3914     args.flags = LA_SER_RUNPATH;
3915     if (path_enumerate(obj->runpath, fill_search_info, NULL, &args) != NULL)
3916         return (-1);
3917
3918     args.flags = LA_SER_CONFIG;
3919     if (path_enumerate(gethints(obj->z_nodeflib), fill_search_info, NULL, &args)
3920       != NULL)
3921         return (-1);
3922
3923     args.flags = LA_SER_DEFAULT;
3924     if (!obj->z_nodeflib && path_enumerate(ld_standard_library_path,
3925       fill_search_info, NULL, &args) != NULL)
3926         return (-1);
3927     return (0);
3928 }
3929
3930 static int
3931 rtld_dirname(const char *path, char *bname)
3932 {
3933     const char *endp;
3934
3935     /* Empty or NULL string gets treated as "." */
3936     if (path == NULL || *path == '\0') {
3937         bname[0] = '.';
3938         bname[1] = '\0';
3939         return (0);
3940     }
3941
3942     /* Strip trailing slashes */
3943     endp = path + strlen(path) - 1;
3944     while (endp > path && *endp == '/')
3945         endp--;
3946
3947     /* Find the start of the dir */
3948     while (endp > path && *endp != '/')
3949         endp--;
3950
3951     /* Either the dir is "/" or there are no slashes */
3952     if (endp == path) {
3953         bname[0] = *endp == '/' ? '/' : '.';
3954         bname[1] = '\0';
3955         return (0);
3956     } else {
3957         do {
3958             endp--;
3959         } while (endp > path && *endp == '/');
3960     }
3961
3962     if (endp - path + 2 > PATH_MAX)
3963     {
3964         _rtld_error("Filename is too long: %s", path);
3965         return(-1);
3966     }
3967
3968     strncpy(bname, path, endp - path + 1);
3969     bname[endp - path + 1] = '\0';
3970     return (0);
3971 }
3972
3973 static int
3974 rtld_dirname_abs(const char *path, char *base)
3975 {
3976         char *last;
3977
3978         if (realpath(path, base) == NULL) {
3979                 _rtld_error("realpath \"%s\" failed (%s)", path,
3980                     rtld_strerror(errno));
3981                 return (-1);
3982         }
3983         dbg("%s -> %s", path, base);
3984         last = strrchr(base, '/');
3985         if (last == NULL) {
3986                 _rtld_error("non-abs result from realpath \"%s\"", path);
3987                 return (-1);
3988         }
3989         if (last != base)
3990                 *last = '\0';
3991         return (0);
3992 }
3993
3994 static void
3995 linkmap_add(Obj_Entry *obj)
3996 {
3997         struct link_map *l, *prev;
3998
3999         l = &obj->linkmap;
4000         l->l_name = obj->path;
4001         l->l_base = obj->mapbase;
4002         l->l_ld = obj->dynamic;
4003         l->l_addr = obj->relocbase;
4004
4005         if (r_debug.r_map == NULL) {
4006                 r_debug.r_map = l;
4007                 return;
4008         }
4009
4010         /*
4011          * Scan to the end of the list, but not past the entry for the
4012          * dynamic linker, which we want to keep at the very end.
4013          */
4014         for (prev = r_debug.r_map;
4015             prev->l_next != NULL && prev->l_next != &obj_rtld.linkmap;
4016              prev = prev->l_next)
4017                 ;
4018
4019         /* Link in the new entry. */
4020         l->l_prev = prev;
4021         l->l_next = prev->l_next;
4022         if (l->l_next != NULL)
4023                 l->l_next->l_prev = l;
4024         prev->l_next = l;
4025 }
4026
4027 static void
4028 linkmap_delete(Obj_Entry *obj)
4029 {
4030         struct link_map *l;
4031
4032         l = &obj->linkmap;
4033         if (l->l_prev == NULL) {
4034                 if ((r_debug.r_map = l->l_next) != NULL)
4035                         l->l_next->l_prev = NULL;
4036                 return;
4037         }
4038
4039         if ((l->l_prev->l_next = l->l_next) != NULL)
4040                 l->l_next->l_prev = l->l_prev;
4041 }
4042
4043 /*
4044  * Function for the debugger to set a breakpoint on to gain control.
4045  *
4046  * The two parameters allow the debugger to easily find and determine
4047  * what the runtime loader is doing and to whom it is doing it.
4048  *
4049  * When the loadhook trap is hit (r_debug_state, set at program
4050  * initialization), the arguments can be found on the stack:
4051  *
4052  *  +8   struct link_map *m
4053  *  +4   struct r_debug  *rd
4054  *  +0   RetAddr
4055  */
4056 void
4057 r_debug_state(struct r_debug* rd __unused, struct link_map *m  __unused)
4058 {
4059     /*
4060      * The following is a hack to force the compiler to emit calls to
4061      * this function, even when optimizing.  If the function is empty,
4062      * the compiler is not obliged to emit any code for calls to it,
4063      * even when marked __noinline.  However, gdb depends on those
4064      * calls being made.
4065      */
4066     __compiler_membar();
4067 }
4068
4069 /*
4070  * A function called after init routines have completed. This can be used to
4071  * break before a program's entry routine is called, and can be used when
4072  * main is not available in the symbol table.
4073  */
4074 void
4075 _r_debug_postinit(struct link_map *m __unused)
4076 {
4077
4078         /* See r_debug_state(). */
4079         __compiler_membar();
4080 }
4081
4082 static void
4083 release_object(Obj_Entry *obj)
4084 {
4085
4086         if (obj->holdcount > 0) {
4087                 obj->unholdfree = true;
4088                 return;
4089         }
4090         munmap(obj->mapbase, obj->mapsize);
4091         linkmap_delete(obj);
4092         obj_free(obj);
4093 }
4094
4095 /*
4096  * Get address of the pointer variable in the main program.
4097  * Prefer non-weak symbol over the weak one.
4098  */
4099 static const void **
4100 get_program_var_addr(const char *name, RtldLockState *lockstate)
4101 {
4102     SymLook req;
4103     DoneList donelist;
4104
4105     symlook_init(&req, name);
4106     req.lockstate = lockstate;
4107     donelist_init(&donelist);
4108     if (symlook_global(&req, &donelist) != 0)
4109         return (NULL);
4110     if (ELF_ST_TYPE(req.sym_out->st_info) == STT_FUNC)
4111         return ((const void **)make_function_pointer(req.sym_out,
4112           req.defobj_out));
4113     else if (ELF_ST_TYPE(req.sym_out->st_info) == STT_GNU_IFUNC)
4114         return ((const void **)rtld_resolve_ifunc(req.defobj_out, req.sym_out));
4115     else
4116         return ((const void **)(req.defobj_out->relocbase +
4117           req.sym_out->st_value));
4118 }
4119
4120 /*
4121  * Set a pointer variable in the main program to the given value.  This
4122  * is used to set key variables such as "environ" before any of the
4123  * init functions are called.
4124  */
4125 static void
4126 set_program_var(const char *name, const void *value)
4127 {
4128     const void **addr;
4129
4130     if ((addr = get_program_var_addr(name, NULL)) != NULL) {
4131         dbg("\"%s\": *%p <-- %p", name, addr, value);
4132         *addr = value;
4133     }
4134 }
4135
4136 /*
4137  * Search the global objects, including dependencies and main object,
4138  * for the given symbol.
4139  */
4140 static int
4141 symlook_global(SymLook *req, DoneList *donelist)
4142 {
4143     SymLook req1;
4144     const Objlist_Entry *elm;
4145     int res;
4146
4147     symlook_init_from_req(&req1, req);
4148
4149     /* Search all objects loaded at program start up. */
4150     if (req->defobj_out == NULL ||
4151       ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
4152         res = symlook_list(&req1, &list_main, donelist);
4153         if (res == 0 && (req->defobj_out == NULL ||
4154           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
4155             req->sym_out = req1.sym_out;
4156             req->defobj_out = req1.defobj_out;
4157             assert(req->defobj_out != NULL);
4158         }
4159     }
4160
4161     /* Search all DAGs whose roots are RTLD_GLOBAL objects. */
4162     STAILQ_FOREACH(elm, &list_global, link) {
4163         if (req->defobj_out != NULL &&
4164           ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
4165             break;
4166         res = symlook_list(&req1, &elm->obj->dagmembers, donelist);
4167         if (res == 0 && (req->defobj_out == NULL ||
4168           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
4169             req->sym_out = req1.sym_out;
4170             req->defobj_out = req1.defobj_out;
4171             assert(req->defobj_out != NULL);
4172         }
4173     }
4174
4175     return (req->sym_out != NULL ? 0 : ESRCH);
4176 }
4177
4178 /*
4179  * Given a symbol name in a referencing object, find the corresponding
4180  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
4181  * no definition was found.  Returns a pointer to the Obj_Entry of the
4182  * defining object via the reference parameter DEFOBJ_OUT.
4183  */
4184 static int
4185 symlook_default(SymLook *req, const Obj_Entry *refobj)
4186 {
4187     DoneList donelist;
4188     const Objlist_Entry *elm;
4189     SymLook req1;
4190     int res;
4191
4192     donelist_init(&donelist);
4193     symlook_init_from_req(&req1, req);
4194
4195     /*
4196      * Look first in the referencing object if linked symbolically,
4197      * and similarly handle protected symbols.
4198      */
4199     res = symlook_obj(&req1, refobj);
4200     if (res == 0 && (refobj->symbolic ||
4201       ELF_ST_VISIBILITY(req1.sym_out->st_other) == STV_PROTECTED)) {
4202         req->sym_out = req1.sym_out;
4203         req->defobj_out = req1.defobj_out;
4204         assert(req->defobj_out != NULL);
4205     }
4206     if (refobj->symbolic || req->defobj_out != NULL)
4207         donelist_check(&donelist, refobj);
4208
4209     symlook_global(req, &donelist);
4210
4211     /* Search all dlopened DAGs containing the referencing object. */
4212     STAILQ_FOREACH(elm, &refobj->dldags, link) {
4213         if (req->sym_out != NULL &&
4214           ELF_ST_BIND(req->sym_out->st_info) != STB_WEAK)
4215             break;
4216         res = symlook_list(&req1, &elm->obj->dagmembers, &donelist);
4217         if (res == 0 && (req->sym_out == NULL ||
4218           ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK)) {
4219             req->sym_out = req1.sym_out;
4220             req->defobj_out = req1.defobj_out;
4221             assert(req->defobj_out != NULL);
4222         }
4223     }
4224
4225     /*
4226      * Search the dynamic linker itself, and possibly resolve the
4227      * symbol from there.  This is how the application links to
4228      * dynamic linker services such as dlopen.
4229      */
4230     if (req->sym_out == NULL ||
4231       ELF_ST_BIND(req->sym_out->st_info) == STB_WEAK) {
4232         res = symlook_obj(&req1, &obj_rtld);
4233         if (res == 0) {
4234             req->sym_out = req1.sym_out;
4235             req->defobj_out = req1.defobj_out;
4236             assert(req->defobj_out != NULL);
4237         }
4238     }
4239
4240     return (req->sym_out != NULL ? 0 : ESRCH);
4241 }
4242
4243 static int
4244 symlook_list(SymLook *req, const Objlist *objlist, DoneList *dlp)
4245 {
4246     const Elf_Sym *def;
4247     const Obj_Entry *defobj;
4248     const Objlist_Entry *elm;
4249     SymLook req1;
4250     int res;
4251
4252     def = NULL;
4253     defobj = NULL;
4254     STAILQ_FOREACH(elm, objlist, link) {
4255         if (donelist_check(dlp, elm->obj))
4256             continue;
4257         symlook_init_from_req(&req1, req);
4258         if ((res = symlook_obj(&req1, elm->obj)) == 0) {
4259             if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
4260                 def = req1.sym_out;
4261                 defobj = req1.defobj_out;
4262                 if (ELF_ST_BIND(def->st_info) != STB_WEAK)
4263                     break;
4264             }
4265         }
4266     }
4267     if (def != NULL) {
4268         req->sym_out = def;
4269         req->defobj_out = defobj;
4270         return (0);
4271     }
4272     return (ESRCH);
4273 }
4274
4275 /*
4276  * Search the chain of DAGS cointed to by the given Needed_Entry
4277  * for a symbol of the given name.  Each DAG is scanned completely
4278  * before advancing to the next one.  Returns a pointer to the symbol,
4279  * or NULL if no definition was found.
4280  */
4281 static int
4282 symlook_needed(SymLook *req, const Needed_Entry *needed, DoneList *dlp)
4283 {
4284     const Elf_Sym *def;
4285     const Needed_Entry *n;
4286     const Obj_Entry *defobj;
4287     SymLook req1;
4288     int res;
4289
4290     def = NULL;
4291     defobj = NULL;
4292     symlook_init_from_req(&req1, req);
4293     for (n = needed; n != NULL; n = n->next) {
4294         if (n->obj == NULL ||
4295             (res = symlook_list(&req1, &n->obj->dagmembers, dlp)) != 0)
4296             continue;
4297         if (def == NULL || ELF_ST_BIND(req1.sym_out->st_info) != STB_WEAK) {
4298             def = req1.sym_out;
4299             defobj = req1.defobj_out;
4300             if (ELF_ST_BIND(def->st_info) != STB_WEAK)
4301                 break;
4302         }
4303     }
4304     if (def != NULL) {
4305         req->sym_out = def;
4306         req->defobj_out = defobj;
4307         return (0);
4308     }
4309     return (ESRCH);
4310 }
4311
4312 /*
4313  * Search the symbol table of a single shared object for a symbol of
4314  * the given name and version, if requested.  Returns a pointer to the
4315  * symbol, or NULL if no definition was found.  If the object is
4316  * filter, return filtered symbol from filtee.
4317  *
4318  * The symbol's hash value is passed in for efficiency reasons; that
4319  * eliminates many recomputations of the hash value.
4320  */
4321 int
4322 symlook_obj(SymLook *req, const Obj_Entry *obj)
4323 {
4324     DoneList donelist;
4325     SymLook req1;
4326     int flags, res, mres;
4327
4328     /*
4329      * If there is at least one valid hash at this point, we prefer to
4330      * use the faster GNU version if available.
4331      */
4332     if (obj->valid_hash_gnu)
4333         mres = symlook_obj1_gnu(req, obj);
4334     else if (obj->valid_hash_sysv)
4335         mres = symlook_obj1_sysv(req, obj);
4336     else
4337         return (EINVAL);
4338
4339     if (mres == 0) {
4340         if (obj->needed_filtees != NULL) {
4341             flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
4342             load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
4343             donelist_init(&donelist);
4344             symlook_init_from_req(&req1, req);
4345             res = symlook_needed(&req1, obj->needed_filtees, &donelist);
4346             if (res == 0) {
4347                 req->sym_out = req1.sym_out;
4348                 req->defobj_out = req1.defobj_out;
4349             }
4350             return (res);
4351         }
4352         if (obj->needed_aux_filtees != NULL) {
4353             flags = (req->flags & SYMLOOK_EARLY) ? RTLD_LO_EARLY : 0;
4354             load_filtees(__DECONST(Obj_Entry *, obj), flags, req->lockstate);
4355             donelist_init(&donelist);
4356             symlook_init_from_req(&req1, req);
4357             res = symlook_needed(&req1, obj->needed_aux_filtees, &donelist);
4358             if (res == 0) {
4359                 req->sym_out = req1.sym_out;
4360                 req->defobj_out = req1.defobj_out;
4361                 return (res);
4362             }
4363         }
4364     }
4365     return (mres);
4366 }
4367
4368 /* Symbol match routine common to both hash functions */
4369 static bool
4370 matched_symbol(SymLook *req, const Obj_Entry *obj, Sym_Match_Result *result,
4371     const unsigned long symnum)
4372 {
4373         Elf_Versym verndx;
4374         const Elf_Sym *symp;
4375         const char *strp;
4376
4377         symp = obj->symtab + symnum;
4378         strp = obj->strtab + symp->st_name;
4379
4380         switch (ELF_ST_TYPE(symp->st_info)) {
4381         case STT_FUNC:
4382         case STT_NOTYPE:
4383         case STT_OBJECT:
4384         case STT_COMMON:
4385         case STT_GNU_IFUNC:
4386                 if (symp->st_value == 0)
4387                         return (false);
4388                 /* fallthrough */
4389         case STT_TLS:
4390                 if (symp->st_shndx != SHN_UNDEF)
4391                         break;
4392 #ifndef __mips__
4393                 else if (((req->flags & SYMLOOK_IN_PLT) == 0) &&
4394                     (ELF_ST_TYPE(symp->st_info) == STT_FUNC))
4395                         break;
4396 #endif
4397                 /* fallthrough */
4398         default:
4399                 return (false);
4400         }
4401         if (req->name[0] != strp[0] || strcmp(req->name, strp) != 0)
4402                 return (false);
4403
4404         if (req->ventry == NULL) {
4405                 if (obj->versyms != NULL) {
4406                         verndx = VER_NDX(obj->versyms[symnum]);
4407                         if (verndx > obj->vernum) {
4408                                 _rtld_error(
4409                                     "%s: symbol %s references wrong version %d",
4410                                     obj->path, obj->strtab + symnum, verndx);
4411                                 return (false);
4412                         }
4413                         /*
4414                          * If we are not called from dlsym (i.e. this
4415                          * is a normal relocation from unversioned
4416                          * binary), accept the symbol immediately if
4417                          * it happens to have first version after this
4418                          * shared object became versioned.  Otherwise,
4419                          * if symbol is versioned and not hidden,
4420                          * remember it. If it is the only symbol with
4421                          * this name exported by the shared object, it
4422                          * will be returned as a match by the calling
4423                          * function. If symbol is global (verndx < 2)
4424                          * accept it unconditionally.
4425                          */
4426                         if ((req->flags & SYMLOOK_DLSYM) == 0 &&
4427                             verndx == VER_NDX_GIVEN) {
4428                                 result->sym_out = symp;
4429                                 return (true);
4430                         }
4431                         else if (verndx >= VER_NDX_GIVEN) {
4432                                 if ((obj->versyms[symnum] & VER_NDX_HIDDEN)
4433                                     == 0) {
4434                                         if (result->vsymp == NULL)
4435                                                 result->vsymp = symp;
4436                                         result->vcount++;
4437                                 }
4438                                 return (false);
4439                         }
4440                 }
4441                 result->sym_out = symp;
4442                 return (true);
4443         }
4444         if (obj->versyms == NULL) {
4445                 if (object_match_name(obj, req->ventry->name)) {
4446                         _rtld_error("%s: object %s should provide version %s "
4447                             "for symbol %s", obj_rtld.path, obj->path,
4448                             req->ventry->name, obj->strtab + symnum);
4449                         return (false);
4450                 }
4451         } else {
4452                 verndx = VER_NDX(obj->versyms[symnum]);
4453                 if (verndx > obj->vernum) {
4454                         _rtld_error("%s: symbol %s references wrong version %d",
4455                             obj->path, obj->strtab + symnum, verndx);
4456                         return (false);
4457                 }
4458                 if (obj->vertab[verndx].hash != req->ventry->hash ||
4459                     strcmp(obj->vertab[verndx].name, req->ventry->name)) {
4460                         /*
4461                          * Version does not match. Look if this is a
4462                          * global symbol and if it is not hidden. If
4463                          * global symbol (verndx < 2) is available,
4464                          * use it. Do not return symbol if we are
4465                          * called by dlvsym, because dlvsym looks for
4466                          * a specific version and default one is not
4467                          * what dlvsym wants.
4468                          */
4469                         if ((req->flags & SYMLOOK_DLSYM) ||
4470                             (verndx >= VER_NDX_GIVEN) ||
4471                             (obj->versyms[symnum] & VER_NDX_HIDDEN))
4472                                 return (false);
4473                 }
4474         }
4475         result->sym_out = symp;
4476         return (true);
4477 }
4478
4479 /*
4480  * Search for symbol using SysV hash function.
4481  * obj->buckets is known not to be NULL at this point; the test for this was
4482  * performed with the obj->valid_hash_sysv assignment.
4483  */
4484 static int
4485 symlook_obj1_sysv(SymLook *req, const Obj_Entry *obj)
4486 {
4487         unsigned long symnum;
4488         Sym_Match_Result matchres;
4489
4490         matchres.sym_out = NULL;
4491         matchres.vsymp = NULL;
4492         matchres.vcount = 0;
4493
4494         for (symnum = obj->buckets[req->hash % obj->nbuckets];
4495             symnum != STN_UNDEF; symnum = obj->chains[symnum]) {
4496                 if (symnum >= obj->nchains)
4497                         return (ESRCH); /* Bad object */
4498
4499                 if (matched_symbol(req, obj, &matchres, symnum)) {
4500                         req->sym_out = matchres.sym_out;
4501                         req->defobj_out = obj;
4502                         return (0);
4503                 }
4504         }
4505         if (matchres.vcount == 1) {
4506                 req->sym_out = matchres.vsymp;
4507                 req->defobj_out = obj;
4508                 return (0);
4509         }
4510         return (ESRCH);
4511 }
4512
4513 /* Search for symbol using GNU hash function */
4514 static int
4515 symlook_obj1_gnu(SymLook *req, const Obj_Entry *obj)
4516 {
4517         Elf_Addr bloom_word;
4518         const Elf32_Word *hashval;
4519         Elf32_Word bucket;
4520         Sym_Match_Result matchres;
4521         unsigned int h1, h2;
4522         unsigned long symnum;
4523
4524         matchres.sym_out = NULL;
4525         matchres.vsymp = NULL;
4526         matchres.vcount = 0;
4527
4528         /* Pick right bitmask word from Bloom filter array */
4529         bloom_word = obj->bloom_gnu[(req->hash_gnu / __ELF_WORD_SIZE) &
4530             obj->maskwords_bm_gnu];
4531
4532         /* Calculate modulus word size of gnu hash and its derivative */
4533         h1 = req->hash_gnu & (__ELF_WORD_SIZE - 1);
4534         h2 = ((req->hash_gnu >> obj->shift2_gnu) & (__ELF_WORD_SIZE - 1));
4535
4536         /* Filter out the "definitely not in set" queries */
4537         if (((bloom_word >> h1) & (bloom_word >> h2) & 1) == 0)
4538                 return (ESRCH);
4539
4540         /* Locate hash chain and corresponding value element*/
4541         bucket = obj->buckets_gnu[req->hash_gnu % obj->nbuckets_gnu];
4542         if (bucket == 0)
4543                 return (ESRCH);
4544         hashval = &obj->chain_zero_gnu[bucket];
4545         do {
4546                 if (((*hashval ^ req->hash_gnu) >> 1) == 0) {
4547                         symnum = hashval - obj->chain_zero_gnu;
4548                         if (matched_symbol(req, obj, &matchres, symnum)) {
4549                                 req->sym_out = matchres.sym_out;
4550                                 req->defobj_out = obj;
4551                                 return (0);
4552                         }
4553                 }
4554         } while ((*hashval++ & 1) == 0);
4555         if (matchres.vcount == 1) {
4556                 req->sym_out = matchres.vsymp;
4557                 req->defobj_out = obj;
4558                 return (0);
4559         }
4560         return (ESRCH);
4561 }
4562
4563 static void
4564 trace_loaded_objects(Obj_Entry *obj)
4565 {
4566     const char *fmt1, *fmt2, *fmt, *main_local, *list_containers;
4567     int c;
4568
4569     if ((main_local = getenv(_LD("TRACE_LOADED_OBJECTS_PROGNAME"))) == NULL)
4570         main_local = "";
4571
4572     if ((fmt1 = getenv(_LD("TRACE_LOADED_OBJECTS_FMT1"))) == NULL)
4573         fmt1 = "\t%o => %p (%x)\n";
4574
4575     if ((fmt2 = getenv(_LD("TRACE_LOADED_OBJECTS_FMT2"))) == NULL)
4576         fmt2 = "\t%o (%x)\n";
4577
4578     list_containers = getenv(_LD("TRACE_LOADED_OBJECTS_ALL"));
4579
4580     for (; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
4581         Needed_Entry *needed;
4582         const char *name, *path;
4583         bool is_lib;
4584
4585         if (obj->marker)
4586             continue;
4587         if (list_containers && obj->needed != NULL)
4588             rtld_printf("%s:\n", obj->path);
4589         for (needed = obj->needed; needed; needed = needed->next) {
4590             if (needed->obj != NULL) {
4591                 if (needed->obj->traced && !list_containers)
4592                     continue;
4593                 needed->obj->traced = true;
4594                 path = needed->obj->path;
4595             } else
4596                 path = "not found";
4597
4598             name = obj->strtab + needed->name;
4599             is_lib = strncmp(name, "lib", 3) == 0;      /* XXX - bogus */
4600
4601             fmt = is_lib ? fmt1 : fmt2;
4602             while ((c = *fmt++) != '\0') {
4603                 switch (c) {
4604                 default:
4605                     rtld_putchar(c);
4606                     continue;
4607                 case '\\':
4608                     switch (c = *fmt) {
4609                     case '\0':
4610                         continue;
4611                     case 'n':
4612                         rtld_putchar('\n');
4613                         break;
4614                     case 't':
4615                         rtld_putchar('\t');
4616                         break;
4617                     }
4618                     break;
4619                 case '%':
4620                     switch (c = *fmt) {
4621                     case '\0':
4622                         continue;
4623                     case '%':
4624                     default:
4625                         rtld_putchar(c);
4626                         break;
4627                     case 'A':
4628                         rtld_putstr(main_local);
4629                         break;
4630                     case 'a':
4631                         rtld_putstr(obj_main->path);
4632                         break;
4633                     case 'o':
4634                         rtld_putstr(name);
4635                         break;
4636 #if 0
4637                     case 'm':
4638                         rtld_printf("%d", sodp->sod_major);
4639                         break;
4640                     case 'n':
4641                         rtld_printf("%d", sodp->sod_minor);
4642                         break;
4643 #endif
4644                     case 'p':
4645                         rtld_putstr(path);
4646                         break;
4647                     case 'x':
4648                         rtld_printf("%p", needed->obj ? needed->obj->mapbase :
4649                           0);
4650                         break;
4651                     }
4652                     break;
4653                 }
4654                 ++fmt;
4655             }
4656         }
4657     }
4658 }
4659
4660 /*
4661  * Unload a dlopened object and its dependencies from memory and from
4662  * our data structures.  It is assumed that the DAG rooted in the
4663  * object has already been unreferenced, and that the object has a
4664  * reference count of 0.
4665  */
4666 static void
4667 unload_object(Obj_Entry *root, RtldLockState *lockstate)
4668 {
4669         Obj_Entry marker, *obj, *next;
4670
4671         assert(root->refcount == 0);
4672
4673         /*
4674          * Pass over the DAG removing unreferenced objects from
4675          * appropriate lists.
4676          */
4677         unlink_object(root);
4678
4679         /* Unmap all objects that are no longer referenced. */
4680         for (obj = TAILQ_FIRST(&obj_list); obj != NULL; obj = next) {
4681                 next = TAILQ_NEXT(obj, next);
4682                 if (obj->marker || obj->refcount != 0)
4683                         continue;
4684                 LD_UTRACE(UTRACE_UNLOAD_OBJECT, obj, obj->mapbase,
4685                     obj->mapsize, 0, obj->path);
4686                 dbg("unloading \"%s\"", obj->path);
4687                 /*
4688                  * Unlink the object now to prevent new references from
4689                  * being acquired while the bind lock is dropped in
4690                  * recursive dlclose() invocations.
4691                  */
4692                 TAILQ_REMOVE(&obj_list, obj, next);
4693                 obj_count--;
4694
4695                 if (obj->filtees_loaded) {
4696                         if (next != NULL) {
4697                                 init_marker(&marker);
4698                                 TAILQ_INSERT_BEFORE(next, &marker, next);
4699                                 unload_filtees(obj, lockstate);
4700                                 next = TAILQ_NEXT(&marker, next);
4701                                 TAILQ_REMOVE(&obj_list, &marker, next);
4702                         } else
4703                                 unload_filtees(obj, lockstate);
4704                 }
4705                 release_object(obj);
4706         }
4707 }
4708
4709 static void
4710 unlink_object(Obj_Entry *root)
4711 {
4712     Objlist_Entry *elm;
4713
4714     if (root->refcount == 0) {
4715         /* Remove the object from the RTLD_GLOBAL list. */
4716         objlist_remove(&list_global, root);
4717
4718         /* Remove the object from all objects' DAG lists. */
4719         STAILQ_FOREACH(elm, &root->dagmembers, link) {
4720             objlist_remove(&elm->obj->dldags, root);
4721             if (elm->obj != root)
4722                 unlink_object(elm->obj);
4723         }
4724     }
4725 }
4726
4727 static void
4728 ref_dag(Obj_Entry *root)
4729 {
4730     Objlist_Entry *elm;
4731
4732     assert(root->dag_inited);
4733     STAILQ_FOREACH(elm, &root->dagmembers, link)
4734         elm->obj->refcount++;
4735 }
4736
4737 static void
4738 unref_dag(Obj_Entry *root)
4739 {
4740     Objlist_Entry *elm;
4741
4742     assert(root->dag_inited);
4743     STAILQ_FOREACH(elm, &root->dagmembers, link)
4744         elm->obj->refcount--;
4745 }
4746
4747 /*
4748  * Common code for MD __tls_get_addr().
4749  */
4750 static void *tls_get_addr_slow(Elf_Addr **, int, size_t) __noinline;
4751 static void *
4752 tls_get_addr_slow(Elf_Addr **dtvp, int index, size_t offset)
4753 {
4754     Elf_Addr *newdtv, *dtv;
4755     RtldLockState lockstate;
4756     int to_copy;
4757
4758     dtv = *dtvp;
4759     /* Check dtv generation in case new modules have arrived */
4760     if (dtv[0] != tls_dtv_generation) {
4761         wlock_acquire(rtld_bind_lock, &lockstate);
4762         newdtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4763         to_copy = dtv[1];
4764         if (to_copy > tls_max_index)
4765             to_copy = tls_max_index;
4766         memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));
4767         newdtv[0] = tls_dtv_generation;
4768         newdtv[1] = tls_max_index;
4769         free(dtv);
4770         lock_release(rtld_bind_lock, &lockstate);
4771         dtv = *dtvp = newdtv;
4772     }
4773
4774     /* Dynamically allocate module TLS if necessary */
4775     if (dtv[index + 1] == 0) {
4776         /* Signal safe, wlock will block out signals. */
4777         wlock_acquire(rtld_bind_lock, &lockstate);
4778         if (!dtv[index + 1])
4779             dtv[index + 1] = (Elf_Addr)allocate_module_tls(index);
4780         lock_release(rtld_bind_lock, &lockstate);
4781     }
4782     return ((void *)(dtv[index + 1] + offset));
4783 }
4784
4785 void *
4786 tls_get_addr_common(Elf_Addr **dtvp, int index, size_t offset)
4787 {
4788         Elf_Addr *dtv;
4789
4790         dtv = *dtvp;
4791         /* Check dtv generation in case new modules have arrived */
4792         if (__predict_true(dtv[0] == tls_dtv_generation &&
4793             dtv[index + 1] != 0))
4794                 return ((void *)(dtv[index + 1] + offset));
4795         return (tls_get_addr_slow(dtvp, index, offset));
4796 }
4797
4798 #if defined(__aarch64__) || defined(__arm__) || defined(__mips__) || \
4799     defined(__powerpc__) || defined(__riscv)
4800
4801 /*
4802  * Return pointer to allocated TLS block
4803  */
4804 static void *
4805 get_tls_block_ptr(void *tcb, size_t tcbsize)
4806 {
4807     size_t extra_size, post_size, pre_size, tls_block_size;
4808     size_t tls_init_align;
4809
4810     tls_init_align = MAX(obj_main->tlsalign, 1);
4811
4812     /* Compute fragments sizes. */
4813     extra_size = tcbsize - TLS_TCB_SIZE;
4814     post_size = calculate_tls_post_size(tls_init_align);
4815     tls_block_size = tcbsize + post_size;
4816     pre_size = roundup2(tls_block_size, tls_init_align) - tls_block_size;
4817
4818     return ((char *)tcb - pre_size - extra_size);
4819 }
4820
4821 /*
4822  * Allocate Static TLS using the Variant I method.
4823  *
4824  * For details on the layout, see lib/libc/gen/tls.c.
4825  *
4826  * NB: rtld's tls_static_space variable includes TLS_TCB_SIZE and post_size as
4827  *     it is based on tls_last_offset, and TLS offsets here are really TCB
4828  *     offsets, whereas libc's tls_static_space is just the executable's static
4829  *     TLS segment.
4830  */
4831 void *
4832 allocate_tls(Obj_Entry *objs, void *oldtcb, size_t tcbsize, size_t tcbalign)
4833 {
4834     Obj_Entry *obj;
4835     char *tls_block;
4836     Elf_Addr *dtv, **tcb;
4837     Elf_Addr addr;
4838     Elf_Addr i;
4839     size_t extra_size, maxalign, post_size, pre_size, tls_block_size;
4840     size_t tls_init_align, tls_init_offset;
4841
4842     if (oldtcb != NULL && tcbsize == TLS_TCB_SIZE)
4843         return (oldtcb);
4844
4845     assert(tcbsize >= TLS_TCB_SIZE);
4846     maxalign = MAX(tcbalign, tls_static_max_align);
4847     tls_init_align = MAX(obj_main->tlsalign, 1);
4848
4849     /* Compute fragmets sizes. */
4850     extra_size = tcbsize - TLS_TCB_SIZE;
4851     post_size = calculate_tls_post_size(tls_init_align);
4852     tls_block_size = tcbsize + post_size;
4853     pre_size = roundup2(tls_block_size, tls_init_align) - tls_block_size;
4854     tls_block_size += pre_size + tls_static_space - TLS_TCB_SIZE - post_size;
4855
4856     /* Allocate whole TLS block */
4857     tls_block = malloc_aligned(tls_block_size, maxalign, 0);
4858     tcb = (Elf_Addr **)(tls_block + pre_size + extra_size);
4859
4860     if (oldtcb != NULL) {
4861         memcpy(tls_block, get_tls_block_ptr(oldtcb, tcbsize),
4862             tls_static_space);
4863         free_aligned(get_tls_block_ptr(oldtcb, tcbsize));
4864
4865         /* Adjust the DTV. */
4866         dtv = tcb[0];
4867         for (i = 0; i < dtv[1]; i++) {
4868             if (dtv[i+2] >= (Elf_Addr)oldtcb &&
4869                 dtv[i+2] < (Elf_Addr)oldtcb + tls_static_space) {
4870                 dtv[i+2] = dtv[i+2] - (Elf_Addr)oldtcb + (Elf_Addr)tcb;
4871             }
4872         }
4873     } else {
4874         dtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4875         tcb[0] = dtv;
4876         dtv[0] = tls_dtv_generation;
4877         dtv[1] = tls_max_index;
4878
4879         for (obj = globallist_curr(objs); obj != NULL;
4880           obj = globallist_next(obj)) {
4881             if (obj->tlsoffset == 0)
4882                 continue;
4883             tls_init_offset = obj->tlspoffset & (obj->tlsalign - 1);
4884             addr = (Elf_Addr)tcb + obj->tlsoffset;
4885             if (tls_init_offset > 0)
4886                 memset((void *)addr, 0, tls_init_offset);
4887             if (obj->tlsinitsize > 0) {
4888                 memcpy((void *)(addr + tls_init_offset), obj->tlsinit,
4889                     obj->tlsinitsize);
4890             }
4891             if (obj->tlssize > obj->tlsinitsize) {
4892                 memset((void *)(addr + tls_init_offset + obj->tlsinitsize),
4893                     0, obj->tlssize - obj->tlsinitsize - tls_init_offset);
4894             }
4895             dtv[obj->tlsindex + 1] = addr;
4896         }
4897     }
4898
4899     return (tcb);
4900 }
4901
4902 void
4903 free_tls(void *tcb, size_t tcbsize, size_t tcbalign __unused)
4904 {
4905     Elf_Addr *dtv;
4906     Elf_Addr tlsstart, tlsend;
4907     size_t post_size;
4908     size_t dtvsize, i, tls_init_align;
4909
4910     assert(tcbsize >= TLS_TCB_SIZE);
4911     tls_init_align = MAX(obj_main->tlsalign, 1);
4912
4913     /* Compute fragments sizes. */
4914     post_size = calculate_tls_post_size(tls_init_align);
4915
4916     tlsstart = (Elf_Addr)tcb + TLS_TCB_SIZE + post_size;
4917     tlsend = (Elf_Addr)tcb + tls_static_space;
4918
4919     dtv = *(Elf_Addr **)tcb;
4920     dtvsize = dtv[1];
4921     for (i = 0; i < dtvsize; i++) {
4922         if (dtv[i+2] && (dtv[i+2] < tlsstart || dtv[i+2] >= tlsend)) {
4923             free((void*)dtv[i+2]);
4924         }
4925     }
4926     free(dtv);
4927     free_aligned(get_tls_block_ptr(tcb, tcbsize));
4928 }
4929
4930 #endif
4931
4932 #if defined(__i386__) || defined(__amd64__) || defined(__sparc64__)
4933
4934 /*
4935  * Allocate Static TLS using the Variant II method.
4936  */
4937 void *
4938 allocate_tls(Obj_Entry *objs, void *oldtls, size_t tcbsize, size_t tcbalign)
4939 {
4940     Obj_Entry *obj;
4941     size_t size, ralign;
4942     char *tls;
4943     Elf_Addr *dtv, *olddtv;
4944     Elf_Addr segbase, oldsegbase, addr;
4945     size_t i;
4946
4947     ralign = tcbalign;
4948     if (tls_static_max_align > ralign)
4949             ralign = tls_static_max_align;
4950     size = roundup(tls_static_space, ralign) + roundup(tcbsize, ralign);
4951
4952     assert(tcbsize >= 2*sizeof(Elf_Addr));
4953     tls = malloc_aligned(size, ralign, 0 /* XXX */);
4954     dtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
4955
4956     segbase = (Elf_Addr)(tls + roundup(tls_static_space, ralign));
4957     ((Elf_Addr*)segbase)[0] = segbase;
4958     ((Elf_Addr*)segbase)[1] = (Elf_Addr) dtv;
4959
4960     dtv[0] = tls_dtv_generation;
4961     dtv[1] = tls_max_index;
4962
4963     if (oldtls) {
4964         /*
4965          * Copy the static TLS block over whole.
4966          */
4967         oldsegbase = (Elf_Addr) oldtls;
4968         memcpy((void *)(segbase - tls_static_space),
4969                (const void *)(oldsegbase - tls_static_space),
4970                tls_static_space);
4971
4972         /*
4973          * If any dynamic TLS blocks have been created tls_get_addr(),
4974          * move them over.
4975          */
4976         olddtv = ((Elf_Addr**)oldsegbase)[1];
4977         for (i = 0; i < olddtv[1]; i++) {
4978             if (olddtv[i+2] < oldsegbase - size || olddtv[i+2] > oldsegbase) {
4979                 dtv[i+2] = olddtv[i+2];
4980                 olddtv[i+2] = 0;
4981             }
4982         }
4983
4984         /*
4985          * We assume that this block was the one we created with
4986          * allocate_initial_tls().
4987          */
4988         free_tls(oldtls, 2*sizeof(Elf_Addr), sizeof(Elf_Addr));
4989     } else {
4990         for (obj = objs; obj != NULL; obj = TAILQ_NEXT(obj, next)) {
4991                 if (obj->marker || obj->tlsoffset == 0)
4992                         continue;
4993                 addr = segbase - obj->tlsoffset;
4994                 memset((void*)(addr + obj->tlsinitsize),
4995                        0, obj->tlssize - obj->tlsinitsize);
4996                 if (obj->tlsinit) {
4997                     memcpy((void*) addr, obj->tlsinit, obj->tlsinitsize);
4998                     obj->static_tls_copied = true;
4999                 }
5000                 dtv[obj->tlsindex + 1] = addr;
5001         }
5002     }
5003
5004     return (void*) segbase;
5005 }
5006
5007 void
5008 free_tls(void *tls, size_t tcbsize  __unused, size_t tcbalign)
5009 {
5010     Elf_Addr* dtv;
5011     size_t size, ralign;
5012     int dtvsize, i;
5013     Elf_Addr tlsstart, tlsend;
5014
5015     /*
5016      * Figure out the size of the initial TLS block so that we can
5017      * find stuff which ___tls_get_addr() allocated dynamically.
5018      */
5019     ralign = tcbalign;
5020     if (tls_static_max_align > ralign)
5021             ralign = tls_static_max_align;
5022     size = roundup(tls_static_space, ralign);
5023
5024     dtv = ((Elf_Addr**)tls)[1];
5025     dtvsize = dtv[1];
5026     tlsend = (Elf_Addr) tls;
5027     tlsstart = tlsend - size;
5028     for (i = 0; i < dtvsize; i++) {
5029         if (dtv[i + 2] != 0 && (dtv[i + 2] < tlsstart || dtv[i + 2] > tlsend)) {
5030                 free_aligned((void *)dtv[i + 2]);
5031         }
5032     }
5033
5034     free_aligned((void *)tlsstart);
5035     free((void*) dtv);
5036 }
5037
5038 #endif
5039
5040 /*
5041  * Allocate TLS block for module with given index.
5042  */
5043 void *
5044 allocate_module_tls(int index)
5045 {
5046         Obj_Entry *obj;
5047         char *p;
5048
5049         TAILQ_FOREACH(obj, &obj_list, next) {
5050                 if (obj->marker)
5051                         continue;
5052                 if (obj->tlsindex == index)
5053                         break;
5054         }
5055         if (obj == NULL) {
5056                 _rtld_error("Can't find module with TLS index %d", index);
5057                 rtld_die();
5058         }
5059
5060         p = malloc_aligned(obj->tlssize, obj->tlsalign, obj->tlspoffset);
5061         memcpy(p, obj->tlsinit, obj->tlsinitsize);
5062         memset(p + obj->tlsinitsize, 0, obj->tlssize - obj->tlsinitsize);
5063         return (p);
5064 }
5065
5066 bool
5067 allocate_tls_offset(Obj_Entry *obj)
5068 {
5069     size_t off;
5070
5071     if (obj->tls_done)
5072         return true;
5073
5074     if (obj->tlssize == 0) {
5075         obj->tls_done = true;
5076         return true;
5077     }
5078
5079     if (tls_last_offset == 0)
5080         off = calculate_first_tls_offset(obj->tlssize, obj->tlsalign,
5081           obj->tlspoffset);
5082     else
5083         off = calculate_tls_offset(tls_last_offset, tls_last_size,
5084           obj->tlssize, obj->tlsalign, obj->tlspoffset);
5085
5086     /*
5087      * If we have already fixed the size of the static TLS block, we
5088      * must stay within that size. When allocating the static TLS, we
5089      * leave a small amount of space spare to be used for dynamically
5090      * loading modules which use static TLS.
5091      */
5092     if (tls_static_space != 0) {
5093         if (calculate_tls_end(off, obj->tlssize) > tls_static_space)
5094             return false;
5095     } else if (obj->tlsalign > tls_static_max_align) {
5096             tls_static_max_align = obj->tlsalign;
5097     }
5098
5099     tls_last_offset = obj->tlsoffset = off;
5100     tls_last_size = obj->tlssize;
5101     obj->tls_done = true;
5102
5103     return true;
5104 }
5105
5106 void
5107 free_tls_offset(Obj_Entry *obj)
5108 {
5109
5110     /*
5111      * If we were the last thing to allocate out of the static TLS
5112      * block, we give our space back to the 'allocator'. This is a
5113      * simplistic workaround to allow libGL.so.1 to be loaded and
5114      * unloaded multiple times.
5115      */
5116     if (calculate_tls_end(obj->tlsoffset, obj->tlssize)
5117         == calculate_tls_end(tls_last_offset, tls_last_size)) {
5118         tls_last_offset -= obj->tlssize;
5119         tls_last_size = 0;
5120     }
5121 }
5122
5123 void *
5124 _rtld_allocate_tls(void *oldtls, size_t tcbsize, size_t tcbalign)
5125 {
5126     void *ret;
5127     RtldLockState lockstate;
5128
5129     wlock_acquire(rtld_bind_lock, &lockstate);
5130     ret = allocate_tls(globallist_curr(TAILQ_FIRST(&obj_list)), oldtls,
5131       tcbsize, tcbalign);
5132     lock_release(rtld_bind_lock, &lockstate);
5133     return (ret);
5134 }
5135
5136 void
5137 _rtld_free_tls(void *tcb, size_t tcbsize, size_t tcbalign)
5138 {
5139     RtldLockState lockstate;
5140
5141     wlock_acquire(rtld_bind_lock, &lockstate);
5142     free_tls(tcb, tcbsize, tcbalign);
5143     lock_release(rtld_bind_lock, &lockstate);
5144 }
5145
5146 static void
5147 object_add_name(Obj_Entry *obj, const char *name)
5148 {
5149     Name_Entry *entry;
5150     size_t len;
5151
5152     len = strlen(name);
5153     entry = malloc(sizeof(Name_Entry) + len);
5154
5155     if (entry != NULL) {
5156         strcpy(entry->name, name);
5157         STAILQ_INSERT_TAIL(&obj->names, entry, link);
5158     }
5159 }
5160
5161 static int
5162 object_match_name(const Obj_Entry *obj, const char *name)
5163 {
5164     Name_Entry *entry;
5165
5166     STAILQ_FOREACH(entry, &obj->names, link) {
5167         if (strcmp(name, entry->name) == 0)
5168             return (1);
5169     }
5170     return (0);
5171 }
5172
5173 static Obj_Entry *
5174 locate_dependency(const Obj_Entry *obj, const char *name)
5175 {
5176     const Objlist_Entry *entry;
5177     const Needed_Entry *needed;
5178
5179     STAILQ_FOREACH(entry, &list_main, link) {
5180         if (object_match_name(entry->obj, name))
5181             return entry->obj;
5182     }
5183
5184     for (needed = obj->needed;  needed != NULL;  needed = needed->next) {
5185         if (strcmp(obj->strtab + needed->name, name) == 0 ||
5186           (needed->obj != NULL && object_match_name(needed->obj, name))) {
5187             /*
5188              * If there is DT_NEEDED for the name we are looking for,
5189              * we are all set.  Note that object might not be found if
5190              * dependency was not loaded yet, so the function can
5191              * return NULL here.  This is expected and handled
5192              * properly by the caller.
5193              */
5194             return (needed->obj);
5195         }
5196     }
5197     _rtld_error("%s: Unexpected inconsistency: dependency %s not found",
5198         obj->path, name);
5199     rtld_die();
5200 }
5201
5202 static int
5203 check_object_provided_version(Obj_Entry *refobj, const Obj_Entry *depobj,
5204     const Elf_Vernaux *vna)
5205 {
5206     const Elf_Verdef *vd;
5207     const char *vername;
5208
5209     vername = refobj->strtab + vna->vna_name;
5210     vd = depobj->verdef;
5211     if (vd == NULL) {
5212         _rtld_error("%s: version %s required by %s not defined",
5213             depobj->path, vername, refobj->path);
5214         return (-1);
5215     }
5216     for (;;) {
5217         if (vd->vd_version != VER_DEF_CURRENT) {
5218             _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
5219                 depobj->path, vd->vd_version);
5220             return (-1);
5221         }
5222         if (vna->vna_hash == vd->vd_hash) {
5223             const Elf_Verdaux *aux = (const Elf_Verdaux *)
5224                 ((const char *)vd + vd->vd_aux);
5225             if (strcmp(vername, depobj->strtab + aux->vda_name) == 0)
5226                 return (0);
5227         }
5228         if (vd->vd_next == 0)
5229             break;
5230         vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next);
5231     }
5232     if (vna->vna_flags & VER_FLG_WEAK)
5233         return (0);
5234     _rtld_error("%s: version %s required by %s not found",
5235         depobj->path, vername, refobj->path);
5236     return (-1);
5237 }
5238
5239 static int
5240 rtld_verify_object_versions(Obj_Entry *obj)
5241 {
5242     const Elf_Verneed *vn;
5243     const Elf_Verdef  *vd;
5244     const Elf_Verdaux *vda;
5245     const Elf_Vernaux *vna;
5246     const Obj_Entry *depobj;
5247     int maxvernum, vernum;
5248
5249     if (obj->ver_checked)
5250         return (0);
5251     obj->ver_checked = true;
5252
5253     maxvernum = 0;
5254     /*
5255      * Walk over defined and required version records and figure out
5256      * max index used by any of them. Do very basic sanity checking
5257      * while there.
5258      */
5259     vn = obj->verneed;
5260     while (vn != NULL) {
5261         if (vn->vn_version != VER_NEED_CURRENT) {
5262             _rtld_error("%s: Unsupported version %d of Elf_Verneed entry",
5263                 obj->path, vn->vn_version);
5264             return (-1);
5265         }
5266         vna = (const Elf_Vernaux *)((const char *)vn + vn->vn_aux);
5267         for (;;) {
5268             vernum = VER_NEED_IDX(vna->vna_other);
5269             if (vernum > maxvernum)
5270                 maxvernum = vernum;
5271             if (vna->vna_next == 0)
5272                  break;
5273             vna = (const Elf_Vernaux *)((const char *)vna + vna->vna_next);
5274         }
5275         if (vn->vn_next == 0)
5276             break;
5277         vn = (const Elf_Verneed *)((const char *)vn + vn->vn_next);
5278     }
5279
5280     vd = obj->verdef;
5281     while (vd != NULL) {
5282         if (vd->vd_version != VER_DEF_CURRENT) {
5283             _rtld_error("%s: Unsupported version %d of Elf_Verdef entry",
5284                 obj->path, vd->vd_version);
5285             return (-1);
5286         }
5287         vernum = VER_DEF_IDX(vd->vd_ndx);
5288         if (vernum > maxvernum)
5289                 maxvernum = vernum;
5290         if (vd->vd_next == 0)
5291             break;
5292         vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next);
5293     }
5294
5295     if (maxvernum == 0)
5296         return (0);
5297
5298     /*
5299      * Store version information in array indexable by version index.
5300      * Verify that object version requirements are satisfied along the
5301      * way.
5302      */
5303     obj->vernum = maxvernum + 1;
5304     obj->vertab = xcalloc(obj->vernum, sizeof(Ver_Entry));
5305
5306     vd = obj->verdef;
5307     while (vd != NULL) {
5308         if ((vd->vd_flags & VER_FLG_BASE) == 0) {
5309             vernum = VER_DEF_IDX(vd->vd_ndx);
5310             assert(vernum <= maxvernum);
5311             vda = (const Elf_Verdaux *)((const char *)vd + vd->vd_aux);
5312             obj->vertab[vernum].hash = vd->vd_hash;
5313             obj->vertab[vernum].name = obj->strtab + vda->vda_name;
5314             obj->vertab[vernum].file = NULL;
5315             obj->vertab[vernum].flags = 0;
5316         }
5317         if (vd->vd_next == 0)
5318             break;
5319         vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next);
5320     }
5321
5322     vn = obj->verneed;
5323     while (vn != NULL) {
5324         depobj = locate_dependency(obj, obj->strtab + vn->vn_file);
5325         if (depobj == NULL)
5326             return (-1);
5327         vna = (const Elf_Vernaux *)((const char *)vn + vn->vn_aux);
5328         for (;;) {
5329             if (check_object_provided_version(obj, depobj, vna))
5330                 return (-1);
5331             vernum = VER_NEED_IDX(vna->vna_other);
5332             assert(vernum <= maxvernum);
5333             obj->vertab[vernum].hash = vna->vna_hash;
5334             obj->vertab[vernum].name = obj->strtab + vna->vna_name;
5335             obj->vertab[vernum].file = obj->strtab + vn->vn_file;
5336             obj->vertab[vernum].flags = (vna->vna_other & VER_NEED_HIDDEN) ?
5337                 VER_INFO_HIDDEN : 0;
5338             if (vna->vna_next == 0)
5339                  break;
5340             vna = (const Elf_Vernaux *)((const char *)vna + vna->vna_next);
5341         }
5342         if (vn->vn_next == 0)
5343             break;
5344         vn = (const Elf_Verneed *)((const char *)vn + vn->vn_next);
5345     }
5346     return 0;
5347 }
5348
5349 static int
5350 rtld_verify_versions(const Objlist *objlist)
5351 {
5352     Objlist_Entry *entry;
5353     int rc;
5354
5355     rc = 0;
5356     STAILQ_FOREACH(entry, objlist, link) {
5357         /*
5358          * Skip dummy objects or objects that have their version requirements
5359          * already checked.
5360          */
5361         if (entry->obj->strtab == NULL || entry->obj->vertab != NULL)
5362             continue;
5363         if (rtld_verify_object_versions(entry->obj) == -1) {
5364             rc = -1;
5365             if (ld_tracing == NULL)
5366                 break;
5367         }
5368     }
5369     if (rc == 0 || ld_tracing != NULL)
5370         rc = rtld_verify_object_versions(&obj_rtld);
5371     return rc;
5372 }
5373
5374 const Ver_Entry *
5375 fetch_ventry(const Obj_Entry *obj, unsigned long symnum)
5376 {
5377     Elf_Versym vernum;
5378
5379     if (obj->vertab) {
5380         vernum = VER_NDX(obj->versyms[symnum]);
5381         if (vernum >= obj->vernum) {
5382             _rtld_error("%s: symbol %s has wrong verneed value %d",
5383                 obj->path, obj->strtab + symnum, vernum);
5384         } else if (obj->vertab[vernum].hash != 0) {
5385             return &obj->vertab[vernum];
5386         }
5387     }
5388     return NULL;
5389 }
5390
5391 int
5392 _rtld_get_stack_prot(void)
5393 {
5394
5395         return (stack_prot);
5396 }
5397
5398 int
5399 _rtld_is_dlopened(void *arg)
5400 {
5401         Obj_Entry *obj;
5402         RtldLockState lockstate;
5403         int res;
5404
5405         rlock_acquire(rtld_bind_lock, &lockstate);
5406         obj = dlcheck(arg);
5407         if (obj == NULL)
5408                 obj = obj_from_addr(arg);
5409         if (obj == NULL) {
5410                 _rtld_error("No shared object contains address");
5411                 lock_release(rtld_bind_lock, &lockstate);
5412                 return (-1);
5413         }
5414         res = obj->dlopened ? 1 : 0;
5415         lock_release(rtld_bind_lock, &lockstate);
5416         return (res);
5417 }
5418
5419 static int
5420 obj_remap_relro(Obj_Entry *obj, int prot)
5421 {
5422
5423         if (obj->relro_size > 0 && mprotect(obj->relro_page, obj->relro_size,
5424             prot) == -1) {
5425                 _rtld_error("%s: Cannot set relro protection to %#x: %s",
5426                     obj->path, prot, rtld_strerror(errno));
5427                 return (-1);
5428         }
5429         return (0);
5430 }
5431
5432 static int
5433 obj_disable_relro(Obj_Entry *obj)
5434 {
5435
5436         return (obj_remap_relro(obj, PROT_READ | PROT_WRITE));
5437 }
5438
5439 static int
5440 obj_enforce_relro(Obj_Entry *obj)
5441 {
5442
5443         return (obj_remap_relro(obj, PROT_READ));
5444 }
5445
5446 static void
5447 map_stacks_exec(RtldLockState *lockstate)
5448 {
5449         void (*thr_map_stacks_exec)(void);
5450
5451         if ((max_stack_flags & PF_X) == 0 || (stack_prot & PROT_EXEC) != 0)
5452                 return;
5453         thr_map_stacks_exec = (void (*)(void))(uintptr_t)
5454             get_program_var_addr("__pthread_map_stacks_exec", lockstate);
5455         if (thr_map_stacks_exec != NULL) {
5456                 stack_prot |= PROT_EXEC;
5457                 thr_map_stacks_exec();
5458         }
5459 }
5460
5461 static void
5462 distribute_static_tls(Objlist *list, RtldLockState *lockstate)
5463 {
5464         Objlist_Entry *elm;
5465         Obj_Entry *obj;
5466         void (*distrib)(size_t, void *, size_t, size_t);
5467
5468         distrib = (void (*)(size_t, void *, size_t, size_t))(uintptr_t)
5469             get_program_var_addr("__pthread_distribute_static_tls", lockstate);
5470         if (distrib == NULL)
5471                 return;
5472         STAILQ_FOREACH(elm, list, link) {
5473                 obj = elm->obj;
5474                 if (obj->marker || !obj->tls_done || obj->static_tls_copied)
5475                         continue;
5476                 distrib(obj->tlsoffset, obj->tlsinit, obj->tlsinitsize,
5477                     obj->tlssize);
5478                 obj->static_tls_copied = true;
5479         }
5480 }
5481
5482 void
5483 symlook_init(SymLook *dst, const char *name)
5484 {
5485
5486         bzero(dst, sizeof(*dst));
5487         dst->name = name;
5488         dst->hash = elf_hash(name);
5489         dst->hash_gnu = gnu_hash(name);
5490 }
5491
5492 static void
5493 symlook_init_from_req(SymLook *dst, const SymLook *src)
5494 {
5495
5496         dst->name = src->name;
5497         dst->hash = src->hash;
5498         dst->hash_gnu = src->hash_gnu;
5499         dst->ventry = src->ventry;
5500         dst->flags = src->flags;
5501         dst->defobj_out = NULL;
5502         dst->sym_out = NULL;
5503         dst->lockstate = src->lockstate;
5504 }
5505
5506 static int
5507 open_binary_fd(const char *argv0, bool search_in_path,
5508     const char **binpath_res)
5509 {
5510         char *binpath, *pathenv, *pe, *res1;
5511         const char *res;
5512         int fd;
5513
5514         binpath = NULL;
5515         res = NULL;
5516         if (search_in_path && strchr(argv0, '/') == NULL) {
5517                 binpath = xmalloc(PATH_MAX);
5518                 pathenv = getenv("PATH");
5519                 if (pathenv == NULL) {
5520                         _rtld_error("-p and no PATH environment variable");
5521                         rtld_die();
5522                 }
5523                 pathenv = strdup(pathenv);
5524                 if (pathenv == NULL) {
5525                         _rtld_error("Cannot allocate memory");
5526                         rtld_die();
5527                 }
5528                 fd = -1;
5529                 errno = ENOENT;
5530                 while ((pe = strsep(&pathenv, ":")) != NULL) {
5531                         if (strlcpy(binpath, pe, PATH_MAX) >= PATH_MAX)
5532                                 continue;
5533                         if (binpath[0] != '\0' &&
5534                             strlcat(binpath, "/", PATH_MAX) >= PATH_MAX)
5535                                 continue;
5536                         if (strlcat(binpath, argv0, PATH_MAX) >= PATH_MAX)
5537                                 continue;
5538                         fd = open(binpath, O_RDONLY | O_CLOEXEC | O_VERIFY);
5539                         if (fd != -1 || errno != ENOENT) {
5540                                 res = binpath;
5541                                 break;
5542                         }
5543                 }
5544                 free(pathenv);
5545         } else {
5546                 fd = open(argv0, O_RDONLY | O_CLOEXEC | O_VERIFY);
5547                 res = argv0;
5548         }
5549
5550         if (fd == -1) {
5551                 _rtld_error("Cannot open %s: %s", argv0, rtld_strerror(errno));
5552                 rtld_die();
5553         }
5554         if (res != NULL && res[0] != '/') {
5555                 res1 = xmalloc(PATH_MAX);
5556                 if (realpath(res, res1) != NULL) {
5557                         if (res != argv0)
5558                                 free(__DECONST(char *, res));
5559                         res = res1;
5560                 } else {
5561                         free(res1);
5562                 }
5563         }
5564         *binpath_res = res;
5565         return (fd);
5566 }
5567
5568 /*
5569  * Parse a set of command-line arguments.
5570  */
5571 static int
5572 parse_args(char* argv[], int argc, bool *use_pathp, int *fdp,
5573     const char **argv0)
5574 {
5575         const char *arg;
5576         char machine[64];
5577         size_t sz;
5578         int arglen, fd, i, j, mib[2];
5579         char opt;
5580         bool seen_b, seen_f;
5581
5582         dbg("Parsing command-line arguments");
5583         *use_pathp = false;
5584         *fdp = -1;
5585         seen_b = seen_f = false;
5586
5587         for (i = 1; i < argc; i++ ) {
5588                 arg = argv[i];
5589                 dbg("argv[%d]: '%s'", i, arg);
5590
5591                 /*
5592                  * rtld arguments end with an explicit "--" or with the first
5593                  * non-prefixed argument.
5594                  */
5595                 if (strcmp(arg, "--") == 0) {
5596                         i++;
5597                         break;
5598                 }
5599                 if (arg[0] != '-')
5600                         break;
5601
5602                 /*
5603                  * All other arguments are single-character options that can
5604                  * be combined, so we need to search through `arg` for them.
5605                  */
5606                 arglen = strlen(arg);
5607                 for (j = 1; j < arglen; j++) {
5608                         opt = arg[j];
5609                         if (opt == 'h') {
5610                                 print_usage(argv[0]);
5611                                 _exit(0);
5612                         } else if (opt == 'b') {
5613                                 if (seen_f) {
5614                                         _rtld_error("Both -b and -f specified");
5615                                         rtld_die();
5616                                 }
5617                                 i++;
5618                                 *argv0 = argv[i];
5619                                 seen_b = true;
5620                                 break;
5621                         } else if (opt == 'f') {
5622                                 if (seen_b) {
5623                                         _rtld_error("Both -b and -f specified");
5624                                         rtld_die();
5625                                 }
5626
5627                                 /*
5628                                  * -f XX can be used to specify a
5629                                  * descriptor for the binary named at
5630                                  * the command line (i.e., the later
5631                                  * argument will specify the process
5632                                  * name but the descriptor is what
5633                                  * will actually be executed).
5634                                  *
5635                                  * -f must be the last option in, e.g., -abcf.
5636                                  */
5637                                 if (j != arglen - 1) {
5638                                         _rtld_error("Invalid options: %s", arg);
5639                                         rtld_die();
5640                                 }
5641                                 i++;
5642                                 fd = parse_integer(argv[i]);
5643                                 if (fd == -1) {
5644                                         _rtld_error(
5645                                             "Invalid file descriptor: '%s'",
5646                                             argv[i]);
5647                                         rtld_die();
5648                                 }
5649                                 *fdp = fd;
5650                                 seen_f = true;
5651                                 break;
5652                         } else if (opt == 'p') {
5653                                 *use_pathp = true;
5654                         } else if (opt == 'v') {
5655                                 machine[0] = '\0';
5656                                 mib[0] = CTL_HW;
5657                                 mib[1] = HW_MACHINE;
5658                                 sz = sizeof(machine);
5659                                 sysctl(mib, nitems(mib), machine, &sz, NULL, 0);
5660                                 rtld_printf(
5661                                     "FreeBSD ld-elf.so.1 %s\n"
5662                                     "FreeBSD_version %d\n"
5663                                     "Default lib path %s\n"
5664                                     "Env prefix %s\n"
5665                                     "Hint file %s\n"
5666                                     "libmap file %s\n",
5667                                     machine,
5668                                     __FreeBSD_version, ld_standard_library_path,
5669                                     ld_env_prefix, ld_elf_hints_default,
5670                                     ld_path_libmap_conf);
5671                                 _exit(0);
5672                         } else {
5673                                 _rtld_error("Invalid argument: '%s'", arg);
5674                                 print_usage(argv[0]);
5675                                 rtld_die();
5676                         }
5677                 }
5678         }
5679
5680         if (!seen_b)
5681                 *argv0 = argv[i];
5682         return (i);
5683 }
5684
5685 /*
5686  * Parse a file descriptor number without pulling in more of libc (e.g. atoi).
5687  */
5688 static int
5689 parse_integer(const char *str)
5690 {
5691         static const int RADIX = 10;  /* XXXJA: possibly support hex? */
5692         const char *orig;
5693         int n;
5694         char c;
5695
5696         orig = str;
5697         n = 0;
5698         for (c = *str; c != '\0'; c = *++str) {
5699                 if (c < '0' || c > '9')
5700                         return (-1);
5701
5702                 n *= RADIX;
5703                 n += c - '0';
5704         }
5705
5706         /* Make sure we actually parsed something. */
5707         if (str == orig)
5708                 return (-1);
5709         return (n);
5710 }
5711
5712 static void
5713 print_usage(const char *argv0)
5714 {
5715
5716         rtld_printf(
5717             "Usage: %s [-h] [-b <exe>] [-f <FD>] [-p] [--] <binary> [<args>]\n"
5718             "\n"
5719             "Options:\n"
5720             "  -h        Display this help message\n"
5721             "  -b <exe>  Execute <exe> instead of <binary>, arg0 is <binary>\n"
5722             "  -f <FD>   Execute <FD> instead of searching for <binary>\n"
5723             "  -p        Search in PATH for named binary\n"
5724             "  -v        Display identification information\n"
5725             "  --        End of RTLD options\n"
5726             "  <binary>  Name of process to execute\n"
5727             "  <args>    Arguments to the executed process\n", argv0);
5728 }
5729
5730 /*
5731  * Overrides for libc_pic-provided functions.
5732  */
5733
5734 int
5735 __getosreldate(void)
5736 {
5737         size_t len;
5738         int oid[2];
5739         int error, osrel;
5740
5741         if (osreldate != 0)
5742                 return (osreldate);
5743
5744         oid[0] = CTL_KERN;
5745         oid[1] = KERN_OSRELDATE;
5746         osrel = 0;
5747         len = sizeof(osrel);
5748         error = sysctl(oid, 2, &osrel, &len, NULL, 0);
5749         if (error == 0 && osrel > 0 && len == sizeof(osrel))
5750                 osreldate = osrel;
5751         return (osreldate);
5752 }
5753
5754 void
5755 exit(int status)
5756 {
5757
5758         _exit(status);
5759 }
5760
5761 void (*__cleanup)(void);
5762 int __isthreaded = 0;
5763 int _thread_autoinit_dummy_decl = 1;
5764
5765 /*
5766  * No unresolved symbols for rtld.
5767  */
5768 void
5769 __pthread_cxa_finalize(struct dl_phdr_info *a __unused)
5770 {
5771 }
5772
5773 const char *
5774 rtld_strerror(int errnum)
5775 {
5776
5777         if (errnum < 0 || errnum >= sys_nerr)
5778                 return ("Unknown error");
5779         return (sys_errlist[errnum]);
5780 }
5781
5782 /*
5783  * No ifunc relocations.
5784  */
5785 void *
5786 memset(void *dest, int c, size_t len)
5787 {
5788         size_t i;
5789
5790         for (i = 0; i < len; i++)
5791                 ((char *)dest)[i] = c;
5792         return (dest);
5793 }
5794
5795 void
5796 bzero(void *dest, size_t len)
5797 {
5798         size_t i;
5799
5800         for (i = 0; i < len; i++)
5801                 ((char *)dest)[i] = 0;
5802 }
5803
5804 /* malloc */
5805 void *
5806 malloc(size_t nbytes)
5807 {
5808
5809         return (__crt_malloc(nbytes));
5810 }
5811
5812 void *
5813 calloc(size_t num, size_t size)
5814 {
5815
5816         return (__crt_calloc(num, size));
5817 }
5818
5819 void
5820 free(void *cp)
5821 {
5822
5823         __crt_free(cp);
5824 }
5825
5826 void *
5827 realloc(void *cp, size_t nbytes)
5828 {
5829
5830         return (__crt_realloc(cp, nbytes));
5831 }
5832
5833 extern int _rtld_version__FreeBSD_version __exported;
5834 int _rtld_version__FreeBSD_version = __FreeBSD_version;
5835
5836 extern char _rtld_version_laddr_offset __exported;
5837 char _rtld_version_laddr_offset;