CVE-2026-23114: arm64/fpsimd: ptrace: Fix SVE writes on !SME systems
In the Linux kernel, the following vulnerability has been resolved:
arm64/fpsimd: ptrace: Fix SVE writes on !SME systems
When SVE is supported but SME is not supported, a ptrace write to the
NT_ARM_SVE regset can place the tracee into an invalid state where
(non-streaming) SVE register data is stored in FP_STATE_SVE format but
TIF_SVE is clear. This can result in a later warning from
fpsimd_restore_current_state(), e.g.
WARNING: CPU: 0 PID: 7214 at arch/arm64/kernel/fpsimd.c:383 fpsimd_restore_current_state+0x50c/0x748
When this happens, fpsimd_restore_current_state() will set TIF_SVE,
placing the task into the correct state. This occurs before any other
check of TIF_SVE can possibly occur, as other checks of TIF_SVE only
happen while the FPSIMD/SVE/SME state is live. Thus, aside from the
warning, there is no functional issue.
This bug was introduced during rework to error handling in commit:
9f8bf718f2923 ("arm64/fpsimd: ptrace: Gracefully handle errors")
... where the setting of TIF_SVE was moved into a block which is only
executed when system_supports_sme() is true.
Fix this by removing the system_supports_sme() check. This ensures that
TIF_SVE is set for (SVE-formatted) writes to NT_ARM_SVE, at the cost of
unconditionally manipulating the tracee's saved svcr value. The
manipulation of svcr is benign and inexpensive, and we already do
similar elsewhere (e.g. during signal handling), so I don't think it's
worth guarding this with system_supports_sme() checks.
Aside from the above, there is no functional change. The 'type' argument
to sve_set_common() is only set to ARM64_VEC_SME (in ssve_set())) when
system_supports_sme(), so the ARM64_VEC_SME case in the switch statement
is still unreachable when !system_supports_sme(). When
CONFIG_ARM64_SME=n, the only caller of sve_set_common() is sve_set(),
and the compiler can constant-fold for the case where type is
ARM64_VEC_SVE, removing the logic for other cases.
Security readout for executives and security teams
Plain-English summary
This is a Linux kernel correctness bug affecting specific ARM64 systems. A debugger-style register write can put a process into an inconsistent internal state, causing a kernel warning. The source says the kernel corrects the state before other checks, with no functional issue beyond the warning.
Executive priority
Handle through normal kernel maintenance unless affected ARM64/SVE systems are critical, noisy kernel warnings affect operations, or policy requires rapid CVE closure. Current evidence supports low urgency, not emergency response.
Technical view
On ARM64 systems with SVE but without SME, ptrace writes to NT_ARM_SVE can store SVE data while TIF_SVE remains clear. fpsimd_restore_current_state() later sets TIF_SVE and emits a warning. The fix removes an SME support check so SVE writes set TIF_SVE consistently.
Likely exposure
Exposure appears limited to affected Linux kernel versions on arm64 hardware that supports SVE but not SME. The bundle identifies Linux 6.16, 6.18.8, and 6.19 metadata as affected, but downstream distribution backports require vendor verification.
Exploitation context
The provided sources do not report active exploitation, KEV listing, privilege escalation, code execution, or data exposure. The described trigger involves ptrace register writes and results in a warning, with the source explicitly stating no functional issue aside from that warning.
Researcher notes
Evidence is narrow and kernel-specific. The CVE text says the bad state is corrected before other TIF_SVE checks and that the patch makes no functional change aside from avoiding the warning. No CWE, CVSS, or exploit evidence is provided.
Mitigation direction
Check Linux distribution advisories for CVE-2026-23114 coverage.
Update affected kernels to builds containing the referenced stable fixes.
Prioritize arm64 hosts with SVE support and no SME support.
Track downstream kernel backports rather than relying only on upstream version numbers.
Validation and detection
Inventory Linux kernel versions on arm64 systems.
Confirm whether deployed ARM64 hardware supports SVE without SME.
Review vendor changelogs for the referenced stable commits.
Review kernel logs for fpsimd_restore_current_state warnings.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cve · low confidence lookup
CVE-2026-23114 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
0CVSS vectors
3Timeline events
0ADP providers
3Source links
Vulnerability timeline
Timeline events are normalized from CVE metadata, CNA source timelines, ADP timelines, and KEV metadata when present.
CVE reservedCVE Program
The CVE ID was reserved by the assigning CNA.
CVE publishedCVE Program
The CVE record was published.
Feb 14, 2026, 15:09 UTC (UTC+00:00)
CVE updatedCVE Program
The CVE record metadata indicates this as the latest update time.