aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Guy Briggs <rgb@redhat.com>2018-04-11 08:46:52 -0400
committerPaul Moore <paul@paul-moore.com>2018-04-20 14:57:30 -0400
commitd96f92f4aae1132482ce0a584c4bc3ce32c796ea (patch)
tree575cc7cd55d1a3a2299c54df1ed955f2e20ed23a
parent60cc43fc888428bb2f18f08997432d426a243338 (diff)
audit: add syscall information to FEATURE_CHANGE records
Tie syscall information to FEATURE_CHANGE calls since it is a result of user action. See: https://github.com/linux-audit/audit-kernel/issues/80 Signed-off-by: Richard Guy Briggs <rgb@redhat.com> [PM: 80-char fixes] Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r--kernel/audit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 670665c6e2a6..e9f9a90790e5 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -1099,8 +1099,8 @@ static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature
1099 1099
1100 if (audit_enabled == AUDIT_OFF) 1100 if (audit_enabled == AUDIT_OFF)
1101 return; 1101 return;
1102 1102 ab = audit_log_start(current->audit_context,
1103 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_FEATURE_CHANGE); 1103 GFP_KERNEL, AUDIT_FEATURE_CHANGE);
1104 if (!ab) 1104 if (!ab)
1105 return; 1105 return;
1106 audit_log_task_info(ab, current); 1106 audit_log_task_info(ab, current);