Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
qemu.4227
0295-net-rtl8139-limit-processing-of-rin.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0295-net-rtl8139-limit-processing-of-rin.patch of Package qemu.4227
From 620ae10d1cbccd973c0c1fe99f0dd8eeb551ec51 Mon Sep 17 00:00:00 2001 From: Prasad J Pandit <pjp@fedoraproject.org> Date: Fri, 21 Oct 2016 17:39:29 +0530 Subject: [PATCH] net: rtl8139: limit processing of ring descriptors RTL8139 ethernet controller in C+ mode supports multiple descriptor rings, each with maximum of 64 descriptors. While processing transmit descriptor ring in 'rtl8139_cplus_transmit', it does not limit the descriptor count and runs forever. Add check to avoid it. Reported-by: Andrew Henderson <hendersa@icculus.org> Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org> Signed-off-by: Jason Wang <jasowang@redhat.com> (cherry picked from commit c7c35916692fe010fef25ac338443d3fe40be225) [BR: CVE-2016-8910 BSC#1006538] Signed-off-by: Bruce Rogers <brogers@suse.com> --- hw/net/rtl8139.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/net/rtl8139.c b/hw/net/rtl8139.c index 5329f44a9d..7b0fe10851 100644 --- a/hw/net/rtl8139.c +++ b/hw/net/rtl8139.c @@ -2420,7 +2420,7 @@ static void rtl8139_cplus_transmit(RTL8139State *s) { int txcount = 0; - while (rtl8139_cplus_transmit_one(s)) + while (txcount < 64 && rtl8139_cplus_transmit_one(s)) { ++txcount; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor