mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
fix oops in __audit_signal_info()
The check for audit_signals is misplaced and the check for audit_dummy_context() is missing; as the result, if we send a signal to auditd from task with NULL ->audit_context while we have audit_signals != 0 we end up with an oops. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
9dc83afdbe
commit
175fc48425
1 changed files with 11 additions and 11 deletions
|
@ -1992,19 +1992,19 @@ int __audit_signal_info(int sig, struct task_struct *t)
|
||||||
extern uid_t audit_sig_uid;
|
extern uid_t audit_sig_uid;
|
||||||
extern u32 audit_sig_sid;
|
extern u32 audit_sig_sid;
|
||||||
|
|
||||||
if (audit_pid && t->tgid == audit_pid &&
|
if (audit_pid && t->tgid == audit_pid) {
|
||||||
(sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1)) {
|
if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) {
|
||||||
audit_sig_pid = tsk->pid;
|
audit_sig_pid = tsk->pid;
|
||||||
if (ctx)
|
if (ctx)
|
||||||
audit_sig_uid = ctx->loginuid;
|
audit_sig_uid = ctx->loginuid;
|
||||||
else
|
else
|
||||||
audit_sig_uid = tsk->uid;
|
audit_sig_uid = tsk->uid;
|
||||||
selinux_get_task_sid(tsk, &audit_sig_sid);
|
selinux_get_task_sid(tsk, &audit_sig_sid);
|
||||||
|
}
|
||||||
|
if (!audit_signals || audit_dummy_context())
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!audit_signals) /* audit_context checked in wrapper */
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
/* optimize the common case by putting first signal recipient directly
|
/* optimize the common case by putting first signal recipient directly
|
||||||
* in audit_context */
|
* in audit_context */
|
||||||
if (!ctx->target_pid) {
|
if (!ctx->target_pid) {
|
||||||
|
|
Loading…
Reference in a new issue