blob: fbb2d35a7d5585f2b12f9d1028fe5b0f45db269f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass19c402a2013-06-13 15:10:02 -07002/*
3 * Copyright (c) 2013, Google Inc.
Simon Glass19c402a2013-06-13 15:10:02 -07004 */
5
Heiko Schocher29a23f92014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glass19c402a2013-06-13 15:10:02 -07007#include <common.h>
8#include <fdtdec.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Heiko Schocher29a23f92014-03-03 12:19:30 +010011#include <asm/types.h>
12#include <asm/byteorder.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090013#include <linux/errno.h>
Heiko Schocher29a23f92014-03-03 12:19:30 +010014#include <asm/types.h>
15#include <asm/unaligned.h>
Ruchika Guptac937ff62015-01-23 16:01:54 +053016#include <dm.h>
Heiko Schocher29a23f92014-03-03 12:19:30 +010017#else
18#include "fdt_host.h"
19#include "mkimage.h"
20#include <fdt_support.h>
21#endif
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +090022#include <linux/kconfig.h>
Ruchika Guptafc2f4242015-01-23 16:01:50 +053023#include <u-boot/rsa-mod-exp.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020024#include <u-boot/rsa.h>
Heiko Schocher29a23f92014-03-03 12:19:30 +010025
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +090026#ifndef __UBOOT__
27/*
28 * NOTE:
29 * Since host tools, like mkimage, make use of openssl library for
30 * RSA encryption, rsa_verify_with_pkey()/rsa_gen_key_prop() are
31 * of no use and should not be compiled in.
32 * So just turn off CONFIG_RSA_VERIFY_WITH_PKEY.
33 */
34
35#undef CONFIG_RSA_VERIFY_WITH_PKEY
36#endif
37
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +020038/* Default public exponent for backward compatibility */
39#define RSA_DEFAULT_PUBEXP 65537
40
Simon Glass19c402a2013-06-13 15:10:02 -070041/**
Andrew Dudada29f292016-11-08 18:53:40 +000042 * rsa_verify_padding() - Verify RSA message padding is valid
43 *
44 * Verify a RSA message's padding is consistent with PKCS1.5
45 * padding as described in the RSA PKCS#1 v2.1 standard.
46 *
47 * @msg: Padded message
48 * @pad_len: Number of expected padding bytes
49 * @algo: Checksum algo structure having information on DER encoding etc.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010050 * Return: 0 on success, != 0 on failure
Andrew Dudada29f292016-11-08 18:53:40 +000051 */
52static int rsa_verify_padding(const uint8_t *msg, const int pad_len,
53 struct checksum_algo *algo)
54{
55 int ff_len;
56 int ret;
57
58 /* first byte must be 0x00 */
59 ret = *msg++;
60 /* second byte must be 0x01 */
61 ret |= *msg++ ^ 0x01;
62 /* next ff_len bytes must be 0xff */
63 ff_len = pad_len - algo->der_len - 3;
64 ret |= *msg ^ 0xff;
65 ret |= memcmp(msg, msg+1, ff_len-1);
66 msg += ff_len;
67 /* next byte must be 0x00 */
68 ret |= *msg++;
69 /* next der_len bytes must match der_prefix */
70 ret |= memcmp(msg, algo->der_prefix, algo->der_len);
71
72 return ret;
73}
74
Philippe Reynes20031562018-11-14 13:51:00 +010075int padding_pkcs_15_verify(struct image_sign_info *info,
76 uint8_t *msg, int msg_len,
77 const uint8_t *hash, int hash_len)
78{
79 struct checksum_algo *checksum = info->checksum;
80 int ret, pad_len = msg_len - checksum->checksum_len;
81
82 /* Check pkcs1.5 padding bytes. */
83 ret = rsa_verify_padding(msg, pad_len, checksum);
84 if (ret) {
85 debug("In RSAVerify(): Padding check failed!\n");
86 return -EINVAL;
87 }
88
89 /* Check hash. */
90 if (memcmp((uint8_t *)msg + pad_len, hash, msg_len - pad_len)) {
91 debug("In RSAVerify(): Hash check failed!\n");
92 return -EACCES;
93 }
94
95 return 0;
96}
97
Alexandru Gagniucde41f0e2021-08-18 17:49:02 -050098#ifndef USE_HOSTCC
99U_BOOT_PADDING_ALGO(pkcs_15) = {
100 .name = "pkcs-1.5",
101 .verify = padding_pkcs_15_verify,
102};
103#endif
104
Simon Glass2bbed3f2021-09-25 19:43:23 -0600105#if CONFIG_IS_ENABLED(FIT_RSASSA_PSS)
Philippe Reynes061daa02018-11-14 13:51:01 +0100106static void u32_i2osp(uint32_t val, uint8_t *buf)
107{
108 buf[0] = (uint8_t)((val >> 24) & 0xff);
109 buf[1] = (uint8_t)((val >> 16) & 0xff);
110 buf[2] = (uint8_t)((val >> 8) & 0xff);
111 buf[3] = (uint8_t)((val >> 0) & 0xff);
112}
113
114/**
115 * mask_generation_function1() - generate an octet string
116 *
117 * Generate an octet string used to check rsa signature.
118 * It use an input octet string and a hash function.
119 *
120 * @checksum: A Hash function
121 * @seed: Specifies an input variable octet string
122 * @seed_len: Size of the input octet string
123 * @output: Specifies the output octet string
124 * @output_len: Size of the output octet string
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100125 * Return: 0 if the octet string was correctly generated, others on error
Philippe Reynes061daa02018-11-14 13:51:01 +0100126 */
127static int mask_generation_function1(struct checksum_algo *checksum,
128 uint8_t *seed, int seed_len,
129 uint8_t *output, int output_len)
130{
131 struct image_region region[2];
132 int ret = 0, i, i_output = 0, region_count = 2;
133 uint32_t counter = 0;
134 uint8_t buf_counter[4], *tmp;
135 int hash_len = checksum->checksum_len;
136
137 memset(output, 0, output_len);
138
139 region[0].data = seed;
140 region[0].size = seed_len;
141 region[1].data = &buf_counter[0];
142 region[1].size = 4;
143
144 tmp = malloc(hash_len);
145 if (!tmp) {
146 debug("%s: can't allocate array tmp\n", __func__);
147 ret = -ENOMEM;
148 goto out;
149 }
150
151 while (i_output < output_len) {
152 u32_i2osp(counter, &buf_counter[0]);
153
154 ret = checksum->calculate(checksum->name,
155 region, region_count,
156 tmp);
157 if (ret < 0) {
158 debug("%s: Error in checksum calculation\n", __func__);
159 goto out;
160 }
161
162 i = 0;
163 while ((i_output < output_len) && (i < hash_len)) {
164 output[i_output] = tmp[i];
165 i_output++;
166 i++;
167 }
168
169 counter++;
170 }
171
172out:
173 free(tmp);
174
175 return ret;
176}
177
178static int compute_hash_prime(struct checksum_algo *checksum,
179 uint8_t *pad, int pad_len,
180 uint8_t *hash, int hash_len,
181 uint8_t *salt, int salt_len,
182 uint8_t *hprime)
183{
184 struct image_region region[3];
185 int ret, region_count = 3;
186
187 region[0].data = pad;
188 region[0].size = pad_len;
189 region[1].data = hash;
190 region[1].size = hash_len;
191 region[2].data = salt;
192 region[2].size = salt_len;
193
194 ret = checksum->calculate(checksum->name, region, region_count, hprime);
195 if (ret < 0) {
196 debug("%s: Error in checksum calculation\n", __func__);
197 goto out;
198 }
199
200out:
201 return ret;
202}
203
Heiko Stuebner1a62c232020-06-18 16:23:26 +0200204/*
205 * padding_pss_verify() - verify the pss padding of a signature
206 *
207 * Only works with a rsa_pss_saltlen:-2 (default value) right now
208 * saltlen:-1 "set the salt length to the digest length" is currently
209 * not supported.
210 *
211 * @info: Specifies key and FIT information
212 * @msg: byte array of message, len equal to msg_len
213 * @msg_len: Message length
214 * @hash: Pointer to the expected hash
215 * @hash_len: Length of the hash
216 */
Philippe Reynes061daa02018-11-14 13:51:01 +0100217int padding_pss_verify(struct image_sign_info *info,
218 uint8_t *msg, int msg_len,
219 const uint8_t *hash, int hash_len)
220{
221 uint8_t *masked_db = NULL;
222 int masked_db_len = msg_len - hash_len - 1;
223 uint8_t *h = NULL, *hprime = NULL;
224 int h_len = hash_len;
225 uint8_t *db_mask = NULL;
226 int db_mask_len = masked_db_len;
227 uint8_t *db = NULL, *salt = NULL;
228 int db_len = masked_db_len, salt_len = msg_len - hash_len - 2;
229 uint8_t pad_zero[8] = { 0 };
230 int ret, i, leftmost_bits = 1;
231 uint8_t leftmost_mask;
232 struct checksum_algo *checksum = info->checksum;
233
234 /* first, allocate everything */
235 masked_db = malloc(masked_db_len);
236 h = malloc(h_len);
237 db_mask = malloc(db_mask_len);
238 db = malloc(db_len);
239 salt = malloc(salt_len);
240 hprime = malloc(hash_len);
241 if (!masked_db || !h || !db_mask || !db || !salt || !hprime) {
242 printf("%s: can't allocate some buffer\n", __func__);
243 ret = -ENOMEM;
244 goto out;
245 }
246
247 /* step 4: check if the last byte is 0xbc */
248 if (msg[msg_len - 1] != 0xbc) {
249 printf("%s: invalid pss padding (0xbc is missing)\n", __func__);
250 ret = -EINVAL;
251 goto out;
252 }
253
254 /* step 5 */
255 memcpy(masked_db, msg, masked_db_len);
256 memcpy(h, msg + masked_db_len, h_len);
257
258 /* step 6 */
259 leftmost_mask = (0xff >> (8 - leftmost_bits)) << (8 - leftmost_bits);
260 if (masked_db[0] & leftmost_mask) {
261 printf("%s: invalid pss padding ", __func__);
262 printf("(leftmost bit of maskedDB not zero)\n");
263 ret = -EINVAL;
264 goto out;
265 }
266
267 /* step 7 */
268 mask_generation_function1(checksum, h, h_len, db_mask, db_mask_len);
269
270 /* step 8 */
271 for (i = 0; i < db_len; i++)
272 db[i] = masked_db[i] ^ db_mask[i];
273
274 /* step 9 */
275 db[0] &= 0xff >> leftmost_bits;
276
277 /* step 10 */
278 if (db[0] != 0x01) {
279 printf("%s: invalid pss padding ", __func__);
280 printf("(leftmost byte of db isn't 0x01)\n");
281 ret = EINVAL;
282 goto out;
283 }
284
285 /* step 11 */
286 memcpy(salt, &db[1], salt_len);
287
288 /* step 12 & 13 */
289 compute_hash_prime(checksum, pad_zero, 8,
290 (uint8_t *)hash, hash_len,
291 salt, salt_len, hprime);
292
293 /* step 14 */
294 ret = memcmp(h, hprime, hash_len);
295
296out:
297 free(hprime);
298 free(salt);
299 free(db);
300 free(db_mask);
301 free(h);
302 free(masked_db);
303
304 return ret;
305}
Alexandru Gagniucde41f0e2021-08-18 17:49:02 -0500306
307#ifndef USE_HOSTCC
308U_BOOT_PADDING_ALGO(pss) = {
309 .name = "pss",
310 .verify = padding_pss_verify,
311};
312#endif
313
Philippe Reynes061daa02018-11-14 13:51:01 +0100314#endif
315
Andrew Dudada29f292016-11-08 18:53:40 +0000316/**
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530317 * rsa_verify_key() - Verify a signature against some data using RSA Key
Simon Glass19c402a2013-06-13 15:10:02 -0700318 *
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530319 * Verify a RSA PKCS1.5 signature against an expected hash using
320 * the RSA Key properties in prop structure.
321 *
Philippe Reynes20031562018-11-14 13:51:00 +0100322 * @info: Specifies key and FIT information
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530323 * @prop: Specifies key
324 * @sig: Signature
325 * @sig_len: Number of bytes in signature
326 * @hash: Pointer to the expected hash
Andrew Duda0c1d74f2016-11-08 18:53:41 +0000327 * @key_len: Number of bytes in rsa key
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100328 * Return: 0 if verified, -ve on error
Simon Glass19c402a2013-06-13 15:10:02 -0700329 */
Philippe Reynes20031562018-11-14 13:51:00 +0100330static int rsa_verify_key(struct image_sign_info *info,
331 struct key_prop *prop, const uint8_t *sig,
Heiko Schocher646257d2014-03-03 12:19:26 +0100332 const uint32_t sig_len, const uint8_t *hash,
Philippe Reynes20031562018-11-14 13:51:00 +0100333 const uint32_t key_len)
Simon Glass19c402a2013-06-13 15:10:02 -0700334{
Simon Glass19c402a2013-06-13 15:10:02 -0700335 int ret;
Ruchika Guptac937ff62015-01-23 16:01:54 +0530336#if !defined(USE_HOSTCC)
337 struct udevice *mod_exp_dev;
338#endif
Philippe Reynes20031562018-11-14 13:51:00 +0100339 struct checksum_algo *checksum = info->checksum;
340 struct padding_algo *padding = info->padding;
Philippe Reynesb02f2e72019-03-19 10:55:40 +0100341 int hash_len;
Simon Glass19c402a2013-06-13 15:10:02 -0700342
Philippe Reynesb560c702021-10-15 11:28:47 +0200343 if (!prop || !sig || !hash || !checksum || !padding)
Simon Glass19c402a2013-06-13 15:10:02 -0700344 return -EIO;
345
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530346 if (sig_len != (prop->num_bits / 8)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700347 debug("Signature is of incorrect length %d\n", sig_len);
348 return -EINVAL;
349 }
350
Philippe Reynes20031562018-11-14 13:51:00 +0100351 debug("Checksum algorithm: %s", checksum->name);
Heiko Schocher646257d2014-03-03 12:19:26 +0100352
Simon Glass19c402a2013-06-13 15:10:02 -0700353 /* Sanity check for stack size */
354 if (sig_len > RSA_MAX_SIG_BITS / 8) {
355 debug("Signature length %u exceeds maximum %d\n", sig_len,
356 RSA_MAX_SIG_BITS / 8);
357 return -EINVAL;
358 }
359
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530360 uint8_t buf[sig_len];
Philippe Reynesb02f2e72019-03-19 10:55:40 +0100361 hash_len = checksum->checksum_len;
Simon Glass19c402a2013-06-13 15:10:02 -0700362
Ruchika Guptac937ff62015-01-23 16:01:54 +0530363#if !defined(USE_HOSTCC)
364 ret = uclass_get_device(UCLASS_MOD_EXP, 0, &mod_exp_dev);
365 if (ret) {
366 printf("RSA: Can't find Modular Exp implementation\n");
367 return -EINVAL;
368 }
369
370 ret = rsa_mod_exp(mod_exp_dev, sig, sig_len, prop, buf);
371#else
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530372 ret = rsa_mod_exp_sw(sig, sig_len, prop, buf);
Ruchika Guptac937ff62015-01-23 16:01:54 +0530373#endif
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530374 if (ret) {
375 debug("Error in Modular exponentation\n");
Simon Glass19c402a2013-06-13 15:10:02 -0700376 return ret;
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530377 }
Simon Glass19c402a2013-06-13 15:10:02 -0700378
Philippe Reynes20031562018-11-14 13:51:00 +0100379 ret = padding->verify(info, buf, key_len, hash, hash_len);
Andrew Dudada29f292016-11-08 18:53:40 +0000380 if (ret) {
Philippe Reynes20031562018-11-14 13:51:00 +0100381 debug("In RSAVerify(): padding check failed!\n");
382 return ret;
Simon Glass19c402a2013-06-13 15:10:02 -0700383 }
384
385 return 0;
386}
387
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +0900388/**
389 * rsa_verify_with_pkey() - Verify a signature against some data using
390 * only modulus and exponent as RSA key properties.
391 * @info: Specifies key information
392 * @hash: Pointer to the expected hash
393 * @sig: Signature
394 * @sig_len: Number of bytes in signature
395 *
396 * Parse a RSA public key blob in DER format pointed to in @info and fill
397 * a key_prop structure with properties of the key. Then verify a RSA PKCS1.5
398 * signature against an expected hash using the calculated properties.
399 *
400 * Return 0 if verified, -ve on error
401 */
AKASHI Takahiro491bfe82020-06-16 14:26:48 +0900402int rsa_verify_with_pkey(struct image_sign_info *info,
403 const void *hash, uint8_t *sig, uint sig_len)
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +0900404{
405 struct key_prop *prop;
406 int ret;
407
Simon Glass2bbed3f2021-09-25 19:43:23 -0600408 if (!CONFIG_IS_ENABLED(RSA_VERIFY_WITH_PKEY))
409 return -EACCES;
410
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +0900411 /* Public key is self-described to fill key_prop */
412 ret = rsa_gen_key_prop(info->key, info->keylen, &prop);
413 if (ret) {
414 debug("Generating necessary parameter for decoding failed\n");
415 return ret;
416 }
417
418 ret = rsa_verify_key(info, prop, sig, sig_len, hash,
419 info->crypto->key_len);
420
421 rsa_free_key_prop(prop);
422
423 return ret;
424}
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +0900425
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900426#if CONFIG_IS_ENABLED(FIT_SIGNATURE)
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530427/**
428 * rsa_verify_with_keynode() - Verify a signature against some data using
429 * information in node with prperties of RSA Key like modulus, exponent etc.
430 *
431 * Parse sign-node and fill a key_prop structure with properties of the
432 * key. Verify a RSA PKCS1.5 signature against an expected hash using
433 * the properties parsed
434 *
435 * @info: Specifies key and FIT information
436 * @hash: Pointer to the expected hash
437 * @sig: Signature
438 * @sig_len: Number of bytes in signature
439 * @node: Node having the RSA Key properties
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100440 * Return: 0 if verified, -ve on error
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530441 */
Simon Glass19c402a2013-06-13 15:10:02 -0700442static int rsa_verify_with_keynode(struct image_sign_info *info,
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530443 const void *hash, uint8_t *sig,
444 uint sig_len, int node)
Simon Glass19c402a2013-06-13 15:10:02 -0700445{
446 const void *blob = info->fdt_blob;
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530447 struct key_prop prop;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200448 int length;
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530449 int ret = 0;
Matthieu CASTET167fb1f2020-09-23 19:11:44 +0200450 const char *algo;
Simon Glass19c402a2013-06-13 15:10:02 -0700451
452 if (node < 0) {
453 debug("%s: Skipping invalid node", __func__);
454 return -EBADF;
455 }
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530456
Matthieu CASTET167fb1f2020-09-23 19:11:44 +0200457 algo = fdt_getprop(blob, node, "algo", NULL);
Sean Anderson8f684bc2021-02-16 11:40:15 -0500458 if (strcmp(info->name, algo)) {
459 debug("%s: Wrong algo: have %s, expected %s", __func__,
460 info->name, algo);
Matthieu CASTET167fb1f2020-09-23 19:11:44 +0200461 return -EFAULT;
Sean Anderson8f684bc2021-02-16 11:40:15 -0500462 }
Matthieu CASTET167fb1f2020-09-23 19:11:44 +0200463
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530464 prop.num_bits = fdtdec_get_int(blob, node, "rsa,num-bits", 0);
465
466 prop.n0inv = fdtdec_get_int(blob, node, "rsa,n0-inverse", 0);
467
468 prop.public_exponent = fdt_getprop(blob, node, "rsa,exponent", &length);
469 if (!prop.public_exponent || length < sizeof(uint64_t))
470 prop.public_exponent = NULL;
471
472 prop.exp_len = sizeof(uint64_t);
473
474 prop.modulus = fdt_getprop(blob, node, "rsa,modulus", NULL);
475
476 prop.rr = fdt_getprop(blob, node, "rsa,r-squared", NULL);
477
Jan Kiszka48069ff2020-05-07 20:36:13 +0200478 if (!prop.num_bits || !prop.modulus || !prop.rr) {
Simon Glass19c402a2013-06-13 15:10:02 -0700479 debug("%s: Missing RSA key info", __func__);
480 return -EFAULT;
481 }
482
Philippe Reynes20031562018-11-14 13:51:00 +0100483 ret = rsa_verify_key(info, &prop, sig, sig_len, hash,
484 info->crypto->key_len);
Simon Glass19c402a2013-06-13 15:10:02 -0700485
Ruchika Guptafc2f4242015-01-23 16:01:50 +0530486 return ret;
Simon Glass19c402a2013-06-13 15:10:02 -0700487}
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900488#else
489static int rsa_verify_with_keynode(struct image_sign_info *info,
490 const void *hash, uint8_t *sig,
491 uint sig_len, int node)
492{
493 return -EACCES;
494}
495#endif
Simon Glass19c402a2013-06-13 15:10:02 -0700496
Heiko Stuebnerc89b41b2020-05-22 16:20:33 +0200497int rsa_verify_hash(struct image_sign_info *info,
498 const uint8_t *hash, uint8_t *sig, uint sig_len)
Simon Glass19c402a2013-06-13 15:10:02 -0700499{
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900500 int ret = -EACCES;
Heiko Schocher646257d2014-03-03 12:19:26 +0100501
Heiko Stuebner447b1d72020-06-18 16:23:22 +0200502 if (CONFIG_IS_ENABLED(RSA_VERIFY_WITH_PKEY) && !info->fdt_blob) {
AKASHI Takahiro0cc7a752020-02-21 15:12:59 +0900503 /* don't rely on fdt properties */
504 ret = rsa_verify_with_pkey(info, hash, sig, sig_len);
505
506 return ret;
507 }
508
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900509 if (CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
510 const void *blob = info->fdt_blob;
511 int ndepth, noffset;
512 int sig_node, node;
513 char name[100];
Simon Glass19c402a2013-06-13 15:10:02 -0700514
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900515 sig_node = fdt_subnode_offset(blob, 0, FIT_SIG_NODENAME);
516 if (sig_node < 0) {
517 debug("%s: No signature node found\n", __func__);
518 return -ENOENT;
519 }
Simon Glass19c402a2013-06-13 15:10:02 -0700520
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900521 /* See if we must use a particular key */
522 if (info->required_keynode != -1) {
Simon Glass19c402a2013-06-13 15:10:02 -0700523 ret = rsa_verify_with_keynode(info, hash, sig, sig_len,
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900524 info->required_keynode);
525 return ret;
526 }
527
528 /* Look for a key that matches our hint */
529 snprintf(name, sizeof(name), "key-%s", info->keyname);
530 node = fdt_subnode_offset(blob, sig_node, name);
531 ret = rsa_verify_with_keynode(info, hash, sig, sig_len, node);
532 if (!ret)
533 return ret;
534
535 /* No luck, so try each of the keys in turn */
Philippe Reynes040fad32021-01-12 19:18:54 +0100536 for (ndepth = 0, noffset = fdt_next_node(blob, sig_node,
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900537 &ndepth);
538 (noffset >= 0) && (ndepth > 0);
Philippe Reynes040fad32021-01-12 19:18:54 +0100539 noffset = fdt_next_node(blob, noffset, &ndepth)) {
AKASHI Takahirob983cc22020-02-21 15:12:55 +0900540 if (ndepth == 1 && noffset != node) {
541 ret = rsa_verify_with_keynode(info, hash,
542 sig, sig_len,
543 noffset);
544 if (!ret)
545 break;
546 }
Simon Glass19c402a2013-06-13 15:10:02 -0700547 }
548 }
549
550 return ret;
551}
Heiko Stuebnerc89b41b2020-05-22 16:20:33 +0200552
553int rsa_verify(struct image_sign_info *info,
554 const struct image_region region[], int region_count,
555 uint8_t *sig, uint sig_len)
556{
557 /* Reserve memory for maximum checksum-length */
558 uint8_t hash[info->crypto->key_len];
Heinrich Schuchardtec71cc32020-10-08 20:53:13 +0200559 int ret;
Heiko Stuebnerc89b41b2020-05-22 16:20:33 +0200560
561 /*
562 * Verify that the checksum-length does not exceed the
563 * rsa-signature-length
564 */
565 if (info->checksum->checksum_len >
566 info->crypto->key_len) {
Thomas Perrot0eadb2b2021-07-19 16:04:44 +0200567 debug("%s: invalid checksum-algorithm %s for %s\n",
Heiko Stuebnerc89b41b2020-05-22 16:20:33 +0200568 __func__, info->checksum->name, info->crypto->name);
569 return -EINVAL;
570 }
571
572 /* Calculate checksum with checksum-algorithm */
573 ret = info->checksum->calculate(info->checksum->name,
574 region, region_count, hash);
575 if (ret < 0) {
576 debug("%s: Error in checksum calculation\n", __func__);
577 return -EINVAL;
578 }
579
580 return rsa_verify_hash(info, hash, sig, sig_len);
581}
Alexandru Gagniuc6909edb2021-07-14 17:05:40 -0500582
583#ifndef USE_HOSTCC
584
585U_BOOT_CRYPTO_ALGO(rsa2048) = {
586 .name = "rsa2048",
587 .key_len = RSA2048_BYTES,
588 .verify = rsa_verify,
589};
590
591U_BOOT_CRYPTO_ALGO(rsa4096) = {
592 .name = "rsa4096",
593 .key_len = RSA4096_BYTES,
594 .verify = rsa_verify,
595};
596
597#endif