blob: 564a8b3b54ff4b7c258986295f3ac10a1139a7f7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
gaurav ranac3a50422015-02-27 09:45:35 +05302/*
3 * Copyright 2015 Freescale Semiconductor, Inc.
gaurav ranac3a50422015-02-27 09:45:35 +05304 */
5
6#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -06007#include <dm.h>
Simon Glass8e201882020-05-10 11:39:54 -06008#include <flash.h>
gaurav ranac3a50422015-02-27 09:45:35 +05309#include <fsl_validate.h>
10#include <fsl_secboot_err.h>
11#include <fsl_sfp.h>
12#include <fsl_sec.h>
13#include <command.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
gaurav ranac3a50422015-02-27 09:45:35 +053015#include <malloc.h>
gaurav ranac3a50422015-02-27 09:45:35 +053016#include <u-boot/rsa-mod-exp.h>
17#include <hash.h>
18#include <fsl_secboot_err.h>
York Sunc4f047c2017-03-27 11:41:03 -070019#ifdef CONFIG_ARCH_LS1021A
gaurav ranac3a50422015-02-27 09:45:35 +053020#include <asm/arch/immap_ls102xa.h>
21#endif
22
23#define SHA256_BITS 256
24#define SHA256_BYTES (256/8)
25#define SHA256_NIBBLES (256/4)
26#define NUM_HEX_CHARS (sizeof(ulong) * 2)
27
Aneesh Bansal24b8fae2015-12-08 14:14:13 +053028#define CHECK_KEY_LEN(key_len) (((key_len) == 2 * KEY_SIZE_BYTES / 4) || \
29 ((key_len) == 2 * KEY_SIZE_BYTES / 2) || \
30 ((key_len) == 2 * KEY_SIZE_BYTES))
Udit Agarwal990a9972017-02-09 21:36:11 +053031#if defined(CONFIG_FSL_ISBC_KEY_EXT)
32/* Global data structure */
33static struct fsl_secboot_glb glb;
34#endif
Aneesh Bansal24b8fae2015-12-08 14:14:13 +053035
gaurav ranac3a50422015-02-27 09:45:35 +053036/* This array contains DER value for SHA-256 */
37static const u8 hash_identifier[] = { 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60,
38 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00,
39 0x04, 0x20
40 };
41
42static u8 hash_val[SHA256_BYTES];
Saksham Jain6121f082016-03-23 16:24:34 +053043
44#ifdef CONFIG_ESBC_HDR_LS
45/* New Barker Code for LS ESBC Header */
46static const u8 barker_code[ESBC_BARKER_LEN] = { 0x12, 0x19, 0x20, 0x01 };
47#else
gaurav ranac3a50422015-02-27 09:45:35 +053048static const u8 barker_code[ESBC_BARKER_LEN] = { 0x68, 0x39, 0x27, 0x81 };
Saksham Jain6121f082016-03-23 16:24:34 +053049#endif
gaurav ranac3a50422015-02-27 09:45:35 +053050
51void branch_to_self(void) __attribute__ ((noreturn));
52
53/*
54 * This function will put core in infinite loop.
55 * This will be called when the ESBC can not proceed further due
56 * to some unknown errors.
57 */
58void branch_to_self(void)
59{
60 printf("Core is in infinite loop due to errors.\n");
61self:
62 goto self;
63}
64
65#if defined(CONFIG_FSL_ISBC_KEY_EXT)
66static u32 check_ie(struct fsl_secboot_img_priv *img)
67{
Udit Agarwal990a9972017-02-09 21:36:11 +053068 if (img->hdr.ie_flag & IE_FLAG_MASK)
gaurav ranac3a50422015-02-27 09:45:35 +053069 return 1;
70
71 return 0;
72}
73
74/* This function returns the CSF Header Address of uboot
75 * For MPC85xx based platforms, the LAW mapping for NOR
76 * flash changes in uboot code. Hence the offset needs
77 * to be calculated and added to the new NOR flash base
78 * address
79 */
80#if defined(CONFIG_MPC85xx)
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053081int get_csf_base_addr(u32 *csf_addr, u32 *flash_base_addr)
gaurav ranac3a50422015-02-27 09:45:35 +053082{
83 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
84 u32 csf_hdr_addr = in_be32(&gur->scratchrw[0]);
85 u32 csf_flash_offset = csf_hdr_addr & ~(CONFIG_SYS_PBI_FLASH_BASE);
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053086 u32 flash_addr, addr;
gaurav ranac3a50422015-02-27 09:45:35 +053087 int found = 0;
88 int i = 0;
89
90 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
91 flash_addr = flash_info[i].start[0];
92 addr = flash_info[i].start[0] + csf_flash_offset;
93 if (memcmp((u8 *)addr, barker_code, ESBC_BARKER_LEN) == 0) {
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053094 debug("Barker found on addr %x\n", addr);
gaurav ranac3a50422015-02-27 09:45:35 +053095 found = 1;
96 break;
97 }
98 }
99
100 if (!found)
101 return -1;
102
103 *csf_addr = addr;
104 *flash_base_addr = flash_addr;
105
106 return 0;
107}
108#else
109/* For platforms like LS1020, correct flash address is present in
110 * the header. So the function reqturns flash base address as 0
111 */
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530112int get_csf_base_addr(u32 *csf_addr, u32 *flash_base_addr)
gaurav ranac3a50422015-02-27 09:45:35 +0530113{
114 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
115 u32 csf_hdr_addr = in_be32(&gur->scratchrw[0]);
116
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530117 if (memcmp((u8 *)(uintptr_t)csf_hdr_addr,
118 barker_code, ESBC_BARKER_LEN))
gaurav ranac3a50422015-02-27 09:45:35 +0530119 return -1;
120
121 *csf_addr = csf_hdr_addr;
122 *flash_base_addr = 0;
123 return 0;
124}
125#endif
126
Udit Agarwal990a9972017-02-09 21:36:11 +0530127#if defined(CONFIG_ESBC_HDR_LS)
128static int get_ie_info_addr(uintptr_t *ie_addr)
129{
130 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
131 /* For LS-CH3, the address of IE Table is
132 * stated in Scratch13 and scratch14 of DCFG.
133 * Bootrom validates this table while validating uboot.
134 * DCFG is LE*/
135 *ie_addr = in_le32(&gur->scratchrw[SCRATCH_IE_HIGH_ADR - 1]);
136 *ie_addr = *ie_addr << 32;
137 *ie_addr |= in_le32(&gur->scratchrw[SCRATCH_IE_LOW_ADR - 1]);
138 return 0;
139}
140#else /* CONFIG_ESBC_HDR_LS */
141static int get_ie_info_addr(uintptr_t *ie_addr)
gaurav ranac3a50422015-02-27 09:45:35 +0530142{
143 struct fsl_secboot_img_hdr *hdr;
144 struct fsl_secboot_sg_table *sg_tbl;
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530145 u32 flash_base_addr, csf_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530146
147 if (get_csf_base_addr(&csf_addr, &flash_base_addr))
148 return -1;
149
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530150 hdr = (struct fsl_secboot_img_hdr *)(uintptr_t)csf_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530151
152 /* For SoC's with Trust Architecture v1 with corenet bus
153 * the sg table field in CSF header has absolute address
154 * for sg table in memory. In other Trust Architecture,
155 * this field specifies the offset of sg table from the
156 * base address of CSF Header
157 */
158#if defined(CONFIG_FSL_TRUST_ARCH_v1) && defined(CONFIG_FSL_CORENET)
159 sg_tbl = (struct fsl_secboot_sg_table *)
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530160 (((u32)hdr->psgtable & ~(CONFIG_SYS_PBI_FLASH_BASE)) +
gaurav ranac3a50422015-02-27 09:45:35 +0530161 flash_base_addr);
162#else
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530163 sg_tbl = (struct fsl_secboot_sg_table *)(uintptr_t)(csf_addr +
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530164 (u32)hdr->psgtable);
gaurav ranac3a50422015-02-27 09:45:35 +0530165#endif
166
167 /* IE Key Table is the first entry in the SG Table */
168#if defined(CONFIG_MPC85xx)
Udit Agarwal990a9972017-02-09 21:36:11 +0530169 *ie_addr = (uintptr_t)((sg_tbl->src_addr &
170 ~(CONFIG_SYS_PBI_FLASH_BASE)) +
171 flash_base_addr);
gaurav ranac3a50422015-02-27 09:45:35 +0530172#else
Udit Agarwal990a9972017-02-09 21:36:11 +0530173 *ie_addr = (uintptr_t)sg_tbl->src_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530174#endif
175
Udit Agarwal990a9972017-02-09 21:36:11 +0530176 debug("IE Table address is %lx\n", *ie_addr);
gaurav ranac3a50422015-02-27 09:45:35 +0530177 return 0;
178}
Udit Agarwal990a9972017-02-09 21:36:11 +0530179#endif /* CONFIG_ESBC_HDR_LS */
gaurav ranac3a50422015-02-27 09:45:35 +0530180#endif
181
182#ifdef CONFIG_KEY_REVOCATION
183/* This function checks srk_table_flag in header and set/reset srk_flag.*/
184static u32 check_srk(struct fsl_secboot_img_priv *img)
185{
Saksham Jain6121f082016-03-23 16:24:34 +0530186#ifdef CONFIG_ESBC_HDR_LS
Udit Agarwal990a9972017-02-09 21:36:11 +0530187 /* In LS, No SRK Flag as SRK is always present if IE not present*/
188#if defined(CONFIG_FSL_ISBC_KEY_EXT)
189 return !check_ie(img);
190#endif
Saksham Jain6121f082016-03-23 16:24:34 +0530191 return 1;
192#else
gaurav ranac3a50422015-02-27 09:45:35 +0530193 if (img->hdr.len_kr.srk_table_flag & SRK_FLAG)
194 return 1;
195
196 return 0;
Saksham Jain6121f082016-03-23 16:24:34 +0530197#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530198}
199
200/* This function returns ospr's key_revoc values.*/
201static u32 get_key_revoc(void)
202{
203 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
204 return (sfp_in32(&sfp_regs->ospr) & OSPR_KEY_REVOC_MASK) >>
205 OSPR_KEY_REVOC_SHIFT;
206}
207
208/* This function checks if selected key is revoked or not.*/
209static u32 is_key_revoked(u32 keynum, u32 rev_flag)
210{
211 if (keynum == UNREVOCABLE_KEY)
212 return 0;
213
214 if ((u32)(1 << (ALIGN_REVOC_KEY - keynum)) & rev_flag)
215 return 1;
216
217 return 0;
218}
219
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530220/* It read validates srk_table key lengths.*/
221static u32 read_validate_srk_tbl(struct fsl_secboot_img_priv *img)
gaurav ranac3a50422015-02-27 09:45:35 +0530222{
223 int i = 0;
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530224 u32 ret, key_num, key_revoc_flag, size;
225 struct fsl_secboot_img_hdr *hdr = &img->hdr;
226 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
227
228 if ((hdr->len_kr.num_srk == 0) ||
229 (hdr->len_kr.num_srk > MAX_KEY_ENTRIES))
230 return ERROR_ESBC_CLIENT_HEADER_INVALID_SRK_NUM_ENTRY;
231
232 key_num = hdr->len_kr.srk_sel;
233 if (key_num == 0 || key_num > hdr->len_kr.num_srk)
234 return ERROR_ESBC_CLIENT_HEADER_INVALID_KEY_NUM;
235
236 /* Get revoc key from sfp */
237 key_revoc_flag = get_key_revoc();
238 ret = is_key_revoked(key_num, key_revoc_flag);
239 if (ret)
240 return ERROR_ESBC_CLIENT_HEADER_KEY_REVOKED;
241
242 size = hdr->len_kr.num_srk * sizeof(struct srk_table);
243
244 memcpy(&img->srk_tbl, esbc + hdr->srk_tbl_off, size);
245
246 for (i = 0; i < hdr->len_kr.num_srk; i++) {
247 if (!CHECK_KEY_LEN(img->srk_tbl[i].key_len))
gaurav ranac3a50422015-02-27 09:45:35 +0530248 return ERROR_ESBC_CLIENT_HEADER_INV_SRK_ENTRY_KEYLEN;
249 }
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530250
251 img->key_len = img->srk_tbl[key_num - 1].key_len;
252
253 memcpy(&img->img_key, &(img->srk_tbl[key_num - 1].pkey),
254 img->key_len);
255
gaurav ranac3a50422015-02-27 09:45:35 +0530256 return 0;
257}
258#endif
259
Saksham Jain6121f082016-03-23 16:24:34 +0530260#ifndef CONFIG_ESBC_HDR_LS
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530261static u32 read_validate_single_key(struct fsl_secboot_img_priv *img)
262{
263 struct fsl_secboot_img_hdr *hdr = &img->hdr;
264 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
265
266 /* check key length */
267 if (!CHECK_KEY_LEN(hdr->key_len))
268 return ERROR_ESBC_CLIENT_HEADER_KEY_LEN;
269
270 memcpy(&img->img_key, esbc + hdr->pkey, hdr->key_len);
271
272 img->key_len = hdr->key_len;
273
274 return 0;
275}
Saksham Jain6121f082016-03-23 16:24:34 +0530276#endif /* CONFIG_ESBC_HDR_LS */
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530277
278#if defined(CONFIG_FSL_ISBC_KEY_EXT)
Udit Agarwal990a9972017-02-09 21:36:11 +0530279
280static void install_ie_tbl(uintptr_t ie_tbl_addr,
281 struct fsl_secboot_img_priv *img)
282{
283 /* Copy IE tbl to Global Data */
284 memcpy(&glb.ie_tbl, (u8 *)ie_tbl_addr, sizeof(struct ie_key_info));
285 img->ie_addr = (uintptr_t)&glb.ie_tbl;
286 glb.ie_addr = img->ie_addr;
287}
288
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530289static u32 read_validate_ie_tbl(struct fsl_secboot_img_priv *img)
290{
291 struct fsl_secboot_img_hdr *hdr = &img->hdr;
292 u32 ie_key_len, ie_revoc_flag, ie_num;
293 struct ie_key_info *ie_info;
294
Udit Agarwal990a9972017-02-09 21:36:11 +0530295 if (!img->ie_addr) {
296 if (get_ie_info_addr(&img->ie_addr))
297 return ERROR_IE_TABLE_NOT_FOUND;
298 else
299 install_ie_tbl(img->ie_addr, img);
300 }
301
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530302 ie_info = (struct ie_key_info *)(uintptr_t)img->ie_addr;
303 if (ie_info->num_keys == 0 || ie_info->num_keys > 32)
304 return ERROR_ESBC_CLIENT_HEADER_INVALID_IE_NUM_ENTRY;
305
306 ie_num = hdr->ie_key_sel;
307 if (ie_num == 0 || ie_num > ie_info->num_keys)
308 return ERROR_ESBC_CLIENT_HEADER_INVALID_IE_KEY_NUM;
309
310 ie_revoc_flag = ie_info->key_revok;
311 if ((u32)(1 << (ie_num - 1)) & ie_revoc_flag)
312 return ERROR_ESBC_CLIENT_HEADER_IE_KEY_REVOKED;
313
314 ie_key_len = ie_info->ie_key_tbl[ie_num - 1].key_len;
315
316 if (!CHECK_KEY_LEN(ie_key_len))
317 return ERROR_ESBC_CLIENT_HEADER_INV_IE_ENTRY_KEYLEN;
318
319 memcpy(&img->img_key, &(ie_info->ie_key_tbl[ie_num - 1].pkey),
320 ie_key_len);
321
322 img->key_len = ie_key_len;
323 return 0;
324}
325#endif
326
327
gaurav ranac3a50422015-02-27 09:45:35 +0530328/* This function return length of public key.*/
329static inline u32 get_key_len(struct fsl_secboot_img_priv *img)
330{
331 return img->key_len;
332}
333
334/*
335 * Handles the ESBC uboot client header verification failure.
336 * This function handles all the errors which might occur in the
337 * parsing and checking of ESBC uboot client header. It will also
338 * set the error bits in the SEC_MON.
339 */
340static void fsl_secboot_header_verification_failure(void)
341{
gaurav ranac3a50422015-02-27 09:45:35 +0530342 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
gaurav ranac3a50422015-02-27 09:45:35 +0530343
344 /* 29th bit of OSPR is ITS */
345 u32 its = sfp_in32(&sfp_regs->ospr) >> 2;
346
Sumit Gargbc17f982016-08-31 08:54:15 -0400347 if (its == 1)
348 set_sec_mon_state(HPSR_SSM_ST_SOFT_FAIL);
349 else
350 set_sec_mon_state(HPSR_SSM_ST_NON_SECURE);
gaurav ranac3a50422015-02-27 09:45:35 +0530351
352 printf("Generating reset request\n");
353 do_reset(NULL, 0, 0, NULL);
Saksham Jain7f048b32016-03-23 16:24:44 +0530354 /* If reset doesn't coocur, halt execution */
355 do_esbc_halt(NULL, 0, 0, NULL);
gaurav ranac3a50422015-02-27 09:45:35 +0530356}
357
358/*
359 * Handles the ESBC uboot client image verification failure.
360 * This function handles all the errors which might occur in the
361 * public key hash comparison and signature verification of
362 * ESBC uboot client image. It will also
363 * set the error bits in the SEC_MON.
364 */
365static void fsl_secboot_image_verification_failure(void)
366{
gaurav ranac3a50422015-02-27 09:45:35 +0530367 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
gaurav ranac3a50422015-02-27 09:45:35 +0530368
Aneesh Bansal52b4b2d2015-10-12 22:05:50 +0530369 u32 its = (sfp_in32(&sfp_regs->ospr) & ITS_MASK) >> ITS_BIT;
gaurav ranac3a50422015-02-27 09:45:35 +0530370
Sumit Gargbc17f982016-08-31 08:54:15 -0400371 if (its == 1) {
372 set_sec_mon_state(HPSR_SSM_ST_SOFT_FAIL);
gaurav ranac3a50422015-02-27 09:45:35 +0530373
Sumit Gargbc17f982016-08-31 08:54:15 -0400374 printf("Generating reset request\n");
375 do_reset(NULL, 0, 0, NULL);
376 /* If reset doesn't coocur, halt execution */
377 do_esbc_halt(NULL, 0, 0, NULL);
Saksham Jain7f048b32016-03-23 16:24:44 +0530378
Sumit Gargbc17f982016-08-31 08:54:15 -0400379 } else {
380 set_sec_mon_state(HPSR_SSM_ST_NON_SECURE);
gaurav ranac3a50422015-02-27 09:45:35 +0530381 }
382}
383
384static void fsl_secboot_bootscript_parse_failure(void)
385{
386 fsl_secboot_header_verification_failure();
387}
388
389/*
390 * Handles the errors in esbc boot.
391 * This function handles all the errors which might occur in the
392 * esbc boot phase. It will call the appropriate api to log the
393 * errors and set the error bits in the SEC_MON.
394 */
395void fsl_secboot_handle_error(int error)
396{
Ruchika Guptad6b89202017-04-17 18:07:17 +0530397#ifndef CONFIG_SPL_BUILD
gaurav ranac3a50422015-02-27 09:45:35 +0530398 const struct fsl_secboot_errcode *e;
399
400 for (e = fsl_secboot_errcodes; e->errcode != ERROR_ESBC_CLIENT_MAX;
401 e++) {
402 if (e->errcode == error)
403 printf("ERROR :: %x :: %s\n", error, e->name);
404 }
Ruchika Guptad6b89202017-04-17 18:07:17 +0530405#else
406 printf("ERROR :: %x\n", error);
407#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530408
Aneesh Bansal8a47d5c2016-01-22 16:37:28 +0530409 /* If Boot Mode is secure, transition the SNVS state and issue
410 * reset based on type of failure and ITS setting.
411 * If Boot mode is non-secure, return from this function.
412 */
413 if (fsl_check_boot_mode_secure() == 0)
414 return;
415
gaurav ranac3a50422015-02-27 09:45:35 +0530416 switch (error) {
417 case ERROR_ESBC_CLIENT_HEADER_BARKER:
418 case ERROR_ESBC_CLIENT_HEADER_IMG_SIZE:
419 case ERROR_ESBC_CLIENT_HEADER_KEY_LEN:
420 case ERROR_ESBC_CLIENT_HEADER_SIG_LEN:
421 case ERROR_ESBC_CLIENT_HEADER_KEY_LEN_NOT_TWICE_SIG_LEN:
422 case ERROR_ESBC_CLIENT_HEADER_KEY_MOD_1:
423 case ERROR_ESBC_CLIENT_HEADER_KEY_MOD_2:
424 case ERROR_ESBC_CLIENT_HEADER_SIG_KEY_MOD:
425 case ERROR_ESBC_CLIENT_HEADER_SG_ESBC_EP:
426 case ERROR_ESBC_CLIENT_HEADER_SG_ENTIRES_BAD:
Saksham Jain6121f082016-03-23 16:24:34 +0530427 case ERROR_KEY_TABLE_NOT_FOUND:
gaurav ranac3a50422015-02-27 09:45:35 +0530428#ifdef CONFIG_KEY_REVOCATION
429 case ERROR_ESBC_CLIENT_HEADER_KEY_REVOKED:
430 case ERROR_ESBC_CLIENT_HEADER_INVALID_SRK_NUM_ENTRY:
431 case ERROR_ESBC_CLIENT_HEADER_INVALID_KEY_NUM:
432 case ERROR_ESBC_CLIENT_HEADER_INV_SRK_ENTRY_KEYLEN:
433#endif
434#if defined(CONFIG_FSL_ISBC_KEY_EXT)
435 /*@fallthrough@*/
436 case ERROR_ESBC_CLIENT_HEADER_IE_KEY_REVOKED:
437 case ERROR_ESBC_CLIENT_HEADER_INVALID_IE_NUM_ENTRY:
438 case ERROR_ESBC_CLIENT_HEADER_INVALID_IE_KEY_NUM:
439 case ERROR_ESBC_CLIENT_HEADER_INV_IE_ENTRY_KEYLEN:
440 case ERROR_IE_TABLE_NOT_FOUND:
441#endif
442 fsl_secboot_header_verification_failure();
443 break;
444 case ERROR_ESBC_SEC_RESET:
445 case ERROR_ESBC_SEC_DEQ:
446 case ERROR_ESBC_SEC_ENQ:
447 case ERROR_ESBC_SEC_DEQ_TO:
448 case ERROR_ESBC_SEC_JOBQ_STATUS:
449 case ERROR_ESBC_CLIENT_HASH_COMPARE_KEY:
450 case ERROR_ESBC_CLIENT_HASH_COMPARE_EM:
451 fsl_secboot_image_verification_failure();
452 break;
453 case ERROR_ESBC_MISSING_BOOTM:
454 fsl_secboot_bootscript_parse_failure();
455 break;
456 case ERROR_ESBC_WRONG_CMD:
457 default:
458 branch_to_self();
459 break;
460 }
461}
462
463static void fsl_secblk_handle_error(int error)
464{
465 switch (error) {
466 case ERROR_ESBC_SEC_ENQ:
467 fsl_secboot_handle_error(ERROR_ESBC_SEC_ENQ);
468 break;
469 case ERROR_ESBC_SEC_DEQ:
470 fsl_secboot_handle_error(ERROR_ESBC_SEC_DEQ);
471 break;
472 case ERROR_ESBC_SEC_DEQ_TO:
473 fsl_secboot_handle_error(ERROR_ESBC_SEC_DEQ_TO);
474 break;
475 default:
476 printf("Job Queue Output status %x\n", error);
477 fsl_secboot_handle_error(ERROR_ESBC_SEC_JOBQ_STATUS);
478 break;
479 }
480}
481
482/*
483 * Calculate hash of key obtained via offset present in ESBC uboot
484 * client hdr. This function calculates the hash of key which is obtained
485 * through offset present in ESBC uboot client header.
486 */
487static int calc_img_key_hash(struct fsl_secboot_img_priv *img)
488{
489 struct hash_algo *algo;
490 void *ctx;
491 int i, srk = 0;
492 int ret = 0;
493 const char *algo_name = "sha256";
494
495 /* Calculate hash of the esbc key */
496 ret = hash_progressive_lookup_algo(algo_name, &algo);
497 if (ret)
498 return ret;
499
500 ret = algo->hash_init(algo, &ctx);
501 if (ret)
502 return ret;
503
504 /* Update hash for ESBC key */
505#ifdef CONFIG_KEY_REVOCATION
506 if (check_srk(img)) {
507 ret = algo->hash_update(algo, ctx,
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530508 (u8 *)(uintptr_t)(img->ehdrloc + img->hdr.srk_tbl_off),
509 img->hdr.len_kr.num_srk * sizeof(struct srk_table), 1);
gaurav ranac3a50422015-02-27 09:45:35 +0530510 srk = 1;
511 }
512#endif
513 if (!srk)
514 ret = algo->hash_update(algo, ctx,
515 img->img_key, img->key_len, 1);
516 if (ret)
517 return ret;
518
519 /* Copy hash at destination buffer */
520 ret = algo->hash_finish(algo, ctx, hash_val, algo->digest_size);
521 if (ret)
522 return ret;
523
524 for (i = 0; i < SHA256_BYTES; i++)
525 img->img_key_hash[i] = hash_val[i];
526
527 return 0;
528}
529
530/*
531 * Calculate hash of ESBC hdr and ESBC. This function calculates the
532 * single hash of ESBC header and ESBC image. If SG flag is on, all
533 * SG entries are also hashed alongwith the complete SG table.
534 */
535static int calc_esbchdr_esbc_hash(struct fsl_secboot_img_priv *img)
536{
537 struct hash_algo *algo;
538 void *ctx;
539 int ret = 0;
540 int key_hash = 0;
541 const char *algo_name = "sha256";
542
543 /* Calculate the hash of the ESBC */
544 ret = hash_progressive_lookup_algo(algo_name, &algo);
545 if (ret)
546 return ret;
547
548 ret = algo->hash_init(algo, &ctx);
549 /* Copy hash at destination buffer */
550 if (ret)
551 return ret;
552
553 /* Update hash for CSF Header */
554 ret = algo->hash_update(algo, ctx,
555 (u8 *)&img->hdr, sizeof(struct fsl_secboot_img_hdr), 0);
556 if (ret)
557 return ret;
558
559 /* Update the hash with that of srk table if srk flag is 1
560 * If IE Table is selected, key is not added in the hash
561 * If neither srk table nor IE key table available, add key
562 * from header in the hash calculation
563 */
564#ifdef CONFIG_KEY_REVOCATION
565 if (check_srk(img)) {
566 ret = algo->hash_update(algo, ctx,
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530567 (u8 *)(uintptr_t)(img->ehdrloc + img->hdr.srk_tbl_off),
568 img->hdr.len_kr.num_srk * sizeof(struct srk_table), 0);
gaurav ranac3a50422015-02-27 09:45:35 +0530569 key_hash = 1;
570 }
571#endif
572#if defined(CONFIG_FSL_ISBC_KEY_EXT)
573 if (!key_hash && check_ie(img))
574 key_hash = 1;
575#endif
Saksham Jain6121f082016-03-23 16:24:34 +0530576#ifndef CONFIG_ESBC_HDR_LS
577/* No single key support in LS ESBC header */
578 if (!key_hash) {
gaurav ranac3a50422015-02-27 09:45:35 +0530579 ret = algo->hash_update(algo, ctx,
580 img->img_key, img->hdr.key_len, 0);
Saksham Jain6121f082016-03-23 16:24:34 +0530581 key_hash = 1;
582 }
583#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530584 if (ret)
585 return ret;
Saksham Jain6121f082016-03-23 16:24:34 +0530586 if (!key_hash)
587 return ERROR_KEY_TABLE_NOT_FOUND;
gaurav ranac3a50422015-02-27 09:45:35 +0530588
589 /* Update hash for actual Image */
590 ret = algo->hash_update(algo, ctx,
Saksham Jain04fcf522016-03-23 16:24:45 +0530591 (u8 *)(*(img->img_addr_ptr)), img->img_size, 1);
gaurav ranac3a50422015-02-27 09:45:35 +0530592 if (ret)
593 return ret;
594
595 /* Copy hash at destination buffer */
596 ret = algo->hash_finish(algo, ctx, hash_val, algo->digest_size);
597 if (ret)
598 return ret;
599
600 return 0;
601}
602
603/*
604 * Construct encoded hash EM' wrt PKCSv1.5. This function calculates the
605 * pointers for padding, DER value and hash. And finally, constructs EM'
606 * which includes hash of complete CSF header and ESBC image. If SG flag
607 * is on, hash of SG table and entries is also included.
608 */
609static void construct_img_encoded_hash_second(struct fsl_secboot_img_priv *img)
610{
611 /*
612 * RSA PKCSv1.5 encoding format for encoded message is below
613 * EM = 0x0 || 0x1 || PS || 0x0 || DER || Hash
614 * PS is Padding String
615 * DER is DER value for SHA-256
616 * Hash is SHA-256 hash
617 * *********************************************************
618 * representative points to first byte of EM initially and is
619 * filled with 0x0
620 * representative is incremented by 1 and second byte is filled
621 * with 0x1
622 * padding points to third byte of EM
623 * digest points to full length of EM - 32 bytes
624 * hash_id (DER value) points to 19 bytes before pDigest
625 * separator is one byte which separates padding and DER
626 */
627
628 size_t len;
629 u8 *representative;
630 u8 *padding, *digest;
631 u8 *hash_id, *separator;
632 int i;
633
634 len = (get_key_len(img) / 2) - 1;
635 representative = img->img_encoded_hash_second;
636 representative[0] = 0;
637 representative[1] = 1; /* block type 1 */
638
639 padding = &representative[2];
640 digest = &representative[1] + len - 32;
641 hash_id = digest - sizeof(hash_identifier);
642 separator = hash_id - 1;
643
644 /* fill padding area pointed by padding with 0xff */
645 memset(padding, 0xff, separator - padding);
646
647 /* fill byte pointed by separator */
648 *separator = 0;
649
650 /* fill SHA-256 DER value pointed by HashId */
651 memcpy(hash_id, hash_identifier, sizeof(hash_identifier));
652
653 /* fill hash pointed by Digest */
654 for (i = 0; i < SHA256_BYTES; i++)
655 digest[i] = hash_val[i];
656}
657
658/*
659 * Reads and validates the ESBC client header.
660 * This function reads key and signature from the ESBC client header.
661 * If Scatter/Gather flag is on, lengths and offsets of images
662 * present as SG entries are also read. This function also checks
663 * whether the header is valid or not.
664 */
665static int read_validate_esbc_client_header(struct fsl_secboot_img_priv *img)
666{
gaurav ranac3a50422015-02-27 09:45:35 +0530667 struct fsl_secboot_img_hdr *hdr = &img->hdr;
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530668 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
gaurav ranac3a50422015-02-27 09:45:35 +0530669 u8 *k, *s;
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530670 u32 ret = 0;
671
gaurav ranac3a50422015-02-27 09:45:35 +0530672 int key_found = 0;
673
674 /* check barker code */
675 if (memcmp(hdr->barker, barker_code, ESBC_BARKER_LEN))
676 return ERROR_ESBC_CLIENT_HEADER_BARKER;
677
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530678 /* If Image Address is not passed as argument to function,
679 * then Address and Size must be read from the Header.
680 */
Saksham Jain04fcf522016-03-23 16:24:45 +0530681 if (*(img->img_addr_ptr) == 0) {
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530682 #ifdef CONFIG_ESBC_ADDR_64BIT
Saksham Jain04fcf522016-03-23 16:24:45 +0530683 *(img->img_addr_ptr) = hdr->pimg64;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530684 #else
Saksham Jain04fcf522016-03-23 16:24:45 +0530685 *(img->img_addr_ptr) = hdr->pimg;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530686 #endif
687 }
688
gaurav ranac3a50422015-02-27 09:45:35 +0530689 if (!hdr->img_size)
690 return ERROR_ESBC_CLIENT_HEADER_IMG_SIZE;
691
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530692 img->img_size = hdr->img_size;
693
gaurav ranac3a50422015-02-27 09:45:35 +0530694 /* Key checking*/
695#ifdef CONFIG_KEY_REVOCATION
696 if (check_srk(img)) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530697 ret = read_validate_srk_tbl(img);
gaurav ranac3a50422015-02-27 09:45:35 +0530698 if (ret != 0)
699 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530700 key_found = 1;
701 }
702#endif
703
704#if defined(CONFIG_FSL_ISBC_KEY_EXT)
705 if (!key_found && check_ie(img)) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530706 ret = read_validate_ie_tbl(img);
707 if (ret != 0)
708 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530709 key_found = 1;
710 }
711#endif
Saksham Jain6121f082016-03-23 16:24:34 +0530712#ifndef CONFIG_ESBC_HDR_LS
713/* Single Key Feature not available in LS ESBC Header */
gaurav ranac3a50422015-02-27 09:45:35 +0530714 if (key_found == 0) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530715 ret = read_validate_single_key(img);
716 if (ret != 0)
717 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530718 key_found = 1;
719 }
Saksham Jain6121f082016-03-23 16:24:34 +0530720#endif
721 if (!key_found)
722 return ERROR_KEY_TABLE_NOT_FOUND;
gaurav ranac3a50422015-02-27 09:45:35 +0530723
724 /* check signaure */
725 if (get_key_len(img) == 2 * hdr->sign_len) {
726 /* check signature length */
727 if (!((hdr->sign_len == KEY_SIZE_BYTES / 4) ||
728 (hdr->sign_len == KEY_SIZE_BYTES / 2) ||
729 (hdr->sign_len == KEY_SIZE_BYTES)))
730 return ERROR_ESBC_CLIENT_HEADER_SIG_LEN;
731 } else {
732 return ERROR_ESBC_CLIENT_HEADER_KEY_LEN_NOT_TWICE_SIG_LEN;
733 }
734
735 memcpy(&img->img_sign, esbc + hdr->psign, hdr->sign_len);
Saksham Jain6121f082016-03-23 16:24:34 +0530736/* No SG support in LS-CH3 */
737#ifndef CONFIG_ESBC_HDR_LS
gaurav ranac3a50422015-02-27 09:45:35 +0530738 /* No SG support */
739 if (hdr->sg_flag)
740 return ERROR_ESBC_CLIENT_HEADER_SG;
Saksham Jain6121f082016-03-23 16:24:34 +0530741#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530742
743 /* modulus most significant bit should be set */
744 k = (u8 *)&img->img_key;
745
746 if ((k[0] & 0x80) == 0)
747 return ERROR_ESBC_CLIENT_HEADER_KEY_MOD_1;
748
749 /* modulus value should be odd */
750 if ((k[get_key_len(img) / 2 - 1] & 0x1) == 0)
751 return ERROR_ESBC_CLIENT_HEADER_KEY_MOD_2;
752
753 /* Check signature value < modulus value */
754 s = (u8 *)&img->img_sign;
755
756 if (!(memcmp(s, k, hdr->sign_len) < 0))
757 return ERROR_ESBC_CLIENT_HEADER_SIG_KEY_MOD;
758
759 return ESBC_VALID_HDR;
760}
761
762static inline int str2longbe(const char *p, ulong *num)
763{
764 char *endptr;
765 ulong tmp;
766
767 if (!p) {
768 return 0;
769 } else {
770 tmp = simple_strtoul(p, &endptr, 16);
771 if (sizeof(ulong) == 4)
772 *num = cpu_to_be32(tmp);
773 else
774 *num = cpu_to_be64(tmp);
775 }
776
777 return *p != '\0' && *endptr == '\0';
778}
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530779/* Function to calculate the ESBC Image Hash
780 * and hash from Digital signature.
781 * The Two hash's are compared to yield the
782 * result of signature validation.
783 */
784static int calculate_cmp_img_sig(struct fsl_secboot_img_priv *img)
785{
786 int ret;
787 uint32_t key_len;
788 struct key_prop prop;
789#if !defined(USE_HOSTCC)
790 struct udevice *mod_exp_dev;
791#endif
792 ret = calc_esbchdr_esbc_hash(img);
793 if (ret)
794 return ret;
795
796 /* Construct encoded hash EM' wrt PKCSv1.5 */
797 construct_img_encoded_hash_second(img);
798
799 /* Fill prop structure for public key */
800 memset(&prop, 0, sizeof(struct key_prop));
801 key_len = get_key_len(img) / 2;
802 prop.modulus = img->img_key;
803 prop.public_exponent = img->img_key + key_len;
804 prop.num_bits = key_len * 8;
805 prop.exp_len = key_len;
806
807 ret = uclass_get_device(UCLASS_MOD_EXP, 0, &mod_exp_dev);
808 if (ret) {
809 printf("RSA: Can't find Modular Exp implementation\n");
810 return -EINVAL;
811 }
812
813 ret = rsa_mod_exp(mod_exp_dev, img->img_sign, img->hdr.sign_len,
814 &prop, img->img_encoded_hash);
815 if (ret)
816 return ret;
817
818 /*
819 * compare the encoded messages EM' and EM wrt RSA PKCSv1.5
820 * memcmp returns zero on success
821 * memcmp returns non-zero on failure
822 */
823 ret = memcmp(&img->img_encoded_hash_second, &img->img_encoded_hash,
824 img->hdr.sign_len);
825
826 if (ret)
827 return ERROR_ESBC_CLIENT_HASH_COMPARE_EM;
828
829 return 0;
830}
Udit Agarwal990a9972017-02-09 21:36:11 +0530831/* Function to initialize img priv and global data structure
832 */
833static int secboot_init(struct fsl_secboot_img_priv **img_ptr)
834{
835 *img_ptr = malloc(sizeof(struct fsl_secboot_img_priv));
836
837 struct fsl_secboot_img_priv *img = *img_ptr;
838
839 if (!img)
840 return -ENOMEM;
841 memset(img, 0, sizeof(struct fsl_secboot_img_priv));
842
843#if defined(CONFIG_FSL_ISBC_KEY_EXT)
844 if (glb.ie_addr)
845 img->ie_addr = glb.ie_addr;
846#endif
847 return 0;
848}
849
850
Saksham Jain04fcf522016-03-23 16:24:45 +0530851/* haddr - Address of the header of image to be validated.
852 * arg_hash_str - Option hash string. If provided, this
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400853 * overrides the key hash in the SFP fuses.
Saksham Jain04fcf522016-03-23 16:24:45 +0530854 * img_addr_ptr - Optional pointer to address of image to be validated.
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400855 * If non zero addr, this overrides the addr of image in header,
Saksham Jain04fcf522016-03-23 16:24:45 +0530856 * otherwise updated to image addr in header.
857 * Acts as both input and output of function.
858 * This pointer shouldn't be NULL.
859 */
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530860int fsl_secboot_validate(uintptr_t haddr, char *arg_hash_str,
Saksham Jain04fcf522016-03-23 16:24:45 +0530861 uintptr_t *img_addr_ptr)
gaurav ranac3a50422015-02-27 09:45:35 +0530862{
863 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
864 ulong hash[SHA256_BYTES/sizeof(ulong)];
865 char hash_str[NUM_HEX_CHARS + 1];
gaurav ranac3a50422015-02-27 09:45:35 +0530866 struct fsl_secboot_img_priv *img;
867 struct fsl_secboot_img_hdr *hdr;
868 void *esbc;
869 int ret, i, hash_cmd = 0;
870 u32 srk_hash[8];
gaurav ranac3a50422015-02-27 09:45:35 +0530871
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530872 if (arg_hash_str != NULL) {
873 const char *cp = arg_hash_str;
gaurav ranac3a50422015-02-27 09:45:35 +0530874 int i = 0;
875
876 if (*cp == '0' && *(cp + 1) == 'x')
877 cp += 2;
878
879 /* The input string expected is in hex, where
880 * each 4 bits would be represented by a hex
881 * sha256 hash is 256 bits long, which would mean
882 * num of characters = 256 / 4
883 */
884 if (strlen(cp) != SHA256_NIBBLES) {
885 printf("%s is not a 256 bits hex string as expected\n",
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530886 arg_hash_str);
gaurav ranac3a50422015-02-27 09:45:35 +0530887 return -1;
888 }
889
890 for (i = 0; i < sizeof(hash)/sizeof(ulong); i++) {
891 strncpy(hash_str, cp + (i * NUM_HEX_CHARS),
892 NUM_HEX_CHARS);
893 hash_str[NUM_HEX_CHARS] = '\0';
894 if (!str2longbe(hash_str, &hash[i])) {
895 printf("%s is not a 256 bits hex string ",
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530896 arg_hash_str);
gaurav ranac3a50422015-02-27 09:45:35 +0530897 return -1;
898 }
899 }
900
901 hash_cmd = 1;
902 }
903
Udit Agarwal990a9972017-02-09 21:36:11 +0530904 ret = secboot_init(&img);
905 if (ret)
906 goto exit;
gaurav ranac3a50422015-02-27 09:45:35 +0530907
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530908 /* Update the information in Private Struct */
gaurav ranac3a50422015-02-27 09:45:35 +0530909 hdr = &img->hdr;
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530910 img->ehdrloc = haddr;
Saksham Jain04fcf522016-03-23 16:24:45 +0530911 img->img_addr_ptr = img_addr_ptr;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530912 esbc = (u8 *)img->ehdrloc;
gaurav ranac3a50422015-02-27 09:45:35 +0530913
914 memcpy(hdr, esbc, sizeof(struct fsl_secboot_img_hdr));
915
916 /* read and validate esbc header */
917 ret = read_validate_esbc_client_header(img);
918
919 if (ret != ESBC_VALID_HDR) {
920 fsl_secboot_handle_error(ret);
921 goto exit;
922 }
923
924 /* SRKH present in SFP */
925 for (i = 0; i < NUM_SRKH_REGS; i++)
926 srk_hash[i] = srk_in32(&sfp_regs->srk_hash[i]);
927
928 /*
929 * Calculate hash of key obtained via offset present in
930 * ESBC uboot client hdr
931 */
932 ret = calc_img_key_hash(img);
933 if (ret) {
934 fsl_secblk_handle_error(ret);
935 goto exit;
936 }
937
938 /* Compare hash obtained above with SRK hash present in SFP */
939 if (hash_cmd)
940 ret = memcmp(&hash, &img->img_key_hash, SHA256_BYTES);
941 else
942 ret = memcmp(srk_hash, img->img_key_hash, SHA256_BYTES);
943
944#if defined(CONFIG_FSL_ISBC_KEY_EXT)
945 if (!hash_cmd && check_ie(img))
946 ret = 0;
947#endif
948
949 if (ret != 0) {
950 fsl_secboot_handle_error(ERROR_ESBC_CLIENT_HASH_COMPARE_KEY);
951 goto exit;
952 }
953
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530954 ret = calculate_cmp_img_sig(img);
gaurav ranac3a50422015-02-27 09:45:35 +0530955 if (ret) {
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530956 fsl_secboot_handle_error(ret);
gaurav ranac3a50422015-02-27 09:45:35 +0530957 goto exit;
958 }
959
gaurav ranac3a50422015-02-27 09:45:35 +0530960exit:
Udit Agarwal990a9972017-02-09 21:36:11 +0530961 /* Free Img as it was malloc'ed*/
962 free(img);
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530963 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530964}