]> git.baikalelectronics.ru Git - kernel.git/commit
tcp_v4_send_reset: binding oif to iif in no sock case
authorShawn Lu <shawn.lu@ericsson.com>
Sat, 4 Feb 2012 12:38:09 +0000 (12:38 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 4 Feb 2012 23:20:05 +0000 (18:20 -0500)
commitfc0b090d144d4f85a94ebf72dc4707f8d0938806
tree58bf7212d6bebd30ec6477f84440cbbd8dbb3bb1
parentf870e5b3957100242f49b63fc36970c5b1124524
tcp_v4_send_reset: binding oif to iif in no sock case

Binding RST packet outgoing interface to incoming interface
for tcp v4 when there is no socket associate with it.
when sk is not NULL, using sk->sk_bound_dev_if instead.
(suggested by Eric Dumazet).

This has few benefits:
1. tcp_v6_send_reset already did that.
2. This helps tcp connect with SO_BINDTODEVICE set. When
connection is lost, we still able to sending out RST using
same interface.
3. we are sending reply, it is most likely to be succeed
if iif is used

Signed-off-by: Shawn Lu <shawn.lu@ericsson.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_ipv4.c