Overview
About vulnerability
In the Linux kernel, the following vulnerability has been resolved: nvmet: fix race in nvmet_bio_done() leading to NULL pointer dereference There is a race condition in nvmet_bio_done() that can cause a NULL pointer dereference in blk_cgroup_bio_start():
- nvmet_bio_done() is called when a bio completes
- nvmet_req_complete() is called, which invokes req->ops->queue_response(req)
- The queue_response callback can re-queue and re-submit the same request
- The re-submission reuses the same inline_bio from nvmet_req
- Meanwhile, nvmet_req_bio_put() (called after nvmet_req_complete) invokes bio_uninit() for inline_bio, which sets bio->bi_blkg to NULL
- The re-submitted bio enters submit_bio_noacct_nocheck()
- blk_cgroup_bio_start() dereferences bio->bi_blkg, causing a crash: BUG: kernel NULL pointer dereference, address: 0000000000000028 #PF: supervisor read access in kernel mode RIP: 0010:blk_cgroup_bio_start+0x10/0xd0 Call Trace: submit_bio_noacct_nocheck+0x44/0x250 nvmet_bdev_execute_rw+0x254/0x370 [nvmet] process_one_work+0x193/0x3c0 worker_thread+0x281/0x3a0 Fix this by reordering nvmet_bio_done() to call nvmet_req_bio_put() BEFORE nvmet_req_complete(). This ensures the bio is cleaned up before the request can be re-submitted, preventing the race condition. A race condition vulnerability was found in the NVMe target (nvmet) subsystem. In nvmet_bio_done(), the bio completion callback can re-queue and re-submit a request using the same inline_bio before bio_uninit() is called. When bio_uninit() subsequently sets bio->bi_blkg to NULL, the re-submitted bio causes a NULL pointer dereference in blk_cgroup_bio_start().
Details
KernelCare state
Live-patch status from KernelCare for each operating system.
| Operating system | Status | Covered kernels |
|---|---|---|
| Debian 13 | Planned | — |
| Ubuntu 24.04 | Released |
43 kernels
|
| Ubuntu 24.04 AWS | Planned | — |