Skip to content
Snippets Groups Projects
Commit dc80b5a1 authored by James Morse's avatar James Morse Committed by Yongqiang Liu
Browse files

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

stable inclusion
from stable-v4.19.236
commit 9e056623dfc538909ed2a914f70a66d68ec71ec3
category: bugfix
bugzilla: 186460, https://gitee.com/src-openeuler/kernel/issues/I53MHA


CVE: CVE-2022-23960

--------------------------------

commit c47e4d04ba0f1ea17353d85d45f611277507e07a 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: default avatarRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
Signed-off-by: default avatarJames Morse <james.morse@arm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarChen Jiahao <chenjiahao16@huawei.com>
Reviewed-by: default avatarHanjun Guo <guohanjun@huawei.com>
Reviewed-by: default avatarLiao Chang <liaochang1@huawei.com>
Signed-off-by: default avatarYongqiang Liu <liuyongqiang13@huawei.com>
parent 8b3358cf
No related branches found
No related tags found
No related merge requests found
......@@ -1070,9 +1070,10 @@ alternative_else_nop_endif
sub \dst, \dst, PAGE_SIZE
.endm
.macro tramp_ventry, vector_start, regsize
.macro tramp_ventry, vector_start, regsize, kpti
.align 7
1:
.if \kpti == 1
.if \regsize == 64
msr tpidrro_el0, x30 // Restored in kernel_ventry
.endif
......@@ -1094,8 +1095,12 @@ alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
#endif
prfm plil1strm, [x30, #(1b - \vector_start)]
msr vbar_el1, x30
add x30, x30, #(1b - \vector_start + 4)
isb
.else
ldr x30, =vectors
.endif // \kpti == 1
add x30, x30, #(1b - \vector_start + 4)
ret
.org 1b + 128 // Did we overflow the ventry slot?
.endm
......@@ -1112,15 +1117,15 @@ alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
eret
.endm
.macro generate_tramp_vector
.macro generate_tramp_vector, kpti
.Lvector_start\@:
.space 0x400
.rept 4
tramp_ventry .Lvector_start\@, 64
tramp_ventry .Lvector_start\@, 64, \kpti
.endr
.rept 4
tramp_ventry .Lvector_start\@, 32
tramp_ventry .Lvector_start\@, 32, \kpti
.endr
.endm
......@@ -1131,7 +1136,7 @@ alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
.pushsection ".entry.tramp.text", "ax"
.align 11
ENTRY(tramp_vectors)
generate_tramp_vector
generate_tramp_vector kpti=1
END(tramp_vectors)
ENTRY(tramp_exit_native)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment