95 lines
2.4 KiB
C++
Raw Normal View History

#pragma once
2017-04-15 03:23:09 +08:00
#include <pthread.h>
2021-09-18 14:40:12 -07:00
#include <poll.h>
2019-02-15 20:45:05 -05:00
#include <string>
2021-08-11 22:57:08 -07:00
#include <limits>
2021-08-21 03:52:59 -07:00
#include <atomic>
2021-09-20 04:42:06 -07:00
#include <functional>
2023-11-08 01:46:02 -08:00
#include "socket.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_APP_START 10000
#define AID_APP_END 19999
#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,
ROOT_REQUIRED,
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
2022-01-14 03:10:02 -08:00
struct module_info {
std::string name;
int z32 = -1;
#if defined(__LP64__)
int z64 = -1;
#endif
};
2021-09-16 05:27:34 -07:00
extern bool zygisk_enabled;
2022-01-14 03:10:02 -08:00
extern std::vector<module_info> *module_list;
extern std::string native_bridge;
2020-05-18 05:18:49 -07:00
2023-11-08 01:46:02 -08:00
void reset_zygisk(bool restore);
2022-03-01 02:13:18 -08:00
int connect_daemon(int req, bool create = false);
2023-11-08 01:46:02 -08:00
void unlock_blocks();
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
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
2023-03-16 10:26:27 +08:00
void boot_stage_handler(int client, int code);
2021-10-19 23:46:38 -07:00
void denylist_handler(int client, const sock_cred *cred);
void su_daemon_handler(int client, const sock_cred *cred);
void zygisk_handler(int client, const sock_cred *cred);
2017-04-15 19:02:07 +08:00
2022-05-18 01:55:58 -07:00
// Package
2022-05-19 22:54:49 -07:00
void preserve_stub_apk();
2022-05-29 23:31:57 -07:00
void check_pkg_refresh();
2022-05-18 01:55:58 -07:00
std::vector<bool> get_app_no_list();
2022-05-29 23:31:57 -07:00
// Call check_pkg_refresh() before calling get_manager(...)
// to make sure the package state is invalidated!
2022-05-19 22:54:49 -07:00
int get_manager(int user_id = 0, std::string *pkg = nullptr, bool install = false);
2022-05-28 22:39:44 -07:00
void prune_su_access();
2022-05-18 01:55:58 -07:00
2023-11-08 01:46:02 -08:00
// Module stuffs
void handle_modules();
void load_modules();
void disable_modules();
void remove_modules();
void exec_module_scripts(const char *stage);
// Scripting
void exec_script(const char *script);
void exec_common_scripts(const char *stage);
void exec_module_scripts(const char *stage, const std::vector<std::string_view> &modules);
void install_apk(const char *apk);
void uninstall_pkg(const char *pkg);
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
2022-05-29 23:31:57 -07:00
extern std::atomic_flag skip_pkg_rescan;
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();
bool is_deny_target(int uid, std::string_view process);
void revert_unmount(int pid = -1) noexcept;