All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pablo Neira Ayuso <pablo@netfilter.org>
To: haibbo@gmail.com
Cc: kaber@trash.net, netfilter-devel@vger.kernel.org,
	netfilter@vger.kernel.org, coreteam@netfilter.org
Subject: Re: [PATCH] fix conntrack reassembly expire code
Date: Tue, 11 Dec 2012 02:50:20 +0100	[thread overview]
Message-ID: <20121211015019.GA18425@1984> (raw)
In-Reply-To: <1354873337-3776-1-git-send-email-haibbo@gmail.com>

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
> 

  reply	other threads:[~2012-12-11  1:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-07  9:42 [PATCH] fix conntrack reassembly expire code haibbo
2012-12-11  1:50 ` Pablo Neira Ayuso [this message]
     [not found]   ` <CAOa9=yr+r6TP33j1Ugp=UveS3yuEssZcbTfRxvaBYqboW_Lz_g@mail.gmail.com>
2012-12-16 22:43     ` Pablo Neira Ayuso

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20121211015019.GA18425@1984 \
    --to=pablo@netfilter.org \
    --cc=coreteam@netfilter.org \
    --cc=haibbo@gmail.com \
    --cc=kaber@trash.net \
    --cc=netfilter-devel@vger.kernel.org \
    --cc=netfilter@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.