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