mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 18:45:28 +00:00
ea75a09f95
Close #4777
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <pthread.h>
|
|
#include <poll.h>
|
|
#include <string>
|
|
#include <limits>
|
|
#include <atomic>
|
|
#include <functional>
|
|
|
|
#include <socket.hpp>
|
|
|
|
// Daemon command code flags/masks
|
|
enum : int {
|
|
SYNC_FLAG = (1 << 30),
|
|
DAEMON_CODE_MASK = std::numeric_limits<int>::max() >> 1
|
|
};
|
|
|
|
// Daemon command codes
|
|
enum : int {
|
|
START_DAEMON = SYNC_FLAG | 0,
|
|
CHECK_VERSION = SYNC_FLAG | 1,
|
|
CHECK_VERSION_CODE = SYNC_FLAG | 2,
|
|
GET_PATH = SYNC_FLAG | 3,
|
|
STOP_DAEMON = SYNC_FLAG | 4,
|
|
SUPERUSER = 5,
|
|
POST_FS_DATA,
|
|
LATE_START,
|
|
BOOT_COMPLETE,
|
|
DENYLIST,
|
|
SQLITE_CMD,
|
|
REMOVE_MODULES,
|
|
ZYGISK_REQUEST,
|
|
ZYGISK_PASSTHROUGH,
|
|
DAEMON_CODE_END,
|
|
};
|
|
|
|
// Return codes for daemon
|
|
enum : int {
|
|
DAEMON_ERROR = -1,
|
|
DAEMON_SUCCESS = 0,
|
|
ROOT_REQUIRED,
|
|
DAEMON_LAST
|
|
};
|
|
|
|
extern bool zygisk_enabled;
|
|
extern int app_process_32;
|
|
extern int app_process_64;
|
|
|
|
int connect_daemon(bool create = false);
|
|
|
|
// Poll control
|
|
using poll_callback = void(*)(pollfd*);
|
|
void register_poll(const pollfd *pfd, poll_callback callback);
|
|
void unregister_poll(int fd, bool auto_close);
|
|
void clear_poll();
|
|
|
|
// Thread pool
|
|
void exec_task(std::function<void()> &&task);
|
|
|
|
// Logging
|
|
extern std::atomic<int> logd_fd;
|
|
int magisk_log(int prio, const char *fmt, va_list ap);
|
|
void android_logging();
|
|
|
|
// Daemon handlers
|
|
void post_fs_data(int client);
|
|
void late_start(int client);
|
|
void boot_complete(int client);
|
|
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);
|
|
std::vector<int> zygisk_module_fds(bool is_64_bit);
|
|
|
|
// Denylist
|
|
void initialize_denylist();
|
|
int disable_deny();
|
|
int denylist_cli(int argc, char **argv);
|