CVE-2022-48931

MEDIUM

Linux Kernel - Race Condition in configfs_subsystem Registration

Title source: llm
STIX 2.1

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.

Scores

CVSS v3 4.7
EPSS 0.0016
EPSS Percentile 6.0%
Attack Vector LOCAL
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H

CISA SSVC

Vulnrichment
Exploitation none
Automatable no
Technical Impact partial

Details

CWE
CWE-362
Status published
Products (26)
linux/Kernel 2.6.16 - 4.9.304linux
linux/Kernel 4.10.0 - 4.14.269linux
linux/Kernel 4.15.0 - 4.19.232linux
linux/Kernel 4.20.0 - 5.4.182linux
linux/Kernel 5.11.0 - 5.15.26linux
linux/Kernel 5.16.0 - 5.16.12linux
linux/Kernel 5.5.0 - 5.10.103linux
Linux/Linux < 2.6.16
Linux/Linux 2.6.16
Linux/Linux 4.14.269 - 4.14.*
... and 16 more
Published Aug 22, 2024
Tracked Since Feb 18, 2026