Patch "block: ublk: extending queue_size to fix overflow" has been added to the 6.1-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

    block: ublk: extending queue_size to fix overflow

to the 6.1-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:
     block-ublk-extending-queue_size-to-fix-overflow.patch
and it can be found in the queue-6.1 subdirectory.

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



commit 0fce056679bf830de1c3cfedf40ed027240fe5a0
Author: Liu Xiaodong <xiaodong.liu@xxxxxxxxx>
Date:   Tue Jan 31 02:05:52 2023 -0500

    block: ublk: extending queue_size to fix overflow
    
    [ Upstream commit 29baef789c838bd5c02f50c88adbbc6b955aaf61 ]
    
    When validating drafted SPDK ublk target, in a case that
    assigning large queue depth to multiqueue ublk device,
    ublk target would run into a weird incorrect state. During
    rounds of review and debug, An overflow bug was found
    in ublk driver.
    
    In ublk_cmd.h, UBLK_MAX_QUEUE_DEPTH is 4096 which means
    each ublk queue depth can be set as large as 4096. But
    when setting qd for a ublk device,
    sizeof(struct ublk_queue) + depth * sizeof(struct ublk_io)
    will be larger than 65535 if qd is larger than 2728.
    Then queue_size is overflowed, and ublk_get_queue()
    references a wrong pointer position. The wrong content of
    ublk_queue elements will lead to out-of-bounds memory
    access.
    
    Extend queue_size in ublk_device as "unsigned int".
    
    Signed-off-by: Liu Xiaodong <xiaodong.liu@xxxxxxxxx>
    Fixes: 71f28f3136af ("ublk_drv: add io_uring based userspace block driver")
    Reviewed-by: Ming Lei <ming.lei@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230131070552.115067-1-xiaodong.liu@xxxxxxxxx
    Signed-off-by: Jens Axboe <axboe@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
index e54693204630..6368b56eacf1 100644
--- a/drivers/block/ublk_drv.c
+++ b/drivers/block/ublk_drv.c
@@ -137,7 +137,7 @@ struct ublk_device {
 
 	char	*__queues;
 
-	unsigned short  queue_size;
+	unsigned int	queue_size;
 	struct ublksrv_ctrl_dev_info	dev_info;
 
 	struct blk_mq_tag_set	tag_set;



[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