{"id":"CVE-2026-98151","title":"In the Linux kernel, the following vulnerability has been resolved:\n\nbpf: Fix REG INVARIANTS VIOLATION on speculative pointer arithmetic\n\nTake the following unprivileged program as an example:\n\n\tr0 = bpf_map_lookup_elem(...)\t/* PTR_TO_MA…","summary":"In the Linux kernel, the following vulnerability has been resolved:\n\nbpf: Fix REG INVARIANTS VIOLATION on speculative pointer arithmetic\n\nTake the following unprivileged program as an example:\n\n\tr0 = bpf_map_lookup_elem(...)\t/* PTR_TO_MA…","severity":"none","vendor":"Linux","product":"Linux","affected":["Linux >= 5f99f312bd3bedb3b266b0d26376a8c500cdc97f < 21a681526c715aebb4f918b8c131583442d1b3d8","Linux >= 5f99f312bd3bedb3b266b0d26376a8c500cdc97f < d623a4a58bb238443505d5c2949d1182dcfc26b6","Linux >= 5f99f312bd3bedb3b266b0d26376a8c500cdc97f < 9f9477ae73de9c5a28e8ab7000d8097b078faee4","Linux >= 5f99f312bd3bedb3b266b0d26376a8c500cdc97f < 150aeba624e8b7cac51c39440d7e8e1fd11de9a0","Linux 6.8"],"published":"2026-09-25","updated":"2026-09-25","sourceUpdated":"2026-09-25T11:17:46.693","source":"NVD","sourceUrl":"https://nvd.nist.gov/vuln/detail/CVE-2026-98151","references":[{"url":"https://git.kernel.org/stable/c/150aeba624e8b7cac51c39440d7e8e1fd11de9a0","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/21a681526c715aebb4f918b8c131583442d1b3d8","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/9f9477ae73de9c5a28e8ab7000d8097b078faee4","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/d623a4a58bb238443505d5c2949d1182dcfc26b6","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"}],"tags":["nvd","cve.org"],"ingestedAt":"2026-09-25T11:06:38.806Z","slug":"CVE-2026-98151","body":"## Overview\n\nIn the Linux kernel, the following vulnerability has been resolved:\n\nbpf: Fix REG INVARIANTS VIOLATION on speculative pointer arithmetic\n\nTake the following unprivileged program as an example:\n\n\tr0 = bpf_map_lookup_elem(...)\t/* PTR_TO_MAP_VALUE, offset 0 */\n\t...\n\t14: r0 += r1\t\t\t/* r1 is a bounded scalar */\n\t15: r9 = r0\n\nLoading it triggers a verifier warning from reg_bounds_sanity_check():\n\n\tverifier bug: REG INVARIANTS VIOLATION (alu): const subreg tnum out\n\tof sync with range bounds r64={.base=0x0, .size=0x0}\n\tr32={.base=0x0, .size=0xffffffff} var_off=(0x0, 0x0)\n\nWhat happens:\n\n1. Processing insn 14 (r0 += r1) in adjust_ptr_min_max_vals(), the new\n   offset is computed into dst_reg's var_off and 32/64-bit ranges.\n\n2. Because pointer registers do not track 32-bit subregister bounds,\n   __mark_reg32_unbounded() first sets r32 to the full range; r32 is\n   re-derived from the offset at the end of the function by\n   reg_bounds_sync().\n\n3. On the unprivileged path, sanitize_ptr_alu() is called and, via\n   sanitize_speculative_path() -> push_stack(), snapshots the current\n   register state and schedules the next instruction (insn 15) to be\n   verified directly as a speculative path.\n\n4. That snapshot is taken between step 2 and the final reg_bounds_sync():\n   at this point dst_reg's var_off still holds the (const) original\n   offset while r32 has just been blanked to the full range, i.e. the two\n   are out of sync. When the speculative path later verifies insn 15\n   (r9 = r0), the inconsistent state reaches reg_bounds_sanity_check() and\n   trips the warning.\n\nvar_off and the 32-bit range must always be consistent. There are two\nways to keep the snapshot consistent:\n\n  1. sync var_off and r32 before the snapshot so they match, or\n  2. leave r32 at its original (already consistent) value and blank it\n     only after the snapshot.\n\nThe whole point of sanitize_ptr_alu() is to insert a harmless masking\nsequence that keeps the access in bounds under speculation, so the state\nit snapshots should faithfully represent that. Take approach 2: move\n__mark_reg32_unbounded() to after sanitize_ptr_alu(), so the speculative\nsnapshot keeps the pointer's original, consistent r32. The non-speculative\npath is unchanged: r32 is still blanked before the offset is applied and\nre-derived by reg_bounds_sync().\n\n## Remediation\n\nRefer to the linked advisories for vendor-supplied fixes and affected version ranges.","depth":"sunlit","depthScore":3,"depthScoreParts":{"impact":2.8,"likelihood":0,"exploitation":0,"ransomware":0},"changes":[]}