diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2009-12-09 09:19:35 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-30 08:45:42 -0400 |
| commit | 207032051a5ed38df332729ba42e98e9a1e60434 (patch) | |
| tree | 632311aa731ce8cda33888b54816837f2d1529bd | |
| parent | 3c80fe4ac9cfb13b1bfa4edf1544e8b656716694 (diff) | |
audit: Do not send uninitialized data for AUDIT_TTY_GET
audit_receive_msg() sends uninitialized data for AUDIT_TTY_GET when
the task was not found.
Send reply only when task was found.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Eric Paris <eparis@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
| -rw-r--r-- | kernel/audit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 8429afea37bf..57f4038694d1 100644 --- a/kernel/audit.c +++ b/kernel/audit.c | |||
| @@ -884,8 +884,10 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh) | |||
| 884 | spin_unlock_irq(&tsk->sighand->siglock); | 884 | spin_unlock_irq(&tsk->sighand->siglock); |
| 885 | } | 885 | } |
| 886 | read_unlock(&tasklist_lock); | 886 | read_unlock(&tasklist_lock); |
| 887 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_TTY_GET, 0, 0, | 887 | |
| 888 | &s, sizeof(s)); | 888 | if (!err) |
| 889 | audit_send_reply(NETLINK_CB(skb).pid, seq, | ||
| 890 | AUDIT_TTY_GET, 0, 0, &s, sizeof(s)); | ||
| 889 | break; | 891 | break; |
| 890 | } | 892 | } |
| 891 | case AUDIT_TTY_SET: { | 893 | case AUDIT_TTY_SET: { |
