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

tipc: fix infinite loop in __tipc_nl_compat_dumpit

cmd->dumpit callback can return a negative errno, causing an infinite
loop due to the while(len) condition. As the loop never terminates,
genl_mutex is never released, and other tasks waiting on it starve in D
state.

Check dumpit's return value, propagate it and jump to err_out on error.
Published: 2026-08-10
Score: 5.5 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

An infinite loop in the Linux kernel’s TIPC subsystem causes the genl_mutex to remain held indefinitely when the cmd->dumpit callback returns a negative error. Because the loop never terminates, the mutex is never released, causing other kernel tasks waiting for it to block in the D state. The result is a denial of service to privileged processes and to kernel operations that require the mutex, as described by CWE-252.

Affected Systems

All Linux kernel releases that include the TIPC subsystem and lack the patch which checks the callback’s return value are vulnerable. The exact affected versions are not specified, but any kernel before the kernel commit that adds the error check may be at risk. Distributions should verify whether the kernel included in their system incorporates the relevant commit, or upgrade to a kernel that contains the fix.

Risk and Exploitability

The CVSS score of 5.5 and the EPSS score of less than 1% indicate a moderate severity and a very low probability of exploitation. The vulnerability is not listed in the CISA KEV catalog, indicating no widespread exploitation has been reported. The likely attack vector involves sending a TIPC netlink request that causes the callback to return an error; based on the description it is inferred that the attacker must be able to issue netlink messages with CAP_NET_ADMIN or root privileges to trigger the error path. Once triggered, the infinite loop will cause blocking of other kernel tasks, leading to service disruption.

Generated by OpenCVE AI on August 12, 2026 at 11:02 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply a kernel update that includes the patch adding a check for a negative return value in __tipc_nl_compat_dumpit and propagates the error to the err_out path.
  • If upgrading is not possible immediately, disable the TIPC subsystem by removing or blacklisting tipc.ko or configuring the kernel to omit TIPC support entirely, preventing the vulnerable code from being loaded.
  • Restrict access to the TIPC netlink interface by limiting CAP_NET_ADMIN privileges, e.g., using SELinux, AppArmor or seccomp policies to deny untrusted processes from issuing netlink requests.

Generated by OpenCVE AI on August 12, 2026 at 11:02 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Tue, 11 Aug 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-835
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

Low


Mon, 10 Aug 2026 18:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-252

Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: tipc: fix infinite loop in __tipc_nl_compat_dumpit cmd->dumpit callback can return a negative errno, causing an infinite loop due to the while(len) condition. As the loop never terminates, genl_mutex is never released, and other tasks waiting on it starve in D state. Check dumpit's return value, propagate it and jump to err_out on error.
Title tipc: fix infinite loop in __tipc_nl_compat_dumpit
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-19T16:33:05.750Z

Reserved: 2026-07-30T09:28:09.381Z

Link: CVE-2026-68313

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:21.177

Modified: 2026-08-19T17:20:41.973

Link: CVE-2026-68313

cve-icon Redhat

Severity : Low

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

Links: CVE-2026-68313 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-12T11:15:03Z

Weaknesses
  • CWE-252

    Unchecked Return Value

  • CWE-835

    Loop with Unreachable Exit Condition ('Infinite Loop')