1AUDIT_SYSCALL_ENTRY(9) Audit Interfaces AUDIT_SYSCALL_ENTRY(9)
2
3
4
6 audit_syscall_entry - fill in an audit record at syscall entry
7
9 void audit_syscall_entry(int arch, int major, unsigned long a1,
10 unsigned long a2, unsigned long a3,
11 unsigned long a4);
12
14 arch
15 architecture type
16
17 major
18 major syscall type (function)
19
20 a1
21 additional syscall register 1
22
23 a2
24 additional syscall register 2
25
26 a3
27 additional syscall register 3
28
29 a4
30 additional syscall register 4
31
33 Fill in audit context at syscall entry. This only happens if the audit
34 context was created when the task was created and the state or filters
35 demand the audit context be built. If the state from the per-task
36 filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT, then the
37 record will be written at syscall exit time (otherwise, it will only be
38 written if another part of the kernel requests that it be written).
39
41Kernel Hackers Manual 2.6. June 2019 AUDIT_SYSCALL_ENTRY(9)