[<prev] [next>] [day] [month] [year] [list]
Message-ID: <2025100700-CVE-2022-50554-f4fb@gregkh>
Date: Tue, 7 Oct 2025 17:21:12 +0200
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: linux-cve-announce@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...nel.org>
Subject: CVE-2022-50554: blk-mq: avoid double ->queue_rq() because of early timeout
From: Greg Kroah-Hartman <gregkh@...nel.org>
Description
===========
In the Linux kernel, the following vulnerability has been resolved:
blk-mq: avoid double ->queue_rq() because of early timeout
David Jeffery found one double ->queue_rq() issue, so far it can
be triggered in VM use case because of long vmexit latency or preempt
latency of vCPU pthread or long page fault in vCPU pthread, then block
IO req could be timed out before queuing the request to hardware but after
calling blk_mq_start_request() during ->queue_rq(), then timeout handler
may handle it by requeue, then double ->queue_rq() is caused, and kernel
panic.
So far, it is driver's responsibility to cover the race between timeout
and completion, so it seems supposed to be solved in driver in theory,
given driver has enough knowledge.
But it is really one common problem, lots of driver could have similar
issue, and could be hard to fix all affected drivers, even it isn't easy
for driver to handle the race. So David suggests this patch by draining
in-progress ->queue_rq() for solving this issue.
The Linux kernel CVE team has assigned CVE-2022-50554 to this issue.
Affected and fixed versions
===========================
Fixed in 6.0.16 with commit 7a73c54a3750895888ab586896736c9434e062a1
Fixed in 6.1.2 with commit 8b3d6b029a552d2978bbac275303d11419826a69
Fixed in 6.2 with commit 82c229476b8f6afd7e09bc4dc77d89dc19ff7688
Please see https://www.kernel.org for a full list of currently supported
kernel versions by the kernel community.
Unaffected versions might change over time as fixes are backported to
older supported kernel versions. The official CVE entry at
https://cve.org/CVERecord/?id=CVE-2022-50554
will be updated if fixes are backported, please check that for the most
up to date information about this issue.
Affected files
==============
The file(s) affected by this issue are:
block/blk-mq.c
Mitigation
==========
The Linux kernel CVE team recommends that you update to the latest
stable kernel version for this, and many other bugfixes. Individual
changes are never tested alone, but rather are part of a larger kernel
release. Cherry-picking individual commits is not recommended or
supported by the Linux kernel community at all. If however, updating to
the latest release is impossible, the individual changes to resolve this
issue can be found at these commits:
https://git.kernel.org/stable/c/7a73c54a3750895888ab586896736c9434e062a1
https://git.kernel.org/stable/c/8b3d6b029a552d2978bbac275303d11419826a69
https://git.kernel.org/stable/c/82c229476b8f6afd7e09bc4dc77d89dc19ff7688
Powered by blists - more mailing lists