]>
Commit | Line | Data |
---|---|---|
d1a0cf73 SB |
1 | /* |
2 | * TPM configuration | |
3 | * | |
4 | * Copyright (C) 2011-2013 IBM Corporation | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Berger <stefanb@us.ibm.com> | |
8 | * | |
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. | |
11 | * | |
12 | * Based on net.c | |
13 | */ | |
e688df6b | 14 | |
d38ea87a | 15 | #include "qemu/osdep.h" |
d1a0cf73 | 16 | |
e688df6b | 17 | #include "qapi/error.h" |
9af23989 | 18 | #include "qapi/qapi-commands-tpm.h" |
d1a0cf73 | 19 | #include "qapi/qmp/qerror.h" |
dccfcd0e | 20 | #include "sysemu/tpm_backend.h" |
bdee56f5 | 21 | #include "sysemu/tpm.h" |
d1a0cf73 | 22 | #include "qemu/config-file.h" |
d49b6836 | 23 | #include "qemu/error-report.h" |
d1a0cf73 SB |
24 | |
25 | static QLIST_HEAD(, TPMBackend) tpm_backends = | |
26 | QLIST_HEAD_INITIALIZER(tpm_backends); | |
27 | ||
d31076ba MAL |
28 | static const TPMBackendClass * |
29 | tpm_be_find_by_type(enum TpmType type) | |
f3faa1df MAL |
30 | { |
31 | ObjectClass *oc; | |
f3faa1df MAL |
32 | char *typename = g_strdup_printf("tpm-%s", TpmType_str(type)); |
33 | ||
34 | oc = object_class_by_name(typename); | |
35 | g_free(typename); | |
36 | ||
37 | if (!object_class_dynamic_cast(oc, TYPE_TPM_BACKEND)) { | |
38 | return NULL; | |
39 | } | |
40 | ||
d31076ba | 41 | return TPM_BACKEND_CLASS(oc); |
f3faa1df MAL |
42 | } |
43 | ||
d1a0cf73 SB |
44 | /* |
45 | * Walk the list of available TPM backend drivers and display them on the | |
46 | * screen. | |
47 | */ | |
bdee56f5 | 48 | static void tpm_display_backend_drivers(void) |
d1a0cf73 | 49 | { |
5a6791c3 | 50 | bool got_one = false; |
d1a0cf73 SB |
51 | int i; |
52 | ||
a9a72aee | 53 | for (i = 0; i < TPM_TYPE__MAX; i++) { |
d31076ba MAL |
54 | const TPMBackendClass *bc = tpm_be_find_by_type(i); |
55 | if (!bc) { | |
a9a72aee MAL |
56 | continue; |
57 | } | |
5a6791c3 MA |
58 | if (!got_one) { |
59 | error_printf("Supported TPM types (choose only one):\n"); | |
60 | got_one = true; | |
61 | } | |
62 | error_printf("%12s %s\n", TpmType_str(i), bc->desc); | |
63 | } | |
64 | if (!got_one) { | |
65 | error_printf("No TPM backend types are available\n"); | |
d1a0cf73 | 66 | } |
d1a0cf73 SB |
67 | } |
68 | ||
69 | /* | |
70 | * Find the TPM with the given Id | |
71 | */ | |
d36e7db1 | 72 | TPMBackend *qemu_find_tpm_be(const char *id) |
d1a0cf73 SB |
73 | { |
74 | TPMBackend *drv; | |
75 | ||
76 | if (id) { | |
77 | QLIST_FOREACH(drv, &tpm_backends, list) { | |
78 | if (!strcmp(drv->id, id)) { | |
79 | return drv; | |
80 | } | |
81 | } | |
82 | } | |
83 | ||
84 | return NULL; | |
85 | } | |
86 | ||
76ae76bf | 87 | static int tpm_init_tpmdev(void *dummy, QemuOpts *opts, Error **errp) |
d1a0cf73 | 88 | { |
d64072c0 MA |
89 | /* |
90 | * Use of error_report() in a function with an Error ** parameter | |
91 | * is suspicious. It is okay here. The parameter only exists to | |
92 | * make the function usable with qemu_opts_foreach(). It is not | |
93 | * actually used. | |
94 | */ | |
d1a0cf73 SB |
95 | const char *value; |
96 | const char *id; | |
d31076ba | 97 | const TPMBackendClass *be; |
d1a0cf73 | 98 | TPMBackend *drv; |
d64072c0 | 99 | Error *local_err = NULL; |
d91a7a57 | 100 | int i; |
d1a0cf73 SB |
101 | |
102 | if (!QLIST_EMPTY(&tpm_backends)) { | |
d64072c0 | 103 | error_report("Only one TPM is allowed."); |
d1a0cf73 SB |
104 | return 1; |
105 | } | |
106 | ||
107 | id = qemu_opts_id(opts); | |
108 | if (id == NULL) { | |
d64072c0 | 109 | error_report(QERR_MISSING_PARAMETER, "id"); |
d1a0cf73 SB |
110 | return 1; |
111 | } | |
112 | ||
113 | value = qemu_opt_get(opts, "type"); | |
114 | if (!value) { | |
d64072c0 | 115 | error_report(QERR_MISSING_PARAMETER, "type"); |
d1a0cf73 SB |
116 | tpm_display_backend_drivers(); |
117 | return 1; | |
118 | } | |
119 | ||
d91a7a57 | 120 | i = qapi_enum_parse(&TpmType_lookup, value, -1, NULL); |
d31076ba | 121 | be = i >= 0 ? tpm_be_find_by_type(i) : NULL; |
d1a0cf73 | 122 | if (be == NULL) { |
d64072c0 MA |
123 | error_report(QERR_INVALID_PARAMETER_VALUE, |
124 | "type", "a TPM backend type"); | |
d1a0cf73 SB |
125 | tpm_display_backend_drivers(); |
126 | return 1; | |
127 | } | |
128 | ||
bb716238 | 129 | /* validate backend specific opts */ |
d64072c0 MA |
130 | if (!qemu_opts_validate(opts, be->opts, &local_err)) { |
131 | error_report_err(local_err); | |
bb716238 SB |
132 | return 1; |
133 | } | |
134 | ||
9f7c0ef2 | 135 | drv = be->create(opts); |
d1a0cf73 SB |
136 | if (!drv) { |
137 | return 1; | |
138 | } | |
139 | ||
9f7c0ef2 | 140 | drv->id = g_strdup(id); |
d1a0cf73 SB |
141 | QLIST_INSERT_HEAD(&tpm_backends, drv, list); |
142 | ||
143 | return 0; | |
144 | } | |
145 | ||
d1a0cf73 SB |
146 | /* |
147 | * Walk the list of TPM backend drivers that are in use and call their | |
148 | * destroy function to have them cleaned up. | |
149 | */ | |
150 | void tpm_cleanup(void) | |
151 | { | |
152 | TPMBackend *drv, *next; | |
153 | ||
154 | QLIST_FOREACH_SAFE(drv, &tpm_backends, list, next) { | |
155 | QLIST_REMOVE(drv, list); | |
f35fe5cb | 156 | object_unref(OBJECT(drv)); |
d1a0cf73 SB |
157 | } |
158 | } | |
159 | ||
160 | /* | |
161 | * Initialize the TPM. Process the tpmdev command line options describing the | |
162 | * TPM backend. | |
163 | */ | |
d64072c0 | 164 | int tpm_init(void) |
d1a0cf73 | 165 | { |
d64072c0 MA |
166 | if (qemu_opts_foreach(qemu_find_opts("tpmdev"), |
167 | tpm_init_tpmdev, NULL, NULL)) { | |
168 | return -1; | |
169 | } | |
170 | ||
171 | return 0; | |
d1a0cf73 SB |
172 | } |
173 | ||
174 | /* | |
175 | * Parse the TPM configuration options. | |
176 | * To display all available TPM backends the user may use '-tpmdev help' | |
177 | */ | |
178 | int tpm_config_parse(QemuOptsList *opts_list, const char *optarg) | |
179 | { | |
180 | QemuOpts *opts; | |
181 | ||
182 | if (!strcmp(optarg, "help")) { | |
183 | tpm_display_backend_drivers(); | |
184 | return -1; | |
185 | } | |
70b94331 | 186 | opts = qemu_opts_parse_noisily(opts_list, optarg, true); |
d1a0cf73 SB |
187 | if (!opts) { |
188 | return -1; | |
189 | } | |
190 | return 0; | |
191 | } | |
192 | ||
d1a0cf73 | 193 | /* |
eb815e24 | 194 | * Walk the list of active TPM backends and collect information about them. |
d1a0cf73 SB |
195 | */ |
196 | TPMInfoList *qmp_query_tpm(Error **errp) | |
197 | { | |
198 | TPMBackend *drv; | |
199 | TPMInfoList *info, *head = NULL, *cur_item = NULL; | |
200 | ||
201 | QLIST_FOREACH(drv, &tpm_backends, list) { | |
191adc94 | 202 | if (!drv->tpmif) { |
d1a0cf73 SB |
203 | continue; |
204 | } | |
191adc94 | 205 | |
d1a0cf73 | 206 | info = g_new0(TPMInfoList, 1); |
f59864ba | 207 | info->value = tpm_backend_query_tpm(drv); |
d1a0cf73 SB |
208 | |
209 | if (!cur_item) { | |
210 | head = cur_item = info; | |
211 | } else { | |
212 | cur_item->next = info; | |
213 | cur_item = info; | |
214 | } | |
215 | } | |
216 | ||
217 | return head; | |
218 | } | |
219 | ||
220 | TpmTypeList *qmp_query_tpm_types(Error **errp) | |
221 | { | |
222 | unsigned int i = 0; | |
223 | TpmTypeList *head = NULL, *prev = NULL, *cur_item; | |
224 | ||
7fb1cf16 | 225 | for (i = 0; i < TPM_TYPE__MAX; i++) { |
d31076ba | 226 | if (!tpm_be_find_by_type(i)) { |
d1a0cf73 SB |
227 | continue; |
228 | } | |
229 | cur_item = g_new0(TpmTypeList, 1); | |
230 | cur_item->value = i; | |
231 | ||
232 | if (prev) { | |
233 | prev->next = cur_item; | |
234 | } | |
235 | if (!head) { | |
236 | head = cur_item; | |
237 | } | |
238 | prev = cur_item; | |
239 | } | |
240 | ||
241 | return head; | |
242 | } | |
d1a0cf73 SB |
243 | TpmModelList *qmp_query_tpm_models(Error **errp) |
244 | { | |
d1a0cf73 | 245 | TpmModelList *head = NULL, *prev = NULL, *cur_item; |
d3fd953f MAL |
246 | GSList *e, *l = object_class_get_list(TYPE_TPM_IF, false); |
247 | ||
248 | for (e = l; e; e = e->next) { | |
249 | TPMIfClass *c = TPM_IF_CLASS(e->data); | |
d1a0cf73 | 250 | |
d1a0cf73 | 251 | cur_item = g_new0(TpmModelList, 1); |
d3fd953f | 252 | cur_item->value = c->model; |
d1a0cf73 SB |
253 | |
254 | if (prev) { | |
255 | prev->next = cur_item; | |
256 | } | |
257 | if (!head) { | |
258 | head = cur_item; | |
259 | } | |
260 | prev = cur_item; | |
261 | } | |
d3fd953f | 262 | g_slist_free(l); |
d1a0cf73 SB |
263 | |
264 | return head; | |
265 | } |