blob: 564118ef28bbad3a755bd05be945991676cb1d59 [file] [log] [blame]
Alexei Fedorov61369a22020-07-13 14:59:02 +01001/*
Manish V Badarkhe550cb592023-02-18 20:04:43 +00002 * Copyright (c) 2021-2023, 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
Imre Kisa48afe52022-04-11 16:33:13 +02009#include <common/tbbr/tbbr_img_def.h>
Sandrine Bailleux3c2db6f2021-07-07 14:47:08 +020010#include <drivers/measured_boot/event_log/event_log.h>
Tamas Banb0f83252022-02-11 09:49:36 +010011#include <drivers/measured_boot/rss/rss_measured_boot.h>
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010012#include <tools_share/tbbr_oid.h>
13#include <fvp_critical_data.h>
14
Alexei Fedorov61369a22020-07-13 14:59:02 +010015#include <plat/arm/common/plat_arm.h>
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010016#include <plat/common/common_def.h>
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +010017
Manish V Badarkhe550cb592023-02-18 20:04:43 +000018#if defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd)
19CASSERT(ARM_EVENT_LOG_DRAM1_SIZE >= PLAT_ARM_EVENT_LOG_MAX_SIZE, \
20 assert_res_eventlog_mem_insufficient);
21#endif /* defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd) */
22
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +010023/* Event Log data */
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010024static uint64_t event_log_base;
Alexei Fedorov61369a22020-07-13 14:59:02 +010025
26/* FVP table with platform specific image IDs, names and PCRs */
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +010027const event_log_metadata_t fvp_event_log_metadata[] = {
Manish V Badarkhe72e03692021-09-08 20:04:24 +010028 { BL31_IMAGE_ID, EVLOG_BL31_STRING, PCR_0 },
29 { BL32_IMAGE_ID, EVLOG_BL32_STRING, PCR_0 },
30 { BL32_EXTRA1_IMAGE_ID, EVLOG_BL32_EXTRA1_STRING, PCR_0 },
31 { BL32_EXTRA2_IMAGE_ID, EVLOG_BL32_EXTRA2_STRING, PCR_0 },
32 { BL33_IMAGE_ID, EVLOG_BL33_STRING, PCR_0 },
33 { HW_CONFIG_ID, EVLOG_HW_CONFIG_STRING, PCR_0 },
34 { NT_FW_CONFIG_ID, EVLOG_NT_FW_CONFIG_STRING, PCR_0 },
35 { SCP_BL2_IMAGE_ID, EVLOG_SCP_BL2_STRING, PCR_0 },
36 { SOC_FW_CONFIG_ID, EVLOG_SOC_FW_CONFIG_STRING, PCR_0 },
37 { TOS_FW_CONFIG_ID, EVLOG_TOS_FW_CONFIG_STRING, PCR_0 },
Tamas Ban6101c2a2022-01-10 15:13:00 +010038 { RMM_IMAGE_ID, EVLOG_RMM_STRING, PCR_0},
Manish V Badarkhe67009c32021-10-31 14:47:49 +000039
Imre Kisa48afe52022-04-11 16:33:13 +020040#if defined(SPD_spmd)
41 { SP_PKG1_ID, EVLOG_SP1_STRING, PCR_0 },
42 { SP_PKG2_ID, EVLOG_SP2_STRING, PCR_0 },
43 { SP_PKG3_ID, EVLOG_SP3_STRING, PCR_0 },
44 { SP_PKG4_ID, EVLOG_SP4_STRING, PCR_0 },
45 { SP_PKG5_ID, EVLOG_SP5_STRING, PCR_0 },
46 { SP_PKG6_ID, EVLOG_SP6_STRING, PCR_0 },
47 { SP_PKG7_ID, EVLOG_SP7_STRING, PCR_0 },
48 { SP_PKG8_ID, EVLOG_SP8_STRING, PCR_0 },
49#endif
50
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +010051 { CRITICAL_DATA_ID, EVLOG_CRITICAL_DATA_STRING, PCR_1 },
52
Manish V Badarkhe67009c32021-10-31 14:47:49 +000053 { EVLOG_INVALID_ID, NULL, (unsigned int)(-1) } /* Terminator */
Alexei Fedorov61369a22020-07-13 14:59:02 +010054};
55
Tamas Banb0f83252022-02-11 09:49:36 +010056/* FVP table with platform specific image IDs and metadata. Intentionally not a
57 * const struct, some members might set by bootloaders during trusted boot.
58 */
59struct rss_mboot_metadata fvp_rss_mboot_metadata[] = {
60 {
61 .id = BL31_IMAGE_ID,
62 .slot = U(9),
63 .signer_id_size = SIGNER_ID_MIN_SIZE,
64 .sw_type = RSS_MBOOT_BL31_STRING,
65 .lock_measurement = true },
66 {
67 .id = HW_CONFIG_ID,
68 .slot = U(10),
69 .signer_id_size = SIGNER_ID_MIN_SIZE,
70 .sw_type = RSS_MBOOT_HW_CONFIG_STRING,
71 .lock_measurement = true },
72 {
73 .id = SOC_FW_CONFIG_ID,
74 .slot = U(11),
75 .signer_id_size = SIGNER_ID_MIN_SIZE,
76 .sw_type = RSS_MBOOT_SOC_FW_CONFIG_STRING,
77 .lock_measurement = true },
78 {
79 .id = RMM_IMAGE_ID,
80 .slot = U(12),
81 .signer_id_size = SIGNER_ID_MIN_SIZE,
82 .sw_type = RSS_MBOOT_RMM_STRING,
83 .lock_measurement = true },
84 {
85 .id = RSS_MBOOT_INVALID_ID }
86};
87
Manish V Badarkhe5797b802021-08-06 09:26:20 +010088void bl2_plat_mboot_init(void)
89{
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010090 uint8_t *event_log_start;
91 uint8_t *event_log_finish;
92 size_t bl1_event_log_size;
Manish V Badarkhe6e6df442023-03-20 14:58:06 +000093 size_t event_log_max_size;
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010094 int rc;
95
Manish V Badarkhe6e6df442023-03-20 14:58:06 +000096 rc = arm_get_tb_fw_info(&event_log_base, &bl1_event_log_size,
97 &event_log_max_size);
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010098 if (rc != 0) {
99 ERROR("%s(): Unable to get Event Log info from TB_FW_CONFIG\n",
100 __func__);
101 /*
102 * It is a fatal error because on FVP platform, BL2 software
103 * assumes that a valid Event Log buffer exist and it will use
104 * same Event Log buffer to append image measurements.
105 */
106 panic();
107 }
108
109 /*
110 * BL1 and BL2 share the same Event Log buffer and that BL2 will
111 * append its measurements after BL1's
112 */
113 event_log_start = (uint8_t *)((uintptr_t)event_log_base +
114 bl1_event_log_size);
115 event_log_finish = (uint8_t *)((uintptr_t)event_log_base +
Manish V Badarkhe6e6df442023-03-20 14:58:06 +0000116 event_log_max_size);
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100117
118 event_log_init((uint8_t *)event_log_start, event_log_finish);
Tamas Banb0f83252022-02-11 09:49:36 +0100119
Manish V Badarkhec774ec82023-06-16 13:03:51 +0100120 rss_measured_boot_init(fvp_rss_mboot_metadata);
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100121}
122
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100123int plat_mboot_measure_critical_data(unsigned int critical_data_id,
124 const void *base, size_t size)
125{
126 /*
127 * It is very unlikely that the critical data size would be
128 * bigger than 2^32 bytes
129 */
130 assert(size < UINT32_MAX);
131 assert(base != NULL);
132
133 /* Calculate image hash and record data in Event Log */
134 int err = event_log_measure_and_record((uintptr_t)base, (uint32_t)size,
Manish V Badarkhedd1ee502022-11-18 20:27:21 +0000135 critical_data_id,
136 fvp_event_log_metadata);
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100137 if (err != 0) {
138 ERROR("%s%s critical data (%i)\n",
139 "Failed to ", "record", err);
140 return err;
141 }
142
143 return 0;
144}
145
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000146#if TRUSTED_BOARD_BOOT
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100147static int fvp_populate_critical_data(struct fvp_critical_data *critical_data)
148{
149 char *nv_ctr_oids[MAX_NV_CTR_IDS] = {
150 [TRUSTED_NV_CTR_ID] = TRUSTED_FW_NVCOUNTER_OID,
151 [NON_TRUSTED_NV_CTR_ID] = NON_TRUSTED_FW_NVCOUNTER_OID,
152 };
153
154 for (int i = 0; i < MAX_NV_CTR_IDS; i++) {
155 int rc = plat_get_nv_ctr(nv_ctr_oids[i],
156 &critical_data->nv_ctr[i]);
157 if (rc != 0) {
158 return rc;
159 }
160 }
161
162 return 0;
163}
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000164#endif /* TRUSTED_BOARD_BOOT */
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100165
166static int fvp_populate_and_measure_critical_data(void)
167{
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000168 int rc = 0;
169
170/*
171 * FVP platform only measures 'platform NV-counter' and hence its
172 * measurement makes sense during Trusted-Boot flow only.
173 */
174#if TRUSTED_BOARD_BOOT
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100175 struct fvp_critical_data populate_critical_data;
176
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000177 rc = fvp_populate_critical_data(&populate_critical_data);
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100178 if (rc == 0) {
179 rc = plat_mboot_measure_critical_data(CRITICAL_DATA_ID,
180 &populate_critical_data,
181 sizeof(populate_critical_data));
182 }
Manish V Badarkheeba13bd2022-01-08 23:08:02 +0000183#endif /* TRUSTED_BOARD_BOOT */
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100184
185 return rc;
186}
187
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100188void bl2_plat_mboot_finish(void)
189{
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100190 int rc;
191
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100192 /* Event Log address in Non-Secure memory */
193 uintptr_t ns_log_addr;
194
195 /* Event Log filled size */
196 size_t event_log_cur_size;
197
Manish V Badarkhe1ffa0092021-10-20 22:06:40 +0100198 rc = fvp_populate_and_measure_critical_data();
199 if (rc != 0) {
200 panic();
201 }
202
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100203 event_log_cur_size = event_log_get_cur_size((uint8_t *)event_log_base);
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100204
Manish V Badarkhe550cb592023-02-18 20:04:43 +0000205#if defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd)
206 /* Copy Event Log to TZC secured DRAM memory */
207 (void)memcpy((void *)ARM_EVENT_LOG_DRAM1_BASE,
208 (const void *)event_log_base,
209 event_log_cur_size);
210
211 /* Ensure that the Event Log is visible in TZC secured DRAM memory */
212 flush_dcache_range(ARM_EVENT_LOG_DRAM1_BASE, event_log_cur_size);
213#endif /* defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd) */
214
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100215 rc = arm_set_nt_fw_info(
216#ifdef SPD_opteed
Manish V Badarkhe550cb592023-02-18 20:04:43 +0000217 (uintptr_t)ARM_EVENT_LOG_DRAM1_BASE,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100218#endif
219 event_log_cur_size, &ns_log_addr);
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100220 if (rc != 0) {
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100221 ERROR("%s(): Unable to update %s_FW_CONFIG\n",
222 __func__, "NT");
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100223 /*
224 * It is a fatal error because on FVP secure world software
225 * assumes that a valid event log exists and will use it to
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100226 * record the measurements into the fTPM.
227 * Note: In FVP platform, OP-TEE uses nt_fw_config to get the
228 * secure Event Log buffer address.
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100229 */
230 panic();
231 }
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100232
233 /* Copy Event Log to Non-secure memory */
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100234 (void)memcpy((void *)ns_log_addr, (const void *)event_log_base,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100235 event_log_cur_size);
236
237 /* Ensure that the Event Log is visible in Non-secure memory */
238 flush_dcache_range(ns_log_addr, event_log_cur_size);
239
240#if defined(SPD_tspd) || defined(SPD_spmd)
241 /* Set Event Log data in TOS_FW_CONFIG */
Manish V Badarkhe550cb592023-02-18 20:04:43 +0000242 rc = arm_set_tos_fw_info((uintptr_t)ARM_EVENT_LOG_DRAM1_BASE,
Manish V Badarkhe7ca9d652021-09-14 22:41:46 +0100243 event_log_cur_size);
244 if (rc != 0) {
245 ERROR("%s(): Unable to update %s_FW_CONFIG\n",
246 __func__, "TOS");
247 panic();
248 }
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100249#endif /* defined(SPD_tspd) || defined(SPD_spmd) */
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100250
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +0100251 dump_event_log((uint8_t *)event_log_base, event_log_cur_size);
Manish V Badarkhe5797b802021-08-06 09:26:20 +0100252}