arm64: entry: Make the kpti trampoline's kpti sequence optional

commit c47e4d04ba upstream.

Spectre-BHB needs to add sequences to the vectors. Having one global
set of vectors is a problem for big/little systems where the sequence
is costly on cpus that are not vulnerable.

Making the vectors per-cpu in the style of KVM's bh_harden_hyp_vecs
requires the vectors to be generated by macros.

Make the kpti re-mapping of the kernel optional, so the macros can be
used without kpti.

Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
James Morse
2022-04-06 17:45:35 +01:00
committed by Greg Kroah-Hartman
parent 283bcb8f64
commit 1f7da613bf

View File

@ -921,9 +921,10 @@ __ni_sys_trace:
sub \dst, \dst, PAGE_SIZE sub \dst, \dst, PAGE_SIZE
.endm .endm
.macro tramp_ventry, vector_start, regsize .macro tramp_ventry, vector_start, regsize, kpti
.align 7 .align 7
1: 1:
.if \kpti == 1
.if \regsize == 64 .if \regsize == 64
msr tpidrro_el0, x30 // Restored in kernel_ventry msr tpidrro_el0, x30 // Restored in kernel_ventry
.endif .endif
@ -945,8 +946,12 @@ __ni_sys_trace:
#endif #endif
prfm plil1strm, [x30, #(1b - \vector_start)] prfm plil1strm, [x30, #(1b - \vector_start)]
msr vbar_el1, x30 msr vbar_el1, x30
add x30, x30, #(1b - \vector_start + 4)
isb isb
.else
ldr x30, =vectors
.endif // \kpti == 1
add x30, x30, #(1b - \vector_start + 4)
ret ret
.org 1b + 128 // Did we overflow the ventry slot? .org 1b + 128 // Did we overflow the ventry slot?
.endm .endm
@ -963,15 +968,15 @@ __ni_sys_trace:
eret eret
.endm .endm
.macro generate_tramp_vector .macro generate_tramp_vector, kpti
.Lvector_start\@: .Lvector_start\@:
.space 0x400 .space 0x400
.rept 4 .rept 4
tramp_ventry .Lvector_start\@, 64 tramp_ventry .Lvector_start\@, 64, \kpti
.endr .endr
.rept 4 .rept 4
tramp_ventry .Lvector_start\@, 32 tramp_ventry .Lvector_start\@, 32, \kpti
.endr .endr
.endm .endm
@ -982,7 +987,7 @@ __ni_sys_trace:
.pushsection ".entry.tramp.text", "ax" .pushsection ".entry.tramp.text", "ax"
.align 11 .align 11
ENTRY(tramp_vectors) ENTRY(tramp_vectors)
generate_tramp_vector generate_tramp_vector kpti=1
END(tramp_vectors) END(tramp_vectors)
ENTRY(tramp_exit_native) ENTRY(tramp_exit_native)