blob: 4a5bf44a6036db9c63b04672f74d1c09a12f5bd5 [file] [log] [blame]
Ryan Prichard80e40f02019-10-31 19:54:46 -07001// ========================================================
2// linker_wrapper - Linux Bionic (on the host)
3// ========================================================
Colin Cross97f0aef2016-07-14 16:05:46 -07004
Dan Willemsen7ccc50d2017-09-18 21:28:14 -07005// This is used for bionic on (host) Linux to bootstrap our linker embedded into
6// a binary.
7//
8// Host bionic binaries do not have a PT_INTERP section, instead this gets
9// embedded as the entry point, and the linker is embedded as ELF sections in
10// each binary. There's a linker script that sets all of that up (generated by
11// extract_linker), and defines the extern symbols used in this file.
Bob Badouraa7d8352021-02-19 13:06:22 -080012package {
13 default_applicable_licenses: ["bionic_linker_license"],
14}
15
16license {
17 name: "bionic_linker_license",
18 visibility: [":__subpackages__"],
19 license_kinds: [
20 "SPDX-license-identifier-BSD",
21 ],
22 license_text: [
23 "NOTICE",
24 ],
25}
26
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070027cc_object {
28 name: "linker_wrapper",
29 host_supported: true,
30 device_supported: false,
31 target: {
Elliott Hughesd50a1de2018-02-05 17:30:57 -080032 linux_bionic: {
33 enabled: true,
34 },
35 linux_glibc: {
36 enabled: false,
37 },
38 darwin: {
39 enabled: false,
40 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070041 },
42
43 cflags: [
44 "-fno-stack-protector",
45 "-Wstrict-overflow=5",
46 "-fvisibility=hidden",
47 "-Wall",
48 "-Wextra",
49 "-Wno-unused",
50 "-Werror",
51 ],
52
53 srcs: [
54 "linker_wrapper.cpp",
55 ],
56 arch: {
Jiyong Park3b47d602020-09-18 16:15:53 +090057 arm64: {
58 srcs: ["arch/arm64/begin.S"],
59 },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070060 x86_64: {
61 srcs: ["arch/x86_64/begin.S"],
62 },
63 },
64
65 prefix_symbols: "__dlwrap_",
66
Martin Stjernholm82d84bc2020-04-06 20:32:09 +010067 header_libs: ["libc_headers"],
68
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070069 // We need to access Bionic private headers in the linker.
70 include_dirs: ["bionic/libc"],
Jingwen Chenc5794782021-03-10 03:24:48 -050071
72 // b/182338959
73 bazel_module: { bp2build_available: false },
Dan Willemsen7ccc50d2017-09-18 21:28:14 -070074}
75
Ryan Prichard80e40f02019-10-31 19:54:46 -070076// ========================================================
77// linker default configuration
78// ========================================================
79
80// Configuration for the linker binary and any of its static libraries.
81cc_defaults {
82 name: "linker_defaults",
83 arch: {
84 arm: {
85 cflags: ["-D__work_around_b_24465209__"],
86 },
87 x86: {
88 cflags: ["-D__work_around_b_24465209__"],
89 },
90 },
91
92 cflags: [
93 "-fno-stack-protector",
94 "-Wstrict-overflow=5",
95 "-fvisibility=hidden",
96 "-Wall",
97 "-Wextra",
98 "-Wunused",
99 "-Werror",
100 ],
101
102 // TODO: split out the asflags.
103 asflags: [
104 "-fno-stack-protector",
105 "-Wstrict-overflow=5",
106 "-fvisibility=hidden",
107 "-Wall",
108 "-Wextra",
109 "-Wunused",
110 "-Werror",
111 ],
112
113 product_variables: {
114 debuggable: {
115 cppflags: ["-DUSE_LD_CONFIG_FILE"],
116 },
117 },
118
119 cppflags: ["-Wold-style-cast"],
120
121 static_libs: [
122 "libziparchive",
123 "libbase",
124 "libz",
125
126 "libasync_safe",
127
128 "liblog",
129 ],
130
131 // We need to access Bionic private headers in the linker.
132 include_dirs: ["bionic/libc"],
133}
134
135// ========================================================
136// linker components
137// ========================================================
138
139// Enable a module on all targets the linker runs on (ordinary Android targets, Linux Bionic, and
140// native bridge implementations).
141cc_defaults {
142 name: "linker_all_targets",
143 defaults: ["linux_bionic_supported"],
144 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700145 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700146 native_bridge_supported: true,
147}
148
149cc_library_static {
Ryan Prichard249757b2019-11-01 17:18:28 -0700150 name: "liblinker_main",
151 defaults: ["linker_defaults", "linker_all_targets"],
152 srcs: ["linker_main.cpp"],
153
154 // Ensure that the compiler won't insert string function calls before ifuncs are resolved.
155 cflags: ["-ffreestanding"],
156}
157
158cc_library_static {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700159 name: "liblinker_malloc",
160 defaults: ["linker_defaults", "linker_all_targets"],
161 srcs: ["linker_memory.cpp"],
162}
163
164cc_library_static {
165 name: "liblinker_debuggerd_stub",
166 defaults: ["linker_defaults", "linker_all_targets"],
167 srcs: ["linker_debuggerd_stub.cpp"],
168}
169
170// ========================================================
171// template for the linker binary
172// ========================================================
173
dimitryb8b3a762018-09-25 12:31:11 +0200174filegroup {
175 name: "linker_sources",
Colin Cross97f0aef2016-07-14 16:05:46 -0700176 srcs: [
177 "dlfcn.cpp",
178 "linker.cpp",
179 "linker_block_allocator.cpp",
Dimitry Ivanov769b33f2016-07-21 11:33:40 -0700180 "linker_dlwarning.cpp",
Evgenii Stepanov0a3637d2016-07-06 13:20:59 -0700181 "linker_cfi.cpp",
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -0800182 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800183 "linker_debug.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700184 "linker_gdb_support.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700185 "linker_globals.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700186 "linker_libc_support.c",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800187 "linker_libcxx_support.cpp",
Dimitry Ivanovb943f302016-08-03 16:00:10 -0700188 "linker_namespaces.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700189 "linker_logger.cpp",
190 "linker_mapped_file_fragment.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100191 "linker_note_gnu_property.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700192 "linker_phdr.cpp",
Ryan Prichard339ecef2020-01-02 16:36:06 -0800193 "linker_relocate.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700194 "linker_sdk_versions.cpp",
Dimitry Ivanov48ec2882016-08-04 11:50:36 -0700195 "linker_soinfo.cpp",
Collin Fijalkovich47d27aa2021-03-24 10:17:39 -0700196 "linker_transparent_hugepage_support.cpp",
Ryan Prichard45d13492019-01-03 02:51:30 -0800197 "linker_tls.cpp",
Colin Cross97f0aef2016-07-14 16:05:46 -0700198 "linker_utils.cpp",
199 "rt.cpp",
200 ],
dimitryb8b3a762018-09-25 12:31:11 +0200201}
Colin Cross97f0aef2016-07-14 16:05:46 -0700202
dimitryb8b3a762018-09-25 12:31:11 +0200203filegroup {
204 name: "linker_sources_arm",
205 srcs: [
206 "arch/arm/begin.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800207 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200208 ],
209}
210
211filegroup {
212 name: "linker_sources_arm64",
213 srcs: [
214 "arch/arm64/begin.S",
Ryan Prichardffaae702019-01-23 17:47:10 -0800215 "arch/arm64/tlsdesc_resolver.S",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800216 "arch/arm_neon/linker_gnu_hash_neon.cpp",
dimitryb8b3a762018-09-25 12:31:11 +0200217 ],
218}
219
220filegroup {
221 name: "linker_sources_x86",
222 srcs: [
223 "arch/x86/begin.S",
224 ],
225}
226
227filegroup {
228 name: "linker_sources_x86_64",
229 srcs: [
230 "arch/x86_64/begin.S",
231 ],
232}
233
dimitryb8b3a762018-09-25 12:31:11 +0200234cc_defaults {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700235 name: "linker_version_script_overlay",
236 arch: {
237 arm: { version_script: "linker.arm.map" },
238 arm64: { version_script: "linker.generic.map" },
239 x86: { version_script: "linker.generic.map" },
240 x86_64: { version_script: "linker.generic.map" },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700241 },
242}
243
244// A template for the linker binary. May be inherited by native bridge implementations.
245cc_defaults {
246 name: "linker_bin_template",
247 defaults: ["linker_defaults"],
248
249 srcs: [":linker_sources"],
250
Colin Cross97f0aef2016-07-14 16:05:46 -0700251 arch: {
252 arm: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700253 srcs: [":linker_sources_arm"],
Ryan Prichard80e40f02019-10-31 19:54:46 -0700254 },
255 arm64: {
256 srcs: [":linker_sources_arm64"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700257 },
258 x86: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700259 srcs: [":linker_sources_x86"],
260 },
261 x86_64: {
262 srcs: [":linker_sources_x86_64"],
263 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700264 },
265
Ryan Prichard80e40f02019-10-31 19:54:46 -0700266 // -shared is used to overwrite the -Bstatic and -static flags triggered by enabling
267 // static_executable. This dynamic linker is actually a shared object linked with static
268 // libraries.
Colin Cross97f0aef2016-07-14 16:05:46 -0700269 ldflags: [
270 "-shared",
271 "-Wl,-Bsymbolic",
272 "-Wl,--exclude-libs,ALL",
dimitry8e8c2c02018-01-04 12:08:32 +0100273 "-Wl,-soname,ld-android.so",
Colin Cross97f0aef2016-07-14 16:05:46 -0700274 ],
275
Dimitry Ivanovfc0d4802016-12-06 11:10:09 -0800276 // we are going to link libc++_static manually because
277 // when stl is not set to "none" build system adds libdl
278 // to the list of static libraries which needs to be
279 // avoided in the case of building loader.
280 stl: "none",
281
Colin Cross97f0aef2016-07-14 16:05:46 -0700282 // we don't want crtbegin.o (because we have begin.o), so unset it
283 // just for this module
284 nocrt: true,
285
dimitryb8b3a762018-09-25 12:31:11 +0200286 static_executable: true,
287
288 // Leave the symbols in the shared library so that stack unwinders can produce
289 // meaningful name resolution.
290 strip: {
291 keep_symbols: true,
292 },
293
294 // Insert an extra objcopy step to add prefix to symbols. This is needed to prevent gdb
295 // looking up symbols in the linker by mistake.
296 prefix_symbols: "__dl_",
297
298 sanitize: {
299 hwaddress: false,
300 },
dimitryb8b3a762018-09-25 12:31:11 +0200301
Colin Cross97f0aef2016-07-14 16:05:46 -0700302 static_libs: [
Ryan Prichard249757b2019-11-01 17:18:28 -0700303 "liblinker_main",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700304 "liblinker_malloc",
305
306 "libc++_static",
Colin Cross97f0aef2016-07-14 16:05:46 -0700307 "libc_nomalloc",
Ryan Prichard249757b2019-11-01 17:18:28 -0700308 "libc_dynamic_dispatch",
Dimitry Ivanov451909d2017-01-26 16:52:59 -0800309 "libm",
Ryan Prichardcdf71752020-12-16 03:37:22 -0800310 "libunwind",
Colin Cross97f0aef2016-07-14 16:05:46 -0700311 ],
Colin Cross97f0aef2016-07-14 16:05:46 -0700312
Ryan Prichardd9a41152019-10-14 16:58:53 -0700313 // Ensure that if the linker needs __gnu_Unwind_Find_exidx, then the linker will have a
314 // definition of the symbol. The linker links against libgcc.a, whose arm32 unwinder has a weak
315 // reference to __gnu_Unwind_Find_exidx, which isn't sufficient to pull in the strong definition
316 // of __gnu_Unwind_Find_exidx from libc. An unresolved weak reference would create a
317 // non-relative dynamic relocation in the linker binary, which complicates linker startup.
318 //
319 // This line should be unnecessary because the linker's dependency on libunwind_llvm.a should
320 // override libgcc.a, but this line provides a simpler guarantee. It can be removed once the
321 // linker stops linking against libgcc.a's arm32 unwinder.
322 whole_static_libs: ["libc_unwind_static"],
323
Ryan Prichard80e40f02019-10-31 19:54:46 -0700324 system_shared_libs: [],
325
326 // Opt out of native_coverage when opting out of system_shared_libs
327 native_coverage: false,
328}
329
330// ========================================================
331// linker[_asan][64] binary
332// ========================================================
333
334cc_binary {
Colin Cross97f0aef2016-07-14 16:05:46 -0700335 name: "linker",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700336 defaults: [
337 "linker_bin_template",
338 "linux_bionic_supported",
339 "linker_version_script_overlay",
340 ],
341
Victor Khimenkod15229d2020-05-14 22:14:45 +0200342 srcs: [
343 "linker_translate_path.cpp",
344 ],
345
Colin Cross10fffb42016-12-08 09:57:35 -0800346 symlinks: ["linker_asan"],
Colin Cross97f0aef2016-07-14 16:05:46 -0700347 multilib: {
Colin Cross97f0aef2016-07-14 16:05:46 -0700348 lib64: {
349 suffix: "64",
Colin Cross10fffb42016-12-08 09:57:35 -0800350 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700351 },
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800352
Ryan Prichard80e40f02019-10-31 19:54:46 -0700353 compile_multilib: "both",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700354
355 recovery_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700356 vendor_ramdisk_available: true,
Ryan Prichard80e40f02019-10-31 19:54:46 -0700357 apex_available: [
358 "//apex_available:platform",
359 "com.android.runtime",
360 ],
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800361
Colin Cross97f0aef2016-07-14 16:05:46 -0700362 target: {
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800363 android: {
Ryan Prichard80e40f02019-10-31 19:54:46 -0700364 srcs: [
365 "linker_debuggerd_android.cpp",
366 ],
Dan Albert4ea19212019-07-23 13:31:14 -0700367 static_libs: [
368 "libc++demangle",
369 "libdebuggerd_handler_fallback",
370 ],
Dan Willemsen7ec52b12016-11-28 17:02:25 -0800371 },
Ryan Prichard80e40f02019-10-31 19:54:46 -0700372 linux_bionic: {
373 static_libs: [
374 "liblinker_debuggerd_stub",
375 ],
Yi Kong6f6daaa2020-12-10 01:27:44 +0800376 },
377 android_arm64: {
378 pgo: {
379 profile_file: "bionic/linker_arm_arm64.profdata",
380 },
381 },
382 android_arm: {
383 pgo: {
384 profile_file: "bionic/linker_arm_arm64.profdata",
385 },
386 },
387 android_x86_64: {
388 pgo: {
389 profile_file: "bionic/linker_x86_x86_64.profdata",
390 },
391 },
392 android_x86: {
393 pgo: {
394 profile_file: "bionic/linker_x86_x86_64.profdata",
395 },
396 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700397 },
Yi Konga7e363f2020-10-01 04:10:01 +0800398
399 lto: {
400 never: true,
401 },
Yi Kong6f6daaa2020-12-10 01:27:44 +0800402 pgo: {
403 sampling: true,
404 },
Colin Cross97f0aef2016-07-14 16:05:46 -0700405}
dimitry11da1dc2018-01-05 13:35:43 +0100406
Ryan Prichard80e40f02019-10-31 19:54:46 -0700407// ========================================================
408// assorted modules
409// ========================================================
410
Elliott Hughes90f96b92019-05-09 15:56:39 -0700411sh_binary {
412 name: "ldd",
Rupert Shuttlewortha7e29a82021-02-18 13:35:22 +0000413 src: "ldd.sh",
Rupert Shuttleworth344b8da2021-02-09 11:35:04 +0000414 bazel_module: { bp2build_available: true },
Elliott Hughes90f96b92019-05-09 15:56:39 -0700415}
416
Collin Fijalkovichc9521e02021-04-29 11:31:50 -0700417// Used to generate binaries that can be backed by transparent hugepages.
418cc_defaults {
419 name: "linker_hugepage_aligned",
420 arch: {
421 arm64: {
422 ldflags: ["-z max-page-size=0x200000"],
423 },
424 x86_64: {
425 ldflags: ["-z max-page-size=0x200000"],
426 },
427 },
428}
429
dimitry11da1dc2018-01-05 13:35:43 +0100430cc_library {
431 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from
432 // libgcc.a are made static to ld-android.so. This in turn ensures that libraries that
433 // a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so
434 // to provide those symbols, but will instead pull them from libgcc.a. Specifically,
435 // we use this property to make sure libc.so has its own copy of the code from
436 // libgcc.a it uses.
437 //
438 // DO NOT REMOVE --exclude-libs!
439
Yi Kong7786a342018-08-31 19:01:56 -0700440 ldflags: [
441 "-Wl,--exclude-libs=libgcc.a",
Yi Kong7ac2afb2019-05-06 16:23:10 -0700442 "-Wl,--exclude-libs=libgcc_stripped.a",
Yi Kong7786a342018-08-31 19:01:56 -0700443 "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
444 "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
Ryan Prichardef147872021-01-28 14:06:52 -0800445 "-Wl,--exclude-libs=libclang_rt.builtins-i686-android.a",
Yi Kong7786a342018-08-31 19:01:56 -0700446 "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
447 ],
dimitry11da1dc2018-01-05 13:35:43 +0100448
449 // for x86, exclude libgcc_eh.a for the same reasons as above
450 arch: {
451 x86: {
452 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
453 },
454 x86_64: {
455 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
456 },
457 },
dimitry581723e2018-01-05 14:31:44 +0100458
459 srcs: ["ld_android.cpp"],
dimitry11da1dc2018-01-05 13:35:43 +0100460 cflags: [
461 "-Wall",
462 "-Wextra",
463 "-Wunused",
464 "-Werror",
465 ],
466 stl: "none",
467
468 name: "ld-android",
Ryan Prichard80e40f02019-10-31 19:54:46 -0700469 defaults: ["linux_bionic_supported", "linker_version_script_overlay"],
Yifan Hong5a39cee2020-01-21 16:43:56 -0800470 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700471 vendor_ramdisk_available: true,
Jiyong Park5603c6e2018-04-27 21:53:11 +0900472 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +0200473 native_bridge_supported: true,
dimitry11da1dc2018-01-05 13:35:43 +0100474
Ryan Prichard470b6662018-03-27 22:10:55 -0700475 nocrt: true,
dimitry11da1dc2018-01-05 13:35:43 +0100476 system_shared_libs: [],
Martin Stjernholm82d84bc2020-04-06 20:32:09 +0100477 header_libs: ["libc_headers"],
dimitry11da1dc2018-01-05 13:35:43 +0100478
Pirama Arumuga Nainarfcd35382019-02-14 13:48:01 -0800479 // Opt out of native_coverage when opting out of system_shared_libs
480 native_coverage: false,
481
dimitry11da1dc2018-01-05 13:35:43 +0100482 sanitize: {
483 never: true,
484 },
Jiyong Parke87e0dc2019-10-02 17:09:33 +0900485
486 apex_available: [
487 "//apex_available:platform",
488 "com.android.runtime",
489 ],
Yi Kong15a05a72020-09-22 00:56:13 +0800490
491 lto: {
492 never: true,
493 },
dimitry11da1dc2018-01-05 13:35:43 +0100494}
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800495
496cc_test {
497 name: "linker-unit-tests",
498
499 cflags: [
500 "-g",
501 "-Wall",
502 "-Wextra",
503 "-Wunused",
504 "-Werror",
505 ],
506
507 // We need to access Bionic private headers in the linker.
508 include_dirs: ["bionic/libc"],
509
510 srcs: [
511 // Tests.
512 "linker_block_allocator_test.cpp",
513 "linker_config_test.cpp",
514 "linked_list_test.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100515 "linker_note_gnu_property_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800516 "linker_sleb128_test.cpp",
517 "linker_utils_test.cpp",
Ryan Prichard129f7a12019-12-23 16:45:47 -0800518 "linker_gnu_hash_test.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800519
520 // Parts of the linker that we're testing.
521 "linker_block_allocator.cpp",
522 "linker_config.cpp",
Ryan Prichard551565e2019-12-23 16:03:14 -0800523 "linker_debug.cpp",
Tamas Petz8d55d182020-02-24 14:15:25 +0100524 "linker_note_gnu_property.cpp",
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800525 "linker_test_globals.cpp",
526 "linker_utils.cpp",
527 ],
528
529 static_libs: [
530 "libasync_safe",
531 "libbase",
532 "liblog",
533 ],
Ryan Prichard129f7a12019-12-23 16:45:47 -0800534
535 arch: {
536 arm: {
537 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
538 },
539 arm64: {
540 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
541 },
542 },
543}
544
545cc_benchmark {
546 name: "linker-benchmarks",
547
548 srcs: [
549 "linker_gnu_hash_benchmark.cpp",
550 ],
551
552 arch: {
553 arm: {
554 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
555 },
556 arm64: {
557 srcs: ["arch/arm_neon/linker_gnu_hash_neon.cpp"],
558 },
559 },
Elliott Hughes15a2b7b2019-02-15 13:48:38 -0800560}