* clean unused header * on_module_mounted in ksud.c * refact: use app_profile * unified hook manager * add zygote to hook target * move reboot hook to supercall.c * refactor: kernel_umount setuid_hook * update mark rules, add init mark tracker * remove reboot from check_syscall_fastpath * update setuid_hook, remove uneeded sucompat enable * log freely * kernel: Migrate kprobe hook configuration items * kernel: fix build * cli: add ksud debug mark * Fix rustfmt warning --------- Co-authored-by: Ylarod <me@ylarod.cn> Co-authored-by: Wang Han <416810799@qq.com> Co-authored-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com>
25 lines
466 B
C
25 lines
466 B
C
#ifndef __KSU_H_KSUD
|
|
#define __KSU_H_KSUD
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define KSUD_PATH "/data/adb/ksud"
|
|
|
|
void ksu_ksud_init();
|
|
void ksu_ksud_exit();
|
|
|
|
void on_post_fs_data(void);
|
|
void on_module_mounted(void);
|
|
void on_boot_completed(void);
|
|
|
|
bool ksu_is_safe_mode(void);
|
|
|
|
extern u32 ksu_file_sid;
|
|
extern bool ksu_module_mounted;
|
|
extern bool ksu_boot_completed;
|
|
|
|
extern bool ksu_execveat_hook __read_mostly;
|
|
extern int ksu_handle_pre_ksud(const char *filename);
|
|
|
|
#endif
|