| Server IP : 54.233.248.239 / Your IP : 172.28.20.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/6.5.0-1014-aws/build/include/uapi/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Linus Security Modules (LSM) - User space API * * Copyright (C) 2022 Casey Schaufler <casey@schaufler-ca.com> * Copyright (C) Intel Corporation */ #ifndef _UAPI_LINUX_LSM_H #define _UAPI_LINUX_LSM_H /* * ID values to identify security modules. * A system may use more than one security module. * * LSM_ID_XXX values 32 and below are reserved for future use */ #define LSM_ID_INVALID -1 #define LSM_ID_SELINUX 33 #define LSM_ID_SMACK 34 #define LSM_ID_TOMOYO 35 #define LSM_ID_IMA 36 #define LSM_ID_APPARMOR 37 #define LSM_ID_YAMA 38 #define LSM_ID_LOADPIN 39 #define LSM_ID_SAFESETID 40 #define LSM_ID_LOCKDOWN 41 #define LSM_ID_BPF 42 #define LSM_ID_LANDLOCK 43 #define LSM_ID_CAPABILITY 44 /* * LSM_ATTR_XXX values identify the /proc/.../attr entry that the * context represents. Not all security modules provide all of these * values. Some security modules provide none of them. */ /* clang-format off */ #define LSM_ATTR_CURRENT (1UL << 0) #define LSM_ATTR_EXEC (1UL << 1) #define LSM_ATTR_FSCREATE (1UL << 2) #define LSM_ATTR_KEYCREATE (1UL << 3) #define LSM_ATTR_PREV (1UL << 4) #define LSM_ATTR_SOCKCREATE (1UL << 5) /* clang-format on */ #endif /* _UAPI_LINUX_LSM_H */