3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 15:22:18 +00:00
Brooklyn/arch/powerpc/kernel/compat_audit.c

48 lines
843 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#undef __powerpc64__
2022-04-02 12:32:57 +00:00
#include <linux/audit_arch.h>
#include <asm/unistd.h>
unsigned ppc32_dir_class[] = {
#include <asm-generic/audit_dir_write.h>
~0U
};
unsigned ppc32_chattr_class[] = {
#include <asm-generic/audit_change_attr.h>
~0U
};
unsigned ppc32_write_class[] = {
#include <asm-generic/audit_write.h>
~0U
};
unsigned ppc32_read_class[] = {
#include <asm-generic/audit_read.h>
~0U
};
unsigned ppc32_signal_class[] = {
#include <asm-generic/audit_signal.h>
~0U
};
int ppc32_classify_syscall(unsigned syscall)
{
switch(syscall) {
case __NR_open:
2022-04-02 12:32:57 +00:00
return AUDITSC_OPEN;
case __NR_openat:
2022-04-02 12:32:57 +00:00
return AUDITSC_OPENAT;
case __NR_socketcall:
2022-04-02 12:32:57 +00:00
return AUDITSC_SOCKETCALL;
case __NR_execve:
2022-04-02 12:32:57 +00:00
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
2022-04-02 12:32:57 +00:00
return AUDITSC_COMPAT;
}
}