Contributors: 4
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Richard Guy Briggs |
32 |
45.71% |
2 |
40.00% |
| AKASHI Takahiro |
29 |
41.43% |
1 |
20.00% |
| Al Viro |
8 |
11.43% |
1 |
20.00% |
| Thomas Gleixner |
1 |
1.43% |
1 |
20.00% |
| Total |
70 |
|
5 |
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* audit_arch.h -- Arch layer specific support for audit
*
* Copyright 2021 Red Hat Inc., Durham, North Carolina.
* All Rights Reserved.
*
* Author: Richard Guy Briggs <rgb@redhat.com>
*/
#ifndef _LINUX_AUDIT_ARCH_H_
#define _LINUX_AUDIT_ARCH_H_
enum auditsc_class_t {
AUDITSC_NATIVE = 0,
AUDITSC_COMPAT,
AUDITSC_OPEN,
AUDITSC_OPENAT,
AUDITSC_SOCKETCALL,
AUDITSC_EXECVE,
AUDITSC_OPENAT2,
AUDITSC_NVALS /* count */
};
extern int audit_classify_compat_syscall(int abi, unsigned syscall);
/* only for compat system calls */
extern unsigned compat_write_class[];
extern unsigned compat_read_class[];
extern unsigned compat_dir_class[];
extern unsigned compat_chattr_class[];
extern unsigned compat_signal_class[];
#endif