mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2024-11-07 06:33:38 +01:00
Improve PTI detection
In case of a busy or misconfigured server, kernel message buffer loop can be filled with messages broadcasted later than boot time. So dmesg command wont return boot time messages. Grepping /var/log/dmesg fixes it and this log file location semms pretty standard across many common distros
This commit is contained in:
parent
1c3d349667
commit
608952ff71
@ -651,8 +651,8 @@ if [ "$opt_live" = 1 ]; then
|
||||
elif [ -e /sys/kernel/debug/x86/pti_enabled ]; then
|
||||
# RedHat Backport creates a dedicated file, see https://access.redhat.com/articles/3311301
|
||||
kpti_enabled=$(cat /sys/kernel/debug/x86/pti_enabled 2>/dev/null)
|
||||
elif dmesg | grep -Eq 'Kernel/User page tables isolation: enabled|Kernel page table isolation enabled'; then
|
||||
# if we can't find the flag, grep in dmesg
|
||||
elif grep -Eq 'Kernel/User page tables isolation: enabled|Kernel page table isolation enabled' /var/log/dmesg; then
|
||||
# if we can't find the flag, grep in /var/log/dmesg
|
||||
kpti_enabled=1
|
||||
else
|
||||
kpti_enabled=0
|
||||
|
Loading…
Reference in New Issue
Block a user