4 * Copyright (C) 2011-2013 IBM Corporation
7 * Stefan Berger <stefanb@us.ibm.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.
14 #include "config-host.h"
16 #include "qapi/qmp/qerror.h"
17 #include "sysemu/tpm_backend.h"
18 #include "sysemu/tpm.h"
19 #include "qemu/config-file.h"
20 #include "qemu/error-report.h"
21 #include "qmp-commands.h"
23 static QLIST_HEAD(, TPMBackend) tpm_backends =
24 QLIST_HEAD_INITIALIZER(tpm_backends);
27 #define TPM_MAX_MODELS 1
28 #define TPM_MAX_DRIVERS 1
30 static TPMDriverOps const *be_drivers[TPM_MAX_DRIVERS] = {
34 static enum TpmModel tpm_models[TPM_MAX_MODELS] = {
38 int tpm_register_model(enum TpmModel model)
42 for (i = 0; i < TPM_MAX_MODELS; i++) {
43 if (tpm_models[i] == TPM_MODEL_MAX) {
44 tpm_models[i] = model;
48 error_report("Could not register TPM model");
52 static bool tpm_model_is_registered(enum TpmModel model)
56 for (i = 0; i < TPM_MAX_MODELS; i++) {
57 if (tpm_models[i] == model) {
64 const TPMDriverOps *tpm_get_backend_driver(const char *type)
68 for (i = 0; i < TPM_MAX_DRIVERS && be_drivers[i] != NULL; i++) {
69 if (!strcmp(TpmType_lookup[be_drivers[i]->type], type)) {
79 int tpm_register_driver(const TPMDriverOps *tdo)
83 for (i = 0; i < TPM_MAX_DRIVERS; i++) {
89 error_report("Could not register TPM driver");
94 * Walk the list of available TPM backend drivers and display them on the
97 static void tpm_display_backend_drivers(void)
101 fprintf(stderr, "Supported TPM types (choose only one):\n");
103 for (i = 0; i < TPM_MAX_DRIVERS && be_drivers[i] != NULL; i++) {
104 fprintf(stderr, "%12s %s\n",
105 TpmType_lookup[be_drivers[i]->type], be_drivers[i]->desc());
107 fprintf(stderr, "\n");
111 * Find the TPM with the given Id
113 TPMBackend *qemu_find_tpm(const char *id)
118 QLIST_FOREACH(drv, &tpm_backends, list) {
119 if (!strcmp(drv->id, id)) {
128 static int configure_tpm(QemuOpts *opts)
132 const TPMDriverOps *be;
134 Error *local_err = NULL;
136 if (!QLIST_EMPTY(&tpm_backends)) {
137 error_report("Only one TPM is allowed.");
141 id = qemu_opts_id(opts);
143 error_report(QERR_MISSING_PARAMETER, "id");
147 value = qemu_opt_get(opts, "type");
149 error_report(QERR_MISSING_PARAMETER, "type");
150 tpm_display_backend_drivers();
154 be = tpm_get_backend_driver(value);
156 error_report(QERR_INVALID_PARAMETER_VALUE,
157 "type", "a TPM backend type");
158 tpm_display_backend_drivers();
162 /* validate backend specific opts */
163 qemu_opts_validate(opts, be->opts, &local_err);
165 error_report_err(local_err);
169 drv = be->create(opts, id);
174 tpm_backend_open(drv, &local_err);
176 error_report_err(local_err);
180 QLIST_INSERT_HEAD(&tpm_backends, drv, list);
185 static int tpm_init_tpmdev(void *dummy, QemuOpts *opts, Error **errp)
187 return configure_tpm(opts);
191 * Walk the list of TPM backend drivers that are in use and call their
192 * destroy function to have them cleaned up.
194 void tpm_cleanup(void)
196 TPMBackend *drv, *next;
198 QLIST_FOREACH_SAFE(drv, &tpm_backends, list, next) {
199 QLIST_REMOVE(drv, list);
200 tpm_backend_destroy(drv);
205 * Initialize the TPM. Process the tpmdev command line options describing the
210 if (qemu_opts_foreach(qemu_find_opts("tpmdev"),
211 tpm_init_tpmdev, NULL, NULL)) {
220 * Parse the TPM configuration options.
221 * To display all available TPM backends the user may use '-tpmdev help'
223 int tpm_config_parse(QemuOptsList *opts_list, const char *optarg)
227 if (!strcmp(optarg, "help")) {
228 tpm_display_backend_drivers();
231 opts = qemu_opts_parse_noisily(opts_list, optarg, true);
238 #endif /* CONFIG_TPM */
240 static const TPMDriverOps *tpm_driver_find_by_type(enum TpmType type)
244 for (i = 0; i < TPM_MAX_DRIVERS && be_drivers[i] != NULL; i++) {
245 if (be_drivers[i]->type == type) {
246 return be_drivers[i];
252 static TPMInfo *qmp_query_tpm_inst(TPMBackend *drv)
254 TPMInfo *res = g_new0(TPMInfo, 1);
255 TPMPassthroughOptions *tpo;
257 res->id = g_strdup(drv->id);
258 res->model = drv->fe_model;
259 res->options = g_new0(TpmTypeOptions, 1);
261 switch (drv->ops->type) {
262 case TPM_TYPE_PASSTHROUGH:
263 res->options->kind = TPM_TYPE_OPTIONS_KIND_PASSTHROUGH;
264 tpo = g_new0(TPMPassthroughOptions, 1);
265 res->options->passthrough = tpo;
267 tpo->path = g_strdup(drv->path);
268 tpo->has_path = true;
270 if (drv->cancel_path) {
271 tpo->cancel_path = g_strdup(drv->cancel_path);
272 tpo->has_cancel_path = true;
283 * Walk the list of active TPM backends and collect information about them
284 * following the schema description in qapi-schema.json.
286 TPMInfoList *qmp_query_tpm(Error **errp)
289 TPMInfoList *info, *head = NULL, *cur_item = NULL;
291 QLIST_FOREACH(drv, &tpm_backends, list) {
292 if (!tpm_model_is_registered(drv->fe_model)) {
295 info = g_new0(TPMInfoList, 1);
296 info->value = qmp_query_tpm_inst(drv);
299 head = cur_item = info;
301 cur_item->next = info;
309 TpmTypeList *qmp_query_tpm_types(Error **errp)
312 TpmTypeList *head = NULL, *prev = NULL, *cur_item;
314 for (i = 0; i < TPM_TYPE_MAX; i++) {
315 if (!tpm_driver_find_by_type(i)) {
318 cur_item = g_new0(TpmTypeList, 1);
322 prev->next = cur_item;
333 TpmModelList *qmp_query_tpm_models(Error **errp)
336 TpmModelList *head = NULL, *prev = NULL, *cur_item;
338 for (i = 0; i < TPM_MODEL_MAX; i++) {
339 if (!tpm_model_is_registered(i)) {
342 cur_item = g_new0(TpmModelList, 1);
346 prev->next = cur_item;