2016-12-30 18:44:24 +00:00
|
|
|
#ifndef MAGISK_HIDE_H
|
|
|
|
#define MAGISK_HIDE_H
|
|
|
|
|
2017-04-20 14:45:56 +00:00
|
|
|
#include <pthread.h>
|
2019-02-14 01:16:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2019-01-20 04:59:37 +00:00
|
|
|
#include <string>
|
2019-02-14 01:16:26 +00:00
|
|
|
#include <functional>
|
2019-03-01 22:08:08 +00:00
|
|
|
#include <map>
|
2019-03-06 10:40:52 +00:00
|
|
|
#include <set>
|
2018-11-01 18:08:33 +00:00
|
|
|
|
|
|
|
#include "daemon.h"
|
2017-04-20 14:45:56 +00:00
|
|
|
|
2019-03-05 08:22:20 +00:00
|
|
|
#define SIGTERMTHRD SIGUSR1
|
|
|
|
#define SIGZYGOTE SIGUSR2
|
2017-11-08 19:05:01 +00:00
|
|
|
|
2019-02-13 00:04:27 +00:00
|
|
|
#define SAFETYNET_COMPONENT "com.google.android.gms/.droidguard.DroidGuardService"
|
|
|
|
#define SAFETYNET_PROCESS "com.google.android.gms.unstable"
|
|
|
|
#define SAFETYNET_PKG "com.google.android.gms"
|
2019-03-06 10:43:52 +00:00
|
|
|
#define MICROG_SAFETYNET "org.microg.gms.droidguard"
|
2019-02-13 00:04:27 +00:00
|
|
|
|
2019-03-05 08:22:20 +00:00
|
|
|
#define WEVENT(s) (((s) & 0xffff0000) >> 16)
|
|
|
|
|
|
|
|
// CLI entries
|
2019-02-14 01:16:26 +00:00
|
|
|
void launch_magiskhide(int client);
|
2018-11-01 18:08:33 +00:00
|
|
|
int stop_magiskhide();
|
|
|
|
int add_list(int client);
|
|
|
|
int rm_list(int client);
|
|
|
|
void ls_list(int client);
|
|
|
|
|
2019-03-05 08:22:20 +00:00
|
|
|
// Process monitoring
|
|
|
|
void *update_uid_map(void * p = nullptr);
|
2017-04-21 16:54:08 +00:00
|
|
|
void proc_monitor();
|
2016-12-30 18:44:24 +00:00
|
|
|
|
2017-07-10 15:39:33 +00:00
|
|
|
// Utility functions
|
2017-04-17 08:36:49 +00:00
|
|
|
void manage_selinux();
|
2017-07-18 04:26:23 +00:00
|
|
|
void clean_magisk_props();
|
2019-02-14 01:16:26 +00:00
|
|
|
void crawl_procfs(const std::function<bool (int)> &fn);
|
2019-03-01 22:08:08 +00:00
|
|
|
bool proc_name_match(int pid, const char *name);
|
2019-02-14 01:16:26 +00:00
|
|
|
|
2019-02-18 08:05:13 +00:00
|
|
|
/*
|
|
|
|
* Bionic's atoi runs through strtol().
|
|
|
|
* Use our own implementation for faster conversion.
|
|
|
|
*/
|
|
|
|
static inline int parse_int(const char *s) {
|
|
|
|
int val = 0;
|
|
|
|
char c;
|
|
|
|
while ((c = *(s++))) {
|
|
|
|
if (c > '9' || c < '0')
|
|
|
|
return -1;
|
|
|
|
val = val * 10 + c - '0';
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2018-11-16 05:37:41 +00:00
|
|
|
extern bool hide_enabled;
|
2019-03-05 08:22:20 +00:00
|
|
|
extern pthread_mutex_t monitor_lock;
|
2019-03-06 10:40:52 +00:00
|
|
|
extern std::set<std::pair<std::string, std::string>> hide_set;
|
2019-03-05 08:22:20 +00:00
|
|
|
extern int next_zygote;
|
2016-12-30 18:44:24 +00:00
|
|
|
|
2018-11-01 18:08:33 +00:00
|
|
|
enum {
|
|
|
|
LAUNCH_MAGISKHIDE,
|
|
|
|
STOP_MAGISKHIDE,
|
|
|
|
ADD_HIDELIST,
|
|
|
|
RM_HIDELIST,
|
2018-11-16 05:37:41 +00:00
|
|
|
LS_HIDELIST,
|
|
|
|
HIDE_STATUS,
|
2018-11-01 18:08:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2019-02-12 14:12:03 +00:00
|
|
|
HIDE_IS_ENABLED = DAEMON_LAST,
|
2018-11-01 18:08:33 +00:00
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
2019-02-14 09:08:05 +00:00
|
|
|
HIDE_ITEM_NOT_EXIST,
|
|
|
|
HIDE_NO_NS
|
2018-11-01 18:08:33 +00:00
|
|
|
};
|
|
|
|
|
2016-12-30 18:44:24 +00:00
|
|
|
#endif
|