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

usb: typec: tcpci_rt1711h: unregister TCPCI port with devres

rt1711h_probe() registers the TCPCI port before requesting the interrupt
and enabling alert interrupts. If either of those later steps fails, the
probe function returns without unregistering the TCPCI port. The explicit
unregister currently only happens from the remove callback.

Register a devres action immediately after tcpci_register_port() succeeds,
so tcpci_unregister_port() runs on later probe failures and on driver
detach. Drop the remove callback to avoid unregistering the same port
twice.

This issue was identified during our ongoing static-analysis research while
reviewing kernel code.
Published: 2026-07-25
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability occurs when the Linux kernel’s rt1711h USB Type‑C driver registers a TCPCI port before validating that subsequent actions succeed. If the allocation of the interrupt or the enabling of alert interrupts fails, the driver’s probe routine exits without unregistering the port, leaving it registered and locked in kernel resources. This condition creates a memory/resource leak (CWE‑401) and exposes the kernel to a double‑unregister scenario on later driver detach, potentially destabilizing the system.

Affected Systems

All systems running a kernel that includes the unmodified rt1711h driver are affected. The flaw exists in any kernel version that ships the driver as shipped, although specific version ranges are not disclosed in the CVE data.

Risk and Exploitability

The EPSS score indicates an exploitation probability of less than 1 %, and the flaw is not listed in CISA’s KEV catalog. The CVSS score of 7.8 reflects high severity, but the overall risk remains low to moderate because the attack surface is limited to local system or privileged users who could trigger a probe failure, such as by removing the device or forcing a driver reload. The flaw does not provide remote code execution or privilege escalation.

Generated by OpenCVE AI on August 2, 2026 at 12:32 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply a kernel update that includes the patch adding a devres action after the TCPCI port registration, eliminating the resource leak identified by CWE‑401.
  • If a patched kernel is not yet available, unload or blacklist the rt1711h module to prevent automatic registration until the issue is resolved.
  • Configure udev rules to block the rt1711h driver when the device is connected, ensuring the driver does not load in the kernel.

Generated by OpenCVE AI on August 2, 2026 at 12:32 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4724-1 linux-6.12 new package
History

Thu, 30 Jul 2026 12:15:00 +0000

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

None

threat_severity

Moderate


Tue, 28 Jul 2026 16:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-401

Mon, 27 Jul 2026 05:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Sat, 25 Jul 2026 09:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: usb: typec: tcpci_rt1711h: unregister TCPCI port with devres rt1711h_probe() registers the TCPCI port before requesting the interrupt and enabling alert interrupts. If either of those later steps fails, the probe function returns without unregistering the TCPCI port. The explicit unregister currently only happens from the remove callback. Register a devres action immediately after tcpci_register_port() succeeds, so tcpci_unregister_port() runs on later probe failures and on driver detach. Drop the remove callback to avoid unregistering the same port twice. This issue was identified during our ongoing static-analysis research while reviewing kernel code.
Title usb: typec: tcpci_rt1711h: unregister TCPCI port with devres
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-08-05T12:42:19.410Z

Reserved: 2026-07-19T15:36:31.789Z

Link: CVE-2026-64463

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-07-25T10:17:31.543

Modified: 2026-07-27T05:16:52.667

Link: CVE-2026-64463

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-07-25T00:00:00Z

Links: CVE-2026-64463 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-02T12:45:06Z

Weaknesses
  • CWE-401

    Missing Release of Memory after Effective Lifetime

  • CWE-459

    Incomplete Cleanup