diff mbox

[v2,net-next] ipv4: ip_forward: perform skb->pkt_type check at the beginning

Message ID 1392267536-2453-1-git-send-email-kda@linux-powerpc.org
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Denis Kirjanov Feb. 13, 2014, 4:58 a.m. UTC
Packets which have L2 address different from ours should be
already filtered before entering into ip_forward().

Perform that check at the beginning to avoid processing such packets.

Signed-off-by: Denis Kirjanov <kda@linux-powerpc.org>
---
v1 -> v2: Fixed identation
---
 net/ipv4/ip_forward.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

David Miller Feb. 13, 2014, 11:36 p.m. UTC | #1
From: Denis Kirjanov <kda@linux-powerpc.org>
Date: Thu, 13 Feb 2014 08:58:56 +0400

> Packets which have L2 address different from ours should be
> already filtered before entering into ip_forward().
> 
> Perform that check at the beginning to avoid processing such packets.
> 
> Signed-off-by: Denis Kirjanov <kda@linux-powerpc.org>

Looks good, applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/ipv4/ip_forward.c b/net/ipv4/ip_forward.c
index e9f1217..d9d9290 100644
--- a/net/ipv4/ip_forward.c
+++ b/net/ipv4/ip_forward.c
@@ -59,6 +59,10 @@  int ip_forward(struct sk_buff *skb)
 	struct rtable *rt;	/* Route we use */
 	struct ip_options *opt	= &(IPCB(skb)->opt);
 
+	/* that should never happen */
+	if (skb->pkt_type != PACKET_HOST)
+		goto drop;
+
 	if (skb_warn_if_lro(skb))
 		goto drop;
 
@@ -68,9 +72,6 @@  int ip_forward(struct sk_buff *skb)
 	if (IPCB(skb)->opt.router_alert && ip_call_ra_chain(skb))
 		return NET_RX_SUCCESS;
 
-	if (skb->pkt_type != PACKET_HOST)
-		goto drop;
-
 	skb_forward_csum(skb);
 
 	/*