Magisk/native/jni/magiskhide/magiskhide.h

59 lines
1.2 KiB
C
Raw Normal View History

2019-03-06 18:22:04 -05:00
#pragma once
2016-12-31 02:44:24 +08:00
#include <sys/types.h>
#include <sys/stat.h>
#include <pthread.h>
#include <unistd.h>
#include <dirent.h>
2019-01-19 23:59:37 -05:00
#include <string>
#include <functional>
#include <map>
#include <set>
#include <daemon.h>
2017-04-20 22:45:56 +08:00
#define SIGTERMTHRD SIGUSR1
#define SAFETYNET_COMPONENT "com.google.android.gms/.droidguard.DroidGuardService"
#define SAFETYNET_PROCESS "com.google.android.gms.unstable"
#define SAFETYNET_PKG "com.google.android.gms"
#define MICROG_SAFETYNET "org.microg.gms.droidguard"
// CLI entries
void launch_magiskhide(int client);
int stop_magiskhide();
int add_list(int client);
int rm_list(int client);
void ls_list(int client);
// Process monitoring
2017-04-22 00:54:08 +08:00
void proc_monitor();
void update_uid_map();
2016-12-31 02:44:24 +08:00
2017-07-10 23:39:33 +08:00
// Utility functions
2017-04-17 16:36:49 +08:00
void manage_selinux();
2017-07-18 12:26:23 +08:00
void clean_magisk_props();
void crawl_procfs(const std::function<bool (int)> &fn);
void crawl_procfs(DIR *dir, const std::function<bool (int)> &fn);
2018-11-16 00:37:41 -05:00
extern bool hide_enabled;
extern pthread_mutex_t monitor_lock;
extern std::set<std::pair<std::string, std::string>> hide_set;
2016-12-31 02:44:24 +08:00
enum {
LAUNCH_MAGISKHIDE,
STOP_MAGISKHIDE,
ADD_HIDELIST,
RM_HIDELIST,
2018-11-16 00:37:41 -05:00
LS_HIDELIST,
HIDE_STATUS,
};
enum {
HIDE_IS_ENABLED = DAEMON_LAST,
HIDE_NOT_ENABLED,
HIDE_ITEM_EXIST,
HIDE_ITEM_NOT_EXIST,
HIDE_NO_NS
};