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