CVE-2026-80648
Last modified
CVE-2026-80648 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: pinctrl: spacemit: fix NULL check in spacemit_pin_set_config spacemit_pin_set_config() looks up the per-pin descriptor with spacemit_get_pin() then checks the wrong variable for failure: const struct spacemit_pin *spin = spacemit_get_pin(pctrl, pin); ... if (!pin) return -EINVAL; reg = spacemit_pin_to_reg(pctrl, spin->pin); pin is an unsigned int pin id, where 0 (GPIO_0 / gmac0_rxdv on K3) is a valid pin, so rejecting it here drops the PAD config write for the first pin of every group. On K3 Pico-ITX the GMAC RGMII group lists pin 0 as its first entry, so its drive-strength / bias configuration was silently ignored. The intended guard is against spacemit_get_pin() returning NULL when the pin id isn't in the SoC's pin table.
Description
In the Linux kernel, the following vulnerability has been resolved: pinctrl: spacemit: fix NULL check in spacemit_pin_set_config spacemit_pin_set_config() looks up the per-pin descriptor with spacemit_get_pin() then checks the wrong variable for failure: const struct spacemit_pin *spin = spacemit_get_pin(pctrl, pin); ... if (!pin) return -EINVAL; reg = spacemit_pin_to_reg(pctrl, spin->pin); pin is an unsigned int pin id, where 0 (GPIO_0 / gmac0_rxdv on K3) is a valid pin, so rejecting it here drops the PAD config write for the first pin of every group. On K3 Pico-ITX the GMAC RGMII group lists pin 0 as its first entry, so its drive-strength / bias configuration was silently ignored. The intended guard is against spacemit_get_pin() returning NULL when the pin id isn't in the SoC's pin table. Check spin instead, which both restores PAD setup for pin 0 and prevents a NULL deref on spin->pin.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= a83c29e1d145cca5240952100acd1cd60f25fb5f, < 7a551951ebeb5b3f05bdb04a73d4593869c984c4; >= a83c29e1d145cca5240952100acd1cd60f25fb5f, < d3b53f0eda26e442ff97016ad4a0724db8fd3781; >= a83c29e1d145cca5240952100acd1cd60f25fb5f, < 09c816e5c4d3a8d6d6e4b7537433e5e98505d934 |
| Linux | Linux | 6.13 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80648?
How severe is CVE-2026-80648?
How do I fix CVE-2026-80648?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-80642In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80643In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80644In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80645In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-80646In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-80647In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80649In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80650In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80651In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80652In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80653In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-80654In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-80648?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
