Home | History | Annotate | Line # | Download | only in ld.elf_so
symbol.c revision 1.56
      1  1.56     joerg /*	$NetBSD: symbol.c,v 1.56 2011/03/12 22:54:36 joerg 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.56     joerg __RCSID("$NetBSD: symbol.c,v 1.56 2011/03/12 22:54:36 joerg 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.39       chs typedef void (*fptr_t)(void);
     63  1.39       chs 
     64  1.51       roy /*
     65  1.51       roy  * If the given object is already in the donelist, return true.  Otherwise
     66  1.51       roy  * add the object to the list and return false.
     67  1.51       roy  */
     68  1.51       roy static bool
     69  1.51       roy _rtld_donelist_check(DoneList *dlp, const Obj_Entry *obj)
     70  1.51       roy {
     71  1.51       roy 	unsigned int i;
     72  1.51       roy 
     73  1.51       roy 	for (i = 0;  i < dlp->num_used;  i++)
     74  1.51       roy 		if (dlp->objs[i] == obj)
     75  1.51       roy 			return true;
     76  1.51       roy 	/*
     77  1.51       roy 	 * Our donelist allocation may not always be sufficient as we're not
     78  1.51       roy 	 * thread safe. We'll handle it properly anyway.
     79  1.51       roy 	 */
     80  1.51       roy 	if (dlp->num_used < dlp->num_alloc)
     81  1.51       roy 		dlp->objs[dlp->num_used++] = obj;
     82  1.51       roy 	return false;
     83  1.51       roy }
     84  1.51       roy 
     85  1.33     skrll static bool
     86  1.33     skrll _rtld_is_exported(const Elf_Sym *def)
     87  1.33     skrll {
     88  1.44      yamt 	static const fptr_t _rtld_exports[] = {
     89  1.39       chs 		(fptr_t)dlopen,
     90  1.39       chs 		(fptr_t)dlclose,
     91  1.39       chs 		(fptr_t)dlsym,
     92  1.39       chs 		(fptr_t)dlerror,
     93  1.39       chs 		(fptr_t)dladdr,
     94  1.48     pooka 		(fptr_t)dlinfo,
     95  1.54     skrll 		(fptr_t)dl_iterate_phdr,
     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.39       chs 		NULL
    105  1.33     skrll 	};
    106  1.33     skrll 	int i;
    107  1.39       chs 	fptr_t value;
    108  1.33     skrll 
    109  1.39       chs 	value = (fptr_t)(_rtld_objself.relocbase + def->st_value);
    110  1.39       chs 	for (i = 0; _rtld_exports[i] != NULL; i++) {
    111  1.33     skrll 		if (value == _rtld_exports[i])
    112  1.33     skrll 			return true;
    113  1.33     skrll 	}
    114  1.33     skrll 	return false;
    115  1.33     skrll }
    116  1.33     skrll 
    117   1.1       cgd /*
    118   1.1       cgd  * Hash function for symbol table lookup.  Don't even think about changing
    119   1.1       cgd  * this.  It is specified by the System V ABI.
    120   1.1       cgd  */
    121   1.1       cgd unsigned long
    122  1.31     skrll _rtld_elf_hash(const char *name)
    123   1.1       cgd {
    124   1.3  christos 	const unsigned char *p = (const unsigned char *) name;
    125   1.3  christos 	unsigned long   h = 0;
    126   1.3  christos 	unsigned long   g;
    127  1.24   mycroft 	unsigned long   c;
    128   1.3  christos 
    129  1.24   mycroft 	for (; __predict_true((c = *p) != '\0'); p++) {
    130  1.24   mycroft 		h <<= 4;
    131  1.24   mycroft 		h += c;
    132  1.24   mycroft 		if ((g = h & 0xf0000000) != 0) {
    133  1.24   mycroft 			h ^= g;
    134   1.3  christos 			h ^= g >> 24;
    135  1.24   mycroft 		}
    136   1.3  christos 	}
    137  1.24   mycroft 	return (h);
    138   1.1       cgd }
    139   1.1       cgd 
    140   1.5   mycroft const Elf_Sym *
    141  1.23   mycroft _rtld_symlook_list(const char *name, unsigned long hash, const Objlist *objlist,
    142  1.51       roy     const Obj_Entry **defobj_out, bool in_plt, DoneList *dlp)
    143   1.5   mycroft {
    144   1.5   mycroft 	const Elf_Sym *symp;
    145   1.5   mycroft 	const Elf_Sym *def;
    146  1.27   mycroft 	const Obj_Entry *defobj;
    147   1.5   mycroft 	const Objlist_Entry *elm;
    148   1.5   mycroft 
    149   1.5   mycroft 	def = NULL;
    150  1.27   mycroft 	defobj = NULL;
    151  1.12     lukem 	SIMPLEQ_FOREACH(elm, objlist, link) {
    152  1.51       roy 		if (_rtld_donelist_check(dlp, elm->obj))
    153  1.51       roy 			continue;
    154  1.43  christos 		rdbg(("search object %p (%s) for %s", elm->obj, elm->obj->path,
    155  1.43  christos 		    name));
    156  1.21   mycroft 		if ((symp = _rtld_symlook_obj(name, hash, elm->obj, in_plt))
    157   1.5   mycroft 		    != NULL) {
    158   1.5   mycroft 			if ((def == NULL) ||
    159   1.6   thorpej 			    (ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
    160   1.5   mycroft 				def = symp;
    161  1.27   mycroft 				defobj = elm->obj;
    162   1.6   thorpej 				if (ELF_ST_BIND(def->st_info) != STB_WEAK)
    163   1.5   mycroft 					break;
    164   1.5   mycroft 			}
    165   1.5   mycroft 		}
    166   1.5   mycroft 	}
    167  1.27   mycroft 	if (def != NULL)
    168  1.27   mycroft 		*defobj_out = defobj;
    169   1.5   mycroft 	return def;
    170   1.5   mycroft }
    171   1.5   mycroft 
    172   1.1       cgd /*
    173  1.47     skrll  * Search the symbol table of a shared object and all objects needed by it for
    174  1.47     skrll  * a symbol of the given name. Search order is breadth-first. Returns a pointer
    175  1.47     skrll  * to the symbol, or NULL if no definition was found.
    176  1.47     skrll  */
    177  1.47     skrll const Elf_Sym *
    178  1.47     skrll _rtld_symlook_needed(const char *name, unsigned long hash,
    179  1.51       roy     const Needed_Entry *needed, const Obj_Entry **defobj_out, bool inplt,
    180  1.51       roy     DoneList *breadth, DoneList *depth)
    181  1.47     skrll {
    182  1.47     skrll 	const Elf_Sym *def, *def_w;
    183  1.47     skrll 	const Needed_Entry *n;
    184  1.47     skrll 	const Obj_Entry *obj, *defobj, *defobj1;
    185  1.47     skrll 
    186  1.47     skrll 	def = def_w = NULL;
    187  1.47     skrll 	defobj = NULL;
    188  1.47     skrll 	for (n = needed; n != NULL; n = n->next) {
    189  1.51       roy 		if ((obj = n->obj) == NULL)
    190  1.51       roy 			continue;
    191  1.51       roy 		if (_rtld_donelist_check(breadth, obj))
    192  1.51       roy 			continue;
    193  1.51       roy 		if ((def = _rtld_symlook_obj(name, hash, obj, inplt)) == NULL)
    194  1.47     skrll 			continue;
    195  1.47     skrll 		defobj = obj;
    196  1.47     skrll 		if (ELF_ST_BIND(def->st_info) != STB_WEAK) {
    197  1.47     skrll 			*defobj_out = defobj;
    198  1.47     skrll 
    199  1.47     skrll 			return (def);
    200  1.47     skrll 		}
    201  1.47     skrll 	}
    202  1.47     skrll 	/*
    203  1.47     skrll 	 * Either the symbol definition has not been found in directly needed
    204  1.47     skrll 	 * objects, or the found symbol is weak.
    205  1.47     skrll 	 */
    206  1.47     skrll 	for (n = needed; n != NULL; n = n->next) {
    207  1.47     skrll 		if ((obj = n->obj) == NULL)
    208  1.47     skrll 			continue;
    209  1.51       roy 		if (_rtld_donelist_check(depth, obj))
    210  1.51       roy 			continue;
    211  1.47     skrll 		def_w = _rtld_symlook_needed(name, hash, obj->needed, &defobj1,
    212  1.51       roy 		    inplt, breadth, depth);
    213  1.47     skrll 		if (def_w == NULL)
    214  1.47     skrll 			continue;
    215  1.47     skrll 		if (def == NULL || ELF_ST_BIND(def_w->st_info) != STB_WEAK) {
    216  1.47     skrll 			def = def_w;
    217  1.47     skrll 			defobj = defobj1;
    218  1.47     skrll 			if (ELF_ST_BIND(def_w->st_info) != STB_WEAK)
    219  1.47     skrll 				break;
    220  1.47     skrll 		}
    221  1.47     skrll 	}
    222  1.47     skrll 	if (def != NULL)
    223  1.47     skrll 		*defobj_out = defobj;
    224  1.47     skrll 
    225  1.47     skrll 	return def;
    226  1.47     skrll }
    227  1.47     skrll 
    228  1.47     skrll /*
    229   1.1       cgd  * Search the symbol table of a single shared object for a symbol of
    230   1.1       cgd  * the given name.  Returns a pointer to the symbol, or NULL if no
    231   1.1       cgd  * definition was found.
    232   1.1       cgd  *
    233   1.1       cgd  * The symbol's hash value is passed in for efficiency reasons; that
    234   1.1       cgd  * eliminates many recomputations of the hash value.
    235   1.1       cgd  */
    236   1.1       cgd const Elf_Sym *
    237  1.31     skrll _rtld_symlook_obj(const char *name, unsigned long hash,
    238  1.31     skrll     const Obj_Entry *obj, bool in_plt)
    239   1.1       cgd {
    240  1.20   mycroft 	unsigned long symnum;
    241   1.1       cgd 
    242  1.53     joerg 	for (symnum = obj->buckets[fast_remainder32(hash, obj->nbuckets,
    243  1.53     joerg 	     obj->nbuckets_m, obj->nbuckets_s1, obj->nbuckets_s2)];
    244  1.20   mycroft 	     symnum != ELF_SYM_UNDEFINED;
    245  1.20   mycroft 	     symnum = obj->chains[symnum]) {
    246   1.3  christos 		const Elf_Sym  *symp;
    247   1.3  christos 		const char     *strp;
    248   1.3  christos 
    249   1.3  christos 		assert(symnum < obj->nchains);
    250   1.3  christos 		symp = obj->symtab + symnum;
    251   1.3  christos 		strp = obj->strtab + symp->st_name;
    252  1.38    martin 		rdbg(("check \"%s\" vs \"%s\" in %p", name, strp, obj));
    253  1.20   mycroft 		if (name[1] == strp[1] && !strcmp(name, strp)) {
    254  1.20   mycroft 			if (symp->st_shndx != SHN_UNDEF)
    255   1.3  christos 				return symp;
    256  1.21   mycroft #ifndef __mips__
    257  1.22   mycroft 			/*
    258  1.22   mycroft 			 * XXX DANGER WILL ROBINSON!
    259  1.22   mycroft 			 * If we have a function pointer in the executable's
    260  1.22   mycroft 			 * data section, it points to the executable's PLT
    261  1.22   mycroft 			 * slot, and there is NO relocation emitted.  To make
    262  1.22   mycroft 			 * the function pointer comparable to function pointers
    263  1.22   mycroft 			 * in shared libraries, we must resolve data references
    264  1.22   mycroft 			 * in the libraries to point to PLT slots in the
    265  1.22   mycroft 			 * executable, if they exist.
    266  1.22   mycroft 			 */
    267  1.21   mycroft 			else if (!in_plt && symp->st_value != 0 &&
    268  1.21   mycroft 			     ELF_ST_TYPE(symp->st_info) == STT_FUNC)
    269  1.21   mycroft 				return symp;
    270  1.21   mycroft #endif
    271  1.19   mycroft 			else
    272  1.19   mycroft 				return NULL;
    273   1.3  christos 		}
    274   1.1       cgd 	}
    275   1.1       cgd 
    276   1.3  christos 	return NULL;
    277   1.1       cgd }
    278   1.1       cgd 
    279  1.49     skrll #ifdef COMBRELOC
    280  1.49     skrll static const Obj_Entry *_rtld_last_refobj;
    281  1.49     skrll 
    282  1.49     skrll /*
    283  1.49     skrll  * Called when an object is freed. Reset the cached symbol look up if
    284  1.49     skrll  * our last referencing or definition object just got unloaded.
    285  1.49     skrll  */
    286  1.49     skrll void
    287  1.49     skrll _rtld_combreloc_reset(const Obj_Entry *obj)
    288  1.49     skrll {
    289  1.49     skrll 	if (_rtld_last_refobj == obj)
    290  1.49     skrll 		_rtld_last_refobj = NULL;
    291  1.49     skrll }
    292  1.49     skrll #endif
    293  1.49     skrll 
    294   1.1       cgd /*
    295   1.1       cgd  * Given a symbol number in a referencing object, find the corresponding
    296   1.1       cgd  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
    297   1.1       cgd  * no definition was found.  Returns a pointer to the Obj_Entry of the
    298   1.1       cgd  * defining object via the reference parameter DEFOBJ_OUT.
    299   1.1       cgd  */
    300   1.1       cgd const Elf_Sym *
    301  1.31     skrll _rtld_find_symdef(unsigned long symnum, const Obj_Entry *refobj,
    302  1.31     skrll     const Obj_Entry **defobj_out, bool in_plt)
    303   1.1       cgd {
    304  1.27   mycroft 	const Elf_Sym  *ref;
    305   1.5   mycroft 	const Elf_Sym  *def;
    306  1.27   mycroft 	const Obj_Entry *defobj;
    307  1.27   mycroft 	const char     *name;
    308   1.3  christos 	unsigned long   hash;
    309   1.3  christos 
    310  1.41      matt #ifdef COMBRELOC
    311  1.41      matt 	/*
    312  1.41      matt 	 * COMBRELOC combines multiple reloc sections and sorts them to make
    313  1.41      matt 	 * dynamic symbol lookup caching possible.
    314  1.41      matt 	 *
    315  1.41      matt 	 * So if the lookup we are doing is the same as the previous lookup
    316  1.41      matt 	 * return the cached results.
    317  1.41      matt 	 */
    318  1.41      matt 	static unsigned long last_symnum;
    319  1.49     skrll 	static const Obj_Entry *last_defobj;
    320  1.41      matt 	static const Elf_Sym *last_def;
    321  1.41      matt 
    322  1.49     skrll 	if (symnum == last_symnum && refobj == _rtld_last_refobj
    323  1.42      matt 	    && in_plt == false) {
    324  1.41      matt 		*defobj_out = last_defobj;
    325  1.41      matt 		return last_def;
    326  1.41      matt 	}
    327  1.41      matt #endif
    328  1.41      matt 
    329  1.27   mycroft 	ref = refobj->symtab + symnum;
    330  1.27   mycroft 	name = refobj->strtab + ref->st_name;
    331  1.27   mycroft 
    332  1.27   mycroft 	/*
    333  1.40     skrll 	 * We don't have to do a full scale lookup if the symbol is local.
    334  1.40     skrll 	 * We know it will bind to the instance in this load module; to
    335  1.40     skrll 	 * which we already have a pointer (ie ref).
    336  1.33     skrll 	 */
    337  1.40     skrll 	if (ELF_ST_BIND(ref->st_info) != STB_LOCAL) {
    338  1.40     skrll 		if (ELF_ST_TYPE(ref->st_info) == STT_SECTION) {
    339  1.40     skrll 			_rtld_error("%s: Bogus symbol table entry %lu",
    340  1.40     skrll 			    refobj->path, symnum);
    341  1.40     skrll         	}
    342  1.40     skrll 
    343  1.40     skrll 		hash = _rtld_elf_hash(name);
    344  1.40     skrll 		defobj = NULL;
    345  1.40     skrll 		def = _rtld_symlook_default(name, hash, refobj, &defobj, in_plt);
    346  1.40     skrll 	} else {
    347  1.40     skrll 		rdbg(("STB_LOCAL symbol %s in %s", name, refobj->path));
    348  1.40     skrll 		def = ref;
    349  1.40     skrll 		defobj = refobj;
    350  1.33     skrll 	}
    351  1.40     skrll 
    352  1.33     skrll 	/*
    353  1.27   mycroft 	 * If we found no definition and the reference is weak, treat the
    354  1.27   mycroft 	 * symbol as having the value zero.
    355  1.27   mycroft 	 */
    356  1.27   mycroft 	if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
    357  1.45  christos 		rdbg(("  returning _rtld_sym_zero@_rtld_objself"));
    358  1.27   mycroft 		def = &_rtld_sym_zero;
    359  1.45  christos 		defobj = &_rtld_objself;
    360  1.27   mycroft 	}
    361  1.33     skrll 
    362  1.41      matt 	if (def != NULL) {
    363  1.27   mycroft 		*defobj_out = defobj;
    364  1.41      matt #ifdef COMBRELOC
    365  1.42      matt 		if (in_plt == false) {
    366  1.42      matt 			/*
    367  1.42      matt 			 * Cache the lookup arguments and results if this was
    368  1.42      matt 			 * non-PLT lookup.
    369  1.42      matt 			 */
    370  1.42      matt 			last_symnum = symnum;
    371  1.49     skrll 			_rtld_last_refobj = refobj;
    372  1.42      matt 			last_def = def;
    373  1.42      matt 			last_defobj = defobj;
    374  1.42      matt 		}
    375  1.41      matt #endif
    376  1.41      matt 	} else {
    377  1.27   mycroft 		rdbg(("lookup failed"));
    378  1.27   mycroft 		_rtld_error("%s: Undefined %ssymbol \"%s\" (symnum = %ld)",
    379  1.27   mycroft 		    refobj->path, in_plt ? "PLT " : "", name, symnum);
    380  1.27   mycroft 	}
    381  1.26   mycroft 	return def;
    382  1.28  christos }
    383  1.28  christos 
    384  1.50  christos const Elf_Sym *
    385  1.50  christos _rtld_find_plt_symdef(unsigned long symnum, const Obj_Entry *obj,
    386  1.50  christos     const Obj_Entry **defobj, bool imm)
    387  1.50  christos {
    388  1.50  christos  	const Elf_Sym  *def = _rtld_find_symdef(symnum, obj, defobj, true);
    389  1.50  christos 	if (__predict_false(def == NULL))
    390  1.50  christos  		return NULL;
    391  1.50  christos 
    392  1.50  christos 	if (__predict_false(def == &_rtld_sym_zero)) {
    393  1.50  christos 		/* tp is set during lazy binding. */
    394  1.50  christos 		if (imm) {
    395  1.50  christos 			const Elf_Sym	*ref = obj->symtab + symnum;
    396  1.50  christos 			const char	*name = obj->strtab + ref->st_name;
    397  1.50  christos 
    398  1.50  christos 			_rtld_error(
    399  1.50  christos 			    "%s: Trying to call undefined weak symbol `%s'",
    400  1.50  christos 			    obj->path, name);
    401  1.50  christos 			return NULL;
    402  1.50  christos 		}
    403  1.50  christos 	}
    404  1.50  christos 	return def;
    405  1.50  christos }
    406  1.50  christos 
    407  1.28  christos /*
    408  1.28  christos  * Given a symbol name in a referencing object, find the corresponding
    409  1.28  christos  * definition of the symbol.  Returns a pointer to the symbol, or NULL if
    410  1.28  christos  * no definition was found.  Returns a pointer to the Obj_Entry of the
    411  1.28  christos  * defining object via the reference parameter DEFOBJ_OUT.
    412  1.28  christos  */
    413  1.28  christos const Elf_Sym *
    414  1.28  christos _rtld_symlook_default(const char *name, unsigned long hash,
    415  1.28  christos     const Obj_Entry *refobj, const Obj_Entry **defobj_out, bool in_plt)
    416  1.28  christos {
    417  1.29     skrll 	const Elf_Sym *def;
    418  1.29     skrll 	const Elf_Sym *symp;
    419  1.29     skrll 	const Obj_Entry *obj;
    420  1.29     skrll 	const Obj_Entry *defobj;
    421  1.29     skrll 	const Objlist_Entry *elm;
    422  1.29     skrll 	def = NULL;
    423  1.29     skrll 	defobj = NULL;
    424  1.51       roy 	DoneList donelist;
    425  1.51       roy 
    426  1.51       roy 	_rtld_donelist_init(&donelist);
    427  1.29     skrll 
    428  1.29     skrll 	/* Look first in the referencing object if linked symbolically. */
    429  1.51       roy 	if (refobj->symbolic && !_rtld_donelist_check(&donelist, refobj)) {
    430  1.43  christos 		rdbg(("search referencing object for %s", name));
    431  1.29     skrll 		symp = _rtld_symlook_obj(name, hash, refobj, in_plt);
    432  1.29     skrll 		if (symp != NULL) {
    433  1.29     skrll 			def = symp;
    434  1.29     skrll 			defobj = refobj;
    435  1.29     skrll 		}
    436  1.29     skrll 	}
    437  1.29     skrll 
    438  1.29     skrll 	/* Search all objects loaded at program start up. */
    439  1.29     skrll 	if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
    440  1.43  christos 		rdbg(("search _rtld_list_main for %s", name));
    441  1.40     skrll 		symp = _rtld_symlook_list(name, hash, &_rtld_list_main, &obj,
    442  1.51       roy 		    in_plt, &donelist);
    443  1.29     skrll 		if (symp != NULL &&
    444  1.40     skrll 		    (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
    445  1.29     skrll 			def = symp;
    446  1.29     skrll 			defobj = obj;
    447  1.29     skrll 		}
    448  1.29     skrll 	}
    449  1.29     skrll 
    450  1.40     skrll 	/* Search all RTLD_GLOBAL objects. */
    451  1.40     skrll 	if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
    452  1.43  christos 		rdbg(("search _rtld_list_global for %s", name));
    453  1.40     skrll 		symp = _rtld_symlook_list(name, hash, &_rtld_list_global,
    454  1.51       roy 		    &obj, in_plt, &donelist);
    455  1.29     skrll 		if (symp != NULL &&
    456  1.29     skrll 		    (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
    457  1.29     skrll 			def = symp;
    458  1.29     skrll 			defobj = obj;
    459  1.29     skrll 		}
    460  1.29     skrll 	}
    461  1.40     skrll 
    462  1.40     skrll 	/* Search all dlopened DAGs containing the referencing object. */
    463  1.40     skrll 	SIMPLEQ_FOREACH(elm, &refobj->dldags, link) {
    464  1.29     skrll 		if (def != NULL && ELF_ST_BIND(def->st_info) != STB_WEAK)
    465  1.29     skrll 			break;
    466  1.43  christos 		rdbg(("search DAG with root %p (%s) for %s", elm->obj,
    467  1.43  christos 		    elm->obj->path, name));
    468  1.40     skrll 		symp = _rtld_symlook_list(name, hash, &elm->obj->dagmembers,
    469  1.51       roy 		    &obj, in_plt, &donelist);
    470  1.29     skrll 		if (symp != NULL &&
    471  1.29     skrll 		    (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
    472  1.29     skrll 			def = symp;
    473  1.29     skrll 			defobj = obj;
    474  1.29     skrll 		}
    475  1.28  christos 	}
    476  1.28  christos 
    477  1.29     skrll 	/*
    478  1.29     skrll 	 * Search the dynamic linker itself, and possibly resolve the
    479  1.29     skrll 	 * symbol from there.  This is how the application links to
    480  1.29     skrll 	 * dynamic linker services such as dlopen.  Only the values listed
    481  1.40     skrll 	 * in the "_rtld_exports" array can be resolved from the dynamic
    482  1.40     skrll 	 * linker.
    483  1.29     skrll 	 */
    484  1.29     skrll 	if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
    485  1.40     skrll 		rdbg(("Search the dynamic linker itself."));
    486  1.30     skrll 		symp = _rtld_symlook_obj(name, hash, &_rtld_objself, in_plt);
    487  1.40     skrll 		if (symp != NULL && _rtld_is_exported(symp)) {
    488  1.29     skrll 			def = symp;
    489  1.30     skrll 			defobj = &_rtld_objself;
    490  1.29     skrll 		}
    491  1.28  christos 	}
    492  1.28  christos 
    493  1.29     skrll 	if (def != NULL)
    494  1.29     skrll 		*defobj_out = defobj;
    495  1.29     skrll 	return def;
    496   1.1       cgd }
    497