CVE-2026-53036 Details
Description
In the Linux kernel, the following vulnerability has been resolved: bpf, arm64: Fix off-by-one in check_imm signed range check check_imm(bits, imm) is used in the arm64 BPF JIT to verify that a branch displacement (in arm64 instruction units) fits into the signed N-bit immediate field of a B, B.cond or CBZ/CBNZ encoding before it is handed to the encoder. The macro currently tests for (imm > 0 && imm >> bits) || (imm < 0 && ~imm >> bits) which admits values in [-2^N, 2^N) — effectively a signed (N+1)-bit range. A signed N-bit field only holds [-2^(N-1), 2^(N-1)), so the check admits one extra bit of range on each side. In particular, for check_imm19(), values in [2^18, 2^19) slip past the check but do not fit into the 19-bit signed imm19 field of B.cond. aarch64_insn_encode_immediate() then masks the raw value into the 19-bit field, setting bit 18 (the sign bit) and flipping a forward branch into a backward one. Same class of issue exists for check_imm26() and the B/BL encoding. Shift by (bits - 1) instead of bits so the actual signed N-bit range is enforced.
A vulnerability has been identified in the Linux kernel's BPF Just-In-Time (JIT) compiler for ARM64 architecture. The issue arises from an off-by-one error in the signed range check of branch displacements, which can lead to incorrect branch encoding. Specifically, the check allows values that exceed the valid range for signed N-bit immediates, particularly in the B.cond and B/BL instruction encodings. This flaw can cause a forward branch to be misinterpreted as a backward branch, potentially disrupting control flow in executed programs.
Users can upgrade to the latest version of the Linux kernel where this vulnerability has been fixed. The official Linux kernel Git repository includes the patch for this issue.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/1a113b5497297871699cd498b1b83542e0db7f15 | kernel.org | Patch |
| https://git.kernel.org/stable/c/1dd8be4ec722ce54e4cace59f3a4ba658111b3ec | kernel.org | Patch |
| https://git.kernel.org/stable/c/6927f0d6794aa73318bbfa929f1ff6065b0620df | kernel.org | Patch |
| https://git.kernel.org/stable/c/7fd3b41260c6120e7b60164afea5d961af6224f9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/a5dfeb3b61065039488342d43ae06d4729d955d4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/fb74defa1cca1a73177c0c761e641332e4f979a3 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-193 | Off-by-one Error | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 3.18, < 6.1.175 >= 6.2, < 6.6.141 >= 6.7, < 6.12.91 >= 6.13, < 6.18.33 >= 6.19, < 7.0.10 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jul 15, 2026 | Initial Analysis | [email protected] |
| Jun 28, 2026 | CVE Modified | kernel.org |
| Jun 24, 2026 | New CVE Received | kernel.org |