First published: Wed May 01 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: clk: Fix clk_core_get NULL dereference It is possible for clk_core_get to dereference a NULL in the following sequence: clk_core_get() of_clk_get_hw_from_clkspec() __of_clk_get_hw_from_provider() __clk_get_hw() __clk_get_hw() can return NULL which is dereferenced by clk_core_get() at hw->core. Prior to commit dde4eff47c82 ("clk: Look for parents with clkdev based clk_lookups") the check IS_ERR_OR_NULL() was performed which would have caught the NULL. Reading the description of this function it talks about returning NULL but that cannot be so at the moment. Update the function to check for hw before dereferencing it and return NULL if hw is NULL.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
redhat/kernel | <5.4.273 | 5.4.273 |
redhat/kernel | <5.10.214 | 5.10.214 |
redhat/kernel | <5.15.153 | 5.15.153 |
redhat/kernel | <6.1.83 | 6.1.83 |
redhat/kernel | <6.6.23 | 6.6.23 |
redhat/kernel | <6.7.11 | 6.7.11 |
redhat/kernel | <6.8.2 | 6.8.2 |
redhat/kernel | <6.9 | 6.9 |
Linux kernel | >=5.2<5.4.273 | |
Linux kernel | >=5.5<5.10.214 | |
Linux kernel | >=5.11<5.15.153 | |
Linux kernel | >=5.16<6.1.83 | |
Linux kernel | >=6.2<6.6.23 | |
Linux kernel | >=6.7<6.7.11 | |
Linux kernel | >=6.8<6.8.2 | |
Debian | =10.0 | |
debian/linux | 5.10.223-1 5.10.234-1 6.1.123-1 6.1.128-1 6.12.12-1 6.12.16-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-27038 has been identified as a significant vulnerability due to its potential for causing a NULL dereference in the Linux kernel.
To remediate CVE-2024-27038, upgrade to the kernel version 5.4.273 or newer, 5.10.214 or newer, 5.15.153 or newer, 6.1.83 or newer, 6.6.23 or newer, 6.7.11 or newer, 6.8.2, or 6.9.
CVE-2024-27038 affects various versions of the Linux kernel from 5.2 up to 6.9 and specific Debian Linux version 10.0.
The impact of CVE-2024-27038 includes possible system crashes or instability due to NULL pointer dereference.
Yes, CVE-2024-27038 has been resolved through patches in the updated kernel versions listed in the remediation section.