2017-07-12 04:17:45 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# This will unseal and unecncrypt the drive encryption key from the TPM
|
|
|
|
# The TOTP secret will be shown to the user on each encryption attempt.
|
|
|
|
# It will then need to be bundled into initrd that is booted with Qubes.
|
|
|
|
set -e -o pipefail
|
2023-02-18 17:58:43 +00:00
|
|
|
. /etc/functions
|
2017-07-12 04:17:45 +00:00
|
|
|
|
|
|
|
TPM_INDEX=3
|
|
|
|
TPM_SIZE=312
|
|
|
|
|
|
|
|
. /etc/functions
|
|
|
|
mkdir -p /tmp/secret
|
|
|
|
|
|
|
|
sealed_file="/tmp/secret/sealed.key"
|
|
|
|
key_file="$1"
|
|
|
|
|
|
|
|
if [ -z "$key_file" ]; then
|
|
|
|
key_file="/tmp/secret/secret.key"
|
|
|
|
fi
|
|
|
|
|
|
|
|
tpm nv_readvalue \
|
|
|
|
-in "$TPM_INDEX" \
|
|
|
|
-sz "$TPM_SIZE" \
|
|
|
|
-of "$sealed_file" \
|
|
|
|
|| die "Unable to read key from TPM NVRAM"
|
|
|
|
|
|
|
|
for tries in 1 2 3; do
|
2017-07-29 17:24:34 +00:00
|
|
|
read -s -p "Enter unlock password (blank to abort): " tpm_password
|
2017-07-12 04:17:45 +00:00
|
|
|
echo
|
|
|
|
|
2017-07-29 17:24:34 +00:00
|
|
|
if [ -z "$tpm_password" ]; then
|
|
|
|
die "Aborting unseal disk encryption key"
|
|
|
|
fi
|
|
|
|
|
2017-07-12 04:17:45 +00:00
|
|
|
if tpm unsealfile \
|
|
|
|
-if "$sealed_file" \
|
|
|
|
-of "$key_file" \
|
|
|
|
-pwdd "$tpm_password" \
|
|
|
|
-hk 40000000 \
|
|
|
|
; then
|
|
|
|
# should be okay if this fails
|
2019-02-22 01:16:02 +00:00
|
|
|
shred -n 10 -z -u /tmp/secret/sealed 2> /dev/null || true
|
2017-07-12 04:17:45 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
pcrs
|
|
|
|
warn "Unable to unseal disk encryption key"
|
|
|
|
done
|
|
|
|
|
|
|
|
die "Retry count exceeded..."
|