Magisk/native/jni/magiskhide/magiskhide.hpp

67 lines
1.4 KiB
C++
Raw Normal View History

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