]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: Fix data-races around sysctl knobs related to SYN option.
authorKuniyuki Iwashima <kuniyu@amazon.com>
Mon, 18 Jul 2022 17:26:44 +0000 (10:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jul 2022 15:25:22 +0000 (17:25 +0200)
commit5bf78d4c6d1901ea454a07dd8b4d41bd6ecb2cd3
tree5862076ec9f74c112316d268e3d9f3ac196c45d1
parent82b4077fa18d26f1e46398974642be06e0dff6be
tcp: Fix data-races around sysctl knobs related to SYN option.

[ Upstream commit 610854015209ba866a0531ec8393f92107b0bf00 ]

While reading these knobs, they can be changed concurrently.
Thus, we need to add READ_ONCE() to their readers.

  - tcp_sack
  - tcp_window_scaling
  - tcp_timestamps

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c
net/core/secure_seq.c
net/ipv4/syncookies.c
net/ipv4/tcp_input.c
net/ipv4/tcp_output.c