Re: [dpdk-dev] [PATCH v3] net/bonding: fix potential out of bounds read

2019-04-19 Thread Ferruh Yigit
On 4/18/2019 11:57 PM, Chas Williams wrote: > > > On 4/18/19 2:41 PM, Ferruh Yigit wrote: >> On 4/17/2019 3:36 PM, Radu Nicolau wrote: >>> Add validation to pointer constructed from the IPv4 header length >>> in order to prevent malformed packets from generating a potential >>> out of bounds memo

Re: [dpdk-dev] [PATCH v3] net/bonding: fix potential out of bounds read

2019-04-18 Thread Chas Williams
On 4/18/19 2:41 PM, Ferruh Yigit wrote: On 4/17/2019 3:36 PM, Radu Nicolau wrote: Add validation to pointer constructed from the IPv4 header length in order to prevent malformed packets from generating a potential out of bounds memory read. Fixes: 09150784a776 ("net/bonding: burst mode hash

Re: [dpdk-dev] [PATCH v3] net/bonding: fix potential out of bounds read

2019-04-18 Thread Ferruh Yigit
On 4/17/2019 3:36 PM, Radu Nicolau wrote: > Add validation to pointer constructed from the IPv4 header length > in order to prevent malformed packets from generating a potential > out of bounds memory read. > > Fixes: 09150784a776 ("net/bonding: burst mode hash calculation") > Cc: sta...@dpdk.org

[dpdk-dev] [PATCH v3] net/bonding: fix potential out of bounds read

2019-04-17 Thread Radu Nicolau
Add validation to pointer constructed from the IPv4 header length in order to prevent malformed packets from generating a potential out of bounds memory read. Fixes: 09150784a776 ("net/bonding: burst mode hash calculation") Cc: sta...@dpdk.org Signed-off-by: Radu Nicolau --- v2: add fixes lines