CVE-2024-56700
Published: Dec 28, 2024
Modified: May 11, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: media: wl128x: Fix atomicity violation in fmc_send_cmd() Atomicity violation occurs when the fmc_send_cmd() function is executed simultaneously with the modification of the fmdev->resp_skb value. Consider a scenario where, after passing the validity check within the function, a non-null fmdev->resp_skb variable is assigned a null value. This results in an invalid fmdev->resp_skb variable passing the validity check. As seen in the later part of the function, skb = fmdev->resp_skb; when the invalid fmdev->resp_skb passes the check, a null pointer dereference error may occur at line 478, evt_hdr = (void *)skb->data; To address this issue, it is recommended to include the validity check of fmdev->resp_skb within the locked section of the function. This modification ensures that the value of fmdev->resp_skb does not change during the validation process, thereby maintaining its validity. This possible bug is found by an experimental static analysis tool developed by our team. This tool analyzes the locking APIs to extract function pairs that can be concurrently executed, and then analyzes the instructions in the paired functions to identify possible concurrency bugs including data races and atomicity violations.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected e8454ff7b9a4d56f02c095bff12d3c92ef4c7fa6 - < d16109c9fdc1b8cea4fe63b42e06e926c3f68990affected e8454ff7b9a4d56f02c095bff12d3c92ef4c7fa6 - < 3c818ad07e964bca3d27adac1e1f50e1e3c9180eaffected e8454ff7b9a4d56f02c095bff12d3c92ef4c7fa6 - < d7408a052aa1b4f6fb6f1c7a8877b84017a07ac9affected e8454ff7b9a4d56f02c095bff12d3c92ef4c7fa6 - < ed228b74d8a500380150965d5becabf9a1e33141affected e8454ff7b9a4d56f02c095bff12d3c92ef4c7fa6 - < 372dc9509122e5d45d4c12978e31c3c7d00aaca4+4 more versions |
Linux | Linux | affected 2.6.39unaffected 0 - < 2.6.39unaffected 4.19.325 - <= 4.19.*unaffected 5.4.287 - <= 5.4.*unaffected 5.10.231 - <= 5.10.*+6 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