public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bridge-netfilter: don't overwrite memory outside of skb
       [not found]   ` <20060822161628.2d69cf76@localhost.localdomain>
@ 2006-08-23  0:19     ` Stephen Hemminger
  2006-08-25 22:08       ` [stable] " Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2006-08-23  0:19 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, stable

The bridge netfilter code needs to check for space at the
front of the skb before overwriting; otherwise if skb from
device doesn't have headroom, then it will cause random
memory corruption.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>

--- linux-2.6.17.9.orig/include/linux/netfilter_bridge.h	2006-08-21 11:39:58.000000000 -0700
+++ linux-2.6.17.9/include/linux/netfilter_bridge.h	2006-08-21 11:40:26.000000000 -0700
@@ -47,18 +47,26 @@
 #define BRNF_BRIDGED			0x08
 #define BRNF_NF_BRIDGE_PREROUTING	0x10
 
-
 /* Only used in br_forward.c */
-static inline
-void nf_bridge_maybe_copy_header(struct sk_buff *skb)
+static inline int nf_bridge_maybe_copy_header(struct sk_buff *skb)
 {
+	int err;
+
 	if (skb->nf_bridge) {
 		if (skb->protocol == __constant_htons(ETH_P_8021Q)) {
+			err = skb_cow(skb, 18);
+			if (err)
+				return err;
 			memcpy(skb->data - 18, skb->nf_bridge->data, 18);
 			skb_push(skb, 4);
-		} else
+		} else {
+			err = skb_cow(skb, 16);
+			if (err)
+				return err;
 			memcpy(skb->data - 16, skb->nf_bridge->data, 16);
+		}
 	}
+	return 0;
 }
 
 /* This is called by the IP fragmenting code and it ensures there is
--- linux-2.6.17.9.orig/net/bridge/br_forward.c	2006-08-18 09:26:24.000000000 -0700
+++ linux-2.6.17.9/net/bridge/br_forward.c	2006-08-21 11:40:26.000000000 -0700
@@ -43,11 +43,15 @@
 	else {
 #ifdef CONFIG_BRIDGE_NETFILTER
 		/* ip_refrag calls ip_fragment, doesn't copy the MAC header. */
-		nf_bridge_maybe_copy_header(skb);
+		if (nf_bridge_maybe_copy_header(skb))
+			kfree_skb(skb);
+		else
 #endif
-		skb_push(skb, ETH_HLEN);
+		{
+			skb_push(skb, ETH_HLEN);
 
-		dev_queue_xmit(skb);
+			dev_queue_xmit(skb);
+		}
 	}
 
 	return 0;

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [stable] [PATCH] bridge-netfilter: don't overwrite memory outside of skb
  2006-08-23  0:19     ` [PATCH] bridge-netfilter: don't overwrite memory outside of skb Stephen Hemminger
@ 2006-08-25 22:08       ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2006-08-25 22:08 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: David Miller, netdev, stable

On Tue, Aug 22, 2006 at 05:19:28PM -0700, Stephen Hemminger wrote:
> The bridge netfilter code needs to check for space at the
> front of the skb before overwriting; otherwise if skb from
> device doesn't have headroom, then it will cause random
> memory corruption.
> 
> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>

Queued to -stable, thanks.

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-08-25 22:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20060821135110.1114298d@localhost.localdomain>
     [not found] ` <20060821.150238.88482205.davem@davemloft.net>
     [not found]   ` <20060822161628.2d69cf76@localhost.localdomain>
2006-08-23  0:19     ` [PATCH] bridge-netfilter: don't overwrite memory outside of skb Stephen Hemminger
2006-08-25 22:08       ` [stable] " Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox