2023-02-08 21:01:48 +00:00
|
|
|
#!/bin/bash
|
2022-08-25 18:43:31 +00:00
|
|
|
# TPM Wrapper - to unify tpm and tpm2 subcommands
|
|
|
|
|
|
|
|
. /etc/functions
|
|
|
|
|
|
|
|
SECRET_DIR="/tmp/secret"
|
|
|
|
PRIMARY_HANDLE="0x81000000"
|
|
|
|
ENC_SESSION_FILE="enc.ctx"
|
|
|
|
DEC_SESSION_FILE="dec.ctx"
|
|
|
|
PRIMARY_HANDLE_FILE="primary.handle"
|
|
|
|
|
|
|
|
set -e -o pipefail
|
|
|
|
if [ -r "/tmp/config" ]; then
|
|
|
|
. /tmp/config
|
|
|
|
else
|
|
|
|
. /etc/config
|
|
|
|
fi
|
|
|
|
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr"
|
|
|
|
|
2022-08-25 18:43:31 +00:00
|
|
|
if [ "$CONFIG_TPM2_TOOLS" != "y" ]; then
|
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 21:30:07 +00:00
|
|
|
# tpm1 does not need to convert options
|
|
|
|
if [ "$CONFIG_TPM" = "y" ]; then
|
|
|
|
exec tpm "$@"
|
|
|
|
fi
|
2022-08-25 18:43:31 +00:00
|
|
|
echo >&2 "No TPM2!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
tpm2_extend() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_extend"
|
|
|
|
DEBUG "value of passed arguments: $1 $2 $3 $4 $5 $6"
|
2022-08-25 18:43:31 +00:00
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-ix)
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "case: -ix $2"
|
2022-08-25 18:43:31 +00:00
|
|
|
index="$2"
|
|
|
|
shift 2;;
|
|
|
|
-ic)
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "case: -ic $2"
|
2022-08-25 18:43:31 +00:00
|
|
|
hash="`echo $2|sha256sum|cut -d' ' -f1`"
|
|
|
|
shift 2;;
|
|
|
|
-if)
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "case: -if $2"
|
2022-08-25 18:43:31 +00:00
|
|
|
hash="`sha256sum $2|cut -d' ' -f1`"
|
|
|
|
shift 2;;
|
|
|
|
*)
|
|
|
|
break;;
|
|
|
|
esac
|
|
|
|
done
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "tpm2 pcrextend $index:sha256=$hash"
|
2022-08-25 18:43:31 +00:00
|
|
|
tpm2 pcrextend "$index:sha256=$hash"
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "tpm2 pcread sha256:$index"
|
|
|
|
tpm2 pcrread "sha256:$index"
|
|
|
|
DEBUG "$(pcrs)"
|
2022-08-25 18:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_counter_read() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_counter_read"
|
2022-08-25 18:43:31 +00:00
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-ix)
|
|
|
|
index="$2"
|
|
|
|
shift 2;;
|
|
|
|
*)
|
|
|
|
break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
echo "$index: `tpm2 nvread 0x$index | xxd -pc8`"
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_counter_inc() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_counter_inc"
|
2022-08-25 18:43:31 +00:00
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-ix)
|
|
|
|
index="$2"
|
|
|
|
shift 2;;
|
|
|
|
-pwdc)
|
|
|
|
pwd="$2"
|
|
|
|
shift 2;;
|
|
|
|
*)
|
|
|
|
break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
tpm2 nvincrement "0x$index" > /dev/console
|
|
|
|
echo "$index: `tpm2 nvread 0x$index | xxd -pc8`"
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_counter_cre() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_counter_cre"
|
2022-08-25 18:43:31 +00:00
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-pwdo)
|
|
|
|
pwdo="$2"
|
|
|
|
shift 2;;
|
|
|
|
-pwdof)
|
|
|
|
pwdo="file:$2"
|
|
|
|
shift 2;;
|
|
|
|
-pwdc)
|
|
|
|
pwd="$2"
|
|
|
|
shift 2;;
|
|
|
|
-la)
|
|
|
|
label="$2"
|
|
|
|
shift 2;;
|
|
|
|
*)
|
|
|
|
break;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
rand_index="1`dd if=/dev/urandom bs=1 count=3 | xxd -pc3`"
|
|
|
|
tpm2 nvdefine -C o -s 8 -a "ownerread|authread|authwrite|nt=1" -P "$pwdo" "0x$rand_index" > /dev/console
|
|
|
|
echo "$rand_index: (valid after an increment)"
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_startsession() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_startsession"
|
2022-08-25 18:43:31 +00:00
|
|
|
mkdir -p "$SECRET_DIR"
|
|
|
|
tpm2 flushcontext \
|
|
|
|
--transient-object \
|
|
|
|
|| die "tpm2_flushcontext: unable to flush transient handles"
|
|
|
|
|
|
|
|
tpm2 flushcontext \
|
|
|
|
--loaded-session \
|
|
|
|
|| die "tpm2_flushcontext: unable to flush sessions"
|
|
|
|
|
|
|
|
tpm2 flushcontext \
|
|
|
|
--saved-session \
|
|
|
|
|| die "tpm2_flushcontext: unable to flush saved session"
|
|
|
|
tpm2 readpublic -c "$PRIMARY_HANDLE" -t "/tmp/$PRIMARY_HANDLE_FILE"
|
|
|
|
tpm2 startauthsession -c "/tmp/$PRIMARY_HANDLE_FILE" --hmac-session -S "/tmp/$ENC_SESSION_FILE"
|
|
|
|
tpm2 startauthsession -c "/tmp/$PRIMARY_HANDLE_FILE" --hmac-session -S "/tmp/$DEC_SESSION_FILE"
|
|
|
|
tpm2 sessionconfig --disable-encrypt "/tmp/$DEC_SESSION_FILE"
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_sealfile() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_sealfile"
|
2022-08-25 18:43:31 +00:00
|
|
|
#TODO remove this: tpmr seal "$KEY_FILE" "0x8100000$TPM_INDEX" sha256:0,1,2,3,4,5,6,7 "$pcrf" "$key_password"
|
|
|
|
file="$1" #$KEY_FILE
|
|
|
|
handle="$2" # 0x8100000$TPM_INDEX
|
|
|
|
pcrl="$3" #sha256:0,1,2,3,4,5,6,7
|
|
|
|
pcrf="$4"
|
|
|
|
pass="$5"
|
|
|
|
mkdir -p "$SECRET_DIR"
|
|
|
|
bname="`basename $file`"
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "tpm2 createpolicy --policy-pcr -l "$pcrl" -f "$pcrf" -L "$SECRET_DIR/pcr.policy""
|
2022-08-25 18:43:31 +00:00
|
|
|
tpm2 createpolicy --policy-pcr -l "$pcrl" -f "$pcrf" -L "$SECRET_DIR/pcr.policy"
|
|
|
|
if [ "$pass" ];then
|
2023-02-23 15:14:32 +00:00
|
|
|
echo -n "$pass" | tpm2 create -C "/tmp/$PRIMARY_HANDLE_FILE" -i "$file" -u "$SECRET_DIR/$bname.priv" -r "$SECRET_DIR/$bname.pub" -L "$SECRET_DIR/pcr.policy" -S "/tmp/$DEC_SESSION_FILE" -p "file:-"
|
2022-08-25 18:43:31 +00:00
|
|
|
else
|
|
|
|
tpm2 create -C "/tmp/$PRIMARY_HANDLE_FILE" -i "$file" -u "$SECRET_DIR/$bname.priv" -r "$SECRET_DIR/$bname.pub" -L "$SECRET_DIR/pcr.policy" -S "/tmp/$DEC_SESSION_FILE"
|
|
|
|
fi
|
|
|
|
tpm2 load -C "/tmp/$PRIMARY_HANDLE_FILE" -u "$SECRET_DIR/$bname.priv" -r "$SECRET_DIR/$bname.pub" -c "$SECRET_DIR/$bname.seal.ctx"
|
2023-02-22 19:24:49 +00:00
|
|
|
read -s -p "TPM owner password: " key_password
|
2022-08-25 18:43:31 +00:00
|
|
|
# remove possible data occupying this handle
|
|
|
|
tpm2 evictcontrol -C o -P "$key_password" -c "$handle" 2>/dev/null || true
|
|
|
|
tpm2 evictcontrol -C o -P "$key_password" -c "$SECRET_DIR/$bname.seal.ctx" "$handle"
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_unseal() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_unseal"
|
2022-08-25 18:43:31 +00:00
|
|
|
#TODO: remove this: tpmr unseal "0x8100000$TPM_INDEX" "sha256:0,1,2,3,4,5,6,7" "file:-" > "$key_file"
|
|
|
|
handle="$1"
|
|
|
|
pcrl="$2"
|
|
|
|
pass="$3"
|
2023-02-23 22:05:15 +00:00
|
|
|
DEBUG "handle: $handle prcl: $pcrl pass: $pass"
|
2022-08-25 18:43:31 +00:00
|
|
|
if [ "$pass" ];then
|
2023-02-23 15:14:32 +00:00
|
|
|
echo -n "$pass" | tpm2 unseal -c "$handle" -S "/tmp/$ENC_SESSION_FILE" -p "pcr:$pcrl+file:-"
|
2022-08-25 18:43:31 +00:00
|
|
|
else
|
|
|
|
tpm2 unseal -c "$handle" -S "/tmp/$ENC_SESSION_FILE" -p "pcr:$pcrl"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
tpm2_reset() {
|
2023-02-23 22:05:15 +00:00
|
|
|
TRACE "Under /bin/tpmr:tpm2_reset"
|
2023-02-22 21:26:53 +00:00
|
|
|
key_password="$1"
|
2022-08-25 18:43:31 +00:00
|
|
|
mkdir -p "$SECRET_DIR"
|
|
|
|
tpm2 clear -c platform || warn "Unable to clear TPM on platform hierarchy!"
|
|
|
|
tpm2 changeauth -c owner "$key_password"
|
|
|
|
tpm2 createprimary -C owner -g sha256 -G "${CONFIG_PRIMARY_KEY_TYPE:-rsa}" -c "$SECRET_DIR/primary.ctx" -P "$key_password"
|
|
|
|
tpm2 evictcontrol -C owner -c "$SECRET_DIR/primary.ctx" "$PRIMARY_HANDLE" -P "$key_password"
|
|
|
|
shred -u "$SECRET_DIR/primary.ctx"
|
|
|
|
tpm2_startsession
|
|
|
|
}
|
|
|
|
subcmd="$1"
|
|
|
|
shift 1
|
|
|
|
case "$subcmd" in
|
|
|
|
extend)
|
|
|
|
tpm2_extend "$@";;
|
|
|
|
counter_read)
|
|
|
|
tpm2_counter_read "$@";;
|
|
|
|
counter_increment)
|
|
|
|
tpm2_counter_inc "$@";;
|
|
|
|
counter_create)
|
|
|
|
tpm2_counter_cre "$@";;
|
|
|
|
nv_definespace)
|
|
|
|
tpm2_nvdef "$@";;
|
|
|
|
nv_writevalue)
|
|
|
|
tpm2_nvw "$@";;
|
|
|
|
nv_readvalue)
|
|
|
|
tpm2_nvr "$@";;
|
|
|
|
seal)
|
|
|
|
tpm2_sealfile "$@";;
|
|
|
|
startsession)
|
|
|
|
tpm2_startsession "$@";;
|
|
|
|
unseal)
|
|
|
|
tpm2_unseal "$@";;
|
|
|
|
reset)
|
2023-02-22 21:26:53 +00:00
|
|
|
tpm2_reset "$@";;
|
2022-08-25 18:43:31 +00:00
|
|
|
*)
|
|
|
|
echo "Command $subcmd not wrapped!"
|
|
|
|
exit 1
|
|
|
|
esac
|