blob: 6bc74866eaedca3f17e78136ebad2c7c74178928 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass58fe7e52013-06-13 15:10:00 -07002/*
3 * Copyright (c) 2013, Google Inc.
Simon Glass58fe7e52013-06-13 15:10:00 -07004 */
5
Simon Glass0f2af882020-05-10 11:40:05 -06006#include <log.h>
Simon Glassfbabc0f2013-06-13 15:10:01 -07007#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06008#include <asm/global_data.h>
Simon Glassfbabc0f2013-06-13 15:10:01 -07009DECLARE_GLOBAL_DATA_PTR;
Simon Glass58fe7e52013-06-13 15:10:00 -070010#include <image.h>
Simon Glass48a1b682021-09-25 07:03:19 -060011#include <relocate.h>
Alexandru Gagniuc3ebd2002021-02-19 12:45:12 -060012#include <u-boot/ecdsa.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020013#include <u-boot/rsa.h>
Alexandru Gagniucdb182c42021-02-19 12:45:10 -060014#include <u-boot/hash-checksum.h>
Simon Glass58fe7e52013-06-13 15:10:00 -070015
Simon Glass56ab8d62013-06-13 15:10:09 -070016#define IMAGE_MAX_HASHED_NODES 100
17
Heiko Schocheredaf9b12014-03-03 12:19:26 +010018struct checksum_algo checksum_algos[] = {
Sean Anderson70481212024-02-15 12:12:18 -050019#if CONFIG_IS_ENABLED(SHA1)
Heiko Schocheredaf9b12014-03-03 12:19:26 +010020 {
Masahiro Yamada79f3c592017-10-23 10:03:40 +090021 .name = "sha1",
22 .checksum_len = SHA1_SUM_LEN,
23 .der_len = SHA1_DER_LEN,
24 .der_prefix = sha1_der_prefix,
Masahiro Yamada79f3c592017-10-23 10:03:40 +090025 .calculate = hash_calculate,
Heiko Schocheredaf9b12014-03-03 12:19:26 +010026 },
Sean Anderson70481212024-02-15 12:12:18 -050027#endif
28#if CONFIG_IS_ENABLED(SHA256)
Heiko Schocheredaf9b12014-03-03 12:19:26 +010029 {
Masahiro Yamada79f3c592017-10-23 10:03:40 +090030 .name = "sha256",
31 .checksum_len = SHA256_SUM_LEN,
32 .der_len = SHA256_DER_LEN,
33 .der_prefix = sha256_der_prefix,
Masahiro Yamada79f3c592017-10-23 10:03:40 +090034 .calculate = hash_calculate,
Reuben Dowle1908fd92020-04-16 17:36:52 +120035 },
Sean Anderson70481212024-02-15 12:12:18 -050036#endif
37#if CONFIG_IS_ENABLED(SHA384)
Reuben Dowle1908fd92020-04-16 17:36:52 +120038 {
39 .name = "sha384",
40 .checksum_len = SHA384_SUM_LEN,
41 .der_len = SHA384_DER_LEN,
42 .der_prefix = sha384_der_prefix,
Reuben Dowle1908fd92020-04-16 17:36:52 +120043 .calculate = hash_calculate,
44 },
45#endif
Sean Anderson70481212024-02-15 12:12:18 -050046#if CONFIG_IS_ENABLED(SHA512)
Reuben Dowle1908fd92020-04-16 17:36:52 +120047 {
48 .name = "sha512",
49 .checksum_len = SHA512_SUM_LEN,
50 .der_len = SHA512_DER_LEN,
51 .der_prefix = sha512_der_prefix,
Reuben Dowle1908fd92020-04-16 17:36:52 +120052 .calculate = hash_calculate,
53 },
54#endif
Andrew Duda06ca6d62016-11-08 18:53:41 +000055
56};
57
Andrew Duda6616c822016-11-08 18:53:41 +000058struct checksum_algo *image_get_checksum_algo(const char *full_name)
59{
60 int i;
61 const char *name;
62
63 for (i = 0; i < ARRAY_SIZE(checksum_algos); i++) {
64 name = checksum_algos[i].name;
65 /* Make sure names match and next char is a comma */
66 if (!strncmp(name, full_name, strlen(name)) &&
67 full_name[strlen(name)] == ',')
68 return &checksum_algos[i];
Simon Glass35191a32013-06-13 15:10:02 -070069 }
Heiko Schocher4b817562014-03-03 12:19:27 +010070
Andrew Duda6616c822016-11-08 18:53:41 +000071 return NULL;
72}
Simon Glass58fe7e52013-06-13 15:10:00 -070073
Andrew Duda6616c822016-11-08 18:53:41 +000074struct crypto_algo *image_get_crypto_algo(const char *full_name)
Simon Glass58fe7e52013-06-13 15:10:00 -070075{
Alexandru Gagniucb04e9182021-07-14 17:05:39 -050076 struct crypto_algo *crypto, *end;
Andrew Duda6616c822016-11-08 18:53:41 +000077 const char *name;
78
79 /* Move name to after the comma */
80 name = strchr(full_name, ',');
81 if (!name)
82 return NULL;
83 name += 1;
Simon Glass58fe7e52013-06-13 15:10:00 -070084
Alexandru Gagniucb04e9182021-07-14 17:05:39 -050085 crypto = ll_entry_start(struct crypto_algo, cryptos);
86 end = ll_entry_end(struct crypto_algo, cryptos);
87 for (; crypto < end; crypto++) {
88 if (!strcmp(crypto->name, name))
89 return crypto;
90 }
91
92 /* Not found */
Simon Glass58fe7e52013-06-13 15:10:00 -070093 return NULL;
94}
Simon Glassfbabc0f2013-06-13 15:10:01 -070095
Philippe Reynes12468352018-11-14 13:51:00 +010096struct padding_algo *image_get_padding_algo(const char *name)
97{
Alexandru Gagniucf3b5e582021-08-18 17:49:02 -050098 struct padding_algo *padding, *end;
Philippe Reynes12468352018-11-14 13:51:00 +010099
100 if (!name)
101 return NULL;
102
Alexandru Gagniucf3b5e582021-08-18 17:49:02 -0500103 padding = ll_entry_start(struct padding_algo, paddings);
104 end = ll_entry_end(struct padding_algo, paddings);
105 for (; padding < end; padding++) {
106 if (!strcmp(padding->name, name))
107 return padding;
Philippe Reynes12468352018-11-14 13:51:00 +0100108 }
109
110 return NULL;
111}