2019-03-06 23:22:04 +00:00
|
|
|
#pragma once
|
2016-12-30 18:44:24 +00:00
|
|
|
|
2019-02-14 01:16:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2019-03-12 20:48:01 +00:00
|
|
|
#include <pthread.h>
|
2019-02-14 01:16:26 +00:00
|
|
|
#include <unistd.h>
|
2019-03-12 20:48:01 +00:00
|
|
|
#include <dirent.h>
|
2021-01-11 03:27:54 +00:00
|
|
|
#include <string_view>
|
2019-02-14 01:16:26 +00:00
|
|
|
#include <functional>
|
2019-03-01 22:08:08 +00:00
|
|
|
#include <map>
|
2018-11-01 18:08:33 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include <daemon.hpp>
|
2017-04-20 14:45:56 +00:00
|
|
|
|
2019-03-05 08:22:20 +00:00
|
|
|
#define SIGTERMTHRD SIGUSR1
|
2020-12-30 23:55:53 +00:00
|
|
|
#define ISOLATED_MAGIC "isolated"
|
2017-11-08 19:05:01 +00:00
|
|
|
|
2019-03-05 08:22:20 +00:00
|
|
|
// CLI entries
|
2021-01-11 10:19:10 +00:00
|
|
|
int launch_magiskhide(bool late_props);
|
2018-11-01 18:08:33 +00:00
|
|
|
int stop_magiskhide();
|
|
|
|
int add_list(int client);
|
|
|
|
int rm_list(int client);
|
|
|
|
void ls_list(int client);
|
|
|
|
|
2021-01-14 04:07:23 +00:00
|
|
|
#if !ENABLE_INJECT
|
2019-03-05 08:22:20 +00:00
|
|
|
// Process monitoring
|
2021-01-23 17:22:02 +00:00
|
|
|
extern pthread_t monitor_thread;
|
2020-11-08 09:53:18 +00:00
|
|
|
[[noreturn]] void proc_monitor();
|
2021-01-11 03:27:54 +00:00
|
|
|
[[noreturn]] void test_proc_monitor();
|
2021-01-14 04:07:23 +00:00
|
|
|
#else
|
|
|
|
// Response whether target process should be hidden
|
|
|
|
int check_uid_map(int client);
|
2021-01-11 03:27:54 +00:00
|
|
|
#endif
|
2016-12-30 18:44:24 +00:00
|
|
|
|
2017-07-10 15:39:33 +00:00
|
|
|
// Utility functions
|
2019-02-14 01:16:26 +00:00
|
|
|
void crawl_procfs(const std::function<bool (int)> &fn);
|
2019-03-12 20:48:01 +00:00
|
|
|
void crawl_procfs(DIR *dir, const std::function<bool (int)> &fn);
|
2020-05-17 06:31:30 +00:00
|
|
|
bool hide_enabled();
|
2021-01-11 01:11:00 +00:00
|
|
|
void update_uid_map();
|
2021-03-18 05:36:42 +00:00
|
|
|
bool is_hide_target(int uid, std::string_view process, int max_len = 1024);
|
2019-02-14 01:16:26 +00:00
|
|
|
|
2019-05-26 09:47:57 +00:00
|
|
|
// Hide policies
|
|
|
|
void hide_daemon(int pid);
|
2021-01-11 03:27:54 +00:00
|
|
|
void hide_unmount(int pid = -1);
|
2019-05-26 09:47:57 +00:00
|
|
|
void hide_sensitive_props();
|
2020-05-17 21:45:08 +00:00
|
|
|
void hide_late_sensitive_props();
|
2019-05-26 09:47:57 +00:00
|
|
|
|
2021-01-11 01:11:00 +00:00
|
|
|
extern pthread_mutex_t hide_state_lock;
|
|
|
|
extern std::map<int, std::vector<std::string_view>> uid_proc_map;
|
2016-12-30 18:44:24 +00:00
|
|
|
|
2018-11-01 18:08:33 +00:00
|
|
|
enum {
|
2020-12-31 06:11:24 +00:00
|
|
|
LAUNCH_MAGISKHIDE,
|
|
|
|
STOP_MAGISKHIDE,
|
|
|
|
ADD_HIDELIST,
|
|
|
|
RM_HIDELIST,
|
|
|
|
LS_HIDELIST,
|
|
|
|
HIDE_STATUS,
|
2021-01-12 11:28:00 +00:00
|
|
|
REMOTE_CHECK_HIDE,
|
|
|
|
REMOTE_DO_HIDE
|
2018-11-01 18:08:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2020-12-31 06:11:24 +00:00
|
|
|
HIDE_IS_ENABLED = DAEMON_LAST,
|
|
|
|
HIDE_NOT_ENABLED,
|
|
|
|
HIDE_ITEM_EXIST,
|
|
|
|
HIDE_ITEM_NOT_EXIST,
|
|
|
|
HIDE_NO_NS,
|
|
|
|
HIDE_INVALID_PKG
|
2018-11-01 18:08:33 +00:00
|
|
|
};
|