qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] net: rocker: fix an incorrect array bounds chec


From: P J P
Subject: Re: [Qemu-devel] [PATCH] net: rocker: fix an incorrect array bounds check
Date: Wed, 23 Dec 2015 00:34:39 +0530 (IST)

+-- On Tue, 22 Dec 2015, Paolo Bonzini wrote --+
| > ===
| > diff --git a/hw/net/rocker/rocker.c b/hw/net/rocker/rocker.c
| > index c57f1a6..2e77e50 100644
| > --- a/hw/net/rocker/rocker.c
| > +++ b/hw/net/rocker/rocker.c
| > @@ -232,6 +232,9 @@ static int tx_consume(Rocker *r, DescInfo *info)
| >          frag_addr = 
rocker_tlv_get_le64(tlvs[ROCKER_TLV_TX_FRAG_ATTR_ADDR]);
| >          frag_len = rocker_tlv_get_le16(tlvs[ROCKER_TLV_TX_FRAG_ATTR_LEN]);
| >  
| > +        if (iovcnt >= ROCKER_TX_FRAGS_MAX) {
| > +            goto err_too_many_frags;
| > +        }
| >          iov[iovcnt].iov_len = frag_len;
| >          iov[iovcnt].iov_base = g_malloc(frag_len);
| >          if (!iov[iovcnt].iov_base) {
| > @@ -244,10 +247,7 @@ static int tx_consume(Rocker *r, DescInfo *info)
| >              err = -ROCKER_ENXIO;
| >              goto err_bad_io;
| >          }
| > -
| > -        if (++iovcnt > ROCKER_TX_FRAGS_MAX) {
| > -            goto err_too_many_frags;
| > -        }
| > +        iovcnt++;
| >      }
| >  
| >      if (iovcnt) {
| > ===
| 
| Yes, can you submit it as v2?

Sure, okay. But I don't get the difference.
--
Prasad J Pandit / Red Hat Product Security Team
47AF CE69 3A90 54AA 9045 1053 DD13 3D32 FE5B 041F



reply via email to

[Prev in Thread] Current Thread [Next in Thread]