2016-12-30 19:44:24 +01:00
|
|
|
#ifndef MAGISK_HIDE_H
|
|
|
|
#define MAGISK_HIDE_H
|
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
#include <pthread.h>
|
2018-11-01 19:08:33 +01:00
|
|
|
|
|
|
|
#include "daemon.h"
|
2018-11-01 18:23:12 +01:00
|
|
|
#include "array.h"
|
2017-04-20 16:45:56 +02:00
|
|
|
|
2017-11-08 20:05:01 +01:00
|
|
|
#define TERM_THREAD SIGUSR1
|
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
// Daemon entries
|
|
|
|
int launch_magiskhide();
|
|
|
|
int stop_magiskhide();
|
|
|
|
int add_list(int client);
|
|
|
|
int rm_list(int client);
|
|
|
|
void ls_list(int client);
|
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
// Process monitor
|
2017-04-21 18:54:08 +02:00
|
|
|
void proc_monitor();
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-07-10 17:39:33 +02:00
|
|
|
// Utility functions
|
2017-04-17 10:36:49 +02:00
|
|
|
void manage_selinux();
|
|
|
|
void hide_sensitive_props();
|
2017-07-18 06:26:23 +02:00
|
|
|
void clean_magisk_props();
|
2017-04-17 10:36:49 +02:00
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
// List managements
|
|
|
|
int add_list(char *proc);
|
|
|
|
int init_list();
|
|
|
|
int destroy_list();
|
|
|
|
|
2018-11-01 18:23:12 +01:00
|
|
|
extern int hide_enabled;
|
|
|
|
extern pthread_mutex_t list_lock;
|
|
|
|
extern Array<char *> hide_list;
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
enum {
|
|
|
|
LAUNCH_MAGISKHIDE,
|
|
|
|
STOP_MAGISKHIDE,
|
|
|
|
ADD_HIDELIST,
|
|
|
|
RM_HIDELIST,
|
|
|
|
LS_HIDELIST
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
LOGCAT_DISABLED = DAEMON_LAST,
|
|
|
|
HIDE_IS_ENABLED,
|
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
|
|
|
HIDE_ITEM_NOT_EXIST
|
|
|
|
};
|
|
|
|
|
2016-12-30 19:44:24 +01:00
|
|
|
#endif
|