dccp/tcp: Update saddr under bhash's lock.
When we call connect() for a socket bound to a wildcard address, we update saddr locklessly. However, it could result in a data race; another thread iterating over bhash might see a corrupted address. Let's update saddr under the bhash bucket's lock. Fixes: 3df80d93 ("[DCCP]: Introduce DCCPv6") Fixes: 7c657876 ("[DCCP]: Initial implementation") Fixes: 1da177e4 ("Linux-2.6.12-rc2") Signed-off-by:Kuniyuki Iwashima <kuniyu@amazon.com> Acked-by:
Joanne Koong <joannelkoong@gmail.com> Reviewed-by:
Eric Dumazet <edumazet@google.com> Signed-off-by:
Jakub Kicinski <kuba@kernel.org>
Showing
- include/net/inet_hashtables.h 1 addition, 1 deletioninclude/net/inet_hashtables.h
- net/dccp/ipv4.c 4 additions, 18 deletionsnet/dccp/ipv4.c
- net/dccp/ipv6.c 4 additions, 19 deletionsnet/dccp/ipv6.c
- net/ipv4/af_inet.c 1 addition, 10 deletionsnet/ipv4/af_inet.c
- net/ipv4/inet_hashtables.c 39 additions, 6 deletionsnet/ipv4/inet_hashtables.c
- net/ipv4/tcp_ipv4.c 4 additions, 16 deletionsnet/ipv4/tcp_ipv4.c
- net/ipv6/tcp_ipv6.c 3 additions, 16 deletionsnet/ipv6/tcp_ipv6.c
Loading
Please register or sign in to comment