|
|
@ -20,17 +20,14 @@ bool dropcaps(void); |
|
|
|
|
|
|
|
#if defined(__aarch64__) |
|
|
|
|
|
|
|
# define REG_SYSCALL regs.regs[8] |
|
|
|
# define ARCH_NR AUDIT_ARCH_AARCH64 |
|
|
|
|
|
|
|
#elif defined(__amd64__) |
|
|
|
|
|
|
|
# define REG_SYSCALL REG_RAX |
|
|
|
# define ARCH_NR AUDIT_ARCH_X86_64 |
|
|
|
|
|
|
|
#elif defined(__arm__) && (defined(__ARM_EABI__) || defined(__thumb__)) |
|
|
|
|
|
|
|
# define REG_SYSCALL regs.uregs[7] |
|
|
|
# if __BYTE_ORDER == __LITTLE_ENDIAN |
|
|
|
# define ARCH_NR AUDIT_ARCH_ARM |
|
|
|
# else |
|
|
@ -39,13 +36,10 @@ bool dropcaps(void); |
|
|
|
|
|
|
|
#elif defined(__i386__) |
|
|
|
|
|
|
|
# define REG_SYSCALL REG_EAX |
|
|
|
# define ARCH_NR AUDIT_ARCH_I386 |
|
|
|
|
|
|
|
#elif defined(__mips__) |
|
|
|
|
|
|
|
# define REG_SYSCALL regs[2] |
|
|
|
|
|
|
|
#if _MIPS_SIM == _MIPS_SIM_ABI32 |
|
|
|
# if __BYTE_ORDER == __LITTLE_ENDIAN |
|
|
|
# define ARCH_NR AUDIT_ARCH_MIPSEL |
|
|
@ -64,8 +58,6 @@ bool dropcaps(void); |
|
|
|
|
|
|
|
#elif defined(__PPC64__) |
|
|
|
|
|
|
|
# define REG_SYSCALL regs.gpr[0] |
|
|
|
|
|
|
|
# if __BYTE_ORDER == __LITTLE_ENDIAN |
|
|
|
# define ARCH_NR AUDIT_ARCH_PPC64LE |
|
|
|
# else |
|
|
@ -74,9 +66,12 @@ bool dropcaps(void); |
|
|
|
|
|
|
|
#elif defined(__PPC__) |
|
|
|
|
|
|
|
# define REG_SYSCALL regs.gpr[0] |
|
|
|
# define ARCH_NR AUDIT_ARCH_PPC |
|
|
|
|
|
|
|
#elif __riscv && __riscv_xlen == 64 |
|
|
|
|
|
|
|
# define ARCH_NR AUDIT_ARCH_RISCV64 |
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
# error "Platform does not support seccomp filter yet" |
|
|
|