mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
25 lines
826 B
Bash
Executable File
25 lines
826 B
Bash
Executable File
#!/bin/bash
|
|
# Measure all of the LUKS Disk Encryption headers into
|
|
# a PCR so that we can detect disk swap attacks.
|
|
. /etc/functions
|
|
|
|
TRACE "Under /bin/qubes-measure-luks"
|
|
DEBUG "Arguments passed to qubes-measure-luks: $@"
|
|
|
|
# Measure the LUKS headers into PCR 6
|
|
for dev in "$@"; do
|
|
DEBUG "Storing LUKS header for $dev into /tmp/lukshdr-$(echo "$dev" | sed 's/\//_/g')"
|
|
cryptsetup luksHeaderBackup $dev \
|
|
--header-backup-file /tmp/lukshdr-$(echo "$dev" | sed 's/\//_/g') ||
|
|
die "$dev: Unable to read LUKS header"
|
|
done
|
|
|
|
DEBUG "Hashing luks headers into /tmp/luksDump.txt"
|
|
sha256sum /tmp/lukshdr-* >/tmp/luksDump.txt || die "Unable to hash luks headers"
|
|
DEBUG "Removing /tmp/lukshdr-*"
|
|
rm /tmp/lukshdr-*
|
|
|
|
DEBUG "Extending PCR 6 with /tmp/luksDump.txt"
|
|
tpmr extend -ix 6 -if /tmp/luksDump.txt ||
|
|
die "Unable to extend PCR"
|