dect
/
linux-2.6
Archived
13
0
Fork 0

u32: negative offset fix

It was possible to use a negative offset in a u32 match to reference
the ethernet header or other parts of the link layer header.
This fixes the regression caused by:

commit fbc2e7d9cf
Author: Changli Gao <xiaosuo@gmail.com>
Date:   Wed Jun 2 07:32:42 2010 -0700

    cls_u32: use skb_header_pointer() to dereference data safely

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
stephen hemminger 2010-08-02 13:44:13 +00:00 committed by David S. Miller
parent eabd8ba906
commit 66d50d2550
1 changed files with 4 additions and 2 deletions

View File

@ -134,10 +134,12 @@ next_knode:
#endif
for (i = n->sel.nkeys; i>0; i--, key++) {
unsigned int toff;
int toff = off + key->off + (off2 & key->offmask);
__be32 *data, _data;
toff = off + key->off + (off2 & key->offmask);
if (skb_headroom(skb) + toff < 0)
goto out;
data = skb_header_pointer(skb, toff, 4, &_data);
if (!data)
goto out;