2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINKER_H_
|
|
|
|
#define _LINKER_H_
|
|
|
|
|
2012-02-28 19:40:00 +01:00
|
|
|
#include <elf.h>
|
2012-08-17 10:53:29 +02:00
|
|
|
#include <link.h>
|
2014-01-10 00:45:07 +01:00
|
|
|
#include <unistd.h>
|
2012-08-04 01:49:39 +02:00
|
|
|
|
2013-03-15 23:30:25 +01:00
|
|
|
#include "private/libc_logging.h"
|
2013-03-06 03:47:58 +01:00
|
|
|
|
|
|
|
#define DL_ERR(fmt, x...) \
|
|
|
|
do { \
|
|
|
|
__libc_format_buffer(linker_get_error_buffer(), linker_get_error_buffer_size(), fmt, ##x); \
|
|
|
|
/* If LD_DEBUG is set high enough, log every dlerror(3) message. */ \
|
|
|
|
DEBUG("%s\n", linker_get_error_buffer()); \
|
2013-06-18 22:15:00 +02:00
|
|
|
} while (false)
|
|
|
|
|
|
|
|
#define DL_WARN(fmt, x...) \
|
|
|
|
do { \
|
|
|
|
__libc_format_log(ANDROID_LOG_WARN, "linker", fmt, ##x); \
|
|
|
|
__libc_format_fd(2, "WARNING: linker: "); \
|
|
|
|
__libc_format_fd(2, fmt, ##x); \
|
|
|
|
__libc_format_fd(2, "\n"); \
|
|
|
|
} while (false)
|
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
|
2012-11-01 21:49:32 +01:00
|
|
|
// Returns the address of the page containing address 'x'.
|
|
|
|
#define PAGE_START(x) ((x) & PAGE_MASK)
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2012-11-01 21:49:32 +01:00
|
|
|
// Returns the offset of address 'x' in its page.
|
|
|
|
#define PAGE_OFFSET(x) ((x) & ~PAGE_MASK)
|
2012-06-19 11:21:29 +02:00
|
|
|
|
2012-11-01 21:49:32 +01:00
|
|
|
// Returns the address of the next page after address 'x', unless 'x' is
|
|
|
|
// itself at the start of a page.
|
2012-06-19 11:21:29 +02:00
|
|
|
#define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1))
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
// Magic shared structures that GDB knows about.
|
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
struct link_map_t {
|
2012-11-01 23:16:56 +01:00
|
|
|
uintptr_t l_addr;
|
2013-03-01 00:58:45 +01:00
|
|
|
char* l_name;
|
2012-11-01 23:16:56 +01:00
|
|
|
uintptr_t l_ld;
|
2013-03-12 18:40:45 +01:00
|
|
|
link_map_t* l_next;
|
|
|
|
link_map_t* l_prev;
|
2009-03-04 04:28:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Values for r_debug->state
|
|
|
|
enum {
|
2012-11-01 23:16:56 +01:00
|
|
|
RT_CONSISTENT,
|
|
|
|
RT_ADD,
|
|
|
|
RT_DELETE
|
2009-03-04 04:28:35 +01:00
|
|
|
};
|
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
struct r_debug {
|
|
|
|
int32_t r_version;
|
2013-03-12 18:40:45 +01:00
|
|
|
link_map_t* r_map;
|
2012-11-01 23:16:56 +01:00
|
|
|
void (*r_brk)(void);
|
|
|
|
int32_t r_state;
|
|
|
|
uintptr_t r_ldbase;
|
2009-03-04 04:28:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define FLAG_LINKED 0x00000001
|
|
|
|
#define FLAG_EXE 0x00000004 // The main executable
|
2011-11-12 00:53:17 +01:00
|
|
|
#define FLAG_LINKER 0x00000010 // The linker itself
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#define SOINFO_NAME_LEN 128
|
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
typedef void (*linker_function_t)();
|
|
|
|
|
2013-10-26 02:38:02 +02:00
|
|
|
// Android uses REL for 32-bit but only uses RELA for 64-bit.
|
|
|
|
#if defined(__LP64__)
|
|
|
|
#define USE_RELA 1
|
|
|
|
#endif
|
|
|
|
|
2012-10-30 01:37:13 +01:00
|
|
|
struct soinfo {
|
2013-03-12 18:40:45 +01:00
|
|
|
public:
|
2012-11-01 23:16:56 +01:00
|
|
|
char name[SOINFO_NAME_LEN];
|
2013-10-01 03:43:46 +02:00
|
|
|
const Elf_Phdr* phdr;
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t phnum;
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Addr entry;
|
|
|
|
Elf_Addr base;
|
2012-11-01 23:16:56 +01:00
|
|
|
unsigned size;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
#ifndef __LP64__
|
2013-03-12 18:40:45 +01:00
|
|
|
uint32_t unused1; // DO NOT USE, maintained for compatibility.
|
2013-10-01 03:43:46 +02:00
|
|
|
#endif
|
2011-08-29 22:49:22 +02:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Dyn* dynamic;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
#ifndef __LP64__
|
2013-03-12 18:40:45 +01:00
|
|
|
uint32_t unused2; // DO NOT USE, maintained for compatibility
|
|
|
|
uint32_t unused3; // DO NOT USE, maintained for compatibility
|
2013-10-01 03:43:46 +02:00
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
soinfo* next;
|
|
|
|
unsigned flags;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
const char* strtab;
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Sym* symtab;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t nbucket;
|
|
|
|
size_t nchain;
|
2012-11-01 23:16:56 +01:00
|
|
|
unsigned* bucket;
|
|
|
|
unsigned* chain;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-26 02:38:02 +02:00
|
|
|
#if !defined(__LP64__)
|
|
|
|
// This is only used by 32-bit MIPS, but needs to be here for
|
|
|
|
// all 32-bit architectures to preserve binary compatibility.
|
|
|
|
unsigned* plt_got;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_RELA)
|
|
|
|
Elf_Rela* plt_rela;
|
2013-10-05 02:01:33 +02:00
|
|
|
size_t plt_rela_count;
|
|
|
|
|
2013-10-26 02:38:02 +02:00
|
|
|
Elf_Rela* rela;
|
2013-10-05 02:01:33 +02:00
|
|
|
size_t rela_count;
|
|
|
|
#else
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Rel* plt_rel;
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t plt_rel_count;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Rel* rel;
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t rel_count;
|
2013-10-05 02:01:33 +02:00
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
linker_function_t* preinit_array;
|
|
|
|
size_t preinit_array_count;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
linker_function_t* init_array;
|
|
|
|
size_t init_array_count;
|
|
|
|
linker_function_t* fini_array;
|
|
|
|
size_t fini_array_count;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
linker_function_t init_func;
|
|
|
|
linker_function_t fini_func;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-26 02:38:02 +02:00
|
|
|
#if defined(__arm__)
|
2012-11-01 23:16:56 +01:00
|
|
|
// ARM EABI section used for stack unwinding.
|
|
|
|
unsigned* ARM_exidx;
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t ARM_exidx_count;
|
2013-10-26 02:38:02 +02:00
|
|
|
#elif defined(__mips__)
|
2012-11-01 23:16:56 +01:00
|
|
|
unsigned mips_symtabno;
|
|
|
|
unsigned mips_local_gotno;
|
|
|
|
unsigned mips_gotsym;
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif
|
|
|
|
|
2013-03-12 18:40:45 +01:00
|
|
|
size_t ref_count;
|
|
|
|
link_map_t link_map;
|
2011-12-21 10:03:54 +01:00
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
bool constructors_called;
|
2012-02-28 19:40:00 +01:00
|
|
|
|
2012-11-01 23:16:56 +01:00
|
|
|
// When you read a virtual address from the ELF file, add this
|
|
|
|
// value to get the corresponding address in the process' address space.
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Addr load_bias;
|
2012-08-30 12:48:32 +02:00
|
|
|
|
2013-10-28 22:19:05 +01:00
|
|
|
#if !defined(__LP64__)
|
2012-11-01 23:16:56 +01:00
|
|
|
bool has_text_relocations;
|
2013-10-28 22:19:05 +01:00
|
|
|
#endif
|
2012-11-01 23:16:56 +01:00
|
|
|
bool has_DT_SYMBOLIC;
|
|
|
|
|
|
|
|
void CallConstructors();
|
|
|
|
void CallDestructors();
|
|
|
|
void CallPreInitConstructors();
|
|
|
|
|
|
|
|
private:
|
2013-03-12 18:40:45 +01:00
|
|
|
void CallArray(const char* array_name, linker_function_t* functions, size_t count, bool reverse);
|
|
|
|
void CallFunction(const char* function_name, linker_function_t function);
|
2009-03-04 04:28:35 +01:00
|
|
|
};
|
|
|
|
|
2013-10-28 22:19:05 +01:00
|
|
|
extern soinfo libdl_info;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2012-12-20 23:42:14 +01:00
|
|
|
void do_android_update_LD_LIBRARY_PATH(const char* ld_library_path);
|
2012-12-19 00:57:55 +01:00
|
|
|
soinfo* do_dlopen(const char* name, int flags);
|
2012-11-01 23:16:56 +01:00
|
|
|
int do_dlclose(soinfo* si);
|
2012-06-12 16:25:37 +02:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Sym* dlsym_linear_lookup(const char* name, soinfo** found, soinfo* start);
|
2012-11-01 23:16:56 +01:00
|
|
|
soinfo* find_containing_library(const void* addr);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-01 03:43:46 +02:00
|
|
|
Elf_Sym* dladdr_find_symbol(soinfo* si, const void* addr);
|
|
|
|
Elf_Sym* dlsym_handle_lookup(soinfo* si, const char* name);
|
2012-11-01 23:16:56 +01:00
|
|
|
|
2013-03-01 00:58:45 +01:00
|
|
|
void debuggerd_init();
|
2013-04-04 22:46:46 +02:00
|
|
|
extern "C" abort_msg_t* gAbortMessage;
|
2012-10-30 01:37:13 +01:00
|
|
|
extern "C" void notify_gdb_of_libraries();
|
2012-08-04 01:49:39 +02:00
|
|
|
|
2013-03-06 03:47:58 +01:00
|
|
|
char* linker_get_error_buffer();
|
|
|
|
size_t linker_get_error_buffer_size();
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif
|