libbpf: Improve library identification for uprobe binary path resolution
In the process of doing path resolution for uprobe attach, libraries are identified by matching a ".so" substring in the binary_path. This matches a lot of patterns that do not conform to library.so[.version] format, so instead match a ".so" _suffix_, and if that fails match a ".so." substring for the versioned library case. Suggested-by: Andrii Nakryiko <andrii@kernel.org> Signed-off-by: Alan Maguire <alan.maguire@oracle.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/1649245431-29956-2-git-send-email-alan.maguire@oracle.com
This commit is contained in:
committed by
Andrii Nakryiko
parent
9fc4476a08
commit
a1c9d61b19
@@ -10766,7 +10766,7 @@ static int resolve_full_path(const char *file, char *result, size_t result_sz)
|
||||
const char *search_paths[3] = {};
|
||||
int i;
|
||||
|
||||
if (strstr(file, ".so")) {
|
||||
if (str_has_sfx(file, ".so") || strstr(file, ".so.")) {
|
||||
search_paths[0] = getenv("LD_LIBRARY_PATH");
|
||||
search_paths[1] = "/usr/lib64:/usr/lib";
|
||||
search_paths[2] = arch_specific_lib_paths();
|
||||
|
||||
Reference in New Issue
Block a user