Description
In the Linux kernel, the following vulnerability has been resolved:

net: thunderbolt: Release the Rx HopID that was handed out on mismatch

tb_xdomain_alloc_in_hopid() passes the wanted HopID to ida_alloc_range()
as the lower bound, so a taken id is not an error there: the allocator
returns the next free one above it. tbnet_connected_work() asks for the
peer's transmit path, treats any other id as a failure and returns
without releasing what it got, so that allocation stays live for the rest
of the XDomain connection with nothing left holding a reference to it.

Release the id when it is not the one we asked for, the same way the
error unwind at the end of the function releases the expected one.
Published: 2026-09-11
Score: 4.8 Medium
EPSS: < 1% Very Low
KEV: No
Impact: Resource Exhaustion / DoS
Action: Apply Patch
AI Analysis

Impact

In the Linux kernel's Thunderbolt networking module, the function tb_xdomain_alloc_in_hopid() assigns a HopID to XDomain connections without correctly releasing the ID when it does not match the expected value. Because tbnet_connected_work() silently consumes the allocated ID on failure and never frees it, the identifier remains reserved for the lifetime of the XDomain connection. This unreleased resource can accumulate over time, consuming the finite pool of HopIDs and potentially leading to exhaustion that disrupts new connections, effectively causing a denial of service.

Affected Systems

All Linux kernel distributions that include the Thunderbolt networking implementation are affected. No specific kernel version range is listed in the provided data, so the vulnerability applies to any kernel where this code path is present before the patch.

Risk and Exploitability

The CVSS score of 4.8 indicates moderate severity, and the EPSS is not available for this record. The vulnerability is not listed in the CISA KEV catalog, suggesting no known widespread exploitation at this time. Attackers would need local access to a system configured for Thunderbolt XDomain networking and to repeatedly initiate connections that trigger HopID allocation. The impact would mainly be resource exhaustion leading to service disruption.

Generated by OpenCVE AI on September 12, 2026 at 01:58 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to the latest version that includes the fix for CVE-2026-80990.
  • If the system does not require Thunderbolt networking, disable the Thunderbolt networking module or unbind the related driver.
  • Monitor and audit Thunderbolt XDomain connections for abnormal HopID allocation and consider limiting the number of concurrent XDomain connections to mitigate resource exhaustion.

Generated by OpenCVE AI on September 12, 2026 at 01:58 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sat, 12 Sep 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-772
References
Metrics threat_severity

None

cvssV3_1

{'score': 4.8, 'vector': 'CVSS:3.1/AV:A/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Important


Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net: thunderbolt: Release the Rx HopID that was handed out on mismatch tb_xdomain_alloc_in_hopid() passes the wanted HopID to ida_alloc_range() as the lower bound, so a taken id is not an error there: the allocator returns the next free one above it. tbnet_connected_work() asks for the peer's transmit path, treats any other id as a failure and returns without releasing what it got, so that allocation stays live for the rest of the XDomain connection with nothing left holding a reference to it. Release the id when it is not the one we asked for, the same way the error unwind at the end of the function releases the expected one.
Title net: thunderbolt: Release the Rx HopID that was handed out on mismatch
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-11T19:42:47.534Z

Reserved: 2026-08-26T14:34:25.811Z

Link: CVE-2026-80990

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:05.867

Modified: 2026-09-11T20:19:05.867

Link: CVE-2026-80990

cve-icon Redhat

Severity : Important

Publid Date: 2026-09-11T19:42:47Z

Links: CVE-2026-80990 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-12T02:00:07Z

Weaknesses
  • CWE-772

    Missing Release of Resource after Effective Lifetime