mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
arm64: fix KASLR boot-time I-cache maintenance
Commitf80fb3a3d5
("arm64: add support for kernel ASLR") missed a DSB necessary to complete I-cache maintenance in the primary boot path, and hence stale instructions may still be present in the I-cache and may be executed until the I-cache maintenance naturally completes. Since commit8ec4198743
("arm64: mm: ensure patched kernel text is fetched from PoU"), all CPUs invalidate their I-caches after their MMU is enabled. Prior a CPU's MMU having been enabled, arbitrary lines may have been fetched from the PoC into I-caches. We never patch text expected to be executed with the MMU off. Thus, it is unnecessary to perform broadcast I-cache maintenance in the primary boot path. This patch reduces the scope of the I-cache maintenance to the local CPU, and adds the missing DSB with similar scope, matching prior maintenance in the primary boot path. Signed-off-by: Mark Rutland <mark.rutland@arm.com> Acked-by: Ard Biesehvuel <ard.biesheuvel@linaro.org> Cc: Will Deacon <will.deacon@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
This commit is contained in:
parent
b660950c60
commit
b90b4a608e
@ -766,8 +766,9 @@ __enable_mmu:
|
|||||||
|
|
||||||
msr sctlr_el1, x19 // re-enable the MMU
|
msr sctlr_el1, x19 // re-enable the MMU
|
||||||
isb
|
isb
|
||||||
ic ialluis // flush instructions fetched
|
ic iallu // flush instructions fetched
|
||||||
isb // via old mapping
|
dsb nsh // via old mapping
|
||||||
|
isb
|
||||||
add x27, x27, x23 // relocated __mmap_switched
|
add x27, x27, x23 // relocated __mmap_switched
|
||||||
#endif
|
#endif
|
||||||
br x27
|
br x27
|
||||||
|
Loading…
Reference in New Issue
Block a user