2019-03-30 10:49:29 +00:00
|
|
|
#pragma once
|
2017-04-14 19:23:09 +00:00
|
|
|
|
2017-04-15 18:42:24 +00:00
|
|
|
#include <pthread.h>
|
2021-09-18 21:40:12 +00:00
|
|
|
#include <poll.h>
|
2019-02-16 01:45:05 +00:00
|
|
|
#include <string>
|
2021-08-12 05:57:08 +00:00
|
|
|
#include <limits>
|
2021-08-21 10:52:59 +00:00
|
|
|
#include <atomic>
|
2021-09-20 11:42:06 +00:00
|
|
|
#include <functional>
|
2017-04-15 18:42:24 +00:00
|
|
|
|
2020-04-12 12:34:56 +00:00
|
|
|
#include <socket.hpp>
|
|
|
|
|
2021-08-12 05:57:08 +00:00
|
|
|
// Daemon command code flags/masks
|
|
|
|
enum : int {
|
|
|
|
SYNC_FLAG = (1 << 30),
|
|
|
|
DAEMON_CODE_MASK = std::numeric_limits<int>::max() >> 1
|
|
|
|
};
|
|
|
|
|
2020-05-18 12:18:49 +00:00
|
|
|
// Daemon command codes
|
2021-08-12 05:57:08 +00:00
|
|
|
enum : int {
|
|
|
|
START_DAEMON = SYNC_FLAG | 0,
|
|
|
|
CHECK_VERSION = SYNC_FLAG | 1,
|
|
|
|
CHECK_VERSION_CODE = SYNC_FLAG | 2,
|
|
|
|
GET_PATH = SYNC_FLAG | 3,
|
2021-08-26 10:09:56 +00:00
|
|
|
STOP_DAEMON = SYNC_FLAG | 4,
|
|
|
|
SUPERUSER = 5,
|
2020-12-31 06:11:24 +00:00
|
|
|
POST_FS_DATA,
|
|
|
|
LATE_START,
|
|
|
|
BOOT_COMPLETE,
|
2021-09-12 19:40:34 +00:00
|
|
|
DENYLIST,
|
2020-12-31 06:11:24 +00:00
|
|
|
SQLITE_CMD,
|
|
|
|
REMOVE_MODULES,
|
2021-08-18 10:44:32 +00:00
|
|
|
ZYGISK_REQUEST,
|
2021-10-27 08:53:16 +00:00
|
|
|
ZYGISK_PASSTHROUGH,
|
2020-12-31 06:11:24 +00:00
|
|
|
DAEMON_CODE_END,
|
2018-02-11 09:23:36 +00:00
|
|
|
};
|
2017-04-08 23:25:10 +00:00
|
|
|
|
2017-05-05 08:13:26 +00:00
|
|
|
// Return codes for daemon
|
2021-08-12 05:57:08 +00:00
|
|
|
enum : int {
|
2020-12-31 06:11:24 +00:00
|
|
|
DAEMON_ERROR = -1,
|
|
|
|
DAEMON_SUCCESS = 0,
|
|
|
|
ROOT_REQUIRED,
|
|
|
|
DAEMON_LAST
|
2018-02-11 09:23:36 +00:00
|
|
|
};
|
2017-05-05 08:13:26 +00:00
|
|
|
|
2021-09-16 12:27:34 +00:00
|
|
|
extern bool zygisk_enabled;
|
2021-10-27 08:53:16 +00:00
|
|
|
extern int app_process_32;
|
|
|
|
extern int app_process_64;
|
2020-05-18 12:18:49 +00:00
|
|
|
|
2021-01-11 10:19:10 +00:00
|
|
|
int connect_daemon(bool create = false);
|
2017-04-15 18:42:24 +00:00
|
|
|
|
2021-09-18 21:40:12 +00: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 11:24:25 +00:00
|
|
|
void clear_poll();
|
2021-09-18 21:40:12 +00:00
|
|
|
|
2021-09-20 11:42:06 +00:00
|
|
|
// Thread pool
|
|
|
|
void exec_task(std::function<void()> &&task);
|
|
|
|
|
|
|
|
// Logging
|
2021-08-21 10:52:59 +00:00
|
|
|
extern std::atomic<int> logd_fd;
|
|
|
|
int magisk_log(int prio, const char *fmt, va_list ap);
|
|
|
|
void android_logging();
|
2021-08-18 10:44:32 +00:00
|
|
|
|
2020-04-30 08:26:50 +00:00
|
|
|
// Daemon handlers
|
2017-04-15 18:42:24 +00:00
|
|
|
void post_fs_data(int client);
|
|
|
|
void late_start(int client);
|
2018-08-09 06:52:44 +00:00
|
|
|
void boot_complete(int client);
|
2021-10-20 06:46:38 +00: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);
|
2021-10-13 11:52:02 +00:00
|
|
|
std::vector<int> zygisk_module_fds(bool is_64_bit);
|
2017-04-15 11:02:07 +00:00
|
|
|
|
2021-09-12 19:40:34 +00:00
|
|
|
// Denylist
|
2021-09-16 12:27:34 +00:00
|
|
|
void initialize_denylist();
|
2021-09-12 19:40:34 +00:00
|
|
|
int disable_deny();
|
|
|
|
int denylist_cli(int argc, char **argv);
|