From: Mike Accetta <maccetta@laurelnetworks.com>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Patrick McHardy <kaber@trash.net>,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org
Subject: Re: 2.6.20 crash in tcp_tso_segment()
Date: Wed, 14 Feb 2007 11:27:09 -0500 [thread overview]
Message-ID: <18248.1171470429@mdt.dhcp.pit.laurelnetworks.com> (raw)
In-Reply-To: Your message of "Wed, 14 Feb 2007 04:51:21 +1100." <20070213175121.GA27281@gondor.apana.org.au>
Herbert Xu writes:
>
> [NETFILTER]: Clear GSO bits for TCP reset packet
>
> The TCP reset packet is copied from the original. This
> includes all the GSO bits which do not apply to the new
> packet. So we should clear those bits.
>
> Spotted by Patrick McHardy.
>
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
>
> Something like this is needed for all trees with GSO.
> Actually it applies to TSO too although the effect there
> is a bit harder to notice.
>
> Cheers,
> --
> Visit Openswan at http://www.openswan.org/
> Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
> Home Page: http://gondor.apana.org.au/~herbert/
> PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
> --
> diff --git a/net/ipv4/netfilter/ipt_REJECT.c b/net/ipv4/netfilter/ipt_REJECT.
> c
> index a9eb363..80f739e 100644
> --- a/net/ipv4/netfilter/ipt_REJECT.c
> +++ b/net/ipv4/netfilter/ipt_REJECT.c
> @@ -80,6 +80,10 @@ static void send_reset(struct sk_buff *oldskb, int hook)
> nskb->mark = 0;
> skb_init_secmark(nskb);
>
> + skb_shinfo(nskb)->gso_size = 0;
> + skb_shinfo(nskb)->gso_segs = 0;
> + skb_shinfo(nskb)->gso_type = 0;
> +
> tcph = (struct tcphdr *)((u_int32_t*)nskb->nh.iph + nskb->nh.iph->ihl);
>
> /* Swap source and dest */
I picked up this patch and we ran the overnight stress tests that had been
experiencing this problem against it. No problems so far, which based on
past results probably means the problem has indeed been fixed. Thank you!
--
Mike Accetta
ECI Telecom Ltd.
Data Networking Division (previously Laurel Networks)
prev parent reply other threads:[~2007-02-14 16:27 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-09 5:57 2.6.20 crash in tcp_tso_segment() Mike Accetta
2007-02-09 20:12 ` Herbert Xu
2007-02-13 14:34 ` Patrick McHardy
2007-02-13 16:18 ` Mike Accetta
2007-02-13 17:51 ` Herbert Xu
2007-02-13 20:34 ` David Miller
2007-02-13 21:51 ` Herbert Xu
2007-02-13 21:53 ` David Miller
2007-02-14 16:27 ` Mike Accetta [this message]
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=18248.1171470429@mdt.dhcp.pit.laurelnetworks.com \
--to=maccetta@laurelnetworks.com \
--cc=davem@davemloft.net \
--cc=herbert@gondor.apana.org.au \
--cc=kaber@trash.net \
--cc=netdev@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 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).