aboutsummaryrefslogtreecommitdiff
path: root/include
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-20 14:22:56 -0600
commite8bcb6476dbab93bc271a9e75348d5da72c7cbea (patch)
tree62d93f2bafad0084fc299dff37002c0f482c9c12 /include
parent16afc9529fe003c6797a1c97eae83739fc0a7ea0 (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>
Diffstat (limited to 'include')
-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)