CVE-2026-23148
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
14/02/2026
Last modified:
14/02/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
nvmet: fix race in nvmet_bio_done() leading to NULL pointer dereference<br />
<br />
There is a race condition in nvmet_bio_done() that can cause a NULL<br />
pointer dereference in blk_cgroup_bio_start():<br />
<br />
1. nvmet_bio_done() is called when a bio completes<br />
2. nvmet_req_complete() is called, which invokes req->ops->queue_response(req)<br />
3. The queue_response callback can re-queue and re-submit the same request<br />
4. The re-submission reuses the same inline_bio from nvmet_req<br />
5. Meanwhile, nvmet_req_bio_put() (called after nvmet_req_complete)<br />
invokes bio_uninit() for inline_bio, which sets bio->bi_blkg to NULL<br />
6. The re-submitted bio enters submit_bio_noacct_nocheck()<br />
7. blk_cgroup_bio_start() dereferences bio->bi_blkg, causing a crash:<br />
<br />
BUG: kernel NULL pointer dereference, address: 0000000000000028<br />
#PF: supervisor read access in kernel mode<br />
RIP: 0010:blk_cgroup_bio_start+0x10/0xd0<br />
Call Trace:<br />
submit_bio_noacct_nocheck+0x44/0x250<br />
nvmet_bdev_execute_rw+0x254/0x370 [nvmet]<br />
process_one_work+0x193/0x3c0<br />
worker_thread+0x281/0x3a0<br />
<br />
Fix this by reordering nvmet_bio_done() to call nvmet_req_bio_put()<br />
BEFORE nvmet_req_complete(). This ensures the bio is cleaned up before<br />
the request can be re-submitted, preventing the race condition.



