rtld.c revision 1.136 1 /* $NetBSD: rtld.c,v 1.136 2010/12/19 17:26:51 skrll Exp $ */
2
3 /*
4 * Copyright 1996 John D. Polstra.
5 * Copyright 1996 Matt Thomas <matt (at) 3am-software.com>
6 * Copyright 2002 Charles M. Hannum <root (at) ihack.net>
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by John Polstra.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 /*
36 * Dynamic linker for ELF.
37 *
38 * John Polstra <jdp (at) polstra.com>.
39 */
40
41 #include <sys/cdefs.h>
42 #ifndef lint
43 __RCSID("$NetBSD: rtld.c,v 1.136 2010/12/19 17:26:51 skrll Exp $");
44 #endif /* not lint */
45
46 #include <err.h>
47 #include <errno.h>
48 #include <fcntl.h>
49 #include <stdarg.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <string.h>
53 #include <unistd.h>
54 #include <sys/param.h>
55 #include <sys/mman.h>
56 #include <dirent.h>
57
58 #include <ctype.h>
59
60 #include <dlfcn.h>
61 #include "debug.h"
62 #include "rtld.h"
63
64 #if !defined(lint)
65 #include "sysident.h"
66 #endif
67
68 /*
69 * Function declarations.
70 */
71 static void _rtld_init(caddr_t, caddr_t, const char *);
72 static void _rtld_exit(void);
73
74 Elf_Addr _rtld(Elf_Addr *, Elf_Addr);
75
76
77 /*
78 * Data declarations.
79 */
80 static char *error_message; /* Message for dlopen(), or NULL */
81
82 struct r_debug _rtld_debug; /* for GDB; */
83 bool _rtld_trust; /* False for setuid and setgid programs */
84 Obj_Entry *_rtld_objlist; /* Head of linked list of shared objects */
85 Obj_Entry **_rtld_objtail; /* Link field of last object in list */
86 Obj_Entry *_rtld_objmain; /* The main program shared object */
87 Obj_Entry _rtld_objself; /* The dynamic linker shared object */
88 u_int _rtld_objcount; /* Number of objects in _rtld_objlist */
89 u_int _rtld_objloads; /* Number of objects loaded in _rtld_objlist */
90 const char _rtld_path[] = _PATH_RTLD;
91
92 /* Initialize a fake symbol for resolving undefined weak references. */
93 Elf_Sym _rtld_sym_zero = {
94 .st_info = ELF_ST_INFO(STB_GLOBAL, STT_NOTYPE),
95 .st_shndx = SHN_ABS,
96 };
97 size_t _rtld_pagesz; /* Page size, as provided by kernel */
98
99 Search_Path *_rtld_default_paths;
100 Search_Path *_rtld_paths;
101
102 Library_Xform *_rtld_xforms;
103
104 /*
105 * Global declarations normally provided by crt0.
106 */
107 char *__progname;
108 char **environ;
109
110 #if defined(RTLD_DEBUG)
111 #ifndef __sh__
112 extern Elf_Addr _GLOBAL_OFFSET_TABLE_[];
113 #else /* 32-bit SuperH */
114 register Elf_Addr *_GLOBAL_OFFSET_TABLE_ asm("r12");
115 #endif
116 #endif /* RTLD_DEBUG */
117 extern Elf_Dyn _DYNAMIC;
118
119 static void _rtld_call_fini_functions(int);
120 static void _rtld_call_init_functions(void);
121 static void _rtld_initlist_visit(Objlist *, Obj_Entry *, int);
122 static void _rtld_initlist_tsort(Objlist *, int);
123 static Obj_Entry *_rtld_dlcheck(void *);
124 static void _rtld_init_dag(Obj_Entry *);
125 static void _rtld_init_dag1(Obj_Entry *, Obj_Entry *);
126 static void _rtld_objlist_remove(Objlist *, Obj_Entry *);
127 static void _rtld_objlist_clear(Objlist *);
128 static void _rtld_unload_object(Obj_Entry *, bool);
129 static void _rtld_unref_dag(Obj_Entry *);
130 static Obj_Entry *_rtld_obj_from_addr(const void *);
131
132 static void
133 _rtld_call_fini_functions(int force)
134 {
135 Objlist_Entry *elm;
136 Objlist finilist;
137 Obj_Entry *obj;
138
139 dbg(("_rtld_call_fini_functions(%d)", force));
140
141 SIMPLEQ_INIT(&finilist);
142 _rtld_initlist_tsort(&finilist, 1);
143
144 /* First pass: objects _not_ marked with DF_1_INITFIRST. */
145 SIMPLEQ_FOREACH(elm, &finilist, link) {
146 obj = elm->obj;
147 if (obj->refcount > 0 && !force) {
148 continue;
149 }
150 if (obj->fini == NULL || obj->fini_called || obj->initfirst) {
151 continue;
152 }
153 dbg (("calling fini function %s at %p", obj->path,
154 (void *)obj->fini));
155 obj->fini_called = 1;
156 (*obj->fini)();
157 }
158
159 /* Second pass: objects marked with DF_1_INITFIRST. */
160 SIMPLEQ_FOREACH(elm, &finilist, link) {
161 obj = elm->obj;
162 if (obj->refcount > 0 && !force) {
163 continue;
164 }
165 if (obj->fini == NULL || obj->fini_called) {
166 continue;
167 }
168 dbg (("calling fini function %s at %p (DF_1_INITFIRST)",
169 obj->path, (void *)obj->fini));
170 obj->fini_called = 1;
171 (*obj->fini)();
172 }
173
174 _rtld_objlist_clear(&finilist);
175 }
176
177 static void
178 _rtld_call_init_functions()
179 {
180 Objlist_Entry *elm;
181 Objlist initlist;
182 Obj_Entry *obj;
183
184 dbg(("_rtld_call_init_functions()"));
185 SIMPLEQ_INIT(&initlist);
186 _rtld_initlist_tsort(&initlist, 0);
187
188 /* First pass: objects marked with DF_1_INITFIRST. */
189 SIMPLEQ_FOREACH(elm, &initlist, link) {
190 obj = elm->obj;
191 if (obj->init == NULL || obj->init_called || !obj->initfirst) {
192 continue;
193 }
194 dbg (("calling init function %s at %p (DF_1_INITFIRST)",
195 obj->path, (void *)obj->init));
196 obj->init_called = 1;
197 (*obj->init)();
198 }
199
200 /* Second pass: all other objects. */
201 SIMPLEQ_FOREACH(elm, &initlist, link) {
202 obj = elm->obj;
203 if (obj->init == NULL || obj->init_called) {
204 continue;
205 }
206 dbg (("calling init function %s at %p", obj->path,
207 (void *)obj->init));
208 obj->init_called = 1;
209 (*obj->init)();
210 }
211
212 _rtld_objlist_clear(&initlist);
213 }
214
215 /*
216 * Initialize the dynamic linker. The argument is the address at which
217 * the dynamic linker has been mapped into memory. The primary task of
218 * this function is to create an Obj_Entry for the dynamic linker and
219 * to resolve the PLT relocation for platforms that need it (those that
220 * define __HAVE_FUNCTION_DESCRIPTORS
221 */
222 static void
223 _rtld_init(caddr_t mapbase, caddr_t relocbase, const char *execname)
224 {
225
226 /* Conjure up an Obj_Entry structure for the dynamic linker. */
227 _rtld_objself.path = __UNCONST(_rtld_path);
228 _rtld_objself.pathlen = sizeof(_rtld_path)-1;
229 _rtld_objself.rtld = true;
230 _rtld_objself.mapbase = mapbase;
231 _rtld_objself.relocbase = relocbase;
232 _rtld_objself.dynamic = (Elf_Dyn *) &_DYNAMIC;
233 _rtld_objself.strtab = "_rtld_sym_zero";
234
235 /*
236 * Set value to -relocbase so that
237 *
238 * _rtld_objself.relocbase + _rtld_sym_zero.st_value == 0
239 *
240 * This allows unresolved references to weak symbols to be computed
241 * to a value of 0.
242 */
243 _rtld_sym_zero.st_value = -(uintptr_t)relocbase;
244
245 _rtld_digest_dynamic(_rtld_path, &_rtld_objself);
246 assert(!_rtld_objself.needed);
247 #if !defined(__hppa__)
248 assert(!_rtld_objself.pltrel && !_rtld_objself.pltrela);
249 #else
250 _rtld_relocate_plt_objects(&_rtld_objself);
251 #endif
252 #if !defined(__mips__) && !defined(__hppa__)
253 assert(!_rtld_objself.pltgot);
254 #endif
255 #if !defined(__arm__) && !defined(__mips__) && !defined(__sh__)
256 /* ARM, MIPS and SH{3,5} have a bogus DT_TEXTREL. */
257 assert(!_rtld_objself.textrel);
258 #endif
259
260 _rtld_add_paths(execname, &_rtld_default_paths,
261 RTLD_DEFAULT_LIBRARY_PATH);
262
263 #ifdef RTLD_ARCH_SUBDIR
264 _rtld_add_paths(execname, &_rtld_default_paths,
265 RTLD_DEFAULT_LIBRARY_PATH "/" RTLD_ARCH_SUBDIR);
266 #endif
267
268 /*
269 * Set up the _rtld_objlist pointer, so that rtld symbols can be found.
270 */
271 _rtld_objlist = &_rtld_objself;
272
273 /* Make the object list empty again. */
274 _rtld_objlist = NULL;
275 _rtld_objtail = &_rtld_objlist;
276 _rtld_objcount = 0;
277
278 _rtld_debug.r_brk = _rtld_debug_state;
279 _rtld_debug.r_state = RT_CONSISTENT;
280 }
281
282 /*
283 * Cleanup procedure. It will be called (by the atexit() mechanism) just
284 * before the process exits.
285 */
286 static void
287 _rtld_exit(void)
288 {
289 dbg(("rtld_exit()"));
290
291 _rtld_call_fini_functions(1);
292 }
293
294 /*
295 * Main entry point for dynamic linking. The argument is the stack
296 * pointer. The stack is expected to be laid out as described in the
297 * SVR4 ABI specification, Intel 386 Processor Supplement. Specifically,
298 * the stack pointer points to a word containing ARGC. Following that
299 * in the stack is a null-terminated sequence of pointers to argument
300 * strings. Then comes a null-terminated sequence of pointers to
301 * environment strings. Finally, there is a sequence of "auxiliary
302 * vector" entries.
303 *
304 * This function returns the entry point for the main program, the dynamic
305 * linker's exit procedure in sp[0], and a pointer to the main object in
306 * sp[1].
307 */
308 Elf_Addr
309 _rtld(Elf_Addr *sp, Elf_Addr relocbase)
310 {
311 const AuxInfo *pAUX_base, *pAUX_entry, *pAUX_execfd, *pAUX_phdr,
312 *pAUX_phent, *pAUX_phnum, *pAUX_euid, *pAUX_egid,
313 *pAUX_ruid, *pAUX_rgid;
314 const AuxInfo *pAUX_pagesz;
315 char **env, **oenvp;
316 const AuxInfo *aux;
317 const AuxInfo *auxp;
318 Elf_Addr *const osp = sp;
319 bool bind_now = 0;
320 const char *ld_bind_now, *ld_preload, *ld_library_path;
321 const char **argv;
322 const char *execname;
323 long argc;
324 const char **real___progname;
325 const Obj_Entry **real___mainprog_obj;
326 char ***real_environ;
327 #ifdef DEBUG
328 int i = 0;
329 const char *ld_debug;
330 #endif
331
332 /*
333 * On entry, the dynamic linker itself has not been relocated yet.
334 * Be very careful not to reference any global data until after
335 * _rtld_init has returned. It is OK to reference file-scope statics
336 * and string constants, and to call static and global functions.
337 */
338 /* Find the auxiliary vector on the stack. */
339 /* first Elf_Word reserved to address of exit routine */
340 #if defined(RTLD_DEBUG)
341 debug = 1;
342 dbg(("sp = %p, argc = %ld, argv = %p <%s> relocbase %p", sp,
343 (long)sp[2], &sp[3], (char *) sp[3], (void *)relocbase));
344 dbg(("got is at %p, dynamic is at %p", _GLOBAL_OFFSET_TABLE_,
345 &_DYNAMIC));
346 dbg(("_ctype_ is %p", _ctype_));
347 #endif
348
349 sp += 2; /* skip over return argument space */
350 argv = (const char **) &sp[1];
351 argc = *(long *)sp;
352 sp += 2 + argc; /* Skip over argc, arguments, and NULL
353 * terminator */
354 env = (char **) sp;
355 while (*sp++ != 0) { /* Skip over environment, and NULL terminator */
356 #if defined(RTLD_DEBUG)
357 dbg(("env[%d] = %p %s", i++, (void *)sp[-1], (char *)sp[-1]));
358 #endif
359 }
360 aux = (const AuxInfo *) sp;
361
362 pAUX_base = pAUX_entry = pAUX_execfd = NULL;
363 pAUX_phdr = pAUX_phent = pAUX_phnum = NULL;
364 pAUX_euid = pAUX_ruid = pAUX_egid = pAUX_rgid = NULL;
365 pAUX_pagesz = NULL;
366
367 execname = NULL;
368
369 /* Digest the auxiliary vector. */
370 for (auxp = aux; auxp->a_type != AT_NULL; ++auxp) {
371 switch (auxp->a_type) {
372 case AT_BASE:
373 pAUX_base = auxp;
374 break;
375 case AT_ENTRY:
376 pAUX_entry = auxp;
377 break;
378 case AT_EXECFD:
379 pAUX_execfd = auxp;
380 break;
381 case AT_PHDR:
382 pAUX_phdr = auxp;
383 break;
384 case AT_PHENT:
385 pAUX_phent = auxp;
386 break;
387 case AT_PHNUM:
388 pAUX_phnum = auxp;
389 break;
390 #ifdef AT_EUID
391 case AT_EUID:
392 pAUX_euid = auxp;
393 break;
394 case AT_RUID:
395 pAUX_ruid = auxp;
396 break;
397 case AT_EGID:
398 pAUX_egid = auxp;
399 break;
400 case AT_RGID:
401 pAUX_rgid = auxp;
402 break;
403 #endif
404 #ifdef AT_SUN_EXECNAME
405 case AT_SUN_EXECNAME:
406 execname = (const char *)(const void *)auxp->a_v;
407 break;
408 #endif
409 case AT_PAGESZ:
410 pAUX_pagesz = auxp;
411 break;
412 }
413 }
414
415 /* Initialize and relocate ourselves. */
416 if (pAUX_base == NULL) {
417 _rtld_error("Bad pAUX_base");
418 _rtld_die();
419 }
420 assert(pAUX_pagesz != NULL);
421 _rtld_pagesz = (int)pAUX_pagesz->a_v;
422 _rtld_init((caddr_t)pAUX_base->a_v, (caddr_t)relocbase, execname);
423
424 __progname = _rtld_objself.path;
425 environ = env;
426
427 _rtld_trust = ((pAUX_euid ? (uid_t)pAUX_euid->a_v : geteuid()) ==
428 (pAUX_ruid ? (uid_t)pAUX_ruid->a_v : getuid())) &&
429 ((pAUX_egid ? (gid_t)pAUX_egid->a_v : getegid()) ==
430 (pAUX_rgid ? (gid_t)pAUX_rgid->a_v : getgid()));
431
432 #ifdef DEBUG
433 ld_debug = NULL;
434 #endif
435 ld_bind_now = NULL;
436 ld_library_path = NULL;
437 ld_preload = NULL;
438 /*
439 * Inline avoid using normal getenv/unsetenv here as the libc
440 * code is quite a bit more complicated.
441 */
442 for (oenvp = env; *env != NULL; ++env) {
443 static const char bind_var[] = "LD_BIND_NOW=";
444 static const char debug_var[] = "LD_DEBUG=";
445 static const char path_var[] = "LD_LIBRARY_PATH=";
446 static const char preload_var[] = "LD_PRELOAD=";
447 #define LEN(x) (sizeof(x) - 1)
448
449 if ((*env)[0] != 'L' || (*env)[1] != 'D') {
450 /*
451 * Special case to skip most entries without
452 * the more expensive calls to strncmp.
453 */
454 *oenvp++ = *env;
455 } else if (strncmp(*env, debug_var, LEN(debug_var)) == 0) {
456 if (_rtld_trust) {
457 #ifdef DEBUG
458 ld_debug = *env + LEN(debug_var);
459 #endif
460 *oenvp++ = *env;
461 }
462 } else if (strncmp(*env, bind_var, LEN(bind_var)) == 0) {
463 ld_bind_now = *env + LEN(bind_var);
464 } else if (strncmp(*env, path_var, LEN(path_var)) == 0) {
465 if (_rtld_trust) {
466 ld_library_path = *env + LEN(path_var);
467 *oenvp++ = *env;
468 }
469 } else if (strncmp(*env, preload_var, LEN(preload_var)) == 0) {
470 if (_rtld_trust) {
471 ld_preload = *env + LEN(preload_var);
472 *oenvp++ = *env;
473 }
474 } else {
475 *oenvp++ = *env;
476 }
477 #undef LEN
478 }
479 *oenvp++ = NULL;
480
481 if (ld_bind_now != NULL && *ld_bind_now != '\0')
482 bind_now = true;
483 if (_rtld_trust) {
484 #ifdef DEBUG
485 #ifdef RTLD_DEBUG
486 debug = 0;
487 #endif
488 if (ld_debug != NULL && *ld_debug != '\0')
489 debug = 1;
490 #endif
491 _rtld_add_paths(execname, &_rtld_paths, ld_library_path);
492 } else {
493 execname = NULL;
494 }
495 _rtld_process_hints(execname, &_rtld_paths, &_rtld_xforms,
496 _PATH_LD_HINTS);
497 dbg(("dynamic linker is initialized, mapbase=%p, relocbase=%p",
498 _rtld_objself.mapbase, _rtld_objself.relocbase));
499
500 /*
501 * Load the main program, or process its program header if it is
502 * already loaded.
503 */
504 if (pAUX_execfd != NULL) { /* Load the main program. */
505 int fd = pAUX_execfd->a_v;
506 const char *obj_name = argv[0] ? argv[0] : "main program";
507 dbg(("loading main program"));
508 _rtld_objmain = _rtld_map_object(obj_name, fd, NULL);
509 close(fd);
510 if (_rtld_objmain == NULL)
511 _rtld_die();
512 } else { /* Main program already loaded. */
513 const Elf_Phdr *phdr;
514 int phnum;
515 caddr_t entry;
516
517 dbg(("processing main program's program header"));
518 assert(pAUX_phdr != NULL);
519 phdr = (const Elf_Phdr *) pAUX_phdr->a_v;
520 assert(pAUX_phnum != NULL);
521 phnum = pAUX_phnum->a_v;
522 assert(pAUX_phent != NULL);
523 assert(pAUX_phent->a_v == sizeof(Elf_Phdr));
524 assert(pAUX_entry != NULL);
525 entry = (caddr_t) pAUX_entry->a_v;
526 _rtld_objmain = _rtld_digest_phdr(phdr, phnum, entry);
527 _rtld_objmain->path = xstrdup(argv[0] ? argv[0] :
528 "main program");
529 _rtld_objmain->pathlen = strlen(_rtld_objmain->path);
530 }
531
532 _rtld_objmain->mainprog = true;
533
534 /*
535 * Get the actual dynamic linker pathname from the executable if
536 * possible. (It should always be possible.) That ensures that
537 * gdb will find the right dynamic linker even if a non-standard
538 * one is being used.
539 */
540 if (_rtld_objmain->interp != NULL &&
541 strcmp(_rtld_objmain->interp, _rtld_objself.path) != 0)
542 _rtld_objself.path = xstrdup(_rtld_objmain->interp);
543 dbg(("actual dynamic linker is %s", _rtld_objself.path));
544
545 _rtld_digest_dynamic(execname, _rtld_objmain);
546
547 /* Link the main program into the list of objects. */
548 *_rtld_objtail = _rtld_objmain;
549 _rtld_objtail = &_rtld_objmain->next;
550 _rtld_objcount++;
551 _rtld_objloads++;
552
553 _rtld_linkmap_add(_rtld_objmain);
554 _rtld_linkmap_add(&_rtld_objself);
555
556 ++_rtld_objmain->refcount;
557 _rtld_objmain->mainref = 1;
558 _rtld_objlist_push_tail(&_rtld_list_main, _rtld_objmain);
559
560 if (ld_preload) {
561 /*
562 * Pre-load user-specified objects after the main program
563 * but before any shared object dependencies.
564 */
565 dbg(("preloading objects"));
566 if (_rtld_preload(ld_preload) == -1)
567 _rtld_die();
568 }
569
570 dbg(("loading needed objects"));
571 if (_rtld_load_needed_objects(_rtld_objmain, RTLD_MAIN) == -1)
572 _rtld_die();
573
574 dbg(("relocating objects"));
575 if (_rtld_relocate_objects(_rtld_objmain, bind_now) == -1)
576 _rtld_die();
577
578 dbg(("doing copy relocations"));
579 if (_rtld_do_copy_relocations(_rtld_objmain) == -1)
580 _rtld_die();
581
582 /*
583 * Set the __progname, environ and, __mainprog_obj before
584 * calling anything that might use them.
585 */
586 real___progname = _rtld_objmain_sym("__progname");
587 if (real___progname) {
588 if (argv[0] != NULL) {
589 if ((*real___progname = strrchr(argv[0], '/')) == NULL)
590 (*real___progname) = argv[0];
591 else
592 (*real___progname)++;
593 } else {
594 (*real___progname) = NULL;
595 }
596 }
597 real_environ = _rtld_objmain_sym("environ");
598 if (real_environ)
599 *real_environ = environ;
600 /*
601 * Set __mainprog_obj for old binaries.
602 */
603 real___mainprog_obj = _rtld_objmain_sym("__mainprog_obj");
604 if (real___mainprog_obj)
605 *real___mainprog_obj = _rtld_objmain;
606
607 dbg(("calling _init functions"));
608 _rtld_call_init_functions();
609
610 dbg(("control at program entry point = %p, obj = %p, exit = %p",
611 _rtld_objmain->entry, _rtld_objmain, _rtld_exit));
612
613 /*
614 * Return with the entry point and the exit procedure in at the top
615 * of stack.
616 */
617
618 _rtld_debug_state(); /* say hello to gdb! */
619
620 ((void **) osp)[0] = _rtld_exit;
621 ((void **) osp)[1] = _rtld_objmain;
622 return (Elf_Addr) _rtld_objmain->entry;
623 }
624
625 void
626 _rtld_die(void)
627 {
628 const char *msg = dlerror();
629
630 if (msg == NULL)
631 msg = "Fatal error";
632 xerrx(1, "%s", msg);
633 }
634
635 static Obj_Entry *
636 _rtld_dlcheck(void *handle)
637 {
638 Obj_Entry *obj;
639
640 for (obj = _rtld_objlist; obj != NULL; obj = obj->next)
641 if (obj == (Obj_Entry *) handle)
642 break;
643
644 if (obj == NULL || obj->dl_refcount == 0) {
645 xwarnx("Invalid shared object handle %p", handle);
646 return NULL;
647 }
648 return obj;
649 }
650
651 static void
652 _rtld_initlist_visit(Objlist* list, Obj_Entry *obj, int rev)
653 {
654 Needed_Entry* elm;
655
656 /* dbg(("_rtld_initlist_visit(%s)", obj->path)); */
657
658 if (obj->init_done)
659 return;
660 obj->init_done = 1;
661
662 for (elm = obj->needed; elm != NULL; elm = elm->next) {
663 if (elm->obj != NULL) {
664 _rtld_initlist_visit(list, elm->obj, rev);
665 }
666 }
667
668 if (rev) {
669 _rtld_objlist_push_head(list, obj);
670 } else {
671 _rtld_objlist_push_tail(list, obj);
672 }
673 }
674
675 static void
676 _rtld_initlist_tsort(Objlist* list, int rev)
677 {
678 dbg(("_rtld_initlist_tsort"));
679
680 Obj_Entry* obj;
681
682 for (obj = _rtld_objlist->next; obj; obj = obj->next) {
683 obj->init_done = 0;
684 }
685
686 for (obj = _rtld_objlist->next; obj; obj = obj->next) {
687 _rtld_initlist_visit(list, obj, rev);
688 }
689 }
690
691 static void
692 _rtld_init_dag(Obj_Entry *root)
693 {
694
695 _rtld_init_dag1(root, root);
696 }
697
698 static void
699 _rtld_init_dag1(Obj_Entry *root, Obj_Entry *obj)
700 {
701 const Needed_Entry *needed;
702
703 if (!obj->mainref) {
704 if (_rtld_objlist_find(&obj->dldags, root))
705 return;
706 dbg(("add %p (%s) to %p (%s) DAG", obj, obj->path, root,
707 root->path));
708 _rtld_objlist_push_tail(&obj->dldags, root);
709 _rtld_objlist_push_tail(&root->dagmembers, obj);
710 }
711 for (needed = obj->needed; needed != NULL; needed = needed->next)
712 if (needed->obj != NULL)
713 _rtld_init_dag1(root, needed->obj);
714 }
715
716 /*
717 * Note, this is called only for objects loaded by dlopen().
718 */
719 static void
720 _rtld_unload_object(Obj_Entry *root, bool do_fini_funcs)
721 {
722
723 _rtld_unref_dag(root);
724 if (root->refcount == 0) { /* We are finished with some objects. */
725 Obj_Entry *obj;
726 Obj_Entry **linkp;
727 Objlist_Entry *elm;
728
729 /* Finalize objects that are about to be unmapped. */
730 if (do_fini_funcs)
731 _rtld_call_fini_functions(0);
732
733 /* Remove the DAG from all objects' DAG lists. */
734 SIMPLEQ_FOREACH(elm, &root->dagmembers, link)
735 _rtld_objlist_remove(&elm->obj->dldags, root);
736
737 /* Remove the DAG from the RTLD_GLOBAL list. */
738 if (root->globalref) {
739 root->globalref = 0;
740 _rtld_objlist_remove(&_rtld_list_global, root);
741 }
742
743 /* Unmap all objects that are no longer referenced. */
744 linkp = &_rtld_objlist->next;
745 while ((obj = *linkp) != NULL) {
746 if (obj->refcount == 0) {
747 dbg(("unloading \"%s\"", obj->path));
748 if (obj->ehdr != MAP_FAILED)
749 munmap(obj->ehdr, _rtld_pagesz);
750 munmap(obj->mapbase, obj->mapsize);
751 _rtld_objlist_remove(&_rtld_list_global, obj);
752 _rtld_linkmap_delete(obj);
753 *linkp = obj->next;
754 _rtld_objcount--;
755 _rtld_obj_free(obj);
756 } else
757 linkp = &obj->next;
758 }
759 _rtld_objtail = linkp;
760 }
761 }
762
763 static void
764 _rtld_unref_dag(Obj_Entry *root)
765 {
766
767 assert(root);
768 assert(root->refcount != 0);
769 --root->refcount;
770 if (root->refcount == 0) {
771 const Needed_Entry *needed;
772
773 for (needed = root->needed; needed != NULL;
774 needed = needed->next) {
775 if (needed->obj != NULL)
776 _rtld_unref_dag(needed->obj);
777 }
778 }
779 }
780
781 __strong_alias(__dlclose,dlclose)
782 int
783 dlclose(void *handle)
784 {
785 Obj_Entry *root = _rtld_dlcheck(handle);
786
787 if (root == NULL)
788 return -1;
789
790 _rtld_debug.r_state = RT_DELETE;
791 _rtld_debug_state();
792
793 --root->dl_refcount;
794 _rtld_unload_object(root, true);
795
796 _rtld_debug.r_state = RT_CONSISTENT;
797 _rtld_debug_state();
798
799 return 0;
800 }
801
802 __strong_alias(__dlerror,dlerror)
803 char *
804 dlerror(void)
805 {
806 char *msg = error_message;
807
808 error_message = NULL;
809 return msg;
810 }
811
812 __strong_alias(__dlopen,dlopen)
813 void *
814 dlopen(const char *name, int mode)
815 {
816 Obj_Entry **old_obj_tail = _rtld_objtail;
817 Obj_Entry *obj = NULL;
818
819 _rtld_debug.r_state = RT_ADD;
820 _rtld_debug_state();
821
822 if (name == NULL) {
823 obj = _rtld_objmain;
824 obj->refcount++;
825 } else
826 obj = _rtld_load_library(name, _rtld_objmain, mode);
827
828 if (obj != NULL) {
829 ++obj->dl_refcount;
830 if (*old_obj_tail != NULL) { /* We loaded something new. */
831 assert(*old_obj_tail == obj);
832
833 if (_rtld_load_needed_objects(obj, mode) == -1 ||
834 (_rtld_init_dag(obj),
835 _rtld_relocate_objects(obj,
836 ((mode & 3) == RTLD_NOW))) == -1) {
837 _rtld_unload_object(obj, false);
838 obj->dl_refcount--;
839 obj = NULL;
840 } else {
841 _rtld_call_init_functions();
842 }
843 }
844 }
845 _rtld_debug.r_state = RT_CONSISTENT;
846 _rtld_debug_state();
847
848 return obj;
849 }
850
851 /*
852 * Find a symbol in the main program.
853 */
854 void *
855 _rtld_objmain_sym(const char *name)
856 {
857 unsigned long hash;
858 const Elf_Sym *def;
859 const Obj_Entry *obj;
860 DoneList donelist;
861
862 hash = _rtld_elf_hash(name);
863 obj = _rtld_objmain;
864 _rtld_donelist_init(&donelist);
865
866 def = _rtld_symlook_list(name, hash, &_rtld_list_main, &obj, false,
867 &donelist);
868
869 if (def != NULL)
870 return obj->relocbase + def->st_value;
871 return NULL;
872 }
873
874 #ifdef __powerpc__
875 static void *
876 hackish_return_address(void)
877 {
878 return __builtin_return_address(1);
879 }
880 #endif
881
882 __strong_alias(__dlsym,dlsym)
883 void *
884 dlsym(void *handle, const char *name)
885 {
886 const Obj_Entry *obj;
887 unsigned long hash;
888 const Elf_Sym *def;
889 const Obj_Entry *defobj;
890 void *retaddr;
891 DoneList donelist;
892
893 hash = _rtld_elf_hash(name);
894 def = NULL;
895 defobj = NULL;
896
897 switch ((intptr_t)handle) {
898 case (intptr_t)NULL:
899 case (intptr_t)RTLD_NEXT:
900 case (intptr_t)RTLD_DEFAULT:
901 case (intptr_t)RTLD_SELF:
902 #ifdef __powerpc__
903 retaddr = hackish_return_address();
904 #else
905 retaddr = __builtin_return_address(0);
906 #endif
907 if ((obj = _rtld_obj_from_addr(retaddr)) == NULL) {
908 _rtld_error("Cannot determine caller's shared object");
909 return NULL;
910 }
911
912 switch ((intptr_t)handle) {
913 case (intptr_t)NULL: /* Just the caller's shared object. */
914 def = _rtld_symlook_obj(name, hash, obj, false);
915 defobj = obj;
916 break;
917
918 case (intptr_t)RTLD_NEXT: /* Objects after callers */
919 obj = obj->next;
920 /*FALLTHROUGH*/
921
922 case (intptr_t)RTLD_SELF: /* Caller included */
923 for (; obj; obj = obj->next) {
924 if ((def = _rtld_symlook_obj(name, hash, obj,
925 false)) != NULL) {
926 defobj = obj;
927 break;
928 }
929 }
930 break;
931
932 case (intptr_t)RTLD_DEFAULT:
933 def = _rtld_symlook_default(name, hash, obj, &defobj,
934 false);
935 break;
936
937 default:
938 abort();
939 }
940 break;
941
942 default:
943 if ((obj = _rtld_dlcheck(handle)) == NULL)
944 return NULL;
945
946 _rtld_donelist_init(&donelist);
947
948 if (obj->mainprog) {
949 /* Search main program and all libraries loaded by it */
950 def = _rtld_symlook_list(name, hash, &_rtld_list_main,
951 &defobj, false, &donelist);
952 } else {
953 Needed_Entry fake;
954 DoneList depth;
955
956 /* Search the object and all the libraries loaded by it. */
957 fake.next = NULL;
958 fake.obj = __UNCONST(obj);
959 fake.name = 0;
960
961 _rtld_donelist_init(&depth);
962 def = _rtld_symlook_needed(name, hash, &fake, &defobj,
963 false, &donelist, &depth);
964 }
965
966 break;
967 }
968
969 if (def != NULL) {
970 #ifdef __HAVE_FUNCTION_DESCRIPTORS
971 if (ELF_ST_TYPE(def->st_info) == STT_FUNC)
972 return (void *)_rtld_function_descriptor_alloc(defobj,
973 def, 0);
974 #endif /* __HAVE_FUNCTION_DESCRIPTORS */
975 return defobj->relocbase + def->st_value;
976 }
977
978 _rtld_error("Undefined symbol \"%s\"", name);
979 return NULL;
980 }
981
982 __strong_alias(__dladdr,dladdr)
983 int
984 dladdr(const void *addr, Dl_info *info)
985 {
986 const Obj_Entry *obj;
987 const Elf_Sym *def, *best_def;
988 void *symbol_addr;
989 unsigned long symoffset;
990
991 #ifdef __HAVE_FUNCTION_DESCRIPTORS
992 addr = _rtld_function_descriptor_function(addr);
993 #endif /* __HAVE_FUNCTION_DESCRIPTORS */
994
995 obj = _rtld_obj_from_addr(addr);
996 if (obj == NULL) {
997 _rtld_error("No shared object contains address");
998 return 0;
999 }
1000 info->dli_fname = obj->path;
1001 info->dli_fbase = obj->mapbase;
1002 info->dli_saddr = (void *)0;
1003 info->dli_sname = NULL;
1004
1005 /*
1006 * Walk the symbol list looking for the symbol whose address is
1007 * closest to the address sent in.
1008 */
1009 best_def = NULL;
1010 for (symoffset = 0; symoffset < obj->nchains; symoffset++) {
1011 def = obj->symtab + symoffset;
1012
1013 /*
1014 * For skip the symbol if st_shndx is either SHN_UNDEF or
1015 * SHN_COMMON.
1016 */
1017 if (def->st_shndx == SHN_UNDEF || def->st_shndx == SHN_COMMON)
1018 continue;
1019
1020 /*
1021 * If the symbol is greater than the specified address, or if it
1022 * is further away from addr than the current nearest symbol,
1023 * then reject it.
1024 */
1025 symbol_addr = obj->relocbase + def->st_value;
1026 if (symbol_addr > addr || symbol_addr < info->dli_saddr)
1027 continue;
1028
1029 /* Update our idea of the nearest symbol. */
1030 info->dli_sname = obj->strtab + def->st_name;
1031 info->dli_saddr = symbol_addr;
1032 best_def = def;
1033
1034 /* Exact match? */
1035 if (info->dli_saddr == addr)
1036 break;
1037 }
1038
1039 #ifdef __HAVE_FUNCTION_DESCRIPTORS
1040 if (best_def != NULL && ELF_ST_TYPE(best_def->st_info) == STT_FUNC)
1041 info->dli_saddr = (void *)_rtld_function_descriptor_alloc(obj,
1042 best_def, 0);
1043 #endif /* __HAVE_FUNCTION_DESCRIPTORS */
1044
1045 return 1;
1046 }
1047
1048 __strong_alias(__dlinfo,dlinfo)
1049 int
1050 dlinfo(void *handle, int req, void *v)
1051 {
1052 const Obj_Entry *obj;
1053 void *retaddr;
1054
1055 if (handle == RTLD_SELF) {
1056 #ifdef __powerpc__
1057 retaddr = hackish_return_address();
1058 #else
1059 retaddr = __builtin_return_address(0);
1060 #endif
1061 if ((obj = _rtld_obj_from_addr(retaddr)) == NULL) {
1062 _rtld_error("Cannot determine caller's shared object");
1063 return -1;
1064 }
1065 } else {
1066 if ((obj = _rtld_dlcheck(handle)) == NULL) {
1067 _rtld_error("Invalid handle");
1068 return -1;
1069 }
1070 }
1071
1072 switch (req) {
1073 case RTLD_DI_LINKMAP:
1074 {
1075 const struct link_map **map = v;
1076
1077 *map = &obj->linkmap;
1078 break;
1079 }
1080
1081 default:
1082 _rtld_error("Invalid request");
1083 return -1;
1084 }
1085
1086 return 0;
1087 }
1088
1089 __strong_alias(__dl_iterate_phdr,dl_iterate_phdr);
1090 int
1091 dl_iterate_phdr(int (*callback)(struct dl_phdr_info *, size_t, void *), void *param)
1092 {
1093 struct dl_phdr_info phdr_info;
1094 const Obj_Entry *obj;
1095 int error = 0;
1096
1097 for (obj = _rtld_objlist; obj != NULL; obj = obj->next) {
1098 phdr_info.dlpi_addr = (Elf_Addr)obj->relocbase;
1099 phdr_info.dlpi_name = STAILQ_FIRST(&obj->names) ?
1100 STAILQ_FIRST(&obj->names)->name : obj->path;
1101 phdr_info.dlpi_phdr = obj->phdr;
1102 phdr_info.dlpi_phnum = obj->phsize / sizeof(obj->phdr[0]);
1103 #if 1
1104 phdr_info.dlpi_tls_modid = 0;
1105 phdr_info.dlpi_tls_data = 0;
1106 #else
1107 phdr_info.dlpi_tls_modid = obj->tlsindex;
1108 phdr_info.dlpi_tls_data = obj->tlsinit;
1109 #endif
1110 phdr_info.dlpi_adds = _rtld_objloads;
1111 phdr_info.dlpi_subs = _rtld_objloads - _rtld_objcount;
1112
1113 error = callback(&phdr_info, sizeof(phdr_info), param);
1114 if (error)
1115 break;
1116 }
1117
1118 return error;
1119 }
1120
1121 /*
1122 * Error reporting function. Use it like printf. If formats the message
1123 * into a buffer, and sets things up so that the next call to dlerror()
1124 * will return the message.
1125 */
1126 void
1127 _rtld_error(const char *fmt,...)
1128 {
1129 static char buf[512];
1130 va_list ap;
1131
1132 va_start(ap, fmt);
1133 xvsnprintf(buf, sizeof buf, fmt, ap);
1134 error_message = buf;
1135 va_end(ap);
1136 }
1137
1138 void
1139 _rtld_debug_state(void)
1140 {
1141
1142 /* do nothing */
1143 }
1144
1145 void
1146 _rtld_linkmap_add(Obj_Entry *obj)
1147 {
1148 struct link_map *l = &obj->linkmap;
1149 struct link_map *prev;
1150
1151 obj->linkmap.l_name = obj->path;
1152 obj->linkmap.l_addr = obj->relocbase;
1153 obj->linkmap.l_ld = obj->dynamic;
1154 #ifdef __mips__
1155 /* XXX This field is not standard and will be removed eventually. */
1156 obj->linkmap.l_offs = obj->relocbase;
1157 #endif
1158
1159 if (_rtld_debug.r_map == NULL) {
1160 _rtld_debug.r_map = l;
1161 return;
1162 }
1163
1164 /*
1165 * Scan to the end of the list, but not past the entry for the
1166 * dynamic linker, which we want to keep at the very end.
1167 */
1168 for (prev = _rtld_debug.r_map;
1169 prev->l_next != NULL && prev->l_next != &_rtld_objself.linkmap;
1170 prev = prev->l_next);
1171
1172 l->l_prev = prev;
1173 l->l_next = prev->l_next;
1174 if (l->l_next != NULL)
1175 l->l_next->l_prev = l;
1176 prev->l_next = l;
1177 }
1178
1179 void
1180 _rtld_linkmap_delete(Obj_Entry *obj)
1181 {
1182 struct link_map *l = &obj->linkmap;
1183
1184 if (l->l_prev == NULL) {
1185 if ((_rtld_debug.r_map = l->l_next) != NULL)
1186 l->l_next->l_prev = NULL;
1187 return;
1188 }
1189 if ((l->l_prev->l_next = l->l_next) != NULL)
1190 l->l_next->l_prev = l->l_prev;
1191 }
1192
1193 static Obj_Entry *
1194 _rtld_obj_from_addr(const void *addr)
1195 {
1196 Obj_Entry *obj;
1197
1198 for (obj = _rtld_objlist; obj != NULL; obj = obj->next) {
1199 if (addr < (void *) obj->mapbase)
1200 continue;
1201 if (addr < (void *) (obj->mapbase + obj->mapsize))
1202 return obj;
1203 }
1204 return NULL;
1205 }
1206
1207 static void
1208 _rtld_objlist_clear(Objlist *list)
1209 {
1210 while (!SIMPLEQ_EMPTY(list)) {
1211 Objlist_Entry* elm = SIMPLEQ_FIRST(list);
1212 SIMPLEQ_REMOVE_HEAD(list, link);
1213 xfree(elm);
1214 }
1215 }
1216
1217 static void
1218 _rtld_objlist_remove(Objlist *list, Obj_Entry *obj)
1219 {
1220 Objlist_Entry *elm;
1221
1222 if ((elm = _rtld_objlist_find(list, obj)) != NULL) {
1223 SIMPLEQ_REMOVE(list, elm, Struct_Objlist_Entry, link);
1224 xfree(elm);
1225 }
1226 }
1227