Skip to content

Commit f0842bb

Browse files
shirazsaleemrleon
authored andcommitted
RDMA/irdma: Fix data race on CQP request done
KCSAN detects a data race on cqp_request->request_done memory location which is accessed locklessly in irdma_handle_cqp_op while being updated in irdma_cqp_ce_handler. Annotate lockless intent with READ_ONCE/WRITE_ONCE to avoid any compiler optimizations like load fusing and/or KCSAN warning. [222808.417128] BUG: KCSAN: data-race in irdma_cqp_ce_handler [irdma] / irdma_wait_event [irdma] [222808.417532] write to 0xffff8e44107019dc of 1 bytes by task 29658 on cpu 5: [222808.417610] irdma_cqp_ce_handler+0x21e/0x270 [irdma] [222808.417725] cqp_compl_worker+0x1b/0x20 [irdma] [222808.417827] process_one_work+0x4d1/0xa40 [222808.417835] worker_thread+0x319/0x700 [222808.417842] kthread+0x180/0x1b0 [222808.417852] ret_from_fork+0x22/0x30 [222808.417918] read to 0xffff8e44107019dc of 1 bytes by task 29688 on cpu 1: [222808.417995] irdma_wait_event+0x1e2/0x2c0 [irdma] [222808.418099] irdma_handle_cqp_op+0xae/0x170 [irdma] [222808.418202] irdma_cqp_cq_destroy_cmd+0x70/0x90 [irdma] [222808.418308] irdma_puda_dele_rsrc+0x46d/0x4d0 [irdma] [222808.418411] irdma_rt_deinit_hw+0x179/0x1d0 [irdma] [222808.418514] irdma_ib_dealloc_device+0x11/0x40 [irdma] [222808.418618] ib_dealloc_device+0x2a/0x120 [ib_core] [222808.418823] __ib_unregister_device+0xde/0x100 [ib_core] [222808.418981] ib_unregister_device+0x22/0x40 [ib_core] [222808.419142] irdma_ib_unregister_device+0x70/0x90 [irdma] [222808.419248] i40iw_close+0x6f/0xc0 [irdma] [222808.419352] i40e_client_device_unregister+0x14a/0x180 [i40e] [222808.419450] i40iw_remove+0x21/0x30 [irdma] [222808.419554] auxiliary_bus_remove+0x31/0x50 [222808.419563] device_remove+0x69/0xb0 [222808.419572] device_release_driver_internal+0x293/0x360 [222808.419582] driver_detach+0x7c/0xf0 [222808.419592] bus_remove_driver+0x8c/0x150 [222808.419600] driver_unregister+0x45/0x70 [222808.419610] auxiliary_driver_unregister+0x16/0x30 [222808.419618] irdma_exit_module+0x18/0x1e [irdma] [222808.419733] __do_sys_delete_module.constprop.0+0x1e2/0x310 [222808.419745] __x64_sys_delete_module+0x1b/0x30 [222808.419755] do_syscall_64+0x39/0x90 [222808.419763] entry_SYSCALL_64_after_hwframe+0x63/0xcd [222808.419829] value changed: 0x01 -> 0x03 Fixes: 915cc7a ("RDMA/irdma: Add miscellaneous utility definitions") Signed-off-by: Shiraz Saleem <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Leon Romanovsky <[email protected]>
1 parent f2c3037 commit f0842bb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

drivers/infiniband/hw/irdma/hw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2075,7 +2075,7 @@ void irdma_cqp_ce_handler(struct irdma_pci_f *rf, struct irdma_sc_cq *cq)
20752075
cqp_request->compl_info.error = info.error;
20762076

20772077
if (cqp_request->waiting) {
2078-
cqp_request->request_done = true;
2078+
WRITE_ONCE(cqp_request->request_done, true);
20792079
wake_up(&cqp_request->waitq);
20802080
irdma_put_cqp_request(&rf->cqp, cqp_request);
20812081
} else {

drivers/infiniband/hw/irdma/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ struct irdma_cqp_request {
161161
void (*callback_fcn)(struct irdma_cqp_request *cqp_request);
162162
void *param;
163163
struct irdma_cqp_compl_info compl_info;
164+
bool request_done; /* READ/WRITE_ONCE macros operate on it */
164165
bool waiting:1;
165-
bool request_done:1;
166166
bool dynamic:1;
167167
};
168168

drivers/infiniband/hw/irdma/utils.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ void irdma_free_cqp_request(struct irdma_cqp *cqp,
481481
if (cqp_request->dynamic) {
482482
kfree(cqp_request);
483483
} else {
484-
cqp_request->request_done = false;
484+
WRITE_ONCE(cqp_request->request_done, false);
485485
cqp_request->callback_fcn = NULL;
486486
cqp_request->waiting = false;
487487

@@ -515,7 +515,7 @@ irdma_free_pending_cqp_request(struct irdma_cqp *cqp,
515515
{
516516
if (cqp_request->waiting) {
517517
cqp_request->compl_info.error = true;
518-
cqp_request->request_done = true;
518+
WRITE_ONCE(cqp_request->request_done, true);
519519
wake_up(&cqp_request->waitq);
520520
}
521521
wait_event_timeout(cqp->remove_wq,
@@ -571,7 +571,7 @@ static int irdma_wait_event(struct irdma_pci_f *rf,
571571
do {
572572
irdma_cqp_ce_handler(rf, &rf->ccq.sc_cq);
573573
if (wait_event_timeout(cqp_request->waitq,
574-
cqp_request->request_done,
574+
READ_ONCE(cqp_request->request_done),
575575
msecs_to_jiffies(CQP_COMPL_WAIT_TIME_MS)))
576576
break;
577577

0 commit comments

Comments
 (0)