2018-02-20 23:35:37 +00:00
#!/bin/sh
# Boot from a local disk installation
2018-02-21 23:58:54 +00:00
CONFIG_BOOT_GUI_MENU_NAME='Heads Boot Menu'
2018-02-20 23:35:37 +00:00
. /etc/functions
. /etc/config
mount_boot()
{
2018-02-23 20:13:21 +00:00
# Mount local disk if it is not already mounted
if ! grep -q /boot /proc/mounts ; then
mount -o ro /boot \
|| recovery "Unable to mount /boot"
fi
2018-02-20 23:35:37 +00:00
}
2018-04-03 22:20:34 +00:00
verify_global_hashes()
{
# Check the hashes of all the files, ignoring signatures for now
check_config /boot force
TMP_HASH_FILE="/tmp/kexec/kexec_hashes.txt"
TMP_PACKAGE_TRIGGER_PRE="/tmp/kexec/kexec_package_trigger_pre.txt"
TMP_PACKAGE_TRIGGER_POST="/tmp/kexec/kexec_package_trigger_post.txt"
if cd /boot && sha256sum -c "$TMP_HASH_FILE" > /tmp/hash_output ; then
return 0
elif [ ! -f $TMP_HASH_FILE ]; then
2018-04-25 20:21:56 +00:00
if (whiptail $CONFIG_ERROR_BG_COLOR --clear --title 'ERROR: Missing Hash File!' \
2018-05-03 17:45:45 +00:00
--yesno "The file containing hashes for /boot is missing!\n\nIf you are setting this system up for the first time, select Yes to update\nyour list of checksums.\n\nOtherwise this could indicate a compromise and you should select No to\nreturn to the main menu.\n\nWould you like to update your checksums now?" 30 90) then
2018-04-03 22:20:34 +00:00
update_checksums
fi
return 1
else
CHANGED_FILES=$(grep -v 'OK$' /tmp/hash_output | cut -f1 -d ':')
# if files changed before package manager started, show stern warning
if [ -f "$TMP_PACKAGE_TRIGGER_PRE" ]; then
PRE_CHANGED_FILES=$(grep '^CHANGED_FILES' $TMP_PACKAGE_TRIGGER_POST | cut -f 2 -d '=' | tr -d '"')
2018-05-01 21:23:56 +00:00
TEXT="The following files failed the verification process BEFORE package updates ran:\n${PRE_CHANGED_FILES}\n\nCompare against the files Heads has detected have changed:\n${CHANGED_FILES}\n\nThis could indicate a compromise!\n\nWould you like to update your checksums anyway?"
2018-04-03 22:20:34 +00:00
# if files changed after package manager started, probably caused by package manager
elif [ -f "$TMP_PACKAGE_TRIGGER_POST" ]; then
LAST_PACKAGE_LIST=$(grep -E "^(Install|Remove|Upgrade|Reinstall):" $TMP_PACKAGE_TRIGGER_POST)
UPDATE_INITRAMFS_PACKAGE=$(grep '^UPDATE_INITRAMFS_PACKAGE' $TMP_PACKAGE_TRIGGER_POST | cut -f 2 -d '=' | tr -d '"')
if [ "$UPDATE_INITRAMFS_PACKAGE" != "" ]; then
TEXT="The following files failed the verification process AFTER package updates ran:\n${CHANGED_FILES}\n\nThis is likely due to package triggers in$UPDATE_INITRAMFS_PACKAGE.\n\nYou will need to update your checksums for all files in /boot.\n\nWould you like to update your checksums now?"
else
TEXT="The following files failed the verification process AFTER package updates ran:\n${CHANGED_FILES}\n\nThis might be due to the following package updates:\n$LAST_PACKAGE_LIST.\n\nYou will need to update your checksums for all files in /boot.\n\nWould you like to update your checksums now?"
fi
else
TEXT="The following files failed the verification process:\n${CHANGED_FILES}\n\nThis could indicate a compromise!\n\nWould you like to update your checksums now?"
fi
2018-05-01 22:20:35 +00:00
if (whiptail $CONFIG_ERROR_BG_COLOR --clear --title 'ERROR: Boot Hash Mismatch' --yesno "$TEXT" 30 90) then
2018-04-03 22:20:34 +00:00
update_checksums
fi
return 1
fi
}
update_checksums()
{
if (whiptail --title 'Update Checksums and sign all files in /boot' \
2018-05-01 22:20:35 +00:00
--yesno "You have chosen to update the checksums and sign all of the files in /boot.\n\nThis means that you trust that the files in /boot have not been tampered with.\n\nYou will need your GPG key to continue and this change will modify your disk.\n\nDo you want to continue?" 16 90) then
2018-04-03 22:20:34 +00:00
mount_boot
mount -o rw,remount /boot
cd /boot
find ./ -type f ! -name '*kexec*' | xargs sha256sum > /boot/kexec_hashes.txt
DEFAULT_FILES=$(cat /boot/kexec_default_hashes.txt | cut -f3 -d ' ')
echo $DEFAULT_FILES | xargs sha256sum > /boot/kexec_default_hashes.txt
# Remove any package trigger log files
# We don't need them after the user decides to sign
rm -f /boot/kexec_package_trigger*
# sign and auto-roll config counter
extparam=
if [ "$CONFIG_TPM" = "y" ]; then
extparam=-u
fi
kexec-sign-config -p /boot $extparam \
|| die "Failed to sign default config"
2018-02-20 23:35:37 +00:00
2018-04-03 22:20:34 +00:00
# switch back to ro mode
mount -o ro,remount /boot
else
echo "Returning to the main menu"
fi
}
2018-02-20 23:35:37 +00:00
2018-02-21 23:58:54 +00:00
last_half=X
2018-02-20 23:35:37 +00:00
while true; do
2018-02-23 20:13:21 +00:00
MAIN_MENU_OPTIONS=""
2018-02-20 23:35:37 +00:00
unset totp_confirm
2018-02-23 20:13:21 +00:00
# update the TOTP code every thirty seconds
date=`date "+%Y-%m-%d %H:%M:%S"`
seconds=`date "+%s"`
half=`expr \( $seconds % 60 \) / 30`
if [ "$CONFIG_TPM" = n ]; then
TOTP="NO TPM"
elif [ "$half" != "$last_half" ]; then
last_half=$half;
TOTP=`unseal-totp`
if [ $? -ne 0 ]; then
2018-04-25 20:21:56 +00:00
whiptail $CONFIG_ERROR_BG_COLOR --clear --title "ERROR: TOTP Generation Failed!" \
2018-05-03 17:45:45 +00:00
--menu "ERROR: Heads couldn't generate the TOTP code.\n\nIf you just reflashed your BIOS, you'll need to generate a new TOTP secret.\n\nIf you have not just reflashed your BIOS, THIS COULD INDICATE TAMPERING!\n\nIf this is the first time the system has booted, you should reset the TPM\nand set your own password\n\nHow would you like to proceed?" 30 90 4 \
2018-02-23 20:13:21 +00:00
'g' ' Generate new TOTP secret' \
'i' ' Ignore error and continue to default boot menu' \
2018-03-09 00:36:56 +00:00
'p' ' Reset the TPM' \
2018-02-23 20:13:21 +00:00
'x' ' Exit to recovery shell' \
2>/tmp/whiptail || recovery "GUI menu failed"
totp_confirm=$(cat /tmp/whiptail)
fi
fi
if [ "$totp_confirm" = "i" -o -z "$totp_confirm" ]; then
whiptail --clear --title "$CONFIG_BOOT_GUI_MENU_NAME" \
2018-05-01 22:20:35 +00:00
--menu "$date\nTOTP code: $TOTP" 20 90 10 \
2018-02-23 20:13:21 +00:00
'y' ' Default boot' \
'r' ' TOTP does not match, refresh code' \
'n' ' TOTP does not match after refresh, troubleshoot' \
2018-03-14 17:14:22 +00:00
'o' ' Other Boot Options -->' \
'a' ' Advanced Settings -->' \
'x' ' Exit to recovery shell' \
2>/tmp/whiptail || recovery "GUI menu failed"
totp_confirm=$(cat /tmp/whiptail)
fi
if [ "$totp_confirm" = "o" ]; then
whiptail --clear --title "Other Boot Options" \
2018-05-01 22:20:35 +00:00
--menu "Select A Boot Option" 20 90 10 \
2018-02-23 20:13:21 +00:00
'm' ' Show OS boot menu' \
'u' ' USB boot' \
2018-03-05 22:46:15 +00:00
'i' ' Ignore tampering and force a boot (Unsafe!)' \
2018-03-14 17:14:22 +00:00
'r' ' <-- Return to main menu' \
2>/tmp/whiptail || recovery "GUI menu failed"
totp_confirm=$(cat /tmp/whiptail)
fi
if [ "$totp_confirm" = "a" ]; then
whiptail --clear --title "Advanced Settings" \
2018-05-01 22:20:35 +00:00
--menu "Configure Advanced Settings" 20 90 10 \
2018-03-14 17:14:22 +00:00
'g' ' Generate new TOTP secret' \
2018-03-09 00:36:56 +00:00
'p' ' Reset the TPM' \
2018-03-14 17:14:22 +00:00
's' ' Update checksums and sign all files in /boot' \
'r' ' <-- Return to main menu' \
2018-02-23 20:13:21 +00:00
2>/tmp/whiptail || recovery "GUI menu failed"
totp_confirm=$(cat /tmp/whiptail)
fi
if [ "$totp_confirm" = "x" ]; then
recovery "User requested recovery shell"
fi
if [ "$totp_confirm" = "r" ]; then
continue
fi
if [ "$totp_confirm" = "n" ]; then
2018-04-25 20:21:56 +00:00
if (whiptail $CONFIG_WARNING_BG_COLOR --title "TOTP code mismatched" \
2018-05-01 22:20:35 +00:00
--yesno "TOTP code mismatches could indicate either TPM tampering or clock drift:\n\nTo correct clock drift: 'date -s HH:MM:SS'\nand save it to the RTC: 'hwclock -w'\nthen reboot and try again.\n\nWould you like to exit to a recovery console?" 30 90) then
2018-02-23 20:13:21 +00:00
echo ""
echo "To correct clock drift: 'date -s HH:MM:SS'"
echo "and save it to the RTC: 'hwclock -w'"
echo "then reboot and try again"
echo ""
recovery "TOTP mismatch"
else
continue
fi
fi
if [ "$totp_confirm" = "u" ]; then
exec /bin/usb-init
continue
fi
if [ "$totp_confirm" = "g" ]; then
if (whiptail --title 'Generate new TOTP secret' \
2018-05-01 22:20:35 +00:00
--yesno "This will erase your old secret and replace it with a new one!\n\nDo you want to proceed?" 16 90) then
2018-03-09 00:36:56 +00:00
echo "Scan the QR code to add the new TOTP secret"
/bin/seal-totp
echo "Once you have scanned the QR code, hit Enter to reboot"
read
/bin/reboot
else
echo "Returning to the main menu"
fi
continue
fi
if [ "$totp_confirm" = "p" ]; then
if (whiptail --title 'Reset the TPM' \
2018-05-01 22:20:35 +00:00
--yesno "This will clear the TPM, erase the old TPM password and replace it with a new one!\n\nDo you want to proceed?" 16 90) then
2018-03-09 00:36:56 +00:00
/bin/tpm-reset
2018-04-03 22:20:34 +00:00
# now that the TPM is reset, remove invalid kexec_rollback.txt file
mount_boot
mount -o rw,remount /boot
rm -f /boot/kexec_rollback.txt
mount -o ro,remount /boot
2018-02-21 23:58:54 +00:00
echo "Scan the QR code to add the new TOTP secret"
2018-02-23 20:13:21 +00:00
/bin/seal-totp
echo "Once you have scanned the QR code, hit Enter to reboot"
2018-02-21 23:58:54 +00:00
read
2018-02-23 20:13:21 +00:00
/bin/reboot
else
echo "Returning to the main menu"
fi
continue
fi
if [ "$totp_confirm" = "m" ]; then
# Try to select a kernel from the menu
mount_boot
2018-04-03 22:20:34 +00:00
verify_global_hashes
if [ $? -ne 0 ]; then
continue
fi
2018-02-23 20:13:21 +00:00
kexec-select-boot -m -b /boot -c "grub.cfg" -g
continue
fi
2018-03-05 22:46:15 +00:00
if [ "$totp_confirm" = "i" ]; then
# Run the menu selection in "force" mode, bypassing hash checks
2018-04-25 20:21:56 +00:00
if (whiptail $CONFIG_WARNING_BG_COLOR --title 'Unsafe Forced Boot Selected!' \
2018-05-01 22:20:35 +00:00
--yesno "WARNING: You have chosen to skip all tamper checks and boot anyway.\n\nThis is an unsafe option!\n\nDo you want to proceed?" 16 90) then
2018-03-05 22:46:15 +00:00
mount_boot
kexec-select-boot -m -b /boot -c "grub.cfg" -g -f
else
echo "Returning to the main menu"
fi
continue
fi
2018-03-14 17:14:22 +00:00
if [ "$totp_confirm" = "s" ]; then
2018-04-03 22:20:34 +00:00
update_checksums
2018-03-14 17:14:22 +00:00
continue
fi
2018-02-23 20:13:21 +00:00
if [ "$totp_confirm" = "y" -o -n "$totp_confirm" ]; then
# Try to boot the default
mount_boot
2018-04-03 22:20:34 +00:00
verify_global_hashes
if [ $? -ne 0 ]; then
continue
fi
DEFAULT_FILE=`find /boot/kexec_default.*.txt 2>/dev/null | head -1`
2018-02-23 20:13:21 +00:00
if [ -r "$DEFAULT_FILE" ]; then
2018-03-08 19:41:44 +00:00
kexec-select-boot -b /boot -c "grub.cfg" -g \
2018-02-23 20:13:21 +00:00
|| recovery "Failed default boot"
else
if (whiptail --title 'No Default Boot Option Configured' \
2018-05-01 22:20:35 +00:00
--yesno "There is no default boot option configured yet.\nWould you like to load a menu of boot options?\nOtherwise you will return to the main menu." 16 90) then
2018-02-23 20:13:21 +00:00
kexec-select-boot -m -b /boot -c "grub.cfg" -g
else
echo "Returning to the main menu"
fi
continue
fi
fi
2018-02-20 23:35:37 +00:00
done
recovery "Something failed during boot"