blob: b268a02976c2969f504f56472049c961cf3eb285 [file] [log] [blame]
Ilias Apalodimas590fef62020-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 Kojima70be5a62021-05-26 12:09:58 +090016#include <malloc.h>
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +020017#include <version.h>
Ilias Apalodimas590fef62020-11-11 11:18:11 +020018#include <tpm-v2.h>
Masahisa Kojima70be5a62021-05-26 12:09:58 +090019#include <u-boot/hash-checksum.h>
Ilias Apalodimas967650d2020-11-30 11:47:40 +020020#include <u-boot/sha1.h>
21#include <u-boot/sha256.h>
22#include <u-boot/sha512.h>
Ilias Apalodimas590fef62020-11-11 11:18:11 +020023#include <linux/unaligned/access_ok.h>
24#include <linux/unaligned/generic.h>
Ilias Apalodimas967650d2020-11-30 11:47:40 +020025#include <hexdump.h>
Ilias Apalodimas590fef62020-11-11 11:18:11 +020026
Ilias Apalodimas967650d2020-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 Apalodimas590fef62020-11-11 11:18:11 +020036
Ilias Apalodimas967650d2020-11-30 11:47:40 +020037static struct event_log_buffer event_log;
Masahisa Kojima8173cd42021-08-13 16:12:40 +090038static bool tcg2_efi_app_invoked;
Ilias Apalodimas590fef62020-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 Apalodimas967650d2020-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 Apalodimasc67fef62020-11-16 08:52:41 +020054 u16 hash_alg;
55 u32 hash_mask;
Ilias Apalodimas967650d2020-11-30 11:47:40 +020056 u16 hash_len;
57};
58
Ilias Apalodimas190b0a22021-05-25 14:35:31 +030059static const struct digest_info hash_algo_list[] = {
Ilias Apalodimasc67fef62020-11-16 08:52:41 +020060 {
61 TPM2_ALG_SHA1,
62 EFI_TCG2_BOOT_HASH_ALG_SHA1,
Ilias Apalodimas967650d2020-11-30 11:47:40 +020063 TPM2_SHA1_DIGEST_SIZE,
Ilias Apalodimasc67fef62020-11-16 08:52:41 +020064 },
65 {
66 TPM2_ALG_SHA256,
67 EFI_TCG2_BOOT_HASH_ALG_SHA256,
Ilias Apalodimas967650d2020-11-30 11:47:40 +020068 TPM2_SHA256_DIGEST_SIZE,
Ilias Apalodimasc67fef62020-11-16 08:52:41 +020069 },
70 {
71 TPM2_ALG_SHA384,
72 EFI_TCG2_BOOT_HASH_ALG_SHA384,
Ilias Apalodimas967650d2020-11-30 11:47:40 +020073 TPM2_SHA384_DIGEST_SIZE,
Ilias Apalodimasc67fef62020-11-16 08:52:41 +020074 },
75 {
76 TPM2_ALG_SHA512,
77 EFI_TCG2_BOOT_HASH_ALG_SHA512,
Ilias Apalodimas967650d2020-11-30 11:47:40 +020078 TPM2_SHA512_DIGEST_SIZE,
Ilias Apalodimasc67fef62020-11-16 08:52:41 +020079 },
80};
81
Masahisa Kojima1d2a6562021-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 Apalodimasc67fef62020-11-16 08:52:41 +020095#define MAX_HASH_COUNT ARRAY_SIZE(hash_algo_list)
Ilias Apalodimas967650d2020-11-30 11:47:40 +020096
Ilias Apalodimasc67fef62020-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 Apalodimas190b0a22021-05-25 14:35:31 +0300106 size_t i;
Ilias Apalodimasc67fef62020-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 Apalodimas967650d2020-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 Apalodimas190b0a22021-05-25 14:35:31 +0300125 size_t i;
Ilias Apalodimas967650d2020-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 Apalodimas190b0a22021-05-25 14:35:31 +0300138 size_t i;
Ilias Apalodimas967650d2020-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 Apalodimas190b0a22021-05-25 14:35:31 +0300164 size_t i;
Ilias Apalodimas967650d2020-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 Apalodimas4390e762021-03-30 00:42:36 +0300195 void *log = (void *)((uintptr_t)event_log.buffer + event_log.pos);
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200196 size_t pos;
Ilias Apalodimas190b0a22021-05-25 14:35:31 +0300197 size_t i;
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200198 u32 event_size;
199
200 if (event_log.get_event_called)
Ilias Apalodimas4390e762021-03-30 00:42:36 +0300201 log = (void *)((uintptr_t)event_log.final_buffer +
202 event_log.final_pos);
Ilias Apalodimas967650d2020-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 Apalodimas4390e762021-03-30 00:42:36 +0300217 put_unaligned_le32(event_type, (void *)((uintptr_t)log + pos));
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200218 pos = offsetof(struct tcg_pcr_event2, digests); /* count */
Ilias Apalodimas4390e762021-03-30 00:42:36 +0300219 put_unaligned_le32(digest_list->count, (void *)((uintptr_t)log + pos));
Ilias Apalodimas967650d2020-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 Apalodimas4390e762021-03-30 00:42:36 +0300226 put_unaligned_le16(hash_alg, (void *)((uintptr_t)log + pos));
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200227 pos += offsetof(struct tpmt_ha, digest);
Ilias Apalodimas4390e762021-03-30 00:42:36 +0300228 memcpy((void *)((uintptr_t)log + pos), digest, alg_to_len(hash_alg));
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200229 pos += alg_to_len(hash_alg);
230 }
231
Ilias Apalodimas4390e762021-03-30 00:42:36 +0300232 put_unaligned_le32(size, (void *)((uintptr_t)log + pos));
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200233 pos += sizeof(u32); /* tcg_pcr_event2 event_size*/
Ilias Apalodimas4390e762021-03-30 00:42:36 +0300234 memcpy((void *)((uintptr_t)log + pos), event, size);
Ilias Apalodimas967650d2020-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 Apalodimas590fef62020-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 Apalodimasc67fef62020-11-16 08:52:41 +0200270 for_each_tpm_device(*dev) {
271 /* Only support TPMv2 devices */
Ilias Apalodimas590fef62020-11-11 11:18:11 +0200272 if (tpm_get_version(*dev) == TPM_V2)
273 return EFI_SUCCESS;
274 }
Ilias Apalodimasc67fef62020-11-16 08:52:41 +0200275
Ilias Apalodimas590fef62020-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 Apalodimas967650d2020-11-30 11:47:40 +0200388static bool is_active_pcr(struct tpms_pcr_selection *selection)
Ilias Apalodimas590fef62020-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 Apalodimas190b0a22021-05-25 14:35:31 +0300419 size_t i;
420 int tpm_ret;
Ilias Apalodimas590fef62020-11-11 11:18:11 +0200421
Ilias Apalodimas09402b12021-05-26 21:01:00 +0300422 *supported_pcr = 0;
423 *active_pcr = 0;
424 *pcr_banks = 0;
Ilias Apalodimas590fef62020-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 Apalodimasc67fef62020-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 Apalodimas590fef62020-11-11 11:18:11 +0200478 if (is_active_pcr(&pcrs.selection[i]))
Ilias Apalodimasc67fef62020-11-16 08:52:41 +0200479 *active_pcr |= hash_mask;
480 } else {
481 EFI_PRINT("Unknown algorithm %x\n", pcrs.selection[i].hash);
Ilias Apalodimas590fef62020-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 Apalodimas967650d2020-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 Apalodimas09402b12021-05-26 21:01:00 +0300503 u32 active = 0, supported = 0, pcr_banks = 0;
Ilias Apalodimas967650d2020-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 Kojimaeb74a902021-04-14 11:55:49 +0900538 u8 final[TPM2_SHA512_DIGEST_SIZE];
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200539 efi_status_t ret;
540 u32 active;
Ilias Apalodimas190b0a22021-05-25 14:35:31 +0300541 size_t i;
Ilias Apalodimas967650d2020-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 Apalodimas967650d2020-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 Apalodimas967650d2020-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 Apalodimas967650d2020-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 Apalodimas967650d2020-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 Apalodimas754b3a42021-04-22 14:32:14 +0300578 digest_list->count++;
Ilias Apalodimas967650d2020-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 Apalodimasc67fef62020-11-16 08:52:41 +0200587 * efi_tcg2_get_capability() - protocol capability information and state information
Ilias Apalodimas590fef62020-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 Apalodimasc67fef62020-11-16 08:52:41 +0200596efi_tcg2_get_capability(struct efi_tcg2_protocol *this,
597 struct efi_tcg2_boot_service_capability *capability)
Ilias Apalodimas590fef62020-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
610 if (capability->size < boot_service_capability_min) {
611 capability->size = boot_service_capability_min;
612 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 Apalodimasc67fef62020-11-16 08:52:41 +0200685 * efi_tcg2_get_eventlog() - retrieve the the address of an event log and its
686 * last entry
Ilias Apalodimas590fef62020-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 Apalodimasc67fef62020-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 Apalodimas590fef62020-11-11 11:18:11 +0200704{
Ilias Apalodimas967650d2020-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 Kojima7c5fccd2021-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 Apalodimas967650d2020-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 Apalodimas590fef62020-11-11 11:18:11 +0200739}
740
741/**
Masahisa Kojima70be5a62021-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
868 ret = EFI_CALL(efi_search_protocol(&handle->header,
869 &efi_guid_loaded_image_device_path,
870 &handler));
871 if (ret != EFI_SUCCESS)
872 return ret;
873
874 device_path = EFI_CALL(handler->protocol_interface);
875 device_path_length = efi_dp_size(device_path);
876 if (device_path_length > 0) {
877 /* add end node size */
878 device_path_length += sizeof(struct efi_device_path);
879 }
880 event_size = sizeof(struct uefi_image_load_event) + device_path_length;
881 image_load_event = (struct uefi_image_load_event *)malloc(event_size);
882 if (!image_load_event)
883 return EFI_OUT_OF_RESOURCES;
884
885 image_load_event->image_location_in_memory = (uintptr_t)efi;
886 image_load_event->image_length_in_memory = efi_size;
887 image_load_event->length_of_device_path = device_path_length;
888
889 dos = (IMAGE_DOS_HEADER *)efi;
890 nt = (IMAGE_NT_HEADERS32 *)(efi + dos->e_lfanew);
891 if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) {
892 IMAGE_NT_HEADERS64 *nt64 = (IMAGE_NT_HEADERS64 *)nt;
893
894 image_load_event->image_link_time_address =
895 nt64->OptionalHeader.ImageBase;
896 } else if (nt->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) {
897 image_load_event->image_link_time_address =
898 nt->OptionalHeader.ImageBase;
899 } else {
900 ret = EFI_INVALID_PARAMETER;
901 goto out;
902 }
903
904 if (device_path_length > 0) {
905 memcpy(image_load_event->device_path, device_path,
906 device_path_length);
907 }
908
909 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
910 event_size, (u8 *)image_load_event);
911
912out:
913 free(image_load_event);
914
915 return ret;
916}
917
918/**
Ilias Apalodimasc67fef62020-11-16 08:52:41 +0200919 * efi_tcg2_hash_log_extend_event() - extend and optionally log events
Ilias Apalodimas590fef62020-11-11 11:18:11 +0200920 *
921 * @this: TCG2 protocol instance
922 * @flags: bitmap providing additional information on the
923 * operation
924 * @data_to_hash: physical address of the start of the data buffer
925 * to be hashed
926 * @data_to_hash_len: the length in bytes of the buffer referenced by
927 * data_to_hash
928 * @efi_tcg_event: pointer to data buffer containing information
929 * about the event
930 *
931 * Return: status code
932 */
933static efi_status_t EFIAPI
Ilias Apalodimasc67fef62020-11-16 08:52:41 +0200934efi_tcg2_hash_log_extend_event(struct efi_tcg2_protocol *this, u64 flags,
935 u64 data_to_hash, u64 data_to_hash_len,
936 struct efi_tcg2_event *efi_tcg_event)
Ilias Apalodimas590fef62020-11-11 11:18:11 +0200937{
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200938 struct udevice *dev;
939 efi_status_t ret;
940 u32 event_type, pcr_index, event_size;
941 struct tpml_digest_values digest_list;
942
943 EFI_ENTRY("%p, %llu, %llu, %llu, %p", this, flags, data_to_hash,
944 data_to_hash_len, efi_tcg_event);
945
946 if (!this || !data_to_hash || !efi_tcg_event) {
947 ret = EFI_INVALID_PARAMETER;
948 goto out;
949 }
950
951 ret = platform_get_tpm2_device(&dev);
952 if (ret != EFI_SUCCESS)
953 goto out;
954
955 if (efi_tcg_event->size < efi_tcg_event->header.header_size +
956 sizeof(u32)) {
957 ret = EFI_INVALID_PARAMETER;
958 goto out;
959 }
960
Masahisa Kojimab8074912021-09-03 10:55:52 +0900961 if (efi_tcg_event->header.pcr_index > EFI_TCG2_MAX_PCR_INDEX) {
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200962 ret = EFI_INVALID_PARAMETER;
963 goto out;
964 }
965
966 /*
967 * if PE_COFF_IMAGE is set we need to make sure the image is not
968 * corrupted, verify it and hash the PE/COFF image in accordance with
Masahisa Kojima70be5a62021-05-26 12:09:58 +0900969 * the procedure specified in "Calculating the PE Image Hash"
970 * section of the "Windows Authenticode Portable Executable Signature
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200971 * Format"
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200972 */
973 if (flags & PE_COFF_IMAGE) {
Masahisa Kojima70be5a62021-05-26 12:09:58 +0900974 IMAGE_NT_HEADERS32 *nt;
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200975
Masahisa Kojima70be5a62021-05-26 12:09:58 +0900976 ret = efi_check_pe((void *)(uintptr_t)data_to_hash,
977 data_to_hash_len, (void **)&nt);
978 if (ret != EFI_SUCCESS) {
979 log_err("Not a valid PE-COFF file\n");
Masahisa Kojima7c5fccd2021-09-03 10:55:50 +0900980 ret = EFI_UNSUPPORTED;
Masahisa Kojima70be5a62021-05-26 12:09:58 +0900981 goto out;
982 }
983 ret = tcg2_hash_pe_image((void *)(uintptr_t)data_to_hash,
984 data_to_hash_len, &digest_list);
985 } else {
986 ret = tcg2_create_digest((u8 *)(uintptr_t)data_to_hash,
987 data_to_hash_len, &digest_list);
988 }
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200989
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200990 if (ret != EFI_SUCCESS)
991 goto out;
992
Masahisa Kojima70be5a62021-05-26 12:09:58 +0900993 pcr_index = efi_tcg_event->header.pcr_index;
994 event_type = efi_tcg_event->header.event_type;
995
Ilias Apalodimas967650d2020-11-30 11:47:40 +0200996 ret = tcg2_pcr_extend(dev, pcr_index, &digest_list);
997 if (ret != EFI_SUCCESS)
998 goto out;
999
1000 if (flags & EFI_TCG2_EXTEND_ONLY) {
1001 if (event_log.truncated)
1002 ret = EFI_VOLUME_FULL;
1003 goto out;
1004 }
1005
1006 /*
1007 * The efi_tcg_event size includes the size component and the
1008 * headersize
1009 */
1010 event_size = efi_tcg_event->size - sizeof(efi_tcg_event->size) -
1011 efi_tcg_event->header.header_size;
1012 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
1013 event_size, efi_tcg_event->event);
1014out:
1015 return EFI_EXIT(ret);
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001016}
1017
1018/**
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001019 * efi_tcg2_submit_command() - Send command to the TPM
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001020 *
1021 * @this: TCG2 protocol instance
1022 * @input_param_block_size: size of the TPM input parameter block
1023 * @input_param_block: pointer to the TPM input parameter block
1024 * @output_param_block_size: size of the TPM output parameter block
1025 * @output_param_block: pointer to the TPM output parameter block
1026 *
1027 * Return: status code
1028 */
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001029static efi_status_t EFIAPI
Ilias Apalodimas190b0a22021-05-25 14:35:31 +03001030efi_tcg2_submit_command(__maybe_unused struct efi_tcg2_protocol *this,
1031 u32 __maybe_unused input_param_block_size,
1032 u8 __maybe_unused *input_param_block,
1033 u32 __maybe_unused output_param_block_size,
1034 u8 __maybe_unused *output_param_block)
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001035{
1036 return EFI_UNSUPPORTED;
1037}
1038
1039/**
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001040 * efi_tcg2_get_active_pcr_banks() - returns the currently active PCR banks
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001041 *
1042 * @this: TCG2 protocol instance
1043 * @active_pcr_banks: pointer for receiving the bitmap of currently
1044 * active PCR banks
1045 *
1046 * Return: status code
1047 */
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001048static efi_status_t EFIAPI
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001049efi_tcg2_get_active_pcr_banks(struct efi_tcg2_protocol *this,
1050 u32 *active_pcr_banks)
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001051{
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001052 efi_status_t ret;
1053
Masahisa Kojima7c5fccd2021-09-03 10:55:50 +09001054 if (!this || !active_pcr_banks) {
1055 ret = EFI_INVALID_PARAMETER;
1056 goto out;
1057 }
1058
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001059 EFI_ENTRY("%p, %p", this, active_pcr_banks);
1060 ret = __get_active_pcr_banks(active_pcr_banks);
1061
Masahisa Kojima7c5fccd2021-09-03 10:55:50 +09001062out:
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001063 return EFI_EXIT(ret);
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001064}
1065
1066/**
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001067 * efi_tcg2_set_active_pcr_banks() - sets the currently active PCR banks
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001068 *
1069 * @this: TCG2 protocol instance
1070 * @active_pcr_banks: bitmap of the requested active PCR banks
1071 *
1072 * Return: status code
1073 */
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001074static efi_status_t EFIAPI
Ilias Apalodimas190b0a22021-05-25 14:35:31 +03001075efi_tcg2_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this,
1076 u32 __maybe_unused active_pcr_banks)
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001077{
1078 return EFI_UNSUPPORTED;
1079}
1080
1081/**
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001082 * efi_tcg2_get_result_of_set_active_pcr_banks() - retrieve result for previous
1083 * set_active_pcr_banks()
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001084 *
1085 * @this: TCG2 protocol instance
1086 * @operation_present: non-zero value to indicate a
1087 * set_active_pcr_banks operation was
1088 * invoked during last boot
1089 * @response: result value could be returned
1090 *
1091 * Return: status code
1092 */
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001093static efi_status_t EFIAPI
Ilias Apalodimas190b0a22021-05-25 14:35:31 +03001094efi_tcg2_get_result_of_set_active_pcr_banks(__maybe_unused struct efi_tcg2_protocol *this,
1095 u32 __maybe_unused *operation_present,
1096 u32 __maybe_unused *response)
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001097{
1098 return EFI_UNSUPPORTED;
1099}
1100
1101static const struct efi_tcg2_protocol efi_tcg2_protocol = {
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001102 .get_capability = efi_tcg2_get_capability,
1103 .get_eventlog = efi_tcg2_get_eventlog,
1104 .hash_log_extend_event = efi_tcg2_hash_log_extend_event,
1105 .submit_command = efi_tcg2_submit_command,
1106 .get_active_pcr_banks = efi_tcg2_get_active_pcr_banks,
1107 .set_active_pcr_banks = efi_tcg2_set_active_pcr_banks,
1108 .get_result_of_set_active_pcr_banks = efi_tcg2_get_result_of_set_active_pcr_banks,
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001109};
1110
1111/**
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001112 * create_specid_event() - Create the first event in the eventlog
1113 *
1114 * @dev: tpm device
1115 * @event_header: Pointer to the final event header
1116 * @event_size: final spec event size
1117 *
1118 * Return: status code
1119 */
1120static efi_status_t create_specid_event(struct udevice *dev, void *buffer,
1121 size_t *event_size)
1122{
1123 struct tcg_efi_spec_id_event *spec_event;
1124 size_t spec_event_size;
1125 efi_status_t ret = EFI_DEVICE_ERROR;
Ilias Apalodimas09402b12021-05-26 21:01:00 +03001126 u32 active = 0, supported = 0;
Ilias Apalodimas190b0a22021-05-25 14:35:31 +03001127 int err;
1128 size_t i;
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001129
1130 /*
1131 * Create Spec event. This needs to be the first event in the log
1132 * according to the TCG EFI protocol spec
1133 */
1134
1135 /* Setup specID event data */
1136 spec_event = (struct tcg_efi_spec_id_event *)buffer;
1137 memcpy(spec_event->signature, TCG_EFI_SPEC_ID_EVENT_SIGNATURE_03,
1138 sizeof(spec_event->signature));
1139 put_unaligned_le32(0, &spec_event->platform_class); /* type client */
1140 spec_event->spec_version_minor =
1141 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MINOR_TPM2;
1142 spec_event->spec_version_major =
1143 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_MAJOR_TPM2;
1144 spec_event->spec_errata =
1145 TCG_EFI_SPEC_ID_EVENT_SPEC_VERSION_ERRATA_TPM2;
1146 spec_event->uintn_size = sizeof(efi_uintn_t) / sizeof(u32);
1147
1148 err = tpm2_get_pcr_info(dev, &supported, &active,
1149 &spec_event->number_of_algorithms);
1150 if (err)
1151 goto out;
1152 if (spec_event->number_of_algorithms > MAX_HASH_COUNT ||
1153 spec_event->number_of_algorithms < 1)
1154 goto out;
1155
1156 for (i = 0; i < spec_event->number_of_algorithms; i++) {
1157 u16 hash_alg = hash_algo_list[i].hash_alg;
1158 u16 hash_len = hash_algo_list[i].hash_len;
1159
1160 if (active && alg_to_mask(hash_alg)) {
1161 put_unaligned_le16(hash_alg,
1162 &spec_event->digest_sizes[i].algorithm_id);
1163 put_unaligned_le16(hash_len,
1164 &spec_event->digest_sizes[i].digest_size);
1165 }
1166 }
1167 /*
1168 * the size of the spec event and placement of vendor_info_size
1169 * depends on supported algoriths
1170 */
1171 spec_event_size =
1172 offsetof(struct tcg_efi_spec_id_event, digest_sizes) +
1173 spec_event->number_of_algorithms * sizeof(spec_event->digest_sizes[0]);
1174 /* no vendor info for us */
1175 memset(buffer + spec_event_size, 0,
1176 sizeof(spec_event->vendor_info_size));
1177 spec_event_size += sizeof(spec_event->vendor_info_size);
1178 *event_size = spec_event_size;
1179
1180 return EFI_SUCCESS;
1181
1182out:
1183 return ret;
1184}
1185
1186/**
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001187 * tcg2_uninit - remove the final event table and free efi memory on failures
1188 */
1189void tcg2_uninit(void)
1190{
1191 efi_status_t ret;
1192
1193 ret = efi_install_configuration_table(&efi_guid_final_events, NULL);
1194 if (ret != EFI_SUCCESS)
1195 log_err("Failed to delete final events config table\n");
1196
1197 efi_free_pool(event_log.buffer);
1198 event_log.buffer = NULL;
1199 efi_free_pool(event_log.final_buffer);
1200 event_log.final_buffer = NULL;
1201}
1202
1203/**
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001204 * create_final_event() - Create the final event and install the config
1205 * defined by the TCG EFI spec
1206 */
1207static efi_status_t create_final_event(void)
1208{
1209 struct efi_tcg2_final_events_table *final_event;
1210 efi_status_t ret;
1211
1212 /*
1213 * All events generated after the invocation of
1214 * EFI_TCG2_GET_EVENT_LOGS need to be stored in an instance of an
1215 * EFI_CONFIGURATION_TABLE
1216 */
1217 ret = efi_allocate_pool(EFI_ACPI_MEMORY_NVS, TPM2_EVENT_LOG_SIZE,
1218 &event_log.final_buffer);
1219 if (ret != EFI_SUCCESS)
1220 goto out;
1221
1222 memset(event_log.final_buffer, 0xff, TPM2_EVENT_LOG_SIZE);
1223 final_event = event_log.final_buffer;
1224 final_event->number_of_events = 0;
1225 final_event->version = EFI_TCG2_FINAL_EVENTS_TABLE_VERSION;
1226 event_log.final_pos = sizeof(*final_event);
1227 ret = efi_install_configuration_table(&efi_guid_final_events,
1228 final_event);
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001229 if (ret != EFI_SUCCESS) {
1230 efi_free_pool(event_log.final_buffer);
1231 event_log.final_buffer = NULL;
1232 }
1233
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001234out:
1235 return ret;
1236}
1237
1238/**
1239 * efi_init_event_log() - initialize an eventlog
1240 */
1241static efi_status_t efi_init_event_log(void)
1242{
1243 /*
1244 * vendor_info_size is currently set to 0, we need to change the length
1245 * and allocate the flexible array member if this changes
1246 */
1247 struct tcg_pcr_event *event_header = NULL;
1248 struct udevice *dev;
1249 size_t spec_event_size;
1250 efi_status_t ret;
1251
1252 ret = platform_get_tpm2_device(&dev);
1253 if (ret != EFI_SUCCESS)
1254 goto out;
1255
1256 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, TPM2_EVENT_LOG_SIZE,
1257 (void **)&event_log.buffer);
1258 if (ret != EFI_SUCCESS)
1259 goto out;
1260
1261 /*
1262 * initialize log area as 0xff so the OS can easily figure out the
1263 * last log entry
1264 */
1265 memset(event_log.buffer, 0xff, TPM2_EVENT_LOG_SIZE);
1266 event_log.pos = 0;
1267 event_log.last_event_size = 0;
1268 event_log.get_event_called = false;
1269 event_log.truncated = false;
1270
1271 /*
1272 * The log header is defined to be in SHA1 event log entry format.
1273 * Setup event header
1274 */
1275 event_header = (struct tcg_pcr_event *)event_log.buffer;
1276 put_unaligned_le32(0, &event_header->pcr_index);
1277 put_unaligned_le32(EV_NO_ACTION, &event_header->event_type);
1278 memset(&event_header->digest, 0, sizeof(event_header->digest));
Ilias Apalodimas4390e762021-03-30 00:42:36 +03001279 ret = create_specid_event(dev, (void *)((uintptr_t)event_log.buffer + sizeof(*event_header)),
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001280 &spec_event_size);
1281 if (ret != EFI_SUCCESS)
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001282 goto free_pool;
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001283 put_unaligned_le32(spec_event_size, &event_header->event_size);
1284 event_log.pos = spec_event_size + sizeof(*event_header);
1285 event_log.last_event_size = event_log.pos;
1286
1287 ret = create_final_event();
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001288 if (ret != EFI_SUCCESS)
1289 goto free_pool;
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001290
1291out:
1292 return ret;
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001293
1294free_pool:
1295 efi_free_pool(event_log.buffer);
1296 event_log.buffer = NULL;
1297 return ret;
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001298}
1299
1300/**
Masahisa Kojima1d2a6562021-08-13 16:12:39 +09001301 * tcg2_measure_event() - common function to add event log and extend PCR
1302 *
1303 * @dev: TPM device
1304 * @pcr_index: PCR index
1305 * @event_type: type of event added
1306 * @size: event size
1307 * @event: event data
1308 *
1309 * Return: status code
1310 */
1311static efi_status_t
1312tcg2_measure_event(struct udevice *dev, u32 pcr_index, u32 event_type,
1313 u32 size, u8 event[])
1314{
1315 struct tpml_digest_values digest_list;
1316 efi_status_t ret;
1317
1318 ret = tcg2_create_digest(event, size, &digest_list);
1319 if (ret != EFI_SUCCESS)
1320 goto out;
1321
1322 ret = tcg2_pcr_extend(dev, pcr_index, &digest_list);
1323 if (ret != EFI_SUCCESS)
1324 goto out;
1325
1326 ret = tcg2_agile_log_append(pcr_index, event_type, &digest_list,
1327 size, event);
1328
1329out:
1330 return ret;
1331}
1332
1333/**
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001334 * efi_append_scrtm_version - Append an S-CRTM EV_S_CRTM_VERSION event on the
1335 * eventlog and extend the PCRs
1336 *
1337 * @dev: TPM device
1338 *
1339 * @Return: status code
1340 */
1341static efi_status_t efi_append_scrtm_version(struct udevice *dev)
1342{
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001343 u8 ver[] = U_BOOT_VERSION_STRING;
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001344 efi_status_t ret;
1345
Masahisa Kojima55f3ed42021-08-13 16:12:42 +09001346 ret = tcg2_measure_event(dev, 0, EV_S_CRTM_VERSION, sizeof(ver), ver);
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001347
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001348 return ret;
1349}
1350
1351/**
Masahisa Kojima1d2a6562021-08-13 16:12:39 +09001352 * tcg2_measure_variable() - add variable event log and extend PCR
1353 *
1354 * @dev: TPM device
1355 * @pcr_index: PCR index
1356 * @event_type: type of event added
1357 * @var_name: variable name
1358 * @guid: guid
1359 * @data_size: variable data size
1360 * @data: variable data
1361 *
1362 * Return: status code
1363 */
1364static efi_status_t tcg2_measure_variable(struct udevice *dev, u32 pcr_index,
1365 u32 event_type, u16 *var_name,
1366 const efi_guid_t *guid,
1367 efi_uintn_t data_size, u8 *data)
1368{
1369 u32 event_size;
1370 efi_status_t ret;
1371 struct efi_tcg2_uefi_variable_data *event;
1372
1373 event_size = sizeof(event->variable_name) +
1374 sizeof(event->unicode_name_length) +
1375 sizeof(event->variable_data_length) +
1376 (u16_strlen(var_name) * sizeof(u16)) + data_size;
1377 event = malloc(event_size);
1378 if (!event)
1379 return EFI_OUT_OF_RESOURCES;
1380
1381 guidcpy(&event->variable_name, guid);
1382 event->unicode_name_length = u16_strlen(var_name);
1383 event->variable_data_length = data_size;
1384 memcpy(event->unicode_name, var_name,
1385 (event->unicode_name_length * sizeof(u16)));
1386 if (data) {
1387 memcpy((u16 *)event->unicode_name + event->unicode_name_length,
1388 data, data_size);
1389 }
1390 ret = tcg2_measure_event(dev, pcr_index, event_type, event_size,
1391 (u8 *)event);
1392 free(event);
1393 return ret;
1394}
1395
1396/**
Masahisa Kojima8173cd42021-08-13 16:12:40 +09001397 * tcg2_measure_boot_variable() - measure boot variables
1398 *
1399 * @dev: TPM device
1400 *
1401 * Return: status code
1402 */
1403static efi_status_t tcg2_measure_boot_variable(struct udevice *dev)
1404{
1405 u16 *boot_order;
1406 u16 *boot_index;
1407 u16 var_name[] = L"BootOrder";
1408 u16 boot_name[] = L"Boot####";
1409 u8 *bootvar;
1410 efi_uintn_t var_data_size;
1411 u32 count, i;
1412 efi_status_t ret;
1413
1414 boot_order = efi_get_var(var_name, &efi_global_variable_guid,
1415 &var_data_size);
1416 if (!boot_order) {
1417 ret = EFI_NOT_FOUND;
1418 goto error;
1419 }
1420
1421 ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2, var_name,
1422 &efi_global_variable_guid, var_data_size,
1423 (u8 *)boot_order);
1424 if (ret != EFI_SUCCESS)
1425 goto error;
1426
1427 count = var_data_size / sizeof(*boot_order);
1428 boot_index = boot_order;
1429 for (i = 0; i < count; i++) {
1430 efi_create_indexed_name(boot_name, sizeof(boot_name),
1431 "Boot", *boot_index++);
1432
1433 bootvar = efi_get_var(boot_name, &efi_global_variable_guid,
1434 &var_data_size);
1435
1436 if (!bootvar) {
1437 log_info("%ls not found\n", boot_name);
1438 continue;
1439 }
1440
1441 ret = tcg2_measure_variable(dev, 1, EV_EFI_VARIABLE_BOOT2,
1442 boot_name,
1443 &efi_global_variable_guid,
1444 var_data_size, bootvar);
1445 free(bootvar);
1446 if (ret != EFI_SUCCESS)
1447 goto error;
1448 }
1449
1450error:
1451 free(boot_order);
1452 return ret;
1453}
1454
1455/**
1456 * efi_tcg2_measure_efi_app_invocation() - measure efi app invocation
1457 *
1458 * Return: status code
1459 */
1460efi_status_t efi_tcg2_measure_efi_app_invocation(void)
1461{
1462 efi_status_t ret;
1463 u32 pcr_index;
1464 struct udevice *dev;
1465 u32 event = 0;
1466
1467 if (tcg2_efi_app_invoked)
1468 return EFI_SUCCESS;
1469
1470 ret = platform_get_tpm2_device(&dev);
1471 if (ret != EFI_SUCCESS)
1472 return ret;
1473
1474 ret = tcg2_measure_boot_variable(dev);
1475 if (ret != EFI_SUCCESS)
1476 goto out;
1477
1478 ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION,
1479 strlen(EFI_CALLING_EFI_APPLICATION),
1480 (u8 *)EFI_CALLING_EFI_APPLICATION);
1481 if (ret != EFI_SUCCESS)
1482 goto out;
1483
1484 for (pcr_index = 0; pcr_index <= 7; pcr_index++) {
1485 ret = tcg2_measure_event(dev, pcr_index, EV_SEPARATOR,
1486 sizeof(event), (u8 *)&event);
1487 if (ret != EFI_SUCCESS)
1488 goto out;
1489 }
1490
1491 tcg2_efi_app_invoked = true;
1492out:
1493 return ret;
1494}
1495
1496/**
1497 * efi_tcg2_measure_efi_app_exit() - measure efi app exit
1498 *
1499 * Return: status code
1500 */
1501efi_status_t efi_tcg2_measure_efi_app_exit(void)
1502{
1503 efi_status_t ret;
1504 struct udevice *dev;
1505
1506 ret = platform_get_tpm2_device(&dev);
1507 if (ret != EFI_SUCCESS)
1508 return ret;
1509
1510 ret = tcg2_measure_event(dev, 4, EV_EFI_ACTION,
1511 strlen(EFI_RETURNING_FROM_EFI_APPLICATION),
1512 (u8 *)EFI_RETURNING_FROM_EFI_APPLICATION);
1513 return ret;
1514}
1515
1516/**
Masahisa Kojima1ac19bb2021-08-13 16:12:41 +09001517 * efi_tcg2_notify_exit_boot_services() - ExitBootService callback
1518 *
1519 * @event: callback event
1520 * @context: callback context
1521 */
1522static void EFIAPI
1523efi_tcg2_notify_exit_boot_services(struct efi_event *event, void *context)
1524{
1525 efi_status_t ret;
1526 struct udevice *dev;
1527
1528 EFI_ENTRY("%p, %p", event, context);
1529
1530 ret = platform_get_tpm2_device(&dev);
1531 if (ret != EFI_SUCCESS)
1532 goto out;
1533
1534 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1535 strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION),
1536 (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION);
1537 if (ret != EFI_SUCCESS)
1538 goto out;
1539
1540 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1541 strlen(EFI_EXIT_BOOT_SERVICES_SUCCEEDED),
1542 (u8 *)EFI_EXIT_BOOT_SERVICES_SUCCEEDED);
1543
1544out:
1545 EFI_EXIT(ret);
1546}
1547
1548/**
1549 * efi_tcg2_notify_exit_boot_services_failed()
1550 * - notify ExitBootServices() is failed
1551 *
1552 * Return: status code
1553 */
1554efi_status_t efi_tcg2_notify_exit_boot_services_failed(void)
1555{
1556 struct udevice *dev;
1557 efi_status_t ret;
1558
1559 ret = platform_get_tpm2_device(&dev);
1560 if (ret != EFI_SUCCESS)
1561 goto out;
1562
1563 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1564 strlen(EFI_EXIT_BOOT_SERVICES_INVOCATION),
1565 (u8 *)EFI_EXIT_BOOT_SERVICES_INVOCATION);
1566 if (ret != EFI_SUCCESS)
1567 goto out;
1568
1569 ret = tcg2_measure_event(dev, 5, EV_EFI_ACTION,
1570 strlen(EFI_EXIT_BOOT_SERVICES_FAILED),
1571 (u8 *)EFI_EXIT_BOOT_SERVICES_FAILED);
1572
1573out:
1574 return ret;
1575}
1576
1577/**
Masahisa Kojima1d2a6562021-08-13 16:12:39 +09001578 * tcg2_measure_secure_boot_variable() - measure secure boot variables
1579 *
1580 * @dev: TPM device
1581 *
1582 * Return: status code
1583 */
1584static efi_status_t tcg2_measure_secure_boot_variable(struct udevice *dev)
1585{
1586 u8 *data;
1587 efi_uintn_t data_size;
1588 u32 count, i;
1589 efi_status_t ret;
1590
1591 count = ARRAY_SIZE(secure_variables);
1592 for (i = 0; i < count; i++) {
1593 /*
1594 * According to the TCG2 PC Client PFP spec, "SecureBoot",
1595 * "PK", "KEK", "db" and "dbx" variables must be measured
1596 * even if they are empty.
1597 */
1598 data = efi_get_var(secure_variables[i].name,
1599 secure_variables[i].guid,
1600 &data_size);
1601
1602 ret = tcg2_measure_variable(dev, 7,
1603 EV_EFI_VARIABLE_DRIVER_CONFIG,
1604 secure_variables[i].name,
1605 secure_variables[i].guid,
1606 data_size, data);
1607 free(data);
1608 if (ret != EFI_SUCCESS)
1609 goto error;
1610 }
1611
1612 /*
1613 * TCG2 PC Client PFP spec says "dbt" and "dbr" are
1614 * measured if present and not empty.
1615 */
1616 data = efi_get_var(L"dbt",
1617 &efi_guid_image_security_database,
1618 &data_size);
1619 if (data) {
1620 ret = tcg2_measure_variable(dev, 7,
1621 EV_EFI_VARIABLE_DRIVER_CONFIG,
1622 L"dbt",
1623 &efi_guid_image_security_database,
1624 data_size, data);
1625 free(data);
1626 }
1627
1628 data = efi_get_var(L"dbr",
1629 &efi_guid_image_security_database,
1630 &data_size);
1631 if (data) {
1632 ret = tcg2_measure_variable(dev, 7,
1633 EV_EFI_VARIABLE_DRIVER_CONFIG,
1634 L"dbr",
1635 &efi_guid_image_security_database,
1636 data_size, data);
1637 free(data);
1638 }
1639
1640error:
1641 return ret;
1642}
1643
1644/**
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001645 * efi_tcg2_register() - register EFI_TCG2_PROTOCOL
1646 *
1647 * If a TPM2 device is available, the TPM TCG2 Protocol is registered
1648 *
1649 * Return: An error status is only returned if adding the protocol fails.
1650 */
1651efi_status_t efi_tcg2_register(void)
1652{
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001653 efi_status_t ret = EFI_SUCCESS;
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001654 struct udevice *dev;
Masahisa Kojima1ac19bb2021-08-13 16:12:41 +09001655 struct efi_event *event;
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001656
1657 ret = platform_get_tpm2_device(&dev);
Ilias Apalodimasc67fef62020-11-16 08:52:41 +02001658 if (ret != EFI_SUCCESS) {
1659 log_warning("Unable to find TPMv2 device\n");
Ilias Apalodimasfa5217d2021-05-10 21:19:14 +03001660 return EFI_SUCCESS;
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001661 }
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001662
1663 ret = efi_init_event_log();
1664 if (ret != EFI_SUCCESS)
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001665 goto fail;
Ilias Apalodimas967650d2020-11-30 11:47:40 +02001666
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001667 ret = efi_append_scrtm_version(dev);
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001668 if (ret != EFI_SUCCESS) {
1669 tcg2_uninit();
Ilias Apalodimasfa5217d2021-05-10 21:19:14 +03001670 goto fail;
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001671 }
Ilias Apalodimasf576f7d2021-03-24 16:50:46 +02001672
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001673 ret = efi_add_protocol(efi_root, &efi_guid_tcg2_protocol,
1674 (void *)&efi_tcg2_protocol);
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001675 if (ret != EFI_SUCCESS) {
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001676 tcg2_uninit();
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001677 goto fail;
1678 }
Masahisa Kojima1d2a6562021-08-13 16:12:39 +09001679
Masahisa Kojima1ac19bb2021-08-13 16:12:41 +09001680 ret = efi_create_event(EVT_SIGNAL_EXIT_BOOT_SERVICES, TPL_CALLBACK,
1681 efi_tcg2_notify_exit_boot_services, NULL,
1682 NULL, &event);
1683 if (ret != EFI_SUCCESS) {
1684 tcg2_uninit();
1685 goto fail;
1686 }
1687
Masahisa Kojima1d2a6562021-08-13 16:12:39 +09001688 ret = tcg2_measure_secure_boot_variable(dev);
1689 if (ret != EFI_SUCCESS) {
1690 tcg2_uninit();
1691 goto fail;
1692 }
1693
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001694 return ret;
Ilias Apalodimasfa5217d2021-05-10 21:19:14 +03001695
Ilias Apalodimas1b278e62021-03-25 13:31:45 +02001696fail:
Ilias Apalodimas5a2baf92021-05-12 00:03:41 +03001697 log_err("Cannot install EFI_TCG2_PROTOCOL\n");
1698 /*
1699 * Return EFI_SUCCESS and don't stop the EFI subsystem.
1700 * That's done for 2 reasons
1701 * - If the protocol is not installed the PCRs won't be extended. So
1702 * someone later in the boot flow will notice that and take the
1703 * necessary actions.
1704 * - The TPM sandbox is limited and we won't be able to run any efi
1705 * related tests with TCG2 enabled
1706 */
1707 return EFI_SUCCESS;
Ilias Apalodimas590fef62020-11-11 11:18:11 +02001708}