symbol.c revision 1.20 1 1.20 mycroft /* $NetBSD: symbol.c,v 1.20 2002/09/23 23:56:49 mycroft 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.1 cgd * All rights reserved.
7 1.1 cgd *
8 1.1 cgd * Redistribution and use in source and binary forms, with or without
9 1.1 cgd * modification, are permitted provided that the following conditions
10 1.1 cgd * are met:
11 1.1 cgd * 1. Redistributions of source code must retain the above copyright
12 1.1 cgd * notice, this list of conditions and the following disclaimer.
13 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer in the
15 1.1 cgd * documentation and/or other materials provided with the distribution.
16 1.1 cgd * 3. All advertising materials mentioning features or use of this software
17 1.1 cgd * must display the following acknowledgement:
18 1.1 cgd * This product includes software developed by John Polstra.
19 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
20 1.1 cgd * derived from this software without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd /*
35 1.1 cgd * Dynamic linker for ELF.
36 1.1 cgd *
37 1.1 cgd * John Polstra <jdp (at) polstra.com>.
38 1.1 cgd */
39 1.1 cgd
40 1.1 cgd #include <err.h>
41 1.1 cgd #include <errno.h>
42 1.1 cgd #include <fcntl.h>
43 1.1 cgd #include <stdarg.h>
44 1.1 cgd #include <stdio.h>
45 1.1 cgd #include <stdlib.h>
46 1.1 cgd #include <string.h>
47 1.1 cgd #include <unistd.h>
48 1.1 cgd #include <sys/types.h>
49 1.1 cgd #include <sys/mman.h>
50 1.1 cgd #include <dirent.h>
51 1.1 cgd
52 1.1 cgd #include "debug.h"
53 1.1 cgd #include "rtld.h"
54 1.1 cgd
55 1.1 cgd /*
56 1.1 cgd * Hash function for symbol table lookup. Don't even think about changing
57 1.1 cgd * this. It is specified by the System V ABI.
58 1.1 cgd */
59 1.1 cgd unsigned long
60 1.3 christos _rtld_elf_hash(name)
61 1.3 christos const char *name;
62 1.1 cgd {
63 1.3 christos const unsigned char *p = (const unsigned char *) name;
64 1.3 christos unsigned long h = 0;
65 1.3 christos unsigned long g;
66 1.3 christos
67 1.3 christos while (*p != '\0') {
68 1.3 christos h = (h << 4) + *p++;
69 1.3 christos if ((g = h & 0xf0000000) != 0)
70 1.3 christos h ^= g >> 24;
71 1.3 christos h &= ~g;
72 1.3 christos }
73 1.3 christos return h;
74 1.1 cgd }
75 1.1 cgd
76 1.5 mycroft const Elf_Sym *
77 1.5 mycroft _rtld_symlook_list(const char *name, unsigned long hash, Objlist *objlist,
78 1.20 mycroft const Obj_Entry **defobj_out)
79 1.5 mycroft {
80 1.5 mycroft const Elf_Sym *symp;
81 1.5 mycroft const Elf_Sym *def;
82 1.5 mycroft const Obj_Entry *defobj;
83 1.5 mycroft const Objlist_Entry *elm;
84 1.5 mycroft
85 1.5 mycroft def = NULL;
86 1.5 mycroft defobj = NULL;
87 1.12 lukem SIMPLEQ_FOREACH(elm, objlist, link) {
88 1.20 mycroft if ((symp = _rtld_symlook_obj(name, hash, elm->obj))
89 1.5 mycroft != NULL) {
90 1.5 mycroft if ((def == NULL) ||
91 1.6 thorpej (ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
92 1.5 mycroft def = symp;
93 1.5 mycroft defobj = elm->obj;
94 1.6 thorpej if (ELF_ST_BIND(def->st_info) != STB_WEAK)
95 1.5 mycroft break;
96 1.5 mycroft }
97 1.5 mycroft }
98 1.5 mycroft }
99 1.5 mycroft if (def != NULL)
100 1.5 mycroft *defobj_out = defobj;
101 1.5 mycroft return def;
102 1.5 mycroft }
103 1.5 mycroft
104 1.1 cgd /*
105 1.1 cgd * Search the symbol table of a single shared object for a symbol of
106 1.1 cgd * the given name. Returns a pointer to the symbol, or NULL if no
107 1.1 cgd * definition was found.
108 1.1 cgd *
109 1.1 cgd * The symbol's hash value is passed in for efficiency reasons; that
110 1.1 cgd * eliminates many recomputations of the hash value.
111 1.1 cgd */
112 1.1 cgd const Elf_Sym *
113 1.20 mycroft _rtld_symlook_obj(name, hash, obj)
114 1.3 christos const char *name;
115 1.3 christos unsigned long hash;
116 1.3 christos const Obj_Entry *obj;
117 1.1 cgd {
118 1.20 mycroft unsigned long symnum;
119 1.1 cgd
120 1.20 mycroft for (symnum = obj->buckets[hash % obj->nbuckets];
121 1.20 mycroft symnum != ELF_SYM_UNDEFINED;
122 1.20 mycroft symnum = obj->chains[symnum]) {
123 1.3 christos const Elf_Sym *symp;
124 1.3 christos const char *strp;
125 1.3 christos
126 1.3 christos assert(symnum < obj->nchains);
127 1.3 christos symp = obj->symtab + symnum;
128 1.3 christos strp = obj->strtab + symp->st_name;
129 1.20 mycroft if (name[1] == strp[1] && !strcmp(name, strp)) {
130 1.20 mycroft if (symp->st_shndx != SHN_UNDEF)
131 1.3 christos return symp;
132 1.19 mycroft else
133 1.19 mycroft return NULL;
134 1.3 christos }
135 1.1 cgd }
136 1.1 cgd
137 1.3 christos return NULL;
138 1.1 cgd }
139 1.1 cgd
140 1.1 cgd /*
141 1.1 cgd * Given a symbol number in a referencing object, find the corresponding
142 1.1 cgd * definition of the symbol. Returns a pointer to the symbol, or NULL if
143 1.1 cgd * no definition was found. Returns a pointer to the Obj_Entry of the
144 1.1 cgd * defining object via the reference parameter DEFOBJ_OUT.
145 1.1 cgd */
146 1.1 cgd const Elf_Sym *
147 1.15 mycroft _rtld_find_symdef(symnum, refobj, defobj_out, in_plt)
148 1.15 mycroft unsigned long symnum;
149 1.17 mycroft const Obj_Entry *refobj;
150 1.3 christos const Obj_Entry **defobj_out;
151 1.3 christos bool in_plt;
152 1.1 cgd {
153 1.11 rafal const Elf_Sym *ref;
154 1.5 mycroft const Elf_Sym *def;
155 1.5 mycroft const Elf_Sym *symp;
156 1.3 christos const Obj_Entry *obj;
157 1.5 mycroft const Obj_Entry *defobj;
158 1.5 mycroft const Objlist_Entry *elm;
159 1.13 junyoung const char *name;
160 1.3 christos unsigned long hash;
161 1.3 christos
162 1.11 rafal ref = refobj->symtab + symnum;
163 1.13 junyoung name = refobj->strtab + ref->st_name;
164 1.11 rafal
165 1.3 christos hash = _rtld_elf_hash(name);
166 1.5 mycroft def = NULL;
167 1.5 mycroft defobj = NULL;
168 1.5 mycroft
169 1.3 christos if (refobj->symbolic) { /* Look first in the referencing object */
170 1.20 mycroft symp = _rtld_symlook_obj(name, hash, refobj);
171 1.5 mycroft if (symp != NULL) {
172 1.5 mycroft def = symp;
173 1.5 mycroft defobj = refobj;
174 1.5 mycroft }
175 1.5 mycroft }
176 1.5 mycroft
177 1.5 mycroft /* Search all objects loaded at program start up. */
178 1.6 thorpej if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
179 1.20 mycroft symp = _rtld_symlook_list(name, hash, &_rtld_list_main, &obj);
180 1.5 mycroft if (symp != NULL &&
181 1.6 thorpej (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
182 1.5 mycroft def = symp;
183 1.5 mycroft defobj = obj;
184 1.5 mycroft }
185 1.5 mycroft }
186 1.5 mycroft
187 1.5 mycroft /* Search all dlopened DAGs containing the referencing object. */
188 1.12 lukem SIMPLEQ_FOREACH(elm, &refobj->dldags, link) {
189 1.6 thorpej if (def != NULL && ELF_ST_BIND(def->st_info) != STB_WEAK)
190 1.5 mycroft break;
191 1.20 mycroft symp = _rtld_symlook_list(name, hash, &elm->obj->dagmembers, &obj);
192 1.5 mycroft if (symp != NULL &&
193 1.6 thorpej (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
194 1.5 mycroft def = symp;
195 1.5 mycroft defobj = obj;
196 1.3 christos }
197 1.3 christos }
198 1.5 mycroft
199 1.5 mycroft /* Search all RTLD_GLOBAL objects. */
200 1.6 thorpej if (def == NULL || ELF_ST_BIND(def->st_info) == STB_WEAK) {
201 1.20 mycroft symp = _rtld_symlook_list(name, hash, &_rtld_list_global, &obj);
202 1.5 mycroft if (symp != NULL &&
203 1.6 thorpej (def == NULL || ELF_ST_BIND(symp->st_info) != STB_WEAK)) {
204 1.5 mycroft def = symp;
205 1.5 mycroft defobj = obj;
206 1.3 christos }
207 1.3 christos }
208 1.5 mycroft
209 1.5 mycroft /*
210 1.5 mycroft * If we found no definition and the reference is weak, treat the
211 1.5 mycroft * symbol as having the value zero.
212 1.5 mycroft */
213 1.6 thorpej if (def == NULL && ELF_ST_BIND(ref->st_info) == STB_WEAK) {
214 1.18 mycroft rdbg((" returning _rtld_sym_zero@_rtld_objmain"));
215 1.5 mycroft def = &_rtld_sym_zero;
216 1.5 mycroft defobj = _rtld_objmain;
217 1.5 mycroft }
218 1.5 mycroft
219 1.5 mycroft if (def != NULL)
220 1.5 mycroft *defobj_out = defobj;
221 1.14 mycroft else
222 1.14 mycroft _rtld_error("%s: Undefined %ssymbol \"%s\" (symnum = %ld)",
223 1.14 mycroft refobj->path, in_plt ? "PLT " : "", name, symnum);
224 1.5 mycroft return def;
225 1.1 cgd }
226