* Cherry-picked range: (kernel)
ebea31daa8..6915b62b9a
* Also merged unmerged pr:
https://github.com/tiann/KernelSU/pull/ 2909
Co-authored-by: Ylarod <me@ylarod.cn>
Co-authored-by: 5ec1cff <56485584+5ec1cff@users.noreply.github.com>
Co-authored-by: backslashxx <118538522+backslashxx@users.noreply.github.com>
Co-authored-by: u9521 <63995396+u9521@users.noreply.github.com>
Co-authored-by: Wang Han <416810799@qq.com>
131 lines
3.1 KiB
C
131 lines
3.1 KiB
C
#include <linux/export.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/printk.h>
|
|
#include <linux/kobject.h>
|
|
#include <linux/module.h>
|
|
#include <linux/workqueue.h>
|
|
#include <generated/utsrelease.h>
|
|
#include <generated/compile.h>
|
|
#include <linux/version.h> /* LINUX_VERSION_CODE, KERNEL_VERSION macros */
|
|
|
|
#include "allowlist.h"
|
|
#include "arch.h"
|
|
#include "feature.h"
|
|
#include "klog.h" // IWYU pragma: keep
|
|
#include "ksu.h"
|
|
#include "throne_tracker.h"
|
|
#include "syscall_hook_manager.h"
|
|
#include "ksud.h"
|
|
#include "supercalls.h"
|
|
|
|
#include "throne_comm.h"
|
|
#include "dynamic_manager.h"
|
|
|
|
static struct workqueue_struct *ksu_workqueue;
|
|
|
|
bool ksu_queue_work(struct work_struct *work)
|
|
{
|
|
return queue_work(ksu_workqueue, work);
|
|
}
|
|
|
|
void sukisu_custom_config_init(void)
|
|
{
|
|
}
|
|
|
|
void sukisu_custom_config_exit(void)
|
|
{
|
|
ksu_uid_exit();
|
|
ksu_throne_comm_exit();
|
|
ksu_dynamic_manager_exit();
|
|
}
|
|
|
|
extern int ksu_handle_execveat_sucompat(int *fd, struct filename **filename_ptr,
|
|
void *argv, void *envp, int *flags);
|
|
extern int ksu_handle_execveat_ksud(int *fd, struct filename **filename_ptr,
|
|
void *argv, void *envp, int *flags);
|
|
int ksu_handle_execveat(int *fd, struct filename **filename_ptr, void *argv,
|
|
void *envp, int *flags)
|
|
{
|
|
ksu_handle_execveat_ksud(fd, filename_ptr, argv, envp, flags);
|
|
return ksu_handle_execveat_sucompat(fd, filename_ptr, argv, envp,
|
|
flags);
|
|
}
|
|
|
|
int __init kernelsu_init(void)
|
|
{
|
|
#ifndef DDK_ENV
|
|
pr_info("Initialized on: %s (%s) with driver version: %u\n",
|
|
UTS_RELEASE, UTS_MACHINE, KSU_VERSION);
|
|
#endif
|
|
|
|
#ifdef CONFIG_KSU_DEBUG
|
|
pr_alert("*************************************************************");
|
|
pr_alert("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **");
|
|
pr_alert("** **");
|
|
pr_alert("** You are running KernelSU in DEBUG mode **");
|
|
pr_alert("** **");
|
|
pr_alert("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **");
|
|
pr_alert("*************************************************************");
|
|
#endif
|
|
|
|
ksu_feature_init();
|
|
|
|
ksu_supercalls_init();
|
|
|
|
sukisu_custom_config_init();
|
|
|
|
ksu_syscall_hook_manager_init();
|
|
|
|
ksu_workqueue = alloc_ordered_workqueue("kernelsu_work_queue", 0);
|
|
|
|
ksu_allowlist_init();
|
|
|
|
ksu_throne_tracker_init();
|
|
|
|
ksu_ksud_init();
|
|
|
|
#ifdef MODULE
|
|
#ifndef CONFIG_KSU_DEBUG
|
|
kobject_del(&THIS_MODULE->mkobj.kobj);
|
|
#endif
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
extern void ksu_observer_exit(void);
|
|
void kernelsu_exit(void)
|
|
{
|
|
ksu_allowlist_exit();
|
|
|
|
ksu_throne_tracker_exit();
|
|
|
|
ksu_observer_exit();
|
|
|
|
destroy_workqueue(ksu_workqueue);
|
|
|
|
ksu_ksud_exit();
|
|
|
|
ksu_syscall_hook_manager_exit();
|
|
|
|
sukisu_custom_config_exit();
|
|
|
|
ksu_supercalls_exit();
|
|
|
|
ksu_feature_exit();
|
|
}
|
|
|
|
module_init(kernelsu_init);
|
|
module_exit(kernelsu_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("weishu");
|
|
MODULE_DESCRIPTION("Android KernelSU");
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 0)
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 13, 0)
|
|
MODULE_IMPORT_NS("VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver");
|
|
#else
|
|
MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);
|
|
#endif
|
|
#endif
|