Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e44308e6 authored by Ard Biesheuvel's avatar Ard Biesheuvel Committed by Will Deacon
Browse files

arm64: insn: avoid virt_to_page() translations on core kernel symbols



Before restricting virt_to_page() to the linear mapping, ensure that
the text patching code does not use it to resolve references into the
core kernel text, which is mapped in the vmalloc area.

Signed-off-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
parent 22b6f3b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -96,7 +96,7 @@ static void __kprobes *patch_map(void *addr, int fixmap)
	if (module && IS_ENABLED(CONFIG_DEBUG_SET_MODULE_RONX))
	if (module && IS_ENABLED(CONFIG_DEBUG_SET_MODULE_RONX))
		page = vmalloc_to_page(addr);
		page = vmalloc_to_page(addr);
	else if (!module && IS_ENABLED(CONFIG_DEBUG_RODATA))
	else if (!module && IS_ENABLED(CONFIG_DEBUG_RODATA))
		page = virt_to_page(addr);
		page = pfn_to_page(PHYS_PFN(__pa(addr)));
	else
	else
		return addr;
		return addr;