5 Commits
v0.04 ... v0.06

Author SHA1 Message Date
bffda8b3e7 remove dependency on rdmsr 2018-01-07 18:36:56 +01:00
13f2133a97 cosmetic fix 2018-01-07 18:14:08 +01:00
8c2fd0f0bb fix MSR reading, need rdmsr for now 2018-01-07 18:13:25 +01:00
761c2b80e4 cosmetic fix 2018-01-07 17:19:37 +01:00
d6977928e5 msg fix 2018-01-07 17:15:08 +01:00

View File

@ -1,7 +1,7 @@
#! /bin/sh #! /bin/sh
# Spectre & Meltdown checker # Spectre & Meltdown checker
# Stephane Lesimple # Stephane Lesimple
VERSION=0.04 VERSION=0.06
pstatus() pstatus()
{ {
@ -11,7 +11,7 @@ pstatus()
yellow) col="\033[103m\033[30m";; yellow) col="\033[103m\033[30m";;
*) col="";; *) col="";;
esac esac
/bin/echo -ne "$col$2\033[0m" /bin/echo -ne "$col $2 \033[0m"
[ -n "$3" ] && /bin/echo -n " ($3)" [ -n "$3" ] && /bin/echo -n " ($3)"
/bin/echo /bin/echo
} }
@ -116,14 +116,13 @@ fi
if [ ! -e /dev/cpu/0/msr ]; then if [ ! -e /dev/cpu/0/msr ]; then
pstatus yellow UNKNOWN "couldn't read /dev/cpu/0/msr, is msr support enabled in your kernel?" pstatus yellow UNKNOWN "couldn't read /dev/cpu/0/msr, is msr support enabled in your kernel?"
else else
dd if=/dev/cpu/0/msr of=/dev/null bs=1 count=8 skip=72 2>/dev/null # same that rdmsr 0x48 but without needing the rdmsr tool
dd if=/dev/cpu/0/msr of=/dev/null bs=8 count=1 skip=9 2>/dev/null
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
pstatus green YES pstatus green YES
else else
pstatus red NO pstatus red NO
fi fi
#dd if=/dev/cpu/0/msr of=/dev/null bs=1 count=8 skip=73 2>/dev/null
#/bin/echo $?
fi fi
if [ "$insmod_msr" = 1 ]; then if [ "$insmod_msr" = 1 ]; then
@ -163,7 +162,7 @@ if [ "$mounted_debugfs" = 1 ]; then
fi fi
/bin/echo "* Mitigation 2" /bin/echo "* Mitigation 2"
/bin/echo -n "* Kernel recompiled with retpolines: " /bin/echo -n "* Kernel compiled with retpolines: "
# XXX this doesn't mean the kernel has been compiled with a retpoline-aware gcc # XXX this doesn't mean the kernel has been compiled with a retpoline-aware gcc
if [ -e /proc/config.gz ]; then if [ -e /proc/config.gz ]; then
if zgrep -q '^CONFIG_RETPOLINE=y' /proc/config.gz; then if zgrep -q '^CONFIG_RETPOLINE=y' /proc/config.gz; then
@ -189,7 +188,7 @@ elif [ "$ibrs_enabled" = 1 -o "$ibrs_enabled" = 2 ]; then
elif [ "$retpoline" = 1 ]; then elif [ "$retpoline" = 1 ]; then
pstatus green "NOT VULNERABLE" "retpolines mitigate the vulnerability" pstatus green "NOT VULNERABLE" "retpolines mitigate the vulnerability"
else else
pstatus red VULNERABLE "IBRS hardware + kernel support OR kernel with retpolines kernel are needed to mitigate the vulnerability" pstatus red VULNERABLE "IBRS hardware + kernel support OR kernel with retpolines are needed to mitigate the vulnerability"
fi fi
# MELTDOWN # MELTDOWN