2019-03-05 08:22:20 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2021-09-20 11:42:06 +00:00
|
|
|
#include <sys/inotify.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>
|
2019-02-10 06:05:19 +00:00
|
|
|
|
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;
|
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
#define FIRST_APP_UID 10000
|
|
|
|
|
|
|
|
struct app_id_bitset : public dynamic_bitset_impl {
|
|
|
|
slot_bits::reference operator[] (size_t pos) {
|
|
|
|
return pos < FIRST_APP_UID ? get(0) : get(pos - FIRST_APP_UID);
|
|
|
|
}
|
|
|
|
bool operator[] (size_t pos) const {
|
|
|
|
return pos < FIRST_APP_UID || get(pos - FIRST_APP_UID);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// For the following data structures:
|
|
|
|
// If package name == ISOLATED_MAGIC, or app ID == -1, it means isolated service
|
|
|
|
|
|
|
|
// List of all discovered app IDs
|
|
|
|
static app_id_bitset *app_ids_seen_;
|
|
|
|
#define app_ids_seen (*app_ids_seen_)
|
|
|
|
|
2022-02-07 08:17:07 +00:00
|
|
|
// Package name -> list of process names
|
2022-02-07 10:46:47 +00:00
|
|
|
static map<string, set<string, StringCmp>, StringCmp> *pkg_to_procs_;
|
|
|
|
#define pkg_to_procs (*pkg_to_procs_)
|
2022-02-07 08:17:07 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
// app ID -> list of pkg names (string_view points to a pkg_to_procs key)
|
|
|
|
static map<int, set<string_view>> *app_id_to_pkgs_;
|
|
|
|
#define app_id_to_pkgs (*app_id_to_pkgs_)
|
2021-01-11 01:11:00 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
// Locks the data structures above
|
2021-09-12 19:40:34 +00:00
|
|
|
static pthread_mutex_t data_lock = PTHREAD_MUTEX_INITIALIZER;
|
2021-01-11 01:11:00 +00:00
|
|
|
|
2022-01-18 03:54:33 +00:00
|
|
|
atomic<bool> denylist_enforced = false;
|
2021-08-18 09:01:54 +00:00
|
|
|
|
2022-01-18 03:54:33 +00:00
|
|
|
#define do_kill (zygisk_enabled && denylist_enforced)
|
2022-01-16 07:46:08 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
static void rescan_apps() {
|
|
|
|
LOGD("denylist: rescanning apps\n");
|
|
|
|
app_id_to_pkgs.clear();
|
|
|
|
auto data_dir = xopen_dir(APP_DATA_DIR);
|
|
|
|
if (!data_dir)
|
|
|
|
return;
|
|
|
|
dirent *entry;
|
|
|
|
while ((entry = xreaddir(data_dir.get()))) {
|
|
|
|
// For each user
|
|
|
|
int dfd = xopenat(dirfd(data_dir.get()), entry->d_name, O_RDONLY);
|
|
|
|
if (auto dir = xopen_dir(dfd)) {
|
|
|
|
while ((entry = xreaddir(dir.get()))) {
|
|
|
|
// For each package
|
|
|
|
struct stat st{};
|
|
|
|
xfstatat(dfd, entry->d_name, &st, 0);
|
|
|
|
int app_id = to_app_id(st.st_uid);
|
|
|
|
if (app_id_to_pkgs.contains(app_id)) {
|
|
|
|
// This app ID has been handled
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
app_ids_seen[app_id] = true;
|
|
|
|
if (auto it = pkg_to_procs.find(entry->d_name); it != pkg_to_procs.end()) {
|
|
|
|
app_id_to_pkgs[app_id].insert(it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
close(dfd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (auto it = pkg_to_procs.find(ISOLATED_MAGIC); it != pkg_to_procs.end()) {
|
|
|
|
app_id_to_pkgs[-1].insert(it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_pkg_uid(const string &pkg, bool remove) {
|
2021-01-11 01:11:00 +00:00
|
|
|
string data_path(APP_DATA_DIR);
|
|
|
|
size_t len = data_path.length();
|
2021-09-20 12:08:25 +00:00
|
|
|
|
|
|
|
// Collect all user IDs
|
|
|
|
vector<string> users;
|
|
|
|
if (auto dir = open_dir(APP_DATA_DIR)) {
|
|
|
|
for (dirent *entry; (entry = xreaddir(dir.get()));) {
|
|
|
|
users.emplace_back(entry->d_name);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
// Find package data folder to get its app ID
|
|
|
|
for (const auto &user_id : users) {
|
|
|
|
data_path.resize(len);
|
|
|
|
data_path += '/';
|
|
|
|
data_path += user_id;
|
|
|
|
data_path += '/';
|
|
|
|
data_path += pkg;
|
|
|
|
struct stat st{};
|
|
|
|
if (stat(data_path.data(), &st) != 0) {
|
|
|
|
int app_id = to_app_id(st.st_uid);
|
|
|
|
if (remove) {
|
|
|
|
if (auto it = app_id_to_pkgs.find(app_id); it != app_id_to_pkgs.end()) {
|
|
|
|
it->second.erase(pkg);
|
|
|
|
if (it->second.empty()) {
|
|
|
|
app_id_to_pkgs.erase(it);
|
|
|
|
}
|
2021-09-20 12:08:25 +00:00
|
|
|
}
|
2022-02-07 10:46:47 +00:00
|
|
|
} else {
|
|
|
|
app_id_to_pkgs[app_id].insert(pkg);
|
2021-01-11 01:11:00 +00:00
|
|
|
}
|
2022-02-07 10:46:47 +00:00
|
|
|
break;
|
2021-01-11 01:11:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-02 16:57:20 +00:00
|
|
|
|
2019-02-14 01:16:26 +00:00
|
|
|
// Leave /proc fd opened as we're going to read from it repeatedly
|
|
|
|
static DIR *procfp;
|
2019-03-12 20:48:01 +00:00
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
template<class F>
|
2022-02-07 10:46:47 +00:00
|
|
|
static void crawl_procfs(const F &fn) {
|
2021-08-18 09:01:54 +00:00
|
|
|
rewinddir(procfp);
|
|
|
|
dirent *dp;
|
2020-12-31 06:11:24 +00:00
|
|
|
int pid;
|
2021-08-18 09:01:54 +00:00
|
|
|
while ((dp = readdir(procfp))) {
|
2020-12-31 06:11:24 +00:00
|
|
|
pid = parse_int(dp->d_name);
|
|
|
|
if (pid > 0 && !fn(pid))
|
|
|
|
break;
|
|
|
|
}
|
2018-10-13 01:46:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-30 23:55:53 +00:00
|
|
|
template <bool str_op(string_view, string_view)>
|
2019-04-22 20:36:23 +00:00
|
|
|
static bool proc_name_match(int pid, const char *name) {
|
2020-12-31 06:11:24 +00:00
|
|
|
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);
|
2020-12-31 06:11:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-10-13 01:46:09 +00:00
|
|
|
}
|
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
static inline bool str_eql(string_view a, string_view b) { return a == b; }
|
2020-12-30 23:55:53 +00:00
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
template<bool str_op(string_view, string_view) = &str_eql>
|
|
|
|
static void kill_process(const char *name, bool multi = false) {
|
2020-12-31 06:11:24 +00:00
|
|
|
crawl_procfs([=](int pid) -> bool {
|
2021-08-18 09:01:54 +00:00
|
|
|
if (proc_name_match<str_op>(pid, name)) {
|
2021-04-26 06:25:18 +00:00
|
|
|
kill(pid, SIGKILL);
|
2020-12-31 06:11:24 +00:00
|
|
|
return multi;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
2018-08-07 21:47:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-16 06:08:51 +00:00
|
|
|
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;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-04-16 06:08:51 +00:00
|
|
|
|
|
|
|
for (char c; (c = *proc); ++proc) {
|
|
|
|
if (isalnum(c) || c == '_' || c == ':' || c == '.')
|
|
|
|
continue;
|
|
|
|
proc_valid = false;
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 06:08:51 +00:00
|
|
|
return pkg_valid && proc_valid;
|
2019-09-01 06:16:12 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
static auto add_hide_set(const char *pkg, const char *proc) {
|
|
|
|
auto p = pkg_to_procs[pkg].emplace(proc);
|
2022-02-07 08:17:07 +00:00
|
|
|
if (!p.second)
|
2022-02-07 10:46:47 +00:00
|
|
|
return p;
|
2021-09-12 19:40:34 +00:00
|
|
|
LOGI("denylist add: [%s/%s]\n", pkg, proc);
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!do_kill)
|
2022-02-07 10:46:47 +00:00
|
|
|
return p;
|
2022-01-16 07:46:08 +00:00
|
|
|
if (str_eql(pkg, ISOLATED_MAGIC)) {
|
2020-12-31 06:11:24 +00:00
|
|
|
// Kill all matching isolated processes
|
2021-08-18 09:01:54 +00:00
|
|
|
kill_process<&str_starts>(proc, true);
|
2020-12-31 06:11:24 +00:00
|
|
|
} else {
|
|
|
|
kill_process(proc);
|
|
|
|
}
|
2022-02-07 10:46:47 +00:00
|
|
|
return p;
|
2020-12-30 23:55:53 +00:00
|
|
|
}
|
|
|
|
|
2022-01-16 07:46:08 +00:00
|
|
|
static void clear_data() {
|
2022-02-07 10:46:47 +00:00
|
|
|
delete app_ids_seen_;
|
|
|
|
delete pkg_to_procs_;
|
|
|
|
delete app_id_to_pkgs_;
|
|
|
|
app_ids_seen_ = nullptr;
|
|
|
|
pkg_to_procs_ = nullptr;
|
|
|
|
app_id_to_pkgs_ = nullptr;
|
2022-01-16 07:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool ensure_data() {
|
2022-02-07 10:46:47 +00:00
|
|
|
if (app_ids_seen_)
|
2022-01-16 07:46:08 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
LOGI("denylist: initializing internal data structures\n");
|
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
default_new(pkg_to_procs_);
|
2022-01-16 07:46:08 +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, goto error);
|
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
default_new(app_ids_seen_);
|
|
|
|
default_new(app_id_to_pkgs_);
|
|
|
|
rescan_apps();
|
2022-01-16 07:46:08 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
clear_data();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-12-30 23:55:53 +00:00
|
|
|
static int add_list(const char *pkg, const char *proc) {
|
2020-12-31 06:11:24 +00:00
|
|
|
if (proc[0] == '\0')
|
|
|
|
proc = pkg;
|
|
|
|
|
2021-04-16 06:08:51 +00:00
|
|
|
if (!validate(pkg, proc))
|
2021-09-12 19:40:34 +00:00
|
|
|
return DENYLIST_INVALID_PKG;
|
2020-12-31 06:11:24 +00:00
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
{
|
2021-09-12 19:40:34 +00:00
|
|
|
mutex_guard lock(data_lock);
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!ensure_data())
|
|
|
|
return DAEMON_ERROR;
|
2022-02-07 10:46:47 +00:00
|
|
|
auto p = add_hide_set(pkg, proc);
|
|
|
|
if (!p.second)
|
2022-02-07 08:17:07 +00:00
|
|
|
return DENYLIST_ITEM_EXIST;
|
2022-02-07 10:46:47 +00:00
|
|
|
update_pkg_uid(*p.first, false);
|
2021-08-18 09:01:54 +00:00
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
// 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);
|
2020-12-31 06:11:24 +00:00
|
|
|
char *err = db_exec(sql);
|
|
|
|
db_err_cmd(err, return DAEMON_ERROR);
|
|
|
|
return DAEMON_SUCCESS;
|
2017-04-20 14:45:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 18:08:33 +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);
|
2021-08-18 09:01:54 +00:00
|
|
|
return add_list(pkg.data(), proc.data());
|
2018-11-01 18:08:33 +00:00
|
|
|
}
|
2017-04-20 14:45:56 +00:00
|
|
|
|
2020-12-30 23:55:53 +00:00
|
|
|
static int rm_list(const char *pkg, const char *proc) {
|
2020-12-31 06:11:24 +00:00
|
|
|
{
|
2021-09-12 19:40:34 +00:00
|
|
|
mutex_guard lock(data_lock);
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!ensure_data())
|
|
|
|
return DAEMON_ERROR;
|
|
|
|
|
|
|
|
bool remove = false;
|
2022-02-07 08:17:07 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
auto it = pkg_to_procs.find(pkg);
|
|
|
|
if (it != pkg_to_procs.end()) {
|
|
|
|
if (proc[0] == '\0') {
|
|
|
|
update_pkg_uid(it->first, true);
|
|
|
|
pkg_to_procs.erase(it);
|
2020-12-31 06:11:24 +00:00
|
|
|
remove = true;
|
2022-02-07 08:17:07 +00:00
|
|
|
LOGI("denylist rm: [%s]\n", pkg);
|
2022-02-07 10:46:47 +00:00
|
|
|
} else if (it->second.erase(proc) != 0) {
|
|
|
|
remove = true;
|
|
|
|
LOGI("denylist rm: [%s/%s]\n", pkg, proc);
|
|
|
|
if (it->second.empty()) {
|
|
|
|
update_pkg_uid(it->first, true);
|
|
|
|
pkg_to_procs.erase(it);
|
2022-02-07 08:17:07 +00:00
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-07 10:46:47 +00:00
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
if (!remove)
|
2021-09-12 19:40:34 +00:00
|
|
|
return DENYLIST_ITEM_NOT_EXIST;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2020-12-31 06:11:24 +00:00
|
|
|
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);
|
2020-12-31 06:11:24 +00:00
|
|
|
char *err = db_exec(sql);
|
2021-08-18 09:01:54 +00:00
|
|
|
db_err_cmd(err, return DAEMON_ERROR);
|
2020-12-31 06:11:24 +00:00
|
|
|
return DAEMON_SUCCESS;
|
2017-04-20 14:45:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 18:08:33 +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);
|
2021-08-18 09:01:54 +00:00
|
|
|
return rm_list(pkg.data(), proc.data());
|
2018-11-01 18:08:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ls_list(int client) {
|
2021-08-18 09:01:54 +00:00
|
|
|
{
|
2021-09-12 19:40:34 +00:00
|
|
|
mutex_guard lock(data_lock);
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!ensure_data()) {
|
|
|
|
write_int(client, DAEMON_ERROR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
write_int(client, DAEMON_SUCCESS);
|
2022-02-07 08:17:07 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
for (const auto &[pkg, procs] : pkg_to_procs) {
|
2022-02-07 08:17:07 +00:00
|
|
|
for (const auto &proc : procs) {
|
|
|
|
write_int(client, pkg.size() + proc.size() + 1);
|
|
|
|
xwrite(client, pkg.data(), pkg.size());
|
|
|
|
xwrite(client, "|", 1);
|
|
|
|
xwrite(client, proc.data(), proc.size());
|
|
|
|
}
|
2021-08-18 09:01:54 +00:00
|
|
|
}
|
2021-01-12 08:07:48 +00:00
|
|
|
}
|
|
|
|
write_int(client, 0);
|
2020-12-31 06:11:24 +00:00
|
|
|
close(client);
|
2017-09-05 18:25:40 +00:00
|
|
|
}
|
2018-11-16 06:15:34 +00:00
|
|
|
|
2022-01-16 07:46:08 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
static void update_deny_config() {
|
2020-12-31 06:11:24 +00:00
|
|
|
char sql[64];
|
|
|
|
sprintf(sql, "REPLACE INTO settings (key,value) VALUES('%s',%d)",
|
2022-01-18 03:54:33 +00:00
|
|
|
DB_SETTING_KEYS[DENYLIST_CONFIG], denylist_enforced.load());
|
2020-12-31 06:11:24 +00:00
|
|
|
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() {
|
2022-01-18 03:54:33 +00:00
|
|
|
if (denylist_enforced) {
|
2021-09-16 12:27:34 +00:00
|
|
|
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;
|
|
|
|
}
|
2020-05-17 21:45:08 +00:00
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
|
|
|
|
return DAEMON_ERROR;
|
2019-02-14 09:08:05 +00:00
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
LOGI("* Enable DenyList\n");
|
2018-11-16 06:15:34 +00:00
|
|
|
|
2022-01-18 03:54:33 +00:00
|
|
|
denylist_enforced = true;
|
2019-02-14 01:16:26 +00:00
|
|
|
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!ensure_data()) {
|
2022-01-18 03:54:33 +00:00
|
|
|
denylist_enforced = false;
|
2022-01-16 07:46:08 +00:00
|
|
|
return DAEMON_ERROR;
|
|
|
|
}
|
2021-09-20 11:42:06 +00:00
|
|
|
|
2022-01-16 07:46:08 +00:00
|
|
|
// On Android Q+, also kill blastula pool and all app zygotes
|
|
|
|
if (SDK_INT >= 29 && zygisk_enabled) {
|
|
|
|
kill_process("usap32", true);
|
|
|
|
kill_process("usap64", true);
|
|
|
|
kill_process<&str_ends_safe>("_zygote", true);
|
2021-09-20 11:42:06 +00:00
|
|
|
}
|
2021-09-16 12:27:34 +00:00
|
|
|
}
|
2021-01-12 08:07:48 +00:00
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
update_deny_config();
|
2020-12-31 06:11:24 +00:00
|
|
|
return DAEMON_SUCCESS;
|
2018-11-16 06:15:34 +00:00
|
|
|
}
|
|
|
|
|
2021-09-12 19:40:34 +00:00
|
|
|
int disable_deny() {
|
2022-01-18 03:54:33 +00:00
|
|
|
if (denylist_enforced) {
|
|
|
|
denylist_enforced = false;
|
2021-09-12 19:40:34 +00:00
|
|
|
LOGI("* Disable DenyList\n");
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-09-16 12:27:34 +00:00
|
|
|
update_deny_config();
|
2020-12-31 06:11:24 +00:00
|
|
|
return DAEMON_SUCCESS;
|
2018-11-16 06:15:34 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
void initialize_denylist() {
|
2022-01-18 03:54:33 +00:00
|
|
|
if (!denylist_enforced) {
|
2020-12-31 06:11:24 +00:00
|
|
|
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();
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2018-11-16 06:15:34 +00:00
|
|
|
}
|
2019-05-25 23:08:53 +00:00
|
|
|
|
2021-09-12 19:40:34 +00:00
|
|
|
bool is_deny_target(int uid, string_view process) {
|
|
|
|
mutex_guard lock(data_lock);
|
2022-01-16 07:46:08 +00:00
|
|
|
if (!ensure_data())
|
|
|
|
return false;
|
2021-01-12 11:28:00 +00:00
|
|
|
|
2021-09-20 12:08:25 +00:00
|
|
|
int app_id = to_app_id(uid);
|
|
|
|
if (app_id >= 90000) {
|
2021-01-16 04:22:49 +00:00
|
|
|
// Isolated processes
|
2022-02-07 10:46:47 +00:00
|
|
|
auto it = app_id_to_pkgs.find(-1);
|
|
|
|
if (it == app_id_to_pkgs.end())
|
2021-01-16 04:22:49 +00:00
|
|
|
return false;
|
2021-01-12 11:28:00 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
for (const auto &pkg : it->second) {
|
|
|
|
for (const auto &s : pkg_to_procs.find(pkg)->second) {
|
|
|
|
if (str_starts(process, s))
|
|
|
|
return true;
|
|
|
|
}
|
2021-01-12 11:28:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-02-07 10:46:47 +00:00
|
|
|
if (!app_ids_seen[app_id]) {
|
|
|
|
// Found new app ID
|
|
|
|
cached_manager_app_id = -1;
|
|
|
|
rescan_apps();
|
|
|
|
}
|
2021-01-12 11:28:00 +00:00
|
|
|
|
2022-02-07 10:46:47 +00:00
|
|
|
auto it = app_id_to_pkgs.find(app_id);
|
|
|
|
if (it == app_id_to_pkgs.end())
|
|
|
|
return false;
|
|
|
|
for (const auto &pkg : it->second) {
|
|
|
|
if (pkg_to_procs.find(pkg)->second.count(process))
|
2021-01-16 04:22:49 +00:00
|
|
|
return true;
|
2021-01-12 11:28:00 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-16 04:22:49 +00:00
|
|
|
return false;
|
|
|
|
}
|