clevis-encrypt-tpm2 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #!/bin/bash -e
  2. # vim: set tabstop=8 shiftwidth=4 softtabstop=4 expandtab smarttab colorcolumn=80:
  3. #
  4. # Copyright (c) 2017 Red Hat, Inc.
  5. # Author: Javier Martinez Canillas <javierm@redhat.com>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. SUMMARY="Encrypts using a TPM2.0 chip binding policy"
  21. # The owner hierarchy is the one that should be used by the Operating System.
  22. auth="o"
  23. # Algorithm type must be keyedhash for object with user provided sensitive data.
  24. alg_create_key="keyedhash"
  25. # Attributes for the created TPM2 object with the JWK as sensitive data.
  26. obj_attr="fixedtpm|fixedparent|sensitivedataorigin|noda|adminwithpolicy"
  27. function on_exit() {
  28. if ! rm -rf $TMP; then
  29. echo "Delete temporary files failed!" >&2
  30. exit 1
  31. fi
  32. }
  33. if [ "$1" == "--summary" ]; then
  34. echo "$SUMMARY"
  35. exit 0
  36. fi
  37. if [ -t 0 ]; then
  38. echo >&2
  39. echo "Usage: clevis encrypt tpm2 CONFIG < PLAINTEXT > JWE" >&2
  40. echo >&2
  41. echo $SUMMARY >&2
  42. echo >&2
  43. echo "This command uses the following configuration properties:" >&2
  44. echo >&2
  45. echo " hash: <string> Hash algorithm used in the computation of the object name (default: sha256)" >&2
  46. echo >&2
  47. echo " key: <string> Algorithm type for the generated key (default: ecc)" >&2
  48. echo >&2
  49. echo " pcr_bank: <string> PCR algorithm bank to use for policy (default: sha1)" >&2
  50. echo >&2
  51. echo " pcr_ids: <string> PCR list used for policy. If not present, no policy is used" >&2
  52. echo >&2
  53. echo " pcr_digest: <string> Binary PCR hashes encoded in base64. If not present, the hash values are looked up" >&2
  54. echo >&2
  55. exit 1
  56. fi
  57. export TPM2TOOLS_TCTI_NAME=device
  58. export TPM2TOOLS_DEVICE_FILE=`ls /dev/tpmrm? 2>/dev/null`
  59. if [ -z "${TPM2TOOLS_DEVICE_FILE[0]}" ]; then
  60. echo "A TPM2 device with the in-kernel resource manager is needed!" >&2
  61. exit 1
  62. fi
  63. if ! [[ -r "${TPM2TOOLS_DEVICE_FILE[0]}" && -w "${TPM2TOOLS_DEVICE_FILE[0]}" ]]; then
  64. echo "The ${TPM2TOOLS_DEVICE_FILE[0]} device must be readable and writable!" >&2
  65. exit 1
  66. fi
  67. if ! cfg=`jose fmt -j "$1" -Oo- 2>/dev/null`; then
  68. echo "Configuration is malformed!" >&2
  69. exit 1
  70. fi
  71. hash=`jose fmt -j- -Og hash -u- <<< "$cfg"` || hash="sha256"
  72. key=`jose fmt -j- -Og key -u- <<< "$cfg"` || key="ecc"
  73. pcr_bank=`jose fmt -j- -Og pcr_hash -u- <<< "$cfg"` || pcr_bank="sha1"
  74. pcr_ids=`jose fmt -j- -Og pcr_ids -u- <<< "$cfg"` || true
  75. pcr_digest=`jose fmt -j- -Og pcr_digest -u- <<< "$cfg"` || true
  76. if ! jwk=`jose jwk gen -i '{"alg":"A256GCM"}'`; then
  77. echo "Generating a jwk failed!" >&2
  78. exit 1
  79. fi
  80. if ! TMP=`mktemp -d`; then
  81. echo "Creating a temporary dir for TPM files failed!" >&2
  82. exit 1
  83. fi
  84. trap 'on_exit' EXIT
  85. if ! tpm2_createprimary -Q -H "$auth" -g "$hash" -G "$key" -C $TMP/primary.context; then
  86. echo "Creating TPM2 primary key failed!" >&2
  87. exit 1
  88. fi
  89. if [ -n "$pcr_ids" ]; then
  90. if [ -z "$pcr_digest" ]; then
  91. if ! tpm2_pcrlist -Q -L "$pcr_bank":"$pcr_ids" -o $TMP/pcr.digest; then
  92. echo "Creating PCR hashes file failed!" >&2
  93. exit 1
  94. fi
  95. else
  96. if ! jose b64 dec -i- -O "$TMP"/pcr.digest <<< "$pcr_digest"; then
  97. echo "Error decoding PCR digest!" >&2
  98. exit 1
  99. fi
  100. fi
  101. if ! tpm2_createpolicy -Q -P -L "$pcr_bank":"$pcr_ids" -F $TMP/pcr.digest -f $TMP/pcr.policy; then
  102. echo "create policy fail, please check the environment or parameters!"
  103. exit 1
  104. fi
  105. policy_options="-L $TMP/pcr.policy"
  106. fi
  107. if ! tpm2_create -Q -g "$hash" -G "$alg_create_key" -c $TMP/primary.context -u $TMP/jwk.pub \
  108. -r $TMP/jwk.priv -A "$obj_attr" $policy_options -I- <<< "$jwk"; then
  109. echo "Creating TPM2 object for jwk failed!" >&2
  110. exit 1
  111. fi
  112. if ! jwk_pub=`jose b64 enc -I $TMP/jwk.pub`; then
  113. echo "Encoding jwk.pub in Base64 failed!" >&2
  114. exit 1
  115. fi
  116. if ! jwk_priv=`jose b64 enc -I $TMP/jwk.priv`; then
  117. echo "Encoding jwk.priv in Base64 failed!" >&2
  118. exit 1
  119. fi
  120. jwe='{"protected":{"clevis":{"pin":"tpm2","tpm2":{}}}}'
  121. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$hash" -s hash -UUUUo-`
  122. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$key" -s key -UUUUo-`
  123. if [ -n "$pcr_ids" ]; then
  124. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$pcr_bank" -s pcr_bank -UUUUo-`
  125. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$pcr_ids" -s pcr_ids -UUUUo-`
  126. fi
  127. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$jwk_pub" -s jwk_pub -UUUUo-`
  128. jwe=`jose fmt -j "$jwe" -g protected -g clevis -g tpm2 -q "$jwk_priv" -s jwk_priv -UUUUo-`
  129. jose jwe enc -i- -k- -I- -c < <(echo -n "$jwe$jwk"; cat)