mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
audit: drop audit_log_abend()
The audit_log_abend() is used only by the audit_core_dumps(). Thus there is no need of maintaining the audit_log_abend() as a separate function. This patch drops the audit_log_abend() and pushes its functionalities back to the audit_core_dumps(). Apart from that the "reason" field is also dropped from being logged since the reason can be deduced from the signal number. Signed-off-by: Paul Davies C <pauldaviesc@gmail.com> Acked-by: Eric Paris <eparis@redhat.com> Signed-off-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: Eric Paris <eparis@redhat.com>
This commit is contained in:
parent
40c0775e5e
commit
61c0ee8792
@ -2368,13 +2368,6 @@ static void audit_log_task(struct audit_buffer *ab)
|
|||||||
audit_log_untrustedstring(ab, current->comm);
|
audit_log_untrustedstring(ab, current->comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void audit_log_abend(struct audit_buffer *ab, char *reason, long signr)
|
|
||||||
{
|
|
||||||
audit_log_task(ab);
|
|
||||||
audit_log_format(ab, " reason=");
|
|
||||||
audit_log_string(ab, reason);
|
|
||||||
audit_log_format(ab, " sig=%ld", signr);
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* audit_core_dumps - record information about processes that end abnormally
|
* audit_core_dumps - record information about processes that end abnormally
|
||||||
* @signr: signal value
|
* @signr: signal value
|
||||||
@ -2395,7 +2388,8 @@ void audit_core_dumps(long signr)
|
|||||||
ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
|
ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_ANOM_ABEND);
|
||||||
if (unlikely(!ab))
|
if (unlikely(!ab))
|
||||||
return;
|
return;
|
||||||
audit_log_abend(ab, "memory violation", signr);
|
audit_log_task(ab);
|
||||||
|
audit_log_format(ab, " sig=%ld", signr);
|
||||||
audit_log_end(ab);
|
audit_log_end(ab);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user