2 * Minimal TPM emulator for TPM test cases
4 * Copyright (c) 2018 Red Hat, Inc.
7 * Marc-André Lureau <marcandre.lureau@redhat.com>
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.
13 #include "qemu/osdep.h"
14 #include <glib/gstdio.h>
16 #include "backends/tpm/tpm_ioctl.h"
17 #include "io/channel-socket.h"
18 #include "qapi/error.h"
19 #include "qapi/qmp/qlist.h"
20 #include "qapi/qmp/qstring.h"
23 void tpm_emu_test_wait_cond(TPMTestState
*s
)
25 gint64 end_time
= g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND
;
27 g_mutex_lock(&s
->data_mutex
);
29 if (!s
->data_cond_signal
&&
30 !g_cond_wait_until(&s
->data_cond
, &s
->data_mutex
, end_time
)) {
31 g_assert_not_reached();
34 s
->data_cond_signal
= false;
36 g_mutex_unlock(&s
->data_mutex
);
39 static void tpm_emu_close_ioc(void *ioc
)
41 qio_channel_close(ioc
, NULL
);
44 static void *tpm_emu_tpm_thread(void *data
)
46 TPMTestState
*s
= data
;
47 QIOChannel
*ioc
= s
->tpm_ioc
;
49 qtest_add_abrt_handler(tpm_emu_close_ioc
, ioc
);
51 s
->tpm_msg
= g_new(struct tpm_hdr
, 1);
53 int minhlen
= sizeof(s
->tpm_msg
->tag
) + sizeof(s
->tpm_msg
->len
);
55 if (!qio_channel_read(ioc
, (char *)s
->tpm_msg
, minhlen
, &error_abort
)) {
58 s
->tpm_msg
->tag
= be16_to_cpu(s
->tpm_msg
->tag
);
59 s
->tpm_msg
->len
= be32_to_cpu(s
->tpm_msg
->len
);
60 g_assert_cmpint(s
->tpm_msg
->len
, >=, minhlen
);
62 s
->tpm_msg
= g_realloc(s
->tpm_msg
, s
->tpm_msg
->len
);
63 qio_channel_read(ioc
, (char *)&s
->tpm_msg
->code
,
64 s
->tpm_msg
->len
- minhlen
, &error_abort
);
65 s
->tpm_msg
->code
= be32_to_cpu(s
->tpm_msg
->code
);
68 switch (s
->tpm_version
) {
70 s
->tpm_msg
->tag
= cpu_to_be16(TPM2_ST_NO_SESSIONS
);
71 s
->tpm_msg
->len
= cpu_to_be32(sizeof(struct tpm_hdr
));
72 s
->tpm_msg
->code
= cpu_to_be32(TPM_RC_FAILURE
);
75 s
->tpm_msg
->tag
= cpu_to_be16(TPM_TAG_RSP_COMMAND
);
76 s
->tpm_msg
->len
= cpu_to_be32(sizeof(struct tpm_hdr
));
77 s
->tpm_msg
->code
= cpu_to_be32(TPM_FAIL
);
80 g_debug("unsupported TPM version %u", s
->tpm_version
);
81 g_assert_not_reached();
83 qio_channel_write(ioc
, (char *)s
->tpm_msg
, be32_to_cpu(s
->tpm_msg
->len
),
87 qtest_remove_abrt_handler(ioc
);
90 object_unref(OBJECT(s
->tpm_ioc
));
94 void *tpm_emu_ctrl_thread(void *data
)
96 TPMTestState
*s
= data
;
97 QIOChannelSocket
*lioc
= qio_channel_socket_new();
100 qio_channel_socket_listen_sync(lioc
, s
->addr
, 1, &error_abort
);
102 g_mutex_lock(&s
->data_mutex
);
103 s
->data_cond_signal
= true;
104 g_mutex_unlock(&s
->data_mutex
);
105 g_cond_signal(&s
->data_cond
);
107 qio_channel_wait(QIO_CHANNEL(lioc
), G_IO_IN
);
108 ioc
= QIO_CHANNEL(qio_channel_socket_accept(lioc
, &error_abort
));
110 qtest_add_abrt_handler(tpm_emu_close_ioc
, ioc
);
114 struct iovec iov
= { .iov_base
= &cmd
, .iov_len
= sizeof(cmd
) };
118 qio_channel_readv_full(ioc
, &iov
, 1, &pfd
, &nfd
, 0, &error_abort
);
119 cmd
= be32_to_cpu(cmd
);
120 g_assert_cmpint(cmd
, ==, CMD_SET_DATAFD
);
121 g_assert_cmpint(nfd
, ==, 1);
122 s
->tpm_ioc
= QIO_CHANNEL(qio_channel_socket_new_fd(*pfd
, &error_abort
));
126 qio_channel_write(ioc
, (char *)&cmd
, sizeof(cmd
), &error_abort
);
128 s
->emu_tpm_thread
= g_thread_new(NULL
, tpm_emu_tpm_thread
, s
);
135 ret
= qio_channel_read(ioc
, (char *)&cmd
, sizeof(cmd
), NULL
);
140 cmd
= be32_to_cpu(cmd
);
142 case CMD_GET_CAPABILITY
: {
143 ptm_cap cap
= cpu_to_be64(0x3fff);
144 qio_channel_write(ioc
, (char *)&cap
, sizeof(cap
), &error_abort
);
149 qio_channel_read(ioc
, (char *)&init
.u
.req
, sizeof(init
.u
.req
),
151 init
.u
.resp
.tpm_result
= 0;
152 qio_channel_write(ioc
, (char *)&init
.u
.resp
, sizeof(init
.u
.resp
),
158 qio_channel_write(ioc
, (char *)&res
, sizeof(res
), &error_abort
);
159 /* the tpm data thread is expected to finish now */
160 g_thread_join(s
->emu_tpm_thread
);
165 qio_channel_write(ioc
, (char *)&res
, sizeof(res
), &error_abort
);
168 case CMD_SET_BUFFERSIZE
: {
169 ptm_setbuffersize sbs
;
170 qio_channel_read(ioc
, (char *)&sbs
.u
.req
, sizeof(sbs
.u
.req
),
172 sbs
.u
.resp
.buffersize
= sbs
.u
.req
.buffersize
?: cpu_to_be32(4096);
173 sbs
.u
.resp
.tpm_result
= 0;
174 sbs
.u
.resp
.minsize
= cpu_to_be32(128);
175 sbs
.u
.resp
.maxsize
= cpu_to_be32(4096);
176 qio_channel_write(ioc
, (char *)&sbs
.u
.resp
, sizeof(sbs
.u
.resp
),
180 case CMD_SET_LOCALITY
: {
182 /* Note: this time it's not u.req / u.resp... */
183 qio_channel_read(ioc
, (char *)&loc
, sizeof(loc
), &error_abort
);
184 g_assert_cmpint(loc
.u
.req
.loc
, ==, 0);
185 loc
.u
.resp
.tpm_result
= 0;
186 qio_channel_write(ioc
, (char *)&loc
, sizeof(loc
), &error_abort
);
189 case CMD_GET_TPMESTABLISHED
: {
193 qio_channel_write(ioc
, (char *)&est
, sizeof(est
), &error_abort
);
197 g_debug("unimplemented %u", cmd
);
198 g_assert_not_reached();
202 qtest_remove_abrt_handler(ioc
);
203 object_unref(OBJECT(ioc
));
204 object_unref(OBJECT(lioc
));
208 bool tpm_model_is_available(const char *args
, const char *tpm_if
)
214 qts
= qtest_init(args
);
219 rsp_tpm
= qtest_qmp(qts
, "{ 'execute': 'query-tpm'}");
220 if (!qdict_haskey(rsp_tpm
, "error")) {
221 QDict
*rsp_models
= qtest_qmp(qts
,
222 "{ 'execute': 'query-tpm-models'}");
223 if (qdict_haskey(rsp_models
, "return")) {
224 QList
*models
= qdict_get_qlist(rsp_models
, "return");
227 QLIST_FOREACH_ENTRY(models
, e
) {
228 QString
*s
= qobject_to(QString
, qlist_entry_obj(e
));
229 const char *ename
= qstring_get_str(s
);
230 if (!strcmp(ename
, tpm_if
)) {
236 qobject_unref(rsp_models
);
238 qobject_unref(rsp_tpm
);