Don't expose module_list
This commit is contained in:
parent
c3e045e367
commit
4497e0aaca
@ -268,8 +268,7 @@ void post_fs_data(int client) {
|
|||||||
foreach_modules("disable");
|
foreach_modules("disable");
|
||||||
stop_magiskhide();
|
stop_magiskhide();
|
||||||
} else {
|
} else {
|
||||||
LOGI("* Running post-fs-data.d scripts\n");
|
exec_common_scripts("post-fs-data");
|
||||||
exec_common_script("post-fs-data");
|
|
||||||
auto_start_magiskhide();
|
auto_start_magiskhide();
|
||||||
handle_modules();
|
handle_modules();
|
||||||
}
|
}
|
||||||
@ -299,15 +298,8 @@ void late_start(int client) {
|
|||||||
if (!pfs_done || safe_mode)
|
if (!pfs_done || safe_mode)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
LOGI("* Running service.d scripts\n");
|
exec_common_scripts("service");
|
||||||
exec_common_script("service");
|
exec_module_scripts("service");
|
||||||
|
|
||||||
LOGI("* Running module service scripts\n");
|
|
||||||
exec_module_script("service", module_list);
|
|
||||||
|
|
||||||
// All boot stage done, cleanup
|
|
||||||
module_list.clear();
|
|
||||||
module_list.shrink_to_fit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void boot_complete(int client) {
|
void boot_complete(int client) {
|
||||||
|
@ -25,7 +25,7 @@ using namespace std;
|
|||||||
#define TYPE_CUSTOM (1 << 5) /* custom node type overrides all */
|
#define TYPE_CUSTOM (1 << 5) /* custom node type overrides all */
|
||||||
#define TYPE_DIR (TYPE_INTER|TYPE_SKEL|TYPE_ROOT)
|
#define TYPE_DIR (TYPE_INTER|TYPE_SKEL|TYPE_ROOT)
|
||||||
|
|
||||||
vector<string> module_list;
|
static vector<string> module_list;
|
||||||
|
|
||||||
class node_entry;
|
class node_entry;
|
||||||
class dir_node;
|
class dir_node;
|
||||||
@ -671,10 +671,7 @@ static void collect_modules() {
|
|||||||
void handle_modules() {
|
void handle_modules() {
|
||||||
prepare_modules();
|
prepare_modules();
|
||||||
collect_modules();
|
collect_modules();
|
||||||
|
exec_module_scripts("post-fs-data");
|
||||||
// Execute module scripts
|
|
||||||
LOGI("* Running module post-fs-data scripts\n");
|
|
||||||
exec_module_script("post-fs-data", module_list);
|
|
||||||
|
|
||||||
// Recollect modules (module scripts could remove itself)
|
// Recollect modules (module scripts could remove itself)
|
||||||
module_list.clear();
|
module_list.clear();
|
||||||
@ -699,3 +696,7 @@ void foreach_modules(const char *name) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void exec_module_scripts(const char *stage) {
|
||||||
|
exec_module_scripts(stage, module_list);
|
||||||
|
}
|
||||||
|
@ -24,7 +24,8 @@ void exec_script(const char *script) {
|
|||||||
exec_command_sync(exec, BBEXEC_CMD, script);
|
exec_command_sync(exec, BBEXEC_CMD, script);
|
||||||
}
|
}
|
||||||
|
|
||||||
void exec_common_script(const char *stage) {
|
void exec_common_scripts(const char *stage) {
|
||||||
|
LOGI("* Running %s.d scripts\n", stage);
|
||||||
char path[4096];
|
char path[4096];
|
||||||
char *name = path + sprintf(path, SECURE_DIR "/%s.d", stage);
|
char *name = path + sprintf(path, SECURE_DIR "/%s.d", stage);
|
||||||
auto dir = xopen_dir(path);
|
auto dir = xopen_dir(path);
|
||||||
@ -53,7 +54,8 @@ void exec_common_script(const char *stage) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void exec_module_script(const char *stage, const vector<string> &module_list) {
|
void exec_module_scripts(const char *stage, const vector<string> &module_list) {
|
||||||
|
LOGI("* Running module %s scripts\n", stage);
|
||||||
char path[4096];
|
char path[4096];
|
||||||
bool pfs = stage == "post-fs-data"sv;
|
bool pfs = stage == "post-fs-data"sv;
|
||||||
for (auto &m : module_list) {
|
for (auto &m : module_list) {
|
||||||
|
@ -42,22 +42,23 @@ extern bool RECOVERY_MODE;
|
|||||||
extern int DAEMON_STATE;
|
extern int DAEMON_STATE;
|
||||||
#define APP_DATA_DIR (SDK_INT >= 24 ? "/data/user_de" : "/data/user")
|
#define APP_DATA_DIR (SDK_INT >= 24 ? "/data/user_de" : "/data/user")
|
||||||
|
|
||||||
extern std::vector<std::string> module_list;
|
|
||||||
|
|
||||||
// Daemon handlers
|
// Daemon handlers
|
||||||
void post_fs_data(int client);
|
void post_fs_data(int client);
|
||||||
void late_start(int client);
|
void late_start(int client);
|
||||||
void boot_complete(int client);
|
void boot_complete(int client);
|
||||||
void magiskhide_handler(int client);
|
void magiskhide_handler(int client);
|
||||||
void su_daemon_handler(int client, struct ucred *credential);
|
void su_daemon_handler(int client, ucred *credential);
|
||||||
void foreach_modules(const char *name);
|
|
||||||
|
|
||||||
// Misc
|
// Misc
|
||||||
int connect_daemon(bool create = false);
|
int connect_daemon(bool create = false);
|
||||||
void unlock_blocks();
|
void unlock_blocks();
|
||||||
|
void reboot();
|
||||||
|
|
||||||
|
// Module stuffs
|
||||||
void handle_modules();
|
void handle_modules();
|
||||||
void magic_mount();
|
void magic_mount();
|
||||||
void reboot();
|
void foreach_modules(const char *name);
|
||||||
|
void exec_module_scripts(const char *stage);
|
||||||
|
|
||||||
// MagiskHide
|
// MagiskHide
|
||||||
void auto_start_magiskhide();
|
void auto_start_magiskhide();
|
||||||
@ -65,6 +66,6 @@ int stop_magiskhide();
|
|||||||
|
|
||||||
// Scripting
|
// Scripting
|
||||||
void exec_script(const char *script);
|
void exec_script(const char *script);
|
||||||
void exec_common_script(const char *stage);
|
void exec_common_scripts(const char *stage);
|
||||||
void exec_module_script(const char *stage, const std::vector<std::string> &module_list);
|
void exec_module_scripts(const char *stage, const std::vector<std::string> &module_list);
|
||||||
void install_apk(const char *apk);
|
void install_apk(const char *apk);
|
||||||
|
Loading…
Reference in New Issue
Block a user