netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-2.6 v2] gre: fix improper error handling
@ 2011-07-23  6:49 xeb
  2011-07-23  8:32 ` Eric Dumazet
  0 siblings, 1 reply; 3+ messages in thread
From: xeb @ 2011-07-23  6:49 UTC (permalink / raw)
  To: davem; +Cc: netdev

[-- Attachment #1: Type: text/plain, Size: 180 bytes --]

Fix improper protocol err_handler, current implementation is fully
unapplicable and may cause kernel crash due to double kfree_skb.

Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
---

[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 1156 bytes --]

 net/ipv4/gre.c |   21 ++++++---------------
 1 files changed, 6 insertions(+), 15 deletions(-)
 
diff --git a/net/ipv4/gre.c b/net/ipv4/gre.c
index 9dbe108..dbfc21d 100644
--- a/net/ipv4/gre.c
+++ b/net/ipv4/gre.c
@@ -15,6 +15,7 @@
 #include <linux/kmod.h>
 #include <linux/skbuff.h>
 #include <linux/in.h>
+#include <linux/ip.h>
 #include <linux/netdevice.h>
 #include <linux/spinlock.h>
 #include <net/protocol.h>
@@ -96,27 +97,17 @@ drop:
 static void gre_err(struct sk_buff *skb, u32 info)
 {
 	const struct gre_protocol *proto;
-	u8 ver;
-
-	if (!pskb_may_pull(skb, 12))
-		goto drop;
+	const struct iphdr *iph = (const struct iphdr *)skb->data;
+	u8 ver = skb->data[(iph->ihl<<2) + 1]&0x7f;
 
-	ver = skb->data[1]&0x7f;
 	if (ver >= GREPROTO_MAX)
-		goto drop;
+		return;
 
 	rcu_read_lock();
 	proto = rcu_dereference(gre_proto[ver]);
-	if (!proto || !proto->err_handler)
-		goto drop_unlock;
-	proto->err_handler(skb, info);
-	rcu_read_unlock();
-	return;
-
-drop_unlock:
+	if (proto && proto->err_handler)
+		proto->err_handler(skb, info);
 	rcu_read_unlock();
-drop:
-	kfree_skb(skb);
 }
 
 static const struct net_protocol net_gre_protocol = {

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

* Re: [PATCH net-2.6 v2] gre: fix improper error handling
  2011-07-23  6:49 [PATCH net-2.6 v2] gre: fix improper error handling xeb
@ 2011-07-23  8:32 ` Eric Dumazet
  2011-07-24  3:06   ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Dumazet @ 2011-07-23  8:32 UTC (permalink / raw)
  To: xeb; +Cc: davem, netdev

Le samedi 23 juillet 2011 à 10:49 +0400, xeb@mail.ru a écrit :
> Fix improper protocol err_handler, current implementation is fully
> unapplicable and may cause kernel crash due to double kfree_skb.
> 
> Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
> ---
> net/ipv4/gre.c |   21 ++++++---------------
>  1 files changed, 6 insertions(+), 15 deletions(-)
>  

Good catch !

Acked-by: Eric Dumazet <eric.dumazet@gmail.com>





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

* Re: [PATCH net-2.6 v2] gre: fix improper error handling
  2011-07-23  8:32 ` Eric Dumazet
@ 2011-07-24  3:06   ` David Miller
  0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2011-07-24  3:06 UTC (permalink / raw)
  To: eric.dumazet; +Cc: xeb, netdev

From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Sat, 23 Jul 2011 10:32:44 +0200

> Le samedi 23 juillet 2011 à 10:49 +0400, xeb@mail.ru a écrit :
>> Fix improper protocol err_handler, current implementation is fully
>> unapplicable and may cause kernel crash due to double kfree_skb.
>> 
>> Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
>> ---
>> net/ipv4/gre.c |   21 ++++++---------------
>>  1 files changed, 6 insertions(+), 15 deletions(-)
>>  
> 
> Good catch !
> 
> Acked-by: Eric Dumazet <eric.dumazet@gmail.com>

Applied, thanks everyone.

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

end of thread, other threads:[~2011-07-24  3:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-23  6:49 [PATCH net-2.6 v2] gre: fix improper error handling xeb
2011-07-23  8:32 ` Eric Dumazet
2011-07-24  3:06   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).