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

llc: fix SAP refcount leak in llc_ui_autobind()

llc_ui_autobind() opens a SAP after choosing a dynamic LSAP.
llc_sap_open() returns a reference owned by the caller, and
llc_sap_add_socket() takes a second reference for the socket's
membership in the SAP hash tables.

llc_ui_bind() drops the caller's reference after adding the socket,
but llc_ui_autobind() keeps it. When the socket is closed,
llc_sap_remove_socket() releases only the socket reference, leaving
the SAP on llc_sap_list with sk_count == 0.

This is user-visible because repeated autobind and close cycles can consume
all dynamic SAP values and make later autobinds fail with -EUSERS.

Drop the caller's reference after a successful autobind, matching
llc_ui_bind()'s ownership model.
Published: 2026-08-15
Score: 5.5 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel’s LLC subsystem suffers from a reference‑count leak in the llc_ui_autobind() function. An extra reference to a Service Access Point (SAP) is retained after a successful auto‑bind and is not released when the socket closes. Repeated bind‑close cycles accumulate SAP entries with a zero reference count, eventually exhausting the dynamic SAP pool. When the pool is depleted, subsequent autobind attempts fail with an –EUSERS error, preventing services that rely on auto‑binding from establishing new connections and resulting in a denial of service.

Affected Systems

The flaw resides in the generic Linux kernel; therefore any distribution incorporating the affected kernel version is susceptible. The specific kernel releases that contain the buggy llc_ui_autobind logic are not enumerated in the provided data, so all Linux hosts running a kernel that has not yet been patched for this reference‑count bug could be impacted.

Risk and Exploitability

The CVSS score of 5.5 indicates moderate severity, and the EPSS score is <1%, suggesting a low but non‑zero likelihood of exploitation. The likely attack vector is repeated auto‑bind operations by a local or user‑level process against services that use the LLC layer. Based on the description, the exploit can only cause a local denial of service: SAP exhaustion leads to failed autobind attempts, but the flaw does not grant code execution or data exfiltration. No known wild exploitation or CISA KEV listing is reported.

Generated by OpenCVE AI on August 18, 2026 at 05:52 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that includes the llc_ui_autobind reference‑count fix, then reboot to apply the changes.
  • If an immediate kernel upgrade is not possible, temporarily disable LLC auto‑binding or limit the number of concurrent auto‑bind operations in application configuration to mitigate SAP exhaustion.
  • Apply any vendor‑specific advisory or patch that addresses the reference‑count bug.

Generated by OpenCVE AI on August 18, 2026 at 05:52 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 18 Aug 2026 04:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-400

Tue, 18 Aug 2026 00:15:00 +0000

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

None

cvssV3_1

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

threat_severity

Moderate


Sat, 15 Aug 2026 08:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-400

Sat, 15 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: llc: fix SAP refcount leak in llc_ui_autobind() llc_ui_autobind() opens a SAP after choosing a dynamic LSAP. llc_sap_open() returns a reference owned by the caller, and llc_sap_add_socket() takes a second reference for the socket's membership in the SAP hash tables. llc_ui_bind() drops the caller's reference after adding the socket, but llc_ui_autobind() keeps it. When the socket is closed, llc_sap_remove_socket() releases only the socket reference, leaving the SAP on llc_sap_list with sk_count == 0. This is user-visible because repeated autobind and close cycles can consume all dynamic SAP values and make later autobinds fail with -EUSERS. Drop the caller's reference after a successful autobind, matching llc_ui_bind()'s ownership model.
Title llc: fix SAP refcount leak in llc_ui_autobind()
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-17T05:06:45.278Z

Reserved: 2026-08-09T03:40:39.900Z

Link: CVE-2026-72022

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T06:21:01.193

Modified: 2026-08-17T06:17:59.853

Link: CVE-2026-72022

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-72022 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-18T06:00:04Z

Weaknesses
  • CWE-911

    Improper Update of Reference Count