[PATCH] remote memory corruptor in ibmtr.c
authorAl Viro <viro@hera.kernel.org>
Mon, 4 Dec 2006 22:05:09 +0000 (22:05 +0000)
committerLinus Torvalds <torvalds@woody.osdl.org>
Tue, 5 Dec 2006 03:32:44 +0000 (19:32 -0800)
ip_summed changes last summer had missed that one.  As the result,
we have ip_summed interpreted as CHECKSUM_PARTIAL now.  IOW,
->csum is interpreted as offset of checksum in the packet.  net/core/*
will both read and modify the value as that offset, with obvious
reasons.  At the very least it's a remote memory corruptor.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/net/tokenring/ibmtr.c

index bfe5986..0d97e10 100644 (file)
@@ -1826,7 +1826,7 @@ static void tr_rx(struct net_device *dev)
        skb->protocol = tr_type_trans(skb, dev);
        if (IPv4_p) {
                skb->csum = chksum;
-               skb->ip_summed = 1;
+               skb->ip_summed = CHECKSUM_COMPLETE;
        }
        netif_rx(skb);
        dev->last_rx = jiffies;