OSDN Git Service

ldso: minor fixes to implicit search path
[uclinux-h8/uClibc.git] / ldso / ldso / dl-hash.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Program to load an ELF binary on a linux system, and run it
4  * after resolving ELF shared library symbols
5  *
6  * Copyright (C) 2004 by Joakim Tjernlund <joakim.tjernlund@lumentis.se>
7  * Copyright (C) 2000-2006 by Erik Andersen <andersen@codepoet.org>
8  * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
9  *                              David Engel, Hongjiu Lu and Mitch D'Souza
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. The name of the above contributors may not be
17  *    used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33
34 /* Various symbol table handling functions, including symbol lookup */
35 /*
36  * This is the list of modules that are loaded when the image is first
37  * started.  As we add more via dlopen, they get added into other
38  * chains.
39  */
40 struct dyn_elf *_dl_symbol_tables = NULL;
41
42 /*
43  * This is the list of modules that are loaded via dlopen.  We may need
44  * to search these for RTLD_GLOBAL files.
45  */
46 struct dyn_elf *_dl_handles = NULL;
47
48 #ifdef __LDSO_GNU_HASH_SUPPORT__
49 /* This is the new hash function that is used by the ELF linker to generate the
50  * GNU hash table that each executable and library will have if --hash-style=[gnu,both]
51  * is passed to the linker. We need it to decode the GNU hash table.  */
52 static __inline__ Elf_Symndx _dl_gnu_hash (const unsigned char *name)
53 {
54   unsigned long h = 5381;
55   unsigned char c;
56   for (c = *name; c != '\0'; c = *++name)
57     h = h * 33 + c;
58   return h & 0xffffffff;
59 }
60 #endif
61
62 /* This is the hash function that is used by the ELF linker to generate the
63  * hash table that each executable and library is required to have.  We need
64  * it to decode the hash table.  */
65 static __inline__ Elf_Symndx _dl_elf_hash(const unsigned char *name)
66 {
67         unsigned long hash=0;
68         unsigned long tmp;
69
70         while (*name) {
71                 hash = (hash << 4) + *name++;
72                 tmp = hash & 0xf0000000;
73                 /* The algorithm specified in the ELF ABI is as follows:
74                    if (tmp != 0)
75                        hash ^= tmp >> 24;
76                    hash &= ~tmp;
77                    But the following is equivalent and a lot
78                    faster, especially on modern processors. */
79                 hash ^= tmp;
80                 hash ^= tmp >> 24;
81         }
82         return hash;
83 }
84
85 /*
86  * We call this function when we have just read an ELF library or executable.
87  * We add the relevant info to the symbol chain, so that we can resolve all
88  * externals properly.
89  */
90 struct elf_resolve *_dl_add_elf_hash_table(const char *libname,
91         DL_LOADADDR_TYPE loadaddr, unsigned long *dynamic_info, unsigned long dynamic_addr,
92         attribute_unused unsigned long dynamic_size)
93 {
94         Elf_Symndx *hash_addr;
95         struct elf_resolve *tpnt;
96         int i;
97
98         tpnt = _dl_malloc(sizeof(struct elf_resolve));
99         _dl_memset(tpnt, 0, sizeof(struct elf_resolve));
100
101         if (!_dl_loaded_modules)
102                 _dl_loaded_modules = tpnt;
103         else {
104                 struct elf_resolve *t = _dl_loaded_modules;
105                 while (t->next)
106                         t = t->next;
107                 t->next = tpnt;
108                 t->next->prev = t;
109                 tpnt = t->next;
110         }
111
112         tpnt->next = NULL;
113         tpnt->init_flag = 0;
114         tpnt->libname = _dl_strdup(libname);
115         tpnt->dynamic_addr = (ElfW(Dyn) *)dynamic_addr;
116         tpnt->libtype = loaded_file;
117
118 #ifdef __LDSO_GNU_HASH_SUPPORT__
119         if (dynamic_info[DT_GNU_HASH_IDX] != 0) {
120                 Elf32_Word *hash32 = (Elf_Symndx*)dynamic_info[DT_GNU_HASH_IDX];
121
122                 tpnt->nbucket = *hash32++;
123                 Elf32_Word symbias = *hash32++;
124                 Elf32_Word bitmask_nwords = *hash32++;
125                 /* Must be a power of two.  */
126                 _dl_assert ((bitmask_nwords & (bitmask_nwords - 1)) == 0);
127                 tpnt->l_gnu_bitmask_idxbits = bitmask_nwords - 1;
128                 tpnt->l_gnu_shift = *hash32++;
129
130                 tpnt->l_gnu_bitmask = (ElfW(Addr) *) hash32;
131                 hash32 += __ELF_NATIVE_CLASS / 32 * bitmask_nwords;
132
133                 tpnt->l_gnu_buckets = hash32;
134                 hash32 += tpnt->nbucket;
135                 tpnt->l_gnu_chain_zero = hash32 - symbias;
136         } else
137         /* Fall using old SysV hash table if GNU hash is not present */
138 #endif
139
140         if (dynamic_info[DT_HASH] != 0) {
141                 hash_addr = (Elf_Symndx*)dynamic_info[DT_HASH];
142                 tpnt->nbucket = *hash_addr++;
143                 tpnt->nchain = *hash_addr++;
144                 tpnt->elf_buckets = hash_addr;
145                 hash_addr += tpnt->nbucket;
146                 tpnt->chains = hash_addr;
147         }
148         tpnt->loadaddr = loadaddr;
149         for (i = 0; i < DYNAMIC_SIZE; i++)
150                 tpnt->dynamic_info[i] = dynamic_info[i];
151         return tpnt;
152 }
153
154
155 /* Routine to check whether the symbol matches.  */
156 static __attribute_noinline__ const ElfW(Sym) *
157 check_match (const ElfW(Sym) *sym, char *strtab, const char* undef_name, int type_class)
158 {
159
160 #if defined(USE_TLS) && USE_TLS
161         if ((sym->st_value == 0 && (ELF_ST_TYPE(sym->st_info) != STT_TLS))
162                       || (type_class & (sym->st_shndx == SHN_UNDEF)))
163                 /* No value or undefined symbol itself */
164                 return NULL;
165
166         if (ELF_ST_TYPE(sym->st_info) > STT_FUNC
167                 && ELF_ST_TYPE(sym->st_info) != STT_COMMON
168                 && ELF_ST_TYPE(sym->st_info) != STT_TLS)
169                 /* Ignore all but STT_NOTYPE, STT_OBJECT, STT_FUNC and STT_COMMON
170                  * entries (and STT_TLS if TLS is supported) since these
171                  * are no code/data definitions.
172                  */
173                 return NULL;
174 #else
175         if (type_class & (sym->st_shndx == SHN_UNDEF))
176                 /* undefined symbol itself */
177                 return NULL;
178
179         if (sym->st_value == 0)
180                 /* No value */
181                 return NULL;
182
183         if (ELF_ST_TYPE(sym->st_info) > STT_FUNC
184                 && ELF_ST_TYPE(sym->st_info) != STT_COMMON)
185                 /* Ignore all but STT_NOTYPE, STT_OBJECT, STT_FUNC
186                  * and STT_COMMON entries since these are no
187                  * code/data definitions
188                  */
189                 return NULL;
190 #endif
191 #ifdef ARCH_SKIP_RELOC
192         if (ARCH_SKIP_RELOC(type_class, sym))
193                 return NULL;
194 #endif
195         if (_dl_strcmp(strtab + sym->st_name, undef_name) != 0)
196                 return NULL;
197
198         /* This is the matching symbol */
199         return sym;
200 }
201
202
203 #ifdef __LDSO_GNU_HASH_SUPPORT__
204
205 static __always_inline const ElfW(Sym) *
206 _dl_lookup_gnu_hash(struct elf_resolve *tpnt, ElfW(Sym) *symtab, unsigned long hash,
207                                         const char* undef_name, int type_class)
208 {
209         Elf_Symndx symidx;
210         const ElfW(Sym) *sym;
211         char *strtab;
212
213         const ElfW(Addr) *bitmask = tpnt->l_gnu_bitmask;
214
215         ElfW(Addr) bitmask_word = bitmask[(hash / __ELF_NATIVE_CLASS) & tpnt->l_gnu_bitmask_idxbits];
216
217         unsigned int hashbit1 = hash & (__ELF_NATIVE_CLASS - 1);
218         unsigned int hashbit2 = ((hash >> tpnt->l_gnu_shift) & (__ELF_NATIVE_CLASS - 1));
219         _dl_assert (bitmask != NULL);
220
221         if (unlikely((bitmask_word >> hashbit1) & (bitmask_word >> hashbit2) & 1)) {
222                 unsigned long rem;
223                 Elf32_Word bucket;
224
225                 do_rem (rem, hash, tpnt->nbucket);
226                 bucket = tpnt->l_gnu_buckets[rem];
227
228                 if (bucket != 0) {
229                         const Elf32_Word *hasharr = &tpnt->l_gnu_chain_zero[bucket];
230                         do {
231                                 if (((*hasharr ^ hash) >> 1) == 0) {
232                                         symidx = hasharr - tpnt->l_gnu_chain_zero;
233                                         strtab = (char *) (tpnt->dynamic_info[DT_STRTAB]);
234                                         sym = check_match (&symtab[symidx], strtab, undef_name, type_class);
235                                         if (sym != NULL)
236                                                 return sym;
237                                 }
238                         } while ((*hasharr++ & 1u) == 0);
239                 }
240         }
241         /* No symbol found.  */
242         return NULL;
243 }
244 #endif
245
246 static __always_inline const ElfW(Sym) *
247 _dl_lookup_sysv_hash(struct elf_resolve *tpnt, ElfW(Sym) *symtab, unsigned long hash,  const char* undef_name, int type_class)
248 {
249         unsigned long hn;
250         char *strtab;
251         const ElfW(Sym) *sym;
252         Elf_Symndx symidx;
253
254         /* Avoid calling .urem here. */
255         do_rem(hn, hash, tpnt->nbucket);
256         strtab = (char *) (tpnt->dynamic_info[DT_STRTAB]);
257
258         _dl_assert(tpnt->elf_buckets != NULL);
259
260         for (symidx = tpnt->elf_buckets[hn]; symidx != STN_UNDEF; symidx = tpnt->chains[symidx]) {
261                 sym = check_match (&symtab[symidx], strtab, undef_name, type_class);
262                 if (sym != NULL)
263                         /* At this point the symbol is that we are looking for */
264                         return sym;
265         }
266         /* No symbol found into the current module*/
267         return NULL;
268 }
269
270 /*
271  * This function resolves externals, and this is either called when we process
272  * relocations or when we call an entry in the PLT table for the first time.
273  */
274 char *_dl_find_hash(const char *name, struct r_scope_elem *scope, struct elf_resolve *mytpnt,
275         int type_class, struct symbol_ref *sym_ref)
276 {
277         struct elf_resolve *tpnt = NULL;
278         ElfW(Sym) *symtab;
279         int i = 0;
280
281         unsigned long elf_hash_number = 0xffffffff;
282         const ElfW(Sym) *sym = NULL;
283
284         char *weak_result = NULL;
285         struct r_scope_elem *loop_scope;
286
287 #ifdef __LDSO_GNU_HASH_SUPPORT__
288         unsigned long gnu_hash_number = _dl_gnu_hash((const unsigned char *)name);
289 #endif
290
291         if ((sym_ref) && (sym_ref->sym) && (ELF32_ST_VISIBILITY(sym_ref->sym->st_other) == STV_PROTECTED)) {
292                         sym = sym_ref->sym;
293                 if (mytpnt)
294                         tpnt = mytpnt;
295         } else
296         for (loop_scope = scope; loop_scope && !sym; loop_scope = loop_scope->next) {
297                 for (i = 0; i < loop_scope->r_nlist; i++) {
298                         tpnt = loop_scope->r_list[i];
299
300                         if (!(tpnt->rtld_flags & RTLD_GLOBAL) && mytpnt) {
301                                 if (mytpnt == tpnt)
302                                         ;
303                                 else {
304                                         struct init_fini_list *tmp;
305
306                                         for (tmp = mytpnt->rtld_local; tmp; tmp = tmp->next) {
307                                                 if (tmp->tpnt == tpnt)
308                                                         break;
309                                         }
310                                         if (!tmp)
311                                                 continue;
312                                 }
313                         }
314                         /* Don't search the executable when resolving a copy reloc. */
315                         if ((type_class &  ELF_RTYPE_CLASS_COPY) && tpnt->libtype == elf_executable)
316                                 continue;
317
318                         /* If the hash table is empty there is nothing to do here.  */
319                         if (tpnt->nbucket == 0)
320                                 continue;
321
322                         symtab = (ElfW(Sym) *) (intptr_t) (tpnt->dynamic_info[DT_SYMTAB]);
323
324 #ifdef __LDSO_GNU_HASH_SUPPORT__
325                         /* Prefer GNU hash style, if any */
326                         if (tpnt->l_gnu_bitmask) {
327                                 sym = _dl_lookup_gnu_hash(tpnt, symtab, gnu_hash_number, name, type_class);
328                                 if (sym != NULL)
329                                         /* If sym has been found, do not search further */
330                                         break;
331                         } else {
332 #endif
333                                 /* Use the old SysV-style hash table */
334
335                                 /* Calculate the old sysv hash number only once */
336                                 if (elf_hash_number == 0xffffffff)
337                                         elf_hash_number = _dl_elf_hash((const unsigned char *)name);
338
339                                 sym = _dl_lookup_sysv_hash(tpnt, symtab, elf_hash_number, name, type_class);
340                                 if (sym != NULL)
341                                         /* If sym has been found, do not search further */
342                                         break;
343 #ifdef __LDSO_GNU_HASH_SUPPORT__
344                         }
345 #endif
346                 } /* End of inner for */
347         }
348
349         if (sym) {
350                 if (sym_ref) {
351                         sym_ref->sym = sym;
352                         sym_ref->tpnt = tpnt;
353                 }
354                 /* At this point we have found the requested symbol, do binding */
355 #if defined(USE_TLS) && USE_TLS
356                 if (ELF_ST_TYPE(sym->st_info) == STT_TLS) {
357                         _dl_assert(sym_ref != NULL);
358                         sym_ref->tpnt = tpnt;
359                         return (char *)sym->st_value;
360                 }
361 #endif
362
363                 switch (ELF_ST_BIND(sym->st_info)) {
364                         case STB_WEAK:
365 #if 0
366         /* Perhaps we should support old style weak symbol handling
367         * per what glibc does when you export LD_DYNAMIC_WEAK */
368                                 if (!weak_result)
369                                         weak_result = (char *)DL_FIND_HASH_VALUE(tpnt, type_class, sym);
370                                 break;
371 #endif
372                         case STB_GLOBAL:
373 #ifdef __FDPIC__
374                         if (sym_ref)
375                                 sym_ref->tpnt = tpnt;
376 #endif
377                                 return (char *)DL_FIND_HASH_VALUE(tpnt, type_class, sym);
378                         default:        /* Local symbols not handled here */
379                                 break;
380                 }
381         }
382 #ifdef __FDPIC__
383         if (sym_ref)
384                 sym_ref->tpnt = tpnt;
385 #endif
386         return weak_result;
387 }