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