CVE-2026-97906 PUBLISHED

bootconfig: Fix integer overflow in initrd size check

Assigner: Linux
Reserved: 25.09.2026 Published: 25.09.2026 Updated: 25.09.2026

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

bootconfig: Fix integer overflow in initrd size check

Sashiko reported that in get_boot_config_from_initrd(), a crafted initrd with a huge bootconfig size (such as 0xFFFFFFFF) can cause the pointer arithmetic:

<pre>data = ((void *)hdr) - size; </pre>

to wrap around on 32-bit systems (or when pointer subtraction overflows). Because data wraps around, the subsequent bounds check:

<pre>if ((unsigned long)data < initrd_start) </pre>

evaluates to false, bypassing the check. The kernel then calls xbc_calc_checksum(data, size), which attempts to read 4GB of memory, hitting unmapped pages and triggering a fatal kernel page fault during early boot. Furthermore, on 64-bit systems with an initrd > 4.29 GB, an unbounded 32-bit size can similarly bypass the initrd_start check.

Fix this by: 1. Ensuring the initrd is at least large enough to contain the bootconfig footer and verifying hdr is within the initrd bounds. 2. Checking that size does not exceed XBC_DATA_MAX and does not exceed the available space between initrd_start and hdr before performing pointer subtraction.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from de462e5f10718517bacf2f84c8aa2804567ef7df to 8d4343a411eaa182d323ab5b149496416015f27d (excl.)
  • affected from de462e5f10718517bacf2f84c8aa2804567ef7df to bff9a1579e2c9b2a59fdf3793becc9d7bf5ff1a6 (excl.)
  • affected from de462e5f10718517bacf2f84c8aa2804567ef7df to 7812d6dab0698001e50e8c2f901e17da3eb6f429 (excl.)
  • Version 32394df25d8e46935b442b429d74b37885c4f092 is affected
  • affected from 5.6.14 to 5.7 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.7 is affected
  • unaffected from 0 to 5.7 (excl.)
  • unaffected from 6.18.53 to 6.18.* (incl.)
  • unaffected from 7.2.7 to 7.2.* (incl.)
  • unaffected from 7.3-rc3 to * (incl.)

References