]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/extra/CVE-2016-7909-net-pcnet-check-rx-tx-descriptor-ring-length.patch
update to 2.7
[pve-qemu-kvm.git] / debian / patches / extra / CVE-2016-7909-net-pcnet-check-rx-tx-descriptor-ring-length.patch
CommitLineData
68a30562 1From ed825b783750cbe88aa67bbe83cf662082828efa Mon Sep 17 00:00:00 2001
d37e80a3
WB
2From: Prasad J Pandit <pjp@fedoraproject.org>
3Date: Fri, 30 Sep 2016 00:27:33 +0530
68a30562 4Subject: [PATCH 7/7] net: pcnet: check rx/tx descriptor ring length
d37e80a3
WB
5
6The AMD PC-Net II emulator has set of control and status(CSR)
7registers. Of these, CSR76 and CSR78 hold receive and transmit
8descriptor ring length respectively. This ring length could range
9from 1 to 65535. Setting ring length to zero leads to an infinite
10loop in pcnet_rdra_addr. Add check to avoid it.
11
12Reported-by: Li Qiang <liqiang6-s@360.cn>
13Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
14---
15 hw/net/pcnet.c | 3 +++
16 1 file changed, 3 insertions(+)
17
18diff --git a/hw/net/pcnet.c b/hw/net/pcnet.c
19index 198a01f..3078de8 100644
20--- a/hw/net/pcnet.c
21+++ b/hw/net/pcnet.c
22@@ -1429,8 +1429,11 @@ static void pcnet_csr_writew(PCNetState *s, uint32_t rap, uint32_t new_value)
23 case 47: /* POLLINT */
24 case 72:
25 case 74:
26+ break;
27 case 76: /* RCVRL */
28 case 78: /* XMTRL */
29+ val = (val > 0) ? val : 512;
30+ break;
31 case 112:
32 if (CSR_STOP(s) || CSR_SPND(s))
33 break;
34--
352.1.4
36