mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 18:45:28 +00:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <jni.h>
|
|
#include <vector>
|
|
|
|
#define INJECT_ENV_1 "MAGISK_INJ_1"
|
|
#define INJECT_ENV_2 "MAGISK_INJ_2"
|
|
|
|
enum : int {
|
|
ZYGISK_SETUP,
|
|
ZYGISK_GET_INFO,
|
|
ZYGISK_GET_LOG_PIPE,
|
|
ZYGISK_CONNECT_COMPANION,
|
|
};
|
|
|
|
#if defined(__LP64__)
|
|
#define ZLOGD(...) LOGD("zygisk64: " __VA_ARGS__)
|
|
#define ZLOGE(...) LOGE("zygisk64: " __VA_ARGS__)
|
|
#define ZLOGI(...) LOGI("zygisk64: " __VA_ARGS__)
|
|
#else
|
|
#define ZLOGD(...) LOGD("zygisk32: " __VA_ARGS__)
|
|
#define ZLOGE(...) LOGE("zygisk32: " __VA_ARGS__)
|
|
#define ZLOGI(...) LOGI("zygisk32: " __VA_ARGS__)
|
|
#endif
|
|
|
|
// Unmap all pages matching the name
|
|
void unmap_all(const char *name);
|
|
|
|
// Remap all matching pages with anonymous pages
|
|
void remap_all(const char *name);
|
|
|
|
// Get library name + offset (from start of ELF), given function address
|
|
uintptr_t get_function_off(int pid, uintptr_t addr, char *lib);
|
|
|
|
// Get function address, given library name + offset
|
|
uintptr_t get_function_addr(int pid, const char *lib, uintptr_t off);
|
|
|
|
struct AppInfo {
|
|
bool is_magisk_app;
|
|
bool on_denylist;
|
|
};
|
|
|
|
extern void *self_handle;
|
|
|
|
void unload_first_stage();
|
|
void hook_functions();
|
|
std::vector<int> remote_get_info(int uid, const char *process, AppInfo *info);
|
|
int remote_request_unmount();
|