CVE-2024-35871
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
19/05/2024
Last modified:
22/01/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
riscv: process: Fix kernel gp leakage<br />
<br />
childregs represents the registers which are active for the new thread<br />
in user context. For a kernel thread, childregs->gp is never used since<br />
the kernel gp is not touched by switch_to. For a user mode helper, the<br />
gp value can be observed in user space after execve or possibly by other<br />
means.<br />
<br />
[From the email thread]<br />
<br />
The /* Kernel thread */ comment is somewhat inaccurate in that it is also used<br />
for user_mode_helper threads, which exec a user process, e.g. /sbin/init or<br />
when /proc/sys/kernel/core_pattern is a pipe. Such threads do not have<br />
PF_KTHREAD set and are valid targets for ptrace etc. even before they exec.<br />
<br />
childregs is the *user* context during syscall execution and it is observable<br />
from userspace in at least five ways:<br />
<br />
1. kernel_execve does not currently clear integer registers, so the starting<br />
register state for PID 1 and other user processes started by the kernel has<br />
sp = user stack, gp = kernel __global_pointer$, all other integer registers<br />
zeroed by the memset in the patch comment.<br />
<br />
This is a bug in its own right, but I&#39;m unwilling to bet that it is the only<br />
way to exploit the issue addressed by this patch.<br />
<br />
2. ptrace(PTRACE_GETREGSET): you can PTRACE_ATTACH to a user_mode_helper thread<br />
before it execs, but ptrace requires SIGSTOP to be delivered which can only<br />
happen at user/kernel boundaries.<br />
<br />
3. /proc/*/task/*/syscall: this is perfectly happy to read pt_regs for<br />
user_mode_helpers before the exec completes, but gp is not one of the<br />
registers it returns.<br />
<br />
4. PERF_SAMPLE_REGS_USER: LOCKDOWN_PERF normally prevents access to kernel<br />
addresses via PERF_SAMPLE_REGS_INTR, but due to this bug kernel addresses<br />
are also exposed via PERF_SAMPLE_REGS_USER which is permitted under<br />
LOCKDOWN_PERF. I have not attempted to write exploit code.<br />
<br />
5. Much of the tracing infrastructure allows access to user registers. I have<br />
not attempted to determine which forms of tracing allow access to user<br />
registers without already allowing access to kernel registers.
Impact
Base Score 3.x
7.10
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.15 (including) | 5.10.216 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.154 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.85 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.26 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.8.5 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.9:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.9:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:debian:debian_linux:10.0:*:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/00effef72c98294edb1efa87ffa0f6cfb61b36a4
- https://git.kernel.org/stable/c/9abc3e6f1116adb7a2d4fbb8ce20c37916976bf5
- https://git.kernel.org/stable/c/d14fa1fcf69db9d070e75f1c4425211fa619dfc8
- https://git.kernel.org/stable/c/d8dcba0691b8e42bddb61aab201e4d918a08e5d9
- https://git.kernel.org/stable/c/dff6072124f6df77bfd36951fbd88565746980ef
- https://git.kernel.org/stable/c/f6583444d7e78dae750798552b65a2519ff3ca84
- https://git.kernel.org/stable/c/00effef72c98294edb1efa87ffa0f6cfb61b36a4
- https://git.kernel.org/stable/c/9abc3e6f1116adb7a2d4fbb8ce20c37916976bf5
- https://git.kernel.org/stable/c/d14fa1fcf69db9d070e75f1c4425211fa619dfc8
- https://git.kernel.org/stable/c/d8dcba0691b8e42bddb61aab201e4d918a08e5d9
- https://git.kernel.org/stable/c/dff6072124f6df77bfd36951fbd88565746980ef
- https://git.kernel.org/stable/c/f6583444d7e78dae750798552b65a2519ff3ca84
- https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html



