blob: 34875d0b8f2572a527c060d763f88f2742c61473 [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.
Kshitiz Varshney295e07d2021-08-01 14:31:45 +02004 * Copyright 2021 NXP
gaurav ranac3a50422015-02-27 09:45:35 +05305 */
6
7#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -06008#include <dm.h>
Simon Glass8e201882020-05-10 11:39:54 -06009#include <flash.h>
gaurav ranac3a50422015-02-27 09:45:35 +053010#include <fsl_validate.h>
11#include <fsl_secboot_err.h>
12#include <fsl_sfp.h>
13#include <fsl_sec.h>
14#include <command.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
gaurav ranac3a50422015-02-27 09:45:35 +053016#include <malloc.h>
gaurav ranac3a50422015-02-27 09:45:35 +053017#include <u-boot/rsa-mod-exp.h>
18#include <hash.h>
19#include <fsl_secboot_err.h>
York Sunc4f047c2017-03-27 11:41:03 -070020#ifdef CONFIG_ARCH_LS1021A
gaurav ranac3a50422015-02-27 09:45:35 +053021#include <asm/arch/immap_ls102xa.h>
22#endif
23
24#define SHA256_BITS 256
25#define SHA256_BYTES (256/8)
26#define SHA256_NIBBLES (256/4)
27#define NUM_HEX_CHARS (sizeof(ulong) * 2)
28
Aneesh Bansal24b8fae2015-12-08 14:14:13 +053029#define CHECK_KEY_LEN(key_len) (((key_len) == 2 * KEY_SIZE_BYTES / 4) || \
30 ((key_len) == 2 * KEY_SIZE_BYTES / 2) || \
31 ((key_len) == 2 * KEY_SIZE_BYTES))
Udit Agarwal990a9972017-02-09 21:36:11 +053032#if defined(CONFIG_FSL_ISBC_KEY_EXT)
33/* Global data structure */
34static struct fsl_secboot_glb glb;
35#endif
Aneesh Bansal24b8fae2015-12-08 14:14:13 +053036
gaurav ranac3a50422015-02-27 09:45:35 +053037/* This array contains DER value for SHA-256 */
38static const u8 hash_identifier[] = { 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60,
39 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00,
40 0x04, 0x20
41 };
42
43static u8 hash_val[SHA256_BYTES];
Saksham Jain6121f082016-03-23 16:24:34 +053044
45#ifdef CONFIG_ESBC_HDR_LS
46/* New Barker Code for LS ESBC Header */
47static const u8 barker_code[ESBC_BARKER_LEN] = { 0x12, 0x19, 0x20, 0x01 };
48#else
gaurav ranac3a50422015-02-27 09:45:35 +053049static const u8 barker_code[ESBC_BARKER_LEN] = { 0x68, 0x39, 0x27, 0x81 };
Saksham Jain6121f082016-03-23 16:24:34 +053050#endif
gaurav ranac3a50422015-02-27 09:45:35 +053051
52void branch_to_self(void) __attribute__ ((noreturn));
53
54/*
55 * This function will put core in infinite loop.
56 * This will be called when the ESBC can not proceed further due
57 * to some unknown errors.
58 */
59void branch_to_self(void)
60{
61 printf("Core is in infinite loop due to errors.\n");
62self:
63 goto self;
64}
65
66#if defined(CONFIG_FSL_ISBC_KEY_EXT)
67static u32 check_ie(struct fsl_secboot_img_priv *img)
68{
Udit Agarwal990a9972017-02-09 21:36:11 +053069 if (img->hdr.ie_flag & IE_FLAG_MASK)
gaurav ranac3a50422015-02-27 09:45:35 +053070 return 1;
71
72 return 0;
73}
74
75/* This function returns the CSF Header Address of uboot
76 * For MPC85xx based platforms, the LAW mapping for NOR
77 * flash changes in uboot code. Hence the offset needs
78 * to be calculated and added to the new NOR flash base
79 * address
80 */
81#if defined(CONFIG_MPC85xx)
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053082int get_csf_base_addr(u32 *csf_addr, u32 *flash_base_addr)
gaurav ranac3a50422015-02-27 09:45:35 +053083{
84 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
85 u32 csf_hdr_addr = in_be32(&gur->scratchrw[0]);
86 u32 csf_flash_offset = csf_hdr_addr & ~(CONFIG_SYS_PBI_FLASH_BASE);
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053087 u32 flash_addr, addr;
gaurav ranac3a50422015-02-27 09:45:35 +053088 int found = 0;
89 int i = 0;
90
91 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
92 flash_addr = flash_info[i].start[0];
93 addr = flash_info[i].start[0] + csf_flash_offset;
94 if (memcmp((u8 *)addr, barker_code, ESBC_BARKER_LEN) == 0) {
Aneesh Bansal9c028fa2015-09-17 16:16:34 +053095 debug("Barker found on addr %x\n", addr);
gaurav ranac3a50422015-02-27 09:45:35 +053096 found = 1;
97 break;
98 }
99 }
100
101 if (!found)
102 return -1;
103
104 *csf_addr = addr;
105 *flash_base_addr = flash_addr;
106
107 return 0;
108}
109#else
110/* For platforms like LS1020, correct flash address is present in
111 * the header. So the function reqturns flash base address as 0
112 */
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530113int get_csf_base_addr(u32 *csf_addr, u32 *flash_base_addr)
gaurav ranac3a50422015-02-27 09:45:35 +0530114{
115 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
116 u32 csf_hdr_addr = in_be32(&gur->scratchrw[0]);
117
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530118 if (memcmp((u8 *)(uintptr_t)csf_hdr_addr,
119 barker_code, ESBC_BARKER_LEN))
gaurav ranac3a50422015-02-27 09:45:35 +0530120 return -1;
121
122 *csf_addr = csf_hdr_addr;
123 *flash_base_addr = 0;
124 return 0;
125}
126#endif
127
Udit Agarwal990a9972017-02-09 21:36:11 +0530128#if defined(CONFIG_ESBC_HDR_LS)
129static int get_ie_info_addr(uintptr_t *ie_addr)
130{
131 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
132 /* For LS-CH3, the address of IE Table is
133 * stated in Scratch13 and scratch14 of DCFG.
134 * Bootrom validates this table while validating uboot.
135 * DCFG is LE*/
136 *ie_addr = in_le32(&gur->scratchrw[SCRATCH_IE_HIGH_ADR - 1]);
137 *ie_addr = *ie_addr << 32;
138 *ie_addr |= in_le32(&gur->scratchrw[SCRATCH_IE_LOW_ADR - 1]);
139 return 0;
140}
141#else /* CONFIG_ESBC_HDR_LS */
142static int get_ie_info_addr(uintptr_t *ie_addr)
gaurav ranac3a50422015-02-27 09:45:35 +0530143{
144 struct fsl_secboot_img_hdr *hdr;
145 struct fsl_secboot_sg_table *sg_tbl;
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530146 u32 flash_base_addr, csf_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530147
148 if (get_csf_base_addr(&csf_addr, &flash_base_addr))
149 return -1;
150
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530151 hdr = (struct fsl_secboot_img_hdr *)(uintptr_t)csf_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530152
153 /* For SoC's with Trust Architecture v1 with corenet bus
154 * the sg table field in CSF header has absolute address
155 * for sg table in memory. In other Trust Architecture,
156 * this field specifies the offset of sg table from the
157 * base address of CSF Header
158 */
159#if defined(CONFIG_FSL_TRUST_ARCH_v1) && defined(CONFIG_FSL_CORENET)
160 sg_tbl = (struct fsl_secboot_sg_table *)
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530161 (((u32)hdr->psgtable & ~(CONFIG_SYS_PBI_FLASH_BASE)) +
gaurav ranac3a50422015-02-27 09:45:35 +0530162 flash_base_addr);
163#else
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530164 sg_tbl = (struct fsl_secboot_sg_table *)(uintptr_t)(csf_addr +
Aneesh Bansal9c028fa2015-09-17 16:16:34 +0530165 (u32)hdr->psgtable);
gaurav ranac3a50422015-02-27 09:45:35 +0530166#endif
167
168 /* IE Key Table is the first entry in the SG Table */
169#if defined(CONFIG_MPC85xx)
Udit Agarwal990a9972017-02-09 21:36:11 +0530170 *ie_addr = (uintptr_t)((sg_tbl->src_addr &
171 ~(CONFIG_SYS_PBI_FLASH_BASE)) +
172 flash_base_addr);
gaurav ranac3a50422015-02-27 09:45:35 +0530173#else
Udit Agarwal990a9972017-02-09 21:36:11 +0530174 *ie_addr = (uintptr_t)sg_tbl->src_addr;
gaurav ranac3a50422015-02-27 09:45:35 +0530175#endif
176
Udit Agarwal990a9972017-02-09 21:36:11 +0530177 debug("IE Table address is %lx\n", *ie_addr);
gaurav ranac3a50422015-02-27 09:45:35 +0530178 return 0;
179}
Udit Agarwal990a9972017-02-09 21:36:11 +0530180#endif /* CONFIG_ESBC_HDR_LS */
gaurav ranac3a50422015-02-27 09:45:35 +0530181#endif
182
183#ifdef CONFIG_KEY_REVOCATION
184/* This function checks srk_table_flag in header and set/reset srk_flag.*/
185static u32 check_srk(struct fsl_secboot_img_priv *img)
186{
Saksham Jain6121f082016-03-23 16:24:34 +0530187#ifdef CONFIG_ESBC_HDR_LS
Udit Agarwal990a9972017-02-09 21:36:11 +0530188 /* In LS, No SRK Flag as SRK is always present if IE not present*/
189#if defined(CONFIG_FSL_ISBC_KEY_EXT)
190 return !check_ie(img);
191#endif
Saksham Jain6121f082016-03-23 16:24:34 +0530192 return 1;
193#else
gaurav ranac3a50422015-02-27 09:45:35 +0530194 if (img->hdr.len_kr.srk_table_flag & SRK_FLAG)
195 return 1;
196
197 return 0;
Saksham Jain6121f082016-03-23 16:24:34 +0530198#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530199}
200
201/* This function returns ospr's key_revoc values.*/
202static u32 get_key_revoc(void)
203{
204 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
205 return (sfp_in32(&sfp_regs->ospr) & OSPR_KEY_REVOC_MASK) >>
206 OSPR_KEY_REVOC_SHIFT;
207}
208
209/* This function checks if selected key is revoked or not.*/
210static u32 is_key_revoked(u32 keynum, u32 rev_flag)
211{
212 if (keynum == UNREVOCABLE_KEY)
213 return 0;
214
215 if ((u32)(1 << (ALIGN_REVOC_KEY - keynum)) & rev_flag)
216 return 1;
217
218 return 0;
219}
220
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530221/* It read validates srk_table key lengths.*/
222static u32 read_validate_srk_tbl(struct fsl_secboot_img_priv *img)
gaurav ranac3a50422015-02-27 09:45:35 +0530223{
224 int i = 0;
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530225 u32 ret, key_num, key_revoc_flag, size;
226 struct fsl_secboot_img_hdr *hdr = &img->hdr;
227 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
228
229 if ((hdr->len_kr.num_srk == 0) ||
230 (hdr->len_kr.num_srk > MAX_KEY_ENTRIES))
231 return ERROR_ESBC_CLIENT_HEADER_INVALID_SRK_NUM_ENTRY;
232
233 key_num = hdr->len_kr.srk_sel;
234 if (key_num == 0 || key_num > hdr->len_kr.num_srk)
235 return ERROR_ESBC_CLIENT_HEADER_INVALID_KEY_NUM;
236
237 /* Get revoc key from sfp */
238 key_revoc_flag = get_key_revoc();
239 ret = is_key_revoked(key_num, key_revoc_flag);
240 if (ret)
241 return ERROR_ESBC_CLIENT_HEADER_KEY_REVOKED;
242
243 size = hdr->len_kr.num_srk * sizeof(struct srk_table);
244
245 memcpy(&img->srk_tbl, esbc + hdr->srk_tbl_off, size);
246
247 for (i = 0; i < hdr->len_kr.num_srk; i++) {
248 if (!CHECK_KEY_LEN(img->srk_tbl[i].key_len))
gaurav ranac3a50422015-02-27 09:45:35 +0530249 return ERROR_ESBC_CLIENT_HEADER_INV_SRK_ENTRY_KEYLEN;
250 }
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530251
252 img->key_len = img->srk_tbl[key_num - 1].key_len;
253
254 memcpy(&img->img_key, &(img->srk_tbl[key_num - 1].pkey),
255 img->key_len);
256
gaurav ranac3a50422015-02-27 09:45:35 +0530257 return 0;
258}
259#endif
260
Saksham Jain6121f082016-03-23 16:24:34 +0530261#ifndef CONFIG_ESBC_HDR_LS
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530262static u32 read_validate_single_key(struct fsl_secboot_img_priv *img)
263{
264 struct fsl_secboot_img_hdr *hdr = &img->hdr;
265 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
266
267 /* check key length */
268 if (!CHECK_KEY_LEN(hdr->key_len))
269 return ERROR_ESBC_CLIENT_HEADER_KEY_LEN;
270
271 memcpy(&img->img_key, esbc + hdr->pkey, hdr->key_len);
272
273 img->key_len = hdr->key_len;
274
275 return 0;
276}
Saksham Jain6121f082016-03-23 16:24:34 +0530277#endif /* CONFIG_ESBC_HDR_LS */
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530278
279#if defined(CONFIG_FSL_ISBC_KEY_EXT)
Udit Agarwal990a9972017-02-09 21:36:11 +0530280
281static void install_ie_tbl(uintptr_t ie_tbl_addr,
282 struct fsl_secboot_img_priv *img)
283{
284 /* Copy IE tbl to Global Data */
285 memcpy(&glb.ie_tbl, (u8 *)ie_tbl_addr, sizeof(struct ie_key_info));
286 img->ie_addr = (uintptr_t)&glb.ie_tbl;
287 glb.ie_addr = img->ie_addr;
288}
289
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530290static u32 read_validate_ie_tbl(struct fsl_secboot_img_priv *img)
291{
292 struct fsl_secboot_img_hdr *hdr = &img->hdr;
293 u32 ie_key_len, ie_revoc_flag, ie_num;
294 struct ie_key_info *ie_info;
295
Udit Agarwal990a9972017-02-09 21:36:11 +0530296 if (!img->ie_addr) {
297 if (get_ie_info_addr(&img->ie_addr))
298 return ERROR_IE_TABLE_NOT_FOUND;
299 else
300 install_ie_tbl(img->ie_addr, img);
301 }
302
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530303 ie_info = (struct ie_key_info *)(uintptr_t)img->ie_addr;
304 if (ie_info->num_keys == 0 || ie_info->num_keys > 32)
305 return ERROR_ESBC_CLIENT_HEADER_INVALID_IE_NUM_ENTRY;
306
307 ie_num = hdr->ie_key_sel;
308 if (ie_num == 0 || ie_num > ie_info->num_keys)
309 return ERROR_ESBC_CLIENT_HEADER_INVALID_IE_KEY_NUM;
310
311 ie_revoc_flag = ie_info->key_revok;
312 if ((u32)(1 << (ie_num - 1)) & ie_revoc_flag)
313 return ERROR_ESBC_CLIENT_HEADER_IE_KEY_REVOKED;
314
315 ie_key_len = ie_info->ie_key_tbl[ie_num - 1].key_len;
316
317 if (!CHECK_KEY_LEN(ie_key_len))
318 return ERROR_ESBC_CLIENT_HEADER_INV_IE_ENTRY_KEYLEN;
319
320 memcpy(&img->img_key, &(ie_info->ie_key_tbl[ie_num - 1].pkey),
321 ie_key_len);
322
323 img->key_len = ie_key_len;
324 return 0;
325}
326#endif
327
328
gaurav ranac3a50422015-02-27 09:45:35 +0530329/* This function return length of public key.*/
330static inline u32 get_key_len(struct fsl_secboot_img_priv *img)
331{
332 return img->key_len;
333}
334
335/*
336 * Handles the ESBC uboot client header verification failure.
337 * This function handles all the errors which might occur in the
338 * parsing and checking of ESBC uboot client header. It will also
339 * set the error bits in the SEC_MON.
340 */
341static void fsl_secboot_header_verification_failure(void)
342{
gaurav ranac3a50422015-02-27 09:45:35 +0530343 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
gaurav ranac3a50422015-02-27 09:45:35 +0530344
345 /* 29th bit of OSPR is ITS */
346 u32 its = sfp_in32(&sfp_regs->ospr) >> 2;
347
Sumit Gargbc17f982016-08-31 08:54:15 -0400348 if (its == 1)
349 set_sec_mon_state(HPSR_SSM_ST_SOFT_FAIL);
350 else
351 set_sec_mon_state(HPSR_SSM_ST_NON_SECURE);
gaurav ranac3a50422015-02-27 09:45:35 +0530352
353 printf("Generating reset request\n");
354 do_reset(NULL, 0, 0, NULL);
Saksham Jain7f048b32016-03-23 16:24:44 +0530355 /* If reset doesn't coocur, halt execution */
356 do_esbc_halt(NULL, 0, 0, NULL);
gaurav ranac3a50422015-02-27 09:45:35 +0530357}
358
359/*
360 * Handles the ESBC uboot client image verification failure.
361 * This function handles all the errors which might occur in the
362 * public key hash comparison and signature verification of
363 * ESBC uboot client image. It will also
364 * set the error bits in the SEC_MON.
365 */
366static void fsl_secboot_image_verification_failure(void)
367{
gaurav ranac3a50422015-02-27 09:45:35 +0530368 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
gaurav ranac3a50422015-02-27 09:45:35 +0530369
Aneesh Bansal52b4b2d2015-10-12 22:05:50 +0530370 u32 its = (sfp_in32(&sfp_regs->ospr) & ITS_MASK) >> ITS_BIT;
gaurav ranac3a50422015-02-27 09:45:35 +0530371
Sumit Gargbc17f982016-08-31 08:54:15 -0400372 if (its == 1) {
373 set_sec_mon_state(HPSR_SSM_ST_SOFT_FAIL);
gaurav ranac3a50422015-02-27 09:45:35 +0530374
Sumit Gargbc17f982016-08-31 08:54:15 -0400375 printf("Generating reset request\n");
376 do_reset(NULL, 0, 0, NULL);
377 /* If reset doesn't coocur, halt execution */
378 do_esbc_halt(NULL, 0, 0, NULL);
Saksham Jain7f048b32016-03-23 16:24:44 +0530379
Sumit Gargbc17f982016-08-31 08:54:15 -0400380 } else {
381 set_sec_mon_state(HPSR_SSM_ST_NON_SECURE);
gaurav ranac3a50422015-02-27 09:45:35 +0530382 }
383}
384
385static void fsl_secboot_bootscript_parse_failure(void)
386{
387 fsl_secboot_header_verification_failure();
388}
389
390/*
391 * Handles the errors in esbc boot.
392 * This function handles all the errors which might occur in the
393 * esbc boot phase. It will call the appropriate api to log the
394 * errors and set the error bits in the SEC_MON.
395 */
396void fsl_secboot_handle_error(int error)
397{
Ruchika Guptad6b89202017-04-17 18:07:17 +0530398#ifndef CONFIG_SPL_BUILD
gaurav ranac3a50422015-02-27 09:45:35 +0530399 const struct fsl_secboot_errcode *e;
400
401 for (e = fsl_secboot_errcodes; e->errcode != ERROR_ESBC_CLIENT_MAX;
402 e++) {
403 if (e->errcode == error)
404 printf("ERROR :: %x :: %s\n", error, e->name);
405 }
Ruchika Guptad6b89202017-04-17 18:07:17 +0530406#else
407 printf("ERROR :: %x\n", error);
408#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530409
Aneesh Bansal8a47d5c2016-01-22 16:37:28 +0530410 /* If Boot Mode is secure, transition the SNVS state and issue
411 * reset based on type of failure and ITS setting.
412 * If Boot mode is non-secure, return from this function.
413 */
414 if (fsl_check_boot_mode_secure() == 0)
415 return;
416
gaurav ranac3a50422015-02-27 09:45:35 +0530417 switch (error) {
418 case ERROR_ESBC_CLIENT_HEADER_BARKER:
419 case ERROR_ESBC_CLIENT_HEADER_IMG_SIZE:
420 case ERROR_ESBC_CLIENT_HEADER_KEY_LEN:
421 case ERROR_ESBC_CLIENT_HEADER_SIG_LEN:
422 case ERROR_ESBC_CLIENT_HEADER_KEY_LEN_NOT_TWICE_SIG_LEN:
423 case ERROR_ESBC_CLIENT_HEADER_KEY_MOD_1:
424 case ERROR_ESBC_CLIENT_HEADER_KEY_MOD_2:
425 case ERROR_ESBC_CLIENT_HEADER_SIG_KEY_MOD:
426 case ERROR_ESBC_CLIENT_HEADER_SG_ESBC_EP:
427 case ERROR_ESBC_CLIENT_HEADER_SG_ENTIRES_BAD:
Saksham Jain6121f082016-03-23 16:24:34 +0530428 case ERROR_KEY_TABLE_NOT_FOUND:
gaurav ranac3a50422015-02-27 09:45:35 +0530429#ifdef CONFIG_KEY_REVOCATION
430 case ERROR_ESBC_CLIENT_HEADER_KEY_REVOKED:
431 case ERROR_ESBC_CLIENT_HEADER_INVALID_SRK_NUM_ENTRY:
432 case ERROR_ESBC_CLIENT_HEADER_INVALID_KEY_NUM:
433 case ERROR_ESBC_CLIENT_HEADER_INV_SRK_ENTRY_KEYLEN:
434#endif
435#if defined(CONFIG_FSL_ISBC_KEY_EXT)
436 /*@fallthrough@*/
437 case ERROR_ESBC_CLIENT_HEADER_IE_KEY_REVOKED:
438 case ERROR_ESBC_CLIENT_HEADER_INVALID_IE_NUM_ENTRY:
439 case ERROR_ESBC_CLIENT_HEADER_INVALID_IE_KEY_NUM:
440 case ERROR_ESBC_CLIENT_HEADER_INV_IE_ENTRY_KEYLEN:
441 case ERROR_IE_TABLE_NOT_FOUND:
442#endif
443 fsl_secboot_header_verification_failure();
444 break;
445 case ERROR_ESBC_SEC_RESET:
446 case ERROR_ESBC_SEC_DEQ:
447 case ERROR_ESBC_SEC_ENQ:
448 case ERROR_ESBC_SEC_DEQ_TO:
449 case ERROR_ESBC_SEC_JOBQ_STATUS:
450 case ERROR_ESBC_CLIENT_HASH_COMPARE_KEY:
451 case ERROR_ESBC_CLIENT_HASH_COMPARE_EM:
452 fsl_secboot_image_verification_failure();
453 break;
454 case ERROR_ESBC_MISSING_BOOTM:
455 fsl_secboot_bootscript_parse_failure();
456 break;
457 case ERROR_ESBC_WRONG_CMD:
458 default:
459 branch_to_self();
460 break;
461 }
462}
463
464static void fsl_secblk_handle_error(int error)
465{
466 switch (error) {
467 case ERROR_ESBC_SEC_ENQ:
468 fsl_secboot_handle_error(ERROR_ESBC_SEC_ENQ);
469 break;
470 case ERROR_ESBC_SEC_DEQ:
471 fsl_secboot_handle_error(ERROR_ESBC_SEC_DEQ);
472 break;
473 case ERROR_ESBC_SEC_DEQ_TO:
474 fsl_secboot_handle_error(ERROR_ESBC_SEC_DEQ_TO);
475 break;
476 default:
477 printf("Job Queue Output status %x\n", error);
478 fsl_secboot_handle_error(ERROR_ESBC_SEC_JOBQ_STATUS);
479 break;
480 }
481}
482
483/*
484 * Calculate hash of key obtained via offset present in ESBC uboot
485 * client hdr. This function calculates the hash of key which is obtained
486 * through offset present in ESBC uboot client header.
487 */
488static int calc_img_key_hash(struct fsl_secboot_img_priv *img)
489{
490 struct hash_algo *algo;
491 void *ctx;
492 int i, srk = 0;
493 int ret = 0;
494 const char *algo_name = "sha256";
495
496 /* Calculate hash of the esbc key */
497 ret = hash_progressive_lookup_algo(algo_name, &algo);
498 if (ret)
499 return ret;
500
501 ret = algo->hash_init(algo, &ctx);
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200502 if (ret)
gaurav ranac3a50422015-02-27 09:45:35 +0530503 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530504 /* 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;
gaurav ranac3a50422015-02-27 09:45:35 +0530518 /* Copy hash at destination buffer */
519 ret = algo->hash_finish(algo, ctx, hash_val, algo->digest_size);
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200520 if (ret) {
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200521 free(ctx);
gaurav ranac3a50422015-02-27 09:45:35 +0530522 return ret;
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200523 }
gaurav ranac3a50422015-02-27 09:45:35 +0530524 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 */
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200550 if (ret)
gaurav ranac3a50422015-02-27 09:45:35 +0530551 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);
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200556 if (ret)
gaurav ranac3a50422015-02-27 09:45:35 +0530557 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
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200584 if (ret)
gaurav ranac3a50422015-02-27 09:45:35 +0530585 return ret;
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200586 if (!key_hash) {
587 free(ctx);
Saksham Jain6121f082016-03-23 16:24:34 +0530588 return ERROR_KEY_TABLE_NOT_FOUND;
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200589 }
gaurav ranac3a50422015-02-27 09:45:35 +0530590 /* Update hash for actual Image */
591 ret = algo->hash_update(algo, ctx,
Saksham Jain04fcf522016-03-23 16:24:45 +0530592 (u8 *)(*(img->img_addr_ptr)), img->img_size, 1);
Kshitiz Varshneyc4686322021-09-19 17:09:53 +0200593 if (ret)
gaurav ranac3a50422015-02-27 09:45:35 +0530594 return ret;
595
596 /* Copy hash at destination buffer */
597 ret = algo->hash_finish(algo, ctx, hash_val, algo->digest_size);
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200598 if (ret) {
599 free(ctx);
gaurav ranac3a50422015-02-27 09:45:35 +0530600 return ret;
Kshitiz Varshney295e07d2021-08-01 14:31:45 +0200601 }
gaurav ranac3a50422015-02-27 09:45:35 +0530602 return 0;
603}
604
605/*
606 * Construct encoded hash EM' wrt PKCSv1.5. This function calculates the
607 * pointers for padding, DER value and hash. And finally, constructs EM'
608 * which includes hash of complete CSF header and ESBC image. If SG flag
609 * is on, hash of SG table and entries is also included.
610 */
611static void construct_img_encoded_hash_second(struct fsl_secboot_img_priv *img)
612{
613 /*
614 * RSA PKCSv1.5 encoding format for encoded message is below
615 * EM = 0x0 || 0x1 || PS || 0x0 || DER || Hash
616 * PS is Padding String
617 * DER is DER value for SHA-256
618 * Hash is SHA-256 hash
619 * *********************************************************
620 * representative points to first byte of EM initially and is
621 * filled with 0x0
622 * representative is incremented by 1 and second byte is filled
623 * with 0x1
624 * padding points to third byte of EM
625 * digest points to full length of EM - 32 bytes
626 * hash_id (DER value) points to 19 bytes before pDigest
627 * separator is one byte which separates padding and DER
628 */
629
630 size_t len;
631 u8 *representative;
632 u8 *padding, *digest;
633 u8 *hash_id, *separator;
634 int i;
635
636 len = (get_key_len(img) / 2) - 1;
637 representative = img->img_encoded_hash_second;
638 representative[0] = 0;
639 representative[1] = 1; /* block type 1 */
640
641 padding = &representative[2];
642 digest = &representative[1] + len - 32;
643 hash_id = digest - sizeof(hash_identifier);
644 separator = hash_id - 1;
645
646 /* fill padding area pointed by padding with 0xff */
647 memset(padding, 0xff, separator - padding);
648
649 /* fill byte pointed by separator */
650 *separator = 0;
651
652 /* fill SHA-256 DER value pointed by HashId */
653 memcpy(hash_id, hash_identifier, sizeof(hash_identifier));
654
655 /* fill hash pointed by Digest */
656 for (i = 0; i < SHA256_BYTES; i++)
657 digest[i] = hash_val[i];
658}
659
660/*
661 * Reads and validates the ESBC client header.
662 * This function reads key and signature from the ESBC client header.
663 * If Scatter/Gather flag is on, lengths and offsets of images
664 * present as SG entries are also read. This function also checks
665 * whether the header is valid or not.
666 */
667static int read_validate_esbc_client_header(struct fsl_secboot_img_priv *img)
668{
gaurav ranac3a50422015-02-27 09:45:35 +0530669 struct fsl_secboot_img_hdr *hdr = &img->hdr;
Aneesh Bansalb3e98202015-12-08 13:54:29 +0530670 void *esbc = (u8 *)(uintptr_t)img->ehdrloc;
gaurav ranac3a50422015-02-27 09:45:35 +0530671 u8 *k, *s;
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530672 u32 ret = 0;
673
gaurav ranac3a50422015-02-27 09:45:35 +0530674 int key_found = 0;
675
676 /* check barker code */
677 if (memcmp(hdr->barker, barker_code, ESBC_BARKER_LEN))
678 return ERROR_ESBC_CLIENT_HEADER_BARKER;
679
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530680 /* If Image Address is not passed as argument to function,
681 * then Address and Size must be read from the Header.
682 */
Saksham Jain04fcf522016-03-23 16:24:45 +0530683 if (*(img->img_addr_ptr) == 0) {
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530684 #ifdef CONFIG_ESBC_ADDR_64BIT
Saksham Jain04fcf522016-03-23 16:24:45 +0530685 *(img->img_addr_ptr) = hdr->pimg64;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530686 #else
Saksham Jain04fcf522016-03-23 16:24:45 +0530687 *(img->img_addr_ptr) = hdr->pimg;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530688 #endif
689 }
690
gaurav ranac3a50422015-02-27 09:45:35 +0530691 if (!hdr->img_size)
692 return ERROR_ESBC_CLIENT_HEADER_IMG_SIZE;
693
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530694 img->img_size = hdr->img_size;
695
gaurav ranac3a50422015-02-27 09:45:35 +0530696 /* Key checking*/
697#ifdef CONFIG_KEY_REVOCATION
698 if (check_srk(img)) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530699 ret = read_validate_srk_tbl(img);
gaurav ranac3a50422015-02-27 09:45:35 +0530700 if (ret != 0)
701 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530702 key_found = 1;
703 }
704#endif
705
706#if defined(CONFIG_FSL_ISBC_KEY_EXT)
707 if (!key_found && check_ie(img)) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530708 ret = read_validate_ie_tbl(img);
709 if (ret != 0)
710 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530711 key_found = 1;
712 }
713#endif
Saksham Jain6121f082016-03-23 16:24:34 +0530714#ifndef CONFIG_ESBC_HDR_LS
715/* Single Key Feature not available in LS ESBC Header */
gaurav ranac3a50422015-02-27 09:45:35 +0530716 if (key_found == 0) {
Aneesh Bansal24b8fae2015-12-08 14:14:13 +0530717 ret = read_validate_single_key(img);
718 if (ret != 0)
719 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530720 key_found = 1;
721 }
Saksham Jain6121f082016-03-23 16:24:34 +0530722#endif
723 if (!key_found)
724 return ERROR_KEY_TABLE_NOT_FOUND;
gaurav ranac3a50422015-02-27 09:45:35 +0530725
726 /* check signaure */
727 if (get_key_len(img) == 2 * hdr->sign_len) {
728 /* check signature length */
729 if (!((hdr->sign_len == KEY_SIZE_BYTES / 4) ||
730 (hdr->sign_len == KEY_SIZE_BYTES / 2) ||
731 (hdr->sign_len == KEY_SIZE_BYTES)))
732 return ERROR_ESBC_CLIENT_HEADER_SIG_LEN;
733 } else {
734 return ERROR_ESBC_CLIENT_HEADER_KEY_LEN_NOT_TWICE_SIG_LEN;
735 }
736
737 memcpy(&img->img_sign, esbc + hdr->psign, hdr->sign_len);
Saksham Jain6121f082016-03-23 16:24:34 +0530738/* No SG support in LS-CH3 */
739#ifndef CONFIG_ESBC_HDR_LS
gaurav ranac3a50422015-02-27 09:45:35 +0530740 /* No SG support */
741 if (hdr->sg_flag)
742 return ERROR_ESBC_CLIENT_HEADER_SG;
Saksham Jain6121f082016-03-23 16:24:34 +0530743#endif
gaurav ranac3a50422015-02-27 09:45:35 +0530744
745 /* modulus most significant bit should be set */
746 k = (u8 *)&img->img_key;
747
748 if ((k[0] & 0x80) == 0)
749 return ERROR_ESBC_CLIENT_HEADER_KEY_MOD_1;
750
751 /* modulus value should be odd */
752 if ((k[get_key_len(img) / 2 - 1] & 0x1) == 0)
753 return ERROR_ESBC_CLIENT_HEADER_KEY_MOD_2;
754
755 /* Check signature value < modulus value */
756 s = (u8 *)&img->img_sign;
757
758 if (!(memcmp(s, k, hdr->sign_len) < 0))
759 return ERROR_ESBC_CLIENT_HEADER_SIG_KEY_MOD;
760
761 return ESBC_VALID_HDR;
762}
763
764static inline int str2longbe(const char *p, ulong *num)
765{
766 char *endptr;
767 ulong tmp;
768
769 if (!p) {
770 return 0;
771 } else {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600772 tmp = hextoul(p, &endptr);
gaurav ranac3a50422015-02-27 09:45:35 +0530773 if (sizeof(ulong) == 4)
774 *num = cpu_to_be32(tmp);
775 else
776 *num = cpu_to_be64(tmp);
777 }
778
779 return *p != '\0' && *endptr == '\0';
780}
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530781/* Function to calculate the ESBC Image Hash
782 * and hash from Digital signature.
783 * The Two hash's are compared to yield the
784 * result of signature validation.
785 */
786static int calculate_cmp_img_sig(struct fsl_secboot_img_priv *img)
787{
788 int ret;
789 uint32_t key_len;
790 struct key_prop prop;
791#if !defined(USE_HOSTCC)
792 struct udevice *mod_exp_dev;
793#endif
794 ret = calc_esbchdr_esbc_hash(img);
795 if (ret)
796 return ret;
797
798 /* Construct encoded hash EM' wrt PKCSv1.5 */
799 construct_img_encoded_hash_second(img);
800
801 /* Fill prop structure for public key */
802 memset(&prop, 0, sizeof(struct key_prop));
803 key_len = get_key_len(img) / 2;
804 prop.modulus = img->img_key;
805 prop.public_exponent = img->img_key + key_len;
806 prop.num_bits = key_len * 8;
807 prop.exp_len = key_len;
808
809 ret = uclass_get_device(UCLASS_MOD_EXP, 0, &mod_exp_dev);
810 if (ret) {
811 printf("RSA: Can't find Modular Exp implementation\n");
812 return -EINVAL;
813 }
814
815 ret = rsa_mod_exp(mod_exp_dev, img->img_sign, img->hdr.sign_len,
816 &prop, img->img_encoded_hash);
817 if (ret)
818 return ret;
819
820 /*
821 * compare the encoded messages EM' and EM wrt RSA PKCSv1.5
822 * memcmp returns zero on success
823 * memcmp returns non-zero on failure
824 */
825 ret = memcmp(&img->img_encoded_hash_second, &img->img_encoded_hash,
826 img->hdr.sign_len);
827
828 if (ret)
829 return ERROR_ESBC_CLIENT_HASH_COMPARE_EM;
830
831 return 0;
832}
Udit Agarwal990a9972017-02-09 21:36:11 +0530833/* Function to initialize img priv and global data structure
834 */
835static int secboot_init(struct fsl_secboot_img_priv **img_ptr)
836{
837 *img_ptr = malloc(sizeof(struct fsl_secboot_img_priv));
838
839 struct fsl_secboot_img_priv *img = *img_ptr;
840
841 if (!img)
842 return -ENOMEM;
843 memset(img, 0, sizeof(struct fsl_secboot_img_priv));
844
845#if defined(CONFIG_FSL_ISBC_KEY_EXT)
846 if (glb.ie_addr)
847 img->ie_addr = glb.ie_addr;
848#endif
849 return 0;
850}
851
852
Saksham Jain04fcf522016-03-23 16:24:45 +0530853/* haddr - Address of the header of image to be validated.
854 * arg_hash_str - Option hash string. If provided, this
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400855 * overrides the key hash in the SFP fuses.
Saksham Jain04fcf522016-03-23 16:24:45 +0530856 * img_addr_ptr - Optional pointer to address of image to be validated.
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400857 * If non zero addr, this overrides the addr of image in header,
Saksham Jain04fcf522016-03-23 16:24:45 +0530858 * otherwise updated to image addr in header.
859 * Acts as both input and output of function.
860 * This pointer shouldn't be NULL.
861 */
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530862int fsl_secboot_validate(uintptr_t haddr, char *arg_hash_str,
Saksham Jain04fcf522016-03-23 16:24:45 +0530863 uintptr_t *img_addr_ptr)
gaurav ranac3a50422015-02-27 09:45:35 +0530864{
865 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
866 ulong hash[SHA256_BYTES/sizeof(ulong)];
867 char hash_str[NUM_HEX_CHARS + 1];
gaurav ranac3a50422015-02-27 09:45:35 +0530868 struct fsl_secboot_img_priv *img;
869 struct fsl_secboot_img_hdr *hdr;
870 void *esbc;
871 int ret, i, hash_cmd = 0;
872 u32 srk_hash[8];
gaurav ranac3a50422015-02-27 09:45:35 +0530873
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530874 if (arg_hash_str != NULL) {
875 const char *cp = arg_hash_str;
gaurav ranac3a50422015-02-27 09:45:35 +0530876 int i = 0;
877
878 if (*cp == '0' && *(cp + 1) == 'x')
879 cp += 2;
880
881 /* The input string expected is in hex, where
882 * each 4 bits would be represented by a hex
883 * sha256 hash is 256 bits long, which would mean
884 * num of characters = 256 / 4
885 */
886 if (strlen(cp) != SHA256_NIBBLES) {
887 printf("%s is not a 256 bits hex string as expected\n",
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530888 arg_hash_str);
gaurav ranac3a50422015-02-27 09:45:35 +0530889 return -1;
890 }
891
892 for (i = 0; i < sizeof(hash)/sizeof(ulong); i++) {
893 strncpy(hash_str, cp + (i * NUM_HEX_CHARS),
894 NUM_HEX_CHARS);
895 hash_str[NUM_HEX_CHARS] = '\0';
896 if (!str2longbe(hash_str, &hash[i])) {
897 printf("%s is not a 256 bits hex string ",
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530898 arg_hash_str);
gaurav ranac3a50422015-02-27 09:45:35 +0530899 return -1;
900 }
901 }
902
903 hash_cmd = 1;
904 }
905
Udit Agarwal990a9972017-02-09 21:36:11 +0530906 ret = secboot_init(&img);
907 if (ret)
908 goto exit;
gaurav ranac3a50422015-02-27 09:45:35 +0530909
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530910 /* Update the information in Private Struct */
gaurav ranac3a50422015-02-27 09:45:35 +0530911 hdr = &img->hdr;
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530912 img->ehdrloc = haddr;
Saksham Jain04fcf522016-03-23 16:24:45 +0530913 img->img_addr_ptr = img_addr_ptr;
Aneesh Bansal85921ba2015-12-08 14:14:15 +0530914 esbc = (u8 *)img->ehdrloc;
gaurav ranac3a50422015-02-27 09:45:35 +0530915
916 memcpy(hdr, esbc, sizeof(struct fsl_secboot_img_hdr));
917
918 /* read and validate esbc header */
919 ret = read_validate_esbc_client_header(img);
920
921 if (ret != ESBC_VALID_HDR) {
922 fsl_secboot_handle_error(ret);
923 goto exit;
924 }
925
926 /* SRKH present in SFP */
927 for (i = 0; i < NUM_SRKH_REGS; i++)
928 srk_hash[i] = srk_in32(&sfp_regs->srk_hash[i]);
929
930 /*
931 * Calculate hash of key obtained via offset present in
932 * ESBC uboot client hdr
933 */
934 ret = calc_img_key_hash(img);
935 if (ret) {
936 fsl_secblk_handle_error(ret);
937 goto exit;
938 }
939
940 /* Compare hash obtained above with SRK hash present in SFP */
941 if (hash_cmd)
942 ret = memcmp(&hash, &img->img_key_hash, SHA256_BYTES);
943 else
944 ret = memcmp(srk_hash, img->img_key_hash, SHA256_BYTES);
945
946#if defined(CONFIG_FSL_ISBC_KEY_EXT)
947 if (!hash_cmd && check_ie(img))
948 ret = 0;
949#endif
950
951 if (ret != 0) {
952 fsl_secboot_handle_error(ERROR_ESBC_CLIENT_HASH_COMPARE_KEY);
953 goto exit;
954 }
955
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530956 ret = calculate_cmp_img_sig(img);
gaurav ranac3a50422015-02-27 09:45:35 +0530957 if (ret) {
Aneesh Bansal9cd689c2015-12-08 14:14:14 +0530958 fsl_secboot_handle_error(ret);
gaurav ranac3a50422015-02-27 09:45:35 +0530959 goto exit;
960 }
961
gaurav ranac3a50422015-02-27 09:45:35 +0530962exit:
Udit Agarwal990a9972017-02-09 21:36:11 +0530963 /* Free Img as it was malloc'ed*/
964 free(img);
Aneesh Bansal2b379bf2015-12-08 14:14:12 +0530965 return ret;
gaurav ranac3a50422015-02-27 09:45:35 +0530966}