blob: 6e1c60443ca67a5605ef72530bd89dd01cc5fb1a [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
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -070054#define ALLOW_SYMBOLS_FROM_MAIN 1
Kenny Root72f9a5c2011-02-10 17:02:21 -080055#define SO_MAX 128
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080056
David Bartleybc3a5c22009-06-02 18:27:28 -070057/* Assume average path length of 64 and max 8 paths */
58#define LDPATH_BUFSIZE 512
59#define LDPATH_MAX 8
60
Matt Fischer4fd42c12009-12-31 12:09:10 -060061#define LDPRELOAD_BUFSIZE 512
62#define LDPRELOAD_MAX 8
63
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080064/* >>> IMPORTANT NOTE - READ ME BEFORE MODIFYING <<<
65 *
66 * Do NOT use malloc() and friends or pthread_*() code here.
67 * Don't use printf() either; it's caused mysterious memory
68 * corruption in the past.
69 * The linker runs before we bring up libc and it's easiest
70 * to make sure it does not depend on any complex libc features
71 *
72 * open issues / todo:
73 *
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074 * - are we doing everything we should for ARM_COPY relocations?
75 * - cleaner error reporting
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080076 * - after linking, set as much stuff as possible to READONLY
77 * and NOEXEC
78 * - linker hardcodes PAGE_SIZE and PAGE_MASK because the kernel
79 * headers provide versions that are negative...
80 * - allocate space for soinfo structs dynamically instead of
Elliott Hughes46882792012-08-03 16:49:39 -070081 * having a hard limit (SO_MAX)
82 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080083
84
Nick Kralevich5135b3a2012-08-10 21:08:42 -070085static int soinfo_link_image(soinfo *si);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080086
87static int socount = 0;
88static soinfo sopool[SO_MAX];
89static soinfo *freelist = NULL;
90static soinfo *solist = &libdl_info;
91static soinfo *sonext = &libdl_info;
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -070092#if ALLOW_SYMBOLS_FROM_MAIN
93static soinfo *somain; /* main process, always the one after libdl_info */
94#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080095
Iliyan Malchevaf7315a2009-10-16 17:50:42 -070096
David Bartleybc3a5c22009-06-02 18:27:28 -070097static char ldpaths_buf[LDPATH_BUFSIZE];
98static const char *ldpaths[LDPATH_MAX + 1];
99
Matt Fischer4fd42c12009-12-31 12:09:10 -0600100static char ldpreloads_buf[LDPRELOAD_BUFSIZE];
101static const char *ldpreload_names[LDPRELOAD_MAX + 1];
102
103static soinfo *preloads[LDPRELOAD_MAX + 1];
104
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -0700105#if LINKER_DEBUG
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800106int debug_verbosity;
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -0700107#endif
108
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800109static int pid;
110
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100111/* This boolean is set if the program being loaded is setuid */
Elliott Hughesbedfe382012-08-14 14:07:59 -0700112static bool program_is_setuid;
113
114enum RelocationKind {
115 kRelocAbsolute = 0,
116 kRelocRelative,
117 kRelocCopy,
118 kRelocSymbol,
119 kRelocMax
120};
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100121
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800122#if STATS
Elliott Hughesbedfe382012-08-14 14:07:59 -0700123struct linker_stats_t {
124 int count[kRelocMax];
125};
126
127static linker_stats_t linker_stats;
128
129static void count_relocation(RelocationKind kind) {
130 ++linker_stats.count[kind];
131}
132#else
133static void count_relocation(RelocationKind) {
134}
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800135#endif
136
137#if COUNT_PAGES
Elliott Hughesbedfe382012-08-14 14:07:59 -0700138static unsigned bitmask[4096];
139#define MARK(offset) \
140 do { \
141 bitmask[((offset) >> 12) >> 3] |= (1 << (((offset) >> 12) & 7)); \
142 } while(0)
143#else
144#define MARK(x) do {} while (0)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800145#endif
146
Elliott Hughes46882792012-08-03 16:49:39 -0700147// You shouldn't try to call memory-allocating functions in the dynamic linker.
148// Guard against the most obvious ones.
149#define DISALLOW_ALLOCATION(return_type, name, ...) \
150 return_type name __VA_ARGS__ \
151 { \
152 const char* msg = "ERROR: " #name " called from the dynamic linker!\n"; \
153 __libc_android_log_write(ANDROID_LOG_FATAL, "linker", msg); \
154 write(2, msg, sizeof(msg)); \
155 abort(); \
Dima Zavin2e855792009-05-20 18:28:09 -0700156 }
Elliott Hughes46882792012-08-03 16:49:39 -0700157#define UNUSED __attribute__((unused))
158DISALLOW_ALLOCATION(void*, malloc, (size_t u UNUSED));
159DISALLOW_ALLOCATION(void, free, (void* u UNUSED));
160DISALLOW_ALLOCATION(void*, realloc, (void* u1 UNUSED, size_t u2 UNUSED));
161DISALLOW_ALLOCATION(void*, calloc, (size_t u1 UNUSED, size_t u2 UNUSED));
Dima Zavin2e855792009-05-20 18:28:09 -0700162
Dima Zavin03531952009-05-29 17:30:25 -0700163static char tmp_err_buf[768];
Dima Zavin2e855792009-05-20 18:28:09 -0700164static char __linker_dl_err_buf[768];
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700165#define DL_ERR(fmt, x...) \
166 do { \
Elliott Hughes3b297c42012-10-11 16:08:51 -0700167 format_buffer(__linker_dl_err_buf, sizeof(__linker_dl_err_buf), fmt, ##x); \
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700168 ERROR(fmt "\n", ##x); \
Dima Zavin2e855792009-05-20 18:28:09 -0700169 } while(0)
170
171const char *linker_get_error(void)
172{
173 return (const char *)&__linker_dl_err_buf[0];
174}
175
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800176/*
177 * This function is an empty stub where GDB locates a breakpoint to get notified
178 * about linker activity.
179 */
Elliott Hughes46882792012-08-03 16:49:39 -0700180extern "C" void __attribute__((noinline)) __attribute__((visibility("default"))) rtld_db_dlactivity(void);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800181
Elliott Hughesbedfe382012-08-14 14:07:59 -0700182static r_debug _r_debug = {1, NULL, &rtld_db_dlactivity,
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800183 RT_CONSISTENT, 0};
Elliott Hughesbedfe382012-08-14 14:07:59 -0700184static link_map* r_debug_tail = 0;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800185
Elliott Hughes3b297c42012-10-11 16:08:51 -0700186static pthread_mutex_t gDebugMutex = PTHREAD_MUTEX_INITIALIZER;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800187
Elliott Hughesbedfe382012-08-14 14:07:59 -0700188static void insert_soinfo_into_debug_map(soinfo * info) {
189 // Copy the necessary fields into the debug structure.
190 link_map* map = &(info->linkmap);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800191 map->l_addr = info->base;
192 map->l_name = (char*) info->name;
Thinker K.F Li5cf640c2009-07-03 19:40:32 +0800193 map->l_ld = (uintptr_t)info->dynamic;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800194
195 /* Stick the new library at the end of the list.
196 * gdb tends to care more about libc than it does
197 * about leaf libraries, and ordering it this way
198 * reduces the back-and-forth over the wire.
199 */
200 if (r_debug_tail) {
201 r_debug_tail->l_next = map;
202 map->l_prev = r_debug_tail;
203 map->l_next = 0;
204 } else {
205 _r_debug.r_map = map;
206 map->l_prev = 0;
207 map->l_next = 0;
208 }
209 r_debug_tail = map;
210}
211
Elliott Hughesbedfe382012-08-14 14:07:59 -0700212static void remove_soinfo_from_debug_map(soinfo* info) {
213 link_map* map = &(info->linkmap);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700214
Elliott Hughesbedfe382012-08-14 14:07:59 -0700215 if (r_debug_tail == map) {
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700216 r_debug_tail = map->l_prev;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700217 }
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700218
Elliott Hughesbedfe382012-08-14 14:07:59 -0700219 if (map->l_prev) {
220 map->l_prev->l_next = map->l_next;
221 }
222 if (map->l_next) {
223 map->l_next->l_prev = map->l_prev;
224 }
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700225}
226
Elliott Hughesbedfe382012-08-14 14:07:59 -0700227static void notify_gdb_of_load(soinfo* info) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800228 if (info->flags & FLAG_EXE) {
229 // GDB already knows about the main executable
230 return;
231 }
232
Elliott Hughes3b297c42012-10-11 16:08:51 -0700233 ScopedPthreadMutexLocker locker(&gDebugMutex);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800234
235 _r_debug.r_state = RT_ADD;
236 rtld_db_dlactivity();
237
238 insert_soinfo_into_debug_map(info);
239
240 _r_debug.r_state = RT_CONSISTENT;
241 rtld_db_dlactivity();
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700242}
243
Elliott Hughesbedfe382012-08-14 14:07:59 -0700244static void notify_gdb_of_unload(soinfo* info) {
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700245 if (info->flags & FLAG_EXE) {
246 // GDB already knows about the main executable
247 return;
248 }
249
Elliott Hughes3b297c42012-10-11 16:08:51 -0700250 ScopedPthreadMutexLocker locker(&gDebugMutex);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700251
252 _r_debug.r_state = RT_DELETE;
253 rtld_db_dlactivity();
254
255 remove_soinfo_from_debug_map(info);
256
257 _r_debug.r_state = RT_CONSISTENT;
258 rtld_db_dlactivity();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800259}
260
Elliott Hughes46882792012-08-03 16:49:39 -0700261extern "C" void notify_gdb_of_libraries()
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800262{
263 _r_debug.r_state = RT_ADD;
264 rtld_db_dlactivity();
265 _r_debug.r_state = RT_CONSISTENT;
266 rtld_db_dlactivity();
267}
268
David 'Digit' Turner16084162012-06-12 16:25:37 +0200269static soinfo *soinfo_alloc(const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800270{
Elliott Hughes46882792012-08-03 16:49:39 -0700271 if (strlen(name) >= SOINFO_NAME_LEN) {
272 DL_ERR("library name \"%s\" too long", name);
Doug Kwan94304352009-10-23 18:11:40 -0700273 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800274 }
275
David 'Digit' Turner16084162012-06-12 16:25:37 +0200276 /* The freelist is populated when we call soinfo_free(), which in turn is
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800277 done only by dlclose(), which is not likely to be used.
278 */
279 if (!freelist) {
Elliott Hughes46882792012-08-03 16:49:39 -0700280 if (socount == SO_MAX) {
281 DL_ERR("too many libraries when loading \"%s\"", name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800282 return NULL;
283 }
284 freelist = sopool + socount++;
285 freelist->next = NULL;
286 }
287
Elliott Hughes46882792012-08-03 16:49:39 -0700288 soinfo* si = freelist;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800289 freelist = freelist->next;
290
291 /* Make sure we get a clean block of soinfo */
292 memset(si, 0, sizeof(soinfo));
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100293 strlcpy((char*) si->name, name, sizeof(si->name));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800294 sonext->next = si;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800295 si->next = NULL;
296 si->refcount = 0;
297 sonext = si;
298
299 TRACE("%5d name %s: allocated soinfo @ %p\n", pid, name, si);
300 return si;
301}
302
Elliott Hughes46882792012-08-03 16:49:39 -0700303static void soinfo_free(soinfo* si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800304{
Elliott Hughes46882792012-08-03 16:49:39 -0700305 if (si == NULL) {
306 return;
307 }
308
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800309 soinfo *prev = NULL, *trav;
310
311 TRACE("%5d name %s: freeing soinfo @ %p\n", pid, si->name, si);
312
313 for(trav = solist; trav != NULL; trav = trav->next){
314 if (trav == si)
315 break;
316 prev = trav;
317 }
318 if (trav == NULL) {
319 /* si was not ni solist */
Elliott Hughes46882792012-08-03 16:49:39 -0700320 DL_ERR("name \"%s\" is not in solist!", si->name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800321 return;
322 }
323
David 'Digit' Turnerbe575592010-12-16 19:52:02 +0100324 /* prev will never be NULL, because the first entry in solist is
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800325 always the static libdl_info.
326 */
327 prev->next = si->next;
328 if (si == sonext) sonext = prev;
329 si->next = freelist;
330 freelist = si;
331}
332
Elliott Hughes46882792012-08-03 16:49:39 -0700333#ifdef ANDROID_ARM_LINKER
334
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800335/* For a given PC, find the .so that it belongs to.
336 * Returns the base address of the .ARM.exidx section
337 * for that .so, and the number of 8-byte entries
338 * in that section (via *pcount).
339 *
340 * Intended to be called by libc's __gnu_Unwind_Find_exidx().
341 *
Elliott Hughes3b297c42012-10-11 16:08:51 -0700342 * This function is exposed via dlfcn.cpp and libdl.so.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800343 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800344_Unwind_Ptr dl_unwind_find_exidx(_Unwind_Ptr pc, int *pcount)
345{
346 soinfo *si;
347 unsigned addr = (unsigned)pc;
348
Nick Kralevich468319c2011-11-11 15:53:17 -0800349 for (si = solist; si != 0; si = si->next){
350 if ((addr >= si->base) && (addr < (si->base + si->size))) {
351 *pcount = si->ARM_exidx_count;
Ji-Hwan Leef186a182012-05-31 20:20:36 +0900352 return (_Unwind_Ptr)si->ARM_exidx;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800353 }
354 }
355 *pcount = 0;
356 return NULL;
357}
Elliott Hughes46882792012-08-03 16:49:39 -0700358
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700359#elif defined(ANDROID_X86_LINKER) || defined(ANDROID_MIPS_LINKER)
Elliott Hughes46882792012-08-03 16:49:39 -0700360
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800361/* Here, we only have to provide a callback to iterate across all the
362 * loaded libraries. gcc_eh does the rest. */
363int
Elliott Hughesbedfe382012-08-14 14:07:59 -0700364dl_iterate_phdr(int (*cb)(dl_phdr_info *info, size_t size, void *data),
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800365 void *data)
366{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800367 int rv = 0;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700368 for (soinfo* si = solist; si != NULL; si = si->next) {
369 dl_phdr_info dl_info;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800370 dl_info.dlpi_addr = si->linkmap.l_addr;
371 dl_info.dlpi_name = si->linkmap.l_name;
372 dl_info.dlpi_phdr = si->phdr;
373 dl_info.dlpi_phnum = si->phnum;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700374 rv = cb(&dl_info, sizeof(dl_phdr_info), data);
375 if (rv != 0) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800376 break;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700377 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800378 }
379 return rv;
380}
Elliott Hughes46882792012-08-03 16:49:39 -0700381
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800382#endif
383
David 'Digit' Turner16084162012-06-12 16:25:37 +0200384static Elf32_Sym *soinfo_elf_lookup(soinfo *si, unsigned hash, const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800385{
386 Elf32_Sym *s;
387 Elf32_Sym *symtab = si->symtab;
388 const char *strtab = si->strtab;
389 unsigned n;
390
391 TRACE_TYPE(LOOKUP, "%5d SEARCH %s in %s@0x%08x %08x %d\n", pid,
392 name, si->name, si->base, hash, hash % si->nbucket);
393 n = hash % si->nbucket;
394
395 for(n = si->bucket[hash % si->nbucket]; n != 0; n = si->chain[n]){
396 s = symtab + n;
397 if(strcmp(strtab + s->st_name, name)) continue;
398
Doug Kwane8238072009-10-26 12:05:23 -0700399 /* only concern ourselves with global and weak symbol definitions */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800400 switch(ELF32_ST_BIND(s->st_info)){
401 case STB_GLOBAL:
Doug Kwane8238072009-10-26 12:05:23 -0700402 case STB_WEAK:
Robin Burchell439fa8e2012-07-05 09:21:07 +0200403 if(s->st_shndx == SHN_UNDEF)
404 continue;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800405
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800406 TRACE_TYPE(LOOKUP, "%5d FOUND %s in %s (%08x) %d\n", pid,
407 name, si->name, s->st_value, s->st_size);
408 return s;
409 }
410 }
411
Doug Kwan94304352009-10-23 18:11:40 -0700412 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800413}
414
415static unsigned elfhash(const char *_name)
416{
417 const unsigned char *name = (const unsigned char *) _name;
418 unsigned h = 0, g;
419
420 while(*name) {
421 h = (h << 4) + *name++;
422 g = h & 0xf0000000;
423 h ^= g;
424 h ^= g >> 24;
425 }
426 return h;
427}
428
429static Elf32_Sym *
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200430soinfo_do_lookup(soinfo *si, const char *name, Elf32_Addr *offset,
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700431 soinfo *needed[], bool ignore_local)
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700432{
Doug Kwan94304352009-10-23 18:11:40 -0700433 unsigned elf_hash = elfhash(name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700434 Elf32_Sym *s = NULL;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700435 soinfo *lsi = si;
Matt Fischer4fd42c12009-12-31 12:09:10 -0600436 int i;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700437
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700438 if (!ignore_local) {
439 /* Look for symbols in the local scope (the object who is
440 * searching). This happens with C++ templates on i386 for some
441 * reason.
442 *
443 * Notes on weak symbols:
444 * The ELF specs are ambiguous about treatment of weak definitions in
445 * dynamic linking. Some systems return the first definition found
446 * and some the first non-weak definition. This is system dependent.
447 * Here we return the first definition found for simplicity. */
Nick Kralevich468319c2011-11-11 15:53:17 -0800448
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700449 s = soinfo_elf_lookup(si, elf_hash, name);
450 if(s != NULL)
451 goto done;
452 }
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700453
Matt Fischer4fd42c12009-12-31 12:09:10 -0600454 /* Next, look for it in the preloads list */
455 for(i = 0; preloads[i] != NULL; i++) {
456 lsi = preloads[i];
David 'Digit' Turner16084162012-06-12 16:25:37 +0200457 s = soinfo_elf_lookup(lsi, elf_hash, name);
Matt Fischer4fd42c12009-12-31 12:09:10 -0600458 if(s != NULL)
459 goto done;
460 }
461
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200462 for(i = 0; needed[i] != NULL; i++) {
463 lsi = needed[i];
464 DEBUG("%5d %s: looking up %s in %s\n",
465 pid, si->name, name, lsi->name);
466 s = soinfo_elf_lookup(lsi, elf_hash, name);
467 if (s != NULL)
468 goto done;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700469 }
470
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -0700471#if ALLOW_SYMBOLS_FROM_MAIN
472 /* If we are resolving relocations while dlopen()ing a library, it's OK for
473 * the library to resolve a symbol that's defined in the executable itself,
474 * although this is rare and is generally a bad idea.
475 */
476 if (somain) {
477 lsi = somain;
478 DEBUG("%5d %s: looking up %s in executable %s\n",
479 pid, si->name, name, lsi->name);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200480 s = soinfo_elf_lookup(lsi, elf_hash, name);
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -0700481 }
482#endif
483
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700484done:
485 if(s != NULL) {
486 TRACE_TYPE(LOOKUP, "%5d si %s sym %s s->st_value = 0x%08x, "
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +0200487 "found in %s, base = 0x%08x, load bias = 0x%08x\n",
Ji-Hwan Leef186a182012-05-31 20:20:36 +0900488 pid, si->name, name, s->st_value,
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +0200489 lsi->name, lsi->base, lsi->load_bias);
490 *offset = lsi->load_bias;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700491 return s;
492 }
493
Doug Kwan94304352009-10-23 18:11:40 -0700494 return NULL;
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700495}
496
497/* This is used by dl_sym(). It performs symbol lookup only within the
498 specified soinfo object and not in any of its dependencies.
499 */
David 'Digit' Turner16084162012-06-12 16:25:37 +0200500Elf32_Sym *soinfo_lookup(soinfo *si, const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800501{
David 'Digit' Turner16084162012-06-12 16:25:37 +0200502 return soinfo_elf_lookup(si, elfhash(name), name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800503}
504
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700505/* This is used by dl_sym(). It performs a global symbol lookup.
506 */
Matt Fischer1698d9e2009-12-31 12:17:56 -0600507Elf32_Sym *lookup(const char *name, soinfo **found, soinfo *start)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800508{
Doug Kwan94304352009-10-23 18:11:40 -0700509 unsigned elf_hash = elfhash(name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800510 Elf32_Sym *s = NULL;
511 soinfo *si;
512
Matt Fischer1698d9e2009-12-31 12:17:56 -0600513 if(start == NULL) {
514 start = solist;
515 }
516
517 for(si = start; (s == NULL) && (si != NULL); si = si->next)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800518 {
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700519 if(si->flags & FLAG_ERROR)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800520 continue;
David 'Digit' Turner16084162012-06-12 16:25:37 +0200521 s = soinfo_elf_lookup(si, elf_hash, name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800522 if (s != NULL) {
Iliyan Malchev9ea64da2009-09-28 18:21:30 -0700523 *found = si;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800524 break;
525 }
526 }
527
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700528 if(s != NULL) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800529 TRACE_TYPE(LOOKUP, "%5d %s s->st_value = 0x%08x, "
530 "si->base = 0x%08x\n", pid, name, s->st_value, si->base);
531 return s;
532 }
533
Doug Kwan94304352009-10-23 18:11:40 -0700534 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800535}
536
Mathias Agopianbda5da02011-09-27 22:30:19 -0700537soinfo *find_containing_library(const void *addr)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600538{
539 soinfo *si;
540
541 for(si = solist; si != NULL; si = si->next)
542 {
543 if((unsigned)addr >= si->base && (unsigned)addr - si->base < si->size) {
544 return si;
545 }
546 }
547
548 return NULL;
549}
550
David 'Digit' Turner16084162012-06-12 16:25:37 +0200551Elf32_Sym *soinfo_find_symbol(soinfo* si, const void *addr)
Matt Fischere2a8b1f2009-12-31 12:17:40 -0600552{
553 unsigned int i;
554 unsigned soaddr = (unsigned)addr - si->base;
555
556 /* Search the library's symbol table for any defined symbol which
557 * contains this address */
558 for(i=0; i<si->nchain; i++) {
559 Elf32_Sym *sym = &si->symtab[i];
560
561 if(sym->st_shndx != SHN_UNDEF &&
562 soaddr >= sym->st_value &&
563 soaddr < sym->st_value + sym->st_size) {
564 return sym;
565 }
566 }
567
568 return NULL;
569}
570
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800571#if 0
572static void dump(soinfo *si)
573{
574 Elf32_Sym *s = si->symtab;
575 unsigned n;
576
577 for(n = 0; n < si->nchain; n++) {
578 TRACE("%5d %04d> %08x: %02x %04x %08x %08x %s\n", pid, n, s,
579 s->st_info, s->st_shndx, s->st_value, s->st_size,
580 si->strtab + s->st_name);
581 s++;
582 }
583}
584#endif
585
David 'Digit' Turner16084162012-06-12 16:25:37 +0200586static const char * const sopaths[] = {
Brian Swetlandfedbcde2010-09-19 03:39:13 -0700587 "/vendor/lib",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800588 "/system/lib",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800589 0
590};
591
Elliott Hughesbedfe382012-08-14 14:07:59 -0700592static int _open_lib(const char* name) {
593 // TODO: why not just call open?
594 struct stat sb;
595 if (stat(name, &sb) == -1 || !S_ISREG(sb.st_mode)) {
596 return -1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800597 }
Elliott Hughesbedfe382012-08-14 14:07:59 -0700598 return TEMP_FAILURE_RETRY(open(name, O_RDONLY));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800599}
600
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800601static int open_library(const char *name)
602{
603 int fd;
604 char buf[512];
David 'Digit' Turner16084162012-06-12 16:25:37 +0200605 const char * const*path;
David Bartleybc3a5c22009-06-02 18:27:28 -0700606 int n;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800607
608 TRACE("[ %5d opening %s ]\n", pid, name);
609
610 if(name == 0) return -1;
611 if(strlen(name) > 256) return -1;
612
613 if ((name[0] == '/') && ((fd = _open_lib(name)) >= 0))
614 return fd;
615
David Bartleybc3a5c22009-06-02 18:27:28 -0700616 for (path = ldpaths; *path; path++) {
David 'Digit' Turner5c734642010-01-20 12:36:51 -0800617 n = format_buffer(buf, sizeof(buf), "%s/%s", *path, name);
David Bartleybc3a5c22009-06-02 18:27:28 -0700618 if (n < 0 || n >= (int)sizeof(buf)) {
619 WARN("Ignoring very long library path: %s/%s\n", *path, name);
620 continue;
621 }
622 if ((fd = _open_lib(buf)) >= 0)
623 return fd;
624 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800625 for (path = sopaths; *path; path++) {
David 'Digit' Turner5c734642010-01-20 12:36:51 -0800626 n = format_buffer(buf, sizeof(buf), "%s/%s", *path, name);
David Bartleybc3a5c22009-06-02 18:27:28 -0700627 if (n < 0 || n >= (int)sizeof(buf)) {
628 WARN("Ignoring very long library path: %s/%s\n", *path, name);
629 continue;
630 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800631 if ((fd = _open_lib(buf)) >= 0)
632 return fd;
633 }
634
635 return -1;
636}
637
Elliott Hughes46882792012-08-03 16:49:39 -0700638// Returns 'true' if the library is prelinked or on failure so we error out
639// either way. We no longer support prelinking.
640static bool is_prelinked(int fd, const char* name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800641{
Elliott Hughes46882792012-08-03 16:49:39 -0700642 struct prelink_info_t {
643 long mmap_addr;
644 char tag[4]; // "PRE ".
645 };
646
Elliott Hughesbedfe382012-08-14 14:07:59 -0700647 off_t sz = lseek(fd, -sizeof(prelink_info_t), SEEK_END);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800648 if (sz < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700649 DL_ERR("lseek failed: %s", strerror(errno));
650 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800651 }
652
Elliott Hughesbedfe382012-08-14 14:07:59 -0700653 prelink_info_t info;
Elliott Hughes8dfc0732012-07-27 15:30:51 -0700654 int rc = TEMP_FAILURE_RETRY(read(fd, &info, sizeof(info)));
655 if (rc != sizeof(info)) {
Elliott Hughes46882792012-08-03 16:49:39 -0700656 DL_ERR("could not read prelink_info_t structure for \"%s\":", name, strerror(errno));
657 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800658 }
659
Elliott Hughes46882792012-08-03 16:49:39 -0700660 if (memcmp(info.tag, "PRE ", 4) == 0) {
661 DL_ERR("prelinked libraries no longer supported: %s", name);
662 return true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800663 }
Elliott Hughes46882792012-08-03 16:49:39 -0700664 return false;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800665}
666
David 'Digit' Turner16084162012-06-12 16:25:37 +0200667/* verify_elf_header
668 * Verifies the content of an ELF header.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800669 *
670 * Args:
671 *
672 * Returns:
673 * 0 on success
674 * -1 if no valid ELF object is found @ base.
675 */
676static int
David 'Digit' Turner16084162012-06-12 16:25:37 +0200677verify_elf_header(const Elf32_Ehdr* hdr)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800678{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800679 if (hdr->e_ident[EI_MAG0] != ELFMAG0) return -1;
680 if (hdr->e_ident[EI_MAG1] != ELFMAG1) return -1;
681 if (hdr->e_ident[EI_MAG2] != ELFMAG2) return -1;
682 if (hdr->e_ident[EI_MAG3] != ELFMAG3) return -1;
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700683 if (hdr->e_type != ET_DYN) return -1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800684
685 /* TODO: Should we verify anything else in the header? */
Zhenghua Wang897815a2011-10-19 00:29:14 +0800686#ifdef ANDROID_ARM_LINKER
687 if (hdr->e_machine != EM_ARM) return -1;
688#elif defined(ANDROID_X86_LINKER)
689 if (hdr->e_machine != EM_386) return -1;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700690#elif defined(ANDROID_MIPS_LINKER)
691 if (hdr->e_machine != EM_MIPS) return -1;
Zhenghua Wang897815a2011-10-19 00:29:14 +0800692#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800693 return 0;
694}
695
Elliott Hughes46882792012-08-03 16:49:39 -0700696struct scoped_fd {
697 ~scoped_fd() {
698 if (fd != -1) {
699 close(fd);
700 }
701 }
702 int fd;
703};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800704
Elliott Hughes46882792012-08-03 16:49:39 -0700705struct soinfo_ptr {
706 soinfo_ptr(const char* name) {
707 const char* bname = strrchr(name, '/');
708 ptr = soinfo_alloc(bname ? bname + 1 : name);
709 }
710 ~soinfo_ptr() {
711 soinfo_free(ptr);
712 }
713 soinfo* release() {
714 soinfo* result = ptr;
715 ptr = NULL;
716 return result;
717 }
718 soinfo* ptr;
719};
720
721// TODO: rewrite linker_phdr.h to use a class, then lose this.
722struct phdr_ptr {
723 phdr_ptr() : phdr_mmap(NULL) {}
724 ~phdr_ptr() {
725 if (phdr_mmap != NULL) {
726 phdr_table_unload(phdr_mmap, phdr_size);
727 }
728 }
729 void* phdr_mmap;
730 Elf32_Addr phdr_size;
731};
732
733static soinfo* load_library(const char* name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800734{
Elliott Hughes46882792012-08-03 16:49:39 -0700735 // Open the file.
736 scoped_fd fd;
737 fd.fd = open_library(name);
738 if (fd.fd == -1) {
739 DL_ERR("library \"%s\" not found", name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800740 return NULL;
Dima Zavin2e855792009-05-20 18:28:09 -0700741 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800742
Elliott Hughes46882792012-08-03 16:49:39 -0700743 // Read the ELF header.
744 Elf32_Ehdr header[1];
745 int ret = TEMP_FAILURE_RETRY(read(fd.fd, (void*)header, sizeof(header)));
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200746 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700747 DL_ERR("can't read file \"%s\": %s", name, strerror(errno));
748 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200749 }
750 if (ret != (int)sizeof(header)) {
Elliott Hughes46882792012-08-03 16:49:39 -0700751 DL_ERR("too small to be an ELF executable: %s", name);
752 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200753 }
754 if (verify_elf_header(header) < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700755 DL_ERR("not a valid ELF executable: %s", name);
756 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800757 }
758
Elliott Hughes46882792012-08-03 16:49:39 -0700759 // Read the program header table.
760 const Elf32_Phdr* phdr_table;
761 phdr_ptr phdr_holder;
762 ret = phdr_table_load(fd.fd, header->e_phoff, header->e_phnum,
763 &phdr_holder.phdr_mmap, &phdr_holder.phdr_size, &phdr_table);
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200764 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700765 DL_ERR("can't load program header table: %s: %s", name, strerror(errno));
766 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200767 }
Elliott Hughes46882792012-08-03 16:49:39 -0700768 size_t phdr_count = header->e_phnum;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200769
Elliott Hughes46882792012-08-03 16:49:39 -0700770 // Get the load extents.
771 Elf32_Addr ext_sz = phdr_table_get_load_size(phdr_table, phdr_count);
772 TRACE("[ %5d - '%s' wants sz=0x%08x ]\n", pid, name, ext_sz);
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200773 if (ext_sz == 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700774 DL_ERR("no loadable segments in file: %s", name);
775 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800776 }
777
Elliott Hughes46882792012-08-03 16:49:39 -0700778 // We no longer support pre-linked libraries.
779 if (is_prelinked(fd.fd, name)) {
780 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200781 }
David 'Digit' Turner16084162012-06-12 16:25:37 +0200782
Elliott Hughes46882792012-08-03 16:49:39 -0700783 // Reserve address space for all loadable segments.
784 void* load_start = NULL;
785 Elf32_Addr load_size = 0;
786 Elf32_Addr load_bias = 0;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200787 ret = phdr_table_reserve_memory(phdr_table,
788 phdr_count,
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200789 &load_start,
790 &load_size,
791 &load_bias);
792 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700793 DL_ERR("can't reserve %d bytes in address space for \"%s\": %s",
794 ext_sz, name, strerror(errno));
795 return NULL;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200796 }
797
798 TRACE("[ %5d allocated memory for %s @ %p (0x%08x) ]\n",
799 pid, name, load_start, load_size);
800
801 /* Map all the segments in our address space with default protections */
802 ret = phdr_table_load_segments(phdr_table,
803 phdr_count,
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200804 load_bias,
Elliott Hughes46882792012-08-03 16:49:39 -0700805 fd.fd);
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200806 if (ret < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -0700807 DL_ERR("can't map loadable segments for \"%s\": %s",
808 name, strerror(errno));
809 return NULL;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +0200810 }
811
Elliott Hughes46882792012-08-03 16:49:39 -0700812 soinfo_ptr si(name);
813 if (si.ptr == NULL) {
814 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800815 }
816
Elliott Hughes46882792012-08-03 16:49:39 -0700817 si.ptr->base = (Elf32_Addr) load_start;
818 si.ptr->size = load_size;
819 si.ptr->load_bias = load_bias;
820 si.ptr->flags = 0;
821 si.ptr->entry = 0;
822 si.ptr->dynamic = (unsigned *)-1;
823 si.ptr->phnum = phdr_count;
824 si.ptr->phdr = phdr_table_get_loaded_phdr(phdr_table, phdr_count, load_bias);
825 if (si.ptr->phdr == NULL) {
826 DL_ERR("can't find loaded PHDR for \"%s\"", name);
827 return NULL;
David 'Digit' Turner23363ed2012-06-18 18:13:49 +0200828 }
Elliott Hughes46882792012-08-03 16:49:39 -0700829
830 return si.release();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800831}
832
833static soinfo *
834init_library(soinfo *si)
835{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800836 /* At this point we know that whatever is loaded @ base is a valid ELF
837 * shared library whose segments are properly mapped in. */
838 TRACE("[ %5d init_library base=0x%08x sz=0x%08x name='%s') ]\n",
839 pid, si->base, si->size, si->name);
840
Nick Kralevich5135b3a2012-08-10 21:08:42 -0700841 if(soinfo_link_image(si)) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800842 munmap((void *)si->base, si->size);
843 return NULL;
844 }
845
846 return si;
847}
848
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200849static soinfo *find_loaded_library(const char *name)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800850{
851 soinfo *si;
David 'Digit' Turner67748092010-07-21 16:18:21 -0700852 const char *bname;
853
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200854 // TODO: don't use basename only for determining libraries
855 // http://code.google.com/p/android/issues/detail?id=6670
856
857 bname = strrchr(name, '/');
858 bname = bname ? bname + 1 : name;
859
860 for(si = solist; si != NULL; si = si->next){
861 if(!strcmp(bname, si->name)) {
862 return si;
863 }
864 }
865 return NULL;
866}
867
868soinfo *find_library(const char *name)
869{
870 soinfo *si;
871
David 'Digit' Turner67748092010-07-21 16:18:21 -0700872#if ALLOW_SYMBOLS_FROM_MAIN
873 if (name == NULL)
874 return somain;
875#else
876 if (name == NULL)
877 return NULL;
878#endif
879
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200880 si = find_loaded_library(name);
881 if (si != NULL) {
882 if(si->flags & FLAG_ERROR) {
883 DL_ERR("\"%s\" failed to load previously", name);
Dima Zavin2e855792009-05-20 18:28:09 -0700884 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800885 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200886 if(si->flags & FLAG_LINKED) return si;
887 DL_ERR("OOPS: recursive link to \"%s\"", si->name);
888 return NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800889 }
890
891 TRACE("[ %5d '%s' has not been loaded yet. Locating...]\n", pid, name);
892 si = load_library(name);
893 if(si == NULL)
894 return NULL;
895 return init_library(si);
896}
897
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800898static void call_destructors(soinfo *si);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700899
900int soinfo_unload(soinfo* si) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800901 if (si->refcount == 1) {
902 TRACE("%5d unloading '%s'\n", pid, si->name);
903 call_destructors(si);
904
Elliott Hughesbedfe382012-08-14 14:07:59 -0700905 for (unsigned* d = si->dynamic; *d; d += 2) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800906 if(d[0] == DT_NEEDED){
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200907 soinfo *lsi = find_loaded_library(si->strtab + d[1]);
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200908 if (lsi) {
Iliyan Malchev6ed80c82009-09-28 19:38:04 -0700909 TRACE("%5d %s needs to unload %s\n", pid,
910 si->name, lsi->name);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200911 soinfo_unload(lsi);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700912 } else {
913 // TODO: should we return -1 in this case?
Elliott Hughes46882792012-08-03 16:49:39 -0700914 DL_ERR("\"%s\": could not unload dependent library",
915 si->name);
Elliott Hughesbedfe382012-08-14 14:07:59 -0700916 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800917 }
918 }
919
920 munmap((char *)si->base, si->size);
Iliyan Malchev5e12d7e2009-03-24 19:02:00 -0700921 notify_gdb_of_unload(si);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200922 soinfo_free(si);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800923 si->refcount = 0;
Elliott Hughesbedfe382012-08-14 14:07:59 -0700924 } else {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800925 si->refcount--;
926 PRINT("%5d not unloading '%s', decrementing refcount to %d\n",
927 pid, si->name, si->refcount);
928 }
Elliott Hughesbedfe382012-08-14 14:07:59 -0700929 return 0;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800930}
931
932/* TODO: don't use unsigned for addrs below. It works, but is not
933 * ideal. They should probably be either uint32_t, Elf32_Addr, or unsigned
934 * long.
935 */
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +0200936static int soinfo_relocate(soinfo *si, Elf32_Rel *rel, unsigned count,
937 soinfo *needed[])
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800938{
939 Elf32_Sym *symtab = si->symtab;
940 const char *strtab = si->strtab;
941 Elf32_Sym *s;
Ji-Hwan Leef186a182012-05-31 20:20:36 +0900942 Elf32_Addr offset;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800943 Elf32_Rel *start = rel;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800944
Elliott Hughes46882792012-08-03 16:49:39 -0700945 for (size_t idx = 0; idx < count; ++idx, ++rel) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800946 unsigned type = ELF32_R_TYPE(rel->r_info);
947 unsigned sym = ELF32_R_SYM(rel->r_info);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +0200948 unsigned reloc = (unsigned)(rel->r_offset + si->load_bias);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800949 unsigned sym_addr = 0;
950 char *sym_name = NULL;
951
952 DEBUG("%5d Processing '%s' relocation at index %d\n", pid,
953 si->name, idx);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700954 if (type == 0) { // R_*_NONE
955 continue;
956 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800957 if(sym != 0) {
Dima Zavind1b40d82009-05-12 10:59:09 -0700958 sym_name = (char *)(strtab + symtab[sym].st_name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -0700959 bool ignore_local = false;
960#if defined(ANDROID_ARM_LINKER)
961 ignore_local = (type == R_ARM_COPY);
962#endif
963 s = soinfo_do_lookup(si, sym_name, &offset, needed, ignore_local);
Doug Kwane8238072009-10-26 12:05:23 -0700964 if(s == NULL) {
965 /* We only allow an undefined symbol if this is a weak
966 reference.. */
967 s = &symtab[sym];
968 if (ELF32_ST_BIND(s->st_info) != STB_WEAK) {
Elliott Hughese9b6fc62012-08-29 13:10:54 -0700969 DL_ERR("cannot locate symbol \"%s\" referenced by \"%s\"...", sym_name, si->name);
Doug Kwane8238072009-10-26 12:05:23 -0700970 return -1;
971 }
972
973 /* IHI0044C AAELF 4.5.1.1:
974
975 Libraries are not searched to resolve weak references.
976 It is not an error for a weak reference to remain
977 unsatisfied.
978
979 During linking, the value of an undefined weak reference is:
980 - Zero if the relocation type is absolute
981 - The address of the place if the relocation is pc-relative
Elliott Hughesbedfe382012-08-14 14:07:59 -0700982 - The address of nominal base address if the relocation
Doug Kwane8238072009-10-26 12:05:23 -0700983 type is base-relative.
984 */
985
986 switch (type) {
987#if defined(ANDROID_ARM_LINKER)
988 case R_ARM_JUMP_SLOT:
989 case R_ARM_GLOB_DAT:
990 case R_ARM_ABS32:
991 case R_ARM_RELATIVE: /* Don't care. */
Doug Kwane8238072009-10-26 12:05:23 -0700992#elif defined(ANDROID_X86_LINKER)
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700993 case R_386_JMP_SLOT:
Doug Kwane8238072009-10-26 12:05:23 -0700994 case R_386_GLOB_DAT:
995 case R_386_32:
996 case R_386_RELATIVE: /* Dont' care. */
997#endif /* ANDROID_*_LINKER */
998 /* sym_addr was initialized to be zero above or relocation
999 code below does not care about value of sym_addr.
1000 No need to do anything. */
1001 break;
1002
1003#if defined(ANDROID_X86_LINKER)
1004 case R_386_PC32:
1005 sym_addr = reloc;
1006 break;
1007#endif /* ANDROID_X86_LINKER */
1008
1009#if defined(ANDROID_ARM_LINKER)
1010 case R_ARM_COPY:
1011 /* Fall through. Can't really copy if weak symbol is
1012 not found in run-time. */
1013#endif /* ANDROID_ARM_LINKER */
1014 default:
Elliott Hughes46882792012-08-03 16:49:39 -07001015 DL_ERR("unknown weak reloc type %d @ %p (%d)",
1016 type, rel, (int) (rel - start));
Doug Kwane8238072009-10-26 12:05:23 -07001017 return -1;
1018 }
1019 } else {
1020 /* We got a definition. */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001021#if 0
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001022 if((base == 0) && (si->base != 0)){
1023 /* linking from libraries to main image is bad */
Elliott Hughes46882792012-08-03 16:49:39 -07001024 DL_ERR("cannot locate \"%s\"...",
1025 strtab + symtab[sym].st_name);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001026 return -1;
1027 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001028#endif
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001029 sym_addr = (unsigned)(s->st_value + offset);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001030 }
Elliott Hughesbedfe382012-08-14 14:07:59 -07001031 count_relocation(kRelocSymbol);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001032 } else {
Doug Kwane8238072009-10-26 12:05:23 -07001033 s = NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001034 }
1035
1036/* TODO: This is ugly. Split up the relocations by arch into
1037 * different files.
1038 */
1039 switch(type){
1040#if defined(ANDROID_ARM_LINKER)
1041 case R_ARM_JUMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001042 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001043 MARK(rel->r_offset);
1044 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1045 reloc, sym_addr, sym_name);
1046 *((unsigned*)reloc) = sym_addr;
1047 break;
1048 case R_ARM_GLOB_DAT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001049 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001050 MARK(rel->r_offset);
1051 TRACE_TYPE(RELO, "%5d RELO GLOB_DAT %08x <- %08x %s\n", pid,
1052 reloc, sym_addr, sym_name);
1053 *((unsigned*)reloc) = sym_addr;
1054 break;
1055 case R_ARM_ABS32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001056 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001057 MARK(rel->r_offset);
1058 TRACE_TYPE(RELO, "%5d RELO ABS %08x <- %08x %s\n", pid,
1059 reloc, sym_addr, sym_name);
1060 *((unsigned*)reloc) += sym_addr;
1061 break;
David 'Digit' Turner34ea5112009-11-17 14:56:26 -08001062 case R_ARM_REL32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001063 count_relocation(kRelocRelative);
David 'Digit' Turner34ea5112009-11-17 14:56:26 -08001064 MARK(rel->r_offset);
1065 TRACE_TYPE(RELO, "%5d RELO REL32 %08x <- %08x - %08x %s\n", pid,
1066 reloc, sym_addr, rel->r_offset, sym_name);
1067 *((unsigned*)reloc) += sym_addr - rel->r_offset;
1068 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001069#elif defined(ANDROID_X86_LINKER)
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001070 case R_386_JMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001071 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001072 MARK(rel->r_offset);
1073 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1074 reloc, sym_addr, sym_name);
1075 *((unsigned*)reloc) = sym_addr;
1076 break;
1077 case R_386_GLOB_DAT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001078 count_relocation(kRelocAbsolute);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001079 MARK(rel->r_offset);
1080 TRACE_TYPE(RELO, "%5d RELO GLOB_DAT %08x <- %08x %s\n", pid,
1081 reloc, sym_addr, sym_name);
1082 *((unsigned*)reloc) = sym_addr;
1083 break;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001084#elif defined(ANDROID_MIPS_LINKER)
1085 case R_MIPS_JUMP_SLOT:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001086 count_relocation(kRelocAbsolute);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001087 MARK(rel->r_offset);
1088 TRACE_TYPE(RELO, "%5d RELO JMP_SLOT %08x <- %08x %s\n", pid,
1089 reloc, sym_addr, sym_name);
1090 *((unsigned*)reloc) = sym_addr;
1091 break;
1092 case R_MIPS_REL32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001093 count_relocation(kRelocAbsolute);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001094 MARK(rel->r_offset);
1095 TRACE_TYPE(RELO, "%5d RELO REL32 %08x <- %08x %s\n", pid,
1096 reloc, sym_addr, (sym_name) ? sym_name : "*SECTIONHDR*");
1097 if (s) {
1098 *((unsigned*)reloc) += sym_addr;
1099 } else {
1100 *((unsigned*)reloc) += si->base;
1101 }
1102 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001103#endif /* ANDROID_*_LINKER */
1104
1105#if defined(ANDROID_ARM_LINKER)
1106 case R_ARM_RELATIVE:
1107#elif defined(ANDROID_X86_LINKER)
1108 case R_386_RELATIVE:
1109#endif /* ANDROID_*_LINKER */
Elliott Hughesbedfe382012-08-14 14:07:59 -07001110 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001111 MARK(rel->r_offset);
Elliott Hughes46882792012-08-03 16:49:39 -07001112 if (sym) {
1113 DL_ERR("odd RELATIVE form...", pid);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001114 return -1;
1115 }
1116 TRACE_TYPE(RELO, "%5d RELO RELATIVE %08x <- +%08x\n", pid,
1117 reloc, si->base);
1118 *((unsigned*)reloc) += si->base;
1119 break;
1120
1121#if defined(ANDROID_X86_LINKER)
1122 case R_386_32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001123 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001124 MARK(rel->r_offset);
1125
1126 TRACE_TYPE(RELO, "%5d RELO R_386_32 %08x <- +%08x %s\n", pid,
1127 reloc, sym_addr, sym_name);
1128 *((unsigned *)reloc) += (unsigned)sym_addr;
1129 break;
1130
1131 case R_386_PC32:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001132 count_relocation(kRelocRelative);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001133 MARK(rel->r_offset);
1134 TRACE_TYPE(RELO, "%5d RELO R_386_PC32 %08x <- "
1135 "+%08x (%08x - %08x) %s\n", pid, reloc,
1136 (sym_addr - reloc), sym_addr, reloc, sym_name);
1137 *((unsigned *)reloc) += (unsigned)(sym_addr - reloc);
1138 break;
1139#endif /* ANDROID_X86_LINKER */
1140
1141#ifdef ANDROID_ARM_LINKER
1142 case R_ARM_COPY:
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001143 if ((si->flags & FLAG_EXE) == 0) {
1144 /*
1145 * http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044d/IHI0044D_aaelf.pdf
1146 *
1147 * Section 4.7.1.10 "Dynamic relocations"
1148 * R_ARM_COPY may only appear in executable objects where e_type is
1149 * set to ET_EXEC.
1150 *
1151 * TODO: FLAG_EXE is set for both ET_DYN and ET_EXEC executables.
1152 * We should explicitly disallow ET_DYN executables from having
1153 * R_ARM_COPY relocations.
1154 */
1155 DL_ERR("%s R_ARM_COPY relocations only supported for ET_EXEC", si->name);
1156 return -1;
1157 }
Elliott Hughesbedfe382012-08-14 14:07:59 -07001158 count_relocation(kRelocCopy);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001159 MARK(rel->r_offset);
1160 TRACE_TYPE(RELO, "%5d RELO %08x <- %d @ %08x %s\n", pid,
1161 reloc, s->st_size, sym_addr, sym_name);
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001162 if (reloc == sym_addr) {
1163 DL_ERR("Internal linker error detected. reloc == symaddr");
1164 return -1;
1165 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001166 memcpy((void*)reloc, (void*)sym_addr, s->st_size);
1167 break;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001168#endif /* ANDROID_ARM_LINKER */
1169
1170 default:
Elliott Hughes46882792012-08-03 16:49:39 -07001171 DL_ERR("unknown reloc type %d @ %p (%d)",
1172 type, rel, (int) (rel - start));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001173 return -1;
1174 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001175 }
1176 return 0;
1177}
1178
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001179#ifdef ANDROID_MIPS_LINKER
Elliott Hughesbedfe382012-08-14 14:07:59 -07001180static int mips_relocate_got(soinfo* si, soinfo* needed[]) {
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001181 unsigned *got;
1182 unsigned local_gotno, gotsym, symtabno;
1183 Elf32_Sym *symtab, *sym;
1184 unsigned g;
1185
1186 got = si->plt_got;
1187 local_gotno = si->mips_local_gotno;
1188 gotsym = si->mips_gotsym;
1189 symtabno = si->mips_symtabno;
1190 symtab = si->symtab;
1191
1192 /*
1193 * got[0] is address of lazy resolver function
1194 * got[1] may be used for a GNU extension
Elliott Hughesbedfe382012-08-14 14:07:59 -07001195 * set it to a recognizable address in case someone calls it
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001196 * (should be _rtld_bind_start)
1197 * FIXME: maybe this should be in a separate routine
1198 */
1199
1200 if ((si->flags & FLAG_LINKER) == 0) {
1201 g = 0;
1202 got[g++] = 0xdeadbeef;
1203 if (got[g] & 0x80000000) {
1204 got[g++] = 0xdeadfeed;
1205 }
1206 /*
1207 * Relocate the local GOT entries need to be relocated
1208 */
1209 for (; g < local_gotno; g++) {
1210 got[g] += si->load_bias;
1211 }
1212 }
1213
1214 /* Now for the global GOT entries */
1215 sym = symtab + gotsym;
1216 got = si->plt_got + local_gotno;
1217 for (g = gotsym; g < symtabno; g++, sym++, got++) {
1218 const char *sym_name;
1219 unsigned base;
1220 Elf32_Sym *s;
1221
1222 /* This is an undefined reference... try to locate it */
1223 sym_name = si->strtab + sym->st_name;
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001224 s = soinfo_do_lookup(si, sym_name, &base, needed, false);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001225 if (s == NULL) {
1226 /* We only allow an undefined symbol if this is a weak
1227 reference.. */
1228 s = &symtab[g];
1229 if (ELF32_ST_BIND(s->st_info) != STB_WEAK) {
Elliott Hughes46882792012-08-03 16:49:39 -07001230 DL_ERR("cannot locate \"%s\"...", sym_name);
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001231 return -1;
1232 }
1233 *got = 0;
1234 }
1235 else {
1236 /* FIXME: is this sufficient?
1237 * For reference see NetBSD link loader
1238 * 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
1239 */
1240 *got = base + s->st_value;
1241 }
1242 }
1243 return 0;
1244}
1245#endif
1246
David 'Digit' Turner82156792009-05-18 14:37:41 +02001247/* Please read the "Initialization and Termination functions" functions.
1248 * of the linker design note in bionic/linker/README.TXT to understand
1249 * what the following code is doing.
1250 *
1251 * The important things to remember are:
1252 *
1253 * DT_PREINIT_ARRAY must be called first for executables, and should
1254 * not appear in shared libraries.
1255 *
1256 * DT_INIT should be called before DT_INIT_ARRAY if both are present
1257 *
1258 * DT_FINI should be called after DT_FINI_ARRAY if both are present
1259 *
1260 * DT_FINI_ARRAY must be parsed in reverse order.
1261 */
1262
1263static void call_array(unsigned *ctor, int count, int reverse)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001264{
David 'Digit' Turner82156792009-05-18 14:37:41 +02001265 int n, inc = 1;
1266
1267 if (reverse) {
1268 ctor += (count-1);
1269 inc = -1;
1270 }
1271
1272 for(n = count; n > 0; n--) {
1273 TRACE("[ %5d Looking at %s *0x%08x == 0x%08x ]\n", pid,
1274 reverse ? "dtor" : "ctor",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001275 (unsigned)ctor, (unsigned)*ctor);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001276 void (*func)() = (void (*)()) *ctor;
1277 ctor += inc;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001278 if(((int) func == 0) || ((int) func == -1)) continue;
1279 TRACE("[ %5d Calling func @ 0x%08x ]\n", pid, (unsigned)func);
1280 func();
1281 }
1282}
1283
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001284static void soinfo_call_preinit_constructors(soinfo *si)
1285{
1286 TRACE("[ %5d Calling preinit_array @ 0x%08x [%d] for '%s' ]\n",
1287 pid, (unsigned)si->preinit_array, si->preinit_array_count,
1288 si->name);
1289 call_array(si->preinit_array, si->preinit_array_count, 0);
1290 TRACE("[ %5d Done calling preinit_array for '%s' ]\n", pid, si->name);
1291}
1292
David 'Digit' Turner16084162012-06-12 16:25:37 +02001293void soinfo_call_constructors(soinfo *si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001294{
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001295 if (si->constructors_called)
1296 return;
1297
Jesse Hallf5d16932012-01-30 15:39:57 -08001298 // Set this before actually calling the constructors, otherwise it doesn't
1299 // protect against recursive constructor calls. One simple example of
1300 // constructor recursion is the libc debug malloc, which is implemented in
1301 // libc_malloc_debug_leak.so:
1302 // 1. The program depends on libc, so libc's constructor is called here.
1303 // 2. The libc constructor calls dlopen() to load libc_malloc_debug_leak.so.
David 'Digit' Turner16084162012-06-12 16:25:37 +02001304 // 3. dlopen() calls soinfo_call_constructors() with the newly created
Jesse Hallf5d16932012-01-30 15:39:57 -08001305 // soinfo for libc_malloc_debug_leak.so.
David 'Digit' Turner16084162012-06-12 16:25:37 +02001306 // 4. The debug so depends on libc, so soinfo_call_constructors() is
Jesse Hallf5d16932012-01-30 15:39:57 -08001307 // called again with the libc soinfo. If it doesn't trigger the early-
1308 // out above, the libc constructor will be called again (recursively!).
1309 si->constructors_called = 1;
1310
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001311 if (!(si->flags & FLAG_EXE) && si->preinit_array) {
1312 DL_ERR("shared library \"%s\" has a preinit_array table @ 0x%08x. "
1313 "This is INVALID.", si->name, (unsigned) si->preinit_array);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001314 }
1315
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001316 if (si->dynamic) {
1317 unsigned *d;
1318 for(d = si->dynamic; *d; d += 2) {
1319 if(d[0] == DT_NEEDED){
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001320 soinfo* lsi = find_loaded_library(si->strtab + d[1]);
1321 if (!lsi) {
1322 DL_ERR("\"%s\": could not initialize dependent library",
1323 si->name);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001324 } else {
David 'Digit' Turner16084162012-06-12 16:25:37 +02001325 soinfo_call_constructors(lsi);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001326 }
1327 }
1328 }
1329 }
1330
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001331 if (si->init_func) {
1332 TRACE("[ %5d Calling init_func @ 0x%08x for '%s' ]\n", pid,
1333 (unsigned)si->init_func, si->name);
1334 si->init_func();
1335 TRACE("[ %5d Done calling init_func for '%s' ]\n", pid, si->name);
1336 }
1337
1338 if (si->init_array) {
1339 TRACE("[ %5d Calling init_array @ 0x%08x [%d] for '%s' ]\n", pid,
1340 (unsigned)si->init_array, si->init_array_count, si->name);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001341 call_array(si->init_array, si->init_array_count, 0);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001342 TRACE("[ %5d Done calling init_array for '%s' ]\n", pid, si->name);
1343 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001344
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001345}
David 'Digit' Turner82156792009-05-18 14:37:41 +02001346
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001347static void call_destructors(soinfo *si)
1348{
1349 if (si->fini_array) {
1350 TRACE("[ %5d Calling fini_array @ 0x%08x [%d] for '%s' ]\n", pid,
1351 (unsigned)si->fini_array, si->fini_array_count, si->name);
David 'Digit' Turner82156792009-05-18 14:37:41 +02001352 call_array(si->fini_array, si->fini_array_count, 1);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001353 TRACE("[ %5d Done calling fini_array for '%s' ]\n", pid, si->name);
1354 }
1355
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001356 if (si->fini_func) {
1357 TRACE("[ %5d Calling fini_func @ 0x%08x for '%s' ]\n", pid,
1358 (unsigned)si->fini_func, si->name);
1359 si->fini_func();
1360 TRACE("[ %5d Done calling fini_func for '%s' ]\n", pid, si->name);
1361 }
1362}
1363
1364/* Force any of the closed stdin, stdout and stderr to be associated with
1365 /dev/null. */
1366static int nullify_closed_stdio (void)
1367{
1368 int dev_null, i, status;
1369 int return_value = 0;
1370
David 'Digit' Turner16084162012-06-12 16:25:37 +02001371 dev_null = TEMP_FAILURE_RETRY(open("/dev/null", O_RDWR));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001372 if (dev_null < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001373 DL_ERR("cannot open /dev/null: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001374 return -1;
1375 }
1376 TRACE("[ %5d Opened /dev/null file-descriptor=%d]\n", pid, dev_null);
1377
1378 /* If any of the stdio file descriptors is valid and not associated
1379 with /dev/null, dup /dev/null to it. */
1380 for (i = 0; i < 3; i++) {
1381 /* If it is /dev/null already, we are done. */
Elliott Hughes46882792012-08-03 16:49:39 -07001382 if (i == dev_null) {
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001383 continue;
Elliott Hughes46882792012-08-03 16:49:39 -07001384 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001385
1386 TRACE("[ %5d Nullifying stdio file descriptor %d]\n", pid, i);
Elliott Hughes46882792012-08-03 16:49:39 -07001387 status = TEMP_FAILURE_RETRY(fcntl(i, F_GETFL));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001388
Elliott Hughes46882792012-08-03 16:49:39 -07001389 /* If file is opened, we are good. */
1390 if (status != -1) {
1391 continue;
1392 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001393
1394 /* The only error we allow is that the file descriptor does not
1395 exist, in which case we dup /dev/null to it. */
1396 if (errno != EBADF) {
Elliott Hughes46882792012-08-03 16:49:39 -07001397 DL_ERR("fcntl failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001398 return_value = -1;
1399 continue;
1400 }
1401
1402 /* Try dupping /dev/null to this stdio file descriptor and
1403 repeat if there is a signal. Note that any errors in closing
1404 the stdio descriptor are lost. */
Elliott Hughes46882792012-08-03 16:49:39 -07001405 status = TEMP_FAILURE_RETRY(dup2(dev_null, i));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001406 if (status < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001407 DL_ERR("dup2 failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001408 return_value = -1;
1409 continue;
1410 }
1411 }
1412
1413 /* If /dev/null is not one of the stdio file descriptors, close it. */
1414 if (dev_null > 2) {
1415 TRACE("[ %5d Closing /dev/null file-descriptor=%d]\n", pid, dev_null);
Elliott Hughes46882792012-08-03 16:49:39 -07001416 status = TEMP_FAILURE_RETRY(close(dev_null));
1417 if (status == -1) {
1418 DL_ERR("close failed: %s", strerror(errno));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001419 return_value = -1;
1420 }
1421 }
1422
1423 return return_value;
1424}
1425
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001426static int soinfo_link_image(soinfo *si)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001427{
1428 unsigned *d;
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001429 /* "base" might wrap around UINT32_MAX. */
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001430 Elf32_Addr base = si->load_bias;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001431 const Elf32_Phdr *phdr = si->phdr;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001432 int phnum = si->phnum;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001433 int relocating_linker = (si->flags & FLAG_LINKER) != 0;
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001434 soinfo **needed, **pneeded;
1435 size_t dynamic_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001436
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001437 /* We can't debug anything until the linker is relocated */
1438 if (!relocating_linker) {
1439 INFO("[ %5d linking %s ]\n", pid, si->name);
1440 DEBUG("%5d si->base = 0x%08x si->flags = 0x%08x\n", pid,
1441 si->base, si->flags);
1442 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001443
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001444 /* Extract dynamic section */
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001445 phdr_table_get_dynamic_section(phdr, phnum, base, &si->dynamic,
1446 &dynamic_count);
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001447 if (si->dynamic == NULL) {
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001448 if (!relocating_linker) {
Elliott Hughes46882792012-08-03 16:49:39 -07001449 DL_ERR("missing PT_DYNAMIC?!");
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001450 }
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001451 goto fail;
1452 } else {
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001453 if (!relocating_linker) {
1454 DEBUG("%5d dynamic = %p\n", pid, si->dynamic);
1455 }
David 'Digit' Turner63f99f42012-06-19 00:08:39 +02001456 }
1457
1458#ifdef ANDROID_ARM_LINKER
1459 (void) phdr_table_get_arm_exidx(phdr, phnum, base,
1460 &si->ARM_exidx, &si->ARM_exidx_count);
1461#endif
1462
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001463 /* extract useful information from dynamic section */
1464 for(d = si->dynamic; *d; d++){
1465 DEBUG("%5d d = %p, d[0] = 0x%08x d[1] = 0x%08x\n", pid, d, d[0], d[1]);
1466 switch(*d++){
1467 case DT_HASH:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001468 si->nbucket = ((unsigned *) (base + *d))[0];
1469 si->nchain = ((unsigned *) (base + *d))[1];
1470 si->bucket = (unsigned *) (base + *d + 8);
1471 si->chain = (unsigned *) (base + *d + 8 + si->nbucket * 4);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001472 break;
1473 case DT_STRTAB:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001474 si->strtab = (const char *) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001475 break;
1476 case DT_SYMTAB:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001477 si->symtab = (Elf32_Sym *) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001478 break;
1479 case DT_PLTREL:
1480 if(*d != DT_REL) {
Erik Gillingd00d23a2009-07-22 17:06:11 -07001481 DL_ERR("DT_RELA not supported");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001482 goto fail;
1483 }
1484 break;
1485 case DT_JMPREL:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001486 si->plt_rel = (Elf32_Rel*) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001487 break;
1488 case DT_PLTRELSZ:
1489 si->plt_rel_count = *d / 8;
1490 break;
1491 case DT_REL:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001492 si->rel = (Elf32_Rel*) (base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001493 break;
1494 case DT_RELSZ:
1495 si->rel_count = *d / 8;
1496 break;
1497 case DT_PLTGOT:
1498 /* Save this in case we decide to do lazy binding. We don't yet. */
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001499 si->plt_got = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001500 break;
1501 case DT_DEBUG:
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001502#if !defined(ANDROID_MIPS_LINKER)
Elliott Hughesbedfe382012-08-14 14:07:59 -07001503 // Set the DT_DEBUG entry to the address of _r_debug for GDB
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001504 *d = (int) &_r_debug;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001505#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001506 break;
Shin-ichiro KAWASAKIad13c572009-11-06 10:36:37 +09001507 case DT_RELA:
Elliott Hughes46882792012-08-03 16:49:39 -07001508 DL_ERR("DT_RELA not supported");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001509 goto fail;
1510 case DT_INIT:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001511 si->init_func = (void (*)(void))(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001512 DEBUG("%5d %s constructors (init func) found at %p\n",
1513 pid, si->name, si->init_func);
1514 break;
1515 case DT_FINI:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001516 si->fini_func = (void (*)(void))(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001517 DEBUG("%5d %s destructors (fini func) found at %p\n",
1518 pid, si->name, si->fini_func);
1519 break;
1520 case DT_INIT_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001521 si->init_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001522 DEBUG("%5d %s constructors (init_array) found at %p\n",
1523 pid, si->name, si->init_array);
1524 break;
1525 case DT_INIT_ARRAYSZ:
1526 si->init_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1527 break;
1528 case DT_FINI_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001529 si->fini_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001530 DEBUG("%5d %s destructors (fini_array) found at %p\n",
1531 pid, si->name, si->fini_array);
1532 break;
1533 case DT_FINI_ARRAYSZ:
1534 si->fini_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1535 break;
1536 case DT_PREINIT_ARRAY:
Ji-Hwan Leef186a182012-05-31 20:20:36 +09001537 si->preinit_array = (unsigned *)(base + *d);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001538 DEBUG("%5d %s constructors (preinit_array) found at %p\n",
1539 pid, si->name, si->preinit_array);
1540 break;
1541 case DT_PREINIT_ARRAYSZ:
1542 si->preinit_array_count = ((unsigned)*d) / sizeof(Elf32_Addr);
1543 break;
1544 case DT_TEXTREL:
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001545 si->has_text_relocations = true;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001546 break;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001547#if defined(ANDROID_MIPS_LINKER)
1548 case DT_NEEDED:
1549 case DT_STRSZ:
1550 case DT_SYMENT:
1551 case DT_RELENT:
1552 break;
1553 case DT_MIPS_RLD_MAP:
Elliott Hughesbedfe382012-08-14 14:07:59 -07001554 // Set the DT_MIPS_RLD_MAP entry to the address of _r_debug for GDB.
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001555 {
Elliott Hughesbedfe382012-08-14 14:07:59 -07001556 r_debug** dp = (r_debug**) *d;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001557 *dp = &_r_debug;
1558 }
1559 break;
1560 case DT_MIPS_RLD_VERSION:
1561 case DT_MIPS_FLAGS:
1562 case DT_MIPS_BASE_ADDRESS:
1563 case DT_MIPS_UNREFEXTNO:
1564 case DT_MIPS_RWPLT:
1565 break;
1566
1567 case DT_MIPS_PLTGOT:
1568#if 0
1569 /* not yet... */
1570 si->mips_pltgot = (unsigned *)(si->base + *d);
1571#endif
1572 break;
1573
1574 case DT_MIPS_SYMTABNO:
1575 si->mips_symtabno = *d;
1576 break;
1577
1578 case DT_MIPS_LOCAL_GOTNO:
1579 si->mips_local_gotno = *d;
1580 break;
1581
1582 case DT_MIPS_GOTSYM:
1583 si->mips_gotsym = *d;
1584 break;
1585
1586 default:
1587 DEBUG("%5d Unused DT entry: type 0x%08x arg 0x%08x\n",
1588 pid, d[-1], d[0]);
1589 break;
1590#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001591 }
1592 }
1593
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001594 DEBUG("%5d si->base = 0x%08x, si->strtab = %p, si->symtab = %p\n",
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001595 pid, si->base, si->strtab, si->symtab);
1596
1597 if((si->strtab == 0) || (si->symtab == 0)) {
Elliott Hughes46882792012-08-03 16:49:39 -07001598 DL_ERR("missing essential tables");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001599 goto fail;
1600 }
1601
Matt Fischer4fd42c12009-12-31 12:09:10 -06001602 /* if this is the main executable, then load all of the preloads now */
1603 if(si->flags & FLAG_EXE) {
1604 int i;
1605 memset(preloads, 0, sizeof(preloads));
1606 for(i = 0; ldpreload_names[i] != NULL; i++) {
1607 soinfo *lsi = find_library(ldpreload_names[i]);
1608 if(lsi == 0) {
1609 strlcpy(tmp_err_buf, linker_get_error(), sizeof(tmp_err_buf));
Elliott Hughes46882792012-08-03 16:49:39 -07001610 DL_ERR("could not load library \"%s\" needed by \"%s\"; caused by %s",
1611 ldpreload_names[i], si->name, tmp_err_buf);
Matt Fischer4fd42c12009-12-31 12:09:10 -06001612 goto fail;
1613 }
1614 lsi->refcount++;
1615 preloads[i] = lsi;
1616 }
1617 }
1618
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001619 /* dynamic_count is an upper bound for the number of needed libs */
1620 pneeded = needed = (soinfo**) alloca((1 + dynamic_count) * sizeof(soinfo*));
1621
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001622 for(d = si->dynamic; *d; d += 2) {
1623 if(d[0] == DT_NEEDED){
1624 DEBUG("%5d %s needs %s\n", pid, si->name, si->strtab + d[1]);
Dima Zavin2e855792009-05-20 18:28:09 -07001625 soinfo *lsi = find_library(si->strtab + d[1]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001626 if(lsi == 0) {
Dima Zavin03531952009-05-29 17:30:25 -07001627 strlcpy(tmp_err_buf, linker_get_error(), sizeof(tmp_err_buf));
Elliott Hughes46882792012-08-03 16:49:39 -07001628 DL_ERR("could not load library \"%s\" needed by \"%s\"; caused by %s",
1629 si->strtab + d[1], si->name, tmp_err_buf);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001630 goto fail;
1631 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001632 *pneeded++ = lsi;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001633 lsi->refcount++;
1634 }
1635 }
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001636 *pneeded = NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001637
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001638 if (si->has_text_relocations) {
1639 /* Unprotect the segments, i.e. make them writable, to allow
1640 * text relocations to work properly. We will later call
1641 * phdr_table_protect_segments() after all of them are applied
1642 * and all constructors are run.
1643 */
1644 if (phdr_table_unprotect_segments(si->phdr, si->phnum, si->load_bias) < 0) {
1645 DL_ERR("can't unprotect loadable segments for \"%s\": %s",
1646 si->name, strerror(errno));
1647 goto fail;
1648 }
1649 }
1650
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001651 if(si->plt_rel) {
1652 DEBUG("[ %5d relocating %s plt ]\n", pid, si->name );
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001653 if(soinfo_relocate(si, si->plt_rel, si->plt_rel_count, needed))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001654 goto fail;
1655 }
1656 if(si->rel) {
1657 DEBUG("[ %5d relocating %s ]\n", pid, si->name );
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001658 if(soinfo_relocate(si, si->rel, si->rel_count, needed))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001659 goto fail;
1660 }
1661
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001662#ifdef ANDROID_MIPS_LINKER
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001663 if(mips_relocate_got(si, needed)) {
Raghu Gandhamd7daacb2012-07-31 12:07:22 -07001664 goto fail;
1665 }
1666#endif
1667
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001668 si->flags |= FLAG_LINKED;
1669 DEBUG("[ %5d finished linking %s ]\n", pid, si->name);
1670
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001671 if (si->has_text_relocations) {
1672 /* All relocations are done, we can protect our segments back to
1673 * read-only. */
1674 if (phdr_table_protect_segments(si->phdr, si->phnum, si->load_bias) < 0) {
1675 DL_ERR("can't protect segments for \"%s\": %s",
1676 si->name, strerror(errno));
1677 goto fail;
1678 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001679 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001680
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001681 /* We can also turn on GNU RELRO protection */
1682 if (phdr_table_protect_gnu_relro(si->phdr, si->phnum, si->load_bias) < 0) {
Elliott Hughes46882792012-08-03 16:49:39 -07001683 DL_ERR("can't enable GNU RELRO protection for \"%s\": %s",
1684 si->name, strerror(errno));
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001685 goto fail;
Nick Kralevich9ec0f032012-02-28 10:40:00 -08001686 }
1687
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001688 /* If this is a SET?ID program, dup /dev/null to opened stdin,
1689 stdout and stderr to close a security hole described in:
1690
1691 ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-02:23.stdio.asc
1692
1693 */
Elliott Hughes46882792012-08-03 16:49:39 -07001694 if (program_is_setuid) {
1695 nullify_closed_stdio();
1696 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001697 notify_gdb_of_load(si);
1698 return 0;
1699
1700fail:
Dima Zavina7161902010-08-17 15:56:40 -07001701 ERROR("failed to link %s\n", si->name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001702 si->flags |= FLAG_ERROR;
1703 return -1;
1704}
1705
Elliott Hughes46882792012-08-03 16:49:39 -07001706static void parse_path(const char* path, const char* delimiters,
1707 const char** array, char* buf, size_t buf_size, size_t max_count)
David Bartleybc3a5c22009-06-02 18:27:28 -07001708{
Elliott Hughes46882792012-08-03 16:49:39 -07001709 if (path == NULL) {
1710 return;
David Bartleybc3a5c22009-06-02 18:27:28 -07001711 }
1712
Elliott Hughes46882792012-08-03 16:49:39 -07001713 size_t len = strlcpy(buf, path, buf_size);
David Bartleybc3a5c22009-06-02 18:27:28 -07001714
Elliott Hughes46882792012-08-03 16:49:39 -07001715 size_t i = 0;
1716 char* buf_p = buf;
1717 while (i < max_count && (array[i] = strsep(&buf_p, delimiters))) {
1718 if (*array[i] != '\0') {
Matt Fischer4fd42c12009-12-31 12:09:10 -06001719 ++i;
1720 }
1721 }
1722
Elliott Hughes46882792012-08-03 16:49:39 -07001723 // Forget the last path if we had to truncate; this occurs if the 2nd to
1724 // last char isn't '\0' (i.e. wasn't originally a delimiter).
1725 if (i > 0 && len >= buf_size && buf[buf_size - 2] != '\0') {
1726 array[i - 1] = NULL;
Matt Fischer4fd42c12009-12-31 12:09:10 -06001727 } else {
Elliott Hughes46882792012-08-03 16:49:39 -07001728 array[i] = NULL;
Matt Fischer4fd42c12009-12-31 12:09:10 -06001729 }
1730}
1731
Elliott Hughes46882792012-08-03 16:49:39 -07001732static void parse_LD_LIBRARY_PATH(const char* path) {
1733 parse_path(path, ":", ldpaths,
1734 ldpaths_buf, sizeof(ldpaths_buf), LDPATH_MAX);
1735}
1736
1737static void parse_LD_PRELOAD(const char* path) {
1738 // We have historically supported ':' as well as ' ' in LD_PRELOAD.
1739 parse_path(path, " :", ldpreload_names,
1740 ldpreloads_buf, sizeof(ldpreloads_buf), LDPRELOAD_MAX);
1741}
1742
Nick Kralevich468319c2011-11-11 15:53:17 -08001743/*
1744 * This code is called after the linker has linked itself and
1745 * fixed it's own GOT. It is safe to make references to externs
1746 * and other non-local data at this point.
1747 */
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001748static unsigned __linker_init_post_relocation(unsigned **elfdata, unsigned linker_base)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001749{
1750 static soinfo linker_soinfo;
1751
1752 int argc = (int) *elfdata;
1753 char **argv = (char**) (elfdata + 1);
Stephen Smalleybb440552012-01-20 10:59:15 -08001754 unsigned *vecs = (unsigned*) (argv + argc + 1);
1755 unsigned *v;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001756 soinfo *si;
Kito Cheng326e85e2012-07-15 00:49:27 +08001757 int i;
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001758 const char *ldpath_env = NULL;
1759 const char *ldpreload_env = NULL;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001760
David 'Digit' Turneref0bd182009-07-17 17:55:01 +02001761 /* NOTE: we store the elfdata pointer on a special location
1762 * of the temporary TLS area in order to pass it to
1763 * the C Library's runtime initializer.
1764 *
1765 * The initializer must clear the slot and reset the TLS
1766 * to point to a different location to ensure that no other
1767 * shared library constructor can access it.
1768 */
Evgeniy Stepanov1a78fbb2012-03-22 18:01:53 +04001769 __libc_init_tls(elfdata);
1770
1771 pid = getpid();
1772
1773#if TIMING
1774 struct timeval t0, t1;
1775 gettimeofday(&t0, 0);
1776#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001777
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001778 /* Initialize environment functions, and get to the ELF aux vectors table */
1779 vecs = linker_env_init(vecs);
1780
Stephen Smalley861b42a2012-01-13 07:48:11 -05001781 /* Check auxv for AT_SECURE first to see if program is setuid, setgid,
1782 has file caps, or caused a SELinux/AppArmor domain transition. */
1783 for (v = vecs; v[0]; v += 2) {
1784 if (v[0] == AT_SECURE) {
1785 /* kernel told us whether to enable secure mode */
1786 program_is_setuid = v[1];
1787 goto sanitize;
1788 }
1789 }
1790
1791 /* Kernel did not provide AT_SECURE - fall back on legacy test. */
1792 program_is_setuid = (getuid() != geteuid()) || (getgid() != getegid());
1793
1794sanitize:
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001795 /* Sanitize environment if we're loading a setuid program */
Elliott Hughesbedfe382012-08-14 14:07:59 -07001796 if (program_is_setuid) {
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001797 linker_env_secure();
Elliott Hughesbedfe382012-08-14 14:07:59 -07001798 }
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001799
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001800 debugger_init();
1801
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001802 /* Get a few environment variables */
1803 {
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -07001804#if LINKER_DEBUG
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001805 const char* env;
1806 env = linker_env_get("DEBUG"); /* XXX: TODO: Change to LD_DEBUG */
1807 if (env)
1808 debug_verbosity = atoi(env);
Nick Kralevich8c4f3ce2012-04-04 12:43:32 -07001809#endif
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001810
1811 /* Normally, these are cleaned by linker_env_secure, but the test
1812 * against program_is_setuid doesn't cost us anything */
1813 if (!program_is_setuid) {
1814 ldpath_env = linker_env_get("LD_LIBRARY_PATH");
1815 ldpreload_env = linker_env_get("LD_PRELOAD");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001816 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001817 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001818
1819 INFO("[ android linker & debugger ]\n");
1820 DEBUG("%5d elfdata @ 0x%08x\n", pid, (unsigned)elfdata);
1821
David 'Digit' Turner16084162012-06-12 16:25:37 +02001822 si = soinfo_alloc(argv[0]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001823 if(si == 0) {
1824 exit(-1);
1825 }
1826
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001827 /* bootstrap the link map, the main exe always needs to be first */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001828 si->flags |= FLAG_EXE;
Elliott Hughesbedfe382012-08-14 14:07:59 -07001829 link_map* map = &(si->linkmap);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001830
1831 map->l_addr = 0;
1832 map->l_name = argv[0];
1833 map->l_prev = NULL;
1834 map->l_next = NULL;
1835
1836 _r_debug.r_map = map;
1837 r_debug_tail = map;
1838
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001839 /* gdb expects the linker to be in the debug shared object list.
1840 * Without this, gdb has trouble locating the linker's ".text"
1841 * and ".plt" sections. Gdb could also potentially use this to
1842 * relocate the offset of our exported 'rtld_db_dlactivity' symbol.
1843 * Don't use soinfo_alloc(), because the linker shouldn't
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001844 * be on the soinfo list.
1845 */
David 'Digit' Turnerbe575592010-12-16 19:52:02 +01001846 strlcpy((char*) linker_soinfo.name, "/system/bin/linker", sizeof linker_soinfo.name);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001847 linker_soinfo.flags = 0;
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05001848 linker_soinfo.base = linker_base;
Ben Cheng06f0e742012-08-10 16:07:02 -07001849 /*
1850 * Set the dynamic field in the link map otherwise gdb will complain with
1851 * the following:
1852 * warning: .dynamic section for "/system/bin/linker" is not at the
1853 * expected address (wrong library or version mismatch?)
1854 */
1855 Elf32_Ehdr *elf_hdr = (Elf32_Ehdr *) linker_base;
1856 Elf32_Phdr *phdr =
1857 (Elf32_Phdr *)((unsigned char *) linker_base + elf_hdr->e_phoff);
Ard Biesheuvel12c78bb2012-08-14 12:30:09 +02001858 phdr_table_get_dynamic_section(phdr, elf_hdr->e_phnum, linker_base,
1859 &linker_soinfo.dynamic, NULL);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001860 insert_soinfo_into_debug_map(&linker_soinfo);
1861
Nick Kralevichd39c3ab2012-08-24 13:25:51 -07001862 /* extract information passed from the kernel */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001863 while(vecs[0] != 0){
1864 switch(vecs[0]){
1865 case AT_PHDR:
1866 si->phdr = (Elf32_Phdr*) vecs[1];
1867 break;
1868 case AT_PHNUM:
1869 si->phnum = (int) vecs[1];
1870 break;
1871 case AT_ENTRY:
1872 si->entry = vecs[1];
1873 break;
1874 }
1875 vecs += 2;
1876 }
1877
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001878 /* Compute the value of si->base. We can't rely on the fact that
1879 * the first entry is the PHDR because this will not be true
1880 * for certain executables (e.g. some in the NDK unit test suite)
1881 */
1882 int nn;
1883 si->base = 0;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02001884 si->size = phdr_table_get_load_size(si->phdr, si->phnum);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001885 si->load_bias = 0;
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001886 for ( nn = 0; nn < si->phnum; nn++ ) {
1887 if (si->phdr[nn].p_type == PT_PHDR) {
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001888 si->load_bias = (Elf32_Addr)si->phdr - si->phdr[nn].p_vaddr;
1889 si->base = (Elf32_Addr) si->phdr - si->phdr[nn].p_offset;
David 'Digit' Turner8180b082011-11-15 17:17:28 +01001890 break;
1891 }
1892 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001893 si->dynamic = (unsigned *)-1;
David 'Digit' Turner67748092010-07-21 16:18:21 -07001894 si->refcount = 1;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001895
Elliott Hughes46882792012-08-03 16:49:39 -07001896 // Use LD_LIBRARY_PATH and LD_PRELOAD (but only if we aren't setuid/setgid).
1897 parse_LD_LIBRARY_PATH(ldpath_env);
1898 parse_LD_PRELOAD(ldpreload_env);
Matt Fischer4fd42c12009-12-31 12:09:10 -06001899
Nick Kralevich5135b3a2012-08-10 21:08:42 -07001900 if(soinfo_link_image(si)) {
Dima Zavin2e855792009-05-20 18:28:09 -07001901 char errmsg[] = "CANNOT LINK EXECUTABLE\n";
1902 write(2, __linker_dl_err_buf, strlen(__linker_dl_err_buf));
1903 write(2, errmsg, sizeof(errmsg));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001904 exit(-1);
1905 }
1906
Evgeniy Stepanov9181a5d2012-08-13 17:58:37 +04001907 soinfo_call_preinit_constructors(si);
1908
Kito Cheng326e85e2012-07-15 00:49:27 +08001909 for(i = 0; preloads[i] != NULL; i++) {
1910 soinfo_call_constructors(preloads[i]);
1911 }
1912
Xiaokang Qin9c3449e2012-09-13 18:07:24 +08001913 /*After the link_image, the si->base is initialized.
1914 *For so lib, the map->l_addr will be updated in notify_gdb_of_load.
1915 *We need to update this value for so exe here. So Unwind_Backtrace
1916 *for some arch like x86 could work correctly within so exe.
1917 */
1918 map->l_addr = si->base;
David 'Digit' Turner16084162012-06-12 16:25:37 +02001919 soinfo_call_constructors(si);
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +04001920
Iliyan Malchev4a9afcb2009-09-29 11:43:20 -07001921#if ALLOW_SYMBOLS_FROM_MAIN
1922 /* Set somain after we've loaded all the libraries in order to prevent
1923 * linking of symbols back to the main image, which is not set up at that
1924 * point yet.
1925 */
1926 somain = si;
1927#endif
1928
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001929#if TIMING
1930 gettimeofday(&t1,NULL);
1931 PRINT("LINKER TIME: %s: %d microseconds\n", argv[0], (int) (
1932 (((long long)t1.tv_sec * 1000000LL) + (long long)t1.tv_usec) -
1933 (((long long)t0.tv_sec * 1000000LL) + (long long)t0.tv_usec)
1934 ));
1935#endif
1936#if STATS
1937 PRINT("RELO STATS: %s: %d abs, %d rel, %d copy, %d symbol\n", argv[0],
Elliott Hughesbedfe382012-08-14 14:07:59 -07001938 linker_stats.count[kRelocAbsolute],
1939 linker_stats.count[kRelocRelative],
1940 linker_stats.count[kRelocCopy],
1941 linker_stats.count[kRelocSymbol]);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001942#endif
1943#if COUNT_PAGES
1944 {
1945 unsigned n;
1946 unsigned i;
1947 unsigned count = 0;
1948 for(n = 0; n < 4096; n++){
1949 if(bitmask[n]){
1950 unsigned x = bitmask[n];
1951 for(i = 0; i < 8; i++){
1952 if(x & 1) count++;
1953 x >>= 1;
1954 }
1955 }
1956 }
1957 PRINT("PAGES MODIFIED: %s: %d (%dKB)\n", argv[0], count, count * 4);
1958 }
1959#endif
1960
1961#if TIMING || STATS || COUNT_PAGES
1962 fflush(stdout);
1963#endif
1964
1965 TRACE("[ %5d Ready to execute '%s' @ 0x%08x ]\n", pid, si->name,
1966 si->entry);
1967 return si->entry;
1968}
Nick Kralevich468319c2011-11-11 15:53:17 -08001969
1970/*
1971 * Find the value of AT_BASE passed to us by the kernel. This is the load
1972 * location of the linker.
1973 */
1974static unsigned find_linker_base(unsigned **elfdata) {
1975 int argc = (int) *elfdata;
1976 char **argv = (char**) (elfdata + 1);
1977 unsigned *vecs = (unsigned*) (argv + argc + 1);
1978 while (vecs[0] != 0) {
1979 vecs++;
1980 }
1981
1982 /* The end of the environment block is marked by two NULL pointers */
1983 vecs++;
1984
1985 while(vecs[0]) {
1986 if (vecs[0] == AT_BASE) {
1987 return vecs[1];
1988 }
1989 vecs += 2;
1990 }
1991
1992 return 0; // should never happen
1993}
1994
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02001995/* Compute the load-bias of an existing executable. This shall only
1996 * be used to compute the load bias of an executable or shared library
1997 * that was loaded by the kernel itself.
1998 *
1999 * Input:
2000 * elf -> address of ELF header, assumed to be at the start of the file.
2001 * Return:
2002 * load bias, i.e. add the value of any p_vaddr in the file to get
2003 * the corresponding address in memory.
2004 */
2005static Elf32_Addr
2006get_elf_exec_load_bias(const Elf32_Ehdr* elf)
2007{
2008 Elf32_Addr offset = elf->e_phoff;
2009 const Elf32_Phdr* phdr_table = (const Elf32_Phdr*)((char*)elf + offset);
2010 const Elf32_Phdr* phdr_end = phdr_table + elf->e_phnum;
2011 const Elf32_Phdr* phdr;
2012
2013 for (phdr = phdr_table; phdr < phdr_end; phdr++) {
2014 if (phdr->p_type == PT_LOAD) {
2015 return (Elf32_Addr)elf + phdr->p_offset - phdr->p_vaddr;
2016 }
2017 }
2018 return 0;
2019}
2020
Nick Kralevich468319c2011-11-11 15:53:17 -08002021/*
2022 * This is the entry point for the linker, called from begin.S. This
2023 * method is responsible for fixing the linker's own relocations, and
2024 * then calling __linker_init_post_relocation().
2025 *
2026 * Because this method is called before the linker has fixed it's own
2027 * relocations, any attempt to reference an extern variable, extern
2028 * function, or other GOT reference will generate a segfault.
2029 */
Elliott Hughes46882792012-08-03 16:49:39 -07002030extern "C" unsigned __linker_init(unsigned **elfdata) {
Nick Kralevich468319c2011-11-11 15:53:17 -08002031 unsigned linker_addr = find_linker_base(elfdata);
2032 Elf32_Ehdr *elf_hdr = (Elf32_Ehdr *) linker_addr;
2033 Elf32_Phdr *phdr =
2034 (Elf32_Phdr *)((unsigned char *) linker_addr + elf_hdr->e_phoff);
2035
2036 soinfo linker_so;
2037 memset(&linker_so, 0, sizeof(soinfo));
2038
2039 linker_so.base = linker_addr;
David 'Digit' Turnerb52e4382012-06-19 01:24:17 +02002040 linker_so.size = phdr_table_get_load_size(phdr, elf_hdr->e_phnum);
David 'Digit' Turnerbea23e52012-06-18 23:38:46 +02002041 linker_so.load_bias = get_elf_exec_load_bias(elf_hdr);
Nick Kralevich468319c2011-11-11 15:53:17 -08002042 linker_so.dynamic = (unsigned *) -1;
2043 linker_so.phdr = phdr;
2044 linker_so.phnum = elf_hdr->e_phnum;
2045 linker_so.flags |= FLAG_LINKER;
Nick Kralevich468319c2011-11-11 15:53:17 -08002046
Nick Kralevich5135b3a2012-08-10 21:08:42 -07002047 if (soinfo_link_image(&linker_so)) {
Nick Kralevich468319c2011-11-11 15:53:17 -08002048 // It would be nice to print an error message, but if the linker
2049 // can't link itself, there's no guarantee that we'll be able to
2050 // call write() (because it involves a GOT reference).
2051 //
2052 // This situation should never occur unless the linker itself
2053 // is corrupt.
2054 exit(-1);
2055 }
2056
2057 // We have successfully fixed our own relocations. It's safe to run
2058 // the main part of the linker now.
Ryan V. Bissellbb5c30a2012-07-16 02:16:18 -05002059 return __linker_init_post_relocation(elfdata, linker_addr);
Nick Kralevich468319c2011-11-11 15:53:17 -08002060}