1
0
Fork 0

audit: make ANOM_LINK obey audit_enabled and audit_dummy_context

Audit link denied events emit disjointed records when audit is disabled.
No records should be emitted when audit is disabled.

See: https://github.com/linux-audit/audit-kernel/issues/21

Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
hifive-unleashed-5.1
Richard Guy Briggs 2018-02-14 11:18:21 -05:00 committed by Paul Moore
parent 11dd266637
commit 15564ff0a1
1 changed files with 3 additions and 0 deletions

View File

@ -2315,6 +2315,9 @@ void audit_log_link_denied(const char *operation, const struct path *link)
struct audit_buffer *ab;
struct audit_names *name;
if (!audit_enabled || audit_dummy_context())
return;
name = kzalloc(sizeof(*name), GFP_NOFS);
if (!name)
return;