2 * TPM utility functions
4 * Copyright (c) 2010 - 2015 IBM Corporation
6 * Stefan Berger <stefanb@us.ibm.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>
22 #include "qemu/osdep.h"
23 #include "qemu/error-report.h"
24 #include "qapi/error.h"
25 #include "qapi/visitor.h"
27 #include "exec/memory.h"
28 #include "hw/qdev-properties.h"
29 #include "sysemu/tpm_backend.h"
30 #include "sysemu/tpm_util.h"
33 /* tpm backend property */
35 static void get_tpm(Object
*obj
, Visitor
*v
, const char *name
, void *opaque
,
38 DeviceState
*dev
= DEVICE(obj
);
39 TPMBackend
**be
= qdev_get_prop_ptr(dev
, opaque
);
42 p
= g_strdup(*be
? (*be
)->id
: "");
43 visit_type_str(v
, name
, &p
, errp
);
47 static void set_tpm(Object
*obj
, Visitor
*v
, const char *name
, void *opaque
,
50 DeviceState
*dev
= DEVICE(obj
);
51 Property
*prop
= opaque
;
52 TPMBackend
*s
, **be
= qdev_get_prop_ptr(dev
, prop
);
56 qdev_prop_set_after_realize(dev
, name
, errp
);
60 if (!visit_type_str(v
, name
, &str
, errp
)) {
64 s
= qemu_find_tpm_be(str
);
66 error_setg(errp
, "Property '%s.%s' can't find value '%s'",
67 object_get_typename(obj
), prop
->name
, str
);
68 } else if (tpm_backend_init(s
, TPM_IF(obj
), errp
) == 0) {
69 *be
= s
; /* weak reference, avoid cyclic ref */
74 static void release_tpm(Object
*obj
, const char *name
, void *opaque
)
76 DeviceState
*dev
= DEVICE(obj
);
77 Property
*prop
= opaque
;
78 TPMBackend
**be
= qdev_get_prop_ptr(dev
, prop
);
81 tpm_backend_reset(*be
);
85 const PropertyInfo qdev_prop_tpm
= {
87 .description
= "ID of a tpm to use as a backend",
90 .release
= release_tpm
,
94 * Write an error message in the given output buffer.
96 void tpm_util_write_fatal_error_response(uint8_t *out
, uint32_t out_len
)
98 if (out_len
>= sizeof(struct tpm_resp_hdr
)) {
99 tpm_cmd_set_tag(out
, TPM_TAG_RSP_COMMAND
);
100 tpm_cmd_set_size(out
, sizeof(struct tpm_resp_hdr
));
101 tpm_cmd_set_error(out
, TPM_FAIL
);
105 bool tpm_util_is_selftest(const uint8_t *in
, uint32_t in_len
)
107 if (in_len
>= sizeof(struct tpm_req_hdr
)) {
108 return tpm_cmd_get_ordinal(in
) == TPM_ORD_ContinueSelfTest
;
115 * Send request to a TPM device. We expect a response within one second.
117 static int tpm_util_request(int fd
,
125 struct timeval tv
= {
130 n
= write(fd
, request
, requestlen
);
134 if (n
!= requestlen
) {
139 FD_SET(fd
, &readfds
);
141 /* wait for a second */
142 n
= select(fd
+ 1, &readfds
, NULL
, NULL
, &tv
);
147 n
= read(fd
, response
, responselen
);
148 if (n
< sizeof(struct tpm_resp_hdr
)) {
152 /* check the header */
153 if (tpm_cmd_get_size(response
) != n
) {
161 * A basic test of a TPM device. We expect a well formatted response header
162 * (error response is fine).
164 static int tpm_util_test(int fd
,
167 uint16_t *return_tag
)
172 ret
= tpm_util_request(fd
, request
, requestlen
,
178 *return_tag
= tpm_cmd_get_tag(buf
);
184 * Probe for the TPM device in the back
185 * Returns 0 on success with the version of the probed TPM set, 1 on failure.
187 int tpm_util_test_tpmdev(int tpm_fd
, TPMVersion
*tpm_version
)
190 * Sending a TPM1.2 command to a TPM2 should return a TPM1.2
191 * header (tag = 0xc4) and error code (TPM_BADTAG = 0x1e)
193 * Sending a TPM2 command to a TPM 2 will give a TPM 2 tag in the
195 * Sending a TPM2 command to a TPM 1.2 will give a TPM 1.2 tag
196 * in the header and an error code.
198 const struct tpm_req_hdr test_req
= {
199 .tag
= cpu_to_be16(TPM_TAG_RQU_COMMAND
),
200 .len
= cpu_to_be32(sizeof(test_req
)),
201 .ordinal
= cpu_to_be32(TPM_ORD_GetTicks
),
204 const struct tpm_req_hdr test_req_tpm2
= {
205 .tag
= cpu_to_be16(TPM2_ST_NO_SESSIONS
),
206 .len
= cpu_to_be32(sizeof(test_req_tpm2
)),
207 .ordinal
= cpu_to_be32(TPM2_CC_ReadClock
),
212 /* Send TPM 2 command */
213 ret
= tpm_util_test(tpm_fd
, &test_req_tpm2
,
214 sizeof(test_req_tpm2
), &return_tag
);
215 /* TPM 2 would respond with a tag of TPM2_ST_NO_SESSIONS */
216 if (!ret
&& return_tag
== TPM2_ST_NO_SESSIONS
) {
217 *tpm_version
= TPM_VERSION_2_0
;
221 /* Send TPM 1.2 command */
222 ret
= tpm_util_test(tpm_fd
, &test_req
,
223 sizeof(test_req
), &return_tag
);
224 if (!ret
&& return_tag
== TPM_TAG_RSP_COMMAND
) {
225 *tpm_version
= TPM_VERSION_1_2
;
226 /* this is a TPM 1.2 */
230 *tpm_version
= TPM_VERSION_UNSPEC
;
235 int tpm_util_get_buffer_size(int tpm_fd
, TPMVersion tpm_version
,
240 switch (tpm_version
) {
241 case TPM_VERSION_1_2
: {
242 const struct tpm_req_get_buffer_size
{
243 struct tpm_req_hdr hdr
;
247 } QEMU_PACKED tpm_get_buffer_size
= {
249 .tag
= cpu_to_be16(TPM_TAG_RQU_COMMAND
),
250 .len
= cpu_to_be32(sizeof(tpm_get_buffer_size
)),
251 .ordinal
= cpu_to_be32(TPM_ORD_GetCapability
),
253 .capability
= cpu_to_be32(TPM_CAP_PROPERTY
),
254 .len
= cpu_to_be32(sizeof(uint32_t)),
255 .subcap
= cpu_to_be32(TPM_CAP_PROP_INPUT_BUFFER
),
257 struct tpm_resp_get_buffer_size
{
258 struct tpm_resp_hdr hdr
;
261 } QEMU_PACKED tpm_resp
;
263 ret
= tpm_util_request(tpm_fd
, &tpm_get_buffer_size
,
264 sizeof(tpm_get_buffer_size
),
265 &tpm_resp
, sizeof(tpm_resp
));
270 if (be32_to_cpu(tpm_resp
.hdr
.len
) != sizeof(tpm_resp
) ||
271 be32_to_cpu(tpm_resp
.len
) != sizeof(uint32_t)) {
272 trace_tpm_util_get_buffer_size_hdr_len(
273 be32_to_cpu(tpm_resp
.hdr
.len
),
275 trace_tpm_util_get_buffer_size_len(be32_to_cpu(tpm_resp
.len
),
277 error_report("tpm_util: Got unexpected response to "
278 "TPM_GetCapability; errcode: 0x%x",
279 be32_to_cpu(tpm_resp
.hdr
.errcode
));
282 *buffersize
= be32_to_cpu(tpm_resp
.buffersize
);
285 case TPM_VERSION_2_0
: {
286 const struct tpm2_req_get_buffer_size
{
287 struct tpm_req_hdr hdr
;
291 } QEMU_PACKED tpm2_get_buffer_size
= {
293 .tag
= cpu_to_be16(TPM2_ST_NO_SESSIONS
),
294 .len
= cpu_to_be32(sizeof(tpm2_get_buffer_size
)),
295 .ordinal
= cpu_to_be32(TPM2_CC_GetCapability
),
297 .capability
= cpu_to_be32(TPM2_CAP_TPM_PROPERTIES
),
298 .property
= cpu_to_be32(TPM2_PT_MAX_COMMAND_SIZE
),
299 .count
= cpu_to_be32(2), /* also get TPM2_PT_MAX_RESPONSE_SIZE */
301 struct tpm2_resp_get_buffer_size
{
302 struct tpm_resp_hdr hdr
;
310 } QEMU_PACKED tpm2_resp
;
312 ret
= tpm_util_request(tpm_fd
, &tpm2_get_buffer_size
,
313 sizeof(tpm2_get_buffer_size
),
314 &tpm2_resp
, sizeof(tpm2_resp
));
319 if (be32_to_cpu(tpm2_resp
.hdr
.len
) != sizeof(tpm2_resp
) ||
320 be32_to_cpu(tpm2_resp
.count
) != 2) {
321 trace_tpm_util_get_buffer_size_hdr_len2(
322 be32_to_cpu(tpm2_resp
.hdr
.len
),
324 trace_tpm_util_get_buffer_size_len2(
325 be32_to_cpu(tpm2_resp
.count
), 2);
326 error_report("tpm_util: Got unexpected response to "
327 "TPM2_GetCapability; errcode: 0x%x",
328 be32_to_cpu(tpm2_resp
.hdr
.errcode
));
331 *buffersize
= MAX(be32_to_cpu(tpm2_resp
.value1
),
332 be32_to_cpu(tpm2_resp
.value2
));
335 case TPM_VERSION_UNSPEC
:
339 trace_tpm_util_get_buffer_size(*buffersize
);
344 void tpm_sized_buffer_reset(TPMSizedBuffer
*tsb
)
351 void tpm_util_show_buffer(const unsigned char *buffer
,
352 size_t buffer_size
, const char *string
)
355 char *line_buffer
, *p
;
357 if (!trace_event_get_state_backends(TRACE_TPM_UTIL_SHOW_BUFFER
)) {
360 len
= MIN(tpm_cmd_get_size(buffer
), buffer_size
);
363 * allocate enough room for 3 chars per buffer entry plus a
364 * newline after every 16 chars and a final null terminator.
366 line_buffer
= g_malloc(len
* 3 + (len
/ 16) + 1);
368 for (i
= 0, p
= line_buffer
; i
< len
; i
++) {
369 if (i
&& !(i
% 16)) {
370 p
+= sprintf(p
, "\n");
372 p
+= sprintf(p
, "%.2X ", buffer
[i
]);
374 trace_tpm_util_show_buffer(string
, len
, line_buffer
);