]>
Commit | Line | Data |
---|---|---|
b21373d0 SB |
1 | /* |
2 | * QTest TPM utilities | |
3 | * | |
4 | * Copyright (c) 2018 IBM Corporation | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Berger <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | */ | |
12 | ||
13 | #ifndef TESTS_TPM_UTIL_H | |
14 | #define TESTS_TPM_UTIL_H | |
15 | ||
16 | #include "qemu/osdep.h" | |
17 | #include "io/channel-socket.h" | |
18 | ||
19 | typedef void (tx_func)(QTestState *s, | |
20 | const unsigned char *req, size_t req_size, | |
21 | unsigned char *rsp, size_t rsp_size); | |
22 | ||
23 | void tpm_util_crb_transfer(QTestState *s, | |
24 | const unsigned char *req, size_t req_size, | |
70663851 SB |
25 | unsigned char *rsp, size_t rsp_size); |
26 | void tpm_util_tis_transfer(QTestState *s, | |
27 | const unsigned char *req, size_t req_size, | |
b21373d0 SB |
28 | unsigned char *rsp, size_t rsp_size); |
29 | ||
30 | void tpm_util_startup(QTestState *s, tx_func *tx); | |
31 | void tpm_util_pcrextend(QTestState *s, tx_func *tx); | |
32 | void tpm_util_pcrread(QTestState *s, tx_func *tx, | |
33 | const unsigned char *exp_resp, size_t exp_resp_size); | |
34 | ||
35 | gboolean tpm_util_swtpm_start(const char *path, GPid *pid, | |
36 | SocketAddress **addr, GError **error); | |
37 | void tpm_util_swtpm_kill(GPid pid); | |
38 | ||
b1e4b7c6 SB |
39 | void tpm_util_migrate(QTestState *who, const char *uri); |
40 | ||
41 | void tpm_util_migration_start_qemu(QTestState **src_qemu, | |
42 | QTestState **dst_qemu, | |
43 | SocketAddress *src_tpm_addr, | |
44 | SocketAddress *dst_tpm_addr, | |
ea71a336 SB |
45 | const char *miguri, |
46 | const char *ifmodel); | |
b1e4b7c6 SB |
47 | |
48 | void tpm_util_wait_for_migration_complete(QTestState *who); | |
49 | ||
b21373d0 | 50 | #endif /* TESTS_TPM_UTIL_H */ |