]> git.baikalelectronics.ru Git - kernel.git/commit
net/tcp: Fix socket lookups with SO_BINDTODEVICE
authorDavid Ahern <dsahern@gmail.com>
Mon, 18 Jun 2018 19:30:37 +0000 (12:30 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 Jun 2018 23:03:06 +0000 (08:03 +0900)
commit48a7e2d69d27711bad63da658e0e51e859a980ee
treeeb62f5e69eaf9c60c5a18c2427cf9ed9804c7e7b
parent8a3117026e4d4d6dcb97b56c369f2ce157e09829
net/tcp: Fix socket lookups with SO_BINDTODEVICE

Similar to 0e4759430c2c ("udp: fix SO_BINDTODEVICE"), TCP socket lookups
need to fail if dev_match is not true. Currently, a packet to a given port
can match a socket bound to device when it should not. In the VRF case,
this causes the lookup to hit a VRF socket and not a global socket
resulting in a response trying to go through the VRF when it should not.

Fixes: 646ec37769d90 ("net: ipv4: add second dif to inet socket lookups")
Fixes: 41be29c1c9e22 ("net: ipv6: add second dif to inet6 socket lookups")
Reported-by: Lou Berger <lberger@labn.net>
Diagnosed-by: Renato Westphal <renato@opensourcerouting.org>
Tested-by: Renato Westphal <renato@opensourcerouting.org>
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/inet_hashtables.c
net/ipv6/inet6_hashtables.c