2019-03-30 06:49:29 -04:00
|
|
|
#pragma once
|
2017-04-15 03:23:09 +08:00
|
|
|
|
2017-04-16 02:42:24 +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>
|
2017-04-16 02:42:24 +08:00
|
|
|
|
2020-04-12 05:34:56 -07:00
|
|
|
#include <socket.hpp>
|
|
|
|
|
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)
|
|
|
|
|
2020-05-18 05:18:49 -07:00
|
|
|
// Daemon command codes
|
2022-03-01 02:13:18 -08:00
|
|
|
namespace MainRequest {
|
|
|
|
enum : int {
|
2022-02-12 23:43:36 +08:00
|
|
|
START_DAEMON,
|
|
|
|
CHECK_VERSION,
|
|
|
|
CHECK_VERSION_CODE,
|
|
|
|
GET_PATH,
|
|
|
|
STOP_DAEMON,
|
|
|
|
|
|
|
|
_SYNC_BARRIER_,
|
|
|
|
|
|
|
|
SUPERUSER,
|
2020-12-30 22:11:24 -08:00
|
|
|
POST_FS_DATA,
|
|
|
|
LATE_START,
|
|
|
|
BOOT_COMPLETE,
|
2022-05-28 22:39:44 -07:00
|
|
|
ZYGOTE_RESTART,
|
2021-09-12 12:40:34 -07:00
|
|
|
DENYLIST,
|
2020-12-30 22:11:24 -08:00
|
|
|
SQLITE_CMD,
|
|
|
|
REMOVE_MODULES,
|
2022-03-01 02:13:18 -08:00
|
|
|
ZYGISK,
|
2022-03-01 02:58:39 -08:00
|
|
|
ZYGISK_PASSTHROUGH,
|
2022-02-12 23:43:36 +08:00
|
|
|
END,
|
2018-02-11 17:23:36 +08:00
|
|
|
};
|
2022-03-01 02:13:18 -08:00
|
|
|
}
|
2017-04-09 07:25:10 +08:00
|
|
|
|
2017-05-05 16:13:26 +08:00
|
|
|
// Return codes for daemon
|
2022-03-01 02:13:18 -08:00
|
|
|
namespace MainResponse {
|
|
|
|
enum : 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
|
|
|
};
|
2022-03-01 02:13:18 -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;
|
2021-10-27 01:53:16 -07:00
|
|
|
extern int app_process_32;
|
|
|
|
extern int app_process_64;
|
2022-01-14 03:10:02 -08:00
|
|
|
extern std::vector<module_info> *module_list;
|
2020-05-18 05:18:49 -07:00
|
|
|
|
2022-03-01 02:13:18 -08:00
|
|
|
int connect_daemon(int req, bool create = false);
|
2017-04-16 02:42:24 +08:00
|
|
|
|
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 exec_task(std::function<void()> &&task);
|
|
|
|
|
|
|
|
// Logging
|
2021-08-21 03:52:59 -07:00
|
|
|
extern std::atomic<int> logd_fd;
|
|
|
|
int magisk_log(int prio, const char *fmt, va_list ap);
|
|
|
|
void android_logging();
|
2021-08-18 03:44:32 -07:00
|
|
|
|
2020-04-30 01:26:50 -07:00
|
|
|
// Daemon handlers
|
2017-04-16 02:42:24 +08:00
|
|
|
void post_fs_data(int client);
|
|
|
|
void late_start(int client);
|
2018-08-09 14:52:44 +08:00
|
|
|
void boot_complete(int client);
|
2022-05-28 22:39:44 -07:00
|
|
|
void zygote_restart(int client);
|
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
|
|
|
|
2021-09-12 12:40:34 -07:00
|
|
|
// Denylist
|
2022-05-29 23:31:57 -07:00
|
|
|
extern std::atomic_flag skip_pkg_rescan;
|
2021-09-16 05:27:34 -07:00
|
|
|
void initialize_denylist();
|
2021-09-12 12:40:34 -07:00
|
|
|
int denylist_cli(int argc, char **argv);
|