]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: annotate data-race around challenge_timestamp
authorEric Dumazet <edumazet@google.com>
Tue, 30 Aug 2022 18:56:55 +0000 (11:56 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 Sep 2022 10:04:50 +0000 (12:04 +0200)
commita5f9d230803bb519f3c1749433dafe7ad0ff5d2b
tree1255555179a867e62c59b6afefde2bfa1d9d1bc7
parent1534971ca1b5a4b7abb8e9d2cedb335e55f00bc7
tcp: annotate data-race around challenge_timestamp

[ Upstream commit cfb642efb8478a64499231cc1d79b80e29cfe766 ]

challenge_timestamp can be read an written by concurrent threads.

This was expected, but we need to annotate the race to avoid potential issues.

Following patch moves challenge_timestamp and challenge_count
to per-netns storage to provide better isolation.

Fixes: a2e9ee9d0bec ("tcp: RFC 5961 5.2 Blind Data Injection Attack Mitigation")
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/ipv4/tcp_input.c