]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
ublk: fix deadlock when reading partition table
authorMing Lei <ming.lei@redhat.com>
Fri, 12 Dec 2025 14:34:15 +0000 (22:34 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 18 Dec 2025 02:40:28 +0000 (19:40 -0700)
commitc258f5c4502c9667bccf5d76fa731ab9c96687c1
tree89dd03d822f57d23e0a39b9e4582438d84df3892
parenta58383fa45c706bda3bf4a1955c3a0327dbec7e7
ublk: fix deadlock when reading partition table

When one process(such as udev) opens ublk block device (e.g., to read
the partition table via bdev_open()), a deadlock[1] can occur:

1. bdev_open() grabs disk->open_mutex
2. The process issues read I/O to ublk backend to read partition table
3. In __ublk_complete_rq(), blk_update_request() or blk_mq_end_request()
   runs bio->bi_end_io() callbacks
4. If this triggers fput() on file descriptor of ublk block device, the
   work may be deferred to current task's task work (see fput() implementation)
5. This eventually calls blkdev_release() from the same context
6. blkdev_release() tries to grab disk->open_mutex again
7. Deadlock: same task waiting for a mutex it already holds

The fix is to run blk_update_request() and blk_mq_end_request() with bottom
halves disabled. This forces blkdev_release() to run in kernel work-queue
context instead of current task work context, and allows ublk server to make
forward progress, and avoids the deadlock.

Fixes: 71f28f3136af ("ublk_drv: add io_uring based userspace block driver")
Link: https://github.com/ublk-org/ublksrv/issues/170
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Reviewed-by: Caleb Sander Mateos <csander@purestorage.com>
[axboe: rewrite comment in ublk]
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/ublk_drv.c