2017-08-29 18:14:49 +02:00
|
|
|
{
|
|
|
|
global:
|
|
|
|
__loader_dlopen;
|
|
|
|
__loader_dlclose;
|
|
|
|
__loader_dlsym;
|
|
|
|
__loader_dlerror;
|
|
|
|
__loader_dladdr;
|
|
|
|
__loader_android_update_LD_LIBRARY_PATH;
|
|
|
|
__loader_android_get_LD_LIBRARY_PATH;
|
|
|
|
__loader_dl_iterate_phdr;
|
|
|
|
__loader_android_dlopen_ext;
|
|
|
|
__loader_android_set_application_target_sdk_version;
|
|
|
|
__loader_android_get_application_target_sdk_version;
|
|
|
|
__loader_android_init_anonymous_namespace;
|
|
|
|
__loader_android_create_namespace;
|
|
|
|
__loader_dlvsym;
|
|
|
|
__loader_android_dlwarning;
|
|
|
|
__loader_cfi_fail;
|
|
|
|
__loader_android_link_namespaces;
|
2018-01-18 05:05:09 +01:00
|
|
|
__loader_android_link_namespaces_all_libs;
|
2017-08-29 18:14:49 +02:00
|
|
|
__loader_android_get_exported_namespace;
|
|
|
|
__loader_dl_unwind_find_exidx;
|
2018-01-05 11:39:28 +01:00
|
|
|
__loader_add_thread_local_dtor;
|
|
|
|
__loader_remove_thread_local_dtor;
|
2018-11-22 11:40:17 +01:00
|
|
|
__loader_shared_globals;
|
2017-08-29 18:14:49 +02:00
|
|
|
rtld_db_dlactivity;
|
Add the recoverable GWP-ASan feature.
GWP-ASan's recoverable mode was landed upstream in
https://reviews.llvm.org/D140173.
This mode allows for a use-after-free or a buffer-overflow bug to be
detected by GWP-ASan, a crash report dumped, but then GWP-ASan (through
the preCrashReport() and postCrashReportRecoverableOnly() hooks) will
patch up the memory so that the process can continue, in spite of the
memory safety bug.
This is desirable, as it allows us to consider migrating non-system apps
from opt-in GWP-ASan to opt-out GWP-ASan. The major concern was "if we
make it opt-out, then bad apps will start crashing". If we don't crash,
problem solved :). Obviously, we'll need to do this with an amount of
process sampling to mitigate against the 70KiB memory overhead.
The biggest problem is that the debuggerd signal handler isn't the first
signal handler for apps, it's the sigchain handler inside of libart.
Clearly, the sigchain handler needs to ask us whether the crash is
GWP-ASan's fault, and if so, please patch up the allocator. Because of
linker namespace restrictions, libart can't directly ask the linker
(which is where debuggerd lies), so we provide a proxy function in libc.
Test: Build the platform, run sanitizer-status and various test apps
with recoverable gwp-asan. Assert that it doesn't crash, and we get a
debuggerd report.
Bug: 247012630
Change-Id: I86d5e27a9ca5531c8942e62647fd377c3cd36dfd
2023-01-19 21:47:22 +01:00
|
|
|
__loader_android_handle_signal;
|
2017-08-29 18:14:49 +02:00
|
|
|
local:
|
|
|
|
*;
|
|
|
|
};
|