From: Ben Greear <greearb@candelatech.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Shawn Lu <shawn.lu@ericsson.com>,
davem@davemloft.net, netdev@vger.kernel.org, xiaoclu@gmail.com
Subject: Re: [PATCH] tcp: RST: binding oif to iif for tcp v4
Date: Fri, 03 Feb 2012 13:39:53 -0800 [thread overview]
Message-ID: <4F2C5429.3080406@candelatech.com> (raw)
In-Reply-To: <1328304719.2480.5.camel@edumazet-laptop>
On 02/03/2012 01:31 PM, Eric Dumazet wrote:
> Le vendredi 03 février 2012 à 12:16 -0800, Shawn Lu a écrit :
>> Binding RST packet outgoing interface to incomming interface
>> for tcp v4. This has few benefits:
>> 1. tcp_v6_send_reset already did that.
>
> I dont think so. ipv6 makes no special provision for RST.
>
>> 2. This helps tcp connect with SO_BINDTODEVICE set. When connection
>> is lost, we still able to sending out RST using same interface.
>
> I dont understand this.
I have been using a similar patch for years now. When using routing
rules that depend on binding to an interface, the RST isn't always bound
properly without this fix.
My code looks like this:
@@ -650,6 +650,7 @@ static void tcp_v4_send_reset(struct sock *sk, struct sk_buff *skb)
arg.iov[0].iov_len, IPPROTO_TCP, 0);
arg.csumoffset = offsetof(struct tcphdr, check) / 2;
arg.flags = (sk && inet_sk(sk)->transparent) ? IP_REPLY_ARG_NOSRCCHECK : 0;
+ arg.bound_dev_if = skb_rtable(skb)->rt_iif;
net = dev_net(skb_dst(skb)->dev);
ip_send_reply(net->ipv4.tcp_sock, skb, ip_hdr(skb)->saddr,
It was originally written by Patrick McHardy, but I've hacked it
a bit over the years to keep it compiling. It seems to work fine.
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
next prev parent reply other threads:[~2012-02-03 21:40 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-03 20:16 [PATCH] tcp: RST: binding oif to iif for tcp v4 Shawn Lu
2012-02-03 21:31 ` Eric Dumazet
2012-02-03 21:39 ` Ben Greear [this message]
2012-02-03 21:56 ` Shawn Lu
2012-02-03 21:43 ` Shawn Lu
2012-02-04 7:44 ` Eric Dumazet
2012-02-04 8:06 ` Eric Dumazet
2012-02-04 18:15 ` Shawn Lu
2012-02-04 18:29 ` Eric Dumazet
2012-02-04 18:42 ` Shawn Lu
2012-02-04 19:09 ` Eric Dumazet
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=4F2C5429.3080406@candelatech.com \
--to=greearb@candelatech.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=shawn.lu@ericsson.com \
--cc=xiaoclu@gmail.com \
/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