๐Ÿ” CVE Alert

CVE-2022-49371

MEDIUM 5.5

driver core: fix deadlock in __device_attach

CVSS Score
5.5
EPSS Score
0.0%
EPSS Percentile
0th

In the Linux kernel, the following vulnerability has been resolved: driver core: fix deadlock in __device_attach In __device_attach function, The lock holding logic is as follows: ... __device_attach device_lock(dev) // get lock dev async_schedule_dev(__device_attach_async_helper, dev); // func async_schedule_node async_schedule_node_domain(func) entry = kzalloc(sizeof(struct async_entry), GFP_ATOMIC); /* when fail or work limit, sync to execute func, but __device_attach_async_helper will get lock dev as well, which will lead to A-A deadlock. */ if (!entry || atomic_read(&entry_count) > MAX_WORK) { func; else queue_work_node(node, system_unbound_wq, &entry->work) device_unlock(dev) As shown above, when it is allowed to do async probes, because of out of memory or work limit, async work is not allowed, to do sync execute instead. it will lead to A-A deadlock because of __device_attach_async_helper getting lock dev. To fix the deadlock, move the async_schedule_dev outside device_lock, as we can see, in async_schedule_node_domain, the parameter of queue_work_node is system_unbound_wq, so it can accept concurrent operations. which will also not change the code logic, and will not lead to deadlock.

Vendor linux
Product linux
Ecosystems
Industries
Technology
Published Feb 26, 2025
Last Updated May 11, 2026
Stay Ahead of the Next One

Get instant alerts for linux linux

Be the first to know when new medium vulnerabilities affecting linux linux are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

Affected Versions

Linux / Linux
765230b5f084863183aa8adb3405ab3f32c0b16e < 593b595332bd2d65e1a5c1ae7897996c157f5468 765230b5f084863183aa8adb3405ab3f32c0b16e < 36ee9ffca8ef56c302f2855c4a5fccf61c0c1ada 765230b5f084863183aa8adb3405ab3f32c0b16e < df6de52b80aa3b46f5ac804412355ffe2e1df93e 765230b5f084863183aa8adb3405ab3f32c0b16e < d53a227bfcd5160ce1b61d9954901968a20651e7 765230b5f084863183aa8adb3405ab3f32c0b16e < 34fdd9b7def9d2fcb71bb7b0bc4848dd7313767e 765230b5f084863183aa8adb3405ab3f32c0b16e < b232b02bf3c205b13a26dcec08e53baddd8e59ed
Linux / Linux
4.2

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
git.kernel.org: https://git.kernel.org/stable/c/593b595332bd2d65e1a5c1ae7897996c157f5468 git.kernel.org: https://git.kernel.org/stable/c/36ee9ffca8ef56c302f2855c4a5fccf61c0c1ada git.kernel.org: https://git.kernel.org/stable/c/df6de52b80aa3b46f5ac804412355ffe2e1df93e git.kernel.org: https://git.kernel.org/stable/c/d53a227bfcd5160ce1b61d9954901968a20651e7 git.kernel.org: https://git.kernel.org/stable/c/34fdd9b7def9d2fcb71bb7b0bc4848dd7313767e git.kernel.org: https://git.kernel.org/stable/c/b232b02bf3c205b13a26dcec08e53baddd8e59ed