summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher R. Palmer <crpalmer@gmail.com>2015-12-01 07:10:36 -0500
committerGerrit Code Review <gerrit@cyanogenmod.org>2015-12-01 09:40:58 -0800
commit81105204fbb28ca97408a5dfe9608c6982317f24 (patch)
tree3624d1a7e5fbc05a4699d8933dc470dd60e9ea3d
parent3a2debfaa20cf09f37c44393abc89daeae139652 (diff)
downloadbionic-81105204fbb28ca97408a5dfe9608c6982317f24.tar.gz
bionic-81105204fbb28ca97408a5dfe9608c6982317f24.tar.bz2
bionic-81105204fbb28ca97408a5dfe9608c6982317f24.zip
linker: Don't try to walk the g_active_shim_libs when doing dlsym
This is a bug in the original shim_lib implementation which was doing the shim lib resolution both when loading the libraries and when doing the dynamic symbol resolution. Change-Id: Ib2df0498cf551b3bbd37d7c351410b9908eb1795
-rw-r--r--linker/linker.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp
index daaa502d1..2aafc6c05 100644
--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -945,7 +945,7 @@ static bool shim_libs_for_each(const char *const path, F action) {
// walk_dependencies_tree returns false if walk was terminated
// by the action and true otherwise.
template<typename F>
-static bool walk_dependencies_tree(soinfo* root_soinfos[], size_t root_soinfos_size, F action) {
+static bool walk_dependencies_tree(soinfo* root_soinfos[], size_t root_soinfos_size, bool do_shims, F action) {
SoinfoLinkedList visit_list;
SoinfoLinkedList visited;
@@ -969,7 +969,7 @@ static bool walk_dependencies_tree(soinfo* root_soinfos[], size_t root_soinfos_s
visit_list.push_back(child);
});
- if (!shim_libs_for_each(si->get_realpath(), [&](soinfo* child) {
+ if (do_shims && !shim_libs_for_each(si->get_realpath(), [&](soinfo* child) {
si->add_child(child);
visit_list.push_back(child);
})) {
@@ -986,7 +986,7 @@ static const ElfW(Sym)* dlsym_handle_lookup(soinfo* root, soinfo* skip_until,
const ElfW(Sym)* result = nullptr;
bool skip_lookup = skip_until != nullptr;
- walk_dependencies_tree(&root, 1, [&](soinfo* current_soinfo) {
+ walk_dependencies_tree(&root, 1, false, [&](soinfo* current_soinfo) {
if (skip_lookup) {
skip_lookup = current_soinfo != skip_until;
return true;
@@ -1565,6 +1565,7 @@ static bool find_libraries(soinfo* start_with, const char* const library_names[]
walk_dependencies_tree(
start_with == nullptr ? soinfos : &start_with,
start_with == nullptr ? soinfos_count : 1,
+ true,
[&] (soinfo* si) {
local_group.push_back(si);
return true;