Re: [PATCH] x86/boot/64: Make level2_kernel_pgt pages invalid outside kernel area.

From: Dave Hansen
Date: Mon Sep 16 2019 - 10:25:54 EST


On 9/16/19 2:00 AM, Kirill A. Shutemov wrote:
>>> I think we also need to make it clear that this is workaround for a broken
>>> hardware: speculative execution must not trigger a halt.
>> I think the word broken is a bit loaded here. According to the UEFI
>> spec (version 2.8, page 167), "Regions that are backed by the physical
>> hardware, but are not supposed to be accessed by the OS, must be
>> returned as EfiReservedMemoryType." Our interpretation is that
>> includes speculative accesses.
> +Dave.
>
> I don't think it is. Speculative access is done by hardware, not OS.
>
> BTW, isn't it a BIOS issue?
>
> I believe it should have a way to hide a range of physical address space
> from OS or force a caching mode on to exclude it from speculative
> execution. Like setup MTRRs or something.

Ugh. I bet that was a fun one to chase down. Have the hardware
engineers learned a lesson or are they hiding behind the EFI spec in an
act of pure cowardice? ;)

The patch is small and fixes a real problem. The changelog is OK,
although I'd prefer some differentiation between "occupied by the
kernel" and the kernel *image*. The code is also gloriously free of any
comments about what it's doing or why.

But, I'm left with lots of questions:

Why do PMD-level changes fix this? Is it because we 2MB pad the kernel
image? Why can't we still get within 2MB of the memory address in
question? Is it in the lower 1MB, by chance? If this is all about
avoiding EFI reserved ranges, why doesn't the patch *LOOK* At EFI
reserved ranges?