blob: 200a682774e3fcb76ad59ac347c6aa4bc5f312a7 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * 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
29#ifndef _LINKER_H_
30#define _LINKER_H_
31
32#include <unistd.h>
33#include <sys/types.h>
Nick Kralevich9ec0f032012-02-28 10:40:00 -080034#include <elf.h>
35#include <sys/exec_elf.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080036
Pavel Chupinb7beb692012-08-17 12:53:29 +040037#include <link.h>
Elliott Hughes46882792012-08-03 16:49:39 -070038
Elliott Hughes8f2a5a02013-03-15 15:30:25 -070039#include "private/libc_logging.h"
Elliott Hughes650be4e2013-03-05 18:47:58 -080040
41#define DL_ERR(fmt, x...) \
42 do { \
43 __libc_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
44 /* If LD_DEBUG is set high enough, log every dlerror(3) message. */ \
45 DEBUG("%s\n", linker_get_error_buffer()); \
Elliott Hughes7e5a8cc2013-06-18 13:15:00 -070046 } while (false)
47
48#define DL_WARN(fmt, x...) \
49 do { \
50 __libc_format_log(ANDROID_LOG_WARN, "linker", fmt, ##x); \
51 __libc_format_fd(2, "WARNING: linker: "); \
52 __libc_format_fd(2, fmt, ##x); \
53 __libc_format_fd(2, "\n"); \
54 } while (false)
55
Elliott Hughes650be4e2013-03-05 18:47:58 -080056
Elliott Hughes1a696162012-11-01 13:49:32 -070057// Returns the address of the page containing address 'x'.
58#define PAGE_START(x) ((x) & PAGE_MASK)
David 'Digit' Turnerc1bd5592012-06-19 11:21:29 +020059
Elliott Hughes1a696162012-11-01 13:49:32 -070060// Returns the offset of address 'x' in its page.
61#define PAGE_OFFSET(x) ((x) & ~PAGE_MASK)
David 'Digit' Turnerc1bd5592012-06-19 11:21:29 +020062
Elliott Hughes1a696162012-11-01 13:49:32 -070063// Returns the address of the next page after address 'x', unless 'x' is
64// itself at the start of a page.
David 'Digit' Turnerc1bd5592012-06-19 11:21:29 +020065#define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080066
Elliott Hughesd23736e2012-11-01 15:16:56 -070067// Magic shared structures that GDB knows about.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080068
Elliott Hughesca0c11b2013-03-12 10:40:45 -070069struct link_map_t {
Elliott Hughesd23736e2012-11-01 15:16:56 -070070 uintptr_t l_addr;
Brian Carlstromd4ee82d2013-02-28 15:58:45 -080071 char* l_name;
Elliott Hughesd23736e2012-11-01 15:16:56 -070072 uintptr_t l_ld;
Elliott Hughesca0c11b2013-03-12 10:40:45 -070073 link_map_t* l_next;
74 link_map_t* l_prev;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080075};
76
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080077// Values for r_debug->state
78enum {
Elliott Hughesd23736e2012-11-01 15:16:56 -070079 RT_CONSISTENT,
80 RT_ADD,
81 RT_DELETE
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080082};
83
Elliott Hughesd23736e2012-11-01 15:16:56 -070084struct r_debug {
85 int32_t r_version;
Elliott Hughesca0c11b2013-03-12 10:40:45 -070086 link_map_t* r_map;
Elliott Hughesd23736e2012-11-01 15:16:56 -070087 void (*r_brk)(void);
88 int32_t r_state;
89 uintptr_t r_ldbase;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080090};
91
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080092#define FLAG_LINKED 0x00000001
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080093#define FLAG_EXE 0x00000004 // The main executable
Nick Kralevich468319c2011-11-11 15:53:17 -080094#define FLAG_LINKER 0x00000010 // The linker itself
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080095
96#define SOINFO_NAME_LEN 128
97
Elliott Hughesca0c11b2013-03-12 10:40:45 -070098typedef void (*linker_function_t)();
99
Elliott Hughes18a206c2012-10-29 17:37:13 -0700100struct soinfo {
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700101 public:
Elliott Hughesd23736e2012-11-01 15:16:56 -0700102 char name[SOINFO_NAME_LEN];
103 const Elf32_Phdr* phdr;
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700104 size_t phnum;
Kito Chengfa8c05d2013-03-12 14:58:06 +0800105 Elf32_Addr entry;
106 Elf32_Addr base;
Elliott Hughesd23736e2012-11-01 15:16:56 -0700107 unsigned size;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800108
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700109 uint32_t unused1; // DO NOT USE, maintained for compatibility.
Nick Kralevich38bccb22011-08-29 13:49:22 -0700110
Brian Carlstromd4ee82d2013-02-28 15:58:45 -0800111 Elf32_Dyn* dynamic;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800112
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700113 uint32_t unused2; // DO NOT USE, maintained for compatibility
114 uint32_t unused3; // DO NOT USE, maintained for compatibility
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800115
Elliott Hughesd23736e2012-11-01 15:16:56 -0700116 soinfo* next;
117 unsigned flags;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800118
Elliott Hughesd23736e2012-11-01 15:16:56 -0700119 const char* strtab;
120 Elf32_Sym* symtab;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800121
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700122 size_t nbucket;
123 size_t nchain;
Elliott Hughesd23736e2012-11-01 15:16:56 -0700124 unsigned* bucket;
125 unsigned* chain;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800126
Elliott Hughesd23736e2012-11-01 15:16:56 -0700127 unsigned* plt_got;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800128
Elliott Hughesd23736e2012-11-01 15:16:56 -0700129 Elf32_Rel* plt_rel;
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700130 size_t plt_rel_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800131
Elliott Hughesd23736e2012-11-01 15:16:56 -0700132 Elf32_Rel* rel;
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700133 size_t rel_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800134
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700135 linker_function_t* preinit_array;
136 size_t preinit_array_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800137
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700138 linker_function_t* init_array;
139 size_t init_array_count;
140 linker_function_t* fini_array;
141 size_t fini_array_count;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800142
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700143 linker_function_t init_func;
144 linker_function_t fini_func;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800145
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700146#if defined(ANDROID_ARM_LINKER)
Elliott Hughesd23736e2012-11-01 15:16:56 -0700147 // ARM EABI section used for stack unwinding.
148 unsigned* ARM_exidx;
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700149 size_t ARM_exidx_count;
Raghu Gandhamd7daacb2012-07-31 12:07:22 -0700150#elif defined(ANDROID_MIPS_LINKER)
Elliott Hughesd23736e2012-11-01 15:16:56 -0700151 unsigned mips_symtabno;
152 unsigned mips_local_gotno;
153 unsigned mips_gotsym;
154#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800155
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700156 size_t ref_count;
157 link_map_t link_map;
Evgeniy Stepanove83c56d2011-12-21 13:03:54 +0400158
Elliott Hughesd23736e2012-11-01 15:16:56 -0700159 bool constructors_called;
Nick Kralevich9ec0f032012-02-28 10:40:00 -0800160
Elliott Hughesd23736e2012-11-01 15:16:56 -0700161 // When you read a virtual address from the ELF file, add this
162 // value to get the corresponding address in the process' address space.
163 Elf32_Addr load_bias;
Ard Biesheuvel5ae44f32012-08-30 12:48:32 +0200164
Elliott Hughesd23736e2012-11-01 15:16:56 -0700165 bool has_text_relocations;
166 bool has_DT_SYMBOLIC;
167
168 void CallConstructors();
169 void CallDestructors();
170 void CallPreInitConstructors();
171
172 private:
Elliott Hughesca0c11b2013-03-12 10:40:45 -0700173 void CallArray(const char* array_name, linker_function_t* functions, size_t count, bool reverse);
174 void CallFunction(const char* function_name, linker_function_t function);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800175};
176
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800177extern soinfo libdl_info;
178
Elliott Hughesa6a3ac52013-01-29 15:02:50 -0800179// These aren't defined in <sys/exec_elf.h>.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800180#ifndef DT_PREINIT_ARRAY
181#define DT_PREINIT_ARRAY 32
182#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800183#ifndef DT_PREINIT_ARRAYSZ
184#define DT_PREINIT_ARRAYSZ 33
185#endif
186
Elliott Hughescade4c32012-12-20 14:42:14 -0800187void do_android_update_LD_LIBRARY_PATH(const char* ld_library_path);
Elliott Hughese66190d2012-12-18 15:57:55 -0800188soinfo* do_dlopen(const char* name, int flags);
Elliott Hughesd23736e2012-11-01 15:16:56 -0700189int do_dlclose(soinfo* si);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200190
Brian Carlstromd4ee82d2013-02-28 15:58:45 -0800191Elf32_Sym* dlsym_linear_lookup(const char* name, soinfo** found, soinfo* start);
Elliott Hughesd23736e2012-11-01 15:16:56 -0700192soinfo* find_containing_library(const void* addr);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800193
Brian Carlstromd4ee82d2013-02-28 15:58:45 -0800194Elf32_Sym* dladdr_find_symbol(soinfo* si, const void* addr);
195Elf32_Sym* dlsym_handle_lookup(soinfo* si, const char* name);
Elliott Hughesd23736e2012-11-01 15:16:56 -0700196
Brian Carlstromd4ee82d2013-02-28 15:58:45 -0800197void debuggerd_init();
Elliott Hughes0d787c12013-04-04 13:46:46 -0700198extern "C" abort_msg_t* gAbortMessage;
Elliott Hughes18a206c2012-10-29 17:37:13 -0700199extern "C" void notify_gdb_of_libraries();
Elliott Hughes46882792012-08-03 16:49:39 -0700200
Elliott Hughes650be4e2013-03-05 18:47:58 -0800201char* linker_get_error_buffer();
202size_t linker_get_error_buffer_size();
203
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800204#endif