227 lines
7.7 KiB
Diff
227 lines
7.7 KiB
Diff
|
|
From 2d28c0edddeaee5e4aa6e8c6b109776cddc1c4e4 Mon Sep 17 00:00:00 2001
|
||
|
|
From: jiangfangjie <jiangfangjie@huawei.com>
|
||
|
|
Date: Thu, 13 Aug 2020 21:37:23 +0800
|
||
|
|
Subject: [PATCH 19/19] test: tpm-tis: Add Sysbus TPM-TIS device test
|
||
|
|
|
||
|
|
The tests themselves are the same as the ISA device ones.
|
||
|
|
Only the main() changes as the tpm-tis-device device gets
|
||
|
|
instantiated. Also the base address of the device is not
|
||
|
|
0xFED40000 anymore but matches the base address of the
|
||
|
|
ARM virt platform bus.
|
||
|
|
|
||
|
|
Signed-off-by: Eric Auger <eric.auger@redhat.com>
|
||
|
|
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
|
||
|
|
Message-id: 20200305165149.618-11-eric.auger@redhat.com
|
||
|
|
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
|
||
|
|
Signed-off-by: jiangfangjie <jiangfangjie@huawei.com>
|
||
|
|
---
|
||
|
|
tests/Makefile.include | 5 ++
|
||
|
|
tests/tpm-tis-device-swtpm-test.c | 76 +++++++++++++++++++++++++++
|
||
|
|
tests/tpm-tis-device-test.c | 87 +++++++++++++++++++++++++++++++
|
||
|
|
3 files changed, 168 insertions(+)
|
||
|
|
create mode 100644 tests/tpm-tis-device-swtpm-test.c
|
||
|
|
create mode 100644 tests/tpm-tis-device-test.c
|
||
|
|
|
||
|
|
diff --git a/tests/Makefile.include b/tests/Makefile.include
|
||
|
|
index 950b32a2..d6de4e10 100644
|
||
|
|
--- a/tests/Makefile.include
|
||
|
|
+++ b/tests/Makefile.include
|
||
|
|
@@ -263,6 +263,8 @@ check-qtest-arm-y += tests/boot-serial-test$(EXESUF)
|
||
|
|
check-qtest-arm-y += tests/hexloader-test$(EXESUF)
|
||
|
|
check-qtest-arm-$(CONFIG_PFLASH_CFI02) += tests/pflash-cfi02-test$(EXESUF)
|
||
|
|
|
||
|
|
+check-qtest-aarch64-$(CONFIG_TPM_TIS_SYSBUS) += tpm-tis-device-test
|
||
|
|
+check-qtest-aarch64-$(CONFIG_TPM_TIS_SYSBUS) += tpm-tis-device-swtpm-test
|
||
|
|
check-qtest-aarch64-y = tests/numa-test$(EXESUF)
|
||
|
|
check-qtest-aarch64-y += tests/boot-serial-test$(EXESUF)
|
||
|
|
check-qtest-aarch64-y += tests/migration-test$(EXESUF)
|
||
|
|
@@ -667,7 +669,10 @@ tests/tpm-crb-swtpm-test$(EXESUF): tests/tpm-crb-swtpm-test.o tests/tpm-emu.o \
|
||
|
|
tests/tpm-crb-test$(EXESUF): tests/tpm-crb-test.o tests/tpm-emu.o $(test-io-obj-y)
|
||
|
|
tests/tpm-tis-swtpm-test$(EXESUF): tests/tpm-tis-swtpm-test.o tests/tpm-emu.o \
|
||
|
|
tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
|
||
|
|
+tests/tpm-tis-device-swtpm-test$(EXESUF): tests/tpm-tis-device-swtpm-test.o tests/tpm-emu.o \
|
||
|
|
+ tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
|
||
|
|
tests/tpm-tis-test$(EXESUF): tests/tpm-tis-test.o tests/tpm-tis-util.o tests/tpm-emu.o $(test-io-obj-y)
|
||
|
|
+tests/tpm-tis-device-test$(EXESUF): tests/tpm-tis-device-test.o tests/tpm-tis-util.o tests/tpm-emu.o $(test-io-obj-y)
|
||
|
|
tests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \
|
||
|
|
tests/io-channel-helpers.o $(test-io-obj-y)
|
||
|
|
tests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \
|
||
|
|
diff --git a/tests/tpm-tis-device-swtpm-test.c b/tests/tpm-tis-device-swtpm-test.c
|
||
|
|
new file mode 100644
|
||
|
|
index 00000000..7b200351
|
||
|
|
--- /dev/null
|
||
|
|
+++ b/tests/tpm-tis-device-swtpm-test.c
|
||
|
|
@@ -0,0 +1,76 @@
|
||
|
|
+/*
|
||
|
|
+ * QTest testcase for Sysbus TPM TIS talking to external swtpm and swtpm
|
||
|
|
+ * migration
|
||
|
|
+ *
|
||
|
|
+ * Copyright (c) 2018 IBM Corporation
|
||
|
|
+ * with parts borrowed from migration-test.c that is:
|
||
|
|
+ * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates
|
||
|
|
+ *
|
||
|
|
+ * Authors:
|
||
|
|
+ * Stefan Berger <stefanb@linux.vnet.ibm.com>
|
||
|
|
+ *
|
||
|
|
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||
|
|
+ * See the COPYING file in the top-level directory.
|
||
|
|
+ */
|
||
|
|
+
|
||
|
|
+#include "qemu/osdep.h"
|
||
|
|
+#include <glib/gstdio.h>
|
||
|
|
+
|
||
|
|
+#include "libqtest.h"
|
||
|
|
+#include "qemu/module.h"
|
||
|
|
+#include "tpm-tests.h"
|
||
|
|
+#include "hw/acpi/tpm.h"
|
||
|
|
+
|
||
|
|
+uint64_t tpm_tis_base_addr = 0xc000000;
|
||
|
|
+#define MACHINE_OPTIONS "-machine virt,gic-version=max -accel tcg"
|
||
|
|
+
|
||
|
|
+typedef struct TestState {
|
||
|
|
+ char *src_tpm_path;
|
||
|
|
+ char *dst_tpm_path;
|
||
|
|
+ char *uri;
|
||
|
|
+} TestState;
|
||
|
|
+
|
||
|
|
+static void tpm_tis_swtpm_test(const void *data)
|
||
|
|
+{
|
||
|
|
+ const TestState *ts = data;
|
||
|
|
+
|
||
|
|
+ tpm_test_swtpm_test(ts->src_tpm_path, tpm_util_tis_transfer,
|
||
|
|
+ "tpm-tis-device", MACHINE_OPTIONS);
|
||
|
|
+}
|
||
|
|
+
|
||
|
|
+static void tpm_tis_swtpm_migration_test(const void *data)
|
||
|
|
+{
|
||
|
|
+ const TestState *ts = data;
|
||
|
|
+
|
||
|
|
+ tpm_test_swtpm_migration_test(ts->src_tpm_path, ts->dst_tpm_path, ts->uri,
|
||
|
|
+ tpm_util_tis_transfer, "tpm-tis-device",
|
||
|
|
+ MACHINE_OPTIONS);
|
||
|
|
+}
|
||
|
|
+
|
||
|
|
+int main(int argc, char **argv)
|
||
|
|
+{
|
||
|
|
+ int ret;
|
||
|
|
+ TestState ts = { 0 };
|
||
|
|
+
|
||
|
|
+ ts.src_tpm_path = g_dir_make_tmp("qemu-tpm-tis-device-swtpm-test.XXXXXX",
|
||
|
|
+ NULL);
|
||
|
|
+ ts.dst_tpm_path = g_dir_make_tmp("qemu-tpm-tis-device-swtpm-test.XXXXXX",
|
||
|
|
+ NULL);
|
||
|
|
+ ts.uri = g_strdup_printf("unix:%s/migsocket", ts.src_tpm_path);
|
||
|
|
+
|
||
|
|
+ module_call_init(MODULE_INIT_QOM);
|
||
|
|
+ g_test_init(&argc, &argv, NULL);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm/tis-swtpm/test", &ts, tpm_tis_swtpm_test);
|
||
|
|
+ qtest_add_data_func("/tpm/tis-swtpm-migration/test", &ts,
|
||
|
|
+ tpm_tis_swtpm_migration_test);
|
||
|
|
+ ret = g_test_run();
|
||
|
|
+
|
||
|
|
+ g_rmdir(ts.dst_tpm_path);
|
||
|
|
+ g_free(ts.dst_tpm_path);
|
||
|
|
+ g_rmdir(ts.src_tpm_path);
|
||
|
|
+ g_free(ts.src_tpm_path);
|
||
|
|
+ g_free(ts.uri);
|
||
|
|
+
|
||
|
|
+ return ret;
|
||
|
|
+}
|
||
|
|
diff --git a/tests/tpm-tis-device-test.c b/tests/tpm-tis-device-test.c
|
||
|
|
new file mode 100644
|
||
|
|
index 00000000..63ed3644
|
||
|
|
--- /dev/null
|
||
|
|
+++ b/tests/tpm-tis-device-test.c
|
||
|
|
@@ -0,0 +1,87 @@
|
||
|
|
+/*
|
||
|
|
+ * QTest testcase for SYSBUS TPM TIS
|
||
|
|
+ *
|
||
|
|
+ * Copyright (c) 2018 Red Hat, Inc.
|
||
|
|
+ * Copyright (c) 2018 IBM Corporation
|
||
|
|
+ *
|
||
|
|
+ * Authors:
|
||
|
|
+ * Marc-André Lureau <marcandre.lureau@redhat.com>
|
||
|
|
+ * Stefan Berger <stefanb@linux.vnet.ibm.com>
|
||
|
|
+ *
|
||
|
|
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||
|
|
+ * See the COPYING file in the top-level directory.
|
||
|
|
+ */
|
||
|
|
+
|
||
|
|
+#include "qemu/osdep.h"
|
||
|
|
+#include <glib/gstdio.h>
|
||
|
|
+
|
||
|
|
+#include "io/channel-socket.h"
|
||
|
|
+#include "libqtest-single.h"
|
||
|
|
+#include "qemu/module.h"
|
||
|
|
+#include "tpm-emu.h"
|
||
|
|
+#include "tpm-util.h"
|
||
|
|
+#include "tpm-tis-util.h"
|
||
|
|
+
|
||
|
|
+/*
|
||
|
|
+ * As the Sysbus tpm-tis-device is instantiated on the ARM virt
|
||
|
|
+ * platform bus and it is the only sysbus device dynamically
|
||
|
|
+ * instantiated, it gets plugged at its base address
|
||
|
|
+ */
|
||
|
|
+uint64_t tpm_tis_base_addr = 0xc000000;
|
||
|
|
+
|
||
|
|
+int main(int argc, char **argv)
|
||
|
|
+{
|
||
|
|
+ char *tmp_path = g_dir_make_tmp("qemu-tpm-tis-device-test.XXXXXX", NULL);
|
||
|
|
+ GThread *thread;
|
||
|
|
+ TestState test;
|
||
|
|
+ char *args;
|
||
|
|
+ int ret;
|
||
|
|
+
|
||
|
|
+ module_call_init(MODULE_INIT_QOM);
|
||
|
|
+ g_test_init(&argc, &argv, NULL);
|
||
|
|
+
|
||
|
|
+ test.addr = g_new0(SocketAddress, 1);
|
||
|
|
+ test.addr->type = SOCKET_ADDRESS_TYPE_UNIX;
|
||
|
|
+ test.addr->u.q_unix.path = g_build_filename(tmp_path, "sock", NULL);
|
||
|
|
+ g_mutex_init(&test.data_mutex);
|
||
|
|
+ g_cond_init(&test.data_cond);
|
||
|
|
+ test.data_cond_signal = false;
|
||
|
|
+
|
||
|
|
+ thread = g_thread_new(NULL, tpm_emu_ctrl_thread, &test);
|
||
|
|
+ tpm_emu_test_wait_cond(&test);
|
||
|
|
+
|
||
|
|
+ args = g_strdup_printf(
|
||
|
|
+ "-machine virt,gic-version=max -accel tcg "
|
||
|
|
+ "-chardev socket,id=chr,path=%s "
|
||
|
|
+ "-tpmdev emulator,id=dev,chardev=chr "
|
||
|
|
+ "-device tpm-tis-device,tpmdev=dev",
|
||
|
|
+ test.addr->u.q_unix.path);
|
||
|
|
+ qtest_start(args);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm-tis/test_check_localities", &test,
|
||
|
|
+ tpm_tis_test_check_localities);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm-tis/test_check_access_reg", &test,
|
||
|
|
+ tpm_tis_test_check_access_reg);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm-tis/test_check_access_reg_seize", &test,
|
||
|
|
+ tpm_tis_test_check_access_reg_seize);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm-tis/test_check_access_reg_release", &test,
|
||
|
|
+ tpm_tis_test_check_access_reg_release);
|
||
|
|
+
|
||
|
|
+ qtest_add_data_func("/tpm-tis/test_check_transmit", &test,
|
||
|
|
+ tpm_tis_test_check_transmit);
|
||
|
|
+
|
||
|
|
+ ret = g_test_run();
|
||
|
|
+
|
||
|
|
+ qtest_end();
|
||
|
|
+
|
||
|
|
+ g_thread_join(thread);
|
||
|
|
+ g_unlink(test.addr->u.q_unix.path);
|
||
|
|
+ qapi_free_SocketAddress(test.addr);
|
||
|
|
+ g_rmdir(tmp_path);
|
||
|
|
+ g_free(tmp_path);
|
||
|
|
+ g_free(args);
|
||
|
|
+ return ret;
|
||
|
|
+}
|
||
|
|
--
|
||
|
|
2.23.0
|
||
|
|
|