blob: 8bb989a4b5225da1c49660cca3888bbf8d9f350b [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
Doug Kwan94304352009-10-23 18:11:40 -07002 * Copyright (C) 2008, 2009 The Android Open Source Project
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08003 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
Elliott Hughes46882792012-08-03 16:49:39 -070029#include <dlfcn.h>
30#include <errno.h>
31#include <fcntl.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080032#include <linux/auxvec.h>
Elliott Hughes46882792012-08-03 16:49:39 -070033#include <pthread.h>
34#include <stdbool.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080038#include <sys/atomics.h>
Elliott Hughes46882792012-08-03 16:49:39 -070039#include <sys/mman.h>
40#include <sys/stat.h>
41#include <unistd.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042
Elliott Hughes46882792012-08-03 16:49:39 -070043// Private C library headers.
44#include <private/bionic_tls.h>
45#include <private/logd.h>
Elliott Hughes3b297c42012-10-11 16:08:51 -070046#include <private/ScopedPthreadMutexLocker.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080047
48#include "linker.h"
49#include "linker_debug.h"
David 'Digit' Turnerbe575592010-12-16 19:52:02 +010050#include "linker_environ.h"
David 'Digit' Turner5c734642010-01-20 12:36:51 -080051#include "linker_format.h"
David 'Digit' Turner23363ed2012-06-18 18:13:49 +020052#include "linker_phdr.h"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080053
Kenny Root72f9a5c2011-02-10 17:02:21 -080054#define SO_MAX 128
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080055
David Bartleybc3a5c22009-06-02 18:27:28 -070056/* Assume average path length of 64 and max 8 paths */
57#define LDPATH_BUFSIZE 512
58#define LDPATH_MAX 8
59
Matt Fischer4fd42c12009-12-31 12:09:10 -060060#define LDPRELOAD_BUFSIZE 512
61#define LDPRELOAD_MAX 8
62
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080063/* >>> IMPORTANT NOTE - READ ME BEFORE MODIFYING <<<
64 *
65 * Do NOT use malloc() and friends or pthread_*() code here.
66 * Don't use printf() either; it's caused mysterious memory
67 * corruption in the past.
68 * The linker runs before we bring up libc and it's easiest
69 * to make sure it does not depend on any complex libc features
70 *
71 * open issues / todo:
72 *
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080073 * - are we doing everything we should for ARM_COPY relocations?
74 * - cleaner error reporting
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080075 * - after linking, set as much stuff as possible to READONLY
76 * and NOEXEC
77 * - linker hardcodes PAGE_SIZE and PAGE_MASK because the kernel
78 * headers provide versions that are negative...
79 * - allocate space for soinfo structs dynamically instead of
Elliott Hughes46882792012-08-03 16:49:39 -070080 * having a hard limit (SO_MAX)
81 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080082
83
Nick Kralevich5135b3a2012-08-10 21:08:42 -070084static int soinfo_link_image(soinfo *si);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080085
86static int socount = 0;
87static soinfo sopool[SO_MAX];
88static soinfo *freelist = NULL;
89static soinfo *solist = &libdl_info;
90static soinfo *sonext = &libdl_info;
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -070091static soinfo *somain; /* main process, always the one after libdl_info */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080092
David Bartleybc3a5c22009-06-02 18:27:28 -070093static char ldpaths_buf[LDPATH_BUFSIZE];
94static const char *ldpaths[LDPATH_MAX + 1];
95
Matt Fischer4fd42c12009-12-31 12:09:10 -060096static char ldpreloads_buf[LDPRELOAD_BUFSIZE];
97static const char *ldpreload_names[LDPRELOAD_MAX + 1];
98
99static soinfo *preloads[LDPRELOAD_MAX + 1];
100
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -0700101#if LINKER_DEBUG
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800102int debug_verbosity;
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -0700103#endif
104
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800105static int pid;
106
Elliott Hughesbedfe382012-08-14 14:07:59 -0700107enum RelocationKind {
108 kRelocAbsolute = 0,
109 kRelocRelative,
110 kRelocCopy,
111 kRelocSymbol,
112 kRelocMax
113};
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100114
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800115#if STATS
Elliott Hughesbedfe382012-08-14 14:07:59 -0700116struct linker_stats_t {
117 int count[kRelocMax];
118};
119
120static linker_stats_t linker_stats;
121
122static void count_relocation(RelocationKind kind) {
123 ++linker_stats.count[kind];
124}
125#else
126static void count_relocation(RelocationKind) {
127}
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800128#endif
129
130#if COUNT_PAGES
Elliott Hughesbedfe382012-08-14 14:07:59 -0700131static unsigned bitmask[4096];
132#define MARK(offset) \
133 do { \
134 bitmask[((offset) >> 12) >> 3] |= (1 << (((offset) >> 12) & 7)); \
135 } while(0)
136#else
137#define MARK(x) do {} while (0)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800138#endif
139
Elliott Hughes46882792012-08-03 16:49:39 -0700140// You shouldn't try to call memory-allocating functions in the dynamic linker.
141// Guard against the most obvious ones.
142#define DISALLOW_ALLOCATION(return_type, name, ...) \
143 return_type name __VA_ARGS__ \
144 { \
145 const char* msg = "ERROR: " #name " called from the dynamic linker!\n"; \
146 __libc_android_log_write(ANDROID_LOG_FATAL, "linker", msg); \
147 write(2, msg, sizeof(msg)); \
148 abort(); \
Dima Zavin2e855792009-05-20 18:28:09 -0700149 }
Elliott Hughes46882792012-08-03 16:49:39 -0700150#define UNUSED __attribute__((unused))
151DISALLOW_ALLOCATION(void*, malloc, (size_t u UNUSED));
152DISALLOW_ALLOCATION(void, free, (void* u UNUSED));
153DISALLOW_ALLOCATION(void*, realloc, (void* u1 UNUSED, size_t u2 UNUSED));
154DISALLOW_ALLOCATION(void*, calloc, (size_t u1 UNUSED, size_t u2 UNUSED));
Dima Zavin2e855792009-05-20 18:28:09 -0700155
Dima Zavin03531952009-05-29 17:30:25 -0700156static char tmp_err_buf[768];
Dima Zavin2e855792009-05-20 18:28:09 -0700157static char __linker_dl_err_buf[768];
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700158#define DL_ERR(fmt, x...) \
159 do { \
Elliott Hughes3b297c42012-10-11 16:08:51 -0700160 format_buffer(__linker_dl_err_buf, sizeof(__linker_dl_err_buf), fmt, ##x); \
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700161 ERROR(fmt "\n", ##x); \
Dima Zavin2e855792009-05-20 18:28:09 -0700162 } while(0)
163
Elliott Hughes5419b942012-10-16 15:54:46 -0700164const char* linker_get_error() {
165 return &__linker_dl_err_buf[0];
Dima Zavin2e855792009-05-20 18:28:09 -0700166}
167
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800168/*
169 * This function is an empty stub where GDB locates a breakpoint to get notified
170 * about linker activity.
171 */
Elliott Hughes5419b942012-10-16 15:54:46 -0700172extern "C" void __attribute__((noinline)) __attribute__((visibility("default"))) rtld_db_dlactivity();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800173
Elliott Hughesbedfe382012-08-14 14:07:59 -0700174static r_debug _r_debug = {1, NULL, &rtld_db_dlactivity,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800175 RT_CONSISTENT, 0};
Elliott Hughesbedfe382012-08-14 14:07:59 -0700176static link_map* r_debug_tail = 0;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800177
Elliott Hughes3b297c42012-10-11 16:08:51 -0700178static pthread_mutex_t gDebugMutex = PTHREAD_MUTEX_INITIALIZER;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800179
Elliott Hughesbedfe382012-08-14 14:07:59 -0700180static void insert_soinfo_into_debug_map(soinfo * info) {
181 // Copy the necessary fields into the debug structure.
182 link_map* map = &(info->linkmap);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800183 map->l_addr = info->base;
184 map->l_name = (char*) info->name;
Thinker K.F Li5cf640c2009-07-03 19:40:32 +0800185 map->l_ld = (uintptr_t)info->dynamic;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800186
187 /* Stick the new library at the end of the list.
188 * gdb tends to care more about libc than it does
189 * about leaf libraries, and ordering it this way
190 * reduces the back-and-forth over the wire.
191 */
192 if (r_debug_tail) {
193 r_debug_tail->l_next = map;
194 map->l_prev = r_debug_tail;
195 map->l_next = 0;
196 } else {
197 _r_debug.r_map = map;
198 map->l_prev = 0;
199 map->l_next = 0;
200 }
201 r_debug_tail = map;
202}
203
Elliott Hughesbedfe382012-08-14 14:07:59 -0700204static void remove_soinfo_from_debug_map(soinfo* info) {
205 link_map* map = &(info->linkmap);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700206
Elliott Hughesbedfe382012-08-14 14:07:59 -0700207 if (r_debug_tail == map) {
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700208 r_debug_tail = map->l_prev;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700209 }
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700210
Elliott Hughesbedfe382012-08-14 14:07:59 -0700211 if (map->l_prev) {
212 map->l_prev->l_next = map->l_next;
213 }
214 if (map->l_next) {
215 map->l_next->l_prev = map->l_prev;
216 }
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700217}
218
Elliott Hughesbedfe382012-08-14 14:07:59 -0700219static void notify_gdb_of_load(soinfo* info) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800220 if (info->flags & FLAG_EXE) {
221 // GDB already knows about the main executable
222 return;
223 }
224
Elliott Hughes3b297c42012-10-11 16:08:51 -0700225 ScopedPthreadMutexLocker locker(&gDebugMutex);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800226
227 _r_debug.r_state = RT_ADD;
228 rtld_db_dlactivity();
229
230 insert_soinfo_into_debug_map(info);
231
232 _r_debug.r_state = RT_CONSISTENT;
233 rtld_db_dlactivity();
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700234}
235
Elliott Hughesbedfe382012-08-14 14:07:59 -0700236static void notify_gdb_of_unload(soinfo* info) {
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700237 if (info->flags & FLAG_EXE) {
238 // GDB already knows about the main executable
239 return;
240 }
241
Elliott Hughes3b297c42012-10-11 16:08:51 -0700242 ScopedPthreadMutexLocker locker(&gDebugMutex);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700243
244 _r_debug.r_state = RT_DELETE;
245 rtld_db_dlactivity();
246
247 remove_soinfo_from_debug_map(info);
248
249 _r_debug.r_state = RT_CONSISTENT;
250 rtld_db_dlactivity();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800251}
252
Elliott Hughes18a206c2012-10-29 17:37:13 -0700253void notify_gdb_of_libraries() {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800254 _r_debug.r_state = RT_ADD;
255 rtld_db_dlactivity();
256 _r_debug.r_state = RT_CONSISTENT;
257 rtld_db_dlactivity();
258}
259
David 'Digit' Turner16084162012-06-12 16:25:37 +0200260static soinfo *soinfo_alloc(const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800261{
Elliott Hughes46882792012-08-03 16:49:39 -0700262 if (strlen(name) >= SOINFO_NAME_LEN) {
263 DL_ERR("library name \"%s\" too long", name);
Doug Kwan94304352009-10-23 18:11:40 -0700264 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800265 }
266
David 'Digit' Turner16084162012-06-12 16:25:37 +0200267 /* The freelist is populated when we call soinfo_free(), which in turn is
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800268 done only by dlclose(), which is not likely to be used.
269 */
270 if (!freelist) {
Elliott Hughes46882792012-08-03 16:49:39 -0700271 if (socount == SO_MAX) {
272 DL_ERR("too many libraries when loading \"%s\"", name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800273 return NULL;
274 }
275 freelist = sopool + socount++;
276 freelist->next = NULL;
277 }
278
Elliott Hughes46882792012-08-03 16:49:39 -0700279 soinfo* si = freelist;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800280 freelist = freelist->next;
281
282 /* Make sure we get a clean block of soinfo */
283 memset(si, 0, sizeof(soinfo));
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100284 strlcpy((char*) si->name, name, sizeof(si->name));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800285 sonext->next = si;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800286 si->next = NULL;
287 si->refcount = 0;
288 sonext = si;
289
290 TRACE("%5d name %s: allocated soinfo @ %p\n", pid, name, si);
291 return si;
292}
293
Elliott Hughes46882792012-08-03 16:49:39 -0700294static void soinfo_free(soinfo* si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800295{
Elliott Hughes46882792012-08-03 16:49:39 -0700296 if (si == NULL) {
297 return;
298 }
299
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800300 soinfo *prev = NULL, *trav;
301
302 TRACE("%5d name %s: freeing soinfo @ %p\n", pid, si->name, si);
303
304 for(trav = solist; trav != NULL; trav = trav->next){
305 if (trav == si)
306 break;
307 prev = trav;
308 }
309 if (trav == NULL) {
310 /* si was not ni solist */
Elliott Hughes46882792012-08-03 16:49:39 -0700311 DL_ERR("name \"%s\" is not in solist!", si->name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800312 return;
313 }
314
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100315 /* prev will never be NULL, because the first entry in solist is
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800316 always the static libdl_info.
317 */
318 prev->next = si->next;
319 if (si == sonext) sonext = prev;
320 si->next = freelist;
321 freelist = si;
322}
323
Elliott Hughes46882792012-08-03 16:49:39 -0700324#ifdef ANDROID_ARM_LINKER
325
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800326/* For a given PC, find the .so that it belongs to.
327 * Returns the base address of the .ARM.exidx section
328 * for that .so, and the number of 8-byte entries
329 * in that section (via *pcount).
330 *
331 * Intended to be called by libc's __gnu_Unwind_Find_exidx().
332 *
Elliott Hughes3b297c42012-10-11 16:08:51 -0700333 * This function is exposed via dlfcn.cpp and libdl.so.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800334 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800335_Unwind_Ptr dl_unwind_find_exidx(_Unwind_Ptr pc, int *pcount)
336{
337 soinfo *si;
338 unsigned addr = (unsigned)pc;
339
Nick Kralevich468319c2011-11-11 15:53:17 -0800340 for (si = solist; si != 0; si = si->next){
341 if ((addr >= si->base) && (addr < (si->base + si->size))) {
342 *pcount = si->ARM_exidx_count;
Ji-Hwan Leef186a182012-05-31 20:20:36 +0900343 return (_Unwind_Ptr)si->ARM_exidx;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800344 }
345 }
346 *pcount = 0;
347 return NULL;
348}
Elliott Hughes46882792012-08-03 16:49:39 -0700349
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700350#elif defined(ANDROID_X86_LINKER) || defined(ANDROID_MIPS_LINKER)
Elliott Hughes46882792012-08-03 16:49:39 -0700351
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800352/* Here, we only have to provide a callback to iterate across all the
353 * loaded libraries. gcc_eh does the rest. */
354int
Elliott Hughesbedfe382012-08-14 14:07:59 -0700355dl_iterate_phdr(int (*cb)(dl_phdr_info *info, size_t size, void *data),
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800356 void *data)
357{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800358 int rv = 0;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700359 for (soinfo* si = solist; si != NULL; si = si->next) {
360 dl_phdr_info dl_info;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800361 dl_info.dlpi_addr = si->linkmap.l_addr;
362 dl_info.dlpi_name = si->linkmap.l_name;
363 dl_info.dlpi_phdr = si->phdr;
364 dl_info.dlpi_phnum = si->phnum;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700365 rv = cb(&dl_info, sizeof(dl_phdr_info), data);
366 if (rv != 0) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800367 break;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700368 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800369 }
370 return rv;
371}
Elliott Hughes46882792012-08-03 16:49:39 -0700372
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800373#endif
374
David 'Digit' Turner16084162012-06-12 16:25:37 +0200375static Elf32_Sym *soinfo_elf_lookup(soinfo *si, unsigned hash, const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800376{
377 Elf32_Sym *s;
378 Elf32_Sym *symtab = si->symtab;
379 const char *strtab = si->strtab;
380 unsigned n;
381
382 TRACE_TYPE(LOOKUP, "%5d SEARCH %s in %s@0x%08x %08x %d\n", pid,
383 name, si->name, si->base, hash, hash % si->nbucket);
384 n = hash % si->nbucket;
385
386 for(n = si->bucket[hash % si->nbucket]; n != 0; n = si->chain[n]){
387 s = symtab + n;
388 if(strcmp(strtab + s->st_name, name)) continue;
389
Doug Kwane8238072009-10-26 12:05:23 -0700390 /* only concern ourselves with global and weak symbol definitions */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800391 switch(ELF32_ST_BIND(s->st_info)){
392 case STB_GLOBAL:
Doug Kwane8238072009-10-26 12:05:23 -0700393 case STB_WEAK:
Robin Burchell439fa8e2012-07-05 09:21:07 +0200394 if(s->st_shndx == SHN_UNDEF)
395 continue;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800396
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800397 TRACE_TYPE(LOOKUP, "%5d FOUND %s in %s (%08x) %d\n", pid,
398 name, si->name, s->st_value, s->st_size);
399 return s;
400 }
401 }
402
Doug Kwan94304352009-10-23 18:11:40 -0700403 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800404}
405
406static unsigned elfhash(const char *_name)
407{
408 const unsigned char *name = (const unsigned char *) _name;
409 unsigned h = 0, g;
410
411 while(*name) {
412 h = (h << 4) + *name++;
413 g = h & 0xf0000000;
414 h ^= g;
415 h ^= g >> 24;
416 }
417 return h;
418}
419
420static Elf32_Sym *
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200421soinfo_do_lookup(soinfo *si, const char *name, soinfo **lsi,
422 soinfo *needed[])
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700423{
Doug Kwan94304352009-10-23 18:11:40 -0700424 unsigned elf_hash = elfhash(name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700425 Elf32_Sym *s = NULL;
Matt Fischer4fd42c12009-12-31 12:09:10 -0600426 int i;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700427
Pavel Chupinc77c4342012-10-31 13:55:51 +0400428 if (si != NULL && somain != NULL) {
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200429
430 /*
Pavel Chupinc77c4342012-10-31 13:55:51 +0400431 * Local scope is executable scope. Just start looking into it right away
432 * for the shortcut.
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200433 */
434
Pavel Chupinc77c4342012-10-31 13:55:51 +0400435 if (si == somain) {
436 s = soinfo_elf_lookup(si, elf_hash, name);
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200437 if (s != NULL) {
Pavel Chupinc77c4342012-10-31 13:55:51 +0400438 *lsi = si;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200439 goto done;
440 }
Pavel Chupinc77c4342012-10-31 13:55:51 +0400441 } else {
442 /* Order of symbol lookup is controlled by DT_SYMBOLIC flag */
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200443
Pavel Chupinc77c4342012-10-31 13:55:51 +0400444 /*
445 * If this object was built with symbolic relocations disabled, the
446 * first place to look to resolve external references is the main
447 * executable.
448 */
Nick Kralevich468319c2011-11-11 15:53:17 -0800449
Pavel Chupinc77c4342012-10-31 13:55:51 +0400450 if (!si->has_DT_SYMBOLIC) {
451 DEBUG("%5d %s: looking up %s in executable %s\n",
452 pid, si->name, name, somain->name);
453 s = soinfo_elf_lookup(somain, elf_hash, name);
454 if (s != NULL) {
455 *lsi = somain;
456 goto done;
457 }
458 }
459
460 /* Look for symbols in the local scope (the object who is
461 * searching). This happens with C++ templates on i386 for some
462 * reason.
463 *
464 * Notes on weak symbols:
465 * The ELF specs are ambiguous about treatment of weak definitions in
466 * dynamic linking. Some systems return the first definition found
467 * and some the first non-weak definition. This is system dependent.
468 * Here we return the first definition found for simplicity. */
469
470 s = soinfo_elf_lookup(si, elf_hash, name);
471 if (s != NULL) {
472 *lsi = si;
473 goto done;
474 }
475
476 /*
477 * If this object was built with -Bsymbolic and symbol is not found
478 * in the local scope, try to find the symbol in the main executable.
479 */
480
481 if (si->has_DT_SYMBOLIC) {
482 DEBUG("%5d %s: looking up %s in executable %s after local scope\n",
483 pid, si->name, name, somain->name);
484 s = soinfo_elf_lookup(somain, elf_hash, name);
485 if (s != NULL) {
486 *lsi = somain;
487 goto done;
488 }
489 }
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200490 }
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700491 }
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700492
Matt Fischer4fd42c12009-12-31 12:09:10 -0600493 /* Next, look for it in the preloads list */
494 for(i = 0; preloads[i] != NULL; i++) {
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200495 s = soinfo_elf_lookup(preloads[i], elf_hash, name);
496 if(s != NULL) {
497 *lsi = preloads[i];
Matt Fischer4fd42c12009-12-31 12:09:10 -0600498 goto done;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200499 }
Matt Fischer4fd42c12009-12-31 12:09:10 -0600500 }
501
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200502 for(i = 0; needed[i] != NULL; i++) {
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200503 DEBUG("%5d %s: looking up %s in %s\n",
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200504 pid, si->name, name, needed[i]->name);
505 s = soinfo_elf_lookup(needed[i], elf_hash, name);
506 if (s != NULL) {
507 *lsi = needed[i];
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200508 goto done;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200509 }
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700510 }
511
512done:
513 if(s != NULL) {
514 TRACE_TYPE(LOOKUP, "%5d si %s sym %s s->st_value = 0x%08x, "
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +0200515 "found in %s, base = 0x%08x, load bias = 0x%08x\n",
Ji-Hwan Leef186a182012-05-31 20:20:36 +0900516 pid, si->name, name, s->st_value,
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200517 (*lsi)->name, (*lsi)->base, (*lsi)->load_bias);
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700518 return s;
519 }
520
Doug Kwan94304352009-10-23 18:11:40 -0700521 return NULL;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700522}
523
524/* This is used by dl_sym(). It performs symbol lookup only within the
525 specified soinfo object and not in any of its dependencies.
526 */
David 'Digit' Turner16084162012-06-12 16:25:37 +0200527Elf32_Sym *soinfo_lookup(soinfo *si, const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800528{
David 'Digit' Turner16084162012-06-12 16:25:37 +0200529 return soinfo_elf_lookup(si, elfhash(name), name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800530}
531
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700532/* This is used by dl_sym(). It performs a global symbol lookup.
533 */
Matt Fischer1698d9e2009-12-31 12:17:56 -0600534Elf32_Sym *lookup(const char *name, soinfo **found, soinfo *start)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800535{
Doug Kwan94304352009-10-23 18:11:40 -0700536 unsigned elf_hash = elfhash(name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800537 Elf32_Sym *s = NULL;
538 soinfo *si;
539
Matt Fischer1698d9e2009-12-31 12:17:56 -0600540 if(start == NULL) {
541 start = solist;
542 }
543
544 for(si = start; (s == NULL) && (si != NULL); si = si->next)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800545 {
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700546 if(si->flags & FLAG_ERROR)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800547 continue;
David 'Digit' Turner16084162012-06-12 16:25:37 +0200548 s = soinfo_elf_lookup(si, elf_hash, name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800549 if (s != NULL) {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -0700550 *found = si;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800551 break;
552 }
553 }
554
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700555 if(s != NULL) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800556 TRACE_TYPE(LOOKUP, "%5d %s s->st_value = 0x%08x, "
557 "si->base = 0x%08x\n", pid, name, s->st_value, si->base);
558 return s;
559 }
560
Doug Kwan94304352009-10-23 18:11:40 -0700561 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800562}
563
Mathias Agopianbda5da02011-09-27 22:30:19 -0700564soinfo *find_containing_library(const void *addr)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600565{
566 soinfo *si;
567
568 for(si = solist; si != NULL; si = si->next)
569 {
570 if((unsigned)addr >= si->base && (unsigned)addr - si->base < si->size) {
571 return si;
572 }
573 }
574
575 return NULL;
576}
577
David 'Digit' Turner16084162012-06-12 16:25:37 +0200578Elf32_Sym *soinfo_find_symbol(soinfo* si, const void *addr)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600579{
580 unsigned int i;
581 unsigned soaddr = (unsigned)addr - si->base;
582
583 /* Search the library's symbol table for any defined symbol which
584 * contains this address */
585 for(i=0; i<si->nchain; i++) {
586 Elf32_Sym *sym = &si->symtab[i];
587
588 if(sym->st_shndx != SHN_UNDEF &&
589 soaddr >= sym->st_value &&
590 soaddr < sym->st_value + sym->st_size) {
591 return sym;
592 }
593 }
594
595 return NULL;
596}
597
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800598#if 0
599static void dump(soinfo *si)
600{
601 Elf32_Sym *s = si->symtab;
602 unsigned n;
603
604 for(n = 0; n < si->nchain; n++) {
605 TRACE("%5d %04d> %08x: %02x %04x %08x %08x %s\n", pid, n, s,
606 s->st_info, s->st_shndx, s->st_value, s->st_size,
607 si->strtab + s->st_name);
608 s++;
609 }
610}
611#endif
612
David 'Digit' Turner16084162012-06-12 16:25:37 +0200613static const char * const sopaths[] = {
Brian Swetlandfedbcde2010-09-19 03:39:13 -0700614 "/vendor/lib",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800615 "/system/lib",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800616 0
617};
618
Elliott Hughesbedfe382012-08-14 14:07:59 -0700619static int _open_lib(const char* name) {
620 // TODO: why not just call open?
621 struct stat sb;
622 if (stat(name, &sb) == -1 || !S_ISREG(sb.st_mode)) {
623 return -1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800624 }
Elliott Hughesbedfe382012-08-14 14:07:59 -0700625 return TEMP_FAILURE_RETRY(open(name, O_RDONLY));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800626}
627
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800628static int open_library(const char *name)
629{
630 int fd;
631 char buf[512];
David 'Digit' Turner16084162012-06-12 16:25:37 +0200632 const char * const*path;
David Bartleybc3a5c22009-06-02 18:27:28 -0700633 int n;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800634
635 TRACE("[ %5d opening %s ]\n", pid, name);
636
637 if(name == 0) return -1;
638 if(strlen(name) > 256) return -1;
639
640 if ((name[0] == '/') && ((fd = _open_lib(name)) >= 0))
641 return fd;
642
David Bartleybc3a5c22009-06-02 18:27:28 -0700643 for (path = ldpaths; *path; path++) {
David 'Digit' Turner5c734642010-01-20 12:36:51 -0800644 n = format_buffer(buf, sizeof(buf), "%s/%s", *path, name);
David Bartleybc3a5c22009-06-02 18:27:28 -0700645 if (n < 0 || n >= (int)sizeof(buf)) {
646 WARN("Ignoring very long library path: %s/%s\n", *path, name);
647 continue;
648 }
649 if ((fd = _open_lib(buf)) >= 0)
650 return fd;
651 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800652 for (path = sopaths; *path; path++) {
David 'Digit' Turner5c734642010-01-20 12:36:51 -0800653 n = format_buffer(buf, sizeof(buf), "%s/%s", *path, name);
David Bartleybc3a5c22009-06-02 18:27:28 -0700654 if (n < 0 || n >= (int)sizeof(buf)) {
655 WARN("Ignoring very long library path: %s/%s\n", *path, name);
656 continue;
657 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800658 if ((fd = _open_lib(buf)) >= 0)
659 return fd;
660 }
661
662 return -1;
663}
664
Elliott Hughes46882792012-08-03 16:49:39 -0700665// Returns 'true' if the library is prelinked or on failure so we error out
666// either way. We no longer support prelinking.
667static bool is_prelinked(int fd, const char* name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800668{
Elliott Hughes46882792012-08-03 16:49:39 -0700669 struct prelink_info_t {
670 long mmap_addr;
671 char tag[4]; // "PRE ".
672 };
673
Elliott Hughesbedfe382012-08-14 14:07:59 -0700674 off_t sz = lseek(fd, -sizeof(prelink_info_t), SEEK_END);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800675 if (sz < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700676 DL_ERR("lseek failed: %s", strerror(errno));
677 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800678 }
679
Elliott Hughesbedfe382012-08-14 14:07:59 -0700680 prelink_info_t info;
Elliott Hughes8dfc0732012-07-27 15:30:51 -0700681 int rc = TEMP_FAILURE_RETRY(read(fd, &info, sizeof(info)));
682 if (rc != sizeof(info)) {
Elliott Hughes46882792012-08-03 16:49:39 -0700683 DL_ERR("could not read prelink_info_t structure for \"%s\":", name, strerror(errno));
684 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800685 }
686
Elliott Hughes46882792012-08-03 16:49:39 -0700687 if (memcmp(info.tag, "PRE ", 4) == 0) {
688 DL_ERR("prelinked libraries no longer supported: %s", name);
689 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800690 }
Elliott Hughes46882792012-08-03 16:49:39 -0700691 return false;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800692}
693
David 'Digit' Turner16084162012-06-12 16:25:37 +0200694/* verify_elf_header
695 * Verifies the content of an ELF header.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800696 *
697 * Args:
698 *
699 * Returns:
700 * 0 on success
701 * -1 if no valid ELF object is found @ base.
702 */
703static int
David 'Digit' Turner16084162012-06-12 16:25:37 +0200704verify_elf_header(const Elf32_Ehdr* hdr)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800705{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800706 if (hdr->e_ident[EI_MAG0] != ELFMAG0) return -1;
707 if (hdr->e_ident[EI_MAG1] != ELFMAG1) return -1;
708 if (hdr->e_ident[EI_MAG2] != ELFMAG2) return -1;
709 if (hdr->e_ident[EI_MAG3] != ELFMAG3) return -1;
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700710 if (hdr->e_type != ET_DYN) return -1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800711
712 /* TODO: Should we verify anything else in the header? */
Zhenghua Wang897815a2011-10-19 00:29:14 +0800713#ifdef ANDROID_ARM_LINKER
714 if (hdr->e_machine != EM_ARM) return -1;
715#elif defined(ANDROID_X86_LINKER)
716 if (hdr->e_machine != EM_386) return -1;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700717#elif defined(ANDROID_MIPS_LINKER)
718 if (hdr->e_machine != EM_MIPS) return -1;
Zhenghua Wang897815a2011-10-19 00:29:14 +0800719#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800720 return 0;
721}
722
Elliott Hughes46882792012-08-03 16:49:39 -0700723struct scoped_fd {
724 ~scoped_fd() {
725 if (fd != -1) {
726 close(fd);
727 }
728 }
729 int fd;
730};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800731
Elliott Hughes46882792012-08-03 16:49:39 -0700732struct soinfo_ptr {
733 soinfo_ptr(const char* name) {
734 const char* bname = strrchr(name, '/');
735 ptr = soinfo_alloc(bname ? bname + 1 : name);
736 }
737 ~soinfo_ptr() {
738 soinfo_free(ptr);
739 }
740 soinfo* release() {
741 soinfo* result = ptr;
742 ptr = NULL;
743 return result;
744 }
745 soinfo* ptr;
746};
747
748// TODO: rewrite linker_phdr.h to use a class, then lose this.
749struct phdr_ptr {
750 phdr_ptr() : phdr_mmap(NULL) {}
751 ~phdr_ptr() {
752 if (phdr_mmap != NULL) {
753 phdr_table_unload(phdr_mmap, phdr_size);
754 }
755 }
756 void* phdr_mmap;
757 Elf32_Addr phdr_size;
758};
759
760static soinfo* load_library(const char* name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800761{
Elliott Hughes46882792012-08-03 16:49:39 -0700762 // Open the file.
763 scoped_fd fd;
764 fd.fd = open_library(name);
765 if (fd.fd == -1) {
766 DL_ERR("library \"%s\" not found", name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800767 return NULL;
Dima Zavin2e855792009-05-20 18:28:09 -0700768 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800769
Elliott Hughes46882792012-08-03 16:49:39 -0700770 // Read the ELF header.
771 Elf32_Ehdr header[1];
772 int ret = TEMP_FAILURE_RETRY(read(fd.fd, (void*)header, sizeof(header)));
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200773 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700774 DL_ERR("can't read file \"%s\": %s", name, strerror(errno));
775 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200776 }
777 if (ret != (int)sizeof(header)) {
Elliott Hughes46882792012-08-03 16:49:39 -0700778 DL_ERR("too small to be an ELF executable: %s", name);
779 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200780 }
781 if (verify_elf_header(header) < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700782 DL_ERR("not a valid ELF executable: %s", name);
783 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800784 }
785
Elliott Hughes46882792012-08-03 16:49:39 -0700786 // Read the program header table.
787 const Elf32_Phdr* phdr_table;
788 phdr_ptr phdr_holder;
789 ret = phdr_table_load(fd.fd, header->e_phoff, header->e_phnum,
790 &phdr_holder.phdr_mmap, &phdr_holder.phdr_size, &phdr_table);
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200791 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700792 DL_ERR("can't load program header table: %s: %s", name, strerror(errno));
793 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200794 }
Elliott Hughes46882792012-08-03 16:49:39 -0700795 size_t phdr_count = header->e_phnum;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200796
Elliott Hughes46882792012-08-03 16:49:39 -0700797 // Get the load extents.
798 Elf32_Addr ext_sz = phdr_table_get_load_size(phdr_table, phdr_count);
799 TRACE("[ %5d - '%s' wants sz=0x%08x ]\n", pid, name, ext_sz);
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200800 if (ext_sz == 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700801 DL_ERR("no loadable segments in file: %s", name);
802 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800803 }
804
Elliott Hughes46882792012-08-03 16:49:39 -0700805 // We no longer support pre-linked libraries.
806 if (is_prelinked(fd.fd, name)) {
807 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200808 }
David 'Digit' Turner16084162012-06-12 16:25:37 +0200809
Elliott Hughes46882792012-08-03 16:49:39 -0700810 // Reserve address space for all loadable segments.
811 void* load_start = NULL;
812 Elf32_Addr load_size = 0;
813 Elf32_Addr load_bias = 0;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200814 ret = phdr_table_reserve_memory(phdr_table,
815 phdr_count,
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200816 &load_start,
817 &load_size,
818 &load_bias);
819 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700820 DL_ERR("can't reserve %d bytes in address space for \"%s\": %s",
821 ext_sz, name, strerror(errno));
822 return NULL;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200823 }
824
825 TRACE("[ %5d allocated memory for %s @ %p (0x%08x) ]\n",
826 pid, name, load_start, load_size);
827
828 /* Map all the segments in our address space with default protections */
829 ret = phdr_table_load_segments(phdr_table,
830 phdr_count,
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200831 load_bias,
Elliott Hughes46882792012-08-03 16:49:39 -0700832 fd.fd);
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200833 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700834 DL_ERR("can't map loadable segments for \"%s\": %s",
835 name, strerror(errno));
836 return NULL;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200837 }
838
Elliott Hughes46882792012-08-03 16:49:39 -0700839 soinfo_ptr si(name);
840 if (si.ptr == NULL) {
841 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800842 }
843
Elliott Hughes46882792012-08-03 16:49:39 -0700844 si.ptr->base = (Elf32_Addr) load_start;
845 si.ptr->size = load_size;
846 si.ptr->load_bias = load_bias;
847 si.ptr->flags = 0;
848 si.ptr->entry = 0;
849 si.ptr->dynamic = (unsigned *)-1;
850 si.ptr->phnum = phdr_count;
851 si.ptr->phdr = phdr_table_get_loaded_phdr(phdr_table, phdr_count, load_bias);
852 if (si.ptr->phdr == NULL) {
853 DL_ERR("can't find loaded PHDR for \"%s\"", name);
854 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200855 }
Elliott Hughes46882792012-08-03 16:49:39 -0700856
857 return si.release();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800858}
859
860static soinfo *
861init_library(soinfo *si)
862{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800863 /* At this point we know that whatever is loaded @ base is a valid ELF
864 * shared library whose segments are properly mapped in. */
865 TRACE("[ %5d init_library base=0x%08x sz=0x%08x name='%s') ]\n",
866 pid, si->base, si->size, si->name);
867
Nick Kralevich5135b3a2012-08-10 21:08:42 -0700868 if(soinfo_link_image(si)) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800869 munmap((void *)si->base, si->size);
870 return NULL;
871 }
872
873 return si;
874}
875
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200876static soinfo *find_loaded_library(const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800877{
878 soinfo *si;
David 'Digit' Turner67748092010-07-21 16:18:21 -0700879 const char *bname;
880
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200881 // TODO: don't use basename only for determining libraries
882 // http://code.google.com/p/android/issues/detail?id=6670
883
884 bname = strrchr(name, '/');
885 bname = bname ? bname + 1 : name;
886
887 for(si = solist; si != NULL; si = si->next){
888 if(!strcmp(bname, si->name)) {
889 return si;
890 }
891 }
892 return NULL;
893}
894
895soinfo *find_library(const char *name)
896{
897 soinfo *si;
898
David 'Digit' Turner67748092010-07-21 16:18:21 -0700899 if (name == NULL)
900 return somain;
David 'Digit' Turner67748092010-07-21 16:18:21 -0700901
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200902 si = find_loaded_library(name);
903 if (si != NULL) {
904 if(si->flags & FLAG_ERROR) {
905 DL_ERR("\"%s\" failed to load previously", name);
Dima Zavin2e855792009-05-20 18:28:09 -0700906 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800907 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200908 if(si->flags & FLAG_LINKED) return si;
909 DL_ERR("OOPS: recursive link to \"%s\"", si->name);
910 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800911 }
912
913 TRACE("[ %5d '%s' has not been loaded yet. Locating...]\n", pid, name);
914 si = load_library(name);
915 if(si == NULL)
916 return NULL;
917 return init_library(si);
918}
919
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800920static void call_destructors(soinfo *si);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700921
922int soinfo_unload(soinfo* si) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800923 if (si->refcount == 1) {
924 TRACE("%5d unloading '%s'\n", pid, si->name);
925 call_destructors(si);
926
Elliott Hughesbedfe382012-08-14 14:07:59 -0700927 for (unsigned* d = si->dynamic; *d; d += 2) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800928 if(d[0] == DT_NEEDED){
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200929 soinfo *lsi = find_loaded_library(si->strtab + d[1]);
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200930 if (lsi) {
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700931 TRACE("%5d %s needs to unload %s\n", pid,
932 si->name, lsi->name);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200933 soinfo_unload(lsi);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700934 } else {
935 // TODO: should we return -1 in this case?
Elliott Hughes46882792012-08-03 16:49:39 -0700936 DL_ERR("\"%s\": could not unload dependent library",
937 si->name);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700938 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800939 }
940 }
941
942 munmap((char *)si->base, si->size);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700943 notify_gdb_of_unload(si);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200944 soinfo_free(si);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800945 si->refcount = 0;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700946 } else {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800947 si->refcount--;
948 PRINT("%5d not unloading '%s', decrementing refcount to %d\n",
949 pid, si->name, si->refcount);
950 }
Elliott Hughesbedfe382012-08-14 14:07:59 -0700951 return 0;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800952}
953
954/* TODO: don't use unsigned for addrs below. It works, but is not
955 * ideal. They should probably be either uint32_t, Elf32_Addr, or unsigned
956 * long.
957 */
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200958static int soinfo_relocate(soinfo *si, Elf32_Rel *rel, unsigned count,
959 soinfo *needed[])
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800960{
961 Elf32_Sym *symtab = si->symtab;
962 const char *strtab = si->strtab;
963 Elf32_Sym *s;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800964 Elf32_Rel *start = rel;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200965 soinfo *lsi;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800966
Elliott Hughes46882792012-08-03 16:49:39 -0700967 for (size_t idx = 0; idx < count; ++idx, ++rel) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800968 unsigned type = ELF32_R_TYPE(rel->r_info);
969 unsigned sym = ELF32_R_SYM(rel->r_info);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +0200970 unsigned reloc = (unsigned)(rel->r_offset + si->load_bias);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800971 unsigned sym_addr = 0;
972 char *sym_name = NULL;
973
974 DEBUG("%5d Processing '%s' relocation at index %d\n", pid,
975 si->name, idx);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700976 if (type == 0) { // R_*_NONE
977 continue;
978 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800979 if(sym != 0) {
Dima Zavind1b40d82009-05-12 10:59:09 -0700980 sym_name = (char *)(strtab + symtab[sym].st_name);
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200981 s = soinfo_do_lookup(si, sym_name, &lsi, needed);
Doug Kwane8238072009-10-26 12:05:23 -0700982 if(s == NULL) {
983 /* We only allow an undefined symbol if this is a weak
984 reference.. */
985 s = &symtab[sym];
986 if (ELF32_ST_BIND(s->st_info) != STB_WEAK) {
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700987 DL_ERR("cannot locate symbol \"%s\" referenced by \"%s\"...", sym_name, si->name);
Doug Kwane8238072009-10-26 12:05:23 -0700988 return -1;
989 }
990
991 /* IHI0044C AAELF 4.5.1.1:
992
993 Libraries are not searched to resolve weak references.
994 It is not an error for a weak reference to remain
995 unsatisfied.
996
997 During linking, the value of an undefined weak reference is:
998 - Zero if the relocation type is absolute
999 - The address of the place if the relocation is pc-relative
Elliott Hughesbedfe382012-08-14 14:07:59 -07001000 - The address of nominal base address if the relocation
Doug Kwane8238072009-10-26 12:05:23 -07001001 type is base-relative.
1002 */
1003
1004 switch (type) {
1005#if defined(ANDROID_ARM_LINKER)
1006 case R_ARM_JUMP_SLOT:
1007 case R_ARM_GLOB_DAT:
1008 case R_ARM_ABS32:
1009 case R_ARM_RELATIVE: /* Don't care. */
Doug Kwane8238072009-10-26 12:05:23 -07001010#elif defined(ANDROID_X86_LINKER)
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001011 case R_386_JMP_SLOT:
Doug Kwane8238072009-10-26 12:05:23 -07001012 case R_386_GLOB_DAT:
1013 case R_386_32:
1014 case R_386_RELATIVE: /* Dont' care. */
1015#endif /* ANDROID_*_LINKER */
1016 /* sym_addr was initialized to be zero above or relocation
1017 code below does not care about value of sym_addr.
1018 No need to do anything. */
1019 break;
1020
1021#if defined(ANDROID_X86_LINKER)
1022 case R_386_PC32:
1023 sym_addr = reloc;
1024 break;
1025#endif /* ANDROID_X86_LINKER */
1026
1027#if defined(ANDROID_ARM_LINKER)
1028 case R_ARM_COPY:
1029 /* Fall through. Can't really copy if weak symbol is
1030 not found in run-time. */
1031#endif /* ANDROID_ARM_LINKER */
1032 default:
Elliott Hughes46882792012-08-03 16:49:39 -07001033 DL_ERR("unknown weak reloc type %d @ %p (%d)",
1034 type, rel, (int) (rel - start));
Doug Kwane8238072009-10-26 12:05:23 -07001035 return -1;
1036 }
1037 } else {
1038 /* We got a definition. */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001039#if 0
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001040 if((base == 0) && (si->base != 0)){
1041 /* linking from libraries to main image is bad */
Elliott Hughes46882792012-08-03 16:49:39 -07001042 DL_ERR("cannot locate \"%s\"...",
1043 strtab + symtab[sym].st_name);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001044 return -1;
1045 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001046#endif
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001047 sym_addr = (unsigned)(s->st_value + lsi->load_bias);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001048 }
Elliott Hughesbedfe382012-08-14 14:07:59 -07001049 count_relocation(kRelocSymbol);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001050 } else {
Doug Kwane8238072009-10-26 12:05:23 -07001051 s = NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001052 }
1053
1054/* TODO: This is ugly. Split up the relocations by arch into
1055 * different files.
1056 */
1057 switch(type){
1058#if defined(ANDROID_ARM_LINKER)
1059 case R_ARM_JUMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001060 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001061 MARK(rel->r_offset);
1062 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1063 reloc, sym_addr, sym_name);
1064 *((unsigned*)reloc) = sym_addr;
1065 break;
1066 case R_ARM_GLOB_DAT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001067 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001068 MARK(rel->r_offset);
1069 TRACE_TYPE(RELO, "%5d RELO GLOB_DAT %08x <- %08x %s\n", pid,
1070 reloc, sym_addr, sym_name);
1071 *((unsigned*)reloc) = sym_addr;
1072 break;
1073 case R_ARM_ABS32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001074 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001075 MARK(rel->r_offset);
1076 TRACE_TYPE(RELO, "%5d RELO ABS %08x <- %08x %s\n", pid,
1077 reloc, sym_addr, sym_name);
1078 *((unsigned*)reloc) += sym_addr;
1079 break;
David 'Digit' Turner34ea5112009-11-17 14:56:26 -08001080 case R_ARM_REL32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001081 count_relocation(kRelocRelative);
David 'Digit' Turner34ea5112009-11-17 14:56:26 -08001082 MARK(rel->r_offset);
1083 TRACE_TYPE(RELO, "%5d RELO REL32 %08x <- %08x - %08x %s\n", pid,
1084 reloc, sym_addr, rel->r_offset, sym_name);
1085 *((unsigned*)reloc) += sym_addr - rel->r_offset;
1086 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001087#elif defined(ANDROID_X86_LINKER)
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001088 case R_386_JMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001089 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001090 MARK(rel->r_offset);
1091 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1092 reloc, sym_addr, sym_name);
1093 *((unsigned*)reloc) = sym_addr;
1094 break;
1095 case R_386_GLOB_DAT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001096 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001097 MARK(rel->r_offset);
1098 TRACE_TYPE(RELO, "%5d RELO GLOB_DAT %08x <- %08x %s\n", pid,
1099 reloc, sym_addr, sym_name);
1100 *((unsigned*)reloc) = sym_addr;
1101 break;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001102#elif defined(ANDROID_MIPS_LINKER)
1103 case R_MIPS_JUMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001104 count_relocation(kRelocAbsolute);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001105 MARK(rel->r_offset);
1106 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1107 reloc, sym_addr, sym_name);
1108 *((unsigned*)reloc) = sym_addr;
1109 break;
1110 case R_MIPS_REL32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001111 count_relocation(kRelocAbsolute);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001112 MARK(rel->r_offset);
1113 TRACE_TYPE(RELO, "%5d RELO REL32 %08x <- %08x %s\n", pid,
1114 reloc, sym_addr, (sym_name) ? sym_name : "*SECTIONHDR*");
1115 if (s) {
1116 *((unsigned*)reloc) += sym_addr;
1117 } else {
1118 *((unsigned*)reloc) += si->base;
1119 }
1120 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001121#endif /* ANDROID_*_LINKER */
1122
1123#if defined(ANDROID_ARM_LINKER)
1124 case R_ARM_RELATIVE:
1125#elif defined(ANDROID_X86_LINKER)
1126 case R_386_RELATIVE:
1127#endif /* ANDROID_*_LINKER */
Elliott Hughesbedfe382012-08-14 14:07:59 -07001128 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001129 MARK(rel->r_offset);
Elliott Hughes46882792012-08-03 16:49:39 -07001130 if (sym) {
1131 DL_ERR("odd RELATIVE form...", pid);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001132 return -1;
1133 }
1134 TRACE_TYPE(RELO, "%5d RELO RELATIVE %08x <- +%08x\n", pid,
1135 reloc, si->base);
1136 *((unsigned*)reloc) += si->base;
1137 break;
1138
1139#if defined(ANDROID_X86_LINKER)
1140 case R_386_32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001141 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001142 MARK(rel->r_offset);
1143
1144 TRACE_TYPE(RELO, "%5d RELO R_386_32 %08x <- +%08x %s\n", pid,
1145 reloc, sym_addr, sym_name);
1146 *((unsigned *)reloc) += (unsigned)sym_addr;
1147 break;
1148
1149 case R_386_PC32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001150 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001151 MARK(rel->r_offset);
1152 TRACE_TYPE(RELO, "%5d RELO R_386_PC32 %08x <- "
1153 "+%08x (%08x - %08x) %s\n", pid, reloc,
1154 (sym_addr - reloc), sym_addr, reloc, sym_name);
1155 *((unsigned *)reloc) += (unsigned)(sym_addr - reloc);
1156 break;
1157#endif /* ANDROID_X86_LINKER */
1158
1159#ifdef ANDROID_ARM_LINKER
1160 case R_ARM_COPY:
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001161 if ((si->flags & FLAG_EXE) == 0) {
1162 /*
1163 * http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044d/IHI0044D_aaelf.pdf
1164 *
1165 * Section 4.7.1.10 "Dynamic relocations"
1166 * R_ARM_COPY may only appear in executable objects where e_type is
1167 * set to ET_EXEC.
1168 *
1169 * TODO: FLAG_EXE is set for both ET_DYN and ET_EXEC executables.
1170 * We should explicitly disallow ET_DYN executables from having
1171 * R_ARM_COPY relocations.
1172 */
1173 DL_ERR("%s R_ARM_COPY relocations only supported for ET_EXEC", si->name);
1174 return -1;
1175 }
Elliott Hughesbedfe382012-08-14 14:07:59 -07001176 count_relocation(kRelocCopy);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001177 MARK(rel->r_offset);
1178 TRACE_TYPE(RELO, "%5d RELO %08x <- %d @ %08x %s\n", pid,
1179 reloc, s->st_size, sym_addr, sym_name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001180 if (reloc == sym_addr) {
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001181 Elf32_Sym *src = soinfo_do_lookup(NULL, sym_name, &lsi, needed);
1182
1183 if (src == NULL) {
1184 DL_ERR("%s R_ARM_COPY relocation source cannot be resolved", si->name);
1185 return -1;
1186 }
1187 if (lsi->has_DT_SYMBOLIC) {
1188 DL_ERR("%s invalid R_ARM_COPY relocation against DT_SYMBOLIC shared "
1189 "library %s (built with -Bsymbolic?)", si->name, lsi->name);
1190 return -1;
1191 }
1192 if (s->st_size < src->st_size) {
1193 DL_ERR("%s R_ARM_COPY relocation size mismatch (%d < %d)",
1194 si->name, s->st_size, src->st_size);
1195 return -1;
1196 }
1197 memcpy((void*)reloc, (void*)(src->st_value + lsi->load_bias), src->st_size);
1198 } else {
1199 DL_ERR("%s R_ARM_COPY relocation target cannot be resolved", si->name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001200 return -1;
1201 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001202 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001203#endif /* ANDROID_ARM_LINKER */
1204
1205 default:
Elliott Hughes46882792012-08-03 16:49:39 -07001206 DL_ERR("unknown reloc type %d @ %p (%d)",
1207 type, rel, (int) (rel - start));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001208 return -1;
1209 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001210 }
1211 return 0;
1212}
1213
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001214#ifdef ANDROID_MIPS_LINKER
Elliott Hughesbedfe382012-08-14 14:07:59 -07001215static int mips_relocate_got(soinfo* si, soinfo* needed[]) {
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001216 unsigned *got;
1217 unsigned local_gotno, gotsym, symtabno;
1218 Elf32_Sym *symtab, *sym;
1219 unsigned g;
1220
1221 got = si->plt_got;
1222 local_gotno = si->mips_local_gotno;
1223 gotsym = si->mips_gotsym;
1224 symtabno = si->mips_symtabno;
1225 symtab = si->symtab;
1226
1227 /*
1228 * got[0] is address of lazy resolver function
1229 * got[1] may be used for a GNU extension
Elliott Hughesbedfe382012-08-14 14:07:59 -07001230 * set it to a recognizable address in case someone calls it
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001231 * (should be _rtld_bind_start)
1232 * FIXME: maybe this should be in a separate routine
1233 */
1234
1235 if ((si->flags & FLAG_LINKER) == 0) {
1236 g = 0;
1237 got[g++] = 0xdeadbeef;
1238 if (got[g] & 0x80000000) {
1239 got[g++] = 0xdeadfeed;
1240 }
1241 /*
1242 * Relocate the local GOT entries need to be relocated
1243 */
1244 for (; g < local_gotno; g++) {
1245 got[g] += si->load_bias;
1246 }
1247 }
1248
1249 /* Now for the global GOT entries */
1250 sym = symtab + gotsym;
1251 got = si->plt_got + local_gotno;
1252 for (g = gotsym; g < symtabno; g++, sym++, got++) {
1253 const char *sym_name;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001254 Elf32_Sym *s;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001255 soinfo *lsi;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001256
1257 /* This is an undefined reference... try to locate it */
1258 sym_name = si->strtab + sym->st_name;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001259 s = soinfo_do_lookup(si, sym_name, &lsi, needed);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001260 if (s == NULL) {
1261 /* We only allow an undefined symbol if this is a weak
1262 reference.. */
1263 s = &symtab[g];
1264 if (ELF32_ST_BIND(s->st_info) != STB_WEAK) {
Elliott Hughes46882792012-08-03 16:49:39 -07001265 DL_ERR("cannot locate \"%s\"...", sym_name);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001266 return -1;
1267 }
1268 *got = 0;
1269 }
1270 else {
1271 /* FIXME: is this sufficient?
1272 * For reference see NetBSD link loader
1273 * http://cvsweb.netbsd.org/bsdweb.cgi/src/libexec/ld.elf_so/arch/mips/mips_reloc.c?rev=1.53&content-type=text/x-cvsweb-markup
1274 */
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001275 *got = lsi->load_bias + s->st_value;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001276 }
1277 }
1278 return 0;
1279}
1280#endif
1281
David 'Digit' Turner82156792009-05-18 14:37:41 +02001282/* Please read the "Initialization and Termination functions" functions.
1283 * of the linker design note in bionic/linker/README.TXT to understand
1284 * what the following code is doing.
1285 *
1286 * The important things to remember are:
1287 *
1288 * DT_PREINIT_ARRAY must be called first for executables, and should
1289 * not appear in shared libraries.
1290 *
1291 * DT_INIT should be called before DT_INIT_ARRAY if both are present
1292 *
1293 * DT_FINI should be called after DT_FINI_ARRAY if both are present
1294 *
1295 * DT_FINI_ARRAY must be parsed in reverse order.
1296 */
1297
1298static void call_array(unsigned *ctor, int count, int reverse)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001299{
David 'Digit' Turner82156792009-05-18 14:37:41 +02001300 int n, inc = 1;
1301
1302 if (reverse) {
1303 ctor += (count-1);
1304 inc = -1;
1305 }
1306
1307 for(n = count; n > 0; n--) {
1308 TRACE("[ %5d Looking at %s *0x%08x == 0x%08x ]\n", pid,
1309 reverse ? "dtor" : "ctor",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001310 (unsigned)ctor, (unsigned)*ctor);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001311 void (*func)() = (void (*)()) *ctor;
1312 ctor += inc;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001313 if(((int) func == 0) || ((int) func == -1)) continue;
1314 TRACE("[ %5d Calling func @ 0x%08x ]\n", pid, (unsigned)func);
1315 func();
1316 }
1317}
1318
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001319static void soinfo_call_preinit_constructors(soinfo *si)
1320{
1321 TRACE("[ %5d Calling preinit_array @ 0x%08x [%d] for '%s' ]\n",
1322 pid, (unsigned)si->preinit_array, si->preinit_array_count,
1323 si->name);
1324 call_array(si->preinit_array, si->preinit_array_count, 0);
1325 TRACE("[ %5d Done calling preinit_array for '%s' ]\n", pid, si->name);
1326}
1327
David 'Digit' Turner16084162012-06-12 16:25:37 +02001328void soinfo_call_constructors(soinfo *si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001329{
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001330 if (si->constructors_called)
1331 return;
1332
Jesse Hallf5d16932012-01-30 15:39:57 -08001333 // Set this before actually calling the constructors, otherwise it doesn't
1334 // protect against recursive constructor calls. One simple example of
1335 // constructor recursion is the libc debug malloc, which is implemented in
1336 // libc_malloc_debug_leak.so:
1337 // 1. The program depends on libc, so libc's constructor is called here.
1338 // 2. The libc constructor calls dlopen() to load libc_malloc_debug_leak.so.
David 'Digit' Turner16084162012-06-12 16:25:37 +02001339 // 3. dlopen() calls soinfo_call_constructors() with the newly created
Jesse Hallf5d16932012-01-30 15:39:57 -08001340 // soinfo for libc_malloc_debug_leak.so.
David 'Digit' Turner16084162012-06-12 16:25:37 +02001341 // 4. The debug so depends on libc, so soinfo_call_constructors() is
Jesse Hallf5d16932012-01-30 15:39:57 -08001342 // called again with the libc soinfo. If it doesn't trigger the early-
1343 // out above, the libc constructor will be called again (recursively!).
1344 si->constructors_called = 1;
1345
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001346 if (!(si->flags & FLAG_EXE) && si->preinit_array) {
1347 DL_ERR("shared library \"%s\" has a preinit_array table @ 0x%08x. "
1348 "This is INVALID.", si->name, (unsigned) si->preinit_array);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001349 }
1350
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001351 if (si->dynamic) {
1352 unsigned *d;
1353 for(d = si->dynamic; *d; d += 2) {
1354 if(d[0] == DT_NEEDED){
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001355 soinfo* lsi = find_loaded_library(si->strtab + d[1]);
1356 if (!lsi) {
1357 DL_ERR("\"%s\": could not initialize dependent library",
1358 si->name);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001359 } else {
David 'Digit' Turner16084162012-06-12 16:25:37 +02001360 soinfo_call_constructors(lsi);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001361 }
1362 }
1363 }
1364 }
1365
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001366 if (si->init_func) {
1367 TRACE("[ %5d Calling init_func @ 0x%08x for '%s' ]\n", pid,
1368 (unsigned)si->init_func, si->name);
1369 si->init_func();
1370 TRACE("[ %5d Done calling init_func for '%s' ]\n", pid, si->name);
1371 }
1372
1373 if (si->init_array) {
1374 TRACE("[ %5d Calling init_array @ 0x%08x [%d] for '%s' ]\n", pid,
1375 (unsigned)si->init_array, si->init_array_count, si->name);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001376 call_array(si->init_array, si->init_array_count, 0);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001377 TRACE("[ %5d Done calling init_array for '%s' ]\n", pid, si->name);
1378 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001379
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001380}
David 'Digit' Turner82156792009-05-18 14:37:41 +02001381
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001382static void call_destructors(soinfo *si)
1383{
1384 if (si->fini_array) {
1385 TRACE("[ %5d Calling fini_array @ 0x%08x [%d] for '%s' ]\n", pid,
1386 (unsigned)si->fini_array, si->fini_array_count, si->name);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001387 call_array(si->fini_array, si->fini_array_count, 1);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001388 TRACE("[ %5d Done calling fini_array for '%s' ]\n", pid, si->name);
1389 }
1390
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001391 if (si->fini_func) {
1392 TRACE("[ %5d Calling fini_func @ 0x%08x for '%s' ]\n", pid,
1393 (unsigned)si->fini_func, si->name);
1394 si->fini_func();
1395 TRACE("[ %5d Done calling fini_func for '%s' ]\n", pid, si->name);
1396 }
1397}
1398
1399/* Force any of the closed stdin, stdout and stderr to be associated with
1400 /dev/null. */
Elliott Hughes5419b942012-10-16 15:54:46 -07001401static int nullify_closed_stdio() {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001402 int dev_null, i, status;
1403 int return_value = 0;
1404
David 'Digit' Turner16084162012-06-12 16:25:37 +02001405 dev_null = TEMP_FAILURE_RETRY(open("/dev/null", O_RDWR));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001406 if (dev_null < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001407 DL_ERR("cannot open /dev/null: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001408 return -1;
1409 }
1410 TRACE("[ %5d Opened /dev/null file-descriptor=%d]\n", pid, dev_null);
1411
1412 /* If any of the stdio file descriptors is valid and not associated
1413 with /dev/null, dup /dev/null to it. */
1414 for (i = 0; i < 3; i++) {
1415 /* If it is /dev/null already, we are done. */
Elliott Hughes46882792012-08-03 16:49:39 -07001416 if (i == dev_null) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001417 continue;
Elliott Hughes46882792012-08-03 16:49:39 -07001418 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001419
1420 TRACE("[ %5d Nullifying stdio file descriptor %d]\n", pid, i);
Elliott Hughes46882792012-08-03 16:49:39 -07001421 status = TEMP_FAILURE_RETRY(fcntl(i, F_GETFL));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001422
Elliott Hughes46882792012-08-03 16:49:39 -07001423 /* If file is opened, we are good. */
1424 if (status != -1) {
1425 continue;
1426 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001427
1428 /* The only error we allow is that the file descriptor does not
1429 exist, in which case we dup /dev/null to it. */
1430 if (errno != EBADF) {
Elliott Hughes46882792012-08-03 16:49:39 -07001431 DL_ERR("fcntl failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001432 return_value = -1;
1433 continue;
1434 }
1435
1436 /* Try dupping /dev/null to this stdio file descriptor and
1437 repeat if there is a signal. Note that any errors in closing
1438 the stdio descriptor are lost. */
Elliott Hughes46882792012-08-03 16:49:39 -07001439 status = TEMP_FAILURE_RETRY(dup2(dev_null, i));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001440 if (status < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001441 DL_ERR("dup2 failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001442 return_value = -1;
1443 continue;
1444 }
1445 }
1446
1447 /* If /dev/null is not one of the stdio file descriptors, close it. */
1448 if (dev_null > 2) {
1449 TRACE("[ %5d Closing /dev/null file-descriptor=%d]\n", pid, dev_null);
Elliott Hughes46882792012-08-03 16:49:39 -07001450 status = TEMP_FAILURE_RETRY(close(dev_null));
1451 if (status == -1) {
1452 DL_ERR("close failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001453 return_value = -1;
1454 }
1455 }
1456
1457 return return_value;
1458}
1459
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001460static int soinfo_link_image(soinfo *si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001461{
1462 unsigned *d;
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001463 /* "base" might wrap around UINT32_MAX. */
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001464 Elf32_Addr base = si->load_bias;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001465 const Elf32_Phdr *phdr = si->phdr;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001466 int phnum = si->phnum;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001467 int relocating_linker = (si->flags & FLAG_LINKER) != 0;
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001468 soinfo **needed, **pneeded;
1469 size_t dynamic_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001470
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001471 /* We can't debug anything until the linker is relocated */
1472 if (!relocating_linker) {
1473 INFO("[ %5d linking %s ]\n", pid, si->name);
1474 DEBUG("%5d si->base = 0x%08x si->flags = 0x%08x\n", pid,
1475 si->base, si->flags);
1476 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001477
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001478 /* Extract dynamic section */
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001479 phdr_table_get_dynamic_section(phdr, phnum, base, &si->dynamic,
1480 &dynamic_count);
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001481 if (si->dynamic == NULL) {
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001482 if (!relocating_linker) {
Elliott Hughes46882792012-08-03 16:49:39 -07001483 DL_ERR("missing PT_DYNAMIC?!");
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001484 }
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001485 goto fail;
1486 } else {
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001487 if (!relocating_linker) {
1488 DEBUG("%5d dynamic = %p\n", pid, si->dynamic);
1489 }
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001490 }
1491
1492#ifdef ANDROID_ARM_LINKER
1493 (void) phdr_table_get_arm_exidx(phdr, phnum, base,
1494 &si->ARM_exidx, &si->ARM_exidx_count);
1495#endif
1496
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001497 /* extract useful information from dynamic section */
1498 for(d = si->dynamic; *d; d++){
1499 DEBUG("%5d d = %p, d[0] = 0x%08x d[1] = 0x%08x\n", pid, d, d[0], d[1]);
1500 switch(*d++){
1501 case DT_HASH:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001502 si->nbucket = ((unsigned *) (base + *d))[0];
1503 si->nchain = ((unsigned *) (base + *d))[1];
1504 si->bucket = (unsigned *) (base + *d + 8);
1505 si->chain = (unsigned *) (base + *d + 8 + si->nbucket * 4);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001506 break;
1507 case DT_STRTAB:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001508 si->strtab = (const char *) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001509 break;
1510 case DT_SYMTAB:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001511 si->symtab = (Elf32_Sym *) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001512 break;
1513 case DT_PLTREL:
1514 if(*d != DT_REL) {
Erik Gillingd00d23a2009-07-22 17:06:11 -07001515 DL_ERR("DT_RELA not supported");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001516 goto fail;
1517 }
1518 break;
1519 case DT_JMPREL:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001520 si->plt_rel = (Elf32_Rel*) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001521 break;
1522 case DT_PLTRELSZ:
1523 si->plt_rel_count = *d / 8;
1524 break;
1525 case DT_REL:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001526 si->rel = (Elf32_Rel*) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001527 break;
1528 case DT_RELSZ:
1529 si->rel_count = *d / 8;
1530 break;
1531 case DT_PLTGOT:
1532 /* Save this in case we decide to do lazy binding. We don't yet. */
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001533 si->plt_got = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001534 break;
1535 case DT_DEBUG:
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001536#if !defined(ANDROID_MIPS_LINKER)
Elliott Hughesbedfe382012-08-14 14:07:59 -07001537 // Set the DT_DEBUG entry to the address of _r_debug for GDB
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001538 *d = (int) &_r_debug;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001539#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001540 break;
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +09001541 case DT_RELA:
Elliott Hughes46882792012-08-03 16:49:39 -07001542 DL_ERR("DT_RELA not supported");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001543 goto fail;
1544 case DT_INIT:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001545 si->init_func = (void (*)(void))(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001546 DEBUG("%5d %s constructors (init func) found at %p\n",
1547 pid, si->name, si->init_func);
1548 break;
1549 case DT_FINI:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001550 si->fini_func = (void (*)(void))(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001551 DEBUG("%5d %s destructors (fini func) found at %p\n",
1552 pid, si->name, si->fini_func);
1553 break;
1554 case DT_INIT_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001555 si->init_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001556 DEBUG("%5d %s constructors (init_array) found at %p\n",
1557 pid, si->name, si->init_array);
1558 break;
1559 case DT_INIT_ARRAYSZ:
1560 si->init_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1561 break;
1562 case DT_FINI_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001563 si->fini_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001564 DEBUG("%5d %s destructors (fini_array) found at %p\n",
1565 pid, si->name, si->fini_array);
1566 break;
1567 case DT_FINI_ARRAYSZ:
1568 si->fini_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1569 break;
1570 case DT_PREINIT_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001571 si->preinit_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001572 DEBUG("%5d %s constructors (preinit_array) found at %p\n",
1573 pid, si->name, si->preinit_array);
1574 break;
1575 case DT_PREINIT_ARRAYSZ:
1576 si->preinit_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1577 break;
1578 case DT_TEXTREL:
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001579 si->has_text_relocations = true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001580 break;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001581 case DT_SYMBOLIC:
1582 si->has_DT_SYMBOLIC = true;
1583 break;
1584#if defined(DT_FLAGS)
1585 case DT_FLAGS:
1586 if (*d & DF_TEXTREL) {
1587 si->has_text_relocations = true;
1588 }
1589 if (*d & DF_SYMBOLIC) {
1590 si->has_DT_SYMBOLIC = true;
1591 }
1592 break;
1593#endif
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001594#if defined(ANDROID_MIPS_LINKER)
1595 case DT_NEEDED:
1596 case DT_STRSZ:
1597 case DT_SYMENT:
1598 case DT_RELENT:
1599 break;
1600 case DT_MIPS_RLD_MAP:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001601 // Set the DT_MIPS_RLD_MAP entry to the address of _r_debug for GDB.
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001602 {
Elliott Hughesbedfe382012-08-14 14:07:59 -07001603 r_debug** dp = (r_debug**) *d;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001604 *dp = &_r_debug;
1605 }
1606 break;
1607 case DT_MIPS_RLD_VERSION:
1608 case DT_MIPS_FLAGS:
1609 case DT_MIPS_BASE_ADDRESS:
1610 case DT_MIPS_UNREFEXTNO:
1611 case DT_MIPS_RWPLT:
1612 break;
1613
1614 case DT_MIPS_PLTGOT:
1615#if 0
1616 /* not yet... */
1617 si->mips_pltgot = (unsigned *)(si->base + *d);
1618#endif
1619 break;
1620
1621 case DT_MIPS_SYMTABNO:
1622 si->mips_symtabno = *d;
1623 break;
1624
1625 case DT_MIPS_LOCAL_GOTNO:
1626 si->mips_local_gotno = *d;
1627 break;
1628
1629 case DT_MIPS_GOTSYM:
1630 si->mips_gotsym = *d;
1631 break;
1632
1633 default:
1634 DEBUG("%5d Unused DT entry: type 0x%08x arg 0x%08x\n",
1635 pid, d[-1], d[0]);
1636 break;
1637#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001638 }
1639 }
1640
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001641 DEBUG("%5d si->base = 0x%08x, si->strtab = %p, si->symtab = %p\n",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001642 pid, si->base, si->strtab, si->symtab);
1643
1644 if((si->strtab == 0) || (si->symtab == 0)) {
Elliott Hughes46882792012-08-03 16:49:39 -07001645 DL_ERR("missing essential tables");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001646 goto fail;
1647 }
1648
Matt Fischer4fd42c12009-12-31 12:09:10 -06001649 /* if this is the main executable, then load all of the preloads now */
1650 if(si->flags & FLAG_EXE) {
1651 int i;
1652 memset(preloads, 0, sizeof(preloads));
1653 for(i = 0; ldpreload_names[i] != NULL; i++) {
1654 soinfo *lsi = find_library(ldpreload_names[i]);
1655 if(lsi == 0) {
1656 strlcpy(tmp_err_buf, linker_get_error(), sizeof(tmp_err_buf));
Elliott Hughes46882792012-08-03 16:49:39 -07001657 DL_ERR("could not load library \"%s\" needed by \"%s\"; caused by %s",
1658 ldpreload_names[i], si->name, tmp_err_buf);
Matt Fischer4fd42c12009-12-31 12:09:10 -06001659 goto fail;
1660 }
1661 lsi->refcount++;
1662 preloads[i] = lsi;
1663 }
1664 }
1665
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001666 /* dynamic_count is an upper bound for the number of needed libs */
1667 pneeded = needed = (soinfo**) alloca((1 + dynamic_count) * sizeof(soinfo*));
1668
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001669 for(d = si->dynamic; *d; d += 2) {
1670 if(d[0] == DT_NEEDED){
1671 DEBUG("%5d %s needs %s\n", pid, si->name, si->strtab + d[1]);
Dima Zavin2e855792009-05-20 18:28:09 -07001672 soinfo *lsi = find_library(si->strtab + d[1]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001673 if(lsi == 0) {
Dima Zavin03531952009-05-29 17:30:25 -07001674 strlcpy(tmp_err_buf, linker_get_error(), sizeof(tmp_err_buf));
Elliott Hughes46882792012-08-03 16:49:39 -07001675 DL_ERR("could not load library \"%s\" needed by \"%s\"; caused by %s",
1676 si->strtab + d[1], si->name, tmp_err_buf);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001677 goto fail;
1678 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001679 *pneeded++ = lsi;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001680 lsi->refcount++;
1681 }
1682 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001683 *pneeded = NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001684
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001685 if (si->has_text_relocations) {
1686 /* Unprotect the segments, i.e. make them writable, to allow
1687 * text relocations to work properly. We will later call
1688 * phdr_table_protect_segments() after all of them are applied
1689 * and all constructors are run.
1690 */
1691 if (phdr_table_unprotect_segments(si->phdr, si->phnum, si->load_bias) < 0) {
1692 DL_ERR("can't unprotect loadable segments for \"%s\": %s",
1693 si->name, strerror(errno));
1694 goto fail;
1695 }
1696 }
1697
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001698 if(si->plt_rel) {
1699 DEBUG("[ %5d relocating %s plt ]\n", pid, si->name );
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001700 if(soinfo_relocate(si, si->plt_rel, si->plt_rel_count, needed))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001701 goto fail;
1702 }
1703 if(si->rel) {
1704 DEBUG("[ %5d relocating %s ]\n", pid, si->name );
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001705 if(soinfo_relocate(si, si->rel, si->rel_count, needed))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001706 goto fail;
1707 }
1708
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001709#ifdef ANDROID_MIPS_LINKER
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001710 if(mips_relocate_got(si, needed)) {
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001711 goto fail;
1712 }
1713#endif
1714
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001715 si->flags |= FLAG_LINKED;
1716 DEBUG("[ %5d finished linking %s ]\n", pid, si->name);
1717
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001718 if (si->has_text_relocations) {
1719 /* All relocations are done, we can protect our segments back to
1720 * read-only. */
1721 if (phdr_table_protect_segments(si->phdr, si->phnum, si->load_bias) < 0) {
1722 DL_ERR("can't protect segments for \"%s\": %s",
1723 si->name, strerror(errno));
1724 goto fail;
1725 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001726 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001727
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001728 /* We can also turn on GNU RELRO protection */
1729 if (phdr_table_protect_gnu_relro(si->phdr, si->phnum, si->load_bias) < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001730 DL_ERR("can't enable GNU RELRO protection for \"%s\": %s",
1731 si->name, strerror(errno));
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001732 goto fail;
Nick Kralevich9ec0f032012-02-28 10:40:00 -08001733 }
1734
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001735 /* If this is a SET?ID program, dup /dev/null to opened stdin,
1736 stdout and stderr to close a security hole described in:
1737
1738 ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-02:23.stdio.asc
1739
1740 */
Elliott Hughes18a206c2012-10-29 17:37:13 -07001741 if (get_AT_SECURE()) {
Elliott Hughes46882792012-08-03 16:49:39 -07001742 nullify_closed_stdio();
1743 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001744 notify_gdb_of_load(si);
1745 return 0;
1746
1747fail:
Dima Zavina7161902010-08-17 15:56:40 -07001748 ERROR("failed to link %s\n", si->name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001749 si->flags |= FLAG_ERROR;
1750 return -1;
1751}
1752
Elliott Hughes46882792012-08-03 16:49:39 -07001753static void parse_path(const char* path, const char* delimiters,
1754 const char** array, char* buf, size_t buf_size, size_t max_count)
David Bartleybc3a5c22009-06-02 18:27:28 -07001755{
Elliott Hughes46882792012-08-03 16:49:39 -07001756 if (path == NULL) {
1757 return;
David Bartleybc3a5c22009-06-02 18:27:28 -07001758 }
1759
Elliott Hughes46882792012-08-03 16:49:39 -07001760 size_t len = strlcpy(buf, path, buf_size);
David Bartleybc3a5c22009-06-02 18:27:28 -07001761
Elliott Hughes46882792012-08-03 16:49:39 -07001762 size_t i = 0;
1763 char* buf_p = buf;
1764 while (i < max_count && (array[i] = strsep(&buf_p, delimiters))) {
1765 if (*array[i] != '\0') {
Matt Fischer4fd42c12009-12-31 12:09:10 -06001766 ++i;
1767 }
1768 }
1769
Elliott Hughes46882792012-08-03 16:49:39 -07001770 // Forget the last path if we had to truncate; this occurs if the 2nd to
1771 // last char isn't '\0' (i.e. wasn't originally a delimiter).
1772 if (i > 0 && len >= buf_size && buf[buf_size - 2] != '\0') {
1773 array[i - 1] = NULL;
Matt Fischer4fd42c12009-12-31 12:09:10 -06001774 } else {
Elliott Hughes46882792012-08-03 16:49:39 -07001775 array[i] = NULL;
Matt Fischer4fd42c12009-12-31 12:09:10 -06001776 }
1777}
1778
Elliott Hughes46882792012-08-03 16:49:39 -07001779static void parse_LD_LIBRARY_PATH(const char* path) {
1780 parse_path(path, ":", ldpaths,
1781 ldpaths_buf, sizeof(ldpaths_buf), LDPATH_MAX);
1782}
1783
1784static void parse_LD_PRELOAD(const char* path) {
1785 // We have historically supported ':' as well as ' ' in LD_PRELOAD.
1786 parse_path(path, " :", ldpreload_names,
1787 ldpreloads_buf, sizeof(ldpreloads_buf), LDPRELOAD_MAX);
1788}
1789
Nick Kralevich468319c2011-11-11 15:53:17 -08001790/*
1791 * This code is called after the linker has linked itself and
1792 * fixed it's own GOT. It is safe to make references to externs
1793 * and other non-local data at this point.
1794 */
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001795static unsigned __linker_init_post_relocation(unsigned **elfdata, unsigned linker_base)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001796{
1797 static soinfo linker_soinfo;
1798
1799 int argc = (int) *elfdata;
1800 char **argv = (char**) (elfdata + 1);
Stephen Smalleybb440552012-01-20 10:59:15 -08001801 unsigned *vecs = (unsigned*) (argv + argc + 1);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001802
David 'Digit' Turneref0bd182009-07-17 17:55:01 +02001803 /* NOTE: we store the elfdata pointer on a special location
1804 * of the temporary TLS area in order to pass it to
1805 * the C Library's runtime initializer.
1806 *
1807 * The initializer must clear the slot and reset the TLS
1808 * to point to a different location to ensure that no other
1809 * shared library constructor can access it.
1810 */
Evgeniy Stepanov1a78fbb2012-03-22 18:01:53 +04001811 __libc_init_tls(elfdata);
1812
1813 pid = getpid();
1814
1815#if TIMING
1816 struct timeval t0, t1;
1817 gettimeofday(&t0, 0);
1818#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001819
Elliott Hughes18a206c2012-10-29 17:37:13 -07001820 // Initialize environment functions, and get to the ELF aux vectors table.
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001821 vecs = linker_env_init(vecs);
1822
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001823 debugger_init();
1824
Elliott Hughes18a206c2012-10-29 17:37:13 -07001825 // Get a few environment variables.
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -07001826#if LINKER_DEBUG
Elliott Hughes18a206c2012-10-29 17:37:13 -07001827 {
1828 const char* env = linker_env_get("LD_DEBUG");
1829 if (env != NULL) {
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001830 debug_verbosity = atoi(env);
Elliott Hughes18a206c2012-10-29 17:37:13 -07001831 }
1832 }
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -07001833#endif
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001834
Elliott Hughes18a206c2012-10-29 17:37:13 -07001835 // Normally, these are cleaned by linker_env_init, but the test
1836 // doesn't cost us anything.
1837 const char* ldpath_env = NULL;
1838 const char* ldpreload_env = NULL;
1839 if (!get_AT_SECURE()) {
1840 ldpath_env = linker_env_get("LD_LIBRARY_PATH");
1841 ldpreload_env = linker_env_get("LD_PRELOAD");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001842 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001843
1844 INFO("[ android linker & debugger ]\n");
1845 DEBUG("%5d elfdata @ 0x%08x\n", pid, (unsigned)elfdata);
1846
Elliott Hughes18a206c2012-10-29 17:37:13 -07001847 soinfo* si = soinfo_alloc(argv[0]);
1848 if (si == NULL) {
1849 exit(EXIT_FAILURE);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001850 }
1851
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001852 /* bootstrap the link map, the main exe always needs to be first */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001853 si->flags |= FLAG_EXE;
Elliott Hughesbedfe382012-08-14 14:07:59 -07001854 link_map* map = &(si->linkmap);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001855
1856 map->l_addr = 0;
1857 map->l_name = argv[0];
1858 map->l_prev = NULL;
1859 map->l_next = NULL;
1860
1861 _r_debug.r_map = map;
1862 r_debug_tail = map;
1863
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001864 /* gdb expects the linker to be in the debug shared object list.
1865 * Without this, gdb has trouble locating the linker's ".text"
1866 * and ".plt" sections. Gdb could also potentially use this to
1867 * relocate the offset of our exported 'rtld_db_dlactivity' symbol.
1868 * Don't use soinfo_alloc(), because the linker shouldn't
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001869 * be on the soinfo list.
1870 */
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001871 strlcpy((char*) linker_soinfo.name, "/system/bin/linker", sizeof linker_soinfo.name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001872 linker_soinfo.flags = 0;
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001873 linker_soinfo.base = linker_base;
Ben Cheng06f0e742012-08-10 16:07:02 -07001874 /*
1875 * Set the dynamic field in the link map otherwise gdb will complain with
1876 * the following:
1877 * warning: .dynamic section for "/system/bin/linker" is not at the
1878 * expected address (wrong library or version mismatch?)
1879 */
1880 Elf32_Ehdr *elf_hdr = (Elf32_Ehdr *) linker_base;
1881 Elf32_Phdr *phdr =
1882 (Elf32_Phdr *)((unsigned char *) linker_base + elf_hdr->e_phoff);
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001883 phdr_table_get_dynamic_section(phdr, elf_hdr->e_phnum, linker_base,
1884 &linker_soinfo.dynamic, NULL);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001885 insert_soinfo_into_debug_map(&linker_soinfo);
1886
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001887 /* extract information passed from the kernel */
Elliott Hughes18a206c2012-10-29 17:37:13 -07001888 while (vecs[0] != 0){
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001889 switch(vecs[0]){
1890 case AT_PHDR:
1891 si->phdr = (Elf32_Phdr*) vecs[1];
1892 break;
1893 case AT_PHNUM:
1894 si->phnum = (int) vecs[1];
1895 break;
1896 case AT_ENTRY:
1897 si->entry = vecs[1];
1898 break;
1899 }
1900 vecs += 2;
1901 }
1902
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001903 /* Compute the value of si->base. We can't rely on the fact that
1904 * the first entry is the PHDR because this will not be true
1905 * for certain executables (e.g. some in the NDK unit test suite)
1906 */
1907 int nn;
1908 si->base = 0;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001909 si->size = phdr_table_get_load_size(si->phdr, si->phnum);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001910 si->load_bias = 0;
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001911 for ( nn = 0; nn < si->phnum; nn++ ) {
1912 if (si->phdr[nn].p_type == PT_PHDR) {
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001913 si->load_bias = (Elf32_Addr)si->phdr - si->phdr[nn].p_vaddr;
1914 si->base = (Elf32_Addr) si->phdr - si->phdr[nn].p_offset;
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001915 break;
1916 }
1917 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001918 si->dynamic = (unsigned *)-1;
David 'Digit' Turner67748092010-07-21 16:18:21 -07001919 si->refcount = 1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001920
Elliott Hughes46882792012-08-03 16:49:39 -07001921 // Use LD_LIBRARY_PATH and LD_PRELOAD (but only if we aren't setuid/setgid).
1922 parse_LD_LIBRARY_PATH(ldpath_env);
1923 parse_LD_PRELOAD(ldpreload_env);
Matt Fischer4fd42c12009-12-31 12:09:10 -06001924
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +02001925 somain = si;
1926
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001927 if(soinfo_link_image(si)) {
Dima Zavin2e855792009-05-20 18:28:09 -07001928 char errmsg[] = "CANNOT LINK EXECUTABLE\n";
1929 write(2, __linker_dl_err_buf, strlen(__linker_dl_err_buf));
1930 write(2, errmsg, sizeof(errmsg));
Elliott Hughes18a206c2012-10-29 17:37:13 -07001931 exit(EXIT_FAILURE);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001932 }
1933
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001934 soinfo_call_preinit_constructors(si);
1935
Elliott Hughes18a206c2012-10-29 17:37:13 -07001936 for (size_t i = 0; preloads[i] != NULL; ++i) {
Kito Cheng326e85e2012-07-15 00:49:27 +08001937 soinfo_call_constructors(preloads[i]);
1938 }
1939
Xiaokang Qin9c3449e2012-09-13 18:07:24 +08001940 /*After the link_image, the si->base is initialized.
1941 *For so lib, the map->l_addr will be updated in notify_gdb_of_load.
1942 *We need to update this value for so exe here. So Unwind_Backtrace
1943 *for some arch like x86 could work correctly within so exe.
1944 */
1945 map->l_addr = si->base;
David 'Digit' Turner16084162012-06-12 16:25:37 +02001946 soinfo_call_constructors(si);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001947
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001948#if TIMING
1949 gettimeofday(&t1,NULL);
1950 PRINT("LINKER TIME: %s: %d microseconds\n", argv[0], (int) (
1951 (((long long)t1.tv_sec * 1000000LL) + (long long)t1.tv_usec) -
1952 (((long long)t0.tv_sec * 1000000LL) + (long long)t0.tv_usec)
1953 ));
1954#endif
1955#if STATS
1956 PRINT("RELO STATS: %s: %d abs, %d rel, %d copy, %d symbol\n", argv[0],
Elliott Hughesbedfe382012-08-14 14:07:59 -07001957 linker_stats.count[kRelocAbsolute],
1958 linker_stats.count[kRelocRelative],
1959 linker_stats.count[kRelocCopy],
1960 linker_stats.count[kRelocSymbol]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001961#endif
1962#if COUNT_PAGES
1963 {
1964 unsigned n;
1965 unsigned i;
1966 unsigned count = 0;
1967 for(n = 0; n < 4096; n++){
1968 if(bitmask[n]){
1969 unsigned x = bitmask[n];
1970 for(i = 0; i < 8; i++){
1971 if(x & 1) count++;
1972 x >>= 1;
1973 }
1974 }
1975 }
1976 PRINT("PAGES MODIFIED: %s: %d (%dKB)\n", argv[0], count, count * 4);
1977 }
1978#endif
1979
1980#if TIMING || STATS || COUNT_PAGES
1981 fflush(stdout);
1982#endif
1983
1984 TRACE("[ %5d Ready to execute '%s' @ 0x%08x ]\n", pid, si->name,
1985 si->entry);
1986 return si->entry;
1987}
Nick Kralevich468319c2011-11-11 15:53:17 -08001988
1989/*
1990 * Find the value of AT_BASE passed to us by the kernel. This is the load
1991 * location of the linker.
1992 */
1993static unsigned find_linker_base(unsigned **elfdata) {
1994 int argc = (int) *elfdata;
1995 char **argv = (char**) (elfdata + 1);
1996 unsigned *vecs = (unsigned*) (argv + argc + 1);
1997 while (vecs[0] != 0) {
1998 vecs++;
1999 }
2000
2001 /* The end of the environment block is marked by two NULL pointers */
2002 vecs++;
2003
2004 while(vecs[0]) {
2005 if (vecs[0] == AT_BASE) {
2006 return vecs[1];
2007 }
2008 vecs += 2;
2009 }
2010
2011 return 0; // should never happen
2012}
2013
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02002014/* Compute the load-bias of an existing executable. This shall only
2015 * be used to compute the load bias of an executable or shared library
2016 * that was loaded by the kernel itself.
2017 *
2018 * Input:
2019 * elf -> address of ELF header, assumed to be at the start of the file.
2020 * Return:
2021 * load bias, i.e. add the value of any p_vaddr in the file to get
2022 * the corresponding address in memory.
2023 */
2024static Elf32_Addr
2025get_elf_exec_load_bias(const Elf32_Ehdr* elf)
2026{
2027 Elf32_Addr offset = elf->e_phoff;
2028 const Elf32_Phdr* phdr_table = (const Elf32_Phdr*)((char*)elf + offset);
2029 const Elf32_Phdr* phdr_end = phdr_table + elf->e_phnum;
2030 const Elf32_Phdr* phdr;
2031
2032 for (phdr = phdr_table; phdr < phdr_end; phdr++) {
2033 if (phdr->p_type == PT_LOAD) {
2034 return (Elf32_Addr)elf + phdr->p_offset - phdr->p_vaddr;
2035 }
2036 }
2037 return 0;
2038}
2039
Nick Kralevich468319c2011-11-11 15:53:17 -08002040/*
2041 * This is the entry point for the linker, called from begin.S. This
2042 * method is responsible for fixing the linker's own relocations, and
2043 * then calling __linker_init_post_relocation().
2044 *
2045 * Because this method is called before the linker has fixed it's own
2046 * relocations, any attempt to reference an extern variable, extern
2047 * function, or other GOT reference will generate a segfault.
2048 */
Elliott Hughes46882792012-08-03 16:49:39 -07002049extern "C" unsigned __linker_init(unsigned **elfdata) {
Nick Kralevich468319c2011-11-11 15:53:17 -08002050 unsigned linker_addr = find_linker_base(elfdata);
2051 Elf32_Ehdr *elf_hdr = (Elf32_Ehdr *) linker_addr;
2052 Elf32_Phdr *phdr =
2053 (Elf32_Phdr *)((unsigned char *) linker_addr + elf_hdr->e_phoff);
2054
2055 soinfo linker_so;
2056 memset(&linker_so, 0, sizeof(soinfo));
2057
2058 linker_so.base = linker_addr;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02002059 linker_so.size = phdr_table_get_load_size(phdr, elf_hdr->e_phnum);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02002060 linker_so.load_bias = get_elf_exec_load_bias(elf_hdr);
Nick Kralevich468319c2011-11-11 15:53:17 -08002061 linker_so.dynamic = (unsigned *) -1;
2062 linker_so.phdr = phdr;
2063 linker_so.phnum = elf_hdr->e_phnum;
2064 linker_so.flags |= FLAG_LINKER;
Nick Kralevich468319c2011-11-11 15:53:17 -08002065
Nick Kralevich5135b3a2012-08-10 21:08:42 -07002066 if (soinfo_link_image(&linker_so)) {
Nick Kralevich468319c2011-11-11 15:53:17 -08002067 // It would be nice to print an error message, but if the linker
2068 // can't link itself, there's no guarantee that we'll be able to
2069 // call write() (because it involves a GOT reference).
2070 //
2071 // This situation should never occur unless the linker itself
2072 // is corrupt.
Elliott Hughes18a206c2012-10-29 17:37:13 -07002073 exit(EXIT_FAILURE);
Nick Kralevich468319c2011-11-11 15:53:17 -08002074 }
2075
2076 // We have successfully fixed our own relocations. It's safe to run
2077 // the main part of the linker now.
Elliott Hughes5419b942012-10-16 15:54:46 -07002078 unsigned start_address = __linker_init_post_relocation(elfdata, linker_addr);
2079
2080 // Return the address that the calling assembly stub should jump to.
2081 return start_address;
Nick Kralevich468319c2011-11-11 15:53:17 -08002082}