]> www.infradead.org Git - users/jedix/linux-maple.git/commit
arm64/kernel: Always use level 2 or higher for early mappings
authorArd Biesheuvel <ardb@kernel.org>
Tue, 11 Mar 2025 07:30:44 +0000 (08:30 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 13 Mar 2025 18:05:55 +0000 (18:05 +0000)
commitbf25266f83821697dc5cc3571ff5e079840db027
treeb7d272ad93023b0ce09ffd5926e73393d8fc0dd6
parent34e8e63a6dc1e71350b7d93c7db3f0370f2b3d75
arm64/kernel: Always use level 2 or higher for early mappings

The page table population code in map_range() uses a recursive algorithm
to create the early mappings of the kernel, the DTB and the ID mapped
text and data pages, and this fails to take into account that the way
these page tables may be constructed is not precisely the same at each
level. In particular, block mappings are not permitted at each level,
and the code as it exists today might inadvertently create such a
forbidden block mapping if it were used to map a region of the
appropriate size and alignment.

This never happens in practice, given the limited size of the assets
being mapped by the early boot code. Nonetheless, it would be better if
this code would behave correctly in all circumstances.

So only permit block mappings at level 2, and page mappings at level 3,
for any page size, and use table mappings exclusively at all other
levels. This change should have no impact in practice, but it makes the
code more robust.

Cc: Anshuman Khandual <anshuman.khandual@arm.com>
Reported-by: Ryan Roberts <ryan.roberts@arm.com>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Anshuman Khandual <anshuman.khandual@arm.com>
Reviewed-by: Ryan Roberts <ryan.roberts@arm.com>
Link: https://lore.kernel.org/r/20250311073043.96795-2-ardb+git@google.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/kernel/pi/map_range.c