[PATCH net] net: drop the packet when fails to do software segmentation or header check

Subsystems: networking [general], the rest

STALE4291d

3 messages, 2 authors, 2014-12-19 · open the first message on its own page

[PATCH net] net: drop the packet when fails to do software segmentation or header check

From: Jason Wang <hidden>
Date: 2014-12-18 05:57:32

Commit cecda693a969816bac5e470e1d9c9c0ef5567bca ("net: keep original skb
which only needs header checking during software GSO") keeps the original
skb for packets that only needs header check, but it doesn't drop the
packet if software segmentation or header check were failed.

Fixes cecda693a969816bac5e470e1d9c9c0ef5567bca
(net: keep original skb which only needs header checking during software GSO)

Cc: Eric Dumazet <redacted>
Signed-off-by: Jason Wang <redacted>
---
Stable candidate for 3.17 and above.
---
 net/core/dev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index f411c28..a989f85 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2673,7 +2673,7 @@ static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device
 
 		segs = skb_gso_segment(skb, features);
 		if (IS_ERR(segs)) {
-			segs = NULL;
+			goto out_kfree_skb;
 		} else if (segs) {
 			consume_skb(skb);
 			skb = segs;
-- 
1.9.1

Re: [PATCH net] net: drop the packet when fails to do software segmentation or header check

From: David Miller <davem@davemloft.net>
Date: 2014-12-18 20:39:17

From: Jason Wang <redacted>
Date: Thu, 18 Dec 2014 13:57:19 +0800
Fixes cecda693a969816bac5e470e1d9c9c0ef5567bca
Please correct this fixes tag, it should be of the form:

Fixes: $(SHA1) ("header text of commit message")

The SHA1 ID should be reduced to 12 digits of significance.

Re: [PATCH net] net: drop the packet when fails to do software segmentation or header check

From: Jason Wang <hidden>
Date: 2014-12-19 03:08:33


On Fri, Dec 19, 2014 at 4:39 AM, David Miller [off-list ref] 
wrote:
From: Jason Wang <redacted>
Date: Thu, 18 Dec 2014 13:57:19 +0800
quoted
 Fixes cecda693a969816bac5e470e1d9c9c0ef5567bca
Please correct this fixes tag, it should be of the form:

Fixes: $(SHA1) ("header text of commit message")

The SHA1 ID should be reduced to 12 digits of significance.
Ok, will post V2.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help