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

inet: frags: publish queues before arming timer

inet_frag_create() arms the fragment queue timer before inserting the
queue into the fqdir rhashtable. If the namespace fragment timeout is
zero or negative, the timer can run before the queue is published.

The timer callback then marks the queue complete, tries to remove a node
that is not in the hash table yet, and drops the anticipated hash
reference. Creation can subsequently publish the completed queue without
restoring that reference, leaving a stale hash node after the caller drops
the remaining reference.

Publish the queue first and arm the timer while holding the queue lock.
This makes timer expiry wait until the queue is visible in the hash table,
so inet_frag_kill() can remove the node and balance the hash reference.
Published: 2026-08-22
Score: 9.8 Critical
EPSS: < 1% Very Low
KEV: No
Impact: Denial of Service
Action: Patch immediately
AI Analysis

Impact

The kernel’s inet fragment queue routine starts a timeout timer before adding the queue to the lookup hash table. If the fragment timeout is zero or negative, the timer can expire while the queue is still hidden. The callback then attempts to remove a node that is not yet present, dropping a reference that is never restored. This race can leave a stale hash entry, corrupt kernel memory, and cause a crash, resulting in a denial of service. The flaw stems from a race condition and improper removal logic, as reflected in CWE-367.

Affected Systems

All Linux kernel builds that include the inet fragment queue code are affected. No specific version range is listed, so the issue may exist in any kernel until the commit referenced in the advisory is merged.

Risk and Exploitability

Based on the description, it is inferred that delivering specially crafted fragmented IP traffic that triggers the faulty timer behavior is the likely attack vector, implying a network‑based attack vector. The EPSS score is less than 1%, and the vulnerability is not currently listed in the CISA KEV catalog, suggesting low public exploitation activity. Nonetheless, the CVSS score of 9.8 indicates a critical severity, and the risk remains significant until a patch is applied.

Generated by OpenCVE AI on August 25, 2026 at 17:52 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the system to a Linux kernel version that contains the commit 9f904dd3e4..., which reorders the queue publication and timer arming.
  • If an immediate kernel upgrade is not possible, configure the fragment timeout setting so that it is positive (greater than zero) to prevent the timer from firing before the queue is visible.
  • As a temporary precaution, filter or limit fragmented IP traffic that could exercise the vulnerable code path until the patch is deployed.

Generated by OpenCVE AI on August 25, 2026 at 17:52 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4777-1 linux security update
Debian DSA Debian DSA DSA-6477-1 linux security update
History

Thu, 27 Aug 2026 13:00:00 +0000


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

Type Values Removed Values Added
Weaknesses CWE-362

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

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

None

threat_severity

Important


Tue, 25 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Sat, 22 Aug 2026 19:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362

Sat, 22 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: inet: frags: publish queues before arming timer inet_frag_create() arms the fragment queue timer before inserting the queue into the fqdir rhashtable. If the namespace fragment timeout is zero or negative, the timer can run before the queue is published. The timer callback then marks the queue complete, tries to remove a node that is not in the hash table yet, and drops the anticipated hash reference. Creation can subsequently publish the completed queue without restoring that reference, leaving a stale hash node after the caller drops the remaining reference. Publish the queue first and arm the timer while holding the queue lock. This makes timer expiry wait until the queue is visible in the hash table, so inet_frag_kill() can remove the node and balance the hash reference.
Title inet: frags: publish queues before arming timer
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-27T12:39:58.332Z

Reserved: 2026-08-15T05:44:03.924Z

Link: CVE-2026-74662

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-22T16:16:39.993

Modified: 2026-08-27T13:18:36.303

Link: CVE-2026-74662

cve-icon Redhat

Severity : Important

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

Links: CVE-2026-74662 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-25T18:00:15Z

Weaknesses
  • CWE-367

    Time-of-check Time-of-use (TOCTOU) Race Condition