Magisk/native/jni/include/daemon.hpp

75 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
2017-04-14 19:23:09 +00:00
#include <pthread.h>
2019-02-16 01:45:05 +00:00
#include <string>
#include <vector>
2020-04-12 12:34:56 +00:00
#include <socket.hpp>
2020-05-18 12:18:49 +00:00
// Daemon command codes
2018-02-11 09:23:36 +00:00
enum {
2017-05-05 08:13:26 +00:00
DO_NOTHING = 0,
SUPERUSER,
2017-04-14 19:23:09 +00:00
CHECK_VERSION,
CHECK_VERSION_CODE,
2017-04-15 11:02:07 +00:00
POST_FS_DATA,
LATE_START,
2018-08-09 06:52:44 +00:00
BOOT_COMPLETE,
MAGISKHIDE,
SQLITE_CMD,
REMOVE_MODULES,
2020-04-12 12:34:56 +00:00
GET_PATH,
2018-02-11 09:23:36 +00:00
};
2017-05-05 08:13:26 +00:00
// Return codes for daemon
2018-02-11 09:23:36 +00:00
enum {
2017-05-05 08:13:26 +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
2020-05-18 12:18:49 +00:00
// Daemon state
enum {
STATE_POST_FS_DATA,
STATE_LATE_START,
STATE_BOOT_COMPLETE,
STATE_UNKNOWN
};
2020-04-30 08:26:50 +00:00
extern int SDK_INT;
extern bool RECOVERY_MODE;
extern int DAEMON_STATE;
2020-04-30 08:26:50 +00:00
#define APP_DATA_DIR (SDK_INT >= 24 ? "/data/user_de" : "/data/user")
2020-04-30 08:26:50 +00:00
// Daemon handlers
void post_fs_data(int client);
void late_start(int client);
2018-08-09 06:52:44 +00:00
void boot_complete(int client);
2020-04-30 08:26:50 +00:00
void magiskhide_handler(int client);
2020-05-18 12:36:02 +00:00
void su_daemon_handler(int client, ucred *credential);
2017-04-15 11:02:07 +00:00
2020-04-30 08:26:50 +00:00
// Misc
int connect_daemon(bool create = false);
void unlock_blocks();
2020-05-18 12:36:02 +00:00
void reboot();
2020-12-04 04:15:18 +00:00
void setup_logfile(bool reset);
2020-05-18 12:36:02 +00:00
// Module stuffs
2020-04-30 08:26:50 +00:00
void handle_modules();
void magic_mount();
void disable_modules();
void remove_modules();
2020-05-18 12:36:02 +00:00
void exec_module_scripts(const char *stage);
2019-02-16 01:45:05 +00:00
// MagiskHide
void auto_start_magiskhide();
int stop_magiskhide();
2020-04-30 08:26:50 +00:00
// Scripting
void exec_script(const char *script);
2020-05-18 12:36:02 +00:00
void exec_common_scripts(const char *stage);
void exec_module_scripts(const char *stage, const std::vector<std::string> &module_list);
2019-02-16 01:45:05 +00:00
void install_apk(const char *apk);
[[noreturn]] void install_module(const char *file);