Magisk/native/jni/core/core.hpp

40 lines
873 B
C++
Raw Normal View History

2021-01-11 10:19:10 +00:00
#pragma once
#include <string>
#include <vector>
extern bool RECOVERY_MODE;
extern int DAEMON_STATE;
2021-09-16 12:27:34 +00:00
// Daemon state
enum : int {
STATE_NONE,
STATE_POST_FS_DATA,
STATE_POST_FS_DATA_DONE,
STATE_LATE_START_DONE,
STATE_BOOT_COMPLETE
};
2021-01-11 10:19:10 +00:00
void unlock_blocks();
void reboot();
2021-08-12 10:26:54 +00:00
void start_log_daemon();
2021-01-11 10:19:10 +00:00
void setup_logfile(bool reset);
2021-08-21 10:52:59 +00:00
void magisk_logging();
2021-01-11 10:19:10 +00:00
// Module stuffs
void handle_modules();
void magic_mount();
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);
2021-10-13 11:52:02 +00:00
void exec_module_scripts(const char *stage, const std::vector<std::string_view> &modules);
2021-01-11 10:19:10 +00:00
void install_apk(const char *apk);
[[noreturn]] void install_module(const char *file);
2021-10-23 21:38:30 +00:00
// Zygisk companion entrypoint
[[noreturn]] void zygiskd(int socket);