CVE-2023-53531

Source
https://cve.org/CVERecord?id=CVE-2023-53531
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-53531.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2023-53531
Downstream
Related
Published
2025-10-01T11:46:15.949Z
Modified
2026-03-11T07:53:33.134886Z
Summary
null_blk: fix poll request timeout handling
Details

In the Linux kernel, the following vulnerability has been resolved:

null_blk: fix poll request timeout handling

When doing io_uring benchmark on /dev/nullb0, it's easy to crash the kernel if poll requests timeout triggered, as reported by David. [1]

BUG: kernel NULL pointer dereference, address: 0000000000000008 Workqueue: kblockd blkmqtimeoutwork RIP: 0010:nulltimeoutrq+0x4e/0x91 Call Trace: ? nulltimeoutrq+0x4e/0x91 blkmqhandleexpired+0x31/0x4b btiter+0x68/0x84 ? bttags_iter+0x81/0x81 __sbitmapforeach_set.constprop.0+0xb0/0xf2 ? __blkmqcompleterequestremote+0xf/0xf btforeach+0x46/0x64 ? __blkmqcompleterequestremote+0xf/0xf ? percpurefgetmany+0xc/0x2a blkmqqueuetagbusyiter+0x14d/0x18e blkmqtimeoutwork+0x95/0x127 processonework+0x185/0x263 workerthread+0x1b5/0x227

This is indeed a race problem between nulltimeoutrq() and null_poll().

nullpoll() nulltimeoutrq() spinlock(&nq->polllock) listspliceinit(&nq->polllist, &list) spinunlock(&nq->polllock)

while (!listempty(&list)) req = listfirstentry() listdelinit() ... blkmqaddtobatch() // req->rqnext = NULL spinlock(&nq->polllock)

                // rq->queuelist->next == NULL
                list_del_init(&rq->queuelist)

                spin_unlock(&nq->poll_lock)

Fix these problems by setting requests state to MQRQCOMPLETE under nq->polllock protection, in which nulltimeout_rq() can safely detect this race and early return.

Note this patch just fix the kernel panic when request timeout happen.

[1] https://lore.kernel.org/all/3893581.1691785261@warthog.procyon.org.uk/

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2023/53xxx/CVE-2023-53531.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0a593fbbc245a85940ed34caa3aa1e4cb060c54b
Fixed
a0b4a0666beacfe8add9c71d8922475541dbae73
Fixed
a7cb2e709f2927cc3c76781df3e45de2381b3b9d
Fixed
5a26e45edb4690d58406178b5a9ea4c6dcf2c105

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-53531.json"