Magisk/native/jni/magiskhide/magiskhide.h

76 lines
1.4 KiB
C
Raw Normal View History

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>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
2019-01-20 04:59:37 +00:00
#include <vector>
#include <string>
#include <set>
#include <functional>
#include "daemon.h"
2017-04-20 14:45:56 +00:00
#define TERM_THREAD 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"
// Daemon entries
void launch_magiskhide(int client);
int stop_magiskhide();
int add_list(int client);
int rm_list(int client);
void ls_list(int client);
// Update APK list for inotify
void update_inotify_mask(bool refresh = false);
2017-04-05 22:12:29 +00:00
// Process monitor
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();
void refresh_uid();
void crawl_procfs(const std::function<bool (int)> &fn);
static inline int get_uid(const int pid) {
char path[16];
struct stat st;
sprintf(path, "/proc/%d", pid);
if (stat(path, &st) == -1)
return -1;
// We don't care about multiuser
return st.st_uid % 100000;
}
2017-04-20 14:45:56 +00:00
2018-11-16 05:37:41 +00:00
extern bool hide_enabled;
2018-11-01 17:23:12 +00:00
extern pthread_mutex_t list_lock;
2019-01-20 04:59:37 +00:00
extern std::vector<std::string> hide_list;
extern std::set<int> hide_uid;
extern int gms_uid;
2016-12-30 18:44:24 +00:00
enum {
LAUNCH_MAGISKHIDE,
STOP_MAGISKHIDE,
ADD_HIDELIST,
RM_HIDELIST,
2018-11-16 05:37:41 +00:00
LS_HIDELIST,
HIDE_STATUS,
};
enum {
HIDE_IS_ENABLED = DAEMON_LAST,
HIDE_NOT_ENABLED,
HIDE_ITEM_EXIST,
HIDE_ITEM_NOT_EXIST,
HIDE_NO_NS
};
2016-12-30 18:44:24 +00:00
#endif