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