]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
bridge: Clear INET control block of SKBs passed into ip_fragment().
authorDavid S. Miller <davem@davemloft.net>
Mon, 20 Sep 2010 04:45:29 +0000 (21:45 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 27 Sep 2010 00:21:19 +0000 (17:21 -0700)
[ Upstream commit 4ce6b9e1621c187a32a47a17bf6be93b1dc4a3df ]

In a similar vain to commit 17762060c25590bfddd68cc1131f28ec720f405f
("bridge: Clear IPCB before possible entry into IP stack")

Any time we call into the IP stack we have to make sure the state
there is as expected by the ipv4 code.

With help from Eric Dumazet and Herbert Xu.

Reported-by: Brandan Das <brandan.das@stratus.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/bridge/br_netfilter.c

index 1ad7ededa71feb5f24fa8b3a30af4428472109c1..3072272eca0e922a99996d0250121e19e9798a96 100644 (file)
@@ -800,9 +800,11 @@ static int br_nf_dev_queue_xmit(struct sk_buff *skb)
        if (skb->nfct != NULL &&
            (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb)) &&
            skb->len > skb->dev->mtu &&
-           !skb_is_gso(skb))
+           !skb_is_gso(skb)) {
+               /* BUG: Should really parse the IP options here. */
+               memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
                return ip_fragment(skb, br_dev_queue_push_xmit);
-       else
+       else
                return br_dev_queue_push_xmit(skb);
 }
 #else