diff options
Diffstat (limited to 'lib/audit.c')
| -rw-r--r-- | lib/audit.c | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/audit.c b/lib/audit.c index 5004bff928a7..738bda22dd39 100644 --- a/lib/audit.c +++ b/lib/audit.c @@ -45,23 +45,27 @@ int audit_classify_syscall(int abi, unsigned syscall)  	switch(syscall) {  #ifdef __NR_open  	case __NR_open: -		return 2; +		return AUDITSC_OPEN;  #endif  #ifdef __NR_openat  	case __NR_openat: -		return 3; +		return AUDITSC_OPENAT;  #endif  #ifdef __NR_socketcall  	case __NR_socketcall: -		return 4; +		return AUDITSC_SOCKETCALL;  #endif  #ifdef __NR_execveat  	case __NR_execveat:  #endif  	case __NR_execve: -		return 5; +		return AUDITSC_EXECVE; +#ifdef __NR_openat2 +	case __NR_openat2: +		return AUDITSC_OPENAT2; +#endif  	default: -		return 0; +		return AUDITSC_NATIVE;  	}  }  |