CVE-2022-49954
BaseFortify
Publication date: 2025-06-18
Last updated on: 2025-11-14
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 2.6.33 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | 6.0 |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-NVD-CWE-noinfo |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves the iforce input driver where a wake_up() call was missing after clearing the IFORCE_XMIT_RUNNING flag. This omission causes a hung task situation during device closure, specifically in iforce_close(), which waits indefinitely with a mutex held, blocking device unregistration. The issue was fixed by introducing a helper function that clears the flag and then calls wake_up_all() to properly wake waiting tasks.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to hang or become unresponsive when closing an iforce input device, due to tasks waiting indefinitely while holding a mutex. This can lead to system instability or degraded performance when using affected input devices.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is fixed by applying a patch that introduces a helper function which calls clear_bit() followed by wake_up_all() to ensure proper wake-up after clearing the IFORCE_XMIT_RUNNING flag. Immediate mitigation involves updating the Linux kernel to a version that includes this fix.