Patch "scsi: core: Fix a race between scsi_done() and scsi_timeout()" has been added to the 6.0-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: core: Fix a race between scsi_done() and scsi_timeout()

to the 6.0-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-core-fix-a-race-between-scsi_done-and-scsi_time.patch
and it can be found in the queue-6.0 subdirectory.

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



commit 6066b817225078422c680f9f77f93152abf3e029
Author: Bart Van Assche <bvanassche@xxxxxxx>
Date:   Tue Oct 18 13:29:49 2022 -0700

    scsi: core: Fix a race between scsi_done() and scsi_timeout()
    
    [ Upstream commit 978b7922d3dca672b41bb4b8ce6c06ab77112741 ]
    
    If there is a race between scsi_done() and scsi_timeout() and if
    scsi_timeout() loses the race, scsi_timeout() should not reset the request
    timer. Hence change the return value for this case from BLK_EH_RESET_TIMER
    into BLK_EH_DONE.
    
    Although the block layer holds a reference on a request (req->ref) while
    calling a timeout handler, restarting the timer (blk_add_timer()) while a
    request is being completed is racy.
    
    Reviewed-by: Mike Christie <michael.christie@xxxxxxxxxx>
    Cc: Keith Busch <kbusch@xxxxxxxxxx>
    Cc: Christoph Hellwig <hch@xxxxxx>
    Cc: Ming Lei <ming.lei@xxxxxxxxxx>
    Cc: John Garry <john.garry@xxxxxxxxxx>
    Cc: Hannes Reinecke <hare@xxxxxxx>
    Reported-by: Adrian Hunter <adrian.hunter@xxxxxxxxx>
    Fixes: 15f73f5b3e59 ("blk-mq: move failure injection out of blk_mq_complete_request")
    Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx>
    Link: https://lore.kernel.org/r/20221018202958.1902564-2-bvanassche@xxxxxxx
    Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
index 448748e3fba5..f00212777f82 100644
--- a/drivers/scsi/scsi_error.c
+++ b/drivers/scsi/scsi_error.c
@@ -342,19 +342,11 @@ enum blk_eh_timer_return scsi_timeout(struct request *req)
 
 	if (rtn == BLK_EH_DONE) {
 		/*
-		 * Set the command to complete first in order to prevent a real
-		 * completion from releasing the command while error handling
-		 * is using it. If the command was already completed, then the
-		 * lower level driver beat the timeout handler, and it is safe
-		 * to return without escalating error recovery.
-		 *
-		 * If timeout handling lost the race to a real completion, the
-		 * block layer may ignore that due to a fake timeout injection,
-		 * so return RESET_TIMER to allow error handling another shot
-		 * at this command.
+		 * If scsi_done() has already set SCMD_STATE_COMPLETE, do not
+		 * modify *scmd.
 		 */
 		if (test_and_set_bit(SCMD_STATE_COMPLETE, &scmd->state))
-			return BLK_EH_RESET_TIMER;
+			return BLK_EH_DONE;
 		if (scsi_abort_command(scmd) != SUCCESS) {
 			set_host_byte(scmd, DID_TIME_OUT);
 			scsi_eh_scmd_add(scmd);



[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