net: ne2000: check ring buffer control registers
Ne2000 NIC uses ring buffer of NE2000_MEM_SIZE(49152)
bytes to process network packets. Registers PSTART & PSTOP
define ring buffer size & location. Setting these registers
to invalid values could lead to infinite loop or OOB r/w
access issues. Add check to avoid it.
Reported-by: Yang Hongke <yanghongke@huawei.com>
Tested-by: Yang Hongke <yanghongke@huawei.com>
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
(cherry picked from commit 415ab35a44)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
aaa5271327
commit
fe90bdc25b
|
|
@ -154,6 +154,10 @@ static int ne2000_buffer_full(NE2000State *s)
|
||||||
{
|
{
|
||||||
int avail, index, boundary;
|
int avail, index, boundary;
|
||||||
|
|
||||||
|
if (s->stop <= s->start) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
index = s->curpag << 8;
|
index = s->curpag << 8;
|
||||||
boundary = s->boundary << 8;
|
boundary = s->boundary << 8;
|
||||||
if (index < boundary)
|
if (index < boundary)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue