You've already forked PlayIntegrityFork
mirror of
https://github.com/osm0sis/PlayIntegrityFork.git
synced 2025-09-06 06:37:06 +00:00
295 lines
9.5 KiB
C++
295 lines
9.5 KiB
C++
#include <android/log.h>
|
|
#include <sys/system_properties.h>
|
|
#include <unistd.h>
|
|
|
|
#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 JSON_FILE_PATH "/data/adb/modules/playintegrityfix/pif.json"
|
|
#define CUSTOM_JSON_FILE_PATH "/data/adb/modules/playintegrityfix/custom.pif.json"
|
|
|
|
static int VERBOSE_LOGS = 0;
|
|
|
|
static std::map<std::string, std::string> jsonProps;
|
|
|
|
typedef void (*T_Callback)(void *, const char *, const char *, uint32_t);
|
|
|
|
static std::map<void *, T_Callback> 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;
|
|
|
|
const char *oldValue = value;
|
|
|
|
std::string prop(name);
|
|
|
|
// Spoof specific property values
|
|
if (prop == "sys.usb.state") {
|
|
value = "mtp";
|
|
}
|
|
|
|
if (jsonProps.count(prop)) {
|
|
// Exact property match
|
|
value = jsonProps[prop].c_str();
|
|
} else {
|
|
// Leading * wildcard property match
|
|
for (const auto &p: jsonProps) {
|
|
if (p.first.starts_with("*") && prop.ends_with(p.first.substr(1))) {
|
|
value = p.second.c_str();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (oldValue == value) {
|
|
if (VERBOSE_LOGS > 99) LOGD("[%s]: %s (unchanged)", name, value);
|
|
} else {
|
|
LOGD("[%s]: %s -> %s", name, oldValue, 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<void *>(my_system_property_read_callback),
|
|
reinterpret_cast<void **>(&o_system_property_read_callback)
|
|
);
|
|
if (handle == nullptr) {
|
|
LOGD("Couldn't find '__system_property_read_callback' handle");
|
|
return;
|
|
}
|
|
LOGD("Found '__system_property_read_callback' handle at %p", handle);
|
|
}
|
|
|
|
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, 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;
|
|
}
|
|
|
|
long dexSize = 0, jsonSize = 0;
|
|
int fd = api->connectCompanion();
|
|
|
|
read(fd, &dexSize, sizeof(long));
|
|
read(fd, &jsonSize, sizeof(long));
|
|
|
|
if (dexSize < 1) {
|
|
close(fd);
|
|
LOGD("Couldn't read classes.dex");
|
|
api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY);
|
|
return;
|
|
}
|
|
|
|
if (jsonSize < 1) {
|
|
close(fd);
|
|
LOGD("Couldn't read pif.json");
|
|
api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY);
|
|
return;
|
|
}
|
|
|
|
dexVector.resize(dexSize);
|
|
read(fd, dexVector.data(), dexSize);
|
|
|
|
std::vector<char> jsonVector(jsonSize);
|
|
read(fd, jsonVector.data(), jsonSize);
|
|
|
|
close(fd);
|
|
|
|
LOGD("Read from file descriptor file 'classes.dex' -> %ld bytes", dexSize);
|
|
LOGD("Read from file descriptor file 'pif.json' -> %ld bytes", jsonSize);
|
|
|
|
std::string data(jsonVector.cbegin(), jsonVector.cend());
|
|
json = nlohmann::json::parse(data, nullptr, false, true);
|
|
|
|
jsonVector.clear();
|
|
data.clear();
|
|
}
|
|
|
|
void postAppSpecialize(const zygisk::AppSpecializeArgs *args) override {
|
|
if (dexVector.empty() || json.empty()) return;
|
|
|
|
readJson();
|
|
|
|
doHook();
|
|
|
|
inject();
|
|
|
|
dexVector.clear();
|
|
json.clear();
|
|
}
|
|
|
|
void preServerSpecialize(zygisk::ServerSpecializeArgs *args) override {
|
|
api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY);
|
|
}
|
|
|
|
private:
|
|
zygisk::Api *api = nullptr;
|
|
JNIEnv *env = nullptr;
|
|
std::vector<char> dexVector;
|
|
nlohmann::json json;
|
|
|
|
void readJson() {
|
|
LOGD("JSON contains %d keys!", static_cast<int>(json.size()));
|
|
|
|
// Verbose logging if VERBOSE_LOGS with level number is last entry
|
|
if (json.contains("VERBOSE_LOGS")) {
|
|
if (!json["VERBOSE_LOGS"].is_null() && json["VERBOSE_LOGS"].is_string() && json["VERBOSE_LOGS"] != "") {
|
|
VERBOSE_LOGS = stoi(json["VERBOSE_LOGS"].get<std::string>());
|
|
if (VERBOSE_LOGS > 0) LOGD("Verbose logging (level %d) enabled!", VERBOSE_LOGS);
|
|
} else {
|
|
LOGD("Error parsing VERBOSE_LOGS!");
|
|
}
|
|
}
|
|
|
|
std::vector<std::string> eraseKeys;
|
|
for (auto &jsonList: json.items()) {
|
|
if (VERBOSE_LOGS > 1) LOGD("Parsing %s...", jsonList.key().c_str());
|
|
if (jsonList.key().find_first_of("*.") != std::string::npos) {
|
|
// Name contains . or * (wildcard) so assume real property name
|
|
if (!jsonList.value().is_null() && jsonList.value().is_string()) {
|
|
if (jsonList.value() == "") {
|
|
LOGD("%s is empty, skipping...", jsonList.key().c_str());
|
|
} else {
|
|
if (VERBOSE_LOGS > 0) LOGD("Adding '%s' to properties list", jsonList.key().c_str());
|
|
jsonProps[jsonList.key()] = jsonList.value();
|
|
}
|
|
} else {
|
|
LOGD("Error parsing %s!", jsonList.key().c_str());
|
|
}
|
|
eraseKeys.push_back(jsonList.key());
|
|
}
|
|
}
|
|
// Remove properties from parsed JSON
|
|
for (auto key: eraseKeys) {
|
|
if (json.contains(key)) json.erase(key);
|
|
}
|
|
}
|
|
|
|
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, "<init>",
|
|
"(Ljava/nio/ByteBuffer;Ljava/lang/ClassLoader;)V");
|
|
auto buffer = env->NewDirectByteBuffer(dexVector.data(),
|
|
static_cast<jlong>(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");
|
|
auto javaStr = env->NewStringUTF(json.dump().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) {
|
|
long dexSize = 0, jsonSize = 0;
|
|
std::vector<char> dexVector, jsonVector;
|
|
|
|
FILE *dex = fopen(DEX_FILE_PATH, "rb");
|
|
|
|
if (dex) {
|
|
fseek(dex, 0, SEEK_END);
|
|
dexSize = ftell(dex);
|
|
fseek(dex, 0, SEEK_SET);
|
|
|
|
dexVector.resize(dexSize);
|
|
fread(dexVector.data(), 1, dexSize, dex);
|
|
|
|
fclose(dex);
|
|
}
|
|
|
|
FILE *json = fopen(CUSTOM_JSON_FILE_PATH, "r");
|
|
if (!json)
|
|
json = fopen(JSON_FILE_PATH, "r");
|
|
|
|
if (json) {
|
|
fseek(json, 0, SEEK_END);
|
|
jsonSize = ftell(json);
|
|
fseek(json, 0, SEEK_SET);
|
|
|
|
jsonVector.resize(jsonSize);
|
|
fread(jsonVector.data(), 1, jsonSize, json);
|
|
|
|
fclose(json);
|
|
}
|
|
|
|
write(fd, &dexSize, sizeof(long));
|
|
write(fd, &jsonSize, sizeof(long));
|
|
|
|
write(fd, dexVector.data(), dexSize);
|
|
write(fd, jsonVector.data(), jsonSize);
|
|
|
|
dexVector.clear();
|
|
jsonVector.clear();
|
|
}
|
|
|
|
REGISTER_ZYGISK_MODULE(PlayIntegrityFix)
|
|
|
|
REGISTER_ZYGISK_COMPANION(companion)
|