#include #include #include #include #include "zygisk.hpp" #include "shadowhook.h" #include "json.hpp" #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, "PIF/Native", __VA_ARGS__) #define DEX_FILE_PATH "/data/adb/modules/playintegrityfix/classes.dex" #define PROP_FILE_PATH "/data/adb/modules/playintegrityfix/pif.json" static std::string FIRST_API_LEVEL, SECURITY_PATCH; typedef void (*T_Callback)(void *, const char *, const char *, uint32_t); static std::map callbacks; static void modify_callback(void *cookie, const char *name, const char *value, uint32_t serial) { if (cookie == nullptr || name == nullptr || value == nullptr || !callbacks.contains(cookie)) return; std::string_view prop(name); if (prop.ends_with("api_level")) { if (FIRST_API_LEVEL == "NULL") { value = nullptr; } else { value = FIRST_API_LEVEL.c_str(); } LOGD("[%s] -> %s", name, value); } else if (prop.ends_with("security_patch")) { if (SECURITY_PATCH == "NULL") { value = nullptr; } else { value = SECURITY_PATCH.c_str(); } LOGD("[%s] -> %s", name, value); } return callbacks[cookie](cookie, name, value, serial); } static void (*o_system_property_read_callback)(const prop_info *, T_Callback, void *); static void my_system_property_read_callback(const prop_info *pi, T_Callback callback, void *cookie) { if (pi == nullptr || callback == nullptr || cookie == nullptr) { return o_system_property_read_callback(pi, callback, cookie); } callbacks[cookie] = callback; return o_system_property_read_callback(pi, modify_callback, cookie); } static void doHook() { shadowhook_init(SHADOWHOOK_MODE_UNIQUE, false); void *handle = shadowhook_hook_sym_name( "libc.so", "__system_property_read_callback", reinterpret_cast(my_system_property_read_callback), reinterpret_cast(&o_system_property_read_callback) ); if (handle == nullptr) { LOGD("Couldn't find '__system_property_read_callback' handle. Report to @chiteroman"); return; } LOGD("Found '__system_property_read_callback' handle at %p", handle); } static void sendVector(int fd, const std::vector &vec) { // Send the size of the vector size_t size = vec.size(); write(fd, &size, sizeof(size_t)); // Send the vector data write(fd, vec.data(), size); } static std::vector receiveVector(int fd) { // Receive the size of the vector size_t size; read(fd, &size, sizeof(size_t)); // Receive the vector data std::vector vec(size); read(fd, vec.data(), size); return vec; } class PlayIntegrityFix : public zygisk::ModuleBase { public: void onLoad(zygisk::Api *api, JNIEnv *env) override { this->api = api; this->env = env; } void preAppSpecialize(zygisk::AppSpecializeArgs *args) override { bool isGms = false; bool isGmsUnstable = false; auto rawProcess = env->GetStringUTFChars(args->nice_name, nullptr); if (rawProcess) { std::string_view process(rawProcess); isGms = process.starts_with("com.google.android.gms"); isGmsUnstable = process.compare("com.google.android.gms.unstable") == 0; } env->ReleaseStringUTFChars(args->nice_name, rawProcess); if (!isGms) { api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY); return; } api->setOption(zygisk::FORCE_DENYLIST_UNMOUNT); if (!isGmsUnstable) { api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY); return; } int fd = api->connectCompanion(); dexVector = receiveVector(fd); propVector = receiveVector(fd); close(fd); LOGD("Read from file descriptor file 'classes.dex' -> %d bytes", static_cast(dexVector.size())); LOGD("Read from file descriptor file 'pif.json' -> %d bytes", static_cast(propVector.size())); if (dexVector.empty() || propVector.empty()) api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY); } void postAppSpecialize(const zygisk::AppSpecializeArgs *args) override { if (dexVector.empty() || propVector.empty()) return; readJson(); inject(); doHook(); dexVector.clear(); propVector.clear(); } void preServerSpecialize(zygisk::ServerSpecializeArgs *args) override { api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY); } private: zygisk::Api *api = nullptr; JNIEnv *env = nullptr; std::vector dexVector, propVector; void readJson() { std::string data(propVector.cbegin(), propVector.cend()); nlohmann::json json = nlohmann::json::parse(data, nullptr, false, true); auto getStringFromJson = [&json](const std::string &key) { return json.contains(key) && !json[key].is_null() ? json[key].get() : "NULL"; }; SECURITY_PATCH = getStringFromJson("SECURITY_PATCH"); FIRST_API_LEVEL = getStringFromJson("FIRST_API_LEVEL"); } void inject() { LOGD("get system classloader"); auto clClass = env->FindClass("java/lang/ClassLoader"); auto getSystemClassLoader = env->GetStaticMethodID(clClass, "getSystemClassLoader", "()Ljava/lang/ClassLoader;"); auto systemClassLoader = env->CallStaticObjectMethod(clClass, getSystemClassLoader); LOGD("create class loader"); auto dexClClass = env->FindClass("dalvik/system/InMemoryDexClassLoader"); auto dexClInit = env->GetMethodID(dexClClass, "", "(Ljava/nio/ByteBuffer;Ljava/lang/ClassLoader;)V"); auto buffer = env->NewDirectByteBuffer(dexVector.data(), static_cast(dexVector.size())); auto dexCl = env->NewObject(dexClClass, dexClInit, buffer, systemClassLoader); LOGD("load class"); auto loadClass = env->GetMethodID(clClass, "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;"); auto entryClassName = env->NewStringUTF("es.chiteroman.playintegrityfix.EntryPoint"); auto entryClassObj = env->CallObjectMethod(dexCl, loadClass, entryClassName); auto entryClass = (jclass) entryClassObj; LOGD("read json"); auto readProps = env->GetStaticMethodID(entryClass, "readJson", "(Ljava/lang/String;)V"); std::string data(propVector.cbegin(), propVector.cend()); auto javaStr = env->NewStringUTF(data.c_str()); env->CallStaticVoidMethod(entryClass, readProps, javaStr); LOGD("call init"); auto entryInit = env->GetStaticMethodID(entryClass, "init", "()V"); env->CallStaticVoidMethod(entryClass, entryInit); } }; static void companion(int fd) { std::ifstream dex(DEX_FILE_PATH, std::ios::binary); std::ifstream prop(PROP_FILE_PATH); std::vector dexVector((std::istreambuf_iterator(dex)), std::istreambuf_iterator()); std::vector propVector((std::istreambuf_iterator(prop)), std::istreambuf_iterator()); dex.close(); prop.close(); sendVector(fd, dexVector); sendVector(fd, propVector); dexVector.clear(); propVector.clear(); } REGISTER_ZYGISK_MODULE(PlayIntegrityFix) REGISTER_ZYGISK_COMPANION(companion)