mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-11-16 03:33:55 +00:00
Log if failed to dlopen a zygisk module
This commit is contained in:
@@ -112,14 +112,19 @@ static void zygiskd(int socket) {
|
||||
vector<comp_entry> modules;
|
||||
{
|
||||
vector<int> module_fds = recv_fds(socket);
|
||||
char buf[256];
|
||||
for (int fd : module_fds) {
|
||||
snprintf(buf, sizeof(buf), "/proc/self/fd/%d", fd);
|
||||
comp_entry entry = nullptr;
|
||||
if (void *h = dlopen(buf, RTLD_LAZY)) {
|
||||
android_dlextinfo info {
|
||||
.flags = ANDROID_DLEXT_USE_LIBRARY_FD,
|
||||
.library_fd = fd,
|
||||
};
|
||||
if (void *h = android_dlopen_ext("/jit-cache", RTLD_LAZY, &info)) {
|
||||
*(void **) &entry = dlsym(h, "zygisk_companion_entry");
|
||||
} else {
|
||||
LOGW("Failed to dlopen zygisk module: %s\n", dlerror());
|
||||
}
|
||||
modules.push_back(entry);
|
||||
close(fd);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user