From: David Woodhouse Date: Wed, 13 Jul 2005 21:39:34 +0000 (+0100) Subject: AUDIT: Exempt the whole auditd thread-group from auditing X-Git-Tag: v2.6.14-rc2~49^2~15 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=582edda586120004d0fb67113115fa442a0a1571;p=linux-2.6-omap-h63xx.git AUDIT: Exempt the whole auditd thread-group from auditing and not just the one thread. Signed-off-by: David Woodhouse --- diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 0fdd90194ec..86d91fe2d93 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -516,7 +516,7 @@ static enum audit_state audit_filter_syscall(struct task_struct *tsk, int word = AUDIT_WORD(ctx->major); int bit = AUDIT_BIT(ctx->major); - if (audit_pid && tsk->pid == audit_pid) + if (audit_pid && tsk->tgid == audit_tgid) return AUDIT_DISABLED; rcu_read_lock(); @@ -1255,7 +1255,7 @@ void audit_signal_info(int sig, struct task_struct *t) extern pid_t audit_sig_pid; extern uid_t audit_sig_uid; - if (unlikely(audit_pid && t->pid == audit_pid)) { + if (unlikely(audit_pid && t->tgid == audit_pid)) { if (sig == SIGTERM || sig == SIGHUP) { struct audit_context *ctx = current->audit_context; audit_sig_pid = current->pid;