]> git.ipfire.org Git - thirdparty/linux.git/commit
efi: Align unaccepted memory range to page boundary
authorKiryl Shutsemau (Meta) <kas@kernel.org>
Tue, 17 Feb 2026 10:49:57 +0000 (10:49 +0000)
committerArd Biesheuvel <ardb@kernel.org>
Wed, 18 Feb 2026 10:26:20 +0000 (11:26 +0100)
commit948a013a54c47d5eba06e644b99d4927a8bc62f8
treedc71b583cf70b1cd67d314843d36e1d36f2dc999
parent0862438c90487e79822d5647f854977d50381505
efi: Align unaccepted memory range to page boundary

The accept_memory() and range_contains_unaccepted_memory() functions
employ a "guard page" logic to prevent crashes with load_unaligned_zeropad().
This logic extends the range to be accepted (or checked) by one unit_size
if the end of the range is aligned to a unit_size boundary.

However, if the caller passes a range that is not page-aligned, the
'end' of the range might not be numerically aligned to unit_size, even
if it covers the last page of a unit. This causes the "if (!(end % unit_size))"
check to fail, skipping the necessary extension and leaving the next
unit unaccepted, which can lead to a kernel panic when accessed by
load_unaligned_zeropad().

Align the start address down and the size up to the nearest page
boundary before performing the unit_size alignment check. This ensures
that the guard unit is correctly added when the range effectively ends
on a unit boundary.

Signed-off-by: Kiryl Shutsemau (Meta) <kas@kernel.org>
Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
drivers/firmware/efi/unaccepted_memory.c