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