2019-03-06 18:22:04 -05:00
|
|
|
#pragma once
|
2016-12-31 02:44:24 +08:00
|
|
|
|
2019-02-13 20:16:26 -05:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2019-03-12 16:48:01 -04:00
|
|
|
#include <pthread.h>
|
2019-02-13 20:16:26 -05:00
|
|
|
#include <unistd.h>
|
2019-03-12 16:48:01 -04:00
|
|
|
#include <dirent.h>
|
2019-01-19 23:59:37 -05:00
|
|
|
#include <string>
|
2019-02-13 20:16:26 -05:00
|
|
|
#include <functional>
|
2019-03-01 17:08:08 -05:00
|
|
|
#include <map>
|
2019-03-06 05:40:52 -05:00
|
|
|
#include <set>
|
2018-11-01 14:08:33 -04:00
|
|
|
|
2020-03-09 01:50:30 -07:00
|
|
|
#include <daemon.hpp>
|
2017-04-20 22:45:56 +08:00
|
|
|
|
2019-03-05 03:22:20 -05:00
|
|
|
#define SIGTERMTHRD SIGUSR1
|
2019-11-01 02:12:28 -04:00
|
|
|
#define SIGZYGOTE SIGUSR2
|
2017-11-09 03:05:01 +08:00
|
|
|
|
2019-03-05 03:22:20 -05:00
|
|
|
// CLI entries
|
2020-05-17 14:45:08 -07:00
|
|
|
int launch_magiskhide();
|
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);
|
2019-05-25 16:08:53 -07:00
|
|
|
[[noreturn]] void test_proc_monitor();
|
2018-11-01 14:08:33 -04:00
|
|
|
|
2019-03-05 03:22:20 -05:00
|
|
|
// Process monitoring
|
2017-04-22 00:54:08 +08:00
|
|
|
void proc_monitor();
|
2019-04-22 16:36:23 -04:00
|
|
|
void update_uid_map();
|
2016-12-31 02:44:24 +08:00
|
|
|
|
2017-07-10 23:39:33 +08:00
|
|
|
// Utility functions
|
2019-02-13 20:16:26 -05:00
|
|
|
void crawl_procfs(const std::function<bool (int)> &fn);
|
2019-03-12 16:48:01 -04:00
|
|
|
void crawl_procfs(DIR *dir, const std::function<bool (int)> &fn);
|
2020-05-16 23:31:30 -07:00
|
|
|
bool hide_enabled();
|
2020-05-17 14:45:08 -07:00
|
|
|
void set_hide_state(bool state);
|
2019-02-13 20:16:26 -05:00
|
|
|
|
2019-05-26 02:47:57 -07:00
|
|
|
// Hide policies
|
|
|
|
void hide_daemon(int pid);
|
2019-06-04 22:27:19 -07:00
|
|
|
void hide_unmount(int pid = getpid());
|
2019-05-26 02:47:57 -07:00
|
|
|
void hide_sensitive_props();
|
2020-05-17 14:45:08 -07:00
|
|
|
void hide_late_sensitive_props();
|
2019-05-26 02:47:57 -07:00
|
|
|
|
2019-03-05 03:22:20 -05:00
|
|
|
extern pthread_mutex_t monitor_lock;
|
2019-03-06 05:40:52 -05:00
|
|
|
extern std::set<std::pair<std::string, std::string>> hide_set;
|
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 {
|
2019-02-12 23:12:03 +09:00
|
|
|
HIDE_IS_ENABLED = DAEMON_LAST,
|
2018-11-01 14:08:33 -04:00
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
2019-02-14 04:08:05 -05:00
|
|
|
HIDE_ITEM_NOT_EXIST,
|
2019-09-01 14:16:12 +08:00
|
|
|
HIDE_NO_NS,
|
|
|
|
HIDE_INVALID_PKG
|
2018-11-01 14:08:33 -04:00
|
|
|
};
|