blob: 402fd93daaf53d4f20dce96fe6d7295db70c1cb6 [file] [log] [blame]
Soby Mathewc2289562018-01-15 14:43:42 +00001/*
Louis Mayencourt3b5ea742019-10-17 14:46:51 +01002 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
Soby Mathewc2289562018-01-15 14:43:42 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
Soby Mathewc2289562018-01-15 14:43:42 +00008#include <string.h>
Louis Mayencourt6c77dfc2019-12-09 11:29:38 +00009#include <libfdt.h>
Soby Mathewc2289562018-01-15 14:43:42 +000010
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011#include <platform_def.h>
12
13#include <common/debug.h>
14#include <common/desc_image_load.h>
15#include <common/tbbr/tbbr_img_def.h>
16#if TRUSTED_BOARD_BOOT
17#include <drivers/auth/mbedtls/mbedtls_config.h>
18#endif
Louis Mayencourt25ac8792019-12-17 13:17:25 +000019#include <lib/fconf/fconf.h>
20#include <lib/fconf/fconf_dyn_cfg_getter.h>
Antonio Nino Diazbd9344f2019-01-25 14:30:04 +000021#include <plat/arm/common/arm_dyn_cfg_helpers.h>
22#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000023#include <plat/common/platform.h>
24
John Tsichritzisba597da2018-07-30 13:41:52 +010025#if TRUSTED_BOARD_BOOT
26
27static void *mbedtls_heap_addr;
28static size_t mbedtls_heap_size;
29
30/*
31 * This function is the implementation of the shared Mbed TLS heap between
32 * BL1 and BL2 for Arm platforms. The shared heap address is passed from BL1
33 * to BL2 with a pointer. This pointer resides inside the TB_FW_CONFIG file
34 * which is a DTB.
35 *
36 * This function is placed inside an #if directive for the below reasons:
37 * - To allocate space for the Mbed TLS heap --only if-- Trusted Board Boot
38 * is enabled.
39 * - This implementation requires the DTB to be present so that BL1 has a
Antonio Nino Diaz60e19f52018-09-25 11:37:23 +010040 * mechanism to pass the pointer to BL2.
John Tsichritzisba597da2018-07-30 13:41:52 +010041 */
42int arm_get_mbedtls_heap(void **heap_addr, size_t *heap_size)
43{
44 assert(heap_addr != NULL);
45 assert(heap_size != NULL);
46
47#if defined(IMAGE_BL1) || BL2_AT_EL3
48
49 /* If in BL1 or BL2_AT_EL3 define a heap */
50 static unsigned char heap[TF_MBEDTLS_HEAP_SIZE];
51
52 *heap_addr = heap;
53 *heap_size = sizeof(heap);
54 mbedtls_heap_addr = heap;
55 mbedtls_heap_size = sizeof(heap);
56
57#elif defined(IMAGE_BL2)
58
59 int err;
Louis Mayencourt25ac8792019-12-17 13:17:25 +000060 void *tb_fw_cfg_dtb;
61
62 /* fconf FW_CONFIG and TB_FW_CONFIG are currently the same DTB*/
63 tb_fw_cfg_dtb = (void *)FCONF_GET_PROPERTY(fconf, dtb, base_addr);
John Tsichritzisba597da2018-07-30 13:41:52 +010064
65 /* If in BL2, retrieve the already allocated heap's info from DTB */
John Tsichritzisa6060312018-09-07 10:42:37 +010066 if (tb_fw_cfg_dtb != NULL) {
67 err = arm_get_dtb_mbedtls_heap_info(tb_fw_cfg_dtb, heap_addr,
68 heap_size);
69 if (err < 0) {
70 ERROR("BL2: unable to retrieve shared Mbed TLS heap information from DTB\n");
71 panic();
72 }
73 } else {
74 ERROR("BL2: DTB missing, cannot get Mbed TLS heap\n");
John Tsichritzisba597da2018-07-30 13:41:52 +010075 panic();
76 }
77#endif
78
79 return 0;
80}
81
82/*
83 * Puts the shared Mbed TLS heap information to the DTB.
84 * Executed only from BL1.
85 */
86void arm_bl1_set_mbedtls_heap(void)
87{
88 int err;
Louis Mayencourt25ac8792019-12-17 13:17:25 +000089 uintptr_t tb_fw_cfg_dtb;
John Tsichritzisba597da2018-07-30 13:41:52 +010090
91 /*
92 * If tb_fw_cfg_dtb==NULL then DTB is not present for the current
93 * platform. As such, we don't attempt to write to the DTB at all.
94 *
95 * If mbedtls_heap_addr==NULL, then it means we are using the default
96 * heap implementation. As such, BL2 will have its own heap for sure
97 * and hence there is no need to pass any information to the DTB.
98 *
99 * In the latter case, if we still wanted to write in the DTB the heap
100 * information, we would need to call plat_get_mbedtls_heap to retrieve
101 * the default heap's address and size.
102 */
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000103
104 /* fconf FW_CONFIG and TB_FW_CONFIG are currently the same DTB*/
105 tb_fw_cfg_dtb = FCONF_GET_PROPERTY(fconf, dtb, base_addr);
106
107 if ((tb_fw_cfg_dtb != 0UL) && (mbedtls_heap_addr != NULL)) {
108 /* As libfdt use void *, we can't avoid this cast */
109 void *dtb = (void *)tb_fw_cfg_dtb;
110
111 err = arm_set_dtb_mbedtls_heap_info(dtb,
John Tsichritzisba597da2018-07-30 13:41:52 +0100112 mbedtls_heap_addr, mbedtls_heap_size);
113 if (err < 0) {
John Tsichritzisa6060312018-09-07 10:42:37 +0100114 ERROR("BL1: unable to write shared Mbed TLS heap information to DTB\n");
John Tsichritzisba597da2018-07-30 13:41:52 +0100115 panic();
116 }
John Tsichritzis63cc2652018-09-07 10:52:12 +0100117 /*
118 * Ensure that the info written to the DTB is visible to other
119 * images. It's critical because BL2 won't be able to proceed
120 * without the heap info.
121 */
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000122 flush_dcache_range(tb_fw_cfg_dtb, fdt_totalsize(dtb));
John Tsichritzisba597da2018-07-30 13:41:52 +0100123 }
124}
125
126#endif /* TRUSTED_BOARD_BOOT */
127
Soby Mathewc2289562018-01-15 14:43:42 +0000128/*
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000129 * BL2 utility function to initialize dynamic configuration specified by
Soby Mathew1d71ba12018-04-04 09:40:32 +0100130 * TB_FW_CONFIG. Populate the bl_mem_params_node_t of other FW_CONFIGs if
131 * specified in TB_FW_CONFIG.
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000132 */
133void arm_bl2_dyn_cfg_init(void)
134{
Soby Mathew1d71ba12018-04-04 09:40:32 +0100135 unsigned int i;
136 bl_mem_params_node_t *cfg_mem_params = NULL;
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000137 uintptr_t image_base;
138 size_t image_size;
Soby Mathew1d71ba12018-04-04 09:40:32 +0100139 const unsigned int config_ids[] = {
140 HW_CONFIG_ID,
141 SOC_FW_CONFIG_ID,
142 NT_FW_CONFIG_ID,
143#ifdef SPD_tspd
144 /* Currently tos_fw_config is only present for TSP */
145 TOS_FW_CONFIG_ID
146#endif
147 };
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000148
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000149 const struct dyn_cfg_dtb_info_t *dtb_info;
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000150
Soby Mathew1d71ba12018-04-04 09:40:32 +0100151 /* Iterate through all the fw config IDs */
152 for (i = 0; i < ARRAY_SIZE(config_ids); i++) {
153 /* Get the config load address and size from TB_FW_CONFIG */
154 cfg_mem_params = get_bl_mem_params_node(config_ids[i]);
155 if (cfg_mem_params == NULL) {
156 VERBOSE("Couldn't find HW_CONFIG in bl_mem_params_node\n");
157 continue;
158 }
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000159
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000160 dtb_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, config_ids[i]);
161 if (dtb_info == NULL) {
Soby Mathew1d71ba12018-04-04 09:40:32 +0100162 VERBOSE("Couldn't find config_id %d load info in TB_FW_CONFIG\n",
163 config_ids[i]);
164 continue;
165 }
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000166
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000167 image_base = dtb_info->config_addr;
168 image_size = dtb_info->config_max_size;
169
Soby Mathew1d71ba12018-04-04 09:40:32 +0100170 /*
171 * Do some runtime checks on the load addresses of soc_fw_config,
172 * tos_fw_config, nt_fw_config. This is not a comprehensive check
173 * of all invalid addresses but to prevent trivial porting errors.
174 */
175 if (config_ids[i] != HW_CONFIG_ID) {
176
Antonio Nino Diazb8a02d52018-10-30 16:32:48 +0000177 if (check_uptr_overflow(image_base, image_size))
Soby Mathew1d71ba12018-04-04 09:40:32 +0100178 continue;
179
Usama Arif6393c782018-11-30 15:43:56 +0000180#ifdef BL31_BASE
Soby Mathewc099cd32018-06-01 16:53:38 +0100181 /* Ensure the configs don't overlap with BL31 */
Alexei Fedorov5ddcbdd2019-12-19 11:59:31 +0000182 if ((image_base >= BL31_BASE) &&
183 (image_base <= BL31_LIMIT))
Soby Mathew1d71ba12018-04-04 09:40:32 +0100184 continue;
Usama Arif6393c782018-11-30 15:43:56 +0000185#endif
Soby Mathew1d71ba12018-04-04 09:40:32 +0100186 /* Ensure the configs are loaded in a valid address */
187 if (image_base < ARM_BL_RAM_BASE)
188 continue;
189#ifdef BL32_BASE
190 /*
191 * If BL32 is present, ensure that the configs don't
192 * overlap with it.
193 */
Alexei Fedorov5ddcbdd2019-12-19 11:59:31 +0000194 if ((image_base >= BL32_BASE) &&
195 (image_base <= BL32_LIMIT))
Soby Mathew1d71ba12018-04-04 09:40:32 +0100196 continue;
197#endif
198 }
199
200
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000201 cfg_mem_params->image_info.image_base = image_base;
202 cfg_mem_params->image_info.image_max_size = (uint32_t)image_size;
Soby Mathew1d71ba12018-04-04 09:40:32 +0100203
Alexei Fedorov5ddcbdd2019-12-19 11:59:31 +0000204 /*
205 * Remove the IMAGE_ATTRIB_SKIP_LOADING attribute from
206 * HW_CONFIG or FW_CONFIG nodes
207 */
Soby Mathew1d71ba12018-04-04 09:40:32 +0100208 cfg_mem_params->image_info.h.attr &= ~IMAGE_ATTRIB_SKIP_LOADING;
209 }
Soby Mathew6e79f9f2018-03-26 15:16:46 +0100210
211#if TRUSTED_BOARD_BOOT && defined(DYN_DISABLE_AUTH)
212 uint32_t disable_auth = 0;
Louis Mayencourt25ac8792019-12-17 13:17:25 +0000213 void *tb_fw_cfg_dtb;
214 int err, tb_fw_node;
215
216 dtb_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, TB_FW_CONFIG_ID);
217 tb_fw_cfg_dtb = (void *)dtb_info->config_addr;
218
219 err = arm_dyn_tb_fw_cfg_init(tb_fw_cfg_dtb, &tb_fw_node);
220 if (err < 0) {
221 ERROR("Invalid TB_FW_CONFIG passed from BL1\n");
222 panic();
223 }
Soby Mathew6e79f9f2018-03-26 15:16:46 +0100224
John Tsichritzis432f0ad2018-08-23 09:57:54 +0100225 err = arm_dyn_get_disable_auth(tb_fw_cfg_dtb, tb_fw_node,
Soby Mathew6e79f9f2018-03-26 15:16:46 +0100226 &disable_auth);
227 if (err < 0)
228 return;
229
230 if (disable_auth == 1)
231 dyn_disable_auth();
232#endif
Soby Mathewcab0b5b2018-01-15 14:45:33 +0000233}