#include #include #include #include #include #include #include #include #include #include #include "zygisk.hpp" #include "module.hpp" using namespace std; // Extreme verbose logging #define ZLOGV(...) ZLOGD(__VA_ARGS__) //#define ZLOGV(...) (void*)0 static void hook_unloader(); static void unhook_functions(); static void hook_jni_env(); static void reload_native_bridge(const string &nb); namespace { enum { POST_SPECIALIZE, APP_FORK_AND_SPECIALIZE, APP_SPECIALIZE, SERVER_FORK_AND_SPECIALIZE, DO_REVERT_UNMOUNT, SKIP_CLOSE_LOG_PIPE, FLAG_MAX }; #define MAX_FD_SIZE 1024 // Global variables vector> *plt_hook_list; map, StringCmp> *jni_hook_list; bool should_unmap_zygisk = false; // Current context HookContext *g_ctx; const JNINativeInterface *old_functions = nullptr; JNINativeInterface *new_functions = nullptr; const NativeBridgeRuntimeCallbacks *runtime_callbacks = nullptr; #define DCL_PRE_POST(name) \ void name##_pre(); \ void name##_post(); struct HookContext { JNIEnv *env; union { void *ptr; AppSpecializeArgs_v3 *app; ServerSpecializeArgs_v1 *server; } args; const char *process; list modules; int pid; bitset flags; uint32_t info_flags; bitset allowed_fds; vector exempted_fds; struct RegisterInfo { regex_t regex; string symbol; void *callback; void **backup; }; struct IgnoreInfo { regex_t regex; string symbol; }; pthread_mutex_t hook_info_lock; vector register_info; vector ignore_info; HookContext(JNIEnv *env, void *args) : env(env), args{args}, process(nullptr), pid(-1), info_flags(0), hook_info_lock(PTHREAD_MUTEX_INITIALIZER) { g_ctx = this; } ~HookContext(); void run_modules_pre(const vector &fds); void run_modules_post(); DCL_PRE_POST(fork) DCL_PRE_POST(app_specialize) DCL_PRE_POST(server_specialize) DCL_PRE_POST(nativeForkAndSpecialize) DCL_PRE_POST(nativeSpecializeAppProcess) DCL_PRE_POST(nativeForkSystemServer) void sanitize_fds(); bool exempt_fd(int fd); bool is_child() const { return pid <= 0; } bool can_exempt_fd() const { return flags[APP_FORK_AND_SPECIALIZE] && args.app->fds_to_ignore; } // Compatibility shim void plt_hook_register(const char *regex, const char *symbol, void *fn, void **backup); void plt_hook_exclude(const char *regex, const char *symbol); void plt_hook_process_regex(); bool plt_hook_commit(); }; #undef DCL_PRE_POST // ----------------------------------------------------------------- #define DCL_HOOK_FUNC(ret, func, ...) \ ret (*old_##func)(__VA_ARGS__); \ ret new_##func(__VA_ARGS__) DCL_HOOK_FUNC(void, androidSetCreateThreadFunc, void *func) { ZLOGD("androidSetCreateThreadFunc\n"); hook_jni_env(); old_androidSetCreateThreadFunc(func); } // Skip actual fork and return cached result if applicable DCL_HOOK_FUNC(int, fork) { return (g_ctx && g_ctx->pid >= 0) ? g_ctx->pid : old_fork(); } // Unmount stuffs in the process's private mount namespace DCL_HOOK_FUNC(int, unshare, int flags) { int res = old_unshare(flags); if (g_ctx && (flags & CLONE_NEWNS) != 0 && res == 0 && // For some unknown reason, unmounting app_process in SysUI can break. // This is reproducible on the official AVD running API 26 and 27. // Simply avoid doing any unmounts for SysUI to avoid potential issues. (g_ctx->info_flags & PROCESS_IS_SYS_UI) == 0) { if (g_ctx->flags[DO_REVERT_UNMOUNT]) { revert_unmount(); } // Restore errno back to 0 errno = 0; } return res; } // This is the last moment before the secontext of the process changes DCL_HOOK_FUNC(int, selinux_android_setcontext, uid_t uid, bool isSystemServer, const char *seinfo, const char *pkgname) { // Pre-fetch logd before secontext transition zygisk_get_logd(); return old_selinux_android_setcontext(uid, isSystemServer, seinfo, pkgname); } // Close file descriptors to prevent crashing DCL_HOOK_FUNC(void, android_log_close) { if (g_ctx == nullptr || !g_ctx->flags[SKIP_CLOSE_LOG_PIPE]) { // This happens during forks like nativeForkApp, nativeForkUsap, // nativeForkSystemServer, and nativeForkAndSpecialize. zygisk_close_logd(); } old_android_log_close(); } // We cannot directly call `dlclose` to unload ourselves, otherwise when `dlclose` returns, // it will return to our code which has been unmapped, causing segmentation fault. // Instead, we hook `pthread_attr_destroy` which will be called when VM daemon threads start. DCL_HOOK_FUNC(int, pthread_attr_destroy, void *target) { int res = old_pthread_attr_destroy((pthread_attr_t *)target); // Only perform unloading on the main thread if (gettid() != getpid()) return res; ZLOGV("pthread_attr_destroy\n"); if (should_unmap_zygisk) { unhook_functions(); if (should_unmap_zygisk) { // Because both `pthread_attr_destroy` and `dlclose` have the same function signature, // we can use `musttail` to let the compiler reuse our stack frame and thus // `dlclose` will directly return to the caller of `pthread_attr_destroy`. [[clang::musttail]] return dlclose(self_handle); } } return res; } // it should be safe to assume all dlclose's in libnativebridge are for zygisk_loader DCL_HOOK_FUNC(int, dlclose, void *handle) { static bool kDone = false; if (!kDone) { ZLOGV("dlclose zygisk_loader\n"); kDone = true; reload_native_bridge(get_prop(NBPROP)); } [[clang::musttail]] return old_dlclose(handle); } #undef DCL_HOOK_FUNC // ----------------------------------------------------------------- void hookJniNativeMethods(JNIEnv *env, const char *clz, JNINativeMethod *methods, int numMethods) { jclass clazz; if (!runtime_callbacks || !env || !clz || !(clazz = env->FindClass(clz))) { for (auto i = 0; i < numMethods; ++i) { methods[i].fnPtr = nullptr; } return; } // Backup existing methods auto total = runtime_callbacks->getNativeMethodCount(env, clazz); vector old_methods(total); runtime_callbacks->getNativeMethods(env, clazz, old_methods.data(), total); // Replace the method for (auto i = 0; i < numMethods; ++i) { auto &method = methods[i]; auto res = env->RegisterNatives(clazz, &method, 1); // It's normal that the method is not found if (res == JNI_ERR || env->ExceptionCheck()) { auto exception = env->ExceptionOccurred(); if (exception) env->DeleteLocalRef(exception); env->ExceptionClear(); method.fnPtr = nullptr; } else { // Find the old function pointer and return to caller for (const auto &old_method : old_methods) { if (strcmp(method.name, old_method.name) == 0 && strcmp(method.signature, old_method.signature) == 0) { ZLOGD("replace %s#%s%s %p -> %p\n", clz, method.name, method.signature, old_method.fnPtr, method.fnPtr); method.fnPtr = old_method.fnPtr; } } } } } ZygiskModule::ZygiskModule(int id, void *handle, void *entry) : id(id), handle(handle), entry{entry}, api{}, mod{nullptr} { // Make sure all pointers are null memset(&api, 0, sizeof(api)); api.base.impl = this; api.base.registerModule = &ZygiskModule::RegisterModuleImpl; } bool ZygiskModule::RegisterModuleImpl(ApiTable *api, long *module) { if (api == nullptr || module == nullptr) return false; long api_version = *module; // Unsupported version if (api_version > ZYGISK_API_VERSION) return false; // Set the actual module_abi* api->base.impl->mod = { module }; // Fill in API accordingly with module API version if (api_version >= 1) { api->v1.hookJniNativeMethods = hookJniNativeMethods; api->v1.pltHookRegister = [](auto a, auto b, auto c, auto d) { if (g_ctx) g_ctx->plt_hook_register(a, b, c, d); }; api->v1.pltHookExclude = [](auto a, auto b) { if (g_ctx) g_ctx->plt_hook_exclude(a, b); }; api->v1.pltHookCommit = []() { return g_ctx && g_ctx->plt_hook_commit(); }; api->v1.connectCompanion = [](ZygiskModule *m) { return m->connectCompanion(); }; api->v1.setOption = [](ZygiskModule *m, auto opt) { m->setOption(opt); }; } if (api_version >= 2) { api->v2.getModuleDir = [](ZygiskModule *m) { return m->getModuleDir(); }; api->v2.getFlags = [](auto) { return ZygiskModule::getFlags(); }; } if (api_version >= 4) { api->v4.pltHookCommit = lsplt::CommitHook; api->v4.pltHookRegister = [](dev_t dev, ino_t inode, const char *symbol, void *fn, void **backup) { if (dev == 0 || inode == 0 || symbol == nullptr || fn == nullptr) return; lsplt::RegisterHook(dev, inode, symbol, fn, backup); }; api->v4.exemptFd = [](int fd) { return g_ctx && g_ctx->exempt_fd(fd); }; } return true; } void HookContext::plt_hook_register(const char *regex, const char *symbol, void *fn, void **backup) { if (regex == nullptr || symbol == nullptr || fn == nullptr) return; regex_t re; if (regcomp(&re, regex, REG_NOSUB) != 0) return; mutex_guard lock(hook_info_lock); register_info.emplace_back(RegisterInfo{re, symbol, fn, backup}); } void HookContext::plt_hook_exclude(const char *regex, const char *symbol) { if (!regex) return; regex_t re; if (regcomp(&re, regex, REG_NOSUB) != 0) return; mutex_guard lock(hook_info_lock); ignore_info.emplace_back(IgnoreInfo{re, symbol ?: ""}); } void HookContext::plt_hook_process_regex() { if (register_info.empty()) return; for (auto &map : lsplt::MapInfo::Scan()) { if (map.offset != 0 || !map.is_private || !(map.perms & PROT_READ)) continue; for (auto ®: register_info) { if (regexec(®.regex, map.path.data(), 0, nullptr, 0) != 0) continue; bool ignored = false; for (auto &ign: ignore_info) { if (regexec(&ign.regex, map.path.data(), 0, nullptr, 0) != 0) continue; if (ign.symbol.empty() || ign.symbol == reg.symbol) { ignored = true; break; } } if (!ignored) { lsplt::RegisterHook(map.dev, map.inode, reg.symbol, reg.callback, reg.backup); } } } } bool HookContext::plt_hook_commit() { { mutex_guard lock(hook_info_lock); plt_hook_process_regex(); register_info.clear(); ignore_info.clear(); } return lsplt::CommitHook(); } bool ZygiskModule::valid() const { if (mod.api_version == nullptr) return false; switch (*mod.api_version) { case 4: case 3: case 2: case 1: return mod.v1->impl && mod.v1->preAppSpecialize && mod.v1->postAppSpecialize && mod.v1->preServerSpecialize && mod.v1->postServerSpecialize; default: return false; } } int ZygiskModule::connectCompanion() const { if (int fd = zygisk_request(ZygiskRequest::CONNECT_COMPANION); fd >= 0) { write_int(fd, id); return fd; } return -1; } int ZygiskModule::getModuleDir() const { if (int fd = zygisk_request(ZygiskRequest::GET_MODDIR); fd >= 0) { write_int(fd, id); int dfd = recv_fd(fd); close(fd); return dfd; } return -1; } void ZygiskModule::setOption(zygisk::Option opt) { if (g_ctx == nullptr) return; switch (opt) { case zygisk::FORCE_DENYLIST_UNMOUNT: g_ctx->flags[DO_REVERT_UNMOUNT] = true; break; case zygisk::DLCLOSE_MODULE_LIBRARY: unload = true; break; } } uint32_t ZygiskModule::getFlags() { return g_ctx ? (g_ctx->info_flags & ~PRIVATE_MASK) : 0; } // ----------------------------------------------------------------- int sigmask(int how, int signum) { sigset_t set; sigemptyset(&set); sigaddset(&set, signum); return sigprocmask(how, &set, nullptr); } void HookContext::fork_pre() { // Do our own fork before loading any 3rd party code // First block SIGCHLD, unblock after original fork is done sigmask(SIG_BLOCK, SIGCHLD); pid = old_fork(); if (!is_child()) return; // Record all open fds auto dir = xopen_dir("/proc/self/fd"); for (dirent *entry; (entry = xreaddir(dir.get()));) { int fd = parse_int(entry->d_name); if (fd < 0 || fd >= MAX_FD_SIZE) { close(fd); continue; } allowed_fds[fd] = true; } // The dirfd will be closed once out of scope allowed_fds[dirfd(dir.get())] = false; // logd_fd should be handled separately if (int fd = zygisk_get_logd(); fd >= 0) { allowed_fds[fd] = false; } } void HookContext::fork_post() { // Unblock SIGCHLD in case the original method didn't sigmask(SIG_UNBLOCK, SIGCHLD); } void HookContext::sanitize_fds() { zygisk_close_logd(); if (!is_child()) { return; } if (can_exempt_fd() && !exempted_fds.empty()) { auto update_fd_array = [&](int old_len) -> jintArray { jintArray array = env->NewIntArray(static_cast(old_len + exempted_fds.size())); if (array == nullptr) return nullptr; env->SetIntArrayRegion( array, old_len, static_cast(exempted_fds.size()), exempted_fds.data()); for (int fd : exempted_fds) { if (fd >= 0 && fd < MAX_FD_SIZE) { allowed_fds[fd] = true; } } *args.app->fds_to_ignore = array; return array; }; if (jintArray fdsToIgnore = *args.app->fds_to_ignore) { int *arr = env->GetIntArrayElements(fdsToIgnore, nullptr); int len = env->GetArrayLength(fdsToIgnore); for (int i = 0; i < len; ++i) { int fd = arr[i]; if (fd >= 0 && fd < MAX_FD_SIZE) { allowed_fds[fd] = true; } } if (jintArray newFdList = update_fd_array(len)) { env->SetIntArrayRegion(newFdList, 0, len, arr); } env->ReleaseIntArrayElements(fdsToIgnore, arr, JNI_ABORT); } else { update_fd_array(0); } } // Close all forbidden fds to prevent crashing auto dir = xopen_dir("/proc/self/fd"); int dfd = dirfd(dir.get()); for (dirent *entry; (entry = xreaddir(dir.get()));) { int fd = parse_int(entry->d_name); if ((fd < 0 || fd >= MAX_FD_SIZE || !allowed_fds[fd]) && fd != dfd) { close(fd); } } } void HookContext::run_modules_pre(const vector &fds) { for (int i = 0; i < fds.size(); ++i) { struct stat s{}; if (fstat(fds[i], &s) != 0 || !S_ISREG(s.st_mode)) { close(fds[i]); continue; } android_dlextinfo info { .flags = ANDROID_DLEXT_USE_LIBRARY_FD, .library_fd = fds[i], }; if (void *h = android_dlopen_ext("/jit-cache", RTLD_LAZY, &info)) { if (void *e = dlsym(h, "zygisk_module_entry")) { modules.emplace_back(i, h, e); } } else if (g_ctx->flags[SERVER_FORK_AND_SPECIALIZE]) { ZLOGW("Failed to dlopen zygisk module: %s\n", dlerror()); } close(fds[i]); } for (auto it = modules.begin(); it != modules.end();) { it->onLoad(env); if (it->valid()) { ++it; } else { it = modules.erase(it); } } for (auto &m : modules) { if (flags[APP_SPECIALIZE]) { m.preAppSpecialize(args.app); } else if (flags[SERVER_FORK_AND_SPECIALIZE]) { m.preServerSpecialize(args.server); } } } void HookContext::run_modules_post() { flags[POST_SPECIALIZE] = true; for (const auto &m : modules) { if (flags[APP_SPECIALIZE]) { m.postAppSpecialize(args.app); } else if (flags[SERVER_FORK_AND_SPECIALIZE]) { m.postServerSpecialize(args.server); } m.tryUnload(); } } void HookContext::app_specialize_pre() { flags[APP_SPECIALIZE] = true; vector module_fds; int fd = remote_get_info(args.app->uid, process, &info_flags, module_fds); if (args.app->app_data_dir) { const auto *app_data_dir = env->GetStringUTFChars(args.app->app_data_dir, nullptr); if (std::string_view(app_data_dir).ends_with("/com.android.systemui")) { info_flags |= PROCESS_IS_SYS_UI; } env->ReleaseStringUTFChars(args.app->app_data_dir, app_data_dir); } if ((info_flags & UNMOUNT_MASK) == UNMOUNT_MASK) { ZLOGI("[%s] is on the denylist\n", process); flags[DO_REVERT_UNMOUNT] = true; } else if (fd >= 0) { run_modules_pre(module_fds); } close(fd); } void HookContext::app_specialize_post() { run_modules_post(); if (info_flags & PROCESS_IS_MAGISK_APP) { setenv("ZYGISK_ENABLED", "1", 1); } // Cleanups env->ReleaseStringUTFChars(args.app->nice_name, process); } void HookContext::server_specialize_pre() { vector module_fds; int fd = remote_get_info(1000, "system_server", &info_flags, module_fds); if (fd >= 0) { if (module_fds.empty()) { write_int(fd, 0); } else { run_modules_pre(module_fds); // Send the bitset of module status back to magiskd from system_server dynamic_bitset bits; for (const auto &m : modules) bits[m.getId()] = true; write_int(fd, static_cast(bits.slots())); for (int i = 0; i < bits.slots(); ++i) { auto l = bits.get_slot(i); xwrite(fd, &l, sizeof(l)); } } close(fd); } } void HookContext::server_specialize_post() { run_modules_post(); } HookContext::~HookContext() { // This global pointer points to a variable on the stack. // Set this to nullptr to prevent leaking local variable. // This also disables most plt hooked functions. g_ctx = nullptr; if (!is_child()) return; zygisk_close_logd(); android_logging(); should_unmap_zygisk = true; // Unhook JNI methods for (const auto &[clz, methods] : *jni_hook_list) { if (!methods.empty() && env->RegisterNatives( env->FindClass(clz.data()), methods.data(), static_cast(methods.size())) != 0) { ZLOGE("Failed to restore JNI hook of class [%s]\n", clz.data()); should_unmap_zygisk = false; } } delete jni_hook_list; jni_hook_list = nullptr; // Strip out all API function pointers for (auto &m : modules) { m.clearApi(); } hook_unloader(); } bool HookContext::exempt_fd(int fd) { if (flags[POST_SPECIALIZE] || flags[SKIP_CLOSE_LOG_PIPE]) return true; if (!can_exempt_fd()) return false; exempted_fds.push_back(fd); return true; } // ----------------------------------------------------------------- void HookContext::nativeSpecializeAppProcess_pre() { process = env->GetStringUTFChars(args.app->nice_name, nullptr); ZLOGV("pre specialize [%s]\n", process); // App specialize does not check FD flags[SKIP_CLOSE_LOG_PIPE] = true; app_specialize_pre(); } void HookContext::nativeSpecializeAppProcess_post() { ZLOGV("post specialize [%s]\n", process); app_specialize_post(); } void HookContext::nativeForkSystemServer_pre() { ZLOGV("pre forkSystemServer\n"); flags[SERVER_FORK_AND_SPECIALIZE] = true; fork_pre(); if (is_child()) { server_specialize_pre(); } sanitize_fds(); } void HookContext::nativeForkSystemServer_post() { if (is_child()) { ZLOGV("post forkSystemServer\n"); server_specialize_post(); } fork_post(); } void HookContext::nativeForkAndSpecialize_pre() { process = env->GetStringUTFChars(args.app->nice_name, nullptr); ZLOGV("pre forkAndSpecialize [%s]\n", process); flags[APP_FORK_AND_SPECIALIZE] = true; fork_pre(); if (is_child()) { app_specialize_pre(); } sanitize_fds(); } void HookContext::nativeForkAndSpecialize_post() { if (is_child()) { ZLOGV("post forkAndSpecialize [%s]\n", process); app_specialize_post(); } fork_post(); } } // namespace // ----------------------------------------------------------------- inline void *unwind_get_region_start(_Unwind_Context *ctx) { auto fp = _Unwind_GetRegionStart(ctx); #if defined(__arm__) // On arm32, we need to check if the pc is in thumb mode, // if so, we need to set the lowest bit of fp to 1 auto pc = _Unwind_GetGR(ctx, 15); // r15 is pc if (pc & 1) { // Thumb mode fp |= 1; } #endif return reinterpret_cast(fp); } // As we use NativeBridgeRuntimeCallbacks to reload native bridge and to hook jni functions, // we need to find it by the native bridge's unwind context. // For abis that use registers to pass arguments, i.e. arm32, arm64, x86_64, the registers are // caller-saved, and they are not preserved in the unwind context. However, they will be saved // into the callee-saved registers, so we will search the callee-saved registers for the second // argument, which is the pointer to NativeBridgeRuntimeCallbacks. // For x86, whose abi uses stack to pass arguments, we can directly get the pointer to // NativeBridgeRuntimeCallbacks from the stack. static const NativeBridgeRuntimeCallbacks* find_runtime_callbacks(struct _Unwind_Context *ctx) { // Find the writable memory region of libart.so, where the NativeBridgeRuntimeCallbacks is located. auto [start, end] = []()-> tuple { for (const auto &map : lsplt::MapInfo::Scan()) { if (map.path.ends_with("/libart.so") && map.perms == (PROT_WRITE | PROT_READ)) { ZLOGV("libart.so: start=%p, end=%p\n", reinterpret_cast(map.start), reinterpret_cast(map.end)); return {map.start, map.end}; } } return {0, 0}; }(); #if defined(__aarch64__) // r19-r28 are callee-saved registers for (int i = 19; i <= 28; ++i) { auto val = static_cast(_Unwind_GetGR(ctx, i)); ZLOGV("r%d = %p\n", i, reinterpret_cast(val)); if (val >= start && val < end) return reinterpret_cast(val); } #elif defined(__arm__) // r4-r10 are callee-saved registers for (int i = 4; i <= 10; ++i) { auto val = static_cast(_Unwind_GetGR(ctx, i)); ZLOGV("r%d = %p\n", i, reinterpret_cast(val)); if (val >= start && val < end) return reinterpret_cast(val); } #elif defined(__i386__) // get ebp, which points to the bottom of the stack frame auto ebp = static_cast(_Unwind_GetGR(ctx, 5)); // 1 pointer size above ebp is the old ebp // 2 pointer sizes above ebp is the return address // 3 pointer sizes above ebp is the 2nd arg auto val = *reinterpret_cast(ebp + 3 * sizeof(void *)); ZLOGV("ebp + 3 * ptr_size = %p\n", reinterpret_cast(val)); if (val >= start && val < end) return reinterpret_cast(val); #elif defined(__x86_64__) // r12-r15 and rbx are callee-saved registers, but the compiler is likely to use them reversely for (int i : {3, 15, 14, 13, 12}) { auto val = static_cast(_Unwind_GetGR(ctx, i)); ZLOGV("r%d = %p\n", i, reinterpret_cast(val)); if (val >= start && val < end) return reinterpret_cast(val); } #else #error "Unsupported architecture" #endif return nullptr; } static void reload_native_bridge(const string &nb) { // Use unwind to find the address of android::LoadNativeBridge and NativeBridgeRuntimeCallbacks bool (*load_native_bridge)(const char *nb_library_filename, const NativeBridgeRuntimeCallbacks *runtime_cbs) = nullptr; _Unwind_Backtrace(+[](struct _Unwind_Context *ctx, void *arg) -> _Unwind_Reason_Code { void *fp = unwind_get_region_start(ctx); Dl_info info{}; dladdr(fp, &info); ZLOGV("backtrace: %p %s\n", fp, info.dli_fname ? info.dli_fname : "???"); if (info.dli_fname && std::string_view(info.dli_fname).ends_with("/libnativebridge.so")) { *reinterpret_cast(arg) = fp; runtime_callbacks = find_runtime_callbacks(ctx); ZLOGD("cbs: %p\n", runtime_callbacks); return _URC_END_OF_STACK; } return _URC_NO_REASON; }, &load_native_bridge); auto len = sizeof(ZYGISKLDR) - 1; if (nb.size() > len) { load_native_bridge(nb.data() + len, runtime_callbacks); } } static void hook_register(dev_t dev, ino_t inode, const char *symbol, void *new_func, void **old_func) { if (!lsplt::RegisterHook(dev, inode, symbol, new_func, old_func)) { ZLOGE("Failed to register plt_hook \"%s\"\n", symbol); return; } plt_hook_list->emplace_back(dev, inode, symbol, old_func); } static void hook_commit() { if (!lsplt::CommitHook()) ZLOGE("plt_hook failed\n"); } #define PLT_HOOK_REGISTER_SYM(DEV, INODE, SYM, NAME) \ hook_register(DEV, INODE, SYM, \ reinterpret_cast(new_##NAME), reinterpret_cast(&old_##NAME)) #define PLT_HOOK_REGISTER(DEV, INODE, NAME) \ PLT_HOOK_REGISTER_SYM(DEV, INODE, #NAME, NAME) void hook_functions() { default_new(plt_hook_list); default_new(jni_hook_list); ino_t android_runtime_inode = 0; dev_t android_runtime_dev = 0; ino_t native_bridge_inode = 0; dev_t native_bridge_dev = 0; for (auto &map : lsplt::MapInfo::Scan()) { if (map.path.ends_with("/libandroid_runtime.so")) { android_runtime_inode = map.inode; android_runtime_dev = map.dev; } else if (map.path.ends_with("/libnativebridge.so")) { native_bridge_inode = map.inode; native_bridge_dev = map.dev; } } PLT_HOOK_REGISTER(native_bridge_dev, native_bridge_inode, dlclose); PLT_HOOK_REGISTER(android_runtime_dev, android_runtime_inode, fork); PLT_HOOK_REGISTER(android_runtime_dev, android_runtime_inode, unshare); PLT_HOOK_REGISTER(android_runtime_dev, android_runtime_inode, androidSetCreateThreadFunc); PLT_HOOK_REGISTER(android_runtime_dev, android_runtime_inode, selinux_android_setcontext); PLT_HOOK_REGISTER_SYM(android_runtime_dev, android_runtime_inode, "__android_log_close", android_log_close); hook_commit(); // Remove unhooked methods plt_hook_list->erase( std::remove_if(plt_hook_list->begin(), plt_hook_list->end(), [](auto &t) { return *std::get<3>(t) == nullptr;}), plt_hook_list->end()); } static void hook_unloader() { ino_t art_inode = 0; dev_t art_dev = 0; for (auto &map : lsplt::MapInfo::Scan()) { if (map.path.ends_with("/libart.so")) { art_inode = map.inode; art_dev = map.dev; break; } } PLT_HOOK_REGISTER(art_dev, art_inode, pthread_attr_destroy); hook_commit(); } static void unhook_functions() { // Unhook plt_hook for (const auto &[dev, inode, sym, old_func] : *plt_hook_list) { if (!lsplt::RegisterHook(dev, inode, sym, *old_func, nullptr)) { ZLOGE("Failed to register plt_hook [%s]\n", sym); should_unmap_zygisk = false; } } delete plt_hook_list; plt_hook_list = nullptr; if (!lsplt::CommitHook()) { ZLOGE("Failed to restore plt_hook\n"); should_unmap_zygisk = false; } } // ----------------------------------------------------------------- // JNI method hook definitions, auto generated #include "jni_hooks.hpp" static string get_class_name(JNIEnv *env, jclass clazz) { static auto class_getName = env->GetMethodID( env->FindClass("java/lang/Class"), "getName", "()Ljava/lang/String;"); auto nameRef = (jstring) env->CallObjectMethod(clazz, class_getName); const char *name = env->GetStringUTFChars(nameRef, nullptr); string className(name); env->ReleaseStringUTFChars(nameRef, name); std::replace(className.begin(), className.end(), '.', '/'); return className; } static void replace_jni_methods( vector &methods, JNINativeMethod *hook_methods, size_t hook_methods_size, void **orig_function) { for (auto &method : methods) { if (strcmp(method.name, hook_methods[0].name) == 0) { for (auto i = 0; i < hook_methods_size; ++i) { const auto &hook = hook_methods[i]; if (strcmp(method.signature, hook.signature) == 0) { *orig_function = method.fnPtr; method.fnPtr = hook.fnPtr; ZLOGI("replace %s\n", method.name); return; } } ZLOGE("unknown signature of %s%s\n", method.name, method.signature); } } } #define HOOK_JNI(method) \ replace_jni_methods(newMethods, method##_methods.data(), method##_methods.size(), &method##_orig) static jint env_RegisterNatives( JNIEnv *env, jclass clazz, const JNINativeMethod *methods, jint numMethods) { auto className = get_class_name(env, clazz); if (className == "com/android/internal/os/Zygote") { // Restore JNIEnv as we no longer need to replace anything env->functions = old_functions; delete new_functions; new_functions = nullptr; vector newMethods(methods, methods + numMethods); HOOK_JNI(nativeForkAndSpecialize); HOOK_JNI(nativeSpecializeAppProcess); HOOK_JNI(nativeForkSystemServer); return old_functions->RegisterNatives(env, clazz, newMethods.data(), numMethods); } else { return old_functions->RegisterNatives(env, clazz, methods, numMethods); } } static void hook_jni_env() { using method_sig = jint(*)(JavaVM **, jsize, jsize *); auto get_created_vms = reinterpret_cast( dlsym(RTLD_DEFAULT, "JNI_GetCreatedJavaVMs")); if (!get_created_vms) { for (auto &map: lsplt::MapInfo::Scan()) { if (!map.path.ends_with("/libnativehelper.so")) continue; void *h = dlopen(map.path.data(), RTLD_LAZY); if (!h) { ZLOGW("Cannot dlopen libnativehelper.so: %s\n", dlerror()); break; } get_created_vms = reinterpret_cast(dlsym(h, "JNI_GetCreatedJavaVMs")); dlclose(h); break; } if (!get_created_vms) { ZLOGW("JNI_GetCreatedJavaVMs not found\n"); return; } } JavaVM *vm = nullptr; jsize num = 0; jint res = get_created_vms(&vm, 1, &num); if (res != JNI_OK || vm == nullptr) { ZLOGW("JavaVM not found\n"); return; } JNIEnv *env = nullptr; res = vm->GetEnv(reinterpret_cast(&env), JNI_VERSION_1_6); if (res != JNI_OK || env == nullptr) { ZLOGW("JNIEnv not found\n"); return; } // Replace the function table in JNIEnv to hook RegisterNatives default_new(new_functions); memcpy(new_functions, env->functions, sizeof(*new_functions)); new_functions->RegisterNatives = &env_RegisterNatives; old_functions = env->functions; env->functions = new_functions; }