Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e66ec3c authored by Steve Grubb's avatar Steve Grubb Committed by Paul Moore
Browse files

audit: Add new syscalls to the perm=w filter



The audit subsystem allows selecting audit events based on watches for
a particular behavior like writing to a file. A lot of syscalls have
been added without updating the list. This patch adds 2 syscalls to the
write filters: fallocate and renameat2.

Signed-off-by: default avatarSteve Grubb <sgrubb@redhat.com>
Reviewed-by: default avatarRichard Guy Briggs <rgb@redhat.com>
[PM: cleaned up some whitespace errors]
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent 5d842a5b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -30,3 +30,6 @@ __NR_renameat,
__NR_linkat,
__NR_symlinkat,
#endif
#ifdef __NR_renameat2
__NR_renameat2,
#endif
+3 −0
Original line number Diff line number Diff line
@@ -19,3 +19,6 @@ __NR_ftruncate64,
#ifdef __NR_bind
__NR_bind,		/* bind can affect fs object only in one way... */
#endif
#ifdef __NR_fallocate
__NR_fallocate,
#endif