Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / testing / selftests / powerpc / security / mitigation-patching.sh
blob9a4612e2e9537506c47358ed5315f34fd48e5601
1 #!/usr/bin/env bash
3 set -euo pipefail
5 TIMEOUT=10
7 function do_one
9 local mitigation="$1"
10 local orig
11 local start
12 local now
14 orig=$(cat "$mitigation")
16 start=$(date +%s)
17 now=$start
19 while [[ $((now-start)) -lt "$TIMEOUT" ]]
21 echo 0 > "$mitigation"
22 echo 1 > "$mitigation"
24 now=$(date +%s)
25 done
27 echo "$orig" > "$mitigation"
30 rc=0
31 cd /sys/kernel/debug/powerpc || rc=1
32 if [[ "$rc" -ne 0 ]]; then
33 echo "Error: couldn't cd to /sys/kernel/debug/powerpc" >&2
34 exit 1
37 tainted=$(cat /proc/sys/kernel/tainted)
38 if [[ "$tainted" -ne 0 ]]; then
39 echo "Warning: kernel already tainted! ($tainted)" >&2
42 mitigations="barrier_nospec stf_barrier count_cache_flush rfi_flush entry_flush uaccess_flush"
44 for m in $mitigations
46 if [[ -f /sys/kernel/debug/powerpc/$m ]]
47 then
48 do_one "$m" &
50 done
52 echo "Spawned threads enabling/disabling mitigations ..."
54 if stress-ng > /dev/null 2>&1; then
55 stress="stress-ng"
56 elif stress > /dev/null 2>&1; then
57 stress="stress"
58 else
59 stress=""
62 if [[ -n "$stress" ]]; then
63 "$stress" -m "$(nproc)" -t "$TIMEOUT" &
64 echo "Spawned VM stressors ..."
67 echo "Waiting for timeout ..."
68 wait
70 orig_tainted=$tainted
71 tainted=$(cat /proc/sys/kernel/tainted)
72 if [[ "$tainted" != "$orig_tainted" ]]; then
73 echo "Error: kernel newly tainted, before ($orig_tainted) after ($tainted)" >&2
74 exit 1
77 echo "OK"
78 exit 0