]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
576fb1ed | 2 | /* |
8732b070 | 3 | * Copyright (c) 2013 The Chromium OS Authors. |
576fb1ed VB |
4 | */ |
5 | ||
6 | #include <common.h> | |
c7694dd4 | 7 | #include <env.h> |
8732b070 | 8 | #include <malloc.h> |
8732b070 | 9 | #include <asm/unaligned.h> |
d677bfe2 MR |
10 | #include <tpm-common.h> |
11 | #include <tpm-v1.h> | |
12 | #include "tpm-user-utils.h" | |
576fb1ed | 13 | |
c6179187 MR |
14 | static int do_tpm_startup(cmd_tbl_t *cmdtp, int flag, int argc, |
15 | char * const argv[]) | |
8732b070 CC |
16 | { |
17 | enum tpm_startup_type mode; | |
abdc7b8a SG |
18 | struct udevice *dev; |
19 | int rc; | |
eea3f4d3 | 20 | |
abdc7b8a SG |
21 | rc = get_tpm(&dev); |
22 | if (rc) | |
23 | return rc; | |
8732b070 CC |
24 | if (argc != 2) |
25 | return CMD_RET_USAGE; | |
26 | if (!strcasecmp("TPM_ST_CLEAR", argv[1])) { | |
27 | mode = TPM_ST_CLEAR; | |
28 | } else if (!strcasecmp("TPM_ST_STATE", argv[1])) { | |
29 | mode = TPM_ST_STATE; | |
30 | } else if (!strcasecmp("TPM_ST_DEACTIVATED", argv[1])) { | |
31 | mode = TPM_ST_DEACTIVATED; | |
32 | } else { | |
33 | printf("Couldn't recognize mode string: %s\n", argv[1]); | |
34 | return CMD_RET_FAILURE; | |
35 | } | |
36 | ||
abdc7b8a | 37 | return report_return_code(tpm_startup(dev, mode)); |
8732b070 CC |
38 | } |
39 | ||
c6179187 MR |
40 | static int do_tpm_nv_define_space(cmd_tbl_t *cmdtp, int flag, int argc, |
41 | char * const argv[]) | |
8732b070 | 42 | { |
b9804e5b | 43 | u32 index, perm, size; |
abdc7b8a SG |
44 | struct udevice *dev; |
45 | int rc; | |
46 | ||
47 | rc = get_tpm(&dev); | |
48 | if (rc) | |
49 | return rc; | |
8732b070 CC |
50 | |
51 | if (argc != 4) | |
52 | return CMD_RET_USAGE; | |
53 | index = simple_strtoul(argv[1], NULL, 0); | |
54 | perm = simple_strtoul(argv[2], NULL, 0); | |
55 | size = simple_strtoul(argv[3], NULL, 0); | |
56 | ||
abdc7b8a | 57 | return report_return_code(tpm_nv_define_space(dev, index, perm, size)); |
8732b070 | 58 | } |
eea3f4d3 | 59 | |
c6179187 MR |
60 | static int do_tpm_nv_read_value(cmd_tbl_t *cmdtp, int flag, int argc, |
61 | char * const argv[]) | |
eea3f4d3 | 62 | { |
b9804e5b | 63 | u32 index, count, rc; |
abdc7b8a | 64 | struct udevice *dev; |
8732b070 | 65 | void *data; |
eea3f4d3 | 66 | |
abdc7b8a SG |
67 | rc = get_tpm(&dev); |
68 | if (rc) | |
69 | return rc; | |
70 | ||
8732b070 CC |
71 | if (argc != 4) |
72 | return CMD_RET_USAGE; | |
73 | index = simple_strtoul(argv[1], NULL, 0); | |
74 | data = (void *)simple_strtoul(argv[2], NULL, 0); | |
75 | count = simple_strtoul(argv[3], NULL, 0); | |
76 | ||
abdc7b8a | 77 | rc = tpm_nv_read_value(dev, index, data, count); |
8732b070 CC |
78 | if (!rc) { |
79 | puts("area content:\n"); | |
80 | print_byte_string(data, count); | |
576fb1ed VB |
81 | } |
82 | ||
f8f1fe1d | 83 | return report_return_code(rc); |
8732b070 CC |
84 | } |
85 | ||
c6179187 MR |
86 | static int do_tpm_nv_write_value(cmd_tbl_t *cmdtp, int flag, int argc, |
87 | char * const argv[]) | |
8732b070 | 88 | { |
abdc7b8a | 89 | struct udevice *dev; |
b9804e5b | 90 | u32 index, rc; |
8732b070 CC |
91 | size_t count; |
92 | void *data; | |
93 | ||
abdc7b8a SG |
94 | rc = get_tpm(&dev); |
95 | if (rc) | |
96 | return rc; | |
97 | ||
8732b070 CC |
98 | if (argc != 3) |
99 | return CMD_RET_USAGE; | |
100 | index = simple_strtoul(argv[1], NULL, 0); | |
101 | data = parse_byte_string(argv[2], NULL, &count); | |
102 | if (!data) { | |
103 | printf("Couldn't parse byte string %s\n", argv[2]); | |
104 | return CMD_RET_FAILURE; | |
eea3f4d3 LS |
105 | } |
106 | ||
abdc7b8a | 107 | rc = tpm_nv_write_value(dev, index, data, count); |
8732b070 CC |
108 | free(data); |
109 | ||
f8f1fe1d | 110 | return report_return_code(rc); |
8732b070 CC |
111 | } |
112 | ||
c6179187 MR |
113 | static int do_tpm_extend(cmd_tbl_t *cmdtp, int flag, int argc, |
114 | char * const argv[]) | |
8732b070 | 115 | { |
b9804e5b | 116 | u8 in_digest[20], out_digest[20]; |
abdc7b8a SG |
117 | struct udevice *dev; |
118 | u32 index, rc; | |
119 | ||
120 | rc = get_tpm(&dev); | |
121 | if (rc) | |
122 | return rc; | |
8732b070 CC |
123 | |
124 | if (argc != 3) | |
125 | return CMD_RET_USAGE; | |
126 | index = simple_strtoul(argv[1], NULL, 0); | |
127 | if (!parse_byte_string(argv[2], in_digest, NULL)) { | |
128 | printf("Couldn't parse byte string %s\n", argv[2]); | |
129 | return CMD_RET_FAILURE; | |
576fb1ed VB |
130 | } |
131 | ||
abdc7b8a | 132 | rc = tpm_extend(dev, index, in_digest, out_digest); |
8732b070 CC |
133 | if (!rc) { |
134 | puts("PCR value after execution of the command:\n"); | |
135 | print_byte_string(out_digest, sizeof(out_digest)); | |
576fb1ed VB |
136 | } |
137 | ||
f8f1fe1d | 138 | return report_return_code(rc); |
8732b070 CC |
139 | } |
140 | ||
c6179187 MR |
141 | static int do_tpm_pcr_read(cmd_tbl_t *cmdtp, int flag, int argc, |
142 | char * const argv[]) | |
8732b070 | 143 | { |
b9804e5b | 144 | u32 index, count, rc; |
abdc7b8a | 145 | struct udevice *dev; |
8732b070 CC |
146 | void *data; |
147 | ||
abdc7b8a SG |
148 | rc = get_tpm(&dev); |
149 | if (rc) | |
150 | return rc; | |
151 | ||
8732b070 CC |
152 | if (argc != 4) |
153 | return CMD_RET_USAGE; | |
154 | index = simple_strtoul(argv[1], NULL, 0); | |
155 | data = (void *)simple_strtoul(argv[2], NULL, 0); | |
156 | count = simple_strtoul(argv[3], NULL, 0); | |
576fb1ed | 157 | |
abdc7b8a | 158 | rc = tpm_pcr_read(dev, index, data, count); |
8732b070 CC |
159 | if (!rc) { |
160 | puts("Named PCR content:\n"); | |
161 | print_byte_string(data, count); | |
576fb1ed VB |
162 | } |
163 | ||
f8f1fe1d | 164 | return report_return_code(rc); |
576fb1ed VB |
165 | } |
166 | ||
c6179187 MR |
167 | static int do_tpm_tsc_physical_presence(cmd_tbl_t *cmdtp, int flag, int argc, |
168 | char * const argv[]) | |
8732b070 | 169 | { |
abdc7b8a | 170 | struct udevice *dev; |
b9804e5b | 171 | u16 presence; |
abdc7b8a SG |
172 | int rc; |
173 | ||
174 | rc = get_tpm(&dev); | |
175 | if (rc) | |
176 | return rc; | |
8732b070 CC |
177 | |
178 | if (argc != 2) | |
179 | return CMD_RET_USAGE; | |
b9804e5b | 180 | presence = (u16)simple_strtoul(argv[1], NULL, 0); |
eea3f4d3 | 181 | |
abdc7b8a | 182 | return report_return_code(tpm_tsc_physical_presence(dev, presence)); |
8732b070 CC |
183 | } |
184 | ||
c6179187 MR |
185 | static int do_tpm_read_pubek(cmd_tbl_t *cmdtp, int flag, int argc, |
186 | char * const argv[]) | |
eea3f4d3 | 187 | { |
abdc7b8a | 188 | struct udevice *dev; |
b9804e5b | 189 | u32 count, rc; |
8732b070 CC |
190 | void *data; |
191 | ||
abdc7b8a SG |
192 | rc = get_tpm(&dev); |
193 | if (rc) | |
194 | return rc; | |
195 | ||
8732b070 CC |
196 | if (argc != 3) |
197 | return CMD_RET_USAGE; | |
198 | data = (void *)simple_strtoul(argv[1], NULL, 0); | |
199 | count = simple_strtoul(argv[2], NULL, 0); | |
200 | ||
abdc7b8a | 201 | rc = tpm_read_pubek(dev, data, count); |
8732b070 CC |
202 | if (!rc) { |
203 | puts("pubek value:\n"); | |
204 | print_byte_string(data, count); | |
205 | } | |
206 | ||
f8f1fe1d | 207 | return report_return_code(rc); |
eea3f4d3 LS |
208 | } |
209 | ||
c6179187 MR |
210 | static int do_tpm_physical_set_deactivated(cmd_tbl_t *cmdtp, int flag, int argc, |
211 | char * const argv[]) | |
8732b070 | 212 | { |
abdc7b8a | 213 | struct udevice *dev; |
b9804e5b | 214 | u8 state; |
abdc7b8a SG |
215 | int rc; |
216 | ||
217 | rc = get_tpm(&dev); | |
218 | if (rc) | |
219 | return rc; | |
8732b070 CC |
220 | |
221 | if (argc != 2) | |
222 | return CMD_RET_USAGE; | |
b9804e5b | 223 | state = (u8)simple_strtoul(argv[1], NULL, 0); |
eea3f4d3 | 224 | |
abdc7b8a | 225 | return report_return_code(tpm_physical_set_deactivated(dev, state)); |
8732b070 CC |
226 | } |
227 | ||
c6179187 MR |
228 | static int do_tpm_get_capability(cmd_tbl_t *cmdtp, int flag, int argc, |
229 | char * const argv[]) | |
8732b070 | 230 | { |
b9804e5b | 231 | u32 cap_area, sub_cap, rc; |
8732b070 CC |
232 | void *cap; |
233 | size_t count; | |
abdc7b8a SG |
234 | struct udevice *dev; |
235 | ||
236 | rc = get_tpm(&dev); | |
237 | if (rc) | |
238 | return rc; | |
8732b070 CC |
239 | |
240 | if (argc != 5) | |
241 | return CMD_RET_USAGE; | |
242 | cap_area = simple_strtoul(argv[1], NULL, 0); | |
243 | sub_cap = simple_strtoul(argv[2], NULL, 0); | |
244 | cap = (void *)simple_strtoul(argv[3], NULL, 0); | |
245 | count = simple_strtoul(argv[4], NULL, 0); | |
246 | ||
abdc7b8a | 247 | rc = tpm_get_capability(dev, cap_area, sub_cap, cap, count); |
8732b070 CC |
248 | if (!rc) { |
249 | puts("capability information:\n"); | |
250 | print_byte_string(cap, count); | |
251 | } | |
252 | ||
f8f1fe1d | 253 | return report_return_code(rc); |
8732b070 | 254 | } |
eea3f4d3 | 255 | |
c6179187 MR |
256 | static int do_tpm_raw_transfer(cmd_tbl_t *cmdtp, int flag, int argc, |
257 | char * const argv[]) | |
8732b070 | 258 | { |
c2b0f600 | 259 | struct udevice *dev; |
8732b070 | 260 | void *command; |
b9804e5b | 261 | u8 response[1024]; |
8732b070 | 262 | size_t count, response_length = sizeof(response); |
b9804e5b | 263 | u32 rc; |
8732b070 CC |
264 | |
265 | command = parse_byte_string(argv[1], NULL, &count); | |
266 | if (!command) { | |
267 | printf("Couldn't parse byte string %s\n", argv[1]); | |
268 | return CMD_RET_FAILURE; | |
269 | } | |
270 | ||
c8a8c510 SG |
271 | rc = get_tpm(&dev); |
272 | if (rc) | |
273 | return rc; | |
274 | ||
275 | rc = tpm_xfer(dev, command, count, response, &response_length); | |
8732b070 CC |
276 | free(command); |
277 | if (!rc) { | |
278 | puts("tpm response:\n"); | |
279 | print_byte_string(response, response_length); | |
280 | } | |
281 | ||
f8f1fe1d | 282 | return report_return_code(rc); |
8732b070 CC |
283 | } |
284 | ||
c6179187 MR |
285 | static int do_tpm_nv_define(cmd_tbl_t *cmdtp, int flag, int argc, |
286 | char * const argv[]) | |
8732b070 | 287 | { |
b9804e5b | 288 | u32 index, perm, size; |
abdc7b8a SG |
289 | struct udevice *dev; |
290 | int rc; | |
291 | ||
292 | rc = get_tpm(&dev); | |
293 | if (rc) | |
294 | return rc; | |
8732b070 CC |
295 | |
296 | if (argc != 4) | |
297 | return CMD_RET_USAGE; | |
298 | size = type_string_get_space_size(argv[1]); | |
299 | if (!size) { | |
300 | printf("Couldn't parse arguments\n"); | |
301 | return CMD_RET_USAGE; | |
302 | } | |
303 | index = simple_strtoul(argv[2], NULL, 0); | |
304 | perm = simple_strtoul(argv[3], NULL, 0); | |
305 | ||
abdc7b8a | 306 | return report_return_code(tpm_nv_define_space(dev, index, perm, size)); |
8732b070 CC |
307 | } |
308 | ||
c6179187 MR |
309 | static int do_tpm_nv_read(cmd_tbl_t *cmdtp, int flag, int argc, |
310 | char * const argv[]) | |
eea3f4d3 | 311 | { |
b9804e5b | 312 | u32 index, count, err; |
abdc7b8a | 313 | struct udevice *dev; |
8732b070 | 314 | void *data; |
abdc7b8a SG |
315 | int rc; |
316 | ||
317 | rc = get_tpm(&dev); | |
318 | if (rc) | |
319 | return rc; | |
eea3f4d3 | 320 | |
8732b070 CC |
321 | if (argc < 3) |
322 | return CMD_RET_USAGE; | |
323 | if (argc != 3 + type_string_get_num_values(argv[1])) | |
324 | return CMD_RET_USAGE; | |
325 | index = simple_strtoul(argv[2], NULL, 0); | |
326 | data = type_string_alloc(argv[1], &count); | |
327 | if (!data) { | |
328 | printf("Couldn't parse arguments\n"); | |
329 | return CMD_RET_USAGE; | |
eea3f4d3 LS |
330 | } |
331 | ||
abdc7b8a | 332 | err = tpm_nv_read_value(dev, index, data, count); |
8732b070 CC |
333 | if (!err) { |
334 | if (type_string_write_vars(argv[1], data, argv + 3)) { | |
335 | printf("Couldn't write to variables\n"); | |
336 | err = ~0; | |
337 | } | |
eea3f4d3 | 338 | } |
8732b070 CC |
339 | free(data); |
340 | ||
f8f1fe1d | 341 | return report_return_code(err); |
8732b070 CC |
342 | } |
343 | ||
c6179187 MR |
344 | static int do_tpm_nv_write(cmd_tbl_t *cmdtp, int flag, int argc, |
345 | char * const argv[]) | |
8732b070 | 346 | { |
b9804e5b | 347 | u32 index, count, err; |
abdc7b8a | 348 | struct udevice *dev; |
8732b070 | 349 | void *data; |
abdc7b8a SG |
350 | int rc; |
351 | ||
352 | rc = get_tpm(&dev); | |
353 | if (rc) | |
354 | return rc; | |
8732b070 CC |
355 | |
356 | if (argc < 3) | |
357 | return CMD_RET_USAGE; | |
358 | if (argc != 3 + type_string_get_num_values(argv[1])) | |
359 | return CMD_RET_USAGE; | |
360 | index = simple_strtoul(argv[2], NULL, 0); | |
361 | data = type_string_alloc(argv[1], &count); | |
362 | if (!data) { | |
363 | printf("Couldn't parse arguments\n"); | |
364 | return CMD_RET_USAGE; | |
365 | } | |
366 | if (type_string_pack(argv[1], argv + 3, data)) { | |
367 | printf("Couldn't parse arguments\n"); | |
368 | free(data); | |
369 | return CMD_RET_USAGE; | |
370 | } | |
371 | ||
abdc7b8a | 372 | err = tpm_nv_write_value(dev, index, data, count); |
8732b070 CC |
373 | free(data); |
374 | ||
f8f1fe1d | 375 | return report_return_code(err); |
8732b070 CC |
376 | } |
377 | ||
be6c1529 RP |
378 | #ifdef CONFIG_TPM_AUTH_SESSIONS |
379 | ||
c6179187 MR |
380 | static int do_tpm_oiap(cmd_tbl_t *cmdtp, int flag, int argc, |
381 | char * const argv[]) | |
be6c1529 | 382 | { |
b9804e5b | 383 | u32 auth_handle, err; |
abdc7b8a SG |
384 | struct udevice *dev; |
385 | int rc; | |
386 | ||
387 | rc = get_tpm(&dev); | |
388 | if (rc) | |
389 | return rc; | |
be6c1529 | 390 | |
abdc7b8a | 391 | err = tpm_oiap(dev, &auth_handle); |
be6c1529 | 392 | |
f8f1fe1d | 393 | return report_return_code(err); |
be6c1529 RP |
394 | } |
395 | ||
0f4b2ba1 | 396 | #ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1 |
397 | static int do_tpm_load_key_by_sha1(cmd_tbl_t *cmdtp, int flag, int argc, char * | |
398 | const argv[]) | |
399 | { | |
b9804e5b MR |
400 | u32 parent_handle = 0; |
401 | u32 key_len, key_handle, err; | |
402 | u8 usage_auth[DIGEST_LENGTH]; | |
403 | u8 parent_hash[DIGEST_LENGTH]; | |
0f4b2ba1 | 404 | void *key; |
abdc7b8a SG |
405 | struct udevice *dev; |
406 | ||
407 | rc = get_tpm(&dev); | |
408 | if (rc) | |
409 | return rc; | |
0f4b2ba1 | 410 | |
411 | if (argc < 5) | |
412 | return CMD_RET_USAGE; | |
413 | ||
414 | parse_byte_string(argv[1], parent_hash, NULL); | |
415 | key = (void *)simple_strtoul(argv[2], NULL, 0); | |
416 | key_len = simple_strtoul(argv[3], NULL, 0); | |
417 | if (strlen(argv[4]) != 2 * DIGEST_LENGTH) | |
418 | return CMD_RET_FAILURE; | |
419 | parse_byte_string(argv[4], usage_auth, NULL); | |
420 | ||
421 | err = tpm_find_key_sha1(usage_auth, parent_hash, &parent_handle); | |
422 | if (err) { | |
423 | printf("Could not find matching parent key (err = %d)\n", err); | |
424 | return CMD_RET_FAILURE; | |
425 | } | |
426 | ||
427 | printf("Found parent key %08x\n", parent_handle); | |
428 | ||
429 | err = tpm_load_key2_oiap(parent_handle, key, key_len, usage_auth, | |
430 | &key_handle); | |
431 | if (!err) { | |
432 | printf("Key handle is 0x%x\n", key_handle); | |
018f5303 | 433 | env_set_hex("key_handle", key_handle); |
0f4b2ba1 | 434 | } |
435 | ||
436 | return report_return_code(err); | |
437 | } | |
438 | #endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */ | |
439 | ||
c6179187 MR |
440 | static int do_tpm_load_key2_oiap(cmd_tbl_t *cmdtp, int flag, int argc, |
441 | char * const argv[]) | |
be6c1529 | 442 | { |
b9804e5b MR |
443 | u32 parent_handle, key_len, key_handle, err; |
444 | u8 usage_auth[DIGEST_LENGTH]; | |
be6c1529 | 445 | void *key; |
abdc7b8a SG |
446 | struct udevice *dev; |
447 | int rc; | |
448 | ||
449 | rc = get_tpm(&dev); | |
450 | if (rc) | |
451 | return rc; | |
be6c1529 RP |
452 | |
453 | if (argc < 5) | |
454 | return CMD_RET_USAGE; | |
455 | ||
456 | parent_handle = simple_strtoul(argv[1], NULL, 0); | |
457 | key = (void *)simple_strtoul(argv[2], NULL, 0); | |
458 | key_len = simple_strtoul(argv[3], NULL, 0); | |
459 | if (strlen(argv[4]) != 2 * DIGEST_LENGTH) | |
460 | return CMD_RET_FAILURE; | |
461 | parse_byte_string(argv[4], usage_auth, NULL); | |
462 | ||
abdc7b8a | 463 | err = tpm_load_key2_oiap(dev, parent_handle, key, key_len, usage_auth, |
c6179187 | 464 | &key_handle); |
be6c1529 RP |
465 | if (!err) |
466 | printf("Key handle is 0x%x\n", key_handle); | |
467 | ||
f8f1fe1d | 468 | return report_return_code(err); |
be6c1529 RP |
469 | } |
470 | ||
c6179187 MR |
471 | static int do_tpm_get_pub_key_oiap(cmd_tbl_t *cmdtp, int flag, int argc, |
472 | char * const argv[]) | |
be6c1529 | 473 | { |
b9804e5b MR |
474 | u32 key_handle, err; |
475 | u8 usage_auth[DIGEST_LENGTH]; | |
476 | u8 pub_key_buffer[TPM_PUBKEY_MAX_LENGTH]; | |
be6c1529 | 477 | size_t pub_key_len = sizeof(pub_key_buffer); |
abdc7b8a SG |
478 | struct udevice *dev; |
479 | int rc; | |
480 | ||
481 | rc = get_tpm(&dev); | |
482 | if (rc) | |
483 | return rc; | |
be6c1529 RP |
484 | |
485 | if (argc < 3) | |
486 | return CMD_RET_USAGE; | |
487 | ||
488 | key_handle = simple_strtoul(argv[1], NULL, 0); | |
489 | if (strlen(argv[2]) != 2 * DIGEST_LENGTH) | |
490 | return CMD_RET_FAILURE; | |
491 | parse_byte_string(argv[2], usage_auth, NULL); | |
492 | ||
abdc7b8a | 493 | err = tpm_get_pub_key_oiap(dev, key_handle, usage_auth, pub_key_buffer, |
c6179187 | 494 | &pub_key_len); |
be6c1529 RP |
495 | if (!err) { |
496 | printf("dump of received pub key structure:\n"); | |
497 | print_byte_string(pub_key_buffer, pub_key_len); | |
498 | } | |
f8f1fe1d | 499 | return report_return_code(err); |
be6c1529 RP |
500 | } |
501 | ||
502 | TPM_COMMAND_NO_ARG(tpm_end_oiap) | |
503 | ||
504 | #endif /* CONFIG_TPM_AUTH_SESSIONS */ | |
505 | ||
7690be35 MS |
506 | #ifdef CONFIG_TPM_FLUSH_RESOURCES |
507 | static int do_tpm_flush(cmd_tbl_t *cmdtp, int flag, int argc, | |
508 | char * const argv[]) | |
509 | { | |
abdc7b8a | 510 | struct udevice *dev; |
7690be35 | 511 | int type = 0; |
abdc7b8a SG |
512 | int rc; |
513 | ||
514 | rc = get_tpm(&dev); | |
515 | if (rc) | |
516 | return rc; | |
7690be35 | 517 | |
1c08b210 | 518 | if (argc != 3) |
7690be35 MS |
519 | return CMD_RET_USAGE; |
520 | ||
1c08b210 | 521 | if (!strcasecmp(argv[1], "key")) |
7690be35 | 522 | type = TPM_RT_KEY; |
1c08b210 | 523 | else if (!strcasecmp(argv[1], "auth")) |
7690be35 | 524 | type = TPM_RT_AUTH; |
1c08b210 | 525 | else if (!strcasecmp(argv[1], "hash")) |
7690be35 | 526 | type = TPM_RT_HASH; |
1c08b210 | 527 | else if (!strcasecmp(argv[1], "trans")) |
7690be35 | 528 | type = TPM_RT_TRANS; |
1c08b210 | 529 | else if (!strcasecmp(argv[1], "context")) |
7690be35 | 530 | type = TPM_RT_CONTEXT; |
1c08b210 | 531 | else if (!strcasecmp(argv[1], "counter")) |
7690be35 | 532 | type = TPM_RT_COUNTER; |
1c08b210 | 533 | else if (!strcasecmp(argv[1], "delegate")) |
7690be35 | 534 | type = TPM_RT_DELEGATE; |
1c08b210 | 535 | else if (!strcasecmp(argv[1], "daa_tpm")) |
7690be35 | 536 | type = TPM_RT_DAA_TPM; |
1c08b210 | 537 | else if (!strcasecmp(argv[1], "daa_v0")) |
7690be35 | 538 | type = TPM_RT_DAA_V0; |
1c08b210 | 539 | else if (!strcasecmp(argv[1], "daa_v1")) |
7690be35 MS |
540 | type = TPM_RT_DAA_V1; |
541 | ||
1c08b210 | 542 | if (!type) { |
543 | printf("Resource type %s unknown.\n", argv[1]); | |
544 | return -1; | |
545 | } | |
546 | ||
547 | if (!strcasecmp(argv[2], "all")) { | |
b9804e5b MR |
548 | u16 res_count; |
549 | u8 buf[288]; | |
550 | u8 *ptr; | |
7690be35 MS |
551 | int err; |
552 | uint i; | |
553 | ||
554 | /* fetch list of already loaded resources in the TPM */ | |
abdc7b8a | 555 | err = tpm_get_capability(dev, TPM_CAP_HANDLE, type, buf, |
7690be35 | 556 | sizeof(buf)); |
1c08b210 | 557 | if (err) { |
558 | printf("tpm_get_capability returned error %d.\n", err); | |
7690be35 | 559 | return -1; |
1c08b210 | 560 | } |
7690be35 MS |
561 | res_count = get_unaligned_be16(buf); |
562 | ptr = buf + 2; | |
563 | for (i = 0; i < res_count; ++i, ptr += 4) | |
abdc7b8a | 564 | tpm_flush_specific(dev, get_unaligned_be32(ptr), type); |
7690be35 | 565 | } else { |
b9804e5b | 566 | u32 handle = simple_strtoul(argv[2], NULL, 0); |
7690be35 | 567 | |
1c08b210 | 568 | if (!handle) { |
569 | printf("Illegal resource handle %s\n", argv[2]); | |
7690be35 | 570 | return -1; |
1c08b210 | 571 | } |
abdc7b8a | 572 | tpm_flush_specific(dev, cpu_to_be32(handle), type); |
7690be35 MS |
573 | } |
574 | ||
575 | return 0; | |
576 | } | |
577 | #endif /* CONFIG_TPM_FLUSH_RESOURCES */ | |
578 | ||
3d1df0e3 | 579 | #ifdef CONFIG_TPM_LIST_RESOURCES |
580 | static int do_tpm_list(cmd_tbl_t *cmdtp, int flag, int argc, | |
581 | char * const argv[]) | |
582 | { | |
583 | int type = 0; | |
b9804e5b MR |
584 | u16 res_count; |
585 | u8 buf[288]; | |
586 | u8 *ptr; | |
3d1df0e3 | 587 | int err; |
588 | uint i; | |
589 | ||
590 | if (argc != 2) | |
591 | return CMD_RET_USAGE; | |
592 | ||
593 | if (!strcasecmp(argv[1], "key")) | |
594 | type = TPM_RT_KEY; | |
595 | else if (!strcasecmp(argv[1], "auth")) | |
596 | type = TPM_RT_AUTH; | |
597 | else if (!strcasecmp(argv[1], "hash")) | |
598 | type = TPM_RT_HASH; | |
599 | else if (!strcasecmp(argv[1], "trans")) | |
600 | type = TPM_RT_TRANS; | |
601 | else if (!strcasecmp(argv[1], "context")) | |
602 | type = TPM_RT_CONTEXT; | |
603 | else if (!strcasecmp(argv[1], "counter")) | |
604 | type = TPM_RT_COUNTER; | |
605 | else if (!strcasecmp(argv[1], "delegate")) | |
606 | type = TPM_RT_DELEGATE; | |
607 | else if (!strcasecmp(argv[1], "daa_tpm")) | |
608 | type = TPM_RT_DAA_TPM; | |
609 | else if (!strcasecmp(argv[1], "daa_v0")) | |
610 | type = TPM_RT_DAA_V0; | |
611 | else if (!strcasecmp(argv[1], "daa_v1")) | |
612 | type = TPM_RT_DAA_V1; | |
613 | ||
614 | if (!type) { | |
615 | printf("Resource type %s unknown.\n", argv[1]); | |
616 | return -1; | |
617 | } | |
618 | ||
619 | /* fetch list of already loaded resources in the TPM */ | |
620 | err = tpm_get_capability(TPM_CAP_HANDLE, type, buf, | |
621 | sizeof(buf)); | |
622 | if (err) { | |
623 | printf("tpm_get_capability returned error %d.\n", err); | |
624 | return -1; | |
625 | } | |
626 | res_count = get_unaligned_be16(buf); | |
627 | ptr = buf + 2; | |
628 | ||
629 | printf("Resources of type %s (%02x):\n", argv[1], type); | |
630 | if (!res_count) { | |
631 | puts("None\n"); | |
632 | } else { | |
633 | for (i = 0; i < res_count; ++i, ptr += 4) | |
634 | printf("Index %d: %08x\n", i, get_unaligned_be32(ptr)); | |
635 | } | |
636 | ||
637 | return 0; | |
638 | } | |
639 | #endif /* CONFIG_TPM_LIST_RESOURCES */ | |
640 | ||
d677bfe2 MR |
641 | TPM_COMMAND_NO_ARG(tpm_self_test_full) |
642 | TPM_COMMAND_NO_ARG(tpm_continue_self_test) | |
643 | TPM_COMMAND_NO_ARG(tpm_force_clear) | |
644 | TPM_COMMAND_NO_ARG(tpm_physical_enable) | |
645 | TPM_COMMAND_NO_ARG(tpm_physical_disable) | |
8732b070 | 646 | |
d677bfe2 | 647 | static cmd_tbl_t tpm1_commands[] = { |
ad77694e | 648 | U_BOOT_CMD_MKENT(info, 0, 1, do_tpm_info, "", ""), |
c6179187 | 649 | U_BOOT_CMD_MKENT(init, 0, 1, do_tpm_init, "", ""), |
8732b070 | 650 | U_BOOT_CMD_MKENT(startup, 0, 1, |
c6179187 | 651 | do_tpm_startup, "", ""), |
8732b070 | 652 | U_BOOT_CMD_MKENT(self_test_full, 0, 1, |
c6179187 | 653 | do_tpm_self_test_full, "", ""), |
8732b070 | 654 | U_BOOT_CMD_MKENT(continue_self_test, 0, 1, |
c6179187 | 655 | do_tpm_continue_self_test, "", ""), |
8732b070 | 656 | U_BOOT_CMD_MKENT(force_clear, 0, 1, |
c6179187 | 657 | do_tpm_force_clear, "", ""), |
8732b070 | 658 | U_BOOT_CMD_MKENT(physical_enable, 0, 1, |
c6179187 | 659 | do_tpm_physical_enable, "", ""), |
8732b070 | 660 | U_BOOT_CMD_MKENT(physical_disable, 0, 1, |
c6179187 | 661 | do_tpm_physical_disable, "", ""), |
8732b070 | 662 | U_BOOT_CMD_MKENT(nv_define_space, 0, 1, |
c6179187 | 663 | do_tpm_nv_define_space, "", ""), |
8732b070 | 664 | U_BOOT_CMD_MKENT(nv_read_value, 0, 1, |
c6179187 | 665 | do_tpm_nv_read_value, "", ""), |
8732b070 | 666 | U_BOOT_CMD_MKENT(nv_write_value, 0, 1, |
c6179187 | 667 | do_tpm_nv_write_value, "", ""), |
8732b070 | 668 | U_BOOT_CMD_MKENT(extend, 0, 1, |
c6179187 | 669 | do_tpm_extend, "", ""), |
8732b070 | 670 | U_BOOT_CMD_MKENT(pcr_read, 0, 1, |
c6179187 | 671 | do_tpm_pcr_read, "", ""), |
8732b070 | 672 | U_BOOT_CMD_MKENT(tsc_physical_presence, 0, 1, |
c6179187 | 673 | do_tpm_tsc_physical_presence, "", ""), |
8732b070 | 674 | U_BOOT_CMD_MKENT(read_pubek, 0, 1, |
c6179187 | 675 | do_tpm_read_pubek, "", ""), |
8732b070 | 676 | U_BOOT_CMD_MKENT(physical_set_deactivated, 0, 1, |
c6179187 | 677 | do_tpm_physical_set_deactivated, "", ""), |
8732b070 | 678 | U_BOOT_CMD_MKENT(get_capability, 0, 1, |
c6179187 | 679 | do_tpm_get_capability, "", ""), |
8732b070 | 680 | U_BOOT_CMD_MKENT(raw_transfer, 0, 1, |
c6179187 | 681 | do_tpm_raw_transfer, "", ""), |
8732b070 | 682 | U_BOOT_CMD_MKENT(nv_define, 0, 1, |
c6179187 | 683 | do_tpm_nv_define, "", ""), |
8732b070 | 684 | U_BOOT_CMD_MKENT(nv_read, 0, 1, |
c6179187 | 685 | do_tpm_nv_read, "", ""), |
8732b070 | 686 | U_BOOT_CMD_MKENT(nv_write, 0, 1, |
c6179187 | 687 | do_tpm_nv_write, "", ""), |
be6c1529 RP |
688 | #ifdef CONFIG_TPM_AUTH_SESSIONS |
689 | U_BOOT_CMD_MKENT(oiap, 0, 1, | |
690 | do_tpm_oiap, "", ""), | |
691 | U_BOOT_CMD_MKENT(end_oiap, 0, 1, | |
692 | do_tpm_end_oiap, "", ""), | |
693 | U_BOOT_CMD_MKENT(load_key2_oiap, 0, 1, | |
694 | do_tpm_load_key2_oiap, "", ""), | |
0f4b2ba1 | 695 | #ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1 |
696 | U_BOOT_CMD_MKENT(load_key_by_sha1, 0, 1, | |
697 | do_tpm_load_key_by_sha1, "", ""), | |
698 | #endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */ | |
be6c1529 RP |
699 | U_BOOT_CMD_MKENT(get_pub_key_oiap, 0, 1, |
700 | do_tpm_get_pub_key_oiap, "", ""), | |
701 | #endif /* CONFIG_TPM_AUTH_SESSIONS */ | |
7690be35 MS |
702 | #ifdef CONFIG_TPM_FLUSH_RESOURCES |
703 | U_BOOT_CMD_MKENT(flush, 0, 1, | |
704 | do_tpm_flush, "", ""), | |
705 | #endif /* CONFIG_TPM_FLUSH_RESOURCES */ | |
3d1df0e3 | 706 | #ifdef CONFIG_TPM_LIST_RESOURCES |
707 | U_BOOT_CMD_MKENT(list, 0, 1, | |
708 | do_tpm_list, "", ""), | |
709 | #endif /* CONFIG_TPM_LIST_RESOURCES */ | |
8732b070 CC |
710 | }; |
711 | ||
2a2096ea | 712 | cmd_tbl_t *get_tpm1_commands(unsigned int *size) |
8732b070 | 713 | { |
d677bfe2 | 714 | *size = ARRAY_SIZE(tpm1_commands); |
eea3f4d3 | 715 | |
d677bfe2 | 716 | return tpm1_commands; |
eea3f4d3 LS |
717 | } |
718 | ||
8732b070 | 719 | U_BOOT_CMD(tpm, CONFIG_SYS_MAXARGS, 1, do_tpm, |
d677bfe2 | 720 | "Issue a TPMv1.x command", |
8732b070 CC |
721 | "cmd args...\n" |
722 | " - Issue TPM command <cmd> with arguments <args...>.\n" | |
723 | "Admin Startup and State Commands:\n" | |
ad77694e | 724 | " info - Show information about the TPM\n" |
8732b070 CC |
725 | " init\n" |
726 | " - Put TPM into a state where it waits for 'startup' command.\n" | |
727 | " startup mode\n" | |
728 | " - Issue TPM_Starup command. <mode> is one of TPM_ST_CLEAR,\n" | |
729 | " TPM_ST_STATE, and TPM_ST_DEACTIVATED.\n" | |
730 | "Admin Testing Commands:\n" | |
731 | " self_test_full\n" | |
732 | " - Test all of the TPM capabilities.\n" | |
733 | " continue_self_test\n" | |
734 | " - Inform TPM that it should complete the self-test.\n" | |
735 | "Admin Opt-in Commands:\n" | |
736 | " physical_enable\n" | |
737 | " - Set the PERMANENT disable flag to FALSE using physical presence as\n" | |
738 | " authorization.\n" | |
739 | " physical_disable\n" | |
740 | " - Set the PERMANENT disable flag to TRUE using physical presence as\n" | |
741 | " authorization.\n" | |
742 | " physical_set_deactivated 0|1\n" | |
743 | " - Set deactivated flag.\n" | |
744 | "Admin Ownership Commands:\n" | |
745 | " force_clear\n" | |
746 | " - Issue TPM_ForceClear command.\n" | |
747 | " tsc_physical_presence flags\n" | |
748 | " - Set TPM device's Physical Presence flags to <flags>.\n" | |
749 | "The Capability Commands:\n" | |
750 | " get_capability cap_area sub_cap addr count\n" | |
751 | " - Read <count> bytes of TPM capability indexed by <cap_area> and\n" | |
752 | " <sub_cap> to memory address <addr>.\n" | |
3d1df0e3 | 753 | #if defined(CONFIG_TPM_FLUSH_RESOURCES) || defined(CONFIG_TPM_LIST_RESOURCES) |
7690be35 | 754 | "Resource management functions\n" |
3d1df0e3 | 755 | #endif |
756 | #ifdef CONFIG_TPM_FLUSH_RESOURCES | |
7690be35 MS |
757 | " flush resource_type id\n" |
758 | " - flushes a resource of type <resource_type> (may be one of key, auth,\n" | |
759 | " hash, trans, context, counter, delegate, daa_tpm, daa_v0, daa_v1),\n" | |
760 | " and id <id> from the TPM. Use an <id> of \"all\" to flush all\n" | |
761 | " resources of that type.\n" | |
762 | #endif /* CONFIG_TPM_FLUSH_RESOURCES */ | |
3d1df0e3 | 763 | #ifdef CONFIG_TPM_LIST_RESOURCES |
764 | " list resource_type\n" | |
765 | " - lists resources of type <resource_type> (may be one of key, auth,\n" | |
766 | " hash, trans, context, counter, delegate, daa_tpm, daa_v0, daa_v1),\n" | |
767 | " contained in the TPM.\n" | |
768 | #endif /* CONFIG_TPM_LIST_RESOURCES */ | |
be6c1529 RP |
769 | #ifdef CONFIG_TPM_AUTH_SESSIONS |
770 | "Storage functions\n" | |
771 | " loadkey2_oiap parent_handle key_addr key_len usage_auth\n" | |
772 | " - loads a key data from memory address <key_addr>, <key_len> bytes\n" | |
773 | " into TPM using the parent key <parent_handle> with authorization\n" | |
774 | " <usage_auth> (20 bytes hex string).\n" | |
0f4b2ba1 | 775 | #ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1 |
776 | " load_key_by_sha1 parent_hash key_addr key_len usage_auth\n" | |
777 | " - loads a key data from memory address <key_addr>, <key_len> bytes\n" | |
778 | " into TPM using the parent hash <parent_hash> (20 bytes hex string)\n" | |
779 | " with authorization <usage_auth> (20 bytes hex string).\n" | |
780 | #endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */ | |
be6c1529 RP |
781 | " get_pub_key_oiap key_handle usage_auth\n" |
782 | " - get the public key portion of a loaded key <key_handle> using\n" | |
783 | " authorization <usage auth> (20 bytes hex string)\n" | |
784 | #endif /* CONFIG_TPM_AUTH_SESSIONS */ | |
8732b070 CC |
785 | "Endorsement Key Handling Commands:\n" |
786 | " read_pubek addr count\n" | |
787 | " - Read <count> bytes of the public endorsement key to memory\n" | |
788 | " address <addr>\n" | |
789 | "Integrity Collection and Reporting Commands:\n" | |
790 | " extend index digest_hex_string\n" | |
791 | " - Add a new measurement to a PCR. Update PCR <index> with the 20-bytes\n" | |
792 | " <digest_hex_string>\n" | |
793 | " pcr_read index addr count\n" | |
794 | " - Read <count> bytes from PCR <index> to memory address <addr>.\n" | |
be6c1529 RP |
795 | #ifdef CONFIG_TPM_AUTH_SESSIONS |
796 | "Authorization Sessions\n" | |
797 | " oiap\n" | |
798 | " - setup an OIAP session\n" | |
799 | " end_oiap\n" | |
800 | " - terminates an active OIAP session\n" | |
801 | #endif /* CONFIG_TPM_AUTH_SESSIONS */ | |
8732b070 CC |
802 | "Non-volatile Storage Commands:\n" |
803 | " nv_define_space index permission size\n" | |
804 | " - Establish a space at index <index> with <permission> of <size> bytes.\n" | |
805 | " nv_read_value index addr count\n" | |
806 | " - Read <count> bytes from space <index> to memory address <addr>.\n" | |
807 | " nv_write_value index addr count\n" | |
808 | " - Write <count> bytes from memory address <addr> to space <index>.\n" | |
809 | "Miscellaneous helper functions:\n" | |
810 | " raw_transfer byte_string\n" | |
811 | " - Send a byte string <byte_string> to TPM and print the response.\n" | |
812 | " Non-volatile storage helper functions:\n" | |
813 | " These helper functions treat a non-volatile space as a non-padded\n" | |
814 | " sequence of integer values. These integer values are defined by a type\n" | |
815 | " string, which is a text string of 'bwd' characters: 'b' means a 8-bit\n" | |
816 | " value, 'w' 16-bit value, 'd' 32-bit value. All helper functions take\n" | |
817 | " a type string as their first argument.\n" | |
818 | " nv_define type_string index perm\n" | |
819 | " - Define a space <index> with permission <perm>.\n" | |
820 | " nv_read types_string index vars...\n" | |
821 | " - Read from space <index> to environment variables <vars...>.\n" | |
822 | " nv_write types_string index values...\n" | |
823 | " - Write to space <index> from values <values...>.\n" | |
eea3f4d3 | 824 | ); |