CVE-2022-48931
Last modified
CVE-2022-48931 is a medium-severity vulnerability rated 4.7/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: configfs: fix a race in configfs_{,un}register_subsystem() When configfs_register_subsystem() or configfs_unregister_subsystem() is executing link_group() or unlink_group(), it is possible that two processes add or delete list concurrently. Some unfortunate interleavings of them can cause kernel panic. One of cases is: A --> B --> C --> D A <-- B <-- C <-- D delete list_head *B | delete list_head *C --------------------------------|----------------------------------- configfs_unregister_subsystem | configfs_unregister_subsystem unlink_group | unlink_group unlink_obj | unlink_obj list_del_init | list_del_init __list_del_entry | __list_del_entry __list_del | __list_del // next == C | next->prev = prev | | next->prev = prev prev->next = next | | // prev == B | prev->next = next Fix this by adding mutex when calling link_group() or unlink_group(), but parent configfs_subsystem is NULL when config_item is root. So I create a mutex configfs_subsystem_mutex.. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: configfs: fix a race in configfs_{,un}register_subsystem() When configfs_register_subsystem() or configfs_unregister_subsystem() is executing link_group() or unlink_group(), it is possible that two processes add or delete list concurrently. Some unfortunate interleavings of them can cause kernel panic. One of cases is: A --> B --> C --> D A <-- B <-- C <-- D delete list_head *B | delete list_head *C --------------------------------|----------------------------------- configfs_unregister_subsystem | configfs_unregister_subsystem unlink_group | unlink_group unlink_obj | unlink_obj list_del_init | list_del_init __list_del_entry | __list_del_entry __list_del | __list_del // next == C | next->prev = prev | | next->prev = prev prev->next = next | | // prev == B | prev->next = next Fix this by adding mutex when calling link_group() or unlink_group(), but parent configfs_subsystem is NULL when config_item is root. So I create a mutex configfs_subsystem_mutex.
Metrics
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 2.6.16, < 4.9.304 |
| Linux | Linux Kernel | >= 4.10, < 4.14.269 |
| Linux | Linux Kernel | >= 4.15, < 4.19.232 |
| Linux | Linux Kernel | >= 4.20, < 5.4.182 |
| Linux | Linux Kernel | >= 5.5, < 5.10.103 |
| Linux | Linux Kernel | >= 5.11, < 5.15.26 |
| Linux | Linux Kernel | >= 5.16, < 5.16.12 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2022-48931?
How severe is CVE-2022-48931?
How do I fix CVE-2022-48931?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2022
- CVE-2022-48926In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2022-48927In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2022-48928In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48929In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-4893Rejected reason: DO NOT USE THIS CANDIDATE NUMBER. ConsultID…
- CVE-2022-48930In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48932In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48933In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48934In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48935In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2022-48936Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2022-48937In the Linux kernel, the following vulnerability has been re…3.3
Are you affected by CVE-2022-48931?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
