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>
|
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
#define HIDELIST "/magisk/.core/magiskhide/hidelist"
|
2017-02-05 16:42:17 +01:00
|
|
|
#define DUMMYPATH "/dev/magisk/dummy"
|
2016-12-30 19:44:24 +01:00
|
|
|
|
2017-04-21 19:40:07 +02:00
|
|
|
typedef enum {
|
|
|
|
HIDE_ERROR = -1,
|
|
|
|
HIDE_SUCCESS = 0,
|
|
|
|
HIDE_IS_ENABLED,
|
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
|
|
|
HIDE_ITEM_NOT_EXIST
|
|
|
|
} hide_ret;
|
|
|
|
|
2017-04-09 01:25:10 +02:00
|
|
|
// Kill process
|
|
|
|
void kill_proc(int pid);
|
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
// Hide daemon
|
2017-04-09 01:25:10 +02:00
|
|
|
int hide_daemon();
|
2016-12-30 19:44:24 +01:00
|
|
|
|
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-04-17 10:36:49 +02:00
|
|
|
// Preprocess
|
|
|
|
void manage_selinux();
|
|
|
|
void hide_sensitive_props();
|
|
|
|
void relink_sbin();
|
|
|
|
|
2017-04-20 16:45:56 +02:00
|
|
|
// List managements
|
|
|
|
int add_list(char *proc);
|
|
|
|
int rm_list(char *proc);
|
|
|
|
int init_list();
|
|
|
|
int destroy_list();
|
|
|
|
|
|
|
|
extern int sv[2], hide_pid, hideEnabled;
|
|
|
|
extern struct vector *hide_list;
|
2017-04-21 18:54:08 +02:00
|
|
|
extern pthread_mutex_t hide_lock;
|
2016-12-30 19:44:24 +01:00
|
|
|
|
|
|
|
#endif
|