aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKees Cook <kees@ubuntu.com>2012-03-30 13:19:08 -0700
committerJohn Rigby <john.rigby@linaro.org>2012-06-25 15:02:23 -0600
commitf6ba891213d04524b719ae654648da201665646c (patch)
treecf2082e10bb8331e8da516d63c8bd3ebb48b0fc6
parent45d31879e8ef359403cdbf871102e8fb3c274d92 (diff)
UBUNTU: SAUCE: SECCOMP: audit: always report seccomp violations
Violations of seccomp filters should always be reported, regardless of audit context. This the minimal change version of what has been proposed upstream: https://lkml.org/lkml/2012/3/23/332 Signed-off-by: Kees Cook <kees@ubuntu.com> Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
-rw-r--r--include/linux/audit.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h
index 22f292a917a..4a2f0d6acfb 100644
--- a/include/linux/audit.h
+++ b/include/linux/audit.h
@@ -510,8 +510,7 @@ void audit_core_dumps(long signr);
static inline void audit_seccomp(unsigned long syscall, long signr, int code)
{
- if (unlikely(!audit_dummy_context()))
- __audit_seccomp(syscall, signr, code);
+ __audit_seccomp(syscall, signr, code);
}
static inline void audit_ptrace(struct task_struct *t)