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-20 20:25:59 -0600
commitfac46e90902bcae1671bb8103a904164b6f37a2c (patch)
tree62d93f2bafad0084fc299dff37002c0f482c9c12
parent02357c01061459915b7fabd874ee922d145ec379 (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)