Patch "RDMA/irdma: Fix UAF in irdma_sc_ccq_get_cqe_info()" has been added to the 6.6-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    RDMA/irdma: Fix UAF in irdma_sc_ccq_get_cqe_info()

to the 6.6-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     rdma-irdma-fix-uaf-in-irdma_sc_ccq_get_cqe_info.patch
and it can be found in the queue-6.6 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit eea18d1ba668735fa7401065f59b65fbaec8ffe3
Author: Shifeng Li <lishifeng1992@xxxxxxx>
Date:   Tue Nov 21 02:12:36 2023 -0800

    RDMA/irdma: Fix UAF in irdma_sc_ccq_get_cqe_info()
    
    [ Upstream commit 2b78832f50c4d711e161b166d7d8790968051546 ]
    
    When removing the irdma driver or unplugging its aux device, the ccq
    queue is released before destorying the cqp_cmpl_wq queue.
    But in the window, there may still be completion events for wqes. That
    will cause a UAF in irdma_sc_ccq_get_cqe_info().
    
    [34693.333191] BUG: KASAN: use-after-free in irdma_sc_ccq_get_cqe_info+0x82f/0x8c0 [irdma]
    [34693.333194] Read of size 8 at addr ffff889097f80818 by task kworker/u67:1/26327
    [34693.333194]
    [34693.333199] CPU: 9 PID: 26327 Comm: kworker/u67:1 Kdump: loaded Tainted: G           O     --------- -t - 4.18.0 #1
    [34693.333200] Hardware name: SANGFOR Inspur/NULL, BIOS 4.1.13 08/01/2016
    [34693.333211] Workqueue: cqp_cmpl_wq cqp_compl_worker [irdma]
    [34693.333213] Call Trace:
    [34693.333220]  dump_stack+0x71/0xab
    [34693.333226]  print_address_description+0x6b/0x290
    [34693.333238]  ? irdma_sc_ccq_get_cqe_info+0x82f/0x8c0 [irdma]
    [34693.333240]  kasan_report+0x14a/0x2b0
    [34693.333251]  irdma_sc_ccq_get_cqe_info+0x82f/0x8c0 [irdma]
    [34693.333264]  ? irdma_free_cqp_request+0x151/0x1e0 [irdma]
    [34693.333274]  irdma_cqp_ce_handler+0x1fb/0x3b0 [irdma]
    [34693.333285]  ? irdma_ctrl_init_hw+0x2c20/0x2c20 [irdma]
    [34693.333290]  ? __schedule+0x836/0x1570
    [34693.333293]  ? strscpy+0x83/0x180
    [34693.333296]  process_one_work+0x56a/0x11f0
    [34693.333298]  worker_thread+0x8f/0xf40
    [34693.333301]  ? __kthread_parkme+0x78/0xf0
    [34693.333303]  ? rescuer_thread+0xc50/0xc50
    [34693.333305]  kthread+0x2a0/0x390
    [34693.333308]  ? kthread_destroy_worker+0x90/0x90
    [34693.333310]  ret_from_fork+0x1f/0x40
    
    Fixes: 44d9e52977a1 ("RDMA/irdma: Implement device initialization definitions")
    Signed-off-by: Shifeng Li <lishifeng1992@xxxxxxx>
    Link: https://lore.kernel.org/r/20231121101236.581694-1-lishifeng1992@xxxxxxx
    Acked-by: Shiraz Saleem <shiraz.saleem@xxxxxxxxx>
    Signed-off-by: Leon Romanovsky <leon@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/infiniband/hw/irdma/hw.c b/drivers/infiniband/hw/irdma/hw.c
index 1fc4966cf115e..db3829ff922b5 100644
--- a/drivers/infiniband/hw/irdma/hw.c
+++ b/drivers/infiniband/hw/irdma/hw.c
@@ -585,9 +585,6 @@ static void irdma_destroy_cqp(struct irdma_pci_f *rf)
 	struct irdma_cqp *cqp = &rf->cqp;
 	int status = 0;
 
-	if (rf->cqp_cmpl_wq)
-		destroy_workqueue(rf->cqp_cmpl_wq);
-
 	status = irdma_sc_cqp_destroy(dev->cqp);
 	if (status)
 		ibdev_dbg(to_ibdev(dev), "ERR: Destroy CQP failed %d\n", status);
@@ -752,6 +749,9 @@ static void irdma_destroy_ccq(struct irdma_pci_f *rf)
 	struct irdma_ccq *ccq = &rf->ccq;
 	int status = 0;
 
+	if (rf->cqp_cmpl_wq)
+		destroy_workqueue(rf->cqp_cmpl_wq);
+
 	if (!rf->reset)
 		status = irdma_sc_ccq_destroy(dev->ccq, 0, true);
 	if (status)




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux