2 * TPM utility functions
4 * Copyright (c) 2010 - 2015 IBM Corporation
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"
28 #include "exec/memory.h"
29 #include "sysemu/tpm_backend.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 Error *local_err = NULL;
52 Property *prop = opaque;
53 TPMBackend *s, **be = qdev_get_prop_ptr(dev, prop);
57 qdev_prop_set_after_realize(dev, name, errp);
61 visit_type_str(v, name, &str, &local_err);
63 error_propagate(errp, local_err);
67 s = qemu_find_tpm_be(str);
69 error_setg(errp, "Property '%s.%s' can't find value '%s'",
70 object_get_typename(obj), prop->name, str);
71 } else if (tpm_backend_init(s, TPM_IF(obj), errp) == 0) {
72 *be = s; /* weak reference, avoid cyclic ref */
77 static void release_tpm(Object *obj, const char *name, void *opaque)
79 DeviceState *dev = DEVICE(obj);
80 Property *prop = opaque;
81 TPMBackend **be = qdev_get_prop_ptr(dev, prop);
84 tpm_backend_reset(*be);
88 const PropertyInfo qdev_prop_tpm = {
90 .description = "ID of a tpm to use as a backend",
93 .release = release_tpm,
97 * Write an error message in the given output buffer.
99 void tpm_util_write_fatal_error_response(uint8_t *out, uint32_t out_len)
101 if (out_len >= sizeof(struct tpm_resp_hdr)) {
102 tpm_cmd_set_tag(out, TPM_TAG_RSP_COMMAND);
103 tpm_cmd_set_size(out, sizeof(struct tpm_resp_hdr));
104 tpm_cmd_set_error(out, TPM_FAIL);
108 bool tpm_util_is_selftest(const uint8_t *in, uint32_t in_len)
110 if (in_len >= sizeof(struct tpm_req_hdr)) {
111 return tpm_cmd_get_ordinal(in) == TPM_ORD_ContinueSelfTest;
118 * Send request to a TPM device. We expect a response within one second.
120 static int tpm_util_request(int fd,
128 struct timeval tv = {
133 n = write(fd, request, requestlen);
137 if (n != requestlen) {
142 FD_SET(fd, &readfds);
144 /* wait for a second */
145 n = select(fd + 1, &readfds, NULL, NULL, &tv);
150 n = read(fd, response, responselen);
151 if (n < sizeof(struct tpm_resp_hdr)) {
155 /* check the header */
156 if (tpm_cmd_get_size(response) != n) {
164 * A basic test of a TPM device. We expect a well formatted response header
165 * (error response is fine).
167 static int tpm_util_test(int fd,
170 uint16_t *return_tag)
175 ret = tpm_util_request(fd, request, requestlen,
181 *return_tag = tpm_cmd_get_tag(buf);
187 * Probe for the TPM device in the back
188 * Returns 0 on success with the version of the probed TPM set, 1 on failure.
190 int tpm_util_test_tpmdev(int tpm_fd, TPMVersion *tpm_version)
193 * Sending a TPM1.2 command to a TPM2 should return a TPM1.2
194 * header (tag = 0xc4) and error code (TPM_BADTAG = 0x1e)
196 * Sending a TPM2 command to a TPM 2 will give a TPM 2 tag in the
198 * Sending a TPM2 command to a TPM 1.2 will give a TPM 1.2 tag
199 * in the header and an error code.
201 const struct tpm_req_hdr test_req = {
202 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
203 .len = cpu_to_be32(sizeof(test_req)),
204 .ordinal = cpu_to_be32(TPM_ORD_GetTicks),
207 const struct tpm_req_hdr test_req_tpm2 = {
208 .tag = cpu_to_be16(TPM2_ST_NO_SESSIONS),
209 .len = cpu_to_be32(sizeof(test_req_tpm2)),
210 .ordinal = cpu_to_be32(TPM2_CC_ReadClock),
215 /* Send TPM 2 command */
216 ret = tpm_util_test(tpm_fd, &test_req_tpm2,
217 sizeof(test_req_tpm2), &return_tag);
218 /* TPM 2 would respond with a tag of TPM2_ST_NO_SESSIONS */
219 if (!ret && return_tag == TPM2_ST_NO_SESSIONS) {
220 *tpm_version = TPM_VERSION_2_0;
224 /* Send TPM 1.2 command */
225 ret = tpm_util_test(tpm_fd, &test_req,
226 sizeof(test_req), &return_tag);
227 if (!ret && return_tag == TPM_TAG_RSP_COMMAND) {
228 *tpm_version = TPM_VERSION_1_2;
229 /* this is a TPM 1.2 */
233 *tpm_version = TPM_VERSION_UNSPEC;
238 int tpm_util_get_buffer_size(int tpm_fd, TPMVersion tpm_version,
243 switch (tpm_version) {
244 case TPM_VERSION_1_2: {
245 const struct tpm_req_get_buffer_size {
246 struct tpm_req_hdr hdr;
250 } QEMU_PACKED tpm_get_buffer_size = {
252 .tag = cpu_to_be16(TPM_TAG_RQU_COMMAND),
253 .len = cpu_to_be32(sizeof(tpm_get_buffer_size)),
254 .ordinal = cpu_to_be32(TPM_ORD_GetCapability),
256 .capability = cpu_to_be32(TPM_CAP_PROPERTY),
257 .len = cpu_to_be32(sizeof(uint32_t)),
258 .subcap = cpu_to_be32(TPM_CAP_PROP_INPUT_BUFFER),
260 struct tpm_resp_get_buffer_size {
261 struct tpm_resp_hdr hdr;
264 } QEMU_PACKED tpm_resp;
266 ret = tpm_util_request(tpm_fd, &tpm_get_buffer_size,
267 sizeof(tpm_get_buffer_size),
268 &tpm_resp, sizeof(tpm_resp));
273 if (be32_to_cpu(tpm_resp.hdr.len) != sizeof(tpm_resp) ||
274 be32_to_cpu(tpm_resp.len) != sizeof(uint32_t)) {
275 trace_tpm_util_get_buffer_size_hdr_len(
276 be32_to_cpu(tpm_resp.hdr.len),
278 trace_tpm_util_get_buffer_size_len(be32_to_cpu(tpm_resp.len),
280 error_report("tpm_util: Got unexpected response to "
281 "TPM_GetCapability; errcode: 0x%x",
282 be32_to_cpu(tpm_resp.hdr.errcode));
285 *buffersize = be32_to_cpu(tpm_resp.buffersize);
288 case TPM_VERSION_2_0: {
289 const struct tpm2_req_get_buffer_size {
290 struct tpm_req_hdr hdr;
294 } QEMU_PACKED tpm2_get_buffer_size = {
296 .tag = cpu_to_be16(TPM2_ST_NO_SESSIONS),
297 .len = cpu_to_be32(sizeof(tpm2_get_buffer_size)),
298 .ordinal = cpu_to_be32(TPM2_CC_GetCapability),
300 .capability = cpu_to_be32(TPM2_CAP_TPM_PROPERTIES),
301 .property = cpu_to_be32(TPM2_PT_MAX_COMMAND_SIZE),
302 .count = cpu_to_be32(2), /* also get TPM2_PT_MAX_RESPONSE_SIZE */
304 struct tpm2_resp_get_buffer_size {
305 struct tpm_resp_hdr hdr;
313 } QEMU_PACKED tpm2_resp;
315 ret = tpm_util_request(tpm_fd, &tpm2_get_buffer_size,
316 sizeof(tpm2_get_buffer_size),
317 &tpm2_resp, sizeof(tpm2_resp));
322 if (be32_to_cpu(tpm2_resp.hdr.len) != sizeof(tpm2_resp) ||
323 be32_to_cpu(tpm2_resp.count) != 2) {
324 trace_tpm_util_get_buffer_size_hdr_len2(
325 be32_to_cpu(tpm2_resp.hdr.len),
327 trace_tpm_util_get_buffer_size_len2(
328 be32_to_cpu(tpm2_resp.count), 2);
329 error_report("tpm_util: Got unexpected response to "
330 "TPM2_GetCapability; errcode: 0x%x",
331 be32_to_cpu(tpm2_resp.hdr.errcode));
334 *buffersize = MAX(be32_to_cpu(tpm2_resp.value1),
335 be32_to_cpu(tpm2_resp.value2));
338 case TPM_VERSION_UNSPEC:
342 trace_tpm_util_get_buffer_size(*buffersize);
347 void tpm_sized_buffer_reset(TPMSizedBuffer *tsb)