* These commits are carefully picked from upstream (tiann/KernelSU)
- Picked range:
8c5f485f27..e5f43a3427
Signed-off-by: Faris <rissu.ntk@gmail.com>
Co-authored-by: Wang Han <416810799@qq.com>
Co-authored-by: TwinbornPlate75 <3342733415@qq.com>
Co-authored-by: KOWX712 <leecc0503@gmail.com>
Co-authored-by: Ylarod <me@ylarod.cn>
Co-authored-by: YuKongA <70465933+YuKongA@users.noreply.github.com>
Co-authored-by: backslashxx <118538522+backslashxx@users.noreply.github.com>
Co-authored-by: 5ec1cff <56485584+5ec1cff@users.noreply.github.com>
Co-authored-by: weishu <twsxtd@gmail.com>
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#ifndef __KSU_H_SUCOMPAT
|
|
#define __KSU_H_SUCOMPAT
|
|
#include <linux/sched.h>
|
|
#include <linux/version.h>
|
|
|
|
extern bool ksu_su_compat_enabled;
|
|
|
|
void ksu_sucompat_init(void);
|
|
void ksu_sucompat_exit(void);
|
|
|
|
void ksu_sucompat_enable(void);
|
|
void ksu_sucompat_disable(void);
|
|
|
|
void ksu_mark_running_process(void);
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0) && defined(KSU_KPROBE_HOOK)
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
static inline void ksu_set_task_tracepoint_flag(struct task_struct *t)
|
|
{
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 11, 0)
|
|
set_task_syscall_work(t, SYSCALL_TRACEPOINT);
|
|
#else
|
|
set_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
|
|
#endif
|
|
}
|
|
|
|
static inline void ksu_clear_task_tracepoint_flag(struct task_struct *t)
|
|
{
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 11, 0)
|
|
clear_task_syscall_work(t, SYSCALL_TRACEPOINT);
|
|
#else
|
|
clear_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
|
|
#endif
|
|
}
|
|
#else
|
|
static inline void ksu_set_task_tracepoint_flag(struct task_struct *t)
|
|
{
|
|
return;
|
|
}
|
|
|
|
static inline void ksu_clear_task_tracepoint_flag(struct task_struct *t)
|
|
{
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
#endif
|