Files
qemu/hw/net
Jason Wang 9d9430b75f pcnet: fix possible buffer overflow
In pcnet_receive(), we try to assign size_ to size which converts from
size_t to integer. This will cause troubles when size_ is greater
INT_MAX, this will lead a negative value in size and it can then pass
the check of size < MIN_BUF_SIZE which may lead out of bound access
for both buf and buf1.

Fixing by converting the type of size to size_t.

CC: qemu-stable@nongnu.org
Reported-by: Daniel Shapira <daniel@twistlock.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
(cherry picked from commit b1d80d12c5)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2019-03-27 00:53:30 -05:00
..
2018-07-16 11:18:09 +10:00
2018-07-20 08:30:48 +08:00
2018-07-20 08:30:48 +08:00
2018-03-02 18:44:00 +00:00
2016-06-16 18:39:03 +02:00
2019-03-27 00:53:30 -05:00