2016-12-31 02:44:24 +08:00
|
|
|
#ifndef MAGISK_HIDE_H
|
|
|
|
#define MAGISK_HIDE_H
|
|
|
|
|
2017-04-20 22:45:56 +08:00
|
|
|
#include <pthread.h>
|
2018-11-01 14:08:33 -04:00
|
|
|
|
|
|
|
#include "daemon.h"
|
2018-11-08 05:03:59 -05:00
|
|
|
#include "Vector.h"
|
2018-11-07 02:10:38 -05:00
|
|
|
#include "CharArray.h"
|
2017-04-20 22:45:56 +08:00
|
|
|
|
2017-11-09 03:05:01 +08:00
|
|
|
#define TERM_THREAD SIGUSR1
|
|
|
|
|
2018-11-01 14:08:33 -04:00
|
|
|
// Daemon entries
|
2018-11-13 02:22:55 -05:00
|
|
|
int launch_magiskhide(int client);
|
2018-11-01 14:08:33 -04:00
|
|
|
int stop_magiskhide();
|
|
|
|
int add_list(int client);
|
|
|
|
int rm_list(int client);
|
|
|
|
void ls_list(int client);
|
|
|
|
|
2017-04-06 06:12:29 +08:00
|
|
|
// Process monitor
|
2017-04-22 00:54:08 +08:00
|
|
|
void proc_monitor();
|
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();
|
|
|
|
void hide_sensitive_props();
|
2017-07-18 12:26:23 +08:00
|
|
|
void clean_magisk_props();
|
2017-04-17 16:36:49 +08:00
|
|
|
|
2017-04-20 22:45:56 +08:00
|
|
|
// List managements
|
2018-11-07 02:10:38 -05:00
|
|
|
int add_list(const char *proc);
|
|
|
|
bool init_list();
|
2017-04-20 22:45:56 +08:00
|
|
|
|
2018-11-16 00:37:41 -05:00
|
|
|
extern bool hide_enabled;
|
2018-11-01 13:23:12 -04:00
|
|
|
extern pthread_mutex_t list_lock;
|
2018-11-08 05:03:59 -05:00
|
|
|
extern Vector<CharArray> hide_list;
|
2016-12-31 02:44:24 +08:00
|
|
|
|
2018-11-01 14:08:33 -04:00
|
|
|
enum {
|
|
|
|
LAUNCH_MAGISKHIDE,
|
|
|
|
STOP_MAGISKHIDE,
|
|
|
|
ADD_HIDELIST,
|
|
|
|
RM_HIDELIST,
|
2018-11-16 00:37:41 -05:00
|
|
|
LS_HIDELIST,
|
|
|
|
HIDE_STATUS,
|
2018-11-01 14:08:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
LOGCAT_DISABLED = DAEMON_LAST,
|
|
|
|
HIDE_IS_ENABLED,
|
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
|
|
|
HIDE_ITEM_NOT_EXIST
|
|
|
|
};
|
|
|
|
|
2016-12-31 02:44:24 +08:00
|
|
|
#endif
|