CVE-2024-58080: clk: qcom: dispcc-sm6350: Add missing parent_map for a clock
In the Linux kernel, the following vulnerability has been resolved:
clk: qcom: dispcc-sm6350: Add missing parent_map for a clock
If a clk_rcg2 has a parent, it should also have parent_map defined,
otherwise we'll get a NULL pointer dereference when calling clk_set_rate
like the following:
[ 3.388105] Call trace:
[ 3.390664] qcom_find_src_index+0x3c/0x70 (P)
[ 3.395301] qcom_find_src_index+0x1c/0x70 (L)
[ 3.399934] _freq_tbl_determine_rate+0x48/0x100
[ 3.404753] clk_rcg2_determine_rate+0x1c/0x28
[ 3.409387] clk_core_determine_round_nolock+0x58/0xe4
[ 3.421414] clk_core_round_rate_nolock+0x48/0xfc
[ 3.432974] clk_core_round_rate_nolock+0xd0/0xfc
[ 3.444483] clk_core_set_rate_nolock+0x8c/0x300
[ 3.455886] clk_set_rate+0x38/0x14c
Add the parent_map property for the clock where it's missing and also
un-inline the parent_data as well to keep the matching parent_map and
parent_data together.
Security readout for executives and security teams
Plain-English summary
This Linux kernel flaw can crash affected systems when Qualcomm SM6350 display clock code changes a clock rate. It is an availability issue, not a data theft or privilege escalation issue based on the supplied CVSS data. Business urgency is highest for fleets using affected Qualcomm-based devices or Debian kernels carrying the vulnerable code.
Executive priority
Treat as a moderate availability risk. Patch affected Qualcomm-based Linux devices during normal maintenance unless they support critical operations, where outage potential justifies faster scheduling. Do not prioritize above actively exploited or remote code execution vulnerabilities based on current evidence.
Technical view
The vulnerability is a NULL pointer dereference in the Qualcomm dispcc-sm6350 clock driver. A clk_rcg2 entry had parent data but no parent_map, so clk_set_rate can reach qcom_find_src_index and dereference NULL. The upstream fix adds the missing parent_map and keeps parent data and map together.
Likely exposure
Exposure is likely limited to Linux systems that include and use the Qualcomm SM6350 display clock controller code. General Linux server fleets without this hardware path are less likely exposed. Version evidence in the bundle is incomplete, so confirm against vendor kernel advisories and package changelogs.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high availability impact. The bundle does not indicate CISA KEV listing or active exploitation. No evidence provided supports remote exploitation, confidentiality loss, or integrity loss.
Researcher notes
Focus triage on downstream kernels carrying the SM6350 display clock driver. The supplied data names CWE-476 and CVSS 5.5. The affected-version ranges are not fully clear from the bundle, so validation should rely on exact vendor package versions or backported commit evidence.
Mitigation direction
Update to a vendor kernel containing the referenced stable fixes.
Apply Debian LTS kernel updates where Debian systems are affected.
For embedded fleets, obtain patched BSP or downstream kernel releases from the device vendor.
If patching is delayed, prioritize monitoring and reboot recovery for affected device classes.
Validation and detection
Inventory Linux kernel versions and Qualcomm SM6350-based devices.
Check vendor advisories or changelogs for the dispcc-sm6350 parent_map fix.
Review kernel logs for NULL dereferences involving qcom_find_src_index or clk_set_rate.
Verify patched kernels boot and display clock functionality remains stable.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.