projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a63cb9
)
tcp: Fix a data-race around sysctl_tcp_stdurg.
author
Kuniyuki Iwashima
<kuniyu@amazon.com>
Mon, 18 Jul 2022 17:26:50 +0000
(10:26 -0700)
committer
David S. Miller
<davem@davemloft.net>
Wed, 20 Jul 2022 09:14:50 +0000
(10:14 +0100)
While reading sysctl_tcp_stdurg, it can be changed concurrently.
Thus, we need to add READ_ONCE() to its reader.
Fixes:
1da177e4c3f4
("Linux-2.6.12-rc2")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_input.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/tcp_input.c
b/net/ipv4/tcp_input.c
index 36eabd109e7c76e0eceabdfa0aa36f5300d5ef32..31a9d2b8ecdc180da76c8d68a96342e355c5c1ea 100644
(file)
--- a/
net/ipv4/tcp_input.c
+++ b/
net/ipv4/tcp_input.c
@@
-5572,7
+5572,7
@@
static void tcp_check_urg(struct sock *sk, const struct tcphdr *th)
struct tcp_sock *tp = tcp_sk(sk);
u32 ptr = ntohs(th->urg_ptr);
- if (ptr && !
sock_net(sk)->ipv4.sysctl_tcp_stdurg
)
+ if (ptr && !
READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_stdurg)
)
ptr--;
ptr += ntohl(th->seq);