Answer in brief
CVE-2026-68171 records a Unknown severity vulnerability in arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <8000a5f4d1d192f5bb3e4f29e7606a9460d376df || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <b7afd2a80593dde3f4a68c9a9f73752f9c340e85 || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <64ab0964c7db949abbd3c56268a220e2b77f7b9e || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <e59c2476ef755221da31f4e26f6b89712ecf50f1 || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <e057b94772328221405b067c3a85fe479b915dc8 | 8000a5f4d1d192f5bb3e4f29e7606a9460d376df, b7afd2a80593dde3f4a68c9a9f73752f9c340e85, 64ab0964c7db949abbd3c56268a220e2b77f7b9e, e59c2476ef755221da31f4e26f6b89712ecf50f1, e057b94772328221405b067c3a85fe479b915dc8 |
| Linux/Linuxgeneric | 4.8 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates When seccomp support was originally added to arm64 in a1ae65b21941 ("arm64: add seccomp support"), seccomp was erroneously called _before_ the ptrace syscall-enter-stop and therefore the tracer could trivially manipulate the syscall register state after the seccomp check had passed. This was subsequently fixed in a5cd110cb836 ("arm64/ptrace: run seccomp after ptrace") by moving the seccomp check after the tracer has run. Unfortunately, a decade later, that fix has been reported to be incomplete. On arm64, both the first argument to a syscall and its eventual return value are allocated to register x0. In order to facilitate syscall restarting and querying of syscall arguments on the syscall exit path, the original value of x0 is stashed in 'struct pt_regs::orig_x0' early during the syscall entry path and is returned for the first argument by syscall_get_arguments(). Unlike 32-bit Arm, this stashed value is not directly exposed via ptrace() and so changes to register x0 made by the tracer on a syscall-enter-stop are not reflected in 'orig_x0'. This means that seccomp, syscall tracepoints and audit can observe a stale value for the register compared to the argument that will be observed by the actual syscall. Re-sync 'orig_x0' from x0 on the syscall entry path following a potential ptrace stop (i.e. PTRACE_EVENTMSG_SYSCALL_ENTRY or SECCOMP_RET_TRACE). This behaviour is limited to native tasks (because compat tasks expose 'orig_r0' to ptrace) where the syscall is not being skipped (because x0 is updated to hold the return value of -ENOSYS in that case).
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-68171 records a Unknown severity vulnerability in arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <8000a5f4d1d192f5bb3e4f29e7606a9460d376df || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <b7afd2a80593dde3f4a68c9a9f73752f9c340e85 || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <64ab0964c7db949abbd3c56268a220e2b77f7b9e || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <e59c2476ef755221da31f4e26f6b89712ecf50f1 || >=a5cd110cb8369d6b37ef5ccfe56b3fa1338c9615 <e057b94772328221405b067c3a85fe479b915dc8 | 8000a5f4d1d192f5bb3e4f29e7606a9460d376df, b7afd2a80593dde3f4a68c9a9f73752f9c340e85, 64ab0964c7db949abbd3c56268a220e2b77f7b9e, e59c2476ef755221da31f4e26f6b89712ecf50f1, e057b94772328221405b067c3a85fe479b915dc8 |
| Linux/Linuxgeneric | 4.8 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates When seccomp support was originally added to arm64 in a1ae65b21941 ("arm64: add seccomp support"), seccomp was erroneously called _before_ the ptrace syscall-enter-stop and therefore the tracer could trivially manipulate the syscall register state after the seccomp check had passed. This was subsequently fixed in a5cd110cb836 ("arm64/ptrace: run seccomp after ptrace") by moving the seccomp check after the tracer has run. Unfortunately, a decade later, that fix has been reported to be incomplete. On arm64, both the first argument to a syscall and its eventual return value are allocated to register x0. In order to facilitate syscall restarting and querying of syscall arguments on the syscall exit path, the original value of x0 is stashed in 'struct pt_regs::orig_x0' early during the syscall entry path and is returned for the first argument by syscall_get_arguments(). Unlike 32-bit Arm, this stashed value is not directly exposed via ptrace() and so changes to register x0 made by the tracer on a syscall-enter-stop are not reflected in 'orig_x0'. This means that seccomp, syscall tracepoints and audit can observe a stale value for the register compared to the argument that will be observed by the actual syscall. Re-sync 'orig_x0' from x0 on the syscall entry path following a potential ptrace stop (i.e. PTRACE_EVENTMSG_SYSCALL_ENTRY or SECCOMP_RET_TRACE). This behaviour is limited to native tasks (because compat tasks expose 'orig_r0' to ptrace) where the syscall is not being skipped (because x0 is updated to hold the return value of -ENOSYS in that case).
Quoted source text, attributed separately from HOL analysis.