2019-03-30 06:49:29 -04:00
|
|
|
#pragma once
|
2017-04-15 03:23:09 +08:00
|
|
|
|
2025-02-02 12:57:09 +08:00
|
|
|
#include <sys/socket.h>
|
2021-09-18 14:40:12 -07:00
|
|
|
#include <poll.h>
|
2019-02-15 20:45:05 -05:00
|
|
|
#include <string>
|
2021-08-21 03:52:59 -07:00
|
|
|
#include <atomic>
|
2021-09-20 04:42:06 -07:00
|
|
|
#include <functional>
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2025-02-02 02:42:18 +08:00
|
|
|
#include <base.hpp>
|
|
|
|
|
|
2023-12-03 19:32:58 +08:00
|
|
|
#include "../core-rs.hpp"
|
2020-04-12 05:34:56 -07:00
|
|
|
|
2022-05-30 02:09:07 -07:00
|
|
|
#define AID_ROOT 0
|
|
|
|
|
#define AID_SHELL 2000
|
2022-05-18 01:55:58 -07:00
|
|
|
#define AID_USER_OFFSET 100000
|
|
|
|
|
|
2022-05-30 02:09:07 -07:00
|
|
|
#define to_app_id(uid) (uid % AID_USER_OFFSET)
|
|
|
|
|
#define to_user_id(uid) (uid / AID_USER_OFFSET)
|
|
|
|
|
|
2017-05-05 16:13:26 +08:00
|
|
|
// Return codes for daemon
|
2023-11-17 13:35:50 -08:00
|
|
|
enum class RespondCode : int {
|
2022-02-12 23:43:36 +08:00
|
|
|
ERROR = -1,
|
|
|
|
|
OK = 0,
|
2020-12-30 22:11:24 -08:00
|
|
|
ROOT_REQUIRED,
|
2022-03-01 02:58:39 -08:00
|
|
|
ACCESS_DENIED,
|
2022-02-12 23:43:36 +08:00
|
|
|
END
|
2018-02-11 17:23:36 +08:00
|
|
|
};
|
2017-05-05 16:13:26 +08:00
|
|
|
|
2025-02-02 02:42:18 +08:00
|
|
|
struct ModuleInfo;
|
|
|
|
|
|
|
|
|
|
// Daemon
|
2022-03-01 02:13:18 -08:00
|
|
|
int connect_daemon(int req, bool create = false);
|
2025-02-02 02:42:18 +08:00
|
|
|
const char *get_magisk_tmp();
|
2023-11-08 01:46:02 -08:00
|
|
|
void unlock_blocks();
|
2025-02-02 02:42:18 +08:00
|
|
|
bool setup_magisk_env();
|
|
|
|
|
bool check_key_combo();
|
2025-07-07 10:58:02 -07:00
|
|
|
|
|
|
|
|
// Zygisk daemon
|
|
|
|
|
rust::Str get_zygisk_lib_name();
|
|
|
|
|
void set_zygisk_prop();
|
2025-02-02 02:42:18 +08:00
|
|
|
void restore_zygisk_prop();
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2025-02-02 12:57:09 +08:00
|
|
|
// Sockets
|
|
|
|
|
struct sock_cred : public ucred {
|
|
|
|
|
std::string context;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename T> requires(std::is_trivially_copyable_v<T>)
|
|
|
|
|
T read_any(int fd) {
|
|
|
|
|
T val;
|
|
|
|
|
if (xxread(fd, &val, sizeof(val)) != sizeof(val))
|
|
|
|
|
return -1;
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T> requires(std::is_trivially_copyable_v<T>)
|
|
|
|
|
void write_any(int fd, T val) {
|
|
|
|
|
if (fd < 0) return;
|
|
|
|
|
xwrite(fd, &val, sizeof(val));
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-02 21:04:37 +08:00
|
|
|
bool get_client_cred(int fd, sock_cred *cred);
|
|
|
|
|
static inline int read_int(int fd) { return read_any<int>(fd); }
|
|
|
|
|
static inline void write_int(int fd, int val) { write_any(fd, val); }
|
|
|
|
|
std::string read_string(int fd);
|
|
|
|
|
bool read_string(int fd, std::string &str);
|
|
|
|
|
void write_string(int fd, std::string_view str);
|
|
|
|
|
|
2025-02-02 12:57:09 +08:00
|
|
|
template<typename T> requires(std::is_trivially_copyable_v<T>)
|
|
|
|
|
void write_vector(int fd, const std::vector<T> &vec) {
|
2025-02-02 21:04:37 +08:00
|
|
|
write_int(fd, vec.size());
|
2025-02-02 12:57:09 +08:00
|
|
|
xwrite(fd, vec.data(), vec.size() * sizeof(T));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T> requires(std::is_trivially_copyable_v<T>)
|
|
|
|
|
bool read_vector(int fd, std::vector<T> &vec) {
|
2025-02-02 21:04:37 +08:00
|
|
|
int size = read_int(fd);
|
2025-02-02 12:57:09 +08:00
|
|
|
vec.resize(size);
|
|
|
|
|
return xread(fd, vec.data(), size * sizeof(T)) == size * sizeof(T);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-18 14:40:12 -07:00
|
|
|
// Poll control
|
|
|
|
|
using poll_callback = void(*)(pollfd*);
|
|
|
|
|
void register_poll(const pollfd *pfd, poll_callback callback);
|
|
|
|
|
void unregister_poll(int fd, bool auto_close);
|
2021-10-17 04:24:25 -07:00
|
|
|
void clear_poll();
|
2021-09-18 14:40:12 -07:00
|
|
|
|
2021-09-20 04:42:06 -07:00
|
|
|
// Thread pool
|
2024-01-25 00:17:05 -08:00
|
|
|
void init_thread_pool();
|
2021-09-20 04:42:06 -07:00
|
|
|
void exec_task(std::function<void()> &&task);
|
|
|
|
|
|
2020-04-30 01:26:50 -07:00
|
|
|
// Daemon handlers
|
2021-10-19 23:46:38 -07:00
|
|
|
void denylist_handler(int client, const sock_cred *cred);
|
2017-04-15 19:02:07 +08:00
|
|
|
|
2023-11-08 01:46:02 -08:00
|
|
|
// Scripting
|
2025-02-02 02:42:18 +08:00
|
|
|
void install_apk(rust::Utf8CStr apk);
|
|
|
|
|
void uninstall_pkg(rust::Utf8CStr pkg);
|
|
|
|
|
void exec_common_scripts(rust::Utf8CStr stage);
|
|
|
|
|
void exec_module_scripts(rust::Utf8CStr stage, const rust::Vec<ModuleInfo> &module_list);
|
2023-11-08 01:46:02 -08:00
|
|
|
void exec_script(const char *script);
|
|
|
|
|
void clear_pkg(const char *pkg, int user_id);
|
|
|
|
|
[[noreturn]] void install_module(const char *file);
|
|
|
|
|
|
2021-09-12 12:40:34 -07:00
|
|
|
// Denylist
|
2023-11-08 01:46:02 -08:00
|
|
|
extern std::atomic<bool> denylist_enforced;
|
2021-09-12 12:40:34 -07:00
|
|
|
int denylist_cli(int argc, char **argv);
|
2023-11-08 01:46:02 -08:00
|
|
|
void initialize_denylist();
|
2024-01-30 02:58:56 +08:00
|
|
|
void scan_deny_apps();
|
2023-11-08 01:46:02 -08:00
|
|
|
bool is_deny_target(int uid, std::string_view process);
|
2022-08-08 22:30:03 +08:00
|
|
|
void revert_unmount(int pid = -1) noexcept;
|
2025-02-02 02:42:18 +08:00
|
|
|
void update_deny_flags(int uid, rust::Str process, uint32_t &flags);
|
|
|
|
|
|
2025-02-02 04:30:16 +08:00
|
|
|
// MagiskSU
|
|
|
|
|
void exec_root_shell(int client, int pid, SuRequest &req, MntNsMode mode);
|
|
|
|
|
void app_log(const SuAppRequest &info, SuPolicy policy, bool notify);
|
|
|
|
|
void app_notify(const SuAppRequest &info, SuPolicy policy);
|
|
|
|
|
int app_request(const SuAppRequest &info);
|
|
|
|
|
|
2025-02-02 02:42:18 +08:00
|
|
|
// Rust bindings
|
|
|
|
|
static inline rust::Utf8CStr get_magisk_tmp_rs() { return get_magisk_tmp(); }
|
|
|
|
|
static inline rust::String resolve_preinit_dir_rs(rust::Utf8CStr base_dir) {
|
|
|
|
|
return resolve_preinit_dir(base_dir.c_str());
|
|
|
|
|
}
|
2025-08-03 20:08:34 -07:00
|
|
|
static inline void exec_script_rs(rust::Utf8CStr script) { exec_script(script.data()); }
|