CVE-2024-41070·Kernel vulnerability
In the Linux kernel, the following vulnerability has been resolved: KVM: PPC: Book3S HV: Prevent UAF in kvm_spapr_tce_attach_iommu_group() Al reported a possible use-after-free (UAF) in kvm_spapr_tce_attach_iommu_group(). It looks up `stt` from tablefd, but then continues to use it after doing fdput() on the returned fd. After the fdput() the tablefd is free to be closed by another thread. The close calls kvm_spapr_tce_release() and then release_spapr_tce_table() (via call_rcu()) which frees `stt`. Although there are calls to rcu_read_lock() in kvm_spapr_tce_attach_iommu_group() they are not sufficient to prevent the UAF, because `stt` is used outside the locked regions. With an artifcial delay after the fdput() and a userspace program which triggers the race, KASAN detects the UAF: BUG: KASAN: slab-use-after-free in kvm_spapr_tce_attach_iommu_group+0x298/0x720 [kvm] Read of size 4 at addr c000200027552c30 by task kvm-vfio/2505 CPU: 54 PID: 2505 Comm: kvm-vfio Not tainted 6.10.0-rc3-next-20240612-dirty #1 Hardware name: 8335-GTH POWER9 0x4e1202 opal:skiboot-v6.5.3-35-g1851b2a06 PowerNV Call Trace: dump_stack_lvl+0xb4/0x108 (unreliable) print_report+0x2b4/0x6ec kasan_report+0x118/0x2b0 __asan_load4+0xb8/0xd0 kvm_spapr_tce_attach_iommu_group+0x298/0x720 [kvm] kvm_vfio_set_attr+0x524/0xac0 [kvm] kvm_device_ioctl+0x144/0x240 [kvm] sys_ioctl+0x62c/0x1810 system_call_exception+0x190/0x440 system_call_vectored_common+0x15c/0x2ec ... Freed by task 0: ... kfree+0xec/0x3e0 release_spapr_tce_table+0xd4/0x11c [kvm] rcu_core+0x568/0x16a0 handle_softirqs+0x23c/0x920 do_softirq_own_stack+0x6c/0x90 do_softirq_own_stack+0x58/0x90 __irq_exit_rcu+0x218/0x2d0 irq_exit+0x30/0x80 arch_local_irq_restore+0x128/0x230 arch_local_irq_enable+0x1c/0x30 cpuidle_enter_state+0x134/0x5cc cpuidle_enter+0x6c/0xb0 call_cpuidle+0x7c/0x100 do_idle+0x394/0x410 cpu_startup_entry+0x60/0x70 start_secondary+0x3fc/0x410 start_secondary_prolog+0x10/0x14 Fix it by delaying the fdput() until `stt` is no longer in use, which is effectively the entire function. To keep the patch minimal add a call to fdput() at each of the existing return paths. Future work can convert the function to goto or __cleanup style cleanup. With the fix in place the test case no longer triggers the UAF.
- Severity
- high
- Software
- Kernel
- Fixed in
- 6.9.11
- Published
- 2024-07-29
Affected versions
From: 6.7
Until: 6.9.11
Fixed in: 6.9.11
How to fix this CVE
Update your Linux kernel to version 6.9.11 or later to resolve a use-after-free vulnerability in KVM's SPAPR TCE IOMMU attachment code. This vulnerability could allow local attackers with appropriate privileges to trigger memory corruption. Apply the kernel update through your distribution's package manager and reboot the system.
sudo dnf update kernel kernel-devel && sudo rebootDefensia detects this vulnerability
How to check if you are affected
- Step 1: Check installed kernel version with 'uname -r' and compare against 6.9.11
- Step 2: Verify KVM is loaded with 'lsmod | grep kvm' and check if KVM/POWER architecture modules are present with 'lsmod | grep kvm_hv'
- Step 3: Search kernel logs for UAF-related errors with 'dmesg | grep -i "use-after-free\|kasan\|slab-use-after-free"'
- Step 4: After patching, confirm kernel update with 'uname -r' showing version 6.9.11 or later, then verify no KASAN errors appear in 'dmesg' during normal KVM operations
FAQ
What is CVE-2024-41070?
CVE-2024-41070 is a use-after-free vulnerability in the Linux kernel's KVM implementation for POWER architecture (Book3S HV). The flaw occurs in the kvm_spapr_tce_attach_iommu_group() function where a table structure is accessed after being released to memory management, potentially allowing local privilege escalation.
Is CVE-2024-41070 being actively exploited?
No, CVE-2024-41070 is not currently listed in CISA's Known Exploited Vulnerabilities catalog and no public exploits are available, though the vulnerability does require local access and KVM privileges to trigger.
What versions of Kernel are affected by CVE-2024-41070?
Linux kernel versions 6.7 through 6.9.10 are vulnerable. The fix is included in kernel 6.9.11 and later versions.
How do I check if my server is vulnerable to CVE-2024-41070?
Run 'uname -r' to display your kernel version. If it shows a version between 6.7 and 6.9.10, your system is vulnerable. Additionally check 'lsmod | grep kvm' to confirm KVM is active on your system.
Does Defensia detect CVE-2024-41070?
Yes — Defensia's CVE advisory scanner compares installed kernel package versions against the NVD database. If Linux kernel is installed on a monitored POWER architecture server, CVE-2024-41070 will appear in your dashboard with remediation steps.
Related Kernel CVEs
References
- https://git.kernel.org/stable/c/4cdf6926f443c84f680213c7aafbe6f91a5fcbc0
- https://git.kernel.org/stable/c/5f856023971f97fff74cfaf21b48ec320147b50a
- https://git.kernel.org/stable/c/82c7a4cf14aa866f8f7f09e662b02eddc49ee0bf
- https://git.kernel.org/stable/c/9975f93c760a32453d7639cf6fcf3f73b4e71ffe
- https://git.kernel.org/stable/c/a986fa57fd81a1430e00b3c6cf8a325d6f894a63
Track CVEs across your fleet automatically
Defensia scans your Linux servers and tells you exactly which ones are running vulnerable versions — including CVE-2024-41070. Free for 1 server.
Get started free