blob: 578b69e38f7cc3fbc8f39e3dc3ae341cdbdc9ed2 [file] [log] [blame]
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Defines APIs that allow an OS to interact with UEFI firmware to query
4 * information about the device.
5 * https://trustedcomputinggroup.org/resource/tcg-efi-protocol-specification/
6 *
7 * Copyright (c) 2020, Linaro Limited
8 */
9
10#define LOG_CATEGORY LOGC_EFI
11#include <common.h>
12#include <dm.h>
13#include <efi_loader.h>
14#include <efi_tcg2.h>
15#include <log.h>
Masahisa Kojima163a0d72021-05-26 12:09:58 +090016#include <malloc.h>
Ilias Apalodimasf69a2012021-03-24 16:50:46 +020017#include <version.h>
Ilias Apalodimasc1c02102020-11-11 11:18:11 +020018#include <tpm-v2.h>
Masahisa Kojima163a0d72021-05-26 12:09:58 +090019#include <u-boot/hash-checksum.h>
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020020#include <u-boot/sha1.h>
21#include <u-boot/sha256.h>
22#include <u-boot/sha512.h>
Ilias Apalodimasc1c02102020-11-11 11:18:11 +020023#include <linux/unaligned/access_ok.h>
24#include <linux/unaligned/generic.h>
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020025#include <hexdump.h>
Ilias Apalodimasc1c02102020-11-11 11:18:11 +020026
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020027struct event_log_buffer {
28 void *buffer;
29 void *final_buffer;
30 size_t pos; /* eventlog position */
31 size_t final_pos; /* final events config table position */
32 size_t last_event_size;
33 bool get_event_called;
34 bool truncated;
35};
Ilias Apalodimasc1c02102020-11-11 11:18:11 +020036
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020037static struct event_log_buffer event_log;
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +090038static bool tcg2_efi_app_invoked;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +020039/*
40 * When requesting TPM2_CAP_TPM_PROPERTIES the value is on a standard offset.
41 * Since the current tpm2_get_capability() response buffers starts at
42 * 'union tpmu_capabilities data' of 'struct tpms_capability_data', calculate
43 * the response size and offset once for all consumers
44 */
45#define TPM2_RESPONSE_BUFFER_SIZE (sizeof(struct tpms_capability_data) - \
46 offsetof(struct tpms_capability_data, data))
47#define properties_offset (offsetof(struct tpml_tagged_tpm_property, tpm_property) + \
48 offsetof(struct tpms_tagged_property, value))
49
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020050static const efi_guid_t efi_guid_tcg2_protocol = EFI_TCG2_PROTOCOL_GUID;
51static const efi_guid_t efi_guid_final_events = EFI_TCG2_FINAL_EVENTS_TABLE_GUID;
52
53struct digest_info {
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020054 u16 hash_alg;
55 u32 hash_mask;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020056 u16 hash_len;
57};
58
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +030059static const struct digest_info hash_algo_list[] = {
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020060 {
61 TPM2_ALG_SHA1,
62 EFI_TCG2_BOOT_HASH_ALG_SHA1,
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020063 TPM2_SHA1_DIGEST_SIZE,
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020064 },
65 {
66 TPM2_ALG_SHA256,
67 EFI_TCG2_BOOT_HASH_ALG_SHA256,
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020068 TPM2_SHA256_DIGEST_SIZE,
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020069 },
70 {
71 TPM2_ALG_SHA384,
72 EFI_TCG2_BOOT_HASH_ALG_SHA384,
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020073 TPM2_SHA384_DIGEST_SIZE,
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020074 },
75 {
76 TPM2_ALG_SHA512,
77 EFI_TCG2_BOOT_HASH_ALG_SHA512,
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020078 TPM2_SHA512_DIGEST_SIZE,
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020079 },
80};
81
Masahisa Kojimacfbcf052021-08-13 16:12:39 +090082struct variable_info {
83 u16 *name;
84 const efi_guid_t *guid;
85};
86
87static struct variable_info secure_variables[] = {
88 {L"SecureBoot", &efi_global_variable_guid},
89 {L"PK", &efi_global_variable_guid},
90 {L"KEK", &efi_global_variable_guid},
91 {L"db", &efi_guid_image_security_database},
92 {L"dbx", &efi_guid_image_security_database},
93};
94
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020095#define MAX_HASH_COUNT ARRAY_SIZE(hash_algo_list)
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +020096
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +020097/**
98 * alg_to_mask - Get a TCG hash mask for algorithms
99 *
100 * @hash_alg: TCG defined algorithm
101 *
102 * @Return: TCG hashing algorithm bitmaps, 0 if the algorithm is not supported
103 */
104static u32 alg_to_mask(u16 hash_alg)
105{
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300106 size_t i;
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200107
108 for (i = 0; i < MAX_HASH_COUNT; i++) {
109 if (hash_algo_list[i].hash_alg == hash_alg)
110 return hash_algo_list[i].hash_mask;
111 }
112
113 return 0;
114}
115
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200116/**
117 * alg_to_len - Get a TCG hash len for algorithms
118 *
119 * @hash_alg: TCG defined algorithm
120 *
121 * @Return: len of chosen algorithm, 0 if the algorithm is not supported
122 */
123static u16 alg_to_len(u16 hash_alg)
124{
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300125 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200126
127 for (i = 0; i < MAX_HASH_COUNT; i++) {
128 if (hash_algo_list[i].hash_alg == hash_alg)
129 return hash_algo_list[i].hash_len;
130 }
131
132 return 0;
133}
134
135static u32 tcg_event_final_size(struct tpml_digest_values *digest_list)
136{
137 u32 len;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300138 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200139
140 len = offsetof(struct tcg_pcr_event2, digests);
141 len += offsetof(struct tpml_digest_values, digests);
142 for (i = 0; i < digest_list->count; i++) {
143 u16 hash_alg = digest_list->digests[i].hash_alg;
144
145 len += offsetof(struct tpmt_ha, digest);
146 len += alg_to_len(hash_alg);
147 }
148 len += sizeof(u32); /* tcg_pcr_event2 event_size*/
149
150 return len;
151}
152
153/* tcg2_pcr_extend - Extend PCRs for a TPM2 device for a given tpml_digest_values
154 *
155 * @dev: device
156 * @digest_list: list of digest algorithms to extend
157 *
158 * @Return: status code
159 */
160static efi_status_t tcg2_pcr_extend(struct udevice *dev, u32 pcr_index,
161 struct tpml_digest_values *digest_list)
162{
163 u32 rc;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300164 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200165
166 for (i = 0; i < digest_list->count; i++) {
167 u32 alg = digest_list->digests[i].hash_alg;
168
169 rc = tpm2_pcr_extend(dev, pcr_index, alg,
170 (u8 *)&digest_list->digests[i].digest,
171 alg_to_len(alg));
172 if (rc) {
173 EFI_PRINT("Failed to extend PCR\n");
174 return EFI_DEVICE_ERROR;
175 }
176 }
177
178 return EFI_SUCCESS;
179}
180
181/* tcg2_agile_log_append - Append an agile event to out eventlog
182 *
183 * @pcr_index: PCR index
184 * @event_type: type of event added
185 * @digest_list: list of digest algorithms to add
186 * @size: size of event
187 * @event: event to add
188 *
189 * @Return: status code
190 */
191static efi_status_t tcg2_agile_log_append(u32 pcr_index, u32 event_type,
192 struct tpml_digest_values *digest_list,
193 u32 size, u8 event[])
194{
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300195 void *log = (void *)((uintptr_t)event_log.buffer + event_log.pos);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200196 size_t pos;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300197 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200198 u32 event_size;
199
200 if (event_log.get_event_called)
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300201 log = (void *)((uintptr_t)event_log.final_buffer +
202 event_log.final_pos);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200203
204 /*
205 * size refers to the length of event[] only, we need to check against
206 * the final tcg_pcr_event2 size
207 */
208 event_size = size + tcg_event_final_size(digest_list);
209 if (event_log.pos + event_size > TPM2_EVENT_LOG_SIZE ||
210 event_log.final_pos + event_size > TPM2_EVENT_LOG_SIZE) {
211 event_log.truncated = true;
212 return EFI_VOLUME_FULL;
213 }
214
215 put_unaligned_le32(pcr_index, log);
216 pos = offsetof(struct tcg_pcr_event2, event_type);
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300217 put_unaligned_le32(event_type, (void *)((uintptr_t)log + pos));
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200218 pos = offsetof(struct tcg_pcr_event2, digests); /* count */
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300219 put_unaligned_le32(digest_list->count, (void *)((uintptr_t)log + pos));
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200220
221 pos += offsetof(struct tpml_digest_values, digests);
222 for (i = 0; i < digest_list->count; i++) {
223 u16 hash_alg = digest_list->digests[i].hash_alg;
224 u8 *digest = (u8 *)&digest_list->digests[i].digest;
225
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300226 put_unaligned_le16(hash_alg, (void *)((uintptr_t)log + pos));
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200227 pos += offsetof(struct tpmt_ha, digest);
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300228 memcpy((void *)((uintptr_t)log + pos), digest, alg_to_len(hash_alg));
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200229 pos += alg_to_len(hash_alg);
230 }
231
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300232 put_unaligned_le32(size, (void *)((uintptr_t)log + pos));
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200233 pos += sizeof(u32); /* tcg_pcr_event2 event_size*/
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +0300234 memcpy((void *)((uintptr_t)log + pos), event, size);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200235 pos += size;
236
237 /* make sure the calculated buffer is what we checked against */
238 if (pos != event_size)
239 return EFI_INVALID_PARAMETER;
240
241 /* if GetEventLog hasn't been called update the normal log */
242 if (!event_log.get_event_called) {
243 event_log.pos += pos;
244 event_log.last_event_size = pos;
245 } else {
246 /* if GetEventLog has been called update config table log */
247 struct efi_tcg2_final_events_table *final_event;
248
249 final_event =
250 (struct efi_tcg2_final_events_table *)(event_log.final_buffer);
251 final_event->number_of_events++;
252 event_log.final_pos += pos;
253 }
254
255 return EFI_SUCCESS;
256}
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200257
258/**
259 * platform_get_tpm_device() - retrieve TPM device
260 *
261 * This function retrieves the udevice implementing a TPM
262 *
263 * This function may be overridden if special initialization is needed.
264 *
265 * @dev: udevice
266 * Return: status code
267 */
268__weak efi_status_t platform_get_tpm2_device(struct udevice **dev)
269{
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200270 for_each_tpm_device(*dev) {
271 /* Only support TPMv2 devices */
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200272 if (tpm_get_version(*dev) == TPM_V2)
273 return EFI_SUCCESS;
274 }
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200275
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200276 return EFI_NOT_FOUND;
277}
278
279/**
280 * tpm2_get_max_command_size() - get the supported max command size
281 *
282 * @dev: TPM device
283 * @max_command_size: output buffer for the size
284 *
285 * Return: 0 on success, -1 on error
286 */
287static int tpm2_get_max_command_size(struct udevice *dev, u16 *max_command_size)
288{
289 u8 response[TPM2_RESPONSE_BUFFER_SIZE];
290 u32 ret;
291
292 memset(response, 0, sizeof(response));
293 ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES,
294 TPM2_PT_MAX_COMMAND_SIZE, response, 1);
295 if (ret)
296 return -1;
297
298 *max_command_size = (uint16_t)get_unaligned_be32(response +
299 properties_offset);
300
301 return 0;
302}
303
304/**
305 * tpm2_get_max_response_size() - get the supported max response size
306 *
307 * @dev: TPM device
308 * @max_response_size: output buffer for the size
309 *
310 * Return: 0 on success, -1 on error
311 */
312static int tpm2_get_max_response_size(struct udevice *dev,
313 u16 *max_response_size)
314{
315 u8 response[TPM2_RESPONSE_BUFFER_SIZE];
316 u32 ret;
317
318 memset(response, 0, sizeof(response));
319 ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES,
320 TPM2_PT_MAX_RESPONSE_SIZE, response, 1);
321 if (ret)
322 return -1;
323
324 *max_response_size = (uint16_t)get_unaligned_be32(response +
325 properties_offset);
326
327 return 0;
328}
329
330/**
331 * tpm2_get_manufacturer_id() - get the manufacturer ID
332 *
333 * @dev: TPM device
334 * @manufacturer_id: output buffer for the id
335 *
336 * Return: 0 on success, -1 on error
337 */
338static int tpm2_get_manufacturer_id(struct udevice *dev, u32 *manufacturer_id)
339{
340 u8 response[TPM2_RESPONSE_BUFFER_SIZE];
341 u32 ret;
342
343 memset(response, 0, sizeof(response));
344 ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES,
345 TPM2_PT_MANUFACTURER, response, 1);
346 if (ret)
347 return -1;
348
349 *manufacturer_id = get_unaligned_be32(response + properties_offset);
350
351 return 0;
352}
353
354/**
355 * tpm2_get_num_pcr() - get the number of PCRs
356 *
357 * @dev: TPM device
358 * @manufacturer_id: output buffer for the number
359 *
360 * Return: 0 on success, -1 on error
361 */
362static int tpm2_get_num_pcr(struct udevice *dev, u32 *num_pcr)
363{
364 u8 response[TPM2_RESPONSE_BUFFER_SIZE];
365 u32 ret;
366
367 memset(response, 0, sizeof(response));
368 ret = tpm2_get_capability(dev, TPM2_CAP_TPM_PROPERTIES,
369 TPM2_PT_PCR_COUNT, response, 1);
370 if (ret)
371 return -1;
372
373 *num_pcr = get_unaligned_be32(response + properties_offset);
374 if (*num_pcr > TPM2_MAX_PCRS)
375 return -1;
376
377 return 0;
378}
379
380/**
381 * is_active_pcr() - Check if a supported algorithm is active
382 *
383 * @dev: TPM device
384 * @selection: struct of PCR information
385 *
386 * Return: true if PCR is active
387 */
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200388static bool is_active_pcr(struct tpms_pcr_selection *selection)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200389{
390 int i;
391 /*
392 * check the pcr_select. If at least one of the PCRs supports the
393 * algorithm add it on the active ones
394 */
395 for (i = 0; i < selection->size_of_select; i++) {
396 if (selection->pcr_select[i])
397 return true;
398 }
399
400 return false;
401}
402
403/**
404 * tpm2_get_pcr_info() - get the supported, active PCRs and number of banks
405 *
406 * @dev: TPM device
407 * @supported_pcr: bitmask with the algorithms supported
408 * @active_pcr: bitmask with the active algorithms
409 * @pcr_banks: number of PCR banks
410 *
411 * Return: 0 on success, -1 on error
412 */
413static int tpm2_get_pcr_info(struct udevice *dev, u32 *supported_pcr,
414 u32 *active_pcr, u32 *pcr_banks)
415{
416 u8 response[TPM2_RESPONSE_BUFFER_SIZE];
417 struct tpml_pcr_selection pcrs;
418 u32 ret, num_pcr;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300419 size_t i;
420 int tpm_ret;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200421
Ilias Apalodimas38de6802021-05-26 21:01:00 +0300422 *supported_pcr = 0;
423 *active_pcr = 0;
424 *pcr_banks = 0;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200425 memset(response, 0, sizeof(response));
426 ret = tpm2_get_capability(dev, TPM2_CAP_PCRS, 0, response, 1);
427 if (ret)
428 goto out;
429
430 pcrs.count = get_unaligned_be32(response);
431 /*
432 * We only support 5 algorithms for now so check against that
433 * instead of TPM2_NUM_PCR_BANKS
434 */
435 if (pcrs.count > MAX_HASH_COUNT || pcrs.count < 1)
436 goto out;
437
438 tpm_ret = tpm2_get_num_pcr(dev, &num_pcr);
439 if (tpm_ret)
440 goto out;
441
442 for (i = 0; i < pcrs.count; i++) {
443 /*
444 * Definition of TPMS_PCR_SELECTION Structure
445 * hash: u16
446 * size_of_select: u8
447 * pcr_select: u8 array
448 *
449 * The offsets depend on the number of the device PCRs
450 * so we have to calculate them based on that
451 */
452 u32 hash_offset = offsetof(struct tpml_pcr_selection, selection) +
453 i * offsetof(struct tpms_pcr_selection, pcr_select) +
454 i * ((num_pcr + 7) / 8);
455 u32 size_select_offset =
456 hash_offset + offsetof(struct tpms_pcr_selection,
457 size_of_select);
458 u32 pcr_select_offset =
459 hash_offset + offsetof(struct tpms_pcr_selection,
460 pcr_select);
461
462 pcrs.selection[i].hash =
463 get_unaligned_be16(response + hash_offset);
464 pcrs.selection[i].size_of_select =
465 __get_unaligned_be(response + size_select_offset);
466 if (pcrs.selection[i].size_of_select > TPM2_PCR_SELECT_MAX)
467 goto out;
468 /* copy the array of pcr_select */
469 memcpy(pcrs.selection[i].pcr_select, response + pcr_select_offset,
470 pcrs.selection[i].size_of_select);
471 }
472
473 for (i = 0; i < pcrs.count; i++) {
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200474 u32 hash_mask = alg_to_mask(pcrs.selection[i].hash);
475
476 if (hash_mask) {
477 *supported_pcr |= hash_mask;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200478 if (is_active_pcr(&pcrs.selection[i]))
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200479 *active_pcr |= hash_mask;
480 } else {
481 EFI_PRINT("Unknown algorithm %x\n", pcrs.selection[i].hash);
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200482 }
483 }
484
485 *pcr_banks = pcrs.count;
486
487 return 0;
488out:
489 return -1;
490}
491
492/**
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200493 * __get_active_pcr_banks() - returns the currently active PCR banks
494 *
495 * @active_pcr_banks: pointer for receiving the bitmap of currently
496 * active PCR banks
497 *
498 * Return: status code
499 */
500static efi_status_t __get_active_pcr_banks(u32 *active_pcr_banks)
501{
502 struct udevice *dev;
Ilias Apalodimas38de6802021-05-26 21:01:00 +0300503 u32 active = 0, supported = 0, pcr_banks = 0;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200504 efi_status_t ret;
505 int err;
506
507 ret = platform_get_tpm2_device(&dev);
508 if (ret != EFI_SUCCESS)
509 goto out;
510
511 err = tpm2_get_pcr_info(dev, &supported, &active, &pcr_banks);
512 if (err) {
513 ret = EFI_DEVICE_ERROR;
514 goto out;
515 }
516
517 *active_pcr_banks = active;
518
519out:
520 return ret;
521}
522
523/* tcg2_create_digest - create a list of digests of the supported PCR banks
524 * for a given memory range
525 *
526 * @input: input memory
527 * @length: length of buffer to calculate the digest
528 * @digest_list: list of digests to fill in
529 *
530 * Return: status code
531 */
532static efi_status_t tcg2_create_digest(const u8 *input, u32 length,
533 struct tpml_digest_values *digest_list)
534{
535 sha1_context ctx;
536 sha256_context ctx_256;
537 sha512_context ctx_512;
Masahisa Kojimab1a7a5e2021-04-14 11:55:49 +0900538 u8 final[TPM2_SHA512_DIGEST_SIZE];
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200539 efi_status_t ret;
540 u32 active;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +0300541 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200542
543 ret = __get_active_pcr_banks(&active);
544 if (ret != EFI_SUCCESS)
545 return ret;
546
547 digest_list->count = 0;
548 for (i = 0; i < MAX_HASH_COUNT; i++) {
549 u16 hash_alg = hash_algo_list[i].hash_alg;
550
551 if (!(active & alg_to_mask(hash_alg)))
552 continue;
553 switch (hash_alg) {
554 case TPM2_ALG_SHA1:
555 sha1_starts(&ctx);
556 sha1_update(&ctx, input, length);
557 sha1_finish(&ctx, final);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200558 break;
559 case TPM2_ALG_SHA256:
560 sha256_starts(&ctx_256);
561 sha256_update(&ctx_256, input, length);
562 sha256_finish(&ctx_256, final);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200563 break;
564 case TPM2_ALG_SHA384:
565 sha384_starts(&ctx_512);
566 sha384_update(&ctx_512, input, length);
567 sha384_finish(&ctx_512, final);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200568 break;
569 case TPM2_ALG_SHA512:
570 sha512_starts(&ctx_512);
571 sha512_update(&ctx_512, input, length);
572 sha512_finish(&ctx_512, final);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200573 break;
574 default:
575 EFI_PRINT("Unsupported algorithm %x\n", hash_alg);
576 return EFI_INVALID_PARAMETER;
577 }
Ilias Apalodimas6fe8b4a2021-04-22 14:32:14 +0300578 digest_list->count++;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200579 digest_list->digests[i].hash_alg = hash_alg;
580 memcpy(&digest_list->digests[i].digest, final, (u32)alg_to_len(hash_alg));
581 }
582
583 return EFI_SUCCESS;
584}
585
586/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200587 * efi_tcg2_get_capability() - protocol capability information and state information
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200588 *
589 * @this: TCG2 protocol instance
590 * @capability: caller allocated memory with size field to the size of
591 * the structure allocated
592
593 * Return: status code
594 */
595static efi_status_t EFIAPI
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200596efi_tcg2_get_capability(struct efi_tcg2_protocol *this,
597 struct efi_tcg2_boot_service_capability *capability)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200598{
599 struct udevice *dev;
600 efi_status_t efi_ret;
601 int ret;
602
603 EFI_ENTRY("%p, %p", this, capability);
604
605 if (!this || !capability) {
606 efi_ret = EFI_INVALID_PARAMETER;
607 goto out;
608 }
609
Masahisa Kojimabad49da2021-09-06 12:04:12 +0900610 if (capability->size < BOOT_SERVICE_CAPABILITY_MIN) {
611 capability->size = BOOT_SERVICE_CAPABILITY_MIN;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200612 efi_ret = EFI_BUFFER_TOO_SMALL;
613 goto out;
614 }
615
616 if (capability->size < sizeof(*capability)) {
617 capability->size = sizeof(*capability);
618 efi_ret = EFI_BUFFER_TOO_SMALL;
619 goto out;
620 }
621
622 capability->structure_version.major = 1;
623 capability->structure_version.minor = 1;
624 capability->protocol_version.major = 1;
625 capability->protocol_version.minor = 1;
626
627 efi_ret = platform_get_tpm2_device(&dev);
628 if (efi_ret != EFI_SUCCESS) {
629 capability->supported_event_logs = 0;
630 capability->hash_algorithm_bitmap = 0;
631 capability->tpm_present_flag = false;
632 capability->max_command_size = 0;
633 capability->max_response_size = 0;
634 capability->manufacturer_id = 0;
635 capability->number_of_pcr_banks = 0;
636 capability->active_pcr_banks = 0;
637
638 efi_ret = EFI_SUCCESS;
639 goto out;
640 }
641
642 /* We only allow a TPMv2 device to register the EFI protocol */
643 capability->supported_event_logs = TCG2_EVENT_LOG_FORMAT_TCG_2;
644
645 capability->tpm_present_flag = true;
646
647 /* Supported and active PCRs */
648 capability->hash_algorithm_bitmap = 0;
649 capability->active_pcr_banks = 0;
650 ret = tpm2_get_pcr_info(dev, &capability->hash_algorithm_bitmap,
651 &capability->active_pcr_banks,
652 &capability->number_of_pcr_banks);
653 if (ret) {
654 efi_ret = EFI_DEVICE_ERROR;
655 goto out;
656 }
657
658 /* Max command size */
659 ret = tpm2_get_max_command_size(dev, &capability->max_command_size);
660 if (ret) {
661 efi_ret = EFI_DEVICE_ERROR;
662 goto out;
663 }
664
665 /* Max response size */
666 ret = tpm2_get_max_response_size(dev, &capability->max_response_size);
667 if (ret) {
668 efi_ret = EFI_DEVICE_ERROR;
669 goto out;
670 }
671
672 /* Manufacturer ID */
673 ret = tpm2_get_manufacturer_id(dev, &capability->manufacturer_id);
674 if (ret) {
675 efi_ret = EFI_DEVICE_ERROR;
676 goto out;
677 }
678
679 return EFI_EXIT(EFI_SUCCESS);
680out:
681 return EFI_EXIT(efi_ret);
682}
683
684/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200685 * efi_tcg2_get_eventlog() - retrieve the the address of an event log and its
686 * last entry
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200687 *
688 * @this: TCG2 protocol instance
689 * @log_format: type of event log format
690 * @event_log_location: pointer to the memory address of the event log
691 * @event_log_last_entry: pointer to the address of the start of the last
692 * entry in the event log in memory, if log contains
693 * more than 1 entry
694 * @event_log_truncated: set to true, if the Event Log is missing at i
695 * least one entry
696 *
697 * Return: status code
698 */
699static efi_status_t EFIAPI
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200700efi_tcg2_get_eventlog(struct efi_tcg2_protocol *this,
701 efi_tcg_event_log_format log_format,
702 u64 *event_log_location, u64 *event_log_last_entry,
703 bool *event_log_truncated)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200704{
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200705 efi_status_t ret = EFI_SUCCESS;
706 struct udevice *dev;
707
708 EFI_ENTRY("%p, %u, %p, %p, %p", this, log_format, event_log_location,
709 event_log_last_entry, event_log_truncated);
710
Masahisa Kojima580d7242021-09-03 10:55:50 +0900711 if (!this || !event_log_location || !event_log_last_entry ||
712 !event_log_truncated) {
713 ret = EFI_INVALID_PARAMETER;
714 goto out;
715 }
716
717 /* Only support TPMV2 */
718 if (log_format != TCG2_EVENT_LOG_FORMAT_TCG_2) {
719 ret = EFI_INVALID_PARAMETER;
720 goto out;
721 }
722
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200723 ret = platform_get_tpm2_device(&dev);
724 if (ret != EFI_SUCCESS) {
725 event_log_location = NULL;
726 event_log_last_entry = NULL;
727 *event_log_truncated = false;
728 ret = EFI_SUCCESS;
729 goto out;
730 }
731 *event_log_location = (uintptr_t)event_log.buffer;
732 *event_log_last_entry = (uintptr_t)(event_log.buffer + event_log.pos -
733 event_log.last_event_size);
734 *event_log_truncated = event_log.truncated;
735 event_log.get_event_called = true;
736
737out:
738 return EFI_EXIT(ret);
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200739}
740
741/**
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900742 * tcg2_hash_pe_image() - calculate PE/COFF image hash
743 *
744 * @efi: pointer to the EFI binary
745 * @efi_size: size of @efi binary
746 * @digest_list: list of digest algorithms to extend
747 *
748 * Return: status code
749 */
750static efi_status_t tcg2_hash_pe_image(void *efi, u64 efi_size,
751 struct tpml_digest_values *digest_list)
752{
753 WIN_CERTIFICATE *wincerts = NULL;
754 size_t wincerts_len;
755 struct efi_image_regions *regs = NULL;
756 void *new_efi = NULL;
757 u8 hash[TPM2_SHA512_DIGEST_SIZE];
758 efi_status_t ret;
759 u32 active;
760 int i;
761
762 new_efi = efi_prepare_aligned_image(efi, &efi_size);
763 if (!new_efi)
764 return EFI_OUT_OF_RESOURCES;
765
766 if (!efi_image_parse(new_efi, efi_size, &regs, &wincerts,
767 &wincerts_len)) {
768 log_err("Parsing PE executable image failed\n");
769 ret = EFI_UNSUPPORTED;
770 goto out;
771 }
772
773 ret = __get_active_pcr_banks(&active);
774 if (ret != EFI_SUCCESS) {
775 goto out;
776 }
777
778 digest_list->count = 0;
779 for (i = 0; i < MAX_HASH_COUNT; i++) {
780 u16 hash_alg = hash_algo_list[i].hash_alg;
781
782 if (!(active & alg_to_mask(hash_alg)))
783 continue;
784 switch (hash_alg) {
785 case TPM2_ALG_SHA1:
786 hash_calculate("sha1", regs->reg, regs->num, hash);
787 break;
788 case TPM2_ALG_SHA256:
789 hash_calculate("sha256", regs->reg, regs->num, hash);
790 break;
791 case TPM2_ALG_SHA384:
792 hash_calculate("sha384", regs->reg, regs->num, hash);
793 break;
794 case TPM2_ALG_SHA512:
795 hash_calculate("sha512", regs->reg, regs->num, hash);
796 break;
797 default:
798 EFI_PRINT("Unsupported algorithm %x\n", hash_alg);
799 return EFI_INVALID_PARAMETER;
800 }
801 digest_list->digests[i].hash_alg = hash_alg;
802 memcpy(&digest_list->digests[i].digest, hash, (u32)alg_to_len(hash_alg));
803 digest_list->count++;
804 }
805
806out:
807 if (new_efi != efi)
808 free(new_efi);
809 free(regs);
810
811 return ret;
812}
813
814/**
815 * tcg2_measure_pe_image() - measure PE/COFF image
816 *
817 * @efi: pointer to the EFI binary
818 * @efi_size: size of @efi binary
819 * @handle: loaded image handle
820 * @loaded_image: loaded image protocol
821 *
822 * Return: status code
823 */
824efi_status_t tcg2_measure_pe_image(void *efi, u64 efi_size,
825 struct efi_loaded_image_obj *handle,
826 struct efi_loaded_image *loaded_image)
827{
828 struct tpml_digest_values digest_list;
829 efi_status_t ret;
830 struct udevice *dev;
831 u32 pcr_index, event_type, event_size;
832 struct uefi_image_load_event *image_load_event;
833 struct efi_device_path *device_path;
834 u32 device_path_length;
835 IMAGE_DOS_HEADER *dos;
836 IMAGE_NT_HEADERS32 *nt;
837 struct efi_handler *handler;
838
839 ret = platform_get_tpm2_device(&dev);
840 if (ret != EFI_SUCCESS)
841 return ret;
842
843 switch (handle->image_type) {
844 case IMAGE_SUBSYSTEM_EFI_APPLICATION:
845 pcr_index = 4;
846 event_type = EV_EFI_BOOT_SERVICES_APPLICATION;
847 break;
848 case IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:
849 pcr_index = 2;
850 event_type = EV_EFI_BOOT_SERVICES_DRIVER;
851 break;
852 case IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:
853 pcr_index = 2;
854 event_type = EV_EFI_RUNTIME_SERVICES_DRIVER;
855 break;
856 default:
857 return EFI_UNSUPPORTED;
858 }
859
860 ret = tcg2_hash_pe_image(efi, efi_size, &digest_list);
861 if (ret != EFI_SUCCESS)
862 return ret;
863
864 ret = tcg2_pcr_extend(dev, pcr_index, &digest_list);
865 if (ret != EFI_SUCCESS)
866 return ret;
867
Ilias Apalodimas0bf538c2021-09-09 00:30:49 +0300868 ret = efi_search_protocol(&handle->header,
869 &efi_guid_loaded_image_device_path, &handler);
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900870 if (ret != EFI_SUCCESS)
871 return ret;
872
Ilias Apalodimas0bf538c2021-09-09 00:30:49 +0300873 device_path = handler->protocol_interface;
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900874 device_path_length = efi_dp_size(device_path);
875 if (device_path_length > 0) {
876 /* add end node size */
877 device_path_length += sizeof(struct efi_device_path);
878 }
879 event_size = sizeof(struct uefi_image_load_event) + device_path_length;
Ilias Apalodimas0bf538c2021-09-09 00:30:49 +0300880 image_load_event = calloc(1, event_size);
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900881 if (!image_load_event)
882 return EFI_OUT_OF_RESOURCES;
883
884 image_load_event->image_location_in_memory = (uintptr_t)efi;
885 image_load_event->image_length_in_memory = efi_size;
886 image_load_event->length_of_device_path = device_path_length;
887
888 dos = (IMAGE_DOS_HEADER *)efi;
889 nt = (IMAGE_NT_HEADERS32 *)(efi + dos->e_lfanew);
890 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
891 IMAGE_NT_HEADERS64 *nt64 = (IMAGE_NT_HEADERS64 *)nt;
892
893 image_load_event->image_link_time_address =
894 nt64->OptionalHeader.ImageBase;
895 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
896 image_load_event->image_link_time_address =
897 nt->OptionalHeader.ImageBase;
898 } else {
899 ret = EFI_INVALID_PARAMETER;
900 goto out;
901 }
902
Ilias Apalodimas0bf538c2021-09-09 00:30:49 +0300903 /* device_path_length might be zero */
904 memcpy(image_load_event->device_path, device_path, device_path_length);
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900905
906 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
907 event_size, (u8 *)image_load_event);
908
909out:
910 free(image_load_event);
911
912 return ret;
913}
914
915/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200916 * efi_tcg2_hash_log_extend_event() - extend and optionally log events
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200917 *
918 * @this: TCG2 protocol instance
919 * @flags: bitmap providing additional information on the
920 * operation
921 * @data_to_hash: physical address of the start of the data buffer
922 * to be hashed
923 * @data_to_hash_len: the length in bytes of the buffer referenced by
924 * data_to_hash
925 * @efi_tcg_event: pointer to data buffer containing information
926 * about the event
927 *
928 * Return: status code
929 */
930static efi_status_t EFIAPI
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +0200931efi_tcg2_hash_log_extend_event(struct efi_tcg2_protocol *this, u64 flags,
932 u64 data_to_hash, u64 data_to_hash_len,
933 struct efi_tcg2_event *efi_tcg_event)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +0200934{
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200935 struct udevice *dev;
936 efi_status_t ret;
937 u32 event_type, pcr_index, event_size;
938 struct tpml_digest_values digest_list;
939
940 EFI_ENTRY("%p, %llu, %llu, %llu, %p", this, flags, data_to_hash,
941 data_to_hash_len, efi_tcg_event);
942
943 if (!this || !data_to_hash || !efi_tcg_event) {
944 ret = EFI_INVALID_PARAMETER;
945 goto out;
946 }
947
948 ret = platform_get_tpm2_device(&dev);
949 if (ret != EFI_SUCCESS)
950 goto out;
951
952 if (efi_tcg_event->size < efi_tcg_event->header.header_size +
953 sizeof(u32)) {
954 ret = EFI_INVALID_PARAMETER;
955 goto out;
956 }
957
Masahisa Kojima538c0f22021-09-03 10:55:52 +0900958 if (efi_tcg_event->header.pcr_index > EFI_TCG2_MAX_PCR_INDEX) {
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200959 ret = EFI_INVALID_PARAMETER;
960 goto out;
961 }
962
963 /*
964 * if PE_COFF_IMAGE is set we need to make sure the image is not
965 * corrupted, verify it and hash the PE/COFF image in accordance with
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900966 * the procedure specified in "Calculating the PE Image Hash"
967 * section of the "Windows Authenticode Portable Executable Signature
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200968 * Format"
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200969 */
970 if (flags & PE_COFF_IMAGE) {
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900971 IMAGE_NT_HEADERS32 *nt;
972
973 ret = efi_check_pe((void *)(uintptr_t)data_to_hash,
974 data_to_hash_len, (void **)&nt);
975 if (ret != EFI_SUCCESS) {
976 log_err("Not a valid PE-COFF file\n");
Masahisa Kojima580d7242021-09-03 10:55:50 +0900977 ret = EFI_UNSUPPORTED;
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900978 goto out;
979 }
980 ret = tcg2_hash_pe_image((void *)(uintptr_t)data_to_hash,
981 data_to_hash_len, &digest_list);
982 } else {
983 ret = tcg2_create_digest((u8 *)(uintptr_t)data_to_hash,
984 data_to_hash_len, &digest_list);
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200985 }
986
Masahisa Kojima163a0d72021-05-26 12:09:58 +0900987 if (ret != EFI_SUCCESS)
988 goto out;
989
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200990 pcr_index = efi_tcg_event->header.pcr_index;
991 event_type = efi_tcg_event->header.event_type;
992
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +0200993 ret = tcg2_pcr_extend(dev, pcr_index, &digest_list);
994 if (ret != EFI_SUCCESS)
995 goto out;
996
997 if (flags & EFI_TCG2_EXTEND_ONLY) {
998 if (event_log.truncated)
999 ret = EFI_VOLUME_FULL;
1000 goto out;
1001 }
1002
1003 /*
1004 * The efi_tcg_event size includes the size component and the
1005 * headersize
1006 */
1007 event_size = efi_tcg_event->size - sizeof(efi_tcg_event->size) -
1008 efi_tcg_event->header.header_size;
1009 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
1010 event_size, efi_tcg_event->event);
1011out:
1012 return EFI_EXIT(ret);
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001013}
1014
1015/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001016 * efi_tcg2_submit_command() - Send command to the TPM
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001017 *
1018 * @this: TCG2 protocol instance
1019 * @input_param_block_size: size of the TPM input parameter block
1020 * @input_param_block: pointer to the TPM input parameter block
1021 * @output_param_block_size: size of the TPM output parameter block
1022 * @output_param_block: pointer to the TPM output parameter block
1023 *
1024 * Return: status code
1025 */
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001026static efi_status_t EFIAPI
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +03001027efi_tcg2_submit_command(__maybe_unused struct efi_tcg2_protocol *this,
1028 u32 __maybe_unused input_param_block_size,
1029 u8 __maybe_unused *input_param_block,
1030 u32 __maybe_unused output_param_block_size,
1031 u8 __maybe_unused *output_param_block)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001032{
1033 return EFI_UNSUPPORTED;
1034}
1035
1036/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001037 * efi_tcg2_get_active_pcr_banks() - returns the currently active PCR banks
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001038 *
1039 * @this: TCG2 protocol instance
1040 * @active_pcr_banks: pointer for receiving the bitmap of currently
1041 * active PCR banks
1042 *
1043 * Return: status code
1044 */
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001045static efi_status_t EFIAPI
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001046efi_tcg2_get_active_pcr_banks(struct efi_tcg2_protocol *this,
1047 u32 *active_pcr_banks)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001048{
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001049 efi_status_t ret;
1050
Masahisa Kojima580d7242021-09-03 10:55:50 +09001051 if (!this || !active_pcr_banks) {
1052 ret = EFI_INVALID_PARAMETER;
1053 goto out;
1054 }
1055
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001056 EFI_ENTRY("%p, %p", this, active_pcr_banks);
1057 ret = __get_active_pcr_banks(active_pcr_banks);
1058
Masahisa Kojima580d7242021-09-03 10:55:50 +09001059out:
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001060 return EFI_EXIT(ret);
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001061}
1062
1063/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001064 * efi_tcg2_set_active_pcr_banks() - sets the currently active PCR banks
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001065 *
1066 * @this: TCG2 protocol instance
1067 * @active_pcr_banks: bitmap of the requested active PCR banks
1068 *
1069 * Return: status code
1070 */
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001071static efi_status_t EFIAPI
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +03001072efi_tcg2_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this,
1073 u32 __maybe_unused active_pcr_banks)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001074{
1075 return EFI_UNSUPPORTED;
1076}
1077
1078/**
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001079 * efi_tcg2_get_result_of_set_active_pcr_banks() - retrieve result for previous
1080 * set_active_pcr_banks()
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001081 *
1082 * @this: TCG2 protocol instance
1083 * @operation_present: non-zero value to indicate a
1084 * set_active_pcr_banks operation was
1085 * invoked during last boot
1086 * @response: result value could be returned
1087 *
1088 * Return: status code
1089 */
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001090static efi_status_t EFIAPI
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +03001091efi_tcg2_get_result_of_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this,
1092 u32 __maybe_unused *operation_present,
1093 u32 __maybe_unused *response)
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001094{
1095 return EFI_UNSUPPORTED;
1096}
1097
1098static const struct efi_tcg2_protocol efi_tcg2_protocol = {
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001099 .get_capability = efi_tcg2_get_capability,
1100 .get_eventlog = efi_tcg2_get_eventlog,
1101 .hash_log_extend_event = efi_tcg2_hash_log_extend_event,
1102 .submit_command = efi_tcg2_submit_command,
1103 .get_active_pcr_banks = efi_tcg2_get_active_pcr_banks,
1104 .set_active_pcr_banks = efi_tcg2_set_active_pcr_banks,
1105 .get_result_of_set_active_pcr_banks = efi_tcg2_get_result_of_set_active_pcr_banks,
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001106};
1107
1108/**
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001109 * create_specid_event() - Create the first event in the eventlog
1110 *
1111 * @dev: tpm device
1112 * @event_header: Pointer to the final event header
1113 * @event_size: final spec event size
1114 *
1115 * Return: status code
1116 */
1117static efi_status_t create_specid_event(struct udevice *dev, void *buffer,
1118 size_t *event_size)
1119{
1120 struct tcg_efi_spec_id_event *spec_event;
1121 size_t spec_event_size;
1122 efi_status_t ret = EFI_DEVICE_ERROR;
Ilias Apalodimas38de6802021-05-26 21:01:00 +03001123 u32 active = 0, supported = 0;
Ilias Apalodimas1f6871d2021-05-25 14:35:31 +03001124 int err;
1125 size_t i;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001126
1127 /*
1128 * Create Spec event. This needs to be the first event in the log
1129 * according to the TCG EFI protocol spec
1130 */
1131
1132 /* Setup specID event data */
1133 spec_event = (struct tcg_efi_spec_id_event *)buffer;
1134 memcpy(spec_event->signature, TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03,
1135 sizeof(spec_event->signature));
1136 put_unaligned_le32(0, &spec_event->platform_class); /* type client */
1137 spec_event->spec_version_minor =
1138 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MINOR_TPM2;
1139 spec_event->spec_version_major =
1140 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MAJOR_TPM2;
1141 spec_event->spec_errata =
1142 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_ERRATA_TPM2;
1143 spec_event->uintn_size = sizeof(efi_uintn_t) / sizeof(u32);
1144
1145 err = tpm2_get_pcr_info(dev, &supported, &active,
1146 &spec_event->number_of_algorithms);
1147 if (err)
1148 goto out;
1149 if (spec_event->number_of_algorithms > MAX_HASH_COUNT ||
1150 spec_event->number_of_algorithms < 1)
1151 goto out;
1152
1153 for (i = 0; i < spec_event->number_of_algorithms; i++) {
1154 u16 hash_alg = hash_algo_list[i].hash_alg;
1155 u16 hash_len = hash_algo_list[i].hash_len;
1156
1157 if (active && alg_to_mask(hash_alg)) {
1158 put_unaligned_le16(hash_alg,
1159 &spec_event->digest_sizes[i].algorithm_id);
1160 put_unaligned_le16(hash_len,
1161 &spec_event->digest_sizes[i].digest_size);
1162 }
1163 }
1164 /*
1165 * the size of the spec event and placement of vendor_info_size
1166 * depends on supported algoriths
1167 */
1168 spec_event_size =
1169 offsetof(struct tcg_efi_spec_id_event, digest_sizes) +
1170 spec_event->number_of_algorithms * sizeof(spec_event->digest_sizes[0]);
1171 /* no vendor info for us */
1172 memset(buffer + spec_event_size, 0,
1173 sizeof(spec_event->vendor_info_size));
1174 spec_event_size += sizeof(spec_event->vendor_info_size);
1175 *event_size = spec_event_size;
1176
1177 return EFI_SUCCESS;
1178
1179out:
1180 return ret;
1181}
1182
1183/**
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001184 * tcg2_uninit - remove the final event table and free efi memory on failures
1185 */
1186void tcg2_uninit(void)
1187{
1188 efi_status_t ret;
1189
1190 ret = efi_install_configuration_table(&efi_guid_final_events, NULL);
1191 if (ret != EFI_SUCCESS)
1192 log_err("Failed to delete final events config table\n");
1193
1194 efi_free_pool(event_log.buffer);
1195 event_log.buffer = NULL;
1196 efi_free_pool(event_log.final_buffer);
1197 event_log.final_buffer = NULL;
1198}
1199
1200/**
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001201 * create_final_event() - Create the final event and install the config
1202 * defined by the TCG EFI spec
1203 */
1204static efi_status_t create_final_event(void)
1205{
1206 struct efi_tcg2_final_events_table *final_event;
1207 efi_status_t ret;
1208
1209 /*
1210 * All events generated after the invocation of
1211 * EFI_TCG2_GET_EVENT_LOGS need to be stored in an instance of an
1212 * EFI_CONFIGURATION_TABLE
1213 */
1214 ret = efi_allocate_pool(EFI_ACPI_MEMORY_NVS, TPM2_EVENT_LOG_SIZE,
1215 &event_log.final_buffer);
1216 if (ret != EFI_SUCCESS)
1217 goto out;
1218
1219 memset(event_log.final_buffer, 0xff, TPM2_EVENT_LOG_SIZE);
1220 final_event = event_log.final_buffer;
1221 final_event->number_of_events = 0;
1222 final_event->version = EFI_TCG2_FINAL_EVENTS_TABLE_VERSION;
1223 event_log.final_pos = sizeof(*final_event);
1224 ret = efi_install_configuration_table(&efi_guid_final_events,
1225 final_event);
Ilias Apalodimas20527592021-05-12 00:03:41 +03001226 if (ret != EFI_SUCCESS) {
1227 efi_free_pool(event_log.final_buffer);
1228 event_log.final_buffer = NULL;
1229 }
1230
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001231out:
1232 return ret;
1233}
1234
1235/**
1236 * efi_init_event_log() - initialize an eventlog
1237 */
1238static efi_status_t efi_init_event_log(void)
1239{
1240 /*
1241 * vendor_info_size is currently set to 0, we need to change the length
1242 * and allocate the flexible array member if this changes
1243 */
1244 struct tcg_pcr_event *event_header = NULL;
1245 struct udevice *dev;
1246 size_t spec_event_size;
1247 efi_status_t ret;
1248
1249 ret = platform_get_tpm2_device(&dev);
1250 if (ret != EFI_SUCCESS)
1251 goto out;
1252
1253 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, TPM2_EVENT_LOG_SIZE,
1254 (void **)&event_log.buffer);
1255 if (ret != EFI_SUCCESS)
1256 goto out;
1257
1258 /*
1259 * initialize log area as 0xff so the OS can easily figure out the
1260 * last log entry
1261 */
1262 memset(event_log.buffer, 0xff, TPM2_EVENT_LOG_SIZE);
1263 event_log.pos = 0;
1264 event_log.last_event_size = 0;
1265 event_log.get_event_called = false;
1266 event_log.truncated = false;
1267
1268 /*
1269 * The log header is defined to be in SHA1 event log entry format.
1270 * Setup event header
1271 */
1272 event_header = (struct tcg_pcr_event *)event_log.buffer;
1273 put_unaligned_le32(0, &event_header->pcr_index);
1274 put_unaligned_le32(EV_NO_ACTION, &event_header->event_type);
1275 memset(&event_header->digest, 0, sizeof(event_header->digest));
Ilias Apalodimasf8cd72d2021-03-30 00:42:36 +03001276 ret = create_specid_event(dev, (void *)((uintptr_t)event_log.buffer + sizeof(*event_header)),
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001277 &spec_event_size);
1278 if (ret != EFI_SUCCESS)
Ilias Apalodimas20527592021-05-12 00:03:41 +03001279 goto free_pool;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001280 put_unaligned_le32(spec_event_size, &event_header->event_size);
1281 event_log.pos = spec_event_size + sizeof(*event_header);
1282 event_log.last_event_size = event_log.pos;
1283
1284 ret = create_final_event();
Ilias Apalodimas20527592021-05-12 00:03:41 +03001285 if (ret != EFI_SUCCESS)
1286 goto free_pool;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001287
1288out:
1289 return ret;
Ilias Apalodimas20527592021-05-12 00:03:41 +03001290
1291free_pool:
1292 efi_free_pool(event_log.buffer);
1293 event_log.buffer = NULL;
1294 return ret;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001295}
1296
1297/**
Masahisa Kojimacfbcf052021-08-13 16:12:39 +09001298 * tcg2_measure_event() - common function to add event log and extend PCR
1299 *
1300 * @dev: TPM device
1301 * @pcr_index: PCR index
1302 * @event_type: type of event added
1303 * @size: event size
1304 * @event: event data
1305 *
1306 * Return: status code
1307 */
1308static efi_status_t
1309tcg2_measure_event(struct udevice *dev, u32 pcr_index, u32 event_type,
1310 u32 size, u8 event[])
1311{
1312 struct tpml_digest_values digest_list;
1313 efi_status_t ret;
1314
1315 ret = tcg2_create_digest(event, size, &digest_list);
1316 if (ret != EFI_SUCCESS)
1317 goto out;
1318
1319 ret = tcg2_pcr_extend(dev, pcr_index, &digest_list);
1320 if (ret != EFI_SUCCESS)
1321 goto out;
1322
1323 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
1324 size, event);
1325
1326out:
1327 return ret;
1328}
1329
1330/**
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001331 * efi_append_scrtm_version - Append an S-CRTM EV_S_CRTM_VERSION event on the
1332 * eventlog and extend the PCRs
1333 *
1334 * @dev: TPM device
1335 *
1336 * @Return: status code
1337 */
1338static efi_status_t efi_append_scrtm_version(struct udevice *dev)
1339{
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001340 efi_status_t ret;
1341
Pali Rohárfa9c5da2021-08-02 15:18:30 +02001342 ret = tcg2_measure_event(dev, 0, EV_S_CRTM_VERSION,
1343 strlen(version_string) + 1,
1344 (u8 *)version_string);
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001345
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001346 return ret;
1347}
1348
1349/**
Masahisa Kojimacfbcf052021-08-13 16:12:39 +09001350 * tcg2_measure_variable() - add variable event log and extend PCR
1351 *
1352 * @dev: TPM device
1353 * @pcr_index: PCR index
1354 * @event_type: type of event added
1355 * @var_name: variable name
1356 * @guid: guid
1357 * @data_size: variable data size
1358 * @data: variable data
1359 *
1360 * Return: status code
1361 */
1362static efi_status_t tcg2_measure_variable(struct udevice *dev, u32 pcr_index,
1363 u32 event_type, u16 *var_name,
1364 const efi_guid_t *guid,
1365 efi_uintn_t data_size, u8 *data)
1366{
1367 u32 event_size;
1368 efi_status_t ret;
1369 struct efi_tcg2_uefi_variable_data *event;
1370
1371 event_size = sizeof(event->variable_name) +
1372 sizeof(event->unicode_name_length) +
1373 sizeof(event->variable_data_length) +
1374 (u16_strlen(var_name) * sizeof(u16)) + data_size;
1375 event = malloc(event_size);
1376 if (!event)
1377 return EFI_OUT_OF_RESOURCES;
1378
1379 guidcpy(&event->variable_name, guid);
1380 event->unicode_name_length = u16_strlen(var_name);
1381 event->variable_data_length = data_size;
1382 memcpy(event->unicode_name, var_name,
1383 (event->unicode_name_length * sizeof(u16)));
1384 if (data) {
1385 memcpy((u16 *)event->unicode_name + event->unicode_name_length,
1386 data, data_size);
1387 }
1388 ret = tcg2_measure_event(dev, pcr_index, event_type, event_size,
1389 (u8 *)event);
1390 free(event);
1391 return ret;
1392}
1393
1394/**
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09001395 * tcg2_measure_boot_variable() - measure boot variables
1396 *
1397 * @dev: TPM device
1398 *
1399 * Return: status code
1400 */
1401static efi_status_t tcg2_measure_boot_variable(struct udevice *dev)
1402{
1403 u16 *boot_order;
1404 u16 *boot_index;
1405 u16 var_name[] = L"BootOrder";
1406 u16 boot_name[] = L"Boot####";
1407 u8 *bootvar;
1408 efi_uintn_t var_data_size;
1409 u32 count, i;
1410 efi_status_t ret;
1411
1412 boot_order = efi_get_var(var_name, &efi_global_variable_guid,
1413 &var_data_size);
1414 if (!boot_order) {
1415 ret = EFI_NOT_FOUND;
1416 goto error;
1417 }
1418
1419 ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2, var_name,
1420 &efi_global_variable_guid, var_data_size,
1421 (u8 *)boot_order);
1422 if (ret != EFI_SUCCESS)
1423 goto error;
1424
1425 count = var_data_size / sizeof(*boot_order);
1426 boot_index = boot_order;
1427 for (i = 0; i < count; i++) {
1428 efi_create_indexed_name(boot_name, sizeof(boot_name),
1429 "Boot", *boot_index++);
1430
1431 bootvar = efi_get_var(boot_name, &efi_global_variable_guid,
1432 &var_data_size);
1433
1434 if (!bootvar) {
1435 log_info("%ls not found\n", boot_name);
1436 continue;
1437 }
1438
1439 ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2,
1440 boot_name,
1441 &efi_global_variable_guid,
1442 var_data_size, bootvar);
1443 free(bootvar);
1444 if (ret != EFI_SUCCESS)
1445 goto error;
1446 }
1447
1448error:
1449 free(boot_order);
1450 return ret;
1451}
1452
1453/**
1454 * efi_tcg2_measure_efi_app_invocation() - measure efi app invocation
1455 *
1456 * Return: status code
1457 */
1458efi_status_t efi_tcg2_measure_efi_app_invocation(void)
1459{
1460 efi_status_t ret;
1461 u32 pcr_index;
1462 struct udevice *dev;
1463 u32 event = 0;
1464
1465 if (tcg2_efi_app_invoked)
1466 return EFI_SUCCESS;
1467
1468 ret = platform_get_tpm2_device(&dev);
1469 if (ret != EFI_SUCCESS)
1470 return ret;
1471
1472 ret = tcg2_measure_boot_variable(dev);
1473 if (ret != EFI_SUCCESS)
1474 goto out;
1475
1476 ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION,
1477 strlen(EFI_CALLING_EFI_APPLICATION),
1478 (u8 *)EFI_CALLING_EFI_APPLICATION);
1479 if (ret != EFI_SUCCESS)
1480 goto out;
1481
1482 for (pcr_index = 0; pcr_index <= 7; pcr_index++) {
1483 ret = tcg2_measure_event(dev, pcr_index, EV_SEPARATOR,
1484 sizeof(event), (u8 *)&event);
1485 if (ret != EFI_SUCCESS)
1486 goto out;
1487 }
1488
1489 tcg2_efi_app_invoked = true;
1490out:
1491 return ret;
1492}
1493
1494/**
1495 * efi_tcg2_measure_efi_app_exit() - measure efi app exit
1496 *
1497 * Return: status code
1498 */
1499efi_status_t efi_tcg2_measure_efi_app_exit(void)
1500{
1501 efi_status_t ret;
1502 struct udevice *dev;
1503
1504 ret = platform_get_tpm2_device(&dev);
1505 if (ret != EFI_SUCCESS)
1506 return ret;
1507
1508 ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION,
1509 strlen(EFI_RETURNING_FROM_EFI_APPLICATION),
1510 (u8 *)EFI_RETURNING_FROM_EFI_APPLICATION);
1511 return ret;
1512}
1513
1514/**
Masahisa Kojimafdff03e2021-08-13 16:12:41 +09001515 * efi_tcg2_notify_exit_boot_services() - ExitBootService callback
1516 *
1517 * @event: callback event
1518 * @context: callback context
1519 */
1520static void EFIAPI
1521efi_tcg2_notify_exit_boot_services(struct efi_event *event, void *context)
1522{
1523 efi_status_t ret;
1524 struct udevice *dev;
1525
1526 EFI_ENTRY("%p, %p", event, context);
1527
1528 ret = platform_get_tpm2_device(&dev);
1529 if (ret != EFI_SUCCESS)
1530 goto out;
1531
1532 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1533 strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION),
1534 (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION);
1535 if (ret != EFI_SUCCESS)
1536 goto out;
1537
1538 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1539 strlen(EFI_EXIT_BOOT_SERVICES_SUCCEEDED),
1540 (u8 *)EFI_EXIT_BOOT_SERVICES_SUCCEEDED);
1541
1542out:
1543 EFI_EXIT(ret);
1544}
1545
1546/**
1547 * efi_tcg2_notify_exit_boot_services_failed()
1548 * - notify ExitBootServices() is failed
1549 *
1550 * Return: status code
1551 */
1552efi_status_t efi_tcg2_notify_exit_boot_services_failed(void)
1553{
1554 struct udevice *dev;
1555 efi_status_t ret;
1556
1557 ret = platform_get_tpm2_device(&dev);
1558 if (ret != EFI_SUCCESS)
1559 goto out;
1560
1561 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1562 strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION),
1563 (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION);
1564 if (ret != EFI_SUCCESS)
1565 goto out;
1566
1567 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1568 strlen(EFI_EXIT_BOOT_SERVICES_FAILED),
1569 (u8 *)EFI_EXIT_BOOT_SERVICES_FAILED);
1570
1571out:
1572 return ret;
1573}
1574
1575/**
Masahisa Kojimacfbcf052021-08-13 16:12:39 +09001576 * tcg2_measure_secure_boot_variable() - measure secure boot variables
1577 *
1578 * @dev: TPM device
1579 *
1580 * Return: status code
1581 */
1582static efi_status_t tcg2_measure_secure_boot_variable(struct udevice *dev)
1583{
1584 u8 *data;
1585 efi_uintn_t data_size;
1586 u32 count, i;
1587 efi_status_t ret;
1588
1589 count = ARRAY_SIZE(secure_variables);
1590 for (i = 0; i < count; i++) {
1591 /*
1592 * According to the TCG2 PC Client PFP spec, "SecureBoot",
1593 * "PK", "KEK", "db" and "dbx" variables must be measured
1594 * even if they are empty.
1595 */
1596 data = efi_get_var(secure_variables[i].name,
1597 secure_variables[i].guid,
1598 &data_size);
1599
1600 ret = tcg2_measure_variable(dev, 7,
1601 EV_EFI_VARIABLE_DRIVER_CONFIG,
1602 secure_variables[i].name,
1603 secure_variables[i].guid,
1604 data_size, data);
1605 free(data);
1606 if (ret != EFI_SUCCESS)
1607 goto error;
1608 }
1609
1610 /*
1611 * TCG2 PC Client PFP spec says "dbt" and "dbr" are
1612 * measured if present and not empty.
1613 */
1614 data = efi_get_var(L"dbt",
1615 &efi_guid_image_security_database,
1616 &data_size);
1617 if (data) {
1618 ret = tcg2_measure_variable(dev, 7,
1619 EV_EFI_VARIABLE_DRIVER_CONFIG,
1620 L"dbt",
1621 &efi_guid_image_security_database,
1622 data_size, data);
1623 free(data);
1624 }
1625
1626 data = efi_get_var(L"dbr",
1627 &efi_guid_image_security_database,
1628 &data_size);
1629 if (data) {
1630 ret = tcg2_measure_variable(dev, 7,
1631 EV_EFI_VARIABLE_DRIVER_CONFIG,
1632 L"dbr",
1633 &efi_guid_image_security_database,
1634 data_size, data);
1635 free(data);
1636 }
1637
1638error:
1639 return ret;
1640}
1641
1642/**
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001643 * efi_tcg2_register() - register EFI_TCG2_PROTOCOL
1644 *
1645 * If a TPM2 device is available, the TPM TCG2 Protocol is registered
1646 *
1647 * Return: An error status is only returned if adding the protocol fails.
1648 */
1649efi_status_t efi_tcg2_register(void)
1650{
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001651 efi_status_t ret = EFI_SUCCESS;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001652 struct udevice *dev;
Masahisa Kojimafdff03e2021-08-13 16:12:41 +09001653 struct efi_event *event;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001654
1655 ret = platform_get_tpm2_device(&dev);
Ilias Apalodimas9aeb3802020-11-16 08:52:41 +02001656 if (ret != EFI_SUCCESS) {
1657 log_warning("Unable to find TPMv2 device\n");
Ilias Apalodimas97f446a2021-05-10 21:19:14 +03001658 return EFI_SUCCESS;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001659 }
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001660
1661 ret = efi_init_event_log();
1662 if (ret != EFI_SUCCESS)
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001663 goto fail;
Ilias Apalodimasc8d0fd52020-11-30 11:47:40 +02001664
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001665 ret = efi_append_scrtm_version(dev);
Ilias Apalodimas20527592021-05-12 00:03:41 +03001666 if (ret != EFI_SUCCESS) {
1667 tcg2_uninit();
Ilias Apalodimas97f446a2021-05-10 21:19:14 +03001668 goto fail;
Ilias Apalodimas20527592021-05-12 00:03:41 +03001669 }
Ilias Apalodimasf69a2012021-03-24 16:50:46 +02001670
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001671 ret = efi_add_protocol(efi_root, &efi_guid_tcg2_protocol,
1672 (void *)&efi_tcg2_protocol);
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001673 if (ret != EFI_SUCCESS) {
Ilias Apalodimas20527592021-05-12 00:03:41 +03001674 tcg2_uninit();
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001675 goto fail;
1676 }
Masahisa Kojimacfbcf052021-08-13 16:12:39 +09001677
Masahisa Kojimafdff03e2021-08-13 16:12:41 +09001678 ret = efi_create_event(EVT_SIGNAL_EXIT_BOOT_SERVICES, TPL_CALLBACK,
1679 efi_tcg2_notify_exit_boot_services, NULL,
1680 NULL, &event);
1681 if (ret != EFI_SUCCESS) {
1682 tcg2_uninit();
1683 goto fail;
1684 }
1685
Masahisa Kojimacfbcf052021-08-13 16:12:39 +09001686 ret = tcg2_measure_secure_boot_variable(dev);
1687 if (ret != EFI_SUCCESS) {
1688 tcg2_uninit();
1689 goto fail;
1690 }
1691
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001692 return ret;
Ilias Apalodimas97f446a2021-05-10 21:19:14 +03001693
Ilias Apalodimasd8cf1132021-03-25 13:31:45 +02001694fail:
Ilias Apalodimas20527592021-05-12 00:03:41 +03001695 log_err("Cannot install EFI_TCG2_PROTOCOL\n");
1696 /*
1697 * Return EFI_SUCCESS and don't stop the EFI subsystem.
1698 * That's done for 2 reasons
1699 * - If the protocol is not installed the PCRs won't be extended. So
1700 * someone later in the boot flow will notice that and take the
1701 * necessary actions.
1702 * - The TPM sandbox is limited and we won't be able to run any efi
1703 * related tests with TCG2 enabled
1704 */
1705 return EFI_SUCCESS;
Ilias Apalodimasc1c02102020-11-11 11:18:11 +02001706}