This test uses the PMU to count branch prediction hits/misses for a
known loop, and compare the result to the reported spectre v2
mitigation.
This gives us a way of sanity checking that the reported mitigation is
actually in effect.
Sample output for some cases, eg:
Power9:
sysfs reports: 'Vulnerable'
PM_BR_PRED_CCACHE: result 368 running/enabled 5792777124
PM_BR_MPRED_CCACHE: result 319 running/enabled 5792775546
PM_BR_PRED_PCACHE: result 2147483281 running/enabled 5792773128
PM_BR_MPRED_PCACHE: result 213604201 running/enabled 5792771640
Miss percent 9 %
OK - Measured branch prediction rates match reported spectre v2 mitigation.
sysfs reports: 'Mitigation: Indirect branch serialisation (kernel only)'
PM_BR_PRED_CCACHE: result 895 running/enabled 5780320920
PM_BR_MPRED_CCACHE: result 822 running/enabled 5780312414
PM_BR_PRED_PCACHE: result 2147482754 running/enabled 5780308836
PM_BR_MPRED_PCACHE: result 213639731 running/enabled 5780307912
Miss percent 9 %
OK - Measured branch prediction rates match reported spectre v2 mitigation.
sysfs reports: 'Mitigation: Indirect branch cache disabled'
PM_BR_PRED_CCACHE: result 2147483649 running/enabled 20540186160
PM_BR_MPRED_CCACHE: result 2147483649 running/enabled 20540180056
PM_BR_PRED_PCACHE: result 0 running/enabled 20540176090
PM_BR_MPRED_PCACHE: result 0 running/enabled 20540174182
Miss percent 100 %
OK - Measured branch prediction rates match reported spectre v2 mitigation.
Power8:
sysfs reports: 'Vulnerable'
PM_BR_PRED_CCACHE: result 2147483649 running/enabled 3505888142
PM_BR_MPRED_CCACHE: result 9 running/enabled 3505882788
Miss percent 0 %
OK - Measured branch prediction rates match reported spectre v2 mitigation.
sysfs reports: 'Mitigation: Indirect branch cache disabled'
PM_BR_PRED_CCACHE: result 2147483649 running/enabled 16931421988
PM_BR_MPRED_CCACHE: result 2147483649 running/enabled 16931416478
Miss percent 100 %
OK - Measured branch prediction rates match reported spectre v2 mitigation.
success: spectre_v2
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20190520105520.22274-1-mpe@ellerman.id.au
83 lines
1.0 KiB
ArmAsm
83 lines
1.0 KiB
ArmAsm
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
* Copyright 2019, Michael Ellerman, IBM Corp.
|
|
*/
|
|
|
|
#include <ppc-asm.h>
|
|
|
|
.data
|
|
|
|
jump_table:
|
|
.long 0x0
|
|
.long (.Lstate_1 - .Lstate_0)
|
|
.long (.Lstate_2 - .Lstate_0)
|
|
.long (.Lstate_3 - .Lstate_0)
|
|
.long (.Lstate_4 - .Lstate_0)
|
|
.long (.Lstate_5 - .Lstate_0)
|
|
.long (.Lstate_6 - .Lstate_0)
|
|
.long (.Lstate_7 - .Lstate_0)
|
|
|
|
.text
|
|
|
|
#define ITER_SHIFT 31
|
|
|
|
.macro state number
|
|
.balign 32
|
|
.Lstate_\number:
|
|
.if \number==7
|
|
li r3, 0
|
|
.else
|
|
li r3, \number+1
|
|
.endif
|
|
b .Lloop
|
|
.endm
|
|
|
|
FUNC_START(pattern_cache_loop)
|
|
li r3, 0
|
|
li r4, 1
|
|
sldi r4, r4, ITER_SHIFT
|
|
|
|
.Lloop: cmpdi r4, 0
|
|
beqlr
|
|
|
|
addi r4, r4, -1
|
|
|
|
ld r6, jump_table@got(%r2)
|
|
sldi r5, r3, 2
|
|
lwax r6, r5, r6
|
|
ld r7, .Lstate_0@got(%r2)
|
|
add r6, r6, r7
|
|
mtctr r6
|
|
bctr
|
|
|
|
state 0
|
|
state 1
|
|
state 2
|
|
state 3
|
|
state 4
|
|
state 5
|
|
state 6
|
|
state 7
|
|
|
|
FUNC_END(pattern_cache_loop)
|
|
|
|
|
|
FUNC_START(indirect_branch_loop)
|
|
li r3, 1
|
|
sldi r3, r3, ITER_SHIFT
|
|
|
|
1: cmpdi r3, 0
|
|
beqlr
|
|
|
|
addi r3, r3, -1
|
|
|
|
ld r4, 2f@got(%r2)
|
|
mtctr r4
|
|
bctr
|
|
|
|
.balign 32
|
|
2: b 1b
|
|
|
|
FUNC_END(indirect_branch_loop)
|