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

usb: typec: ucsi: unregister debugfs entries on teardown

ucsi_register() creates per-instance debugfs entries, but
ucsi_unregister() keeps them around until ucsi_destroy().

Drivers like ucsi_glink that unregister/register the same UCSI
instance across remoteproc restart then try to create an already
existing debugfs directory and log:

debugfs: 'pmic_glink.ucsi.0' already exists in 'ucsi'

Unregister debugfs entries as part of ucsi_unregister(), and
clear ucsi->debugfs after freeing it so repeated unregister
paths remain safe.
Published: 2026-09-25
Score: n/a
EPSS: n/a
KEV: No
Impact: Resource Leak: debugfs entries remain after UCSI teardown, potentially causing duplicate directories and log clutter
Action: Apply Patch
AI Analysis

Impact

The Linux kernel bug causes UCSI instances to leave debugfs entries in place after ucsi_unregister() is called. The register function creates per-instance directories, but the unregister path fails to remove them until ucsi_destroy() is invoked. The result is that subsequent re-registrations create a directory that already exists, generating repeated debugfs error logs and leaving orphaned entries. While the vulnerability only affects internal kernel debug files, it can lead to a noisy kernel log, unnecessary debugfs growth, and in rare cases a denial‑of‑service condition if the directory creation repeatedly fails. The flaw is a classic error in resource cleanup and does not directly expose user data or offer remote code execution capabilities.

Affected Systems

All Linux kernel builds released before the bug fix are affected. This includes any distribution that has not applied the corresponding kernel patch. Drivers such as ucsi_glink, which register and unregister the same UCSI instance across remoteproc restarts, are most likely to trigger the issue.

Risk and Exploitability

The vulnerability requires local kernel execution to trigger; no remote network attack vector is defined. The CVSS score is not provided, and EPSS information is unavailable. The flaw is not listed in the CISA KEV catalog. Because the bug only corrupts debugfs entries and produces log spam, the overall risk level is low, but it can create operational noise and may affect service stability under high‑frequency reboot scenarios.

Generated by OpenCVE AI on September 25, 2026 at 16:44 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the kernel to a version that contains the UCSI debugfs cleanup patch from the Linux kernel repository
  • If immediate kernel upgrade is not possible, avoid re‑initializing UCSI instances across remoteproc restarts until the patch is applied
  • Monitor kernel logs for "debugfs: '…' already exists" messages and plan for a future kernel update if the symptom persists

Generated by OpenCVE AI on September 25, 2026 at 16:44 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 25 Sep 2026 17:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-404

Fri, 25 Sep 2026 13:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: usb: typec: ucsi: unregister debugfs entries on teardown ucsi_register() creates per-instance debugfs entries, but ucsi_unregister() keeps them around until ucsi_destroy(). Drivers like ucsi_glink that unregister/register the same UCSI instance across remoteproc restart then try to create an already existing debugfs directory and log: debugfs: 'pmic_glink.ucsi.0' already exists in 'ucsi' Unregister debugfs entries as part of ucsi_unregister(), and clear ucsi->debugfs after freeing it so repeated unregister paths remain safe.
Title usb: typec: ucsi: unregister debugfs entries on teardown
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-25T13:06:49.915Z

Reserved: 2026-09-25T10:25:14.456Z

Link: CVE-2026-100079

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-25T14:17:15.000

Modified: 2026-09-25T14:17:15.000

Link: CVE-2026-100079

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-25T16:45:08Z

Weaknesses
  • CWE-404

    Improper Resource Shutdown or Release