]> git.baikalelectronics.ru Git - kernel.git/commit
efi/x86: Don't map the entire kernel text RW for mixed mode
authorArd Biesheuvel <ardb@kernel.org>
Mon, 13 Jan 2020 17:22:37 +0000 (18:22 +0100)
committerIngo Molnar <mingo@kernel.org>
Mon, 20 Jan 2020 07:13:01 +0000 (08:13 +0100)
commit16d6def9044522aa442aaa02255d643cab835c36
tree6cca34c1758374f07c855490b34d9e126f3734b7
parentc1a911657b235d6fac3eb109646bfcbe40175a5b
efi/x86: Don't map the entire kernel text RW for mixed mode

The mixed mode thunking routine requires a part of it to be
mapped 1:1, and for this reason, we currently map the entire
kernel .text read/write in the EFI page tables, which is bad.

In fact, the kernel_map_pages_in_pgd() invocation that installs
this mapping is entirely redundant, since all of DRAM is already
1:1 mapped read/write in the EFI page tables when we reach this
point, which means that .rodata is mapped read-write as well.

So let's remap both .text and .rodata read-only in the EFI
page tables.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20200113172245.27925-6-ardb@kernel.org
arch/x86/platform/efi/efi_64.c