2023-02-08 16:01:48 -05:00
#!/bin/bash
2018-12-06 10:43:34 -08:00
#
set -e -o pipefail
. /etc/functions
2020-07-10 12:58:32 -05:00
. /etc/gui_functions
2018-12-06 15:24:28 -08:00
. /tmp/config
2018-12-06 10:43:34 -08:00
2023-02-20 11:01:17 -05:00
TRACE "Under /bin/config-gui.sh"
2023-02-18 12:58:43 -05:00
2021-09-03 14:20:46 -07:00
ROOT_HASH_FILE = "/boot/kexec_root_hashes.txt"
2019-07-08 22:20:45 -05:00
param = $1
2018-12-06 10:43:34 -08:00
while true; do
2019-07-08 22:20:45 -05:00
if [ ! -z " $param " ] ; then
# use first char from parameter
menu_choice = ${ param : : 1 }
unset param
else
2019-07-08 22:23:04 -05:00
unset menu_choice
2022-11-15 15:11:58 -05:00
whiptail $BG_COLOR_MAIN_MENU --title "Config Management Menu" \
2022-11-09 11:51:27 -05:00
--menu "This menu lets you change settings for the current BIOS session.\n\nAll changes will revert after a reboot,\n\nunless you also save them to the running BIOS." 0 80 10 \
2018-12-06 10:43:34 -08:00
'b' ' Change the /boot device' \
2019-07-09 09:02:46 -05:00
'r' ' Clear GPG key(s) and reset all user settings' \
2021-09-03 14:20:46 -07:00
'R' ' Change the root device for hashing' \
'D' ' Change the root directories to hash' \
'B' ' Check root hashes at boot' \
's' ' Save the current configuration to the running BIOS' \
2019-07-08 22:20:45 -05:00
'x' ' Return to Main Menu' \
2018-12-06 10:43:34 -08:00
2>/tmp/whiptail || recovery "GUI menu failed"
2019-07-08 22:23:04 -05:00
menu_choice = $( cat /tmp/whiptail)
2019-07-08 22:20:45 -05:00
fi
2018-12-06 10:43:34 -08:00
case " $menu_choice " in
"x" )
exit 0
; ;
"b" )
2018-12-06 16:45:40 -08:00
CURRENT_OPTION = ` grep 'CONFIG_BOOT_DEV=' /tmp/config | tail -n1 | cut -f2 -d '=' | tr -d '"' `
2021-01-05 16:13:41 -06:00
if ! fdisk -l | grep "Disk /dev/" | cut -f2 -d " " | cut -f1 -d ":" > /tmp/disklist.txt ; then
2021-09-23 13:07:07 -05:00
whiptail $BG_COLOR_ERROR --title 'ERROR: No bootable devices found' \
--msgbox " $ERROR \n\n " 16 60
exit 1
fi
2019-07-08 22:23:04 -05:00
# filter out extraneous options
> /tmp/boot_device_list.txt
for i in ` cat /tmp/disklist.txt` ; do
# remove block device from list if numeric partitions exist, since not bootable
2020-02-27 14:39:13 -06:00
DEV_NUM_PARTITIONS = $(( ` ls -1 $i * | wc -l` - 1 ))
2019-07-08 22:23:04 -05:00
if [ ${ DEV_NUM_PARTITIONS } -eq 0 ] ; then
echo $i >> /tmp/boot_device_list.txt
else
ls $i * | tail -${ DEV_NUM_PARTITIONS } >> /tmp/boot_device_list.txt
fi
done
file_selector "/tmp/boot_device_list.txt" \
" Choose the default /boot device.\n\nCurrently set to $CURRENT_OPTION . " \
"Boot Device Selection"
2018-12-06 10:43:34 -08:00
if [ " $FILE " = = "" ] ; then
return
else
SELECTED_FILE = $FILE
fi
2020-02-28 18:54:14 -06:00
# unmount /boot if needed
if grep -q /boot /proc/mounts ; then
umount /boot 2>/dev/null
fi
2019-08-28 21:47:45 -05:00
# mount newly selected /boot device
2020-02-28 18:54:14 -06:00
if ! mount -o ro $SELECTED_FILE /boot 2>/tmp/error ; then
2019-08-28 21:47:45 -05:00
ERROR = ` cat /tmp/error`
2020-10-23 18:07:34 -05:00
whiptail $BG_COLOR_ERROR --title 'ERROR: unable to mount /boot' \
2020-02-28 18:54:14 -06:00
--msgbox " $ERROR \n\n " 16 60
2019-08-28 21:47:45 -05:00
exit 1
fi
2020-02-28 18:54:14 -06:00
replace_config /etc/config.user "CONFIG_BOOT_DEV" " $SELECTED_FILE "
combine_configs
2018-12-06 10:43:34 -08:00
whiptail --title 'Config change successful' \
--msgbox " The /boot device was successfully changed to $SELECTED_FILE " 16 60
; ;
"s" )
/bin/flash.sh -r /tmp/config-gui.rom
if [ ! -s /tmp/config-gui.rom ] ; then
2020-10-23 18:07:34 -05:00
whiptail $BG_COLOR_ERROR --title 'ERROR: BIOS Read Failed!' \
2018-12-06 10:43:34 -08:00
--msgbox "Unable to read BIOS" 16 60
exit 1
fi
2022-10-10 00:24:16 +03:00
if ( cbfs.sh -o /tmp/config-gui.rom -l | grep -q "heads/initrd/etc/config.user" ) then
cbfs.sh -o /tmp/config-gui.rom -d "heads/initrd/etc/config.user"
2018-12-06 10:43:34 -08:00
fi
2022-10-10 00:24:16 +03:00
cbfs.sh -o /tmp/config-gui.rom -a "heads/initrd/etc/config.user" -f /etc/config.user
2019-11-18 11:13:27 -06:00
if ( whiptail --title 'Update ROM?' \
2022-11-09 11:51:27 -05:00
--yesno "This will reflash your BIOS with the updated version\n\nDo you want to proceed?" 0 80) then
2019-11-18 11:13:27 -06:00
/bin/flash.sh /tmp/config-gui.rom
whiptail --title 'BIOS Updated Successfully' \
--msgbox "BIOS updated successfully.\n\nIf your keys have changed, be sure to re-sign all files in /boot\nafter you reboot.\n\nPress Enter to reboot" 16 60
/bin/reboot
else
exit 0
fi
2019-07-09 09:02:46 -05:00
; ;
"r" )
# prompt for confirmation
2021-09-23 12:56:17 -05:00
if ( whiptail $BG_COLOR_WARNING --title 'Reset Configuration?' \
2019-07-09 09:02:46 -05:00
--yesno " This will clear all GPG keys, clear boot signatures and checksums,
\n reset the /boot device, clear/reset the TPM ( if present) ,
\n and reflash your BIOS with the cleaned configuration.
2022-11-09 11:51:27 -05:00
\n \n Do you want to proceed?" 0 80) then
2019-07-09 09:02:46 -05:00
# read current firmware
/bin/flash.sh -r /tmp/config-gui.rom
if [ ! -s /tmp/config-gui.rom ] ; then
2020-10-23 18:07:34 -05:00
whiptail $BG_COLOR_ERROR --title 'ERROR: BIOS Read Failed!' \
2019-07-09 09:02:46 -05:00
--msgbox "Unable to read BIOS" 16 60
exit 1
fi
# clear local keyring
rm /.gnupg/* | true
# clear /boot signatures/checksums
mount -o remount,rw /boot
rm /boot/kexec* | true
mount -o remount,ro /boot
# clear GPG keys and user settings
2022-10-10 00:24:16 +03:00
for i in ` cbfs.sh -o /tmp/config-gui.rom -l | grep -e "heads/" ` ; do
cbfs.sh -o /tmp/config-gui.rom -d $i
2019-07-09 09:02:46 -05:00
done
# flash cleared ROM
/bin/flash.sh -c /tmp/config-gui.rom
# reset TPM if present
tpm2-tools: Change sense of CONFIG_TPM to mean any TPM, not just TPM1.
Most logic throughout Heads doesn't need to know TPM1 versus TPM2 (and
shouldn't, the differences should be localized). Some checks were
incorrect and are fixed by this change. Most checks are now unchanged
relative to master.
There are not that many places outside of tpmr that need to
differentiate TPM1 and TPM2. Some of those are duplicate code that
should be consolidated (seal-hotpkey, unseal-totp, unseal-hotp), and
some more are probably good candidates for abstracting in tpmr so the
business logic doesn't have to know TPM1 vs. TPM2.
Previously, CONFIG_TPM could be variously 'y', 'n', or empty. Now it
is always 'y' or 'n', and 'y' means "any TPM". Board configs are
unchanged, setting CONFIG_TPM2_TOOLS=y implies CONFIG_TPM=y so this
doesn't have to be duplicated and can't be mistakenly mismatched.
There were a few checks for CONFIG_TPM = n that only coincidentally
worked for TPM2 because CONFIG_TPM was empty (not 'n'). This test is
now OK, but the checks were also cleaned up to '!= "y"' for robustness.
Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
2023-02-22 16:30:07 -05:00
if [ " $CONFIG_TPM " = "y" ] ; then
2019-07-09 09:02:46 -05:00
/bin/tpm-reset
fi
whiptail --title 'Configuration Reset Updated Successfully' \
--msgbox "Configuration reset and BIOS updated successfully.\n\nPress Enter to reboot" 16 60
2018-12-06 10:43:34 -08:00
/bin/reboot
2019-11-18 11:13:27 -06:00
else
exit 0
2018-12-06 10:43:34 -08:00
fi
; ;
2021-09-03 14:20:46 -07:00
"R" )
CURRENT_OPTION = ` grep 'CONFIG_ROOT_DEV=' /tmp/config | tail -n1 | cut -f2 -d '=' | tr -d '"' `
fdisk -l | grep "Disk /dev/" | cut -f2 -d " " | cut -f1 -d ":" > /tmp/disklist.txt
# filter out extraneous options
> /tmp/root_device_list.txt
for i in ` cat /tmp/disklist.txt` ; do
# remove block device from list if numeric partitions exist, since not bootable
DEV_NUM_PARTITIONS = $(( ` ls -1 $i * | wc -l` - 1 ))
if [ ${ DEV_NUM_PARTITIONS } -eq 0 ] ; then
echo $i >> /tmp/root_device_list.txt
else
ls $i * | tail -${ DEV_NUM_PARTITIONS } >> /tmp/root_device_list.txt
fi
done
file_selector "/tmp/root_device_list.txt" \
" Choose the default root device.\n\nCurrently set to $CURRENT_OPTION . " \
"Root Device Selection"
if [ " $FILE " = = "" ] ; then
return
else
SELECTED_FILE = $FILE
fi
replace_config /etc/config.user "CONFIG_ROOT_DEV" " $SELECTED_FILE "
combine_configs
whiptail --title 'Config change successful' \
--msgbox " The root device was successfully changed to $SELECTED_FILE " 0 80
; ;
"D" )
CURRENT_OPTION = ` grep 'CONFIG_ROOT_DIRLIST=' /tmp/config | tail -n1 | cut -f2 -d '=' | tr -d '"' `
echo " The current list of directories to hash is $CURRENT_OPTION "
echo -e "\nEnter the new list of directories separated by spaces, without any beginning forward slashes:"
echo -e "(Press enter with the list empty to cancel)"
read -r NEW_CONFIG_ROOT_DIRLIST
# strip any leading forward slashes in case the user ignored us
NEW_CONFIG_ROOT_DIRLIST = $( echo $NEW_CONFIG_ROOT_DIRLIST | sed -e 's/^\///;s/ \// /g' )
#check if list empty
if [ -s $NEW_CONFIG_ROOT_DIRLIST ] ; then
whiptail --title 'Config change canceled' \
--msgbox "Root device directory change canceled by user" 0 80
break
fi
replace_config /etc/config.user "CONFIG_ROOT_DIRLIST" " $NEW_CONFIG_ROOT_DIRLIST "
combine_configs
whiptail --title 'Config change successful' \
--msgbox " The root directories to hash was successfully changed to:\n $NEW_CONFIG_ROOT_DIRLIST " 0 80
; ;
"B" )
CURRENT_OPTION = ` grep 'CONFIG_ROOT_CHECK_AT_BOOT=' /tmp/config | tail -n1 | cut -f2 -d '=' | tr -d '"' `
if [ " $CURRENT_OPTION " = "n" ] ; then
if ( whiptail --title 'Enable Root Hash Check at Boot?' \
--yesno " This will enable checking root hashes each time you boot.
\n Depending on the directories you are checking, this might add
\n a minute or more to the boot time.
\n \n Do you want to proceed?" 0 80) then
replace_config /etc/config.user "CONFIG_ROOT_CHECK_AT_BOOT" "y"
combine_configs
# check that root hash file exists
if [ ! -f ${ ROOT_HASH_FILE } ] ; then
if ( whiptail --title 'Generate Root Hash File' \
--yesno " \nNo root hash file exists.
\n Would you like to create the initial hash file now?" 0 80) then
root-hashes-gui.sh -n
fi
fi
whiptail --title 'Config change successful' \
--msgbox "The root device will be checked at each boot." 0 80
fi
else
if ( whiptail --title 'Disable Root Hash Check at Boot?' \
--yesno " This will disable checking root hashes each time you boot.
\n \n Do you want to proceed?" 0 80) then
replace_config /etc/config.user "CONFIG_ROOT_CHECK_AT_BOOT" "n"
combine_configs
whiptail --title 'Config change successful' \
--msgbox "The root device will not be checked at each boot." 0 80
fi
fi
; ;
2018-12-06 10:43:34 -08:00
esac
done
exit 0