* The coding format is too messy, reformat to improve readability and get closer to Linux kernel coding style. * While at it, update .clang-format file to linux-mainline state.
27 lines
443 B
C
27 lines
443 B
C
#ifndef __KSU_H_SELINUX
|
|
#define __KSU_H_SELINUX
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/version.h>
|
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)) || \
|
|
defined(KSU_COMPAT_HAS_SELINUX_STATE)
|
|
#define KSU_COMPAT_USE_SELINUX_STATE
|
|
#endif
|
|
|
|
void setup_selinux(const char *);
|
|
|
|
void setenforce(bool);
|
|
|
|
bool getenforce(void);
|
|
|
|
bool is_ksu_domain();
|
|
|
|
bool is_zygote(void *cred);
|
|
|
|
void apply_kernelsu_rules();
|
|
|
|
u32 ksu_get_devpts_sid();
|
|
|
|
#endif
|