util/hbitmap: update orig_size on truncate
[qemu/ar7.git] / hw / tpm / tpm_passthrough.c
blob897e3d5864c1e677b398d5a23a4ea2710d4fd28a
1 /*
2 * passthrough TPM driver
4 * Copyright (c) 2010 - 2013 IBM Corporation
5 * Authors:
6 * Stefan Berger <stefanb@us.ibm.com>
8 * Copyright (C) 2011 IAIK, Graz University of Technology
9 * Author: Andreas Niederl
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>
25 #include "qemu/osdep.h"
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
28 #include "qemu/module.h"
29 #include "qemu/sockets.h"
30 #include "sysemu/tpm_backend.h"
31 #include "tpm_int.h"
32 #include "hw/hw.h"
33 #include "qapi/clone-visitor.h"
34 #include "qapi/qapi-visit-tpm.h"
35 #include "tpm_util.h"
36 #include "trace.h"
38 #define TYPE_TPM_PASSTHROUGH "tpm-passthrough"
39 #define TPM_PASSTHROUGH(obj) \
40 OBJECT_CHECK(TPMPassthruState, (obj), TYPE_TPM_PASSTHROUGH)
42 /* data structures */
43 struct TPMPassthruState {
44 TPMBackend parent;
46 TPMPassthroughOptions *options;
47 const char *tpm_dev;
48 int tpm_fd;
49 bool tpm_executing;
50 bool tpm_op_canceled;
51 int cancel_fd;
53 TPMVersion tpm_version;
54 size_t tpm_buffersize;
57 typedef struct TPMPassthruState TPMPassthruState;
59 #define TPM_PASSTHROUGH_DEFAULT_DEVICE "/dev/tpm0"
61 /* functions */
63 static void tpm_passthrough_cancel_cmd(TPMBackend *tb);
65 static int tpm_passthrough_unix_read(int fd, uint8_t *buf, uint32_t len)
67 int ret;
68 reread:
69 ret = read(fd, buf, len);
70 if (ret < 0) {
71 if (errno != EINTR && errno != EAGAIN) {
72 return -1;
74 goto reread;
76 return ret;
79 static void tpm_passthrough_unix_tx_bufs(TPMPassthruState *tpm_pt,
80 const uint8_t *in, uint32_t in_len,
81 uint8_t *out, uint32_t out_len,
82 bool *selftest_done, Error **errp)
84 ssize_t ret;
85 bool is_selftest;
87 /* FIXME: protect shared variables or use other sync mechanism */
88 tpm_pt->tpm_op_canceled = false;
89 tpm_pt->tpm_executing = true;
90 *selftest_done = false;
92 is_selftest = tpm_util_is_selftest(in, in_len);
94 ret = qemu_write_full(tpm_pt->tpm_fd, in, in_len);
95 if (ret != in_len) {
96 if (!tpm_pt->tpm_op_canceled || errno != ECANCELED) {
97 error_setg_errno(errp, errno, "tpm_passthrough: error while "
98 "transmitting data to TPM");
100 goto err_exit;
103 tpm_pt->tpm_executing = false;
105 ret = tpm_passthrough_unix_read(tpm_pt->tpm_fd, out, out_len);
106 if (ret < 0) {
107 if (!tpm_pt->tpm_op_canceled || errno != ECANCELED) {
108 error_setg_errno(errp, errno, "tpm_passthrough: error while "
109 "reading data from TPM");
111 } else if (ret < sizeof(struct tpm_resp_hdr) ||
112 tpm_cmd_get_size(out) != ret) {
113 ret = -1;
114 error_setg_errno(errp, errno, "tpm_passthrough: received invalid "
115 "response packet from TPM");
118 if (is_selftest && (ret >= sizeof(struct tpm_resp_hdr))) {
119 *selftest_done = tpm_cmd_get_errcode(out) == 0;
122 err_exit:
123 if (ret < 0) {
124 tpm_util_write_fatal_error_response(out, out_len);
127 tpm_pt->tpm_executing = false;
130 static void tpm_passthrough_handle_request(TPMBackend *tb, TPMBackendCmd *cmd,
131 Error **errp)
133 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(tb);
135 trace_tpm_passthrough_handle_request(cmd);
137 tpm_passthrough_unix_tx_bufs(tpm_pt, cmd->in, cmd->in_len,
138 cmd->out, cmd->out_len, &cmd->selftest_done,
139 errp);
142 static void tpm_passthrough_reset(TPMBackend *tb)
144 trace_tpm_passthrough_reset();
146 tpm_passthrough_cancel_cmd(tb);
149 static bool tpm_passthrough_get_tpm_established_flag(TPMBackend *tb)
151 return false;
154 static int tpm_passthrough_reset_tpm_established_flag(TPMBackend *tb,
155 uint8_t locty)
157 /* only a TPM 2.0 will support this */
158 return 0;
161 static void tpm_passthrough_cancel_cmd(TPMBackend *tb)
163 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(tb);
164 int n;
167 * As of Linux 3.7 the tpm_tis driver does not properly cancel
168 * commands on all TPM manufacturers' TPMs.
169 * Only cancel if we're busy so we don't cancel someone else's
170 * command, e.g., a command executed on the host.
172 if (tpm_pt->tpm_executing) {
173 if (tpm_pt->cancel_fd >= 0) {
174 tpm_pt->tpm_op_canceled = true;
175 n = write(tpm_pt->cancel_fd, "-", 1);
176 if (n != 1) {
177 error_report("Canceling TPM command failed: %s",
178 strerror(errno));
180 } else {
181 error_report("Cannot cancel TPM command due to missing "
182 "TPM sysfs cancel entry");
187 static TPMVersion tpm_passthrough_get_tpm_version(TPMBackend *tb)
189 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(tb);
191 return tpm_pt->tpm_version;
194 static size_t tpm_passthrough_get_buffer_size(TPMBackend *tb)
196 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(tb);
197 int ret;
199 ret = tpm_util_get_buffer_size(tpm_pt->tpm_fd, tpm_pt->tpm_version,
200 &tpm_pt->tpm_buffersize);
201 if (ret < 0) {
202 tpm_pt->tpm_buffersize = 4096;
204 return tpm_pt->tpm_buffersize;
208 * Unless path or file descriptor set has been provided by user,
209 * determine the sysfs cancel file following kernel documentation
210 * in Documentation/ABI/stable/sysfs-class-tpm.
211 * From /dev/tpm0 create /sys/class/tpm/tpm0/device/cancel
212 * before 4.0: /sys/class/misc/tpm0/device/cancel
214 static int tpm_passthrough_open_sysfs_cancel(TPMPassthruState *tpm_pt)
216 int fd = -1;
217 char *dev;
218 char path[PATH_MAX];
220 if (tpm_pt->options->cancel_path) {
221 fd = qemu_open(tpm_pt->options->cancel_path, O_WRONLY);
222 if (fd < 0) {
223 error_report("tpm_passthrough: Could not open TPM cancel path: %s",
224 strerror(errno));
226 return fd;
229 dev = strrchr(tpm_pt->tpm_dev, '/');
230 if (!dev) {
231 error_report("tpm_passthrough: Bad TPM device path %s",
232 tpm_pt->tpm_dev);
233 return -1;
236 dev++;
237 if (snprintf(path, sizeof(path), "/sys/class/tpm/%s/device/cancel",
238 dev) < sizeof(path)) {
239 fd = qemu_open(path, O_WRONLY);
240 if (fd < 0) {
241 if (snprintf(path, sizeof(path), "/sys/class/misc/%s/device/cancel",
242 dev) < sizeof(path)) {
243 fd = qemu_open(path, O_WRONLY);
248 if (fd < 0) {
249 error_report("tpm_passthrough: Could not guess TPM cancel path");
250 } else {
251 tpm_pt->options->cancel_path = g_strdup(path);
254 return fd;
257 static int
258 tpm_passthrough_handle_device_opts(TPMPassthruState *tpm_pt, QemuOpts *opts)
260 const char *value;
262 value = qemu_opt_get(opts, "cancel-path");
263 if (value) {
264 tpm_pt->options->cancel_path = g_strdup(value);
265 tpm_pt->options->has_cancel_path = true;
268 value = qemu_opt_get(opts, "path");
269 if (value) {
270 tpm_pt->options->has_path = true;
271 tpm_pt->options->path = g_strdup(value);
274 tpm_pt->tpm_dev = value ? value : TPM_PASSTHROUGH_DEFAULT_DEVICE;
275 tpm_pt->tpm_fd = qemu_open(tpm_pt->tpm_dev, O_RDWR);
276 if (tpm_pt->tpm_fd < 0) {
277 error_report("Cannot access TPM device using '%s': %s",
278 tpm_pt->tpm_dev, strerror(errno));
279 return -1;
282 if (tpm_util_test_tpmdev(tpm_pt->tpm_fd, &tpm_pt->tpm_version)) {
283 error_report("'%s' is not a TPM device.",
284 tpm_pt->tpm_dev);
285 return -1;
288 tpm_pt->cancel_fd = tpm_passthrough_open_sysfs_cancel(tpm_pt);
289 if (tpm_pt->cancel_fd < 0) {
290 return -1;
293 return 0;
296 static TPMBackend *tpm_passthrough_create(QemuOpts *opts)
298 Object *obj = object_new(TYPE_TPM_PASSTHROUGH);
300 if (tpm_passthrough_handle_device_opts(TPM_PASSTHROUGH(obj), opts)) {
301 object_unref(obj);
302 return NULL;
305 return TPM_BACKEND(obj);
308 static int tpm_passthrough_startup_tpm(TPMBackend *tb, size_t buffersize)
310 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(tb);
312 if (buffersize && buffersize < tpm_pt->tpm_buffersize) {
313 error_report("Requested buffer size of %zu is smaller than host TPM's "
314 "fixed buffer size of %zu",
315 buffersize, tpm_pt->tpm_buffersize);
316 return -1;
319 return 0;
322 static TpmTypeOptions *tpm_passthrough_get_tpm_options(TPMBackend *tb)
324 TpmTypeOptions *options = g_new0(TpmTypeOptions, 1);
326 options->type = TPM_TYPE_OPTIONS_KIND_PASSTHROUGH;
327 options->u.passthrough.data = QAPI_CLONE(TPMPassthroughOptions,
328 TPM_PASSTHROUGH(tb)->options);
330 return options;
333 static const QemuOptDesc tpm_passthrough_cmdline_opts[] = {
334 TPM_STANDARD_CMDLINE_OPTS,
336 .name = "cancel-path",
337 .type = QEMU_OPT_STRING,
338 .help = "Sysfs file entry for canceling TPM commands",
341 .name = "path",
342 .type = QEMU_OPT_STRING,
343 .help = "Path to TPM device on the host",
345 { /* end of list */ },
348 static void tpm_passthrough_inst_init(Object *obj)
350 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(obj);
352 tpm_pt->options = g_new0(TPMPassthroughOptions, 1);
353 tpm_pt->tpm_fd = -1;
354 tpm_pt->cancel_fd = -1;
357 static void tpm_passthrough_inst_finalize(Object *obj)
359 TPMPassthruState *tpm_pt = TPM_PASSTHROUGH(obj);
361 tpm_passthrough_cancel_cmd(TPM_BACKEND(obj));
363 if (tpm_pt->tpm_fd >= 0) {
364 qemu_close(tpm_pt->tpm_fd);
366 if (tpm_pt->cancel_fd >= 0) {
367 qemu_close(tpm_pt->cancel_fd);
369 qapi_free_TPMPassthroughOptions(tpm_pt->options);
372 static void tpm_passthrough_class_init(ObjectClass *klass, void *data)
374 TPMBackendClass *tbc = TPM_BACKEND_CLASS(klass);
376 tbc->type = TPM_TYPE_PASSTHROUGH;
377 tbc->opts = tpm_passthrough_cmdline_opts;
378 tbc->desc = "Passthrough TPM backend driver";
379 tbc->create = tpm_passthrough_create;
380 tbc->startup_tpm = tpm_passthrough_startup_tpm;
381 tbc->reset = tpm_passthrough_reset;
382 tbc->cancel_cmd = tpm_passthrough_cancel_cmd;
383 tbc->get_tpm_established_flag = tpm_passthrough_get_tpm_established_flag;
384 tbc->reset_tpm_established_flag =
385 tpm_passthrough_reset_tpm_established_flag;
386 tbc->get_tpm_version = tpm_passthrough_get_tpm_version;
387 tbc->get_buffer_size = tpm_passthrough_get_buffer_size;
388 tbc->get_tpm_options = tpm_passthrough_get_tpm_options;
389 tbc->handle_request = tpm_passthrough_handle_request;
392 static const TypeInfo tpm_passthrough_info = {
393 .name = TYPE_TPM_PASSTHROUGH,
394 .parent = TYPE_TPM_BACKEND,
395 .instance_size = sizeof(TPMPassthruState),
396 .class_init = tpm_passthrough_class_init,
397 .instance_init = tpm_passthrough_inst_init,
398 .instance_finalize = tpm_passthrough_inst_finalize,
401 static void tpm_passthrough_register(void)
403 type_register_static(&tpm_passthrough_info);
406 type_init(tpm_passthrough_register)