Patch "scsi: pm80xx: Fix pm8001_mpi_get_nvmd_resp() race condition" has been added to the 5.10-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

    scsi: pm80xx: Fix pm8001_mpi_get_nvmd_resp() race condition

to the 5.10-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:
     scsi-pm80xx-fix-pm8001_mpi_get_nvmd_resp-race-condit.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 8ed61a0e8334611bb88a367390e4f8f867c1b9b0
Author: yuuzheng <yuuzheng@xxxxxxxxxx>
Date:   Mon Nov 2 22:25:28 2020 +0530

    scsi: pm80xx: Fix pm8001_mpi_get_nvmd_resp() race condition
    
    [ Upstream commit 1f889b58716a5f5e3e4fe0e6742c1a4472f29ac1 ]
    
    A use-after-free or null-pointer error occurs when the 251-byte response
    data is copied from IOMB buffer to response message buffer in function
    pm8001_mpi_get_nvmd_resp().
    
    After sending the command get_nvmd_data(), the caller begins to sleep by
    calling wait_for_complete() and waits for the wake-up from calling
    complete() in pm8001_mpi_get_nvmd_resp(). Due to unexpected events (e.g.,
    interrupt), if response buffer gets freed before memcpy(), a use-after-free
    error will occur. To fix this, the complete() should be called after
    memcpy().
    
    Link: https://lore.kernel.org/r/20201102165528.26510-5-Viswas.G@xxxxxxxxxxxxxxxxx
    Acked-by: Jack Wang <jinpu.wang@xxxxxxxxxxxxxxx>
    Signed-off-by: yuuzheng <yuuzheng@xxxxxxxxxx>
    Signed-off-by: Viswas G <Viswas.G@xxxxxxxxxxxxx>
    Signed-off-by: Ruksar Devadi <Ruksar.devadi@xxxxxxxxxxxxx>
    Signed-off-by: Radha Ramachandran <radha@xxxxxxxxxx>
    Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
index 9e9a546da959..2054c2b03d92 100644
--- a/drivers/scsi/pm8001/pm8001_hwi.c
+++ b/drivers/scsi/pm8001/pm8001_hwi.c
@@ -3279,10 +3279,15 @@ pm8001_mpi_get_nvmd_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
 		pm8001_ha->memoryMap.region[NVMD].virt_ptr,
 		fw_control_context->len);
 	kfree(ccb->fw_control_context);
+	/* To avoid race condition, complete should be
+	 * called after the message is copied to
+	 * fw_control_context->usrAddr
+	 */
+	complete(pm8001_ha->nvmd_completion);
+	PM8001_MSG_DBG(pm8001_ha, pm8001_printk("Set nvm data complete!\n"));
 	ccb->task = NULL;
 	ccb->ccb_tag = 0xFFFFFFFF;
 	pm8001_tag_free(pm8001_ha, tag);
-	complete(pm8001_ha->nvmd_completion);
 }
 
 int pm8001_mpi_local_phy_ctl(struct pm8001_hba_info *pm8001_ha, void *piomb)




[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