security/tpm: improve tlcl_extend() signature

Until now tcg-2.0/tss.c was just assuming certain buffer size and
hash algorithm. Change it to accept digest type, which the call sites
know.

Also drop `uint8_t *out_digest` parameter which was always `NULL`
and was handled only by tcg-1.2 code.

Change-Id: I944302b502e3424c5041b17c713a867b0fc535c4
Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68745
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
This commit is contained in:
Sergii Dmytruk
2022-10-22 20:11:35 +03:00
committed by Martin L Roth
parent 3ff77016da
commit 7221a6cfc5
6 changed files with 42 additions and 26 deletions

View File

@ -171,7 +171,7 @@ int tspi_measure_cache_to_pcr(void)
tce->name, tce->pcr); tce->name, tce->pcr);
int result = tlcl_extend(tce->pcr, int result = tlcl_extend(tce->pcr,
tce->digest, tce->digest,
NULL); TPM_MEASURE_ALGO);
if (result != TPM_SUCCESS) { if (result != TPM_SUCCESS) {
printk(BIOS_ERR, "TPM: Writing digest" printk(BIOS_ERR, "TPM: Writing digest"
" of %s into PCR failed with error" " of %s into PCR failed with error"

View File

@ -233,7 +233,7 @@ uint32_t tpm_extend_pcr(int pcr, enum vb2_hash_algorithm digest_algo,
} }
printk(BIOS_DEBUG, "TPM: Extending digest for `%s` into PCR %d\n", name, pcr); printk(BIOS_DEBUG, "TPM: Extending digest for `%s` into PCR %d\n", name, pcr);
result = tlcl_extend(pcr, digest, NULL); result = tlcl_extend(pcr, digest, digest_algo);
if (result != TPM_SUCCESS) { if (result != TPM_SUCCESS) {
printk(BIOS_ERR, "TPM: Extending hash for `%s` into PCR %d failed.\n", printk(BIOS_ERR, "TPM: Extending hash for `%s` into PCR %d failed.\n",
name, pcr); name, pcr);

View File

@ -10,6 +10,7 @@
#define TSS_H_ #define TSS_H_
#include <types.h> #include <types.h>
#include <vb2_sha.h>
#include <security/tpm/tss/common/tss_common.h> #include <security/tpm/tss/common/tss_common.h>
#include <security/tpm/tss_errors.h> #include <security/tpm/tss_errors.h>
@ -187,8 +188,8 @@ uint32_t tlcl_lock_nv_write(uint32_t index);
/** /**
* Perform a TPM_Extend. * Perform a TPM_Extend.
*/ */
uint32_t tlcl_extend(int pcr_num, const uint8_t *in_digest, uint32_t tlcl_extend(int pcr_num, const uint8_t *digest_data,
uint8_t *out_digest); enum vb2_hash_algorithm digest_algo);
/** /**
* Disable platform hierarchy. Specific to TPM2. The TPM error code is returned. * Disable platform hierarchy. Specific to TPM2. The TPM error code is returned.

View File

@ -331,25 +331,20 @@ uint32_t tlcl_set_global_lock(void)
return tlcl_write(TPM_NV_INDEX0, NULL, 0); return tlcl_write(TPM_NV_INDEX0, NULL, 0);
} }
uint32_t tlcl_extend(int pcr_num, const uint8_t *in_digest, uint32_t tlcl_extend(int pcr_num, const uint8_t *digest_data,
uint8_t *out_digest) enum vb2_hash_algorithm digest_algo)
{ {
struct s_tpm_extend_cmd cmd; struct s_tpm_extend_cmd cmd;
uint8_t response[kTpmResponseHeaderLength + kPcrDigestLength]; uint8_t response[kTpmResponseHeaderLength + kPcrDigestLength];
uint32_t result;
if (digest_algo != VB2_HASH_SHA1)
return TPM_E_INVALID_ARG;
memcpy(&cmd, &tpm_extend_cmd, sizeof(cmd)); memcpy(&cmd, &tpm_extend_cmd, sizeof(cmd));
to_tpm_uint32(cmd.buffer + tpm_extend_cmd.pcrNum, pcr_num); to_tpm_uint32(cmd.buffer + tpm_extend_cmd.pcrNum, pcr_num);
memcpy(cmd.buffer + cmd.inDigest, in_digest, kPcrDigestLength); memcpy(cmd.buffer + cmd.inDigest, digest_data, kPcrDigestLength);
result = tlcl_send_receive(cmd.buffer, response, sizeof(response)); return tlcl_send_receive(cmd.buffer, response, sizeof(response));
if (result != TPM_SUCCESS)
return result;
if (out_digest)
memcpy(out_digest, response + kTpmResponseHeaderLength,
kPcrDigestLength);
return result;
} }
uint32_t tlcl_get_permissions(uint32_t index, uint32_t *permissions) uint32_t tlcl_get_permissions(uint32_t index, uint32_t *permissions)

View File

@ -118,21 +118,40 @@ uint32_t tlcl_assert_physical_presence(void)
return TPM_SUCCESS; return TPM_SUCCESS;
} }
/* static TPM_ALG_ID tpmalg_from_vb2_hash(enum vb2_hash_algorithm hash_type)
* The caller will provide the digest in a 32 byte buffer, let's consider it a {
* sha256 digest. switch (hash_type) {
*/ case VB2_HASH_SHA1:
uint32_t tlcl_extend(int pcr_num, const uint8_t *in_digest, return TPM_ALG_SHA1;
uint8_t *out_digest) case VB2_HASH_SHA256:
return TPM_ALG_SHA256;
case VB2_HASH_SHA384:
return TPM_ALG_SHA384;
case VB2_HASH_SHA512:
return TPM_ALG_SHA512;
default:
return TPM_ALG_ERROR;
}
}
uint32_t tlcl_extend(int pcr_num, const uint8_t *digest_data,
enum vb2_hash_algorithm digest_type)
{ {
struct tpm2_pcr_extend_cmd pcr_ext_cmd; struct tpm2_pcr_extend_cmd pcr_ext_cmd;
struct tpm2_response *response; struct tpm2_response *response;
TPM_ALG_ID alg;
alg = tpmalg_from_vb2_hash(digest_type);
if (alg == TPM_ALG_ERROR)
return TPM_E_HASH_ERROR;
pcr_ext_cmd.pcrHandle = HR_PCR + pcr_num; pcr_ext_cmd.pcrHandle = HR_PCR + pcr_num;
pcr_ext_cmd.digests.count = 1; pcr_ext_cmd.digests.count = 1;
pcr_ext_cmd.digests.digests[0].hashAlg = TPM_ALG_SHA256; pcr_ext_cmd.digests.digests[0].hashAlg = alg;
memcpy(pcr_ext_cmd.digests.digests[0].digest.sha256, in_digest, /* Always copying to sha512 as it's the largest one */
sizeof(pcr_ext_cmd.digests.digests[0].digest.sha256)); memcpy(pcr_ext_cmd.digests.digests[0].digest.sha512, digest_data,
vb2_digest_size(digest_type));
response = tpm_process_command(TPM2_PCR_Extend, &pcr_ext_cmd); response = tpm_process_command(TPM2_PCR_Extend, &pcr_ext_cmd);

View File

@ -137,7 +137,8 @@ int mboot_hash_extend_log(uint64_t flags, uint8_t *hashData, uint32_t hashDataLe
printk(BIOS_DEBUG, "%s: SHA256 Hash Digest:\n", __func__); printk(BIOS_DEBUG, "%s: SHA256 Hash Digest:\n", __func__);
mboot_print_buffer(digest->digest.sha256, VB2_SHA256_DIGEST_SIZE); mboot_print_buffer(digest->digest.sha256, VB2_SHA256_DIGEST_SIZE);
return (tlcl_extend(newEventHdr->pcrIndex, (uint8_t *)&(newEventHdr->digest), NULL)); return (tlcl_extend(newEventHdr->pcrIndex, (uint8_t *)&(newEventHdr->digest),
VB2_HASH_SHA256));
} }
/* /*