{
  "affected": [
    {
      "ranges": [
        {
          "events": [
            {
              "introduced": "a3eb95f891d6130b1fc03dd07a8b54cf0a5c8ab8"
            },
            {
              "fixed": "3fb51b3960342bbee563543f8d33710fd0fb5a96"
            },
            {
              "fixed": "8b2d8c70b969bf84f9e248bfaf2a7135129f2eb6"
            },
            {
              "fixed": "d98b92f3d57976ae185238946ec5ea0be32195aa"
            },
            {
              "fixed": "4c660ee8c809637909f4f7eb1017f7b9401c75c4"
            }
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "type": "GIT"
        }
      ]
    },
    {
      "package": {
        "ecosystem": "Linux",
        "name": "Kernel"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "4.2.0"
            },
            {
              "fixed": "6.12.110"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.13.0"
            },
            {
              "fixed": "6.18.52"
            }
          ],
          "type": "ECOSYSTEM"
        },
        {
          "events": [
            {
              "introduced": "6.19.0"
            },
            {
              "fixed": "7.2.6"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "database_specific": {
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/90xxx/CVE-2026-90109.json"
  },
  "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: sched: fix 32-bit backlog wrap in gred, bfifo and plug enqueue\n\ngred_enqueue(), bfifo_enqueue() and plug_enqueue() admit a packet when the\ncurrent backlog plus the packet length fits within the queue limit:\n\n  sch-\u003eqstats.backlog + qdisc_pkt_len(skb) \u003c= sch-\u003elimit (gred default VQ)\n  gred_backlog+qdisc_pkt_len(skb) \u003c= q-\u003elimit  (gred configured VQ)\n  sch-\u003eqstats.backlog + qdisc_pkt_len(skb) \u003c= sch-\u003elimit (bfifo)\n  sch-\u003eqstats.backlog + skb-\u003elen \u003c= q-\u003elimit             (plug)\n\nsch-\u003eqstats.backlog and q-\u003ebacklog are u32, and qdisc_pkt_len()/skb-\u003elen\nare unsigned int, so all sums are computed in 32 bits and wrap at 2^32.\nOnce the true backlog exceeds 4 GiB the wrapped sum becomes small and\nadmission keeps succeeding, so the queue grows without bound and the kernel\ncan be driven to OOM.\n\nPromote the sums to u64 so admission stops once the true backlog exceeds\nthe limit.  The limit is u32, so the bounded queue stays below 2^32 and\nthe stored u32 backlog never wraps.\n\nThe bug can only be reproduced as root (albeit with ridiculous setup):\n attach a gred (or bfifo/plug) qdisc with a limit near 4 GiB,\n leaving the default VQ unconfigured (for gred), and drive \u003e4 GiB of\n queued traffic (e.g. via a size table / stab to inflate qdisc_pkt_len,\n or sustained high-rate traffic). The u32 backlog+len sum wraps at 2^32,\n admission keeps succeeding, and the queue grows unboundedly to OOM.",
  "id": "CVE-2026-90109",
  "modified": "2026-09-18T03:30:26.000996240Z",
  "published": "2026-09-17T16:06:17.465Z",
  "references": [
    {
      "type": "PACKAGE",
      "url": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/3fb51b3960342bbee563543f8d33710fd0fb5a96"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/4c660ee8c809637909f4f7eb1017f7b9401c75c4"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/8b2d8c70b969bf84f9e248bfaf2a7135129f2eb6"
    },
    {
      "type": "WEB",
      "url": "https://git.kernel.org/stable/c/d98b92f3d57976ae185238946ec5ea0be32195aa"
    },
    {
      "type": "ADVISORY",
      "url": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/90xxx/CVE-2026-90109.json"
    },
    {
      "type": "ADVISORY",
      "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-90109"
    }
  ],
  "schema_version": "1.9.0",
  "summary": "net: sched: fix 32-bit backlog wrap in gred, bfifo and plug enqueue"
}