symbol.c revision 1.62 1 1.62 matt /* $NetBSD: symbol.c,v 1.62 2013/04/24 22:37:20 matt 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.25 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.37 skrll #include <sys/cdefs.h>
42 1.37 skrll #ifndef lint
43 1.62 matt __RCSID("$NetBSD: symbol.c,v 1.62 2013/04/24 22:37:20 matt Exp $");
44 1.37 skrll #endif /* not lint */
45 1.37 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.1 cgd #include <sys/types.h>
55 1.1 cgd #include <sys/mman.h>
56 1.53 joerg #include <sys/bitops.h>
57 1.1 cgd #include <dirent.h>
58 1.1 cgd
59 1.1 cgd #include "debug.h"
60 1.1 cgd #include "rtld.h"
61 1.1 cgd
62 1.51 roy /*
63 1.51 roy * If the given object is already in the donelist, return true. Otherwise
64 1.51 roy * add the object to the list and return false.
65 1.51 roy */
66 1.51 roy static bool
67 1.51 roy _rtld_donelist_check(DoneList *dlp, const Obj_Entry *obj)
68 1.51 roy {
69 1.51 roy unsigned int i;
70 1.51 roy
71 1.51 roy for (i = 0; i < dlp->num_used; i++)
72 1.51 roy if (dlp->objs[i] == obj)
73 1.51 roy return true;
74 1.51 roy /*
75 1.51 roy * Our donelist allocation may not always be sufficient as we're not
76 1.51 roy * thread safe. We'll handle it properly anyway.
77 1.51 roy */
78 1.51 roy if (dlp->num_used < dlp->num_alloc)
79 1.51 roy dlp->objs[dlp->num_used++] = obj;
80 1.51 roy return false;
81 1.51 roy }
82 1.51 roy
83 1.33 skrll static bool
84 1.33 skrll _rtld_is_exported(const Elf_Sym *def)
85 1.33 skrll {
86 1.44 yamt static const fptr_t _rtld_exports[] = {
87 1.39 chs (fptr_t)dlopen,
88 1.39 chs (fptr_t)dlclose,
89 1.39 chs (fptr_t)dlsym,
90 1.57 nonaka (fptr_t)dlvsym,
91 1.39 chs (fptr_t)dlerror,
92 1.39 chs (fptr_t)dladdr,
93 1.48 pooka (fptr_t)dlinfo,
94 1.54 skrll (fptr_t)dl_iterate_phdr,
95 1.60 joerg (fptr_t)_dlauxinfo,
96 1.55 joerg #if defined(__HAVE_TLS_VARIANT_I) || defined(__HAVE_TLS_VARIANT_II)
97 1.55 joerg (fptr_t)_rtld_tls_allocate,
98 1.55 joerg (fptr_t)_rtld_tls_free,
99 1.55 joerg (fptr_t)__tls_get_addr,
100 1.56 joerg #ifdef __i386__
101 1.56 joerg (fptr_t)___tls_get_addr,
102 1.56 joerg #endif
103 1.55 joerg #endif
104 1.62 matt #ifdef __ARM_EABI__
105 1.62 matt (fptr_t)__gnu_Unwind_Find_exidx, /* for gcc EHABI */
106 1.62 matt #endif
107 1.39 chs NULL
108 1.33 skrll };
109 1.33 skrll int i;
110 1.39 chs fptr_t value;
111 1.33 skrll
112 1.39 chs value = (fptr_t)(_rtld_objself.relocbase + def->st_value);
113 1.39 chs for (i = 0; _rtld_exports[i] != NULL; i++) {
114 1.33 skrll if (value == _rtld_exports[i])
115 1.33 skrll return true;
116 1.33 skrll }
117 1.33 skrll return false;
118 1.33 skrll }
119 1.33 skrll
120 1.1 cgd /*
121 1.1 cgd * Hash function for symbol table lookup. Don't even think about changing
122 1.1 cgd * this. It is specified by the System V ABI.
123 1.1 cgd */
124 1.1 cgd unsigned long
125 1.31 skrll _rtld_elf_hash(const char *name)
126 1.1 cgd {
127 1.3 christos const unsigned char *p = (const unsigned char *) name;
128 1.3 christos unsigned long h = 0;
129 1.3 christos unsigned long g;
130 1.24 mycroft unsigned long c;
131 1.3 christos
132 1.24 mycroft for (; __predict_true((c = *p) != '\0'); p++) {
133 1.24 mycroft h <<= 4;
134 1.24 mycroft h += c;
135 1.24 mycroft if ((g = h & 0xf0000000) != 0) {
136 1.24 mycroft h ^= g;
137 1.3 christos h ^= g >> 24;
138 1.24 mycroft }
139 1.3 christos }
140 1.24 mycroft return (h);
141 1.1 cgd }
142 1.1 cgd
143 1.5 mycroft const Elf_Sym *
144 1.23 mycroft _rtld_symlook_list(const char *name, unsigned long hash, const Objlist *objlist,
145 1.57 nonaka const Obj_Entry **defobj_out, u_int flags, const Ver_Entry *ventry,
146 1.57 nonaka DoneList *dlp)
147 1.5 mycroft {
148 1.5 mycroft const Elf_Sym *symp;
149 1.5 mycroft const Elf_Sym *def;
150 1.27 mycroft const Obj_Entry *defobj;
151 1.5 mycroft const Objlist_Entry *elm;
152 1.5 mycroft
153 1.5 mycroft def = NULL;
154 1.27 mycroft defobj = NULL;
155 1.12 lukem SIMPLEQ_FOREACH(elm, objlist, link) {
156 1.51 roy if (_rtld_donelist_check(dlp, elm->obj))
157 1.51 roy continue;
158 1.43 christos rdbg(("search object %p (%s) for %s", elm->obj, elm->obj->path,
159 1.43 christos name));
160 1.57 nonaka symp = _rtld_symlook_obj(name, hash, elm->obj, flags, ventry);
161 1.57 nonaka if (symp != NULL) {
162 1.5 mycroft if ((def == NULL) ||
163 1.6 thorpej (ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
164 1.5 mycroft def = symp;
165 1.27 mycroft defobj = elm->obj;
166 1.6 thorpej if (ELF_ST_BIND(def->st_info) != STB_WEAK)
167 1.5 mycroft break;
168 1.5 mycroft }
169 1.5 mycroft }
170 1.5 mycroft }
171 1.27 mycroft if (def != NULL)
172 1.27 mycroft *defobj_out = defobj;
173 1.5 mycroft return def;
174 1.5 mycroft }
175 1.5 mycroft
176 1.1 cgd /*
177 1.47 skrll * Search the symbol table of a shared object and all objects needed by it for
178 1.47 skrll * a symbol of the given name. Search order is breadth-first. Returns a pointer
179 1.47 skrll * to the symbol, or NULL if no definition was found.
180 1.47 skrll */
181 1.47 skrll const Elf_Sym *
182 1.47 skrll _rtld_symlook_needed(const char *name, unsigned long hash,
183 1.57 nonaka const Needed_Entry *needed, const Obj_Entry **defobj_out, u_int flags,
184 1.57 nonaka const Ver_Entry *ventry, DoneList *breadth, DoneList *depth)
185 1.47 skrll {
186 1.47 skrll const Elf_Sym *def, *def_w;
187 1.47 skrll const Needed_Entry *n;
188 1.47 skrll const Obj_Entry *obj, *defobj, *defobj1;
189 1.47 skrll
190 1.47 skrll def = def_w = NULL;
191 1.47 skrll defobj = NULL;
192 1.47 skrll for (n = needed; n != NULL; n = n->next) {
193 1.51 roy if ((obj = n->obj) == NULL)
194 1.51 roy continue;
195 1.51 roy if (_rtld_donelist_check(breadth, obj))
196 1.51 roy continue;
197 1.57 nonaka def = _rtld_symlook_obj(name, hash, obj, flags, ventry);
198 1.57 nonaka if (def == NULL)
199 1.47 skrll continue;
200 1.47 skrll defobj = obj;
201 1.47 skrll if (ELF_ST_BIND(def->st_info) != STB_WEAK) {
202 1.47 skrll *defobj_out = defobj;
203 1.47 skrll
204 1.47 skrll return (def);
205 1.47 skrll }
206 1.47 skrll }
207 1.47 skrll /*
208 1.47 skrll * Either the symbol definition has not been found in directly needed
209 1.47 skrll * objects, or the found symbol is weak.
210 1.47 skrll */
211 1.47 skrll for (n = needed; n != NULL; n = n->next) {
212 1.47 skrll if ((obj = n->obj) == NULL)
213 1.47 skrll continue;
214 1.51 roy if (_rtld_donelist_check(depth, obj))
215 1.51 roy continue;
216 1.47 skrll def_w = _rtld_symlook_needed(name, hash, obj->needed, &defobj1,
217 1.57 nonaka flags, ventry, breadth, depth);
218 1.47 skrll if (def_w == NULL)
219 1.47 skrll continue;
220 1.47 skrll if (def == NULL || ELF_ST_BIND(def_w->st_info) != STB_WEAK) {
221 1.47 skrll def = def_w;
222 1.47 skrll defobj = defobj1;
223 1.47 skrll if (ELF_ST_BIND(def_w->st_info) != STB_WEAK)
224 1.47 skrll break;
225 1.47 skrll }
226 1.47 skrll }
227 1.47 skrll if (def != NULL)
228 1.47 skrll *defobj_out = defobj;
229 1.47 skrll
230 1.47 skrll return def;
231 1.47 skrll }
232 1.47 skrll
233 1.47 skrll /*
234 1.1 cgd * Search the symbol table of a single shared object for a symbol of
235 1.1 cgd * the given name. Returns a pointer to the symbol, or NULL if no
236 1.1 cgd * definition was found.
237 1.1 cgd *
238 1.1 cgd * The symbol's hash value is passed in for efficiency reasons; that
239 1.1 cgd * eliminates many recomputations of the hash value.
240 1.1 cgd */
241 1.1 cgd const Elf_Sym *
242 1.31 skrll _rtld_symlook_obj(const char *name, unsigned long hash,
243 1.57 nonaka const Obj_Entry *obj, u_int flags, const Ver_Entry *ventry)
244 1.1 cgd {
245 1.20 mycroft unsigned long symnum;
246 1.57 nonaka const Elf_Sym *vsymp = NULL;
247 1.57 nonaka Elf_Half verndx;
248 1.57 nonaka int vcount = 0;
249 1.1 cgd
250 1.53 joerg for (symnum = obj->buckets[fast_remainder32(hash, obj->nbuckets,
251 1.53 joerg obj->nbuckets_m, obj->nbuckets_s1, obj->nbuckets_s2)];
252 1.20 mycroft symnum != ELF_SYM_UNDEFINED;
253 1.20 mycroft symnum = obj->chains[symnum]) {
254 1.3 christos const Elf_Sym *symp;
255 1.3 christos const char *strp;
256 1.3 christos
257 1.3 christos assert(symnum < obj->nchains);
258 1.3 christos symp = obj->symtab + symnum;
259 1.3 christos strp = obj->strtab + symp->st_name;
260 1.58 christos rdbg(("check \"%s\" vs \"%s\" in %s", name, strp, obj->path));
261 1.57 nonaka if (name[1] != strp[1] || strcmp(name, strp))
262 1.57 nonaka continue;
263 1.59 joerg #ifdef __mips__
264 1.59 joerg if (symp->st_shndx == SHN_UNDEF)
265 1.59 joerg continue;
266 1.59 joerg #else
267 1.57 nonaka /*
268 1.57 nonaka * XXX DANGER WILL ROBINSON!
269 1.57 nonaka * If we have a function pointer in the executable's
270 1.57 nonaka * data section, it points to the executable's PLT
271 1.57 nonaka * slot, and there is NO relocation emitted. To make
272 1.57 nonaka * the function pointer comparable to function pointers
273 1.57 nonaka * in shared libraries, we must resolve data references
274 1.57 nonaka * in the libraries to point to PLT slots in the
275 1.57 nonaka * executable, if they exist.
276 1.57 nonaka */
277 1.59 joerg if (symp->st_shndx == SHN_UNDEF &&
278 1.59 joerg ((flags & SYMLOOK_IN_PLT) ||
279 1.59 joerg symp->st_value == 0 ||
280 1.59 joerg ELF_ST_TYPE(symp->st_info) != STT_FUNC))
281 1.59 joerg continue;
282 1.21 mycroft #endif
283 1.57 nonaka
284 1.57 nonaka if (ventry == NULL) {
285 1.57 nonaka if (obj->versyms != NULL) {
286 1.57 nonaka verndx = VER_NDX(obj->versyms[symnum].vs_vers);
287 1.57 nonaka if (verndx > obj->vertabnum) {
288 1.57 nonaka _rtld_error("%s: symbol %s references "
289 1.57 nonaka "wrong version %d", obj->path,
290 1.57 nonaka &obj->strtab[symnum], verndx);
291 1.57 nonaka continue;
292 1.57 nonaka }
293 1.57 nonaka
294 1.57 nonaka /*
295 1.57 nonaka * If we are not called from dlsym (i.e. this
296 1.57 nonaka * is a normal relocation from unversioned
297 1.57 nonaka * binary), accept the symbol immediately
298 1.57 nonaka * if it happens to have first version after
299 1.57 nonaka * this shared object became versioned.
300 1.57 nonaka * Otherwise, if symbol is versioned and not
301 1.57 nonaka * hidden, remember it. If it is the only
302 1.57 nonaka * symbol with this name exported by the shared
303 1.57 nonaka * object, it will be returned as a match at the
304 1.57 nonaka * end of the function. If symbol is global
305 1.57 nonaka * (verndx < 2) accept it unconditionally.
306 1.57 nonaka */
307 1.57 nonaka if (!(flags & SYMLOOK_DLSYM) &&
308 1.57 nonaka verndx == VER_NDX_GIVEN) {
309 1.57 nonaka return symp;
310 1.57 nonaka } else if (verndx >= VER_NDX_GIVEN) {
311 1.57 nonaka if (!(obj->versyms[symnum].vs_vers & VER_NDX_HIDDEN)) {
312 1.57 nonaka if (vsymp == NULL)
313 1.57 nonaka vsymp = symp;
314 1.57 nonaka vcount++;
315 1.57 nonaka }
316 1.57 nonaka continue;
317 1.57 nonaka }
318 1.57 nonaka }
319 1.57 nonaka return symp;
320 1.57 nonaka } else {
321 1.57 nonaka if (obj->versyms == NULL) {
322 1.57 nonaka if (_rtld_object_match_name(obj, ventry->name)){
323 1.57 nonaka _rtld_error("%s: object %s should "
324 1.57 nonaka "provide version %s for symbol %s",
325 1.57 nonaka _rtld_objself.path, obj->path,
326 1.57 nonaka ventry->name, &obj->strtab[symnum]);
327 1.57 nonaka continue;
328 1.57 nonaka }
329 1.57 nonaka } else {
330 1.57 nonaka verndx = VER_NDX(obj->versyms[symnum].vs_vers);
331 1.57 nonaka if (verndx > obj->vertabnum) {
332 1.57 nonaka _rtld_error("%s: symbol %s references "
333 1.57 nonaka "wrong version %d", obj->path,
334 1.57 nonaka &obj->strtab[symnum], verndx);
335 1.57 nonaka continue;
336 1.57 nonaka }
337 1.57 nonaka if (obj->vertab[verndx].hash != ventry->hash ||
338 1.57 nonaka strcmp(obj->vertab[verndx].name, ventry->name)) {
339 1.57 nonaka /*
340 1.57 nonaka * Version does not match. Look if this
341 1.57 nonaka * is a global symbol and if it is not
342 1.57 nonaka * hidden. If global symbol (verndx < 2)
343 1.57 nonaka * is available, use it. Do not return
344 1.57 nonaka * symbol if we are called by dlvsym,
345 1.57 nonaka * because dlvsym looks for a specific
346 1.57 nonaka * version and default one is not what
347 1.57 nonaka * dlvsym wants.
348 1.57 nonaka */
349 1.57 nonaka if ((flags & SYMLOOK_DLSYM) ||
350 1.57 nonaka (obj->versyms[symnum].vs_vers & VER_NDX_HIDDEN) ||
351 1.57 nonaka (verndx >= VER_NDX_GIVEN))
352 1.57 nonaka continue;
353 1.57 nonaka }
354 1.57 nonaka }
355 1.57 nonaka return symp;
356 1.3 christos }
357 1.1 cgd }
358 1.57 nonaka if (vcount == 1)
359 1.57 nonaka return vsymp;
360 1.3 christos return NULL;
361 1.1 cgd }
362 1.1 cgd
363 1.49 skrll #ifdef COMBRELOC
364 1.49 skrll static const Obj_Entry *_rtld_last_refobj;
365 1.49 skrll
366 1.49 skrll /*
367 1.49 skrll * Called when an object is freed. Reset the cached symbol look up if
368 1.49 skrll * our last referencing or definition object just got unloaded.
369 1.49 skrll */
370 1.49 skrll void
371 1.49 skrll _rtld_combreloc_reset(const Obj_Entry *obj)
372 1.49 skrll {
373 1.49 skrll if (_rtld_last_refobj == obj)
374 1.49 skrll _rtld_last_refobj = NULL;
375 1.49 skrll }
376 1.49 skrll #endif
377 1.49 skrll
378 1.1 cgd /*
379 1.1 cgd * Given a symbol number in a referencing object, find the corresponding
380 1.1 cgd * definition of the symbol. Returns a pointer to the symbol, or NULL if
381 1.1 cgd * no definition was found. Returns a pointer to the Obj_Entry of the
382 1.1 cgd * defining object via the reference parameter DEFOBJ_OUT.
383 1.1 cgd */
384 1.1 cgd const Elf_Sym *
385 1.31 skrll _rtld_find_symdef(unsigned long symnum, const Obj_Entry *refobj,
386 1.57 nonaka const Obj_Entry **defobj_out, u_int flags)
387 1.1 cgd {
388 1.27 mycroft const Elf_Sym *ref;
389 1.5 mycroft const Elf_Sym *def;
390 1.27 mycroft const Obj_Entry *defobj;
391 1.27 mycroft const char *name;
392 1.3 christos unsigned long hash;
393 1.3 christos
394 1.41 matt #ifdef COMBRELOC
395 1.41 matt /*
396 1.41 matt * COMBRELOC combines multiple reloc sections and sorts them to make
397 1.41 matt * dynamic symbol lookup caching possible.
398 1.41 matt *
399 1.41 matt * So if the lookup we are doing is the same as the previous lookup
400 1.41 matt * return the cached results.
401 1.41 matt */
402 1.41 matt static unsigned long last_symnum;
403 1.49 skrll static const Obj_Entry *last_defobj;
404 1.41 matt static const Elf_Sym *last_def;
405 1.41 matt
406 1.49 skrll if (symnum == last_symnum && refobj == _rtld_last_refobj
407 1.57 nonaka && !(flags & SYMLOOK_IN_PLT)) {
408 1.41 matt *defobj_out = last_defobj;
409 1.41 matt return last_def;
410 1.41 matt }
411 1.41 matt #endif
412 1.41 matt
413 1.27 mycroft ref = refobj->symtab + symnum;
414 1.27 mycroft name = refobj->strtab + ref->st_name;
415 1.27 mycroft
416 1.27 mycroft /*
417 1.40 skrll * We don't have to do a full scale lookup if the symbol is local.
418 1.40 skrll * We know it will bind to the instance in this load module; to
419 1.40 skrll * which we already have a pointer (ie ref).
420 1.33 skrll */
421 1.40 skrll if (ELF_ST_BIND(ref->st_info) != STB_LOCAL) {
422 1.40 skrll if (ELF_ST_TYPE(ref->st_info) == STT_SECTION) {
423 1.40 skrll _rtld_error("%s: Bogus symbol table entry %lu",
424 1.40 skrll refobj->path, symnum);
425 1.40 skrll }
426 1.40 skrll
427 1.40 skrll hash = _rtld_elf_hash(name);
428 1.40 skrll defobj = NULL;
429 1.57 nonaka def = _rtld_symlook_default(name, hash, refobj, &defobj, flags,
430 1.57 nonaka _rtld_fetch_ventry(refobj, symnum));
431 1.40 skrll } else {
432 1.40 skrll rdbg(("STB_LOCAL symbol %s in %s", name, refobj->path));
433 1.40 skrll def = ref;
434 1.40 skrll defobj = refobj;
435 1.33 skrll }
436 1.40 skrll
437 1.33 skrll /*
438 1.27 mycroft * If we found no definition and the reference is weak, treat the
439 1.27 mycroft * symbol as having the value zero.
440 1.27 mycroft */
441 1.27 mycroft if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
442 1.45 christos rdbg((" returning _rtld_sym_zero@_rtld_objself"));
443 1.27 mycroft def = &_rtld_sym_zero;
444 1.45 christos defobj = &_rtld_objself;
445 1.27 mycroft }
446 1.33 skrll
447 1.41 matt if (def != NULL) {
448 1.27 mycroft *defobj_out = defobj;
449 1.41 matt #ifdef COMBRELOC
450 1.57 nonaka if (!(flags & SYMLOOK_IN_PLT)) {
451 1.42 matt /*
452 1.42 matt * Cache the lookup arguments and results if this was
453 1.42 matt * non-PLT lookup.
454 1.42 matt */
455 1.42 matt last_symnum = symnum;
456 1.49 skrll _rtld_last_refobj = refobj;
457 1.42 matt last_def = def;
458 1.42 matt last_defobj = defobj;
459 1.42 matt }
460 1.41 matt #endif
461 1.41 matt } else {
462 1.27 mycroft rdbg(("lookup failed"));
463 1.27 mycroft _rtld_error("%s: Undefined %ssymbol \"%s\" (symnum = %ld)",
464 1.57 nonaka refobj->path, (flags & SYMLOOK_IN_PLT) ? "PLT " : "",
465 1.57 nonaka name, symnum);
466 1.27 mycroft }
467 1.26 mycroft return def;
468 1.28 christos }
469 1.28 christos
470 1.50 christos const Elf_Sym *
471 1.50 christos _rtld_find_plt_symdef(unsigned long symnum, const Obj_Entry *obj,
472 1.50 christos const Obj_Entry **defobj, bool imm)
473 1.50 christos {
474 1.57 nonaka const Elf_Sym *def = _rtld_find_symdef(symnum, obj, defobj,
475 1.57 nonaka SYMLOOK_IN_PLT);
476 1.50 christos if (__predict_false(def == NULL))
477 1.50 christos return NULL;
478 1.50 christos
479 1.50 christos if (__predict_false(def == &_rtld_sym_zero)) {
480 1.50 christos /* tp is set during lazy binding. */
481 1.50 christos if (imm) {
482 1.50 christos const Elf_Sym *ref = obj->symtab + symnum;
483 1.50 christos const char *name = obj->strtab + ref->st_name;
484 1.50 christos
485 1.50 christos _rtld_error(
486 1.50 christos "%s: Trying to call undefined weak symbol `%s'",
487 1.50 christos obj->path, name);
488 1.50 christos return NULL;
489 1.50 christos }
490 1.50 christos }
491 1.50 christos return def;
492 1.50 christos }
493 1.50 christos
494 1.28 christos /*
495 1.28 christos * Given a symbol name in a referencing object, find the corresponding
496 1.28 christos * definition of the symbol. Returns a pointer to the symbol, or NULL if
497 1.28 christos * no definition was found. Returns a pointer to the Obj_Entry of the
498 1.28 christos * defining object via the reference parameter DEFOBJ_OUT.
499 1.28 christos */
500 1.28 christos const Elf_Sym *
501 1.28 christos _rtld_symlook_default(const char *name, unsigned long hash,
502 1.57 nonaka const Obj_Entry *refobj, const Obj_Entry **defobj_out, u_int flags,
503 1.57 nonaka const Ver_Entry *ventry)
504 1.28 christos {
505 1.29 skrll const Elf_Sym *def;
506 1.29 skrll const Elf_Sym *symp;
507 1.29 skrll const Obj_Entry *obj;
508 1.29 skrll const Obj_Entry *defobj;
509 1.29 skrll const Objlist_Entry *elm;
510 1.29 skrll def = NULL;
511 1.29 skrll defobj = NULL;
512 1.51 roy DoneList donelist;
513 1.51 roy
514 1.51 roy _rtld_donelist_init(&donelist);
515 1.29 skrll
516 1.29 skrll /* Look first in the referencing object if linked symbolically. */
517 1.51 roy if (refobj->symbolic && !_rtld_donelist_check(&donelist, refobj)) {
518 1.43 christos rdbg(("search referencing object for %s", name));
519 1.57 nonaka symp = _rtld_symlook_obj(name, hash, refobj, flags, ventry);
520 1.29 skrll if (symp != NULL) {
521 1.29 skrll def = symp;
522 1.29 skrll defobj = refobj;
523 1.29 skrll }
524 1.29 skrll }
525 1.29 skrll
526 1.29 skrll /* Search all objects loaded at program start up. */
527 1.29 skrll if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
528 1.43 christos rdbg(("search _rtld_list_main for %s", name));
529 1.40 skrll symp = _rtld_symlook_list(name, hash, &_rtld_list_main, &obj,
530 1.57 nonaka flags, ventry, &donelist);
531 1.29 skrll if (symp != NULL &&
532 1.40 skrll (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
533 1.29 skrll def = symp;
534 1.29 skrll defobj = obj;
535 1.29 skrll }
536 1.29 skrll }
537 1.29 skrll
538 1.40 skrll /* Search all RTLD_GLOBAL objects. */
539 1.40 skrll if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
540 1.43 christos rdbg(("search _rtld_list_global for %s", name));
541 1.40 skrll symp = _rtld_symlook_list(name, hash, &_rtld_list_global,
542 1.57 nonaka &obj, flags, ventry, &donelist);
543 1.29 skrll if (symp != NULL &&
544 1.29 skrll (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
545 1.29 skrll def = symp;
546 1.29 skrll defobj = obj;
547 1.29 skrll }
548 1.29 skrll }
549 1.40 skrll
550 1.40 skrll /* Search all dlopened DAGs containing the referencing object. */
551 1.40 skrll SIMPLEQ_FOREACH(elm, &refobj->dldags, link) {
552 1.29 skrll if (def != NULL && ELF_ST_BIND(def->st_info) != STB_WEAK)
553 1.29 skrll break;
554 1.43 christos rdbg(("search DAG with root %p (%s) for %s", elm->obj,
555 1.43 christos elm->obj->path, name));
556 1.40 skrll symp = _rtld_symlook_list(name, hash, &elm->obj->dagmembers,
557 1.57 nonaka &obj, flags, ventry, &donelist);
558 1.29 skrll if (symp != NULL &&
559 1.29 skrll (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
560 1.29 skrll def = symp;
561 1.29 skrll defobj = obj;
562 1.29 skrll }
563 1.28 christos }
564 1.28 christos
565 1.29 skrll /*
566 1.29 skrll * Search the dynamic linker itself, and possibly resolve the
567 1.29 skrll * symbol from there. This is how the application links to
568 1.29 skrll * dynamic linker services such as dlopen. Only the values listed
569 1.40 skrll * in the "_rtld_exports" array can be resolved from the dynamic
570 1.40 skrll * linker.
571 1.29 skrll */
572 1.29 skrll if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
573 1.40 skrll rdbg(("Search the dynamic linker itself."));
574 1.57 nonaka symp = _rtld_symlook_obj(name, hash, &_rtld_objself, flags,
575 1.57 nonaka ventry);
576 1.40 skrll if (symp != NULL && _rtld_is_exported(symp)) {
577 1.29 skrll def = symp;
578 1.30 skrll defobj = &_rtld_objself;
579 1.29 skrll }
580 1.28 christos }
581 1.28 christos
582 1.29 skrll if (def != NULL)
583 1.29 skrll *defobj_out = defobj;
584 1.29 skrll return def;
585 1.1 cgd }
586