aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2012-09-11 00:12:29 -0700
committerEric W. Biederman <ebiederm@xmission.com>2012-09-17 18:06:14 -0700
commit35ce9888ad2a60c95849551e7345bd547714bbff (patch)
treefe2b6e151fc9a735faebe05a57506295becfddf2 /kernel/audit.c
parentaudit: Simply AUDIT_TTY_SET and AUDIT_TTY_GET (diff)
downloadlinux-dev-35ce9888ad2a60c95849551e7345bd547714bbff.tar.xz
linux-dev-35ce9888ad2a60c95849551e7345bd547714bbff.zip
audit: Properly set the origin port id of audit messages.
For user generated audit messages set the portid field in the netlink header to the netlink port where the user generated audit message came from. Reporting the process id in a port id field was just nonsense. Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Eric Paris <eparis@redhat.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 2a8728fdefc4..9dd4d0936969 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -751,7 +751,7 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
size--;
audit_log_n_untrustedstring(ab, data, size);
}
- audit_set_pid(ab, pid);
+ audit_set_pid(ab, NETLINK_CB(skb).pid);
audit_log_end(ab);
}
break;