Skip to content

Commit

Permalink
tests: tpm: Create TPM 1.2 response in TPM emulator
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Acked-by: Igor Mammedov <imammedo@redhat.com>
Message-id: 20210708183814.925960-7-stefanb@linux.vnet.ibm.com
  • Loading branch information
stefanberger committed Jul 9, 2021
1 parent 14bdf39 commit 939ccaa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/qtest/tpm-emu.c
Expand Up @@ -62,6 +62,11 @@ static void *tpm_emu_tpm_thread(void *data)
s->tpm_msg->len = cpu_to_be32(sizeof(struct tpm_hdr));
s->tpm_msg->code = cpu_to_be32(TPM_RC_FAILURE);
break;
case TPM_VERSION_1_2:
s->tpm_msg->tag = cpu_to_be16(TPM_TAG_RSP_COMMAND);
s->tpm_msg->len = cpu_to_be32(sizeof(struct tpm_hdr));
s->tpm_msg->code = cpu_to_be32(TPM_FAIL);
break;
default:
g_debug("unsupport TPM version %u", s->tpm_version);
g_assert_not_reached();
Expand Down
3 changes: 3 additions & 0 deletions tests/qtest/tpm-emu.h
Expand Up @@ -16,6 +16,9 @@
#define TPM_RC_FAILURE 0x101
#define TPM2_ST_NO_SESSIONS 0x8001

#define TPM_FAIL 9
#define TPM_TAG_RSP_COMMAND 0xc4

#include "qemu/sockets.h"
#include "io/channel.h"
#include "sysemu/tpm.h"
Expand Down

0 comments on commit 939ccaa

Please sign in to comment.