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

net/sched: drr: clamp quantum in change class

drr_change_class() rejects explicit quantum==0 but falls back to
psched_mtu() with no floor. With a crafted size table qdisc_pkt_len
reaches ~2 GiB, so quantum=1 (or a zero psched_mtu on a headerless
device) makes the deficit-refill loop spin under the qdisc lock.

Add clamp_t(u32, quantum, 256, 1<<20) after the zero reject and on the
fallback path. The explicit-zero reject is preserved.

Conditions to recreate the bug:
CONFIG_NET_SCH_DRR=y. Requires CAP_NET_ADMIN (namespace-local via
unshare -Urn suffices).

tc qdisc add dev dummy0 root drr
tc class add dev dummy0 parent 1: classid 1:1 drr quantum 1
Published: 2026-09-25
Score: n/a
EPSS: n/a
KEV: No
Impact: Denial of Service
Action: Patch Now
AI Analysis

Impact

The vulnerability in Linux’s packet scheduler occurs when the deficit round‑robin (DRR) quantum value is set to zero; the code falls back to a measurement function that lacks a floor. A crafted traffic packet length can cause the quantum to approach 2 GiB, making the scheduler’s deficit‑refill loop spin while holding a network‑device lock. This results in a denial‑of‑service condition that consumes CPU cycles and can stall networking or overall system responsiveness. The flaw is an example of uncontrolled resource consumption (CWE‑674).

Affected Systems

All Linux kernels compiled with CONFIG_NET_SCH_DRR enabled are affected. The defect was present in all kernel versions prior to the commit that introduces a clamp on the quantum value; the patch is backported to the stable kernel, so newer kernels already include the fix. Systems that have not applied the update or that enable the DRR scheduler remain vulnerable.

Risk and Exploitability

The bug can be triggered only by an entity with CAP_NET_ADMIN (e.g., a local administrator or namespace‑level privileged user) by running a few commands to create a dummy interface and a DRR qdisc with an unsafe quantum. There is no evidence of a public exploit, and the vulnerability is not listed in the CISA KEV catalogue. The EPSS score is unavailable; however, the narrow attack surface and high impact suggest that the likelihood of exploitation is low, though a privileged insider could still cause a local denial of service through forced attachment of the problematic qdisc.

Generated by OpenCVE AI on September 25, 2026 at 15:18 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the kernel patch that clamps the DRR quantum to a safe range (the commit referenced in the advisory).
  • If the patch cannot yet be applied, disable CONFIG_NET_SCH_DRR or remove any DRR qdiscs on the system to eliminate the attack vector.
  • Restrict CAP_NET_ADMIN privileges to trusted users or processes so that only authorized administrators can configure qdiscs, mitigating the potential for accidental or malicious exploitation of the bug.

Generated by OpenCVE AI on September 25, 2026 at 15:18 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 25 Sep 2026 15:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-674

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

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net/sched: drr: clamp quantum in change class drr_change_class() rejects explicit quantum==0 but falls back to psched_mtu() with no floor. With a crafted size table qdisc_pkt_len reaches ~2 GiB, so quantum=1 (or a zero psched_mtu on a headerless device) makes the deficit-refill loop spin under the qdisc lock. Add clamp_t(u32, quantum, 256, 1<<20) after the zero reject and on the fallback path. The explicit-zero reject is preserved. Conditions to recreate the bug: CONFIG_NET_SCH_DRR=y. Requires CAP_NET_ADMIN (namespace-local via unshare -Urn suffices). tc qdisc add dev dummy0 root drr tc class add dev dummy0 parent 1: classid 1:1 drr quantum 1
Title net/sched: drr: clamp quantum in change class
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-25T10:23:34.738Z

Reserved: 2026-09-25T10:19:56.068Z

Link: CVE-2026-98010

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-25T11:17:29.320

Modified: 2026-09-25T11:17:29.320

Link: CVE-2026-98010

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-25T15:30:06Z

Weaknesses