powerpc64/kasan: Pass virtual addresses to kasan_init_phys_region()
The kasan_init_phys_region() function maps shadow pages necessary for the ranges of the linear map backed by physical pages. Currently kasan_init_phys_region() is being passed physical addresses, but kasan_mem_to_shadow() expects virtual addresses. It works right now because the lower bits (12:64) of the kasan_mem_to_shadow() calculation are the same for the real and virtual addresses, so the actual PTE value is the same in the end. But virtual addresses are the intended input, so fix it. Signed-off-by: Benjamin Gray <bgray@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20240212045020.70364-1-bgray@linux.ibm.com
This commit is contained in:
committed by
Michael Ellerman
parent
ad679719d7
commit
295454eda9
@@ -112,7 +112,7 @@ void __init kasan_init(void)
|
||||
pte_t zero_pte = pfn_pte(virt_to_pfn(kasan_early_shadow_page), PAGE_KERNEL_RO);
|
||||
|
||||
for_each_mem_range(i, &start, &end)
|
||||
kasan_init_phys_region((void *)start, (void *)end);
|
||||
kasan_init_phys_region(phys_to_virt(start), phys_to_virt(end));
|
||||
|
||||
if (IS_ENABLED(CONFIG_KASAN_VMALLOC))
|
||||
kasan_remove_zero_shadow((void *)VMALLOC_START, VMALLOC_SIZE);
|
||||
|
||||
@@ -62,7 +62,7 @@ void __init kasan_init(void)
|
||||
}
|
||||
|
||||
for_each_mem_range(i, &start, &end)
|
||||
kasan_init_phys_region((void *)start, (void *)end);
|
||||
kasan_init_phys_region(phys_to_virt(start), phys_to_virt(end));
|
||||
|
||||
for (i = 0; i < PTRS_PER_PTE; i++)
|
||||
__set_pte_at(&init_mm, (unsigned long)kasan_early_shadow_page,
|
||||
|
||||
Reference in New Issue
Block a user