2021-01-11 11:19:10 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
extern bool RECOVERY_MODE;
|
|
|
|
extern int DAEMON_STATE;
|
2021-09-16 14:27:34 +02: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 11:19:10 +01:00
|
|
|
|
|
|
|
void unlock_blocks();
|
|
|
|
void reboot();
|
2021-08-12 12:26:54 +02:00
|
|
|
void start_log_daemon();
|
2021-01-11 11:19:10 +01:00
|
|
|
void setup_logfile(bool reset);
|
2021-08-21 12:52:59 +02:00
|
|
|
void magisk_logging();
|
2021-01-11 11:19:10 +01: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 13:52:02 +02:00
|
|
|
void exec_module_scripts(const char *stage, const std::vector<std::string_view> &modules);
|
2021-01-11 11:19:10 +01:00
|
|
|
void install_apk(const char *apk);
|
|
|
|
[[noreturn]] void install_module(const char *file);
|