mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
tools: hv: Netlink source address validation allows DoS
commit 95a69adab9
upstream.
The source code without this patch caused hypervkvpd to exit when it processed
a spoofed Netlink packet which has been sent from an untrusted local user.
Now Netlink messages with a non-zero nl_pid source address are ignored
and a warning is printed into the syslog.
Signed-off-by: Tomas Hozza <thozza@redhat.com>
Acked-by: K. Y. Srinivasan <kys@microsoft.com>
Cc: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
66de393d66
commit
5fb9149b0e
1 changed files with 7 additions and 1 deletions
|
@ -727,13 +727,19 @@ int main(void)
|
||||||
len = recvfrom(fd, kvp_recv_buffer, sizeof(kvp_recv_buffer), 0,
|
len = recvfrom(fd, kvp_recv_buffer, sizeof(kvp_recv_buffer), 0,
|
||||||
addr_p, &addr_l);
|
addr_p, &addr_l);
|
||||||
|
|
||||||
if (len < 0 || addr.nl_pid) {
|
if (len < 0) {
|
||||||
syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
|
syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
|
||||||
addr.nl_pid, errno, strerror(errno));
|
addr.nl_pid, errno, strerror(errno));
|
||||||
close(fd);
|
close(fd);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (addr.nl_pid) {
|
||||||
|
syslog(LOG_WARNING, "Received packet from untrusted pid:%u",
|
||||||
|
addr.nl_pid);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
incoming_msg = (struct nlmsghdr *)kvp_recv_buffer;
|
incoming_msg = (struct nlmsghdr *)kvp_recv_buffer;
|
||||||
incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
|
incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
|
||||||
hv_msg = (struct hv_kvp_msg *)incoming_cn_msg->data;
|
hv_msg = (struct hv_kvp_msg *)incoming_cn_msg->data;
|
||||||
|
|
Loading…
Reference in a new issue