Magisk/native/jni/deny/utils.cpp

339 lines
9.0 KiB
C++
Raw Normal View History

#include <sys/types.h>
#include <sys/stat.h>
2017-04-20 14:45:56 +00:00
#include <unistd.h>
2018-07-13 14:14:32 +00:00
#include <fcntl.h>
2017-07-02 16:57:20 +00:00
#include <dirent.h>
2021-01-11 03:27:54 +00:00
#include <set>
2017-04-20 14:45:56 +00:00
2020-03-09 08:50:30 +00:00
#include <magisk.hpp>
#include <utils.hpp>
#include <db.hpp>
2021-09-12 19:40:34 +00:00
#include "deny.hpp"
2018-11-01 17:23:12 +00:00
2019-01-20 04:59:37 +00:00
using namespace std;
2021-09-12 19:40:34 +00:00
static set<pair<string, string>> *deny_set; /* set of <pkg, process> pair */
static map<int, vector<string_view>> *uid_proc_map; /* uid -> list of process */
// Locks the variables above
2021-09-12 19:40:34 +00:00
static pthread_mutex_t data_lock = PTHREAD_MUTEX_INITIALIZER;
2021-09-16 12:27:34 +00:00
atomic<bool> denylist_enabled = false;
static void rebuild_uid_map() {
uid_proc_map->clear();
string data_path(APP_DATA_DIR);
size_t len = data_path.length();
auto dir = open_dir(APP_DATA_DIR);
bool first_iter = true;
for (dirent *entry; (entry = xreaddir(dir.get()));) {
data_path.resize(len);
data_path += '/';
data_path += entry->d_name; // multiuser user id
data_path += '/';
size_t user_len = data_path.length();
struct stat st;
2021-09-12 19:40:34 +00:00
for (const auto &hide : *deny_set) {
if (hide.first == ISOLATED_MAGIC) {
if (!first_iter) continue;
// Setup isolated processes
(*uid_proc_map)[-1].emplace_back(hide.second);
}
data_path.resize(user_len);
data_path += hide.first;
if (stat(data_path.data(), &st))
continue;
(*uid_proc_map)[st.st_uid].emplace_back(hide.second);
}
first_iter = false;
}
}
2017-07-02 16:57:20 +00:00
// Leave /proc fd opened as we're going to read from it repeatedly
static DIR *procfp;
template<class F>
static void crawl_procfs(F &&fn) {
rewinddir(procfp);
dirent *dp;
int pid;
while ((dp = readdir(procfp))) {
pid = parse_int(dp->d_name);
if (pid > 0 && !fn(pid))
break;
}
2018-10-13 01:46:09 +00:00
}
template <bool str_op(string_view, string_view)>
static bool proc_name_match(int pid, const char *name) {
char buf[4019];
sprintf(buf, "/proc/%d/cmdline", pid);
if (auto fp = open_file(buf, "re")) {
fgets(buf, sizeof(buf), fp.get());
if (str_op(buf, name)) {
2021-09-12 19:40:34 +00:00
LOGD("denylist: kill PID=[%d] (%s)\n", pid, buf);
return true;
}
}
return false;
2018-10-13 01:46:09 +00:00
}
static inline bool str_eql(string_view a, string_view b) { return a == b; }
template<bool str_op(string_view, string_view) = &str_eql>
static void kill_process(const char *name, bool multi = false) {
crawl_procfs([=](int pid) -> bool {
if (proc_name_match<str_op>(pid, name)) {
kill(pid, SIGKILL);
return multi;
}
return true;
});
}
static bool validate(const char *pkg, const char *proc) {
bool pkg_valid = false;
bool proc_valid = true;
if (str_eql(pkg, ISOLATED_MAGIC)) {
pkg_valid = true;
for (char c; (c = *proc); ++proc) {
if (isalnum(c) || c == '_' || c == '.')
continue;
if (c == ':')
break;
proc_valid = false;
break;
}
} else {
for (char c; (c = *pkg); ++pkg) {
if (isalnum(c) || c == '_')
continue;
if (c == '.') {
pkg_valid = true;
continue;
}
pkg_valid = false;
break;
}
for (char c; (c = *proc); ++proc) {
if (isalnum(c) || c == '_' || c == ':' || c == '.')
continue;
proc_valid = false;
break;
}
}
return pkg_valid && proc_valid;
2019-09-01 06:16:12 +00:00
}
static void add_hide_set(const char *pkg, const char *proc) {
2021-09-12 19:40:34 +00:00
LOGI("denylist add: [%s/%s]\n", pkg, proc);
deny_set->emplace(pkg, proc);
if (strcmp(pkg, ISOLATED_MAGIC) == 0) {
// Kill all matching isolated processes
kill_process<&str_starts>(proc, true);
} else {
kill_process(proc);
}
}
static int add_list(const char *pkg, const char *proc) {
if (proc[0] == '\0')
proc = pkg;
if (!validate(pkg, proc))
2021-09-12 19:40:34 +00:00
return DENYLIST_INVALID_PKG;
{
2021-09-12 19:40:34 +00:00
mutex_guard lock(data_lock);
for (const auto &hide : *deny_set)
if (hide.first == pkg && hide.second == proc)
2021-09-12 19:40:34 +00:00
return DENYLIST_ITEM_EXIST;
add_hide_set(pkg, proc);
rebuild_uid_map();
}
// Add to database
char sql[4096];
snprintf(sql, sizeof(sql),
2021-09-12 19:40:34 +00:00
"INSERT INTO denylist (package_name, process) VALUES('%s', '%s')", pkg, proc);
char *err = db_exec(sql);
db_err_cmd(err, return DAEMON_ERROR);
return DAEMON_SUCCESS;
2017-04-20 14:45:56 +00:00
}
int add_list(int client) {
2021-01-12 08:07:48 +00:00
string pkg = read_string(client);
string proc = read_string(client);
return add_list(pkg.data(), proc.data());
}
2017-04-20 14:45:56 +00:00
static int rm_list(const char *pkg, const char *proc) {
{
2021-09-16 12:27:34 +00:00
bool remove = false;
2021-09-12 19:40:34 +00:00
mutex_guard lock(data_lock);
for (auto it = deny_set->begin(); it != deny_set->end();) {
if (it->first == pkg && (proc[0] == '\0' || it->second == proc)) {
remove = true;
2021-09-12 19:40:34 +00:00
LOGI("denylist rm: [%s/%s]\n", it->first.data(), it->second.data());
it = deny_set->erase(it);
} else {
++it;
}
}
if (!remove)
2021-09-12 19:40:34 +00:00
return DENYLIST_ITEM_NOT_EXIST;
rebuild_uid_map();
}
char sql[4096];
if (proc[0] == '\0')
2021-09-12 19:40:34 +00:00
snprintf(sql, sizeof(sql), "DELETE FROM denylist WHERE package_name='%s'", pkg);
else
snprintf(sql, sizeof(sql),
2021-09-12 19:40:34 +00:00
"DELETE FROM denylist WHERE package_name='%s' AND process='%s'", pkg, proc);
char *err = db_exec(sql);
db_err_cmd(err, return DAEMON_ERROR);
return DAEMON_SUCCESS;
2017-04-20 14:45:56 +00:00
}
int rm_list(int client) {
2021-01-12 08:07:48 +00:00
string pkg = read_string(client);
string proc = read_string(client);
return rm_list(pkg.data(), proc.data());
}
static bool str_ends_safe(string_view s, string_view ss) {
// Never kill webview zygote
if (s == "webview_zygote")
return false;
return str_ends(s, ss);
}
static bool init_list() {
2021-09-12 19:40:34 +00:00
LOGD("denylist: initialize\n");
2021-09-12 19:40:34 +00:00
char *err = db_exec("SELECT * FROM denylist", [](db_row &row) -> bool {
add_hide_set(row["package_name"].data(), row["process"].data());
return true;
});
db_err_cmd(err, return false);
// If Android Q+, also kill blastula pool and all app zygotes
if (SDK_INT >= 29) {
kill_process("usap32", true);
kill_process("usap64", true);
kill_process<&str_ends_safe>("_zygote", true);
}
return true;
2017-04-20 14:45:56 +00:00
}
void ls_list(int client) {
write_int(client, DAEMON_SUCCESS);
{
2021-09-12 19:40:34 +00:00
mutex_guard lock(data_lock);
for (const auto &hide : *deny_set) {
write_int(client, hide.first.size() + hide.second.size() + 1);
xwrite(client, hide.first.data(), hide.first.size());
xwrite(client, "|", 1);
xwrite(client, hide.second.data(), hide.second.size());
}
2021-01-12 08:07:48 +00:00
}
write_int(client, 0);
close(client);
}
2018-11-16 06:15:34 +00:00
2021-09-16 12:27:34 +00:00
static void update_deny_config() {
char sql[64];
sprintf(sql, "REPLACE INTO settings (key,value) VALUES('%s',%d)",
2021-09-16 12:27:34 +00:00
DB_SETTING_KEYS[DENYLIST_CONFIG], denylist_enabled.load());
char *err = db_exec(sql);
db_err(err);
2018-11-16 06:15:34 +00:00
}
2021-09-16 12:27:34 +00:00
int enable_deny() {
if (denylist_enabled) {
return DAEMON_SUCCESS;
} else {
mutex_guard lock(data_lock);
2018-11-16 06:15:34 +00:00
2021-09-16 12:27:34 +00:00
if (access("/proc/self/ns/mnt", F_OK) != 0) {
LOGW("The kernel does not support mount namespace\n");
return DENY_NO_NS;
}
2021-09-16 12:27:34 +00:00
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
return DAEMON_ERROR;
2021-09-16 12:27:34 +00:00
LOGI("* Enable DenyList\n");
2018-11-16 06:15:34 +00:00
2021-09-16 12:27:34 +00:00
default_new(deny_set);
if (!init_list()) {
delete deny_set;
deny_set = nullptr;
return DAEMON_ERROR;
}
2021-09-16 12:27:34 +00:00
denylist_enabled = true;
2021-09-16 12:27:34 +00:00
default_new(uid_proc_map);
rebuild_uid_map();
}
2021-01-12 08:07:48 +00:00
2021-09-16 12:27:34 +00:00
update_deny_config();
return DAEMON_SUCCESS;
2018-11-16 06:15:34 +00:00
}
2021-09-12 19:40:34 +00:00
int disable_deny() {
2021-09-16 12:27:34 +00:00
if (denylist_enabled) {
denylist_enabled = false;
2021-09-12 19:40:34 +00:00
LOGI("* Disable DenyList\n");
2021-09-16 12:27:34 +00:00
mutex_guard lock(data_lock);
delete uid_proc_map;
2021-09-12 19:40:34 +00:00
delete deny_set;
uid_proc_map = nullptr;
2021-09-12 19:40:34 +00:00
deny_set = nullptr;
}
2021-09-16 12:27:34 +00:00
update_deny_config();
return DAEMON_SUCCESS;
2018-11-16 06:15:34 +00:00
}
2021-09-16 12:27:34 +00:00
void initialize_denylist() {
if (!denylist_enabled) {
db_settings dbs;
2021-09-12 19:40:34 +00:00
get_db_settings(dbs, DENYLIST_CONFIG);
if (dbs[DENYLIST_CONFIG])
2021-09-16 12:27:34 +00:00
enable_deny();
}
2018-11-16 06:15:34 +00:00
}
2021-09-12 19:40:34 +00:00
bool is_deny_target(int uid, string_view process) {
mutex_guard lock(data_lock);
if (uid % 100000 >= 90000) {
// Isolated processes
auto it = uid_proc_map->find(-1);
if (it == uid_proc_map->end())
return false;
for (auto &s : it->second) {
if (str_starts(process, s))
return true;
}
} else {
auto it = uid_proc_map->find(uid);
if (it == uid_proc_map->end())
return false;
for (auto &s : it->second) {
if (s == process)
return true;
}
}
return false;
}