tcp: fix races in tcp_v[46]_err()

[ Upstream commit fde6f897f2a184546bf5516ac736523ef24dc6a7 ]

These functions have races when they:

1) Write sk->sk_err
2) call sk_error_report(sk)
3) call tcp_done(sk)

As described in prior patches in this series:

An smp_wmb() is missing.
We should call tcp_done() before sk_error_report(sk)
to have consistent tcp_poll() results on SMP hosts.

Use tcp_done_with_error() where we centralized the
correct sequence.

Fixes: 1da177e4c3 ("Linux-2.6.12-rc2")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Link: https://lore.kernel.org/r/20240528125253.1966136-5-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Eric Dumazet 2024-05-28 12:52:53 +00:00 коммит произвёл Greg Kroah-Hartman
Родитель 09519197b0
Коммит ed3bc31ed0
2 изменённых файлов: 6 добавлений и 15 удалений

Просмотреть файл

@ -592,15 +592,10 @@ int tcp_v4_err(struct sk_buff *skb, u32 info)
ip_icmp_error(sk, skb, err, th->dest, info, (u8 *)th); ip_icmp_error(sk, skb, err, th->dest, info, (u8 *)th);
if (!sock_owned_by_user(sk)) { if (!sock_owned_by_user(sk))
WRITE_ONCE(sk->sk_err, err); tcp_done_with_error(sk, err);
else
sk_error_report(sk);
tcp_done(sk);
} else {
WRITE_ONCE(sk->sk_err_soft, err); WRITE_ONCE(sk->sk_err_soft, err);
}
goto out; goto out;
} }

Просмотреть файл

@ -485,14 +485,10 @@ static int tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
ipv6_icmp_error(sk, skb, err, th->dest, ntohl(info), (u8 *)th); ipv6_icmp_error(sk, skb, err, th->dest, ntohl(info), (u8 *)th);
if (!sock_owned_by_user(sk)) { if (!sock_owned_by_user(sk))
WRITE_ONCE(sk->sk_err, err); tcp_done_with_error(sk, err);
sk_error_report(sk); /* Wake people up to see the error (see connect in sock.c) */ else
tcp_done(sk);
} else {
WRITE_ONCE(sk->sk_err_soft, err); WRITE_ONCE(sk->sk_err_soft, err);
}
goto out; goto out;
case TCP_LISTEN: case TCP_LISTEN:
break; break;