mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
tcp: fix race in tcp_v6_syn_recv_sock()
[ Upstream commitd37fe4255a] tcp_v6_syn_recv_sock() calls ip6_dst_store() before inet_sk(newsk)->pinet6 has been set up. This means ip6_dst_store() writes over the parent (listener) np->dst_cookie. This is racy because multiple threads could share the same parent and their final np->dst_cookie could be wrong. Move ip6_dst_store() call after inet_sk(newsk)->pinet6 has been changed and after the copy of parent ipv6_pinfo. Fixes:e994b2f0fb("tcp: do not lock listener to process SYN packets") Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1925eecec2
commit
f64fa39e57
@@ -1438,7 +1438,6 @@ static struct sock *tcp_v6_syn_recv_sock(const struct sock *sk, struct sk_buff *
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
newsk->sk_gso_type = SKB_GSO_TCPV6;
|
newsk->sk_gso_type = SKB_GSO_TCPV6;
|
||||||
ip6_dst_store(newsk, dst, NULL, NULL);
|
|
||||||
inet6_sk_rx_dst_set(newsk, skb);
|
inet6_sk_rx_dst_set(newsk, skb);
|
||||||
|
|
||||||
inet_sk(newsk)->pinet6 = tcp_inet6_sk(newsk);
|
inet_sk(newsk)->pinet6 = tcp_inet6_sk(newsk);
|
||||||
@@ -1449,6 +1448,8 @@ static struct sock *tcp_v6_syn_recv_sock(const struct sock *sk, struct sk_buff *
|
|||||||
|
|
||||||
memcpy(newnp, np, sizeof(struct ipv6_pinfo));
|
memcpy(newnp, np, sizeof(struct ipv6_pinfo));
|
||||||
|
|
||||||
|
ip6_dst_store(newsk, dst, NULL, NULL);
|
||||||
|
|
||||||
newsk->sk_v6_daddr = ireq->ir_v6_rmt_addr;
|
newsk->sk_v6_daddr = ireq->ir_v6_rmt_addr;
|
||||||
newnp->saddr = ireq->ir_v6_loc_addr;
|
newnp->saddr = ireq->ir_v6_loc_addr;
|
||||||
newsk->sk_v6_rcv_saddr = ireq->ir_v6_loc_addr;
|
newsk->sk_v6_rcv_saddr = ireq->ir_v6_loc_addr;
|
||||||
|
|||||||
Reference in New Issue
Block a user