2016-07-15 01:05:46 +02:00
|
|
|
cc_library_static {
|
|
|
|
name: "liblinker_malloc",
|
2016-11-29 02:02:25 +01:00
|
|
|
defaults: ["linux_bionic_supported"],
|
2018-05-29 09:34:39 +02:00
|
|
|
recovery_available: true,
|
2016-07-15 01:05:46 +02:00
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"linker_memory.cpp",
|
|
|
|
],
|
2018-02-06 02:30:57 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
2016-07-15 01:05:46 +02:00
|
|
|
|
|
|
|
// We need to access Bionic private headers in the linker.
|
|
|
|
include_dirs: ["bionic/libc"],
|
2017-04-25 02:48:32 +02:00
|
|
|
|
2018-10-25 20:00:00 +02:00
|
|
|
static_libs: ["libasync_safe", "libbase"],
|
2016-07-15 01:05:46 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 06:28:14 +02:00
|
|
|
// This is used for bionic on (host) Linux to bootstrap our linker embedded into
|
|
|
|
// a binary.
|
|
|
|
//
|
|
|
|
// Host bionic binaries do not have a PT_INTERP section, instead this gets
|
|
|
|
// embedded as the entry point, and the linker is embedded as ELF sections in
|
|
|
|
// each binary. There's a linker script that sets all of that up (generated by
|
|
|
|
// extract_linker), and defines the extern symbols used in this file.
|
|
|
|
cc_object {
|
|
|
|
name: "linker_wrapper",
|
|
|
|
host_supported: true,
|
|
|
|
device_supported: false,
|
|
|
|
target: {
|
2018-02-06 02:30:57 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
linux_glibc: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
darwin: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
2017-09-19 06:28:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-fno-stack-protector",
|
|
|
|
"-Wstrict-overflow=5",
|
|
|
|
"-fvisibility=hidden",
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wno-unused",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"linker_wrapper.cpp",
|
|
|
|
],
|
|
|
|
arch: {
|
|
|
|
x86_64: {
|
|
|
|
srcs: ["arch/x86_64/begin.S"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
prefix_symbols: "__dlwrap_",
|
|
|
|
|
|
|
|
// We need to access Bionic private headers in the linker.
|
|
|
|
include_dirs: ["bionic/libc"],
|
|
|
|
}
|
|
|
|
|
2018-09-25 12:31:11 +02:00
|
|
|
filegroup {
|
|
|
|
name: "linker_sources",
|
2016-07-15 01:05:46 +02:00
|
|
|
srcs: [
|
|
|
|
"dlfcn.cpp",
|
|
|
|
"linker.cpp",
|
|
|
|
"linker_block_allocator.cpp",
|
2016-07-21 20:33:40 +02:00
|
|
|
"linker_dlwarning.cpp",
|
2016-07-06 22:20:59 +02:00
|
|
|
"linker_cfi.cpp",
|
2017-03-07 20:19:05 +01:00
|
|
|
"linker_config.cpp",
|
2016-07-15 01:05:46 +02:00
|
|
|
"linker_gdb_support.cpp",
|
2016-08-04 20:50:36 +02:00
|
|
|
"linker_globals.cpp",
|
2016-07-15 01:05:46 +02:00
|
|
|
"linker_libc_support.c",
|
2017-01-27 01:52:59 +01:00
|
|
|
"linker_libcxx_support.cpp",
|
2016-09-09 19:00:39 +02:00
|
|
|
"linker_main.cpp",
|
2016-08-04 01:00:10 +02:00
|
|
|
"linker_namespaces.cpp",
|
2016-07-15 01:05:46 +02:00
|
|
|
"linker_logger.cpp",
|
|
|
|
"linker_mapped_file_fragment.cpp",
|
|
|
|
"linker_phdr.cpp",
|
|
|
|
"linker_sdk_versions.cpp",
|
2016-08-04 20:50:36 +02:00
|
|
|
"linker_soinfo.cpp",
|
Reorganize static TLS memory for ELF TLS
For ELF TLS "local-exec" accesses, the static linker assumes that an
executable's TLS segment is located at a statically-known offset from the
thread pointer (i.e. "variant 1" for ARM and "variant 2" for x86).
Because these layouts are incompatible, Bionic generally needs to allocate
its TLS slots differently between different architectures.
To allow per-architecture TLS slots:
- Replace the TLS_SLOT_xxx enumerators with macros. New ARM slots are
generally negative, while new x86 slots are generally positive.
- Define a bionic_tcb struct that provides two things:
- a void* raw_slots_storage[BIONIC_TLS_SLOTS] field
- an inline accessor function: void*& tls_slot(size_t tpindex);
For ELF TLS, it's necessary to allocate a temporary TCB (i.e. TLS slots),
because the runtime linker doesn't know how large the static TLS area is
until after it has loaded all of the initial solibs.
To accommodate Golang, it's necessary to allocate the pthread keys at a
fixed, small, positive offset from the thread pointer.
This CL moves the pthread keys into bionic_tls, then allocates a single
mapping per thread that looks like so:
- stack guard
- stack [omitted for main thread and with pthread_attr_setstack]
- static TLS:
- bionic_tcb [exec TLS will either precede or succeed the TCB]
- bionic_tls [prefixed by the pthread keys]
- [solib TLS segments will be placed here]
- guard page
As before, if the new mapping includes a stack, the pthread_internal_t
is allocated on it.
At startup, Bionic allocates a temporary bionic_tcb object on the stack,
then allocates a temporary bionic_tls object using mmap. This mmap is
delayed because the linker can't currently call async_safe_fatal() before
relocating itself.
Later, Bionic allocates a stack-less thread mapping for the main thread,
and copies slots from the temporary TCB to the new TCB.
(See *::copy_from_bootstrap methods.)
Bug: http://b/78026329
Test: bionic unit tests
Test: verify that a Golang app still works
Test: verify that a Golang app crashes if bionic_{tls,tcb} are swapped
Merged-In: I6543063752f4ec8ef6dc9c7f2a06ce2a18fc5af3
Change-Id: I6543063752f4ec8ef6dc9c7f2a06ce2a18fc5af3
(cherry picked from commit 1e660b70da625fcbf1e43dfae09b7b4817fa1660)
2019-01-03 11:51:30 +01:00
|
|
|
"linker_tls.cpp",
|
2016-07-15 01:05:46 +02:00
|
|
|
"linker_utils.cpp",
|
|
|
|
"rt.cpp",
|
|
|
|
],
|
2018-09-25 12:31:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_arm",
|
|
|
|
srcs: [
|
|
|
|
"arch/arm/begin.S",
|
|
|
|
"linker_exidx_static.c",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_arm64",
|
|
|
|
srcs: [
|
|
|
|
"arch/arm64/begin.S",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_x86",
|
|
|
|
srcs: [
|
|
|
|
"arch/x86/begin.S",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_x86_64",
|
|
|
|
srcs: [
|
|
|
|
"arch/x86_64/begin.S",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_mips",
|
|
|
|
srcs: [
|
|
|
|
"arch/mips/begin.S",
|
|
|
|
"linker_mips.cpp",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_sources_mips64",
|
|
|
|
srcs: [
|
|
|
|
"arch/mips64/begin.S",
|
|
|
|
"linker_mips.cpp",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_version_script",
|
|
|
|
srcs: ["linker.generic.map"],
|
|
|
|
}
|
|
|
|
|
|
|
|
filegroup {
|
|
|
|
name: "linker_version_script_arm",
|
|
|
|
srcs: ["linker.arm.map"],
|
|
|
|
}
|
2016-07-15 01:05:46 +02:00
|
|
|
|
2018-09-25 12:31:11 +02:00
|
|
|
cc_defaults {
|
|
|
|
name: "linker_defaults",
|
2016-07-15 01:05:46 +02:00
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
cflags: ["-D__work_around_b_24465209__"],
|
|
|
|
},
|
|
|
|
x86: {
|
2018-05-24 23:07:27 +02:00
|
|
|
cflags: ["-D__work_around_b_24465209__"],
|
2016-07-15 01:05:46 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// -shared is used to overwrite the -Bstatic and -static
|
|
|
|
// flags triggered by LOCAL_FORCE_STATIC_EXECUTABLE.
|
|
|
|
// This dynamic linker is actually a shared object linked with static libraries.
|
|
|
|
ldflags: [
|
|
|
|
"-shared",
|
|
|
|
"-Wl,-Bsymbolic",
|
|
|
|
"-Wl,--exclude-libs,ALL",
|
2018-01-04 12:08:32 +01:00
|
|
|
"-Wl,-soname,ld-android.so",
|
2016-07-15 01:05:46 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-fno-stack-protector",
|
|
|
|
"-Wstrict-overflow=5",
|
|
|
|
"-fvisibility=hidden",
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wunused",
|
|
|
|
"-Werror",
|
2019-01-16 01:10:36 +01:00
|
|
|
|
|
|
|
// Define _USING_LIBCXX so <stdatomic.h> defers to the <atomic> header. When a Soong module
|
|
|
|
// uses the platform libc++, Soong automatically passes this macro, but the dynamic linker
|
|
|
|
// links against libc++ manually.
|
|
|
|
"-D_USING_LIBCXX",
|
2016-07-15 01:05:46 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
// TODO: split out the asflags.
|
|
|
|
asflags: [
|
|
|
|
"-fno-stack-protector",
|
|
|
|
"-Wstrict-overflow=5",
|
|
|
|
"-fvisibility=hidden",
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wunused",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
|
2017-05-19 18:01:24 +02:00
|
|
|
product_variables: {
|
|
|
|
debuggable: {
|
|
|
|
cppflags: ["-DUSE_LD_CONFIG_FILE"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2016-07-15 01:05:46 +02:00
|
|
|
cppflags: ["-Wold-style-cast"],
|
|
|
|
|
2016-12-06 20:10:09 +01:00
|
|
|
// we are going to link libc++_static manually because
|
|
|
|
// when stl is not set to "none" build system adds libdl
|
|
|
|
// to the list of static libraries which needs to be
|
|
|
|
// avoided in the case of building loader.
|
|
|
|
stl: "none",
|
|
|
|
|
2016-07-15 01:05:46 +02:00
|
|
|
// we don't want crtbegin.o (because we have begin.o), so unset it
|
|
|
|
// just for this module
|
|
|
|
nocrt: true,
|
|
|
|
|
2018-09-25 12:31:11 +02:00
|
|
|
static_executable: true,
|
|
|
|
|
|
|
|
// Leave the symbols in the shared library so that stack unwinders can produce
|
|
|
|
// meaningful name resolution.
|
|
|
|
strip: {
|
|
|
|
keep_symbols: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Insert an extra objcopy step to add prefix to symbols. This is needed to prevent gdb
|
|
|
|
// looking up symbols in the linker by mistake.
|
|
|
|
prefix_symbols: "__dl_",
|
|
|
|
|
|
|
|
sanitize: {
|
|
|
|
hwaddress: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
defaults: ["linux_bionic_supported", "linker_defaults"],
|
|
|
|
srcs: [ ":linker_sources" ],
|
|
|
|
|
|
|
|
arch: {
|
|
|
|
arm: {
|
|
|
|
srcs: [ ":linker_sources_arm" ],
|
|
|
|
version_script: ":linker_version_script_arm",
|
|
|
|
},
|
|
|
|
arm64: {
|
|
|
|
srcs: [":linker_sources_arm64"],
|
|
|
|
version_script: ":linker_version_script",
|
|
|
|
},
|
|
|
|
x86: {
|
|
|
|
srcs: [":linker_sources_x86"],
|
|
|
|
version_script: ":linker_version_script",
|
|
|
|
},
|
|
|
|
x86_64: {
|
|
|
|
srcs: [":linker_sources_x86_64"],
|
|
|
|
version_script: ":linker_version_script",
|
|
|
|
},
|
|
|
|
mips: {
|
|
|
|
srcs: [":linker_sources_mips"],
|
|
|
|
version_script: ":linker_version_script",
|
|
|
|
},
|
|
|
|
mips64: {
|
|
|
|
srcs: [":linker_sources_mips64"],
|
|
|
|
version_script: ":linker_version_script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// We need to access Bionic private headers in the linker.
|
|
|
|
include_dirs: ["bionic/libc"],
|
|
|
|
|
2016-07-15 01:05:46 +02:00
|
|
|
static_libs: [
|
|
|
|
"libc_nomalloc",
|
2017-01-27 01:52:59 +01:00
|
|
|
"libm",
|
2016-07-15 01:05:46 +02:00
|
|
|
"libziparchive",
|
|
|
|
"libutils",
|
|
|
|
"libbase",
|
|
|
|
"libz",
|
2017-02-09 02:27:20 +01:00
|
|
|
|
2017-05-07 22:07:41 +02:00
|
|
|
"libasync_safe",
|
2017-02-09 02:27:20 +01:00
|
|
|
|
2016-07-15 01:05:46 +02:00
|
|
|
"liblog",
|
2016-12-06 20:10:09 +01:00
|
|
|
"libc++_static",
|
2016-07-15 01:05:46 +02:00
|
|
|
|
|
|
|
// Important: The liblinker_malloc should be the last library in the list
|
|
|
|
// to overwrite any other malloc implementations by other static libraries.
|
2018-02-06 02:30:57 +01:00
|
|
|
"liblinker_malloc",
|
2016-07-15 01:05:46 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
name: "linker",
|
2016-12-08 18:57:35 +01:00
|
|
|
symlinks: ["linker_asan"],
|
2018-05-29 09:34:39 +02:00
|
|
|
recovery_available: true,
|
2016-07-15 01:05:46 +02:00
|
|
|
multilib: {
|
2019-01-16 19:14:45 +01:00
|
|
|
lib32: {
|
|
|
|
cflags: ["-DLIB_PATH=\"lib\""],
|
|
|
|
},
|
2016-07-15 01:05:46 +02:00
|
|
|
lib64: {
|
2019-01-16 19:14:45 +01:00
|
|
|
cflags: ["-DLIB_PATH=\"lib64\""],
|
2016-07-15 01:05:46 +02:00
|
|
|
suffix: "64",
|
2016-12-08 18:57:35 +01:00
|
|
|
},
|
2016-07-15 01:05:46 +02:00
|
|
|
},
|
2018-12-03 22:57:20 +01:00
|
|
|
system_shared_libs: [],
|
2016-07-15 01:05:46 +02:00
|
|
|
target: {
|
2016-11-29 02:02:25 +01:00
|
|
|
android: {
|
2017-05-07 22:07:41 +02:00
|
|
|
static_libs: ["libdebuggerd_handler_fallback"],
|
2016-11-29 02:02:25 +01:00
|
|
|
},
|
2016-07-15 01:05:46 +02:00
|
|
|
},
|
|
|
|
compile_multilib: "both",
|
2018-11-27 16:56:17 +01:00
|
|
|
xom: false,
|
2016-07-15 01:05:46 +02:00
|
|
|
}
|
2018-01-05 13:35:43 +01:00
|
|
|
|
|
|
|
cc_library {
|
|
|
|
// NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from
|
|
|
|
// libgcc.a are made static to ld-android.so. This in turn ensures that libraries that
|
|
|
|
// a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so
|
|
|
|
// to provide those symbols, but will instead pull them from libgcc.a. Specifically,
|
|
|
|
// we use this property to make sure libc.so has its own copy of the code from
|
|
|
|
// libgcc.a it uses.
|
|
|
|
//
|
|
|
|
// DO NOT REMOVE --exclude-libs!
|
|
|
|
|
2018-09-01 04:01:56 +02:00
|
|
|
ldflags: [
|
|
|
|
"-Wl,--exclude-libs=libgcc.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-x86-android.a",
|
|
|
|
"-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
|
|
|
|
],
|
2018-01-05 13:35:43 +01:00
|
|
|
|
|
|
|
// for x86, exclude libgcc_eh.a for the same reasons as above
|
|
|
|
arch: {
|
2018-01-05 14:31:44 +01:00
|
|
|
arm: {
|
|
|
|
version_script: "linker.arm.map",
|
|
|
|
},
|
|
|
|
arm64: {
|
|
|
|
version_script: "linker.generic.map",
|
|
|
|
},
|
2018-01-05 13:35:43 +01:00
|
|
|
x86: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
|
2018-01-05 14:31:44 +01:00
|
|
|
version_script: "linker.generic.map",
|
2018-01-05 13:35:43 +01:00
|
|
|
},
|
|
|
|
x86_64: {
|
|
|
|
ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
|
2018-01-05 14:31:44 +01:00
|
|
|
version_script: "linker.generic.map",
|
|
|
|
},
|
|
|
|
mips: {
|
|
|
|
version_script: "linker.generic.map",
|
|
|
|
},
|
|
|
|
mips64: {
|
|
|
|
version_script: "linker.generic.map",
|
2018-01-05 13:35:43 +01:00
|
|
|
},
|
|
|
|
},
|
2018-01-05 14:31:44 +01:00
|
|
|
|
|
|
|
srcs: ["ld_android.cpp"],
|
2018-01-05 13:35:43 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Wunused",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
stl: "none",
|
|
|
|
|
|
|
|
name: "ld-android",
|
|
|
|
defaults: ["linux_bionic_supported"],
|
2018-04-27 14:53:11 +02:00
|
|
|
recovery_available: true,
|
2018-01-05 13:35:43 +01:00
|
|
|
|
2018-03-28 07:10:55 +02:00
|
|
|
nocrt: true,
|
2018-01-05 13:35:43 +01:00
|
|
|
system_shared_libs: [],
|
|
|
|
|
|
|
|
sanitize: {
|
|
|
|
never: true,
|
|
|
|
},
|
|
|
|
}
|