diff mbox

fix conntrack reassembly expire code

Message ID 1354873337-3776-1-git-send-email-haibbo@gmail.com
State Accepted
Headers show

Commit Message

haibbo@gmail.com Dec. 7, 2012, 9:42 a.m. UTC
From: Haibo Xi <haibbo@gmail.com>

Commit b836c99fd6c9 (ipv6: unify conntrack reassembly expire
code with standard one) use the standard IPv6 reassembly
code(ip6_expire_frag_queue) to handle conntrack reassembly expire.

In ip6_expire_frag_queue, it invoke dev_get_by_index_rcu to get
which device received this expired packet.so we must save ifindex
when NF_conntrack get this packet.

With this patch applied, I can see ICMP Time Exceeded sent
from the receiver when the sender sent out 1/2 fragmented
IPv6 packet.

Signed-off-by: Haibo Xi <haibbo@gmail.com>
---
 net/ipv6/netfilter/nf_conntrack_reasm.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

Comments

Pablo Neira Ayuso Dec. 11, 2012, 1:50 a.m. UTC | #1
Hi Haibbo,

On Fri, Dec 07, 2012 at 05:42:17PM +0800, haibbo@gmail.com wrote:
> From: Haibo Xi <haibbo@gmail.com>
> 
> Commit b836c99fd6c9 (ipv6: unify conntrack reassembly expire
> code with standard one) use the standard IPv6 reassembly
> code(ip6_expire_frag_queue) to handle conntrack reassembly expire.
> 
> In ip6_expire_frag_queue, it invoke dev_get_by_index_rcu to get
> which device received this expired packet.so we must save ifindex
> when NF_conntrack get this packet.
> 
> With this patch applied, I can see ICMP Time Exceeded sent
> from the receiver when the sender sent out 1/2 fragmented
> IPv6 packet.
> 
> Signed-off-by: Haibo Xi <haibbo@gmail.com>
> ---
>  net/ipv6/netfilter/nf_conntrack_reasm.c |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
> index 22c8ea9..e7197be 100644
> --- a/net/ipv6/netfilter/nf_conntrack_reasm.c
> +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
> @@ -196,6 +196,7 @@ static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
>  	struct sk_buff *prev, *next;
>  	unsigned int payload_len;
>  	int offset, end;
> +	struct net_device *dev = NULL;

This assignation above is superfluous.

>  	if (fq->q.last_in & INET_FRAG_COMPLETE) {
>  		pr_debug("Already completed\n");
> @@ -311,7 +312,11 @@ found:
>  	else
>  		fq->q.fragments = skb;
>  
> -	skb->dev = NULL;
> +	dev = skb->dev;
> +	if (dev) {
> +		fq->iif = dev->ifindex;
> +		skb->dev = NULL;
> +	}
>  	fq->q.stamp = skb->tstamp;
>  	fq->q.meat += skb->len;
>  	if (payload_len > fq->q.max_size)
> -- 
> 1.7.0.4
> 
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Pablo Neira Ayuso Dec. 16, 2012, 10:43 p.m. UTC | #2
On Tue, Dec 11, 2012 at 10:52:16AM +0800, Haibo Xi wrote:
>    Hi Pablo,
> 
>    Thanks for your advice.
>    Given below is new patch.

Applied, thanks.

Minor nitpick: Please, next time check that your mail client is
sending plain text, HTML makes no good to the patch.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" 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/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index 22c8ea9..e7197be 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -196,6 +196,7 @@  static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
 	struct sk_buff *prev, *next;
 	unsigned int payload_len;
 	int offset, end;
+	struct net_device *dev = NULL;
 
 	if (fq->q.last_in & INET_FRAG_COMPLETE) {
 		pr_debug("Already completed\n");
@@ -311,7 +312,11 @@  found:
 	else
 		fq->q.fragments = skb;
 
-	skb->dev = NULL;
+	dev = skb->dev;
+	if (dev) {
+		fq->iif = dev->ifindex;
+		skb->dev = NULL;
+	}
 	fq->q.stamp = skb->tstamp;
 	fq->q.meat += skb->len;
 	if (payload_len > fq->q.max_size)