09b20a148a
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-id: 20210802215246.1433175-3-stefanb@linux.ibm.com
82 lines
2.3 KiB
C
82 lines
2.3 KiB
C
/*
|
|
* QTest testcase for ISA 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 "hw/acpi/tpm.h"
|
|
#include "io/channel-socket.h"
|
|
#include "libqtest-single.h"
|
|
#include "qemu/module.h"
|
|
#include "tpm-emu.h"
|
|
#include "tpm-tis-util.h"
|
|
|
|
uint64_t tpm_tis_base_addr = TPM_TIS_ADDR_BASE;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int ret;
|
|
char *args, *tmp_path = g_dir_make_tmp("qemu-tpm-tis-test.XXXXXX", NULL);
|
|
GThread *thread;
|
|
TPMTestState test;
|
|
|
|
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;
|
|
test.tpm_version = TPM_VERSION_2_0;
|
|
|
|
thread = g_thread_new(NULL, tpm_emu_ctrl_thread, &test);
|
|
tpm_emu_test_wait_cond(&test);
|
|
|
|
args = g_strdup_printf(
|
|
"-chardev socket,id=chr,path=%s "
|
|
"-tpmdev emulator,id=dev,chardev=chr "
|
|
"-device tpm-tis,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;
|
|
}
|