Skip to content

Commit 8ad249b

Browse files
riteshharjanismb49
authored andcommitted
powerpc/mm/fault: Fix kfence page fault reporting
BugLink: https://bugs.launchpad.net/bugs/2101915 [ Upstream commit 06dbbb4d5f7126b6307ab807cbf04ecfc459b933 ] copy_from_kernel_nofault() can be called when doing read of /proc/kcore. /proc/kcore can have some unmapped kfence objects which when read via copy_from_kernel_nofault() can cause page faults. Since *_nofault() functions define their own fixup table for handling fault, use that instead of asking kfence to handle such faults. Hence we search the exception tables for the nip which generated the fault. If there is an entry then we let the fixup table handler handle the page fault by returning an error from within ___do_page_fault(). This can be easily triggered if someone tries to do dd from /proc/kcore. eg. dd if=/proc/kcore of=/dev/null bs=1M Some example false negatives: =============================== BUG: KFENCE: invalid read in copy_from_kernel_nofault+0x9c/0x1a0 Invalid read at 0xc0000000fdff0000: copy_from_kernel_nofault+0x9c/0x1a0 0xc00000000665f950 read_kcore_iter+0x57c/0xa04 proc_reg_read_iter+0xe4/0x16c vfs_read+0x320/0x3ec ksys_read+0x90/0x154 system_call_exception+0x120/0x310 system_call_vectored_common+0x15c/0x2ec BUG: KFENCE: use-after-free read in copy_from_kernel_nofault+0x9c/0x1a0 Use-after-free read at 0xc0000000fe050000 (in kfence-#2): copy_from_kernel_nofault+0x9c/0x1a0 0xc00000000665f950 read_kcore_iter+0x57c/0xa04 proc_reg_read_iter+0xe4/0x16c vfs_read+0x320/0x3ec ksys_read+0x90/0x154 system_call_exception+0x120/0x310 system_call_vectored_common+0x15c/0x2ec Fixes: 90cbac0 ("powerpc: Enable KFENCE for PPC32") Suggested-by: Christophe Leroy <christophe.leroy@csgroup.eu> Reported-by: Disha Goel <disgoel@linux.ibm.com> Signed-off-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com> Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://patch.msgid.link/a411788081d50e3b136c6270471e35aba3dfafa3.1729271995.git.ritesh.list@gmail.com Signed-off-by: Sasha Levin <sashal@kernel.org> CVE-2024-56678 Signed-off-by: Koichiro Den <koichiro.den@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent b70a56d commit 8ad249b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

arch/powerpc/mm/fault.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,10 +432,16 @@ static int ___do_page_fault(struct pt_regs *regs, unsigned long address,
432432
/*
433433
* The kernel should never take an execute fault nor should it
434434
* take a page fault to a kernel address or a page fault to a user
435-
* address outside of dedicated places
435+
* address outside of dedicated places.
436+
*
437+
* Rather than kfence directly reporting false negatives, search whether
438+
* the NIP belongs to the fixup table for cases where fault could come
439+
* from functions like copy_from_kernel_nofault().
436440
*/
437441
if (unlikely(!is_user && bad_kernel_fault(regs, error_code, address, is_write))) {
438-
if (kfence_handle_page_fault(address, is_write, regs))
442+
if (is_kfence_address((void *)address) &&
443+
!search_exception_tables(instruction_pointer(regs)) &&
444+
kfence_handle_page_fault(address, is_write, regs))
439445
return 0;
440446

441447
return SIGSEGV;

0 commit comments

Comments
 (0)