blob: 1f3827831ea4f840cc0b2477b2b3705ea4ca1556 [file] [log] [blame]
Alexei Fedorov61369a22020-07-13 14:59:02 +01001/*
Manish V Badarkheeba13bd2022-01-08 23:08:02 +00002 * Copyright (c) 2021-2022, Arm Limited. All rights reserved.
Alexei Fedorov61369a22020-07-13 14:59:02 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Manish V Badarkhe5797b802021-08-06 09:26:20 +01007#include <stdint.h>
8
Sandrine Bailleux3c2db6f2021-07-07 14:47:08 +02009#include <drivers/measured_boot/event_log/event_log.h>
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010010#include <tools_share/tbbr_oid.h>
11#include <fvp_critical_data.h>
12
Alexei Fedorov61369a22020-07-13 14:59:02 +010013#include <plat/arm/common/plat_arm.h>
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010014#include <plat/common/common_def.h>
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +010015
16/* Event Log data */
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010017static uint64_t event_log_base;
Alexei Fedorov61369a22020-07-13 14:59:02 +010018
19/* FVP table with platform specific image IDs, names and PCRs */
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +010020const event_log_metadata_t fvp_event_log_metadata[] = {
Manish V Badarkhe72e03692021-09-08 20:04:24 +010021 { BL31_IMAGE_ID, EVLOG_BL31_STRING, PCR_0 },
22 { BL32_IMAGE_ID, EVLOG_BL32_STRING, PCR_0 },
23 { BL32_EXTRA1_IMAGE_ID, EVLOG_BL32_EXTRA1_STRING, PCR_0 },
24 { BL32_EXTRA2_IMAGE_ID, EVLOG_BL32_EXTRA2_STRING, PCR_0 },
25 { BL33_IMAGE_ID, EVLOG_BL33_STRING, PCR_0 },
26 { HW_CONFIG_ID, EVLOG_HW_CONFIG_STRING, PCR_0 },
27 { NT_FW_CONFIG_ID, EVLOG_NT_FW_CONFIG_STRING, PCR_0 },
28 { SCP_BL2_IMAGE_ID, EVLOG_SCP_BL2_STRING, PCR_0 },
29 { SOC_FW_CONFIG_ID, EVLOG_SOC_FW_CONFIG_STRING, PCR_0 },
30 { TOS_FW_CONFIG_ID, EVLOG_TOS_FW_CONFIG_STRING, PCR_0 },
Tamas Ban6101c2a2022-01-10 15:13:00 +010031 { RMM_IMAGE_ID, EVLOG_RMM_STRING, PCR_0},
Manish V Badarkhe67009c32021-10-31 14:47:49 +000032
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010033 { CRITICAL_DATA_ID, EVLOG_CRITICAL_DATA_STRING, PCR_1 },
34
Manish V Badarkhe67009c32021-10-31 14:47:49 +000035 { EVLOG_INVALID_ID, NULL, (unsigned int)(-1) } /* Terminator */
Alexei Fedorov61369a22020-07-13 14:59:02 +010036};
37
Manish V Badarkhe5797b802021-08-06 09:26:20 +010038void bl2_plat_mboot_init(void)
39{
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010040 uint8_t *event_log_start;
41 uint8_t *event_log_finish;
42 size_t bl1_event_log_size;
43 int rc;
44
45 rc = arm_get_tb_fw_info(&event_log_base, &bl1_event_log_size);
46 if (rc != 0) {
47 ERROR("%s(): Unable to get Event Log info from TB_FW_CONFIG\n",
48 __func__);
49 /*
50 * It is a fatal error because on FVP platform, BL2 software
51 * assumes that a valid Event Log buffer exist and it will use
52 * same Event Log buffer to append image measurements.
53 */
54 panic();
55 }
56
57 /*
58 * BL1 and BL2 share the same Event Log buffer and that BL2 will
59 * append its measurements after BL1's
60 */
61 event_log_start = (uint8_t *)((uintptr_t)event_log_base +
62 bl1_event_log_size);
63 event_log_finish = (uint8_t *)((uintptr_t)event_log_base +
64 PLAT_ARM_EVENT_LOG_MAX_SIZE);
65
66 event_log_init((uint8_t *)event_log_start, event_log_finish);
Manish V Badarkhe5797b802021-08-06 09:26:20 +010067}
68
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010069int plat_mboot_measure_critical_data(unsigned int critical_data_id,
70 const void *base, size_t size)
71{
72 /*
73 * It is very unlikely that the critical data size would be
74 * bigger than 2^32 bytes
75 */
76 assert(size < UINT32_MAX);
77 assert(base != NULL);
78
79 /* Calculate image hash and record data in Event Log */
80 int err = event_log_measure_and_record((uintptr_t)base, (uint32_t)size,
81 critical_data_id);
82 if (err != 0) {
83 ERROR("%s%s critical data (%i)\n",
84 "Failed to ", "record", err);
85 return err;
86 }
87
88 return 0;
89}
90
Manish V Badarkheeba13bd2022-01-08 23:08:02 +000091#if TRUSTED_BOARD_BOOT
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010092static int fvp_populate_critical_data(struct fvp_critical_data *critical_data)
93{
94 char *nv_ctr_oids[MAX_NV_CTR_IDS] = {
95 [TRUSTED_NV_CTR_ID] = TRUSTED_FW_NVCOUNTER_OID,
96 [NON_TRUSTED_NV_CTR_ID] = NON_TRUSTED_FW_NVCOUNTER_OID,
97 };
98
99 for (int i = 0; i < MAX_NV_CTR_IDS; i++) {
100 int rc = plat_get_nv_ctr(nv_ctr_oids[i],
101 &critical_data->nv_ctr[i]);
102 if (rc != 0) {
103 return rc;
104 }
105 }
106
107 return 0;
108}
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000109#endif /* TRUSTED_BOARD_BOOT */
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100110
111static int fvp_populate_and_measure_critical_data(void)
112{
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000113 int rc = 0;
114
115/*
116 * FVP platform only measures 'platform NV-counter' and hence its
117 * measurement makes sense during Trusted-Boot flow only.
118 */
119#if TRUSTED_BOARD_BOOT
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100120 struct fvp_critical_data populate_critical_data;
121
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000122 rc = fvp_populate_critical_data(&populate_critical_data);
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100123 if (rc == 0) {
124 rc = plat_mboot_measure_critical_data(CRITICAL_DATA_ID,
125 &populate_critical_data,
126 sizeof(populate_critical_data));
127 }
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000128#endif /* TRUSTED_BOARD_BOOT */
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100129
130 return rc;
131}
132
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100133void bl2_plat_mboot_finish(void)
134{
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100135 int rc;
136
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100137 /* Event Log address in Non-Secure memory */
138 uintptr_t ns_log_addr;
139
140 /* Event Log filled size */
141 size_t event_log_cur_size;
142
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100143 rc = fvp_populate_and_measure_critical_data();
144 if (rc != 0) {
145 panic();
146 }
147
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100148 event_log_cur_size = event_log_get_cur_size((uint8_t *)event_log_base);
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100149
150 rc = arm_set_nt_fw_info(
151#ifdef SPD_opteed
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100152 (uintptr_t)event_log_base,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100153#endif
154 event_log_cur_size, &ns_log_addr);
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100155 if (rc != 0) {
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100156 ERROR("%s(): Unable to update %s_FW_CONFIG\n",
157 __func__, "NT");
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100158 /*
159 * It is a fatal error because on FVP secure world software
160 * assumes that a valid event log exists and will use it to
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100161 * record the measurements into the fTPM.
162 * Note: In FVP platform, OP-TEE uses nt_fw_config to get the
163 * secure Event Log buffer address.
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100164 */
165 panic();
166 }
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100167
168 /* Copy Event Log to Non-secure memory */
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100169 (void)memcpy((void *)ns_log_addr, (const void *)event_log_base,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100170 event_log_cur_size);
171
172 /* Ensure that the Event Log is visible in Non-secure memory */
173 flush_dcache_range(ns_log_addr, event_log_cur_size);
174
175#if defined(SPD_tspd) || defined(SPD_spmd)
176 /* Set Event Log data in TOS_FW_CONFIG */
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100177 rc = arm_set_tos_fw_info((uintptr_t)event_log_base,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100178 event_log_cur_size);
179 if (rc != 0) {
180 ERROR("%s(): Unable to update %s_FW_CONFIG\n",
181 __func__, "TOS");
182 panic();
183 }
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100184#endif /* defined(SPD_tspd) || defined(SPD_spmd) */
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100185
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100186 dump_event_log((uint8_t *)event_log_base, event_log_cur_size);
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100187}