#ifndef __KSU_H_KERNEL_COMPAT #define __KSU_H_KERNEL_COMPAT #include #include #include // Checks for UH, KDP and RKP #ifdef SAMSUNG_UH_DRIVER_EXIST #if defined(CONFIG_UH) || defined(CONFIG_KDP) || defined(CONFIG_RKP) #error "CONFIG_UH, CONFIG_KDP and CONFIG_RKP is enabled! Please disable or remove it before compile a kernel with KernelSU!" #endif #endif extern long ksu_strncpy_from_user_nofault(char *dst, const void __user *unsafe_addr, long count); extern long ksu_strncpy_from_user_retry(char *dst, const void __user *unsafe_addr, long count); #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 10, 0) || \ defined(CONFIG_IS_HW_HISI) || \ defined(CONFIG_KSU_ALLOWLIST_WORKAROUND) extern struct key *init_session_keyring; #endif /* * ksu_copy_from_user_retry * try nofault copy first, if it fails, try with plain * paramters are the same as copy_from_user * 0 = success */ extern long ksu_copy_from_user_nofault(void *dst, const void __user *src, size_t size); static long ksu_copy_from_user_retry(void *to, const void __user *from, unsigned long count) { long ret = ksu_copy_from_user_nofault(to, from, count); if (likely(!ret)) return ret; // we faulted! fallback to slow path return copy_from_user(to, from, count); } #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 0) #define ksu_access_ok(addr, size) access_ok(addr, size) #else #define ksu_access_ok(addr, size) access_ok(VERIFY_READ, addr, size) #endif #endif