blob: 3862d8ca313081d20fb478c59ed6eb576d633478 [file] [log] [blame]
Dimitry Ivanov3f660572016-09-09 10:00:39 -07001/*
2 * Copyright (C) 2016 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#include "linker_main.h"
30
31#include "linker_debug.h"
Evgenii Stepanov0a3637d2016-07-06 13:20:59 -070032#include "linker_cfi.h"
Dimitry Ivanov3f660572016-09-09 10:00:39 -070033#include "linker_gdb_support.h"
34#include "linker_globals.h"
35#include "linker_phdr.h"
36#include "linker_utils.h"
37
38#include "private/bionic_globals.h"
39#include "private/bionic_tls.h"
40#include "private/KernelArgumentBlock.h"
41
42#include "android-base/strings.h"
43#include "android-base/stringprintf.h"
Dan Willemsen7ec52b12016-11-28 17:02:25 -080044#ifdef __ANDROID__
Josh Gao2a3b4fa2016-10-26 17:55:49 -070045#include "debuggerd/handler.h"
Dan Willemsen7ec52b12016-11-28 17:02:25 -080046#endif
Dimitry Ivanov3f660572016-09-09 10:00:39 -070047
Christopher Ferris7a3681e2017-04-24 17:48:32 -070048#include <async_safe/log.h>
49
Dimitry Ivanov3f660572016-09-09 10:00:39 -070050#include <vector>
51
52extern void __libc_init_globals(KernelArgumentBlock&);
53extern void __libc_init_AT_SECURE(KernelArgumentBlock&);
54
55extern "C" void _start();
56
57static ElfW(Addr) get_elf_exec_load_bias(const ElfW(Ehdr)* elf);
58
59// These should be preserved static to avoid emitting
60// RELATIVE relocations for the part of the code running
61// before linker links itself.
62
63// TODO (dimtiry): remove somain, rename solist to solist_head
64static soinfo* solist;
65static soinfo* sonext;
66static soinfo* somain; // main process, always the one after libdl_info
67
68void solist_add_soinfo(soinfo* si) {
69 sonext->next = si;
70 sonext = si;
71}
72
73bool solist_remove_soinfo(soinfo* si) {
74 soinfo *prev = nullptr, *trav;
75 for (trav = solist; trav != nullptr; trav = trav->next) {
76 if (trav == si) {
77 break;
78 }
79 prev = trav;
80 }
81
82 if (trav == nullptr) {
83 // si was not in solist
84 PRINT("name \"%s\"@%p is not in solist!", si->get_realpath(), si);
85 return false;
86 }
87
88 // prev will never be null, because the first entry in solist is
89 // always the static libdl_info.
George Burgess IV70591002017-06-27 16:23:45 -070090 CHECK(prev != nullptr);
Dimitry Ivanov3f660572016-09-09 10:00:39 -070091 prev->next = si->next;
92 if (si == sonext) {
93 sonext = prev;
94 }
95
96 return true;
97}
98
99soinfo* solist_get_head() {
100 return solist;
101}
102
103soinfo* solist_get_somain() {
104 return somain;
105}
106
107int g_ld_debug_verbosity;
108abort_msg_t* g_abort_message = nullptr; // For debuggerd.
109
110static std::vector<std::string> g_ld_preload_names;
111
112static std::vector<soinfo*> g_ld_preloads;
113
114static void parse_path(const char* path, const char* delimiters,
115 std::vector<std::string>* resolved_paths) {
116 std::vector<std::string> paths;
117 split_path(path, delimiters, &paths);
118 resolve_paths(paths, resolved_paths);
119}
120
121static void parse_LD_LIBRARY_PATH(const char* path) {
122 std::vector<std::string> ld_libary_paths;
123 parse_path(path, ":", &ld_libary_paths);
124 g_default_namespace.set_ld_library_paths(std::move(ld_libary_paths));
125}
126
127static void parse_LD_PRELOAD(const char* path) {
128 g_ld_preload_names.clear();
129 if (path != nullptr) {
130 // We have historically supported ':' as well as ' ' in LD_PRELOAD.
131 g_ld_preload_names = android::base::Split(path, " :");
132 std::remove_if(g_ld_preload_names.begin(),
133 g_ld_preload_names.end(),
134 [] (const std::string& s) { return s.empty(); });
135 }
136}
137
138// An empty list of soinfos
139static soinfo_list_t g_empty_list;
140
dimitryf9abbf62017-07-06 12:17:14 +0200141static void add_vdso(KernelArgumentBlock& args) {
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700142 ElfW(Ehdr)* ehdr_vdso = reinterpret_cast<ElfW(Ehdr)*>(args.getauxval(AT_SYSINFO_EHDR));
143 if (ehdr_vdso == nullptr) {
144 return;
145 }
146
147 soinfo* si = soinfo_alloc(&g_default_namespace, "[vdso]", nullptr, 0, 0);
148
149 si->phdr = reinterpret_cast<ElfW(Phdr)*>(reinterpret_cast<char*>(ehdr_vdso) + ehdr_vdso->e_phoff);
150 si->phnum = ehdr_vdso->e_phnum;
151 si->base = reinterpret_cast<ElfW(Addr)>(ehdr_vdso);
152 si->size = phdr_table_get_load_size(si->phdr, si->phnum);
153 si->load_bias = get_elf_exec_load_bias(ehdr_vdso);
154
155 si->prelink_image();
156 si->link_image(g_empty_list, soinfo_list_t::make_list(si), nullptr);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700157}
158
159/* gdb expects the linker to be in the debug shared object list.
160 * Without this, gdb has trouble locating the linker's ".text"
161 * and ".plt" sections. Gdb could also potentially use this to
162 * relocate the offset of our exported 'rtld_db_dlactivity' symbol.
163 * Note that the linker shouldn't be on the soinfo list.
164 */
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700165static link_map linker_link_map;
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700166
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700167static void init_linker_info_for_gdb(ElfW(Addr) linker_base, char* linker_path) {
168 linker_link_map.l_addr = linker_base;
169 linker_link_map.l_name = linker_path;
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700170
171 /*
172 * Set the dynamic field in the link map otherwise gdb will complain with
173 * the following:
174 * warning: .dynamic section for "/system/bin/linker" is not at the
175 * expected address (wrong library or version mismatch?)
176 */
177 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(linker_base);
178 ElfW(Phdr)* phdr = reinterpret_cast<ElfW(Phdr)*>(linker_base + elf_hdr->e_phoff);
179 phdr_table_get_dynamic_section(phdr, elf_hdr->e_phnum, linker_base,
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700180 &linker_link_map.l_ld, nullptr);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700181
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700182}
183
184extern "C" int __system_properties_init(void);
185
186static const char* get_executable_path() {
187 static std::string executable_path;
188 if (executable_path.empty()) {
189 char path[PATH_MAX];
190 ssize_t path_len = readlink("/proc/self/exe", path, sizeof(path));
191 if (path_len == -1 || path_len >= static_cast<ssize_t>(sizeof(path))) {
Christopher Ferris7a3681e2017-04-24 17:48:32 -0700192 async_safe_fatal("readlink('/proc/self/exe') failed: %s", strerror(errno));
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700193 }
194 executable_path = std::string(path, path_len);
195 }
196
197 return executable_path.c_str();
198}
199
Dimitry Ivanovd9e427c2016-11-22 16:55:25 -0800200#if defined(__LP64__)
201static char kLinkerPath[] = "/system/bin/linker64";
202#else
203static char kLinkerPath[] = "/system/bin/linker";
204#endif
205
Elliott Hughesad2d0382017-07-31 11:43:34 -0700206static void __linker_cannot_link(const char* argv0) {
207 async_safe_fatal("CANNOT LINK EXECUTABLE \"%s\": %s", argv0, linker_get_error_buffer());
208}
209
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700210/*
211 * This code is called after the linker has linked itself and
212 * fixed it's own GOT. It is safe to make references to externs
213 * and other non-local data at this point.
214 */
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700215static ElfW(Addr) __linker_init_post_relocation(KernelArgumentBlock& args) {
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800216 ProtectedDataGuard guard;
217
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700218#if TIMING
219 struct timeval t0, t1;
220 gettimeofday(&t0, 0);
221#endif
222
223 // Sanitize the environment.
224 __libc_init_AT_SECURE(args);
225
226 // Initialize system properties
227 __system_properties_init(); // may use 'environ'
228
229 // Register the debuggerd signal handler.
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800230#ifdef __ANDROID__
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700231 debuggerd_callbacks_t callbacks = {
232 .get_abort_message = []() {
233 return g_abort_message;
234 },
235 .post_dump = &notify_gdb_of_libraries,
236 };
237 debuggerd_init(&callbacks);
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800238#endif
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700239
240 g_linker_logger.ResetState();
241
242 // Get a few environment variables.
243 const char* LD_DEBUG = getenv("LD_DEBUG");
244 if (LD_DEBUG != nullptr) {
245 g_ld_debug_verbosity = atoi(LD_DEBUG);
246 }
247
248#if defined(__LP64__)
249 INFO("[ Android dynamic linker (64-bit) ]");
250#else
251 INFO("[ Android dynamic linker (32-bit) ]");
252#endif
253
254 // These should have been sanitized by __libc_init_AT_SECURE, but the test
255 // doesn't cost us anything.
256 const char* ldpath_env = nullptr;
257 const char* ldpreload_env = nullptr;
258 if (!getauxval(AT_SECURE)) {
259 ldpath_env = getenv("LD_LIBRARY_PATH");
260 if (ldpath_env != nullptr) {
261 INFO("[ LD_LIBRARY_PATH set to \"%s\" ]", ldpath_env);
262 }
263 ldpreload_env = getenv("LD_PRELOAD");
264 if (ldpreload_env != nullptr) {
265 INFO("[ LD_PRELOAD set to \"%s\" ]", ldpreload_env);
266 }
267 }
268
269 struct stat file_stat;
270 // Stat "/proc/self/exe" instead of executable_path because
271 // the executable could be unlinked by this point and it should
272 // not cause a crash (see http://b/31084669)
273 if (TEMP_FAILURE_RETRY(stat("/proc/self/exe", &file_stat)) != 0) {
Christopher Ferris7a3681e2017-04-24 17:48:32 -0700274 async_safe_fatal("unable to stat \"/proc/self/exe\": %s", strerror(errno));
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700275 }
276
277 const char* executable_path = get_executable_path();
278 soinfo* si = soinfo_alloc(&g_default_namespace, executable_path, &file_stat, 0, RTLD_GLOBAL);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700279
Elliott Hughes7b0af7a2017-09-15 16:09:22 -0700280 // Bootstrap the link map, the main exe always needs to be first.
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700281 si->set_main_executable();
282 link_map* map = &(si->link_map_head);
283
284 // Register the main executable and the linker upfront to have
285 // gdb aware of them before loading the rest of the dependency
286 // tree.
287 map->l_addr = 0;
288 map->l_name = const_cast<char*>(executable_path);
289 insert_link_map_into_debug_map(map);
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700290 insert_link_map_into_debug_map(&linker_link_map);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700291
292 // Extract information passed from the kernel.
293 si->phdr = reinterpret_cast<ElfW(Phdr)*>(args.getauxval(AT_PHDR));
294 si->phnum = args.getauxval(AT_PHNUM);
295
296 /* Compute the value of si->base. We can't rely on the fact that
297 * the first entry is the PHDR because this will not be true
298 * for certain executables (e.g. some in the NDK unit test suite)
299 */
300 si->base = 0;
301 si->size = phdr_table_get_load_size(si->phdr, si->phnum);
302 si->load_bias = 0;
303 for (size_t i = 0; i < si->phnum; ++i) {
304 if (si->phdr[i].p_type == PT_PHDR) {
305 si->load_bias = reinterpret_cast<ElfW(Addr)>(si->phdr) - si->phdr[i].p_vaddr;
306 si->base = reinterpret_cast<ElfW(Addr)>(si->phdr) - si->phdr[i].p_offset;
307 break;
308 }
309 }
George Burgess IV70591002017-06-27 16:23:45 -0700310
311 if (si->base == 0) {
312 async_safe_fatal("Could not find a PHDR: broken executable?");
313 }
314
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700315 si->dynamic = nullptr;
316
317 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(si->base);
Elliott Hughes3bdb31b2017-01-07 10:38:20 -0800318
319 // We haven't supported non-PIE since Lollipop for security reasons.
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700320 if (elf_hdr->e_type != ET_DYN) {
Elliott Hughesad2d0382017-07-31 11:43:34 -0700321 // We don't use async_safe_fatal here because we don't want a tombstone:
322 // even after several years we still find ourselves on app compatibility
Elliott Hughes3bdb31b2017-01-07 10:38:20 -0800323 // investigations because some app's trying to launch an executable that
324 // hasn't worked in at least three years, and we've "helpfully" dropped a
325 // tombstone for them. The tombstone never provided any detail relevant to
326 // fixing the problem anyway, and the utility of drawing extra attention
327 // to the problem is non-existent at this late date.
Christopher Ferris7a3681e2017-04-24 17:48:32 -0700328 async_safe_format_fd(STDERR_FILENO,
Elliott Hughesad2d0382017-07-31 11:43:34 -0700329 "\"%s\": error: Android 5.0 and later only support "
330 "position-independent executables (-fPIE).\n",
331 g_argv[0]);
Dan Albert95e2e6f2017-01-31 16:02:43 -0800332 exit(EXIT_FAILURE);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700333 }
334
335 // Use LD_LIBRARY_PATH and LD_PRELOAD (but only if we aren't setuid/setgid).
336 parse_LD_LIBRARY_PATH(ldpath_env);
337 parse_LD_PRELOAD(ldpreload_env);
338
339 somain = si;
340
Jiyong Park02586a22017-05-20 01:01:24 +0900341 std::vector<android_namespace_t*> namespaces = init_default_namespaces(executable_path);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700342
Elliott Hughesad2d0382017-07-31 11:43:34 -0700343 if (!si->prelink_image()) __linker_cannot_link(g_argv[0]);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700344
345 // add somain to global group
346 si->set_dt_flags_1(si->get_dt_flags_1() | DF_1_GLOBAL);
Jiyong Park02586a22017-05-20 01:01:24 +0900347 // ... and add it to all other linked namespaces
348 for (auto linked_ns : namespaces) {
349 if (linked_ns != &g_default_namespace) {
350 linked_ns->add_soinfo(somain);
351 somain->add_secondary_namespace(linked_ns);
352 }
353 }
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700354
355 // Load ld_preloads and dependencies.
356 std::vector<const char*> needed_library_name_list;
357 size_t ld_preloads_count = 0;
358
359 for (const auto& ld_preload_name : g_ld_preload_names) {
360 needed_library_name_list.push_back(ld_preload_name.c_str());
361 ++ld_preloads_count;
362 }
363
364 for_each_dt_needed(si, [&](const char* name) {
365 needed_library_name_list.push_back(name);
366 });
367
368 const char** needed_library_names = &needed_library_name_list[0];
369 size_t needed_libraries_count = needed_library_name_list.size();
370
Jiyong Park02586a22017-05-20 01:01:24 +0900371 // readers_map is shared across recursive calls to find_libraries so that we
372 // don't need to re-load elf headers.
373 std::unordered_map<const soinfo*, ElfReader> readers_map;
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700374 if (needed_libraries_count > 0 &&
Dimitry Ivanov7d429d32017-02-01 15:28:52 -0800375 !find_libraries(&g_default_namespace,
376 si,
377 needed_library_names,
378 needed_libraries_count,
379 nullptr,
380 &g_ld_preloads,
381 ld_preloads_count,
382 RTLD_GLOBAL,
383 nullptr,
384 true /* add_as_children */,
Jiyong Park02586a22017-05-20 01:01:24 +0900385 true /* search_linked_namespaces */,
386 readers_map,
387 &namespaces)) {
Elliott Hughesad2d0382017-07-31 11:43:34 -0700388 __linker_cannot_link(g_argv[0]);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700389 } else if (needed_libraries_count == 0) {
390 if (!si->link_image(g_empty_list, soinfo_list_t::make_list(si), nullptr)) {
Elliott Hughesad2d0382017-07-31 11:43:34 -0700391 __linker_cannot_link(g_argv[0]);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700392 }
393 si->increment_ref_count();
394 }
395
396 add_vdso(args);
397
Elliott Hughesad2d0382017-07-31 11:43:34 -0700398 if (!get_cfi_shadow()->InitialLinkDone(solist)) __linker_cannot_link(g_argv[0]);
Evgenii Stepanov0a3637d2016-07-06 13:20:59 -0700399
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800400 si->call_pre_init_constructors();
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700401
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800402 /* After the prelink_image, the si->load_bias is initialized.
403 * For so lib, the map->l_addr will be updated in notify_gdb_of_load.
404 * We need to update this value for so exe here. So Unwind_Backtrace
405 * for some arch like x86 could work correctly within so exe.
406 */
407 map->l_addr = si->load_bias;
408 si->call_constructors();
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700409
410#if TIMING
411 gettimeofday(&t1, nullptr);
412 PRINT("LINKER TIME: %s: %d microseconds", g_argv[0], (int) (
413 (((long long)t1.tv_sec * 1000000LL) + (long long)t1.tv_usec) -
414 (((long long)t0.tv_sec * 1000000LL) + (long long)t0.tv_usec)));
415#endif
416#if STATS
417 PRINT("RELO STATS: %s: %d abs, %d rel, %d copy, %d symbol", g_argv[0],
418 linker_stats.count[kRelocAbsolute],
419 linker_stats.count[kRelocRelative],
420 linker_stats.count[kRelocCopy],
421 linker_stats.count[kRelocSymbol]);
422#endif
423#if COUNT_PAGES
424 {
425 unsigned n;
426 unsigned i;
427 unsigned count = 0;
428 for (n = 0; n < 4096; n++) {
429 if (bitmask[n]) {
430 unsigned x = bitmask[n];
431#if defined(__LP64__)
432 for (i = 0; i < 32; i++) {
433#else
434 for (i = 0; i < 8; i++) {
435#endif
436 if (x & 1) {
437 count++;
438 }
439 x >>= 1;
440 }
441 }
442 }
443 PRINT("PAGES MODIFIED: %s: %d (%dKB)", g_argv[0], count, count * 4);
444 }
445#endif
446
447#if TIMING || STATS || COUNT_PAGES
448 fflush(stdout);
449#endif
450
451 ElfW(Addr) entry = args.getauxval(AT_ENTRY);
452 TRACE("[ Ready to execute \"%s\" @ %p ]", si->get_realpath(), reinterpret_cast<void*>(entry));
453 return entry;
454}
455
456/* Compute the load-bias of an existing executable. This shall only
457 * be used to compute the load bias of an executable or shared library
458 * that was loaded by the kernel itself.
459 *
460 * Input:
461 * elf -> address of ELF header, assumed to be at the start of the file.
462 * Return:
463 * load bias, i.e. add the value of any p_vaddr in the file to get
464 * the corresponding address in memory.
465 */
466static ElfW(Addr) get_elf_exec_load_bias(const ElfW(Ehdr)* elf) {
467 ElfW(Addr) offset = elf->e_phoff;
468 const ElfW(Phdr)* phdr_table =
469 reinterpret_cast<const ElfW(Phdr)*>(reinterpret_cast<uintptr_t>(elf) + offset);
470 const ElfW(Phdr)* phdr_end = phdr_table + elf->e_phnum;
471
472 for (const ElfW(Phdr)* phdr = phdr_table; phdr < phdr_end; phdr++) {
473 if (phdr->p_type == PT_LOAD) {
474 return reinterpret_cast<ElfW(Addr)>(elf) + phdr->p_offset - phdr->p_vaddr;
475 }
476 }
477 return 0;
478}
479
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700480/*
481 * This is the entry point for the linker, called from begin.S. This
482 * method is responsible for fixing the linker's own relocations, and
483 * then calling __linker_init_post_relocation().
484 *
485 * Because this method is called before the linker has fixed it's own
486 * relocations, any attempt to reference an extern variable, extern
487 * function, or other GOT reference will generate a segfault.
488 */
489extern "C" ElfW(Addr) __linker_init(void* raw_args) {
490 KernelArgumentBlock args(raw_args);
491
Dimitry Ivanov9b1cc4b2017-03-23 16:17:15 -0700492 // AT_BASE is set to 0 in the case when linker is run by iself
493 // so in order to link the linker it needs to calcuate AT_BASE
494 // using information at hand. The trick below takes advantage
495 // of the fact that the value of linktime_addr before relocations
496 // are run is an offset and this can be used to calculate AT_BASE.
497 static uintptr_t linktime_addr = reinterpret_cast<uintptr_t>(&linktime_addr);
498 ElfW(Addr) linker_addr = reinterpret_cast<uintptr_t>(&linktime_addr) - linktime_addr;
499
George Burgess IV70591002017-06-27 16:23:45 -0700500#if defined(__clang_analyzer__)
501 // The analyzer assumes that linker_addr will always be null. Make it an
502 // unknown value so we don't have to mark N places with NOLINTs.
503 //
504 // (`+=`, rather than `=`, allows us to sidestep a potential "unused store"
505 // complaint)
506 linker_addr += reinterpret_cast<uintptr_t>(raw_args);
507#endif
508
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700509 ElfW(Addr) entry_point = args.getauxval(AT_ENTRY);
510 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(linker_addr);
511 ElfW(Phdr)* phdr = reinterpret_cast<ElfW(Phdr)*>(linker_addr + elf_hdr->e_phoff);
512
513 soinfo linker_so(nullptr, nullptr, nullptr, 0, 0);
514
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700515 linker_so.base = linker_addr;
516 linker_so.size = phdr_table_get_load_size(phdr, elf_hdr->e_phnum);
517 linker_so.load_bias = get_elf_exec_load_bias(elf_hdr);
518 linker_so.dynamic = nullptr;
519 linker_so.phdr = phdr;
520 linker_so.phnum = elf_hdr->e_phnum;
521 linker_so.set_linker_flag();
522
523 // Prelink the linker so we can access linker globals.
524 if (!linker_so.prelink_image()) __linker_cannot_link(args.argv[0]);
525
526 // This might not be obvious... The reasons why we pass g_empty_list
527 // in place of local_group here are (1) we do not really need it, because
528 // linker is built with DT_SYMBOLIC and therefore relocates its symbols against
529 // itself without having to look into local_group and (2) allocators
530 // are not yet initialized, and therefore we cannot use linked_list.push_*
531 // functions at this point.
532 if (!linker_so.link_image(g_empty_list, g_empty_list, nullptr)) __linker_cannot_link(args.argv[0]);
533
534#if defined(__i386__)
535 // On x86, we can't make system calls before this point.
536 // We can't move this up because this needs to assign to a global.
537 // Note that until we call __libc_init_main_thread below we have
538 // no TLS, so you shouldn't make a system call that can fail, because
539 // it will SEGV when it tries to set errno.
540 __libc_init_sysinfo(args);
541#endif
542
543 // Initialize the main thread (including TLS, so system calls really work).
544 __libc_init_main_thread(args);
545
546 // We didn't protect the linker's RELRO pages in link_image because we
547 // couldn't make system calls on x86 at that point, but we can now...
548 if (!linker_so.protect_relro()) __linker_cannot_link(args.argv[0]);
549
550 // Initialize the linker's static libc's globals
551 __libc_init_globals(args);
552
553 // store argc/argv/envp to use them for calling constructors
554 g_argc = args.argc;
555 g_argv = args.argv;
556 g_envp = args.envp;
557
558 // Initialize the linker's own global variables
559 linker_so.call_constructors();
560
Dimitry Ivanov9b1cc4b2017-03-23 16:17:15 -0700561 // If the linker is not acting as PT_INTERP entry_point is equal to
562 // _start. Which means that the linker is running as an executable and
563 // already linked by PT_INTERP.
564 //
565 // This happens when user tries to run 'adb shell /system/bin/linker'
566 // see also https://code.google.com/p/android/issues/detail?id=63174
567 if (reinterpret_cast<ElfW(Addr)>(&_start) == entry_point) {
Christopher Ferris7a3681e2017-04-24 17:48:32 -0700568 async_safe_format_fd(STDOUT_FILENO,
Dimitry Ivanov9b1cc4b2017-03-23 16:17:15 -0700569 "This is %s, the helper program for dynamic executables.\n",
570 args.argv[0]);
571 exit(0);
572 }
573
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700574 init_linker_info_for_gdb(linker_addr, kLinkerPath);
575
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700576 // Initialize static variables. Note that in order to
577 // get correct libdl_info we need to call constructors
578 // before get_libdl_info().
dimitry7abea572017-08-29 18:14:49 +0200579 sonext = solist = get_libdl_info(kLinkerPath, linker_so, linker_link_map);
Dimitry Ivanovd9e427c2016-11-22 16:55:25 -0800580 g_default_namespace.add_soinfo(solist);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700581
582 // We have successfully fixed our own relocations. It's safe to run
583 // the main part of the linker now.
584 args.abort_message_ptr = &g_abort_message;
Dimitry Ivanovcd510cb2017-05-31 15:07:41 -0700585 ElfW(Addr) start_address = __linker_init_post_relocation(args);
Dimitry Ivanov3f660572016-09-09 10:00:39 -0700586
587 INFO("[ Jumping to _start (%p)... ]", reinterpret_cast<void*>(start_address));
588
589 // Return the address that the calling assembly stub should jump to.
590 return start_address;
591}