mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
rds: annotate data-race around rs_seen_congestion
rs_seen_congestion is read in rds_poll() and written in rds_sendmsg() and rds_poll() without any lock. Use READ_ONCE()/WRITE_ONCE() to annotate these lockless accesses and silence KCSAN. Reported-by: syzbot+fbf3648ae7f5bdb05c59@syzkaller.appspotmail.com Closes: https://lore.kernel.org/netdev/6a0f8d94.050a0220.6b33c.0000.GAE@google.com/ Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev> Reviewed-by: Allison Henderson <achender@kernel.org> Tested-by: Allison Henderson <achender@kernel.org> Link: https://patch.msgid.link/20260522011621.304470-1-jiayuan.chen@linux.dev Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
0f700d144b
commit
67636cab27
|
|
@ -219,7 +219,7 @@ static __poll_t rds_poll(struct file *file, struct socket *sock,
|
|||
|
||||
poll_wait(file, sk_sleep(sk), wait);
|
||||
|
||||
if (rs->rs_seen_congestion)
|
||||
if (READ_ONCE(rs->rs_seen_congestion))
|
||||
poll_wait(file, &rds_poll_waitq, wait);
|
||||
|
||||
read_lock_irqsave(&rs->rs_recv_lock, flags);
|
||||
|
|
@ -247,7 +247,7 @@ static __poll_t rds_poll(struct file *file, struct socket *sock,
|
|||
|
||||
/* clear state any time we wake a seen-congested socket */
|
||||
if (mask)
|
||||
rs->rs_seen_congestion = 0;
|
||||
WRITE_ONCE(rs->rs_seen_congestion, 0);
|
||||
|
||||
return mask;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1388,7 +1388,7 @@ int rds_sendmsg(struct socket *sock, struct msghdr *msg, size_t payload_len)
|
|||
|
||||
ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs);
|
||||
if (ret) {
|
||||
rs->rs_seen_congestion = 1;
|
||||
WRITE_ONCE(rs->rs_seen_congestion, 1);
|
||||
goto out;
|
||||
}
|
||||
while (!rds_send_queue_rm(rs, conn, cpath, rm, rs->rs_bound_port,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user