CVE-2025-71270 Overview
CVE-2025-71270 is a vulnerability in the Linux kernel affecting the LoongArch architecture's BPF JIT compiler. The issue involves improper handling of recoverable memory access errors (ADEM exceptions) generated by BPF_PROBE_MEM* instructions. When BPF programs perform memory access operations, the instructions may trigger Address Alignment Exception (ADE) conditions. While the kernel's built-in BPF exception table mechanism (EX_TYPE_BPF) generates corresponding exception fixup entries during JIT compilation, the architecture-specific trap handling function (do_ade()) was not properly calling the common fixup routine to achieve exception recovery.
Critical Impact
BPF programs executing on LoongArch systems may fail to safely handle memory access exceptions, potentially leading to kernel crashes or unstable system behavior when BPF_PROBE_MEM instructions encounter invalid memory addresses.
Affected Products
- Linux Kernel (LoongArch architecture)
- Systems using BPF JIT compilation on LoongArch processors
- LoongArch-based servers and workstations running affected kernel versions
Discovery Timeline
- 2026-03-18 - CVE CVE-2025-71270 published to NVD
- 2026-03-19 - Last updated in NVD database
Technical Details for CVE-2025-71270
Vulnerability Analysis
This vulnerability exists in the Linux kernel's LoongArch-specific exception handling code. The BPF subsystem includes a robust exception table mechanism designed to handle memory access errors gracefully, particularly for BPF_PROBE_MEM* instructions that intentionally access potentially invalid memory addresses for probing purposes. The EX_TYPE_BPF exception type generates fixup entries during JIT compilation to enable safe recovery from these expected exceptions.
However, the LoongArch architecture's do_ade() function, which handles Address Data Error (ADE) exceptions, was not properly integrated with this exception recovery mechanism. When ADEM (Address Data Error Memory) exceptions occurred during BPF program execution, the architecture-specific handler failed to invoke the common fixup routine that would allow the BPF program to recover gracefully.
Root Cause
The root cause is a missing integration between the LoongArch exception handler and the kernel's BPF exception fixup mechanism. The do_ade() function needed modification to proactively call the common fixup routine when handling exceptions from BPF program memory operations. Without this integration, recoverable memory access exceptions that should be safely handled by the BPF exception table mechanism could instead cause unexpected program termination or kernel instability.
Attack Vector
The vulnerability manifests when BPF programs using BPF_PROBE_MEM* instructions execute on LoongArch systems and encounter memory addresses that trigger ADEM exceptions. This is primarily a reliability and stability concern rather than a direct security exploit vector.
The attack surface is limited to scenarios where:
- The system runs on LoongArch architecture
- BPF programs with memory probing capabilities are loaded
- These programs access memory addresses that trigger alignment or access exceptions
Relevant test cases demonstrating the issue include illegal address access tests in module_attach and subprogs_extable within the kernel's BPF self-tests (selftests/bpf).
Detection Methods for CVE-2025-71270
Indicators of Compromise
- Unexpected kernel crashes or panics on LoongArch systems when running BPF programs
- Errors in system logs related to ADEM exceptions during BPF program execution
- BPF self-test failures in module_attach or subprogs_extable test modules
Detection Strategies
- Monitor kernel logs for ADEM exception messages on LoongArch systems running BPF workloads
- Run the BPF selftests (selftests/bpf) specifically targeting illegal address access scenarios
- Audit kernel versions on LoongArch deployments against the patched commit hashes
Monitoring Recommendations
- Enable kernel tracing for BPF-related exceptions on LoongArch systems
- Monitor for unexpected BPF program terminations or system stability issues
- Review dmesg output for ADE-related exception handling errors
How to Mitigate CVE-2025-71270
Immediate Actions Required
- Update the Linux kernel to a patched version containing the exception fixup integration
- Review LoongArch deployments running BPF programs for potential stability issues
- Test BPF workloads after applying patches to verify correct exception handling
Patch Information
The vulnerability has been resolved through multiple kernel commits that enable exception fixup for specific ADE subcodes on LoongArch architecture. The patches modify the do_ade() function to properly call the common fixup routine for EX_TYPE_BPF memory access exceptions, ensuring safe execution of BPF programs.
Patched commits are available from the kernel git repository:
- Commit 73ede654d9daa2ee41bdd17bc62946fc5a0258cb
- Commit 9bdc1ab5e4ce6f066119018d8f69631a46f9c5a0
- Commit c2ed4f71e9288f21d5c53ff790270758e60fa5f9
- Commit c49a28068363f3dca439aa5fe4d3b1f8159809fe
Workarounds
- Limit BPF program usage on affected LoongArch systems until patches are applied
- Disable BPF JIT compilation temporarily using net.core.bpf_jit_enable=0 sysctl setting
- Consider running critical BPF workloads on non-LoongArch systems while awaiting patches
# Temporarily disable BPF JIT compilation as a workaround
echo 0 > /proc/sys/net/core/bpf_jit_enable
# Verify BPF JIT is disabled
cat /proc/sys/net/core/bpf_jit_enable
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

