First published: Fri Apr 18 2025(Updated: )
In the Linux kernel, the following vulnerability has been resolved: HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition In the ssi_protocol_probe() function, &ssi->work is bound with ssip_xmit_work(), In ssip_pn_setup(), the ssip_pn_xmit() function within the ssip_pn_ops structure is capable of starting the work. If we remove the module which will call ssi_protocol_remove() to make a cleanup, it will free ssi through kfree(ssi), while the work mentioned above will be used. The sequence of operations that may lead to a UAF bug is as follows: CPU0 CPU1 | ssip_xmit_work ssi_protocol_remove | kfree(ssi); | | struct hsi_client *cl = ssi->cl; | // use ssi Fix it by ensuring that the work is canceled before proceeding with the cleanup in ssi_protocol_remove().
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2025-37838 has been classified as a critical vulnerability due to its potential to allow exploitation through a race condition.
To fix CVE-2025-37838, update your Linux kernel to the latest available version that addresses this vulnerability.
CVE-2025-37838 affects the Linux kernel, specifically systems running versions that include the vulnerable ssi_protocol driver.
The impact of CVE-2025-37838 includes potential denial of service or arbitrary code execution due to a use after free vulnerability.
Currently, there are no known workarounds for CVE-2025-37838, so applying the kernel update is the recommended action.