CVE-2022-48931
Published: Aug 22, 2024
Modified: May 11, 2026
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.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 7063fbf2261194f72ee75afca67b3b38b554b5fa - < 40805099af11f68c5ca7dbcfacf455da8f99f622affected 7063fbf2261194f72ee75afca67b3b38b554b5fa - < d1654de19d42f513b6cfe955cc77e7f427e05a77affected 7063fbf2261194f72ee75afca67b3b38b554b5fa - < a37024f7757c25550accdebf49e497ad6ae239feaffected 7063fbf2261194f72ee75afca67b3b38b554b5fa - < b7e2b91fcb5c78c414e33dc8d50642e307ca0c5aaffected 7063fbf2261194f72ee75afca67b3b38b554b5fa - < a7ab53d3c27dfe83bb594456b9f38a37796ec39b+3 more versions |
Linux | Linux | affected 2.6.16unaffected 0 - < 2.6.16unaffected 4.9.304 - <= 4.9.*unaffected 4.14.269 - <= 4.14.*unaffected 4.19.232 - <= 4.19.*+5 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now