blob: 0579e5294ee6403e7669264ad66b007a056e9f45 [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
6#include "mkimage.h"
Jonathan Gray0ff042d2020-05-15 22:20:34 +10007#include <stdlib.h>
Simon Glass19c402a2013-06-13 15:10:02 -07008#include <stdio.h>
9#include <string.h>
Simon Glass19c402a2013-06-13 15:10:02 -070010#include <image.h>
11#include <time.h>
Alexandru Gagniuc4c17e5f2021-02-19 12:45:11 -060012#include <u-boot/fdt-libcrypto.h>
Jelle van der Waac3b43282017-05-08 21:31:19 +020013#include <openssl/bn.h>
Chan, Donaldfbc77742021-04-01 22:42:36 +000014#include <openssl/ec.h>
Simon Glass19c402a2013-06-13 15:10:02 -070015#include <openssl/rsa.h>
16#include <openssl/pem.h>
17#include <openssl/err.h>
18#include <openssl/ssl.h>
19#include <openssl/evp.h>
George McCollisterf1ca1fd2017-01-06 13:14:17 -060020#include <openssl/engine.h>
Simon Glass19c402a2013-06-13 15:10:02 -070021
Simon Glass19c402a2013-06-13 15:10:02 -070022static int rsa_err(const char *msg)
23{
24 unsigned long sslErr = ERR_get_error();
25
26 fprintf(stderr, "%s", msg);
27 fprintf(stderr, ": %s\n",
28 ERR_error_string(sslErr, 0));
29
30 return -1;
31}
32
33/**
George McCollisterf1ca1fd2017-01-06 13:14:17 -060034 * rsa_pem_get_pub_key() - read a public key from a .crt file
Simon Glass19c402a2013-06-13 15:10:02 -070035 *
36 * @keydir: Directory containins the key
37 * @name Name of key file (will have a .crt extension)
Chan, Donaldfbc77742021-04-01 22:42:36 +000038 * @evpp Returns EVP_PKEY object, or NULL on failure
39 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
Simon Glass19c402a2013-06-13 15:10:02 -070040 */
Chan, Donaldfbc77742021-04-01 22:42:36 +000041static int rsa_pem_get_pub_key(const char *keydir, const char *name, EVP_PKEY **evpp)
Simon Glass19c402a2013-06-13 15:10:02 -070042{
43 char path[1024];
Chan, Donaldfbc77742021-04-01 22:42:36 +000044 EVP_PKEY *key = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -070045 X509 *cert;
Simon Glass19c402a2013-06-13 15:10:02 -070046 FILE *f;
47 int ret;
48
Chan, Donaldfbc77742021-04-01 22:42:36 +000049 if (!evpp)
50 return -EINVAL;
51
52 *evpp = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -070053 snprintf(path, sizeof(path), "%s/%s.crt", keydir, name);
54 f = fopen(path, "r");
55 if (!f) {
56 fprintf(stderr, "Couldn't open RSA certificate: '%s': %s\n",
57 path, strerror(errno));
58 return -EACCES;
59 }
60
61 /* Read the certificate */
62 cert = NULL;
63 if (!PEM_read_X509(f, &cert, NULL, NULL)) {
64 rsa_err("Couldn't read certificate");
65 ret = -EINVAL;
66 goto err_cert;
67 }
68
69 /* Get the public key from the certificate. */
70 key = X509_get_pubkey(cert);
71 if (!key) {
72 rsa_err("Couldn't read public key\n");
73 ret = -EINVAL;
74 goto err_pubkey;
75 }
76
Simon Glass19c402a2013-06-13 15:10:02 -070077 fclose(f);
Chan, Donaldfbc77742021-04-01 22:42:36 +000078 *evpp = key;
Simon Glass19c402a2013-06-13 15:10:02 -070079 X509_free(cert);
Simon Glass19c402a2013-06-13 15:10:02 -070080
81 return 0;
82
Simon Glass19c402a2013-06-13 15:10:02 -070083err_pubkey:
84 X509_free(cert);
85err_cert:
86 fclose(f);
87 return ret;
88}
89
90/**
George McCollisterf1ca1fd2017-01-06 13:14:17 -060091 * rsa_engine_get_pub_key() - read a public key from given engine
Simon Glass19c402a2013-06-13 15:10:02 -070092 *
George McCollisterf1ca1fd2017-01-06 13:14:17 -060093 * @keydir: Key prefix
94 * @name Name of key
95 * @engine Engine to use
Chan, Donaldfbc77742021-04-01 22:42:36 +000096 * @evpp Returns EVP_PKEY object, or NULL on failure
97 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
George McCollisterf1ca1fd2017-01-06 13:14:17 -060098 */
99static int rsa_engine_get_pub_key(const char *keydir, const char *name,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000100 ENGINE *engine, EVP_PKEY **evpp)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600101{
102 const char *engine_id;
103 char key_id[1024];
Chan, Donaldfbc77742021-04-01 22:42:36 +0000104 EVP_PKEY *key = NULL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600105
Chan, Donaldfbc77742021-04-01 22:42:36 +0000106 if (!evpp)
107 return -EINVAL;
108
109 *evpp = NULL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600110
111 engine_id = ENGINE_get_id(engine);
112
113 if (engine_id && !strcmp(engine_id, "pkcs11")) {
114 if (keydir)
Jan Luebbe24bf6e82020-05-13 12:26:24 +0200115 if (strstr(keydir, "object="))
116 snprintf(key_id, sizeof(key_id),
117 "pkcs11:%s;type=public",
118 keydir);
119 else
120 snprintf(key_id, sizeof(key_id),
121 "pkcs11:%s;object=%s;type=public",
122 keydir, name);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600123 else
124 snprintf(key_id, sizeof(key_id),
125 "pkcs11:object=%s;type=public",
126 name);
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300127 } else if (engine_id) {
128 if (keydir)
129 snprintf(key_id, sizeof(key_id),
130 "%s%s",
131 keydir, name);
132 else
133 snprintf(key_id, sizeof(key_id),
134 "%s",
135 name);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600136 } else {
137 fprintf(stderr, "Engine not supported\n");
138 return -ENOTSUP;
139 }
140
141 key = ENGINE_load_public_key(engine, key_id, NULL, NULL);
142 if (!key)
143 return rsa_err("Failure loading public key from engine");
144
Chan, Donaldfbc77742021-04-01 22:42:36 +0000145 *evpp = key;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600146
147 return 0;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600148}
149
150/**
151 * rsa_get_pub_key() - read a public key
152 *
153 * @keydir: Directory containing the key (PEM file) or key prefix (engine)
154 * @name Name of key file (will have a .crt extension)
155 * @engine Engine to use
Chan, Donaldfbc77742021-04-01 22:42:36 +0000156 * @evpp Returns EVP_PKEY object, or NULL on failure
157 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600158 */
159static int rsa_get_pub_key(const char *keydir, const char *name,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000160 ENGINE *engine, EVP_PKEY **evpp)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600161{
162 if (engine)
Chan, Donaldfbc77742021-04-01 22:42:36 +0000163 return rsa_engine_get_pub_key(keydir, name, engine, evpp);
164 return rsa_pem_get_pub_key(keydir, name, evpp);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600165}
166
167/**
168 * rsa_pem_get_priv_key() - read a private key from a .key file
169 *
170 * @keydir: Directory containing the key
Simon Glass19c402a2013-06-13 15:10:02 -0700171 * @name Name of key file (will have a .key extension)
Chan, Donaldfbc77742021-04-01 22:42:36 +0000172 * @evpp Returns EVP_PKEY object, or NULL on failure
173 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
Simon Glass19c402a2013-06-13 15:10:02 -0700174 */
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600175static int rsa_pem_get_priv_key(const char *keydir, const char *name,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000176 const char *keyfile, EVP_PKEY **evpp)
Simon Glass19c402a2013-06-13 15:10:02 -0700177{
Chan, Donaldfbc77742021-04-01 22:42:36 +0000178 char path[1024] = {0};
179 FILE *f = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -0700180
Chan, Donaldfbc77742021-04-01 22:42:36 +0000181 if (!evpp)
182 return -EINVAL;
183
184 *evpp = NULL;
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600185 if (keydir && name)
186 snprintf(path, sizeof(path), "%s/%s.key", keydir, name);
187 else if (keyfile)
188 snprintf(path, sizeof(path), "%s", keyfile);
189 else
190 return -EINVAL;
191
Simon Glass19c402a2013-06-13 15:10:02 -0700192 f = fopen(path, "r");
193 if (!f) {
194 fprintf(stderr, "Couldn't open RSA private key: '%s': %s\n",
195 path, strerror(errno));
196 return -ENOENT;
197 }
198
Chan, Donaldfbc77742021-04-01 22:42:36 +0000199 if (!PEM_read_PrivateKey(f, evpp, NULL, path)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700200 rsa_err("Failure reading private key");
201 fclose(f);
202 return -EPROTO;
203 }
204 fclose(f);
Simon Glass19c402a2013-06-13 15:10:02 -0700205
206 return 0;
207}
208
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600209/**
210 * rsa_engine_get_priv_key() - read a private key from given engine
211 *
212 * @keydir: Key prefix
213 * @name Name of key
214 * @engine Engine to use
Chan, Donaldfbc77742021-04-01 22:42:36 +0000215 * @evpp Returns EVP_PKEY object, or NULL on failure
216 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600217 */
218static int rsa_engine_get_priv_key(const char *keydir, const char *name,
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600219 const char *keyfile,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000220 ENGINE *engine, EVP_PKEY **evpp)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600221{
222 const char *engine_id;
223 char key_id[1024];
Chan, Donaldfbc77742021-04-01 22:42:36 +0000224 EVP_PKEY *key = NULL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600225
Chan, Donaldfbc77742021-04-01 22:42:36 +0000226 if (!evpp)
227 return -EINVAL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600228
229 engine_id = ENGINE_get_id(engine);
230
231 if (engine_id && !strcmp(engine_id, "pkcs11")) {
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600232 if (!keydir && !name) {
233 fprintf(stderr, "Please use 'keydir' with PKCS11\n");
234 return -EINVAL;
235 }
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600236 if (keydir)
Jan Luebbe24bf6e82020-05-13 12:26:24 +0200237 if (strstr(keydir, "object="))
238 snprintf(key_id, sizeof(key_id),
239 "pkcs11:%s;type=private",
240 keydir);
241 else
242 snprintf(key_id, sizeof(key_id),
243 "pkcs11:%s;object=%s;type=private",
244 keydir, name);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600245 else
246 snprintf(key_id, sizeof(key_id),
247 "pkcs11:object=%s;type=private",
248 name);
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300249 } else if (engine_id) {
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600250 if (keydir && name)
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300251 snprintf(key_id, sizeof(key_id),
252 "%s%s",
253 keydir, name);
Heinrich Schuchardtd607dfd2021-08-28 12:13:05 +0200254 else if (name)
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300255 snprintf(key_id, sizeof(key_id),
256 "%s",
Heinrich Schuchardt295ab732021-07-30 17:05:07 +0200257 name ? name : "");
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600258 else if (keyfile)
259 snprintf(key_id, sizeof(key_id), "%s", keyfile);
260 else
261 return -EINVAL;
262
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600263 } else {
264 fprintf(stderr, "Engine not supported\n");
265 return -ENOTSUP;
266 }
267
268 key = ENGINE_load_private_key(engine, key_id, NULL, NULL);
269 if (!key)
270 return rsa_err("Failure loading private key from engine");
271
Chan, Donaldfbc77742021-04-01 22:42:36 +0000272 *evpp = key;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600273
274 return 0;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600275}
276
277/**
278 * rsa_get_priv_key() - read a private key
279 *
280 * @keydir: Directory containing the key (PEM file) or key prefix (engine)
281 * @name Name of key
282 * @engine Engine to use for signing
Chan, Donaldfbc77742021-04-01 22:42:36 +0000283 * @evpp Returns EVP_PKEY object, or NULL on failure
284 * @return 0 if ok, -ve on error (in which case *evpp will be set to NULL)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600285 */
286static int rsa_get_priv_key(const char *keydir, const char *name,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000287 const char *keyfile, ENGINE *engine, EVP_PKEY **evpp)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600288{
289 if (engine)
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600290 return rsa_engine_get_priv_key(keydir, name, keyfile, engine,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000291 evpp);
292 return rsa_pem_get_priv_key(keydir, name, keyfile, evpp);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600293}
294
Simon Glass19c402a2013-06-13 15:10:02 -0700295static int rsa_init(void)
296{
297 int ret;
298
Jelle van der Waac3b43282017-05-08 21:31:19 +0200299 ret = OPENSSL_init_ssl(0, NULL);
Simon Glass19c402a2013-06-13 15:10:02 -0700300 if (!ret) {
301 fprintf(stderr, "Failure to init SSL library\n");
302 return -1;
303 }
Simon Glass19c402a2013-06-13 15:10:02 -0700304
305 return 0;
306}
307
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600308static int rsa_engine_init(const char *engine_id, ENGINE **pe)
309{
Marc Kleine-Budde62b27a52021-07-23 22:17:50 +0200310 const char *key_pass;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600311 ENGINE *e;
312 int ret;
313
314 ENGINE_load_builtin_engines();
315
316 e = ENGINE_by_id(engine_id);
317 if (!e) {
318 fprintf(stderr, "Engine isn't available\n");
Alexandru Gagniucfe68a672021-07-29 13:31:21 -0500319 return -1;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600320 }
321
322 if (!ENGINE_init(e)) {
323 fprintf(stderr, "Couldn't initialize engine\n");
324 ret = -1;
325 goto err_engine_init;
326 }
327
328 if (!ENGINE_set_default_RSA(e)) {
329 fprintf(stderr, "Couldn't set engine as default for RSA\n");
330 ret = -1;
331 goto err_set_rsa;
332 }
333
Marc Kleine-Budde62b27a52021-07-23 22:17:50 +0200334 key_pass = getenv("MKIMAGE_SIGN_PIN");
335 if (key_pass) {
336 if (!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0)) {
337 fprintf(stderr, "Couldn't set PIN\n");
338 ret = -1;
339 goto err_set_pin;
340 }
341 }
342
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600343 *pe = e;
344
345 return 0;
346
Marc Kleine-Budde62b27a52021-07-23 22:17:50 +0200347err_set_pin:
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600348err_set_rsa:
349 ENGINE_finish(e);
350err_engine_init:
351 ENGINE_free(e);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600352 return ret;
353}
354
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600355static void rsa_engine_remove(ENGINE *e)
356{
357 if (e) {
358 ENGINE_finish(e);
359 ENGINE_free(e);
360 }
361}
362
Chan, Donaldfbc77742021-04-01 22:42:36 +0000363static int rsa_sign_with_key(EVP_PKEY *pkey, struct padding_algo *padding_algo,
Philippe Reynes20031562018-11-14 13:51:00 +0100364 struct checksum_algo *checksum_algo,
Heiko Schocher646257d2014-03-03 12:19:26 +0100365 const struct image_region region[], int region_count,
366 uint8_t **sigp, uint *sig_size)
Simon Glass19c402a2013-06-13 15:10:02 -0700367{
Philippe Reynes20031562018-11-14 13:51:00 +0100368 EVP_PKEY_CTX *ckey;
Simon Glass19c402a2013-06-13 15:10:02 -0700369 EVP_MD_CTX *context;
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100370 int ret = 0;
371 size_t size;
Simon Glass19c402a2013-06-13 15:10:02 -0700372 uint8_t *sig;
373 int i;
374
Chan, Donaldfbc77742021-04-01 22:42:36 +0000375 size = EVP_PKEY_size(pkey);
Simon Glass19c402a2013-06-13 15:10:02 -0700376 sig = malloc(size);
377 if (!sig) {
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100378 fprintf(stderr, "Out of memory for signature (%zu bytes)\n",
Simon Glass19c402a2013-06-13 15:10:02 -0700379 size);
380 ret = -ENOMEM;
381 goto err_alloc;
382 }
383
384 context = EVP_MD_CTX_create();
385 if (!context) {
386 ret = rsa_err("EVP context creation failed");
387 goto err_create;
388 }
389 EVP_MD_CTX_init(context);
Philippe Reynes20031562018-11-14 13:51:00 +0100390
Chan, Donaldfbc77742021-04-01 22:42:36 +0000391 ckey = EVP_PKEY_CTX_new(pkey, NULL);
Philippe Reynes20031562018-11-14 13:51:00 +0100392 if (!ckey) {
393 ret = rsa_err("EVP key context creation failed");
394 goto err_create;
395 }
396
397 if (EVP_DigestSignInit(context, &ckey,
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100398 checksum_algo->calculate_sign(),
Chan, Donaldfbc77742021-04-01 22:42:36 +0000399 NULL, pkey) <= 0) {
Simon Glass19c402a2013-06-13 15:10:02 -0700400 ret = rsa_err("Signer setup failed");
401 goto err_sign;
402 }
403
Simon Glass2bbed3f2021-09-25 19:43:23 -0600404 if (CONFIG_IS_ENABLED(FIT_RSASSA_PSS) && padding_algo &&
405 !strcmp(padding_algo->name, "pss")) {
Philippe Reynes061daa02018-11-14 13:51:01 +0100406 if (EVP_PKEY_CTX_set_rsa_padding(ckey,
407 RSA_PKCS1_PSS_PADDING) <= 0) {
408 ret = rsa_err("Signer padding setup failed");
409 goto err_sign;
410 }
411 }
Philippe Reynes061daa02018-11-14 13:51:01 +0100412
Simon Glass19c402a2013-06-13 15:10:02 -0700413 for (i = 0; i < region_count; i++) {
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100414 if (!EVP_DigestSignUpdate(context, region[i].data,
415 region[i].size)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700416 ret = rsa_err("Signing data failed");
417 goto err_sign;
418 }
419 }
420
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100421 if (!EVP_DigestSignFinal(context, sig, &size)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700422 ret = rsa_err("Could not obtain signature");
423 goto err_sign;
424 }
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100425
Alexandru Gagniucfe68a672021-07-29 13:31:21 -0500426 EVP_MD_CTX_reset(context);
Simon Glass19c402a2013-06-13 15:10:02 -0700427 EVP_MD_CTX_destroy(context);
Simon Glass19c402a2013-06-13 15:10:02 -0700428
Chan, Donald6d59ace2021-07-19 09:18:54 -0700429 debug("Got signature: %zu bytes, expected %d\n", size, EVP_PKEY_size(pkey));
Simon Glass19c402a2013-06-13 15:10:02 -0700430 *sigp = sig;
431 *sig_size = size;
432
433 return 0;
434
435err_sign:
436 EVP_MD_CTX_destroy(context);
437err_create:
438 free(sig);
439err_alloc:
Simon Glass19c402a2013-06-13 15:10:02 -0700440 return ret;
441}
442
443int rsa_sign(struct image_sign_info *info,
444 const struct image_region region[], int region_count,
445 uint8_t **sigp, uint *sig_len)
446{
Chan, Donaldfbc77742021-04-01 22:42:36 +0000447 EVP_PKEY *pkey = NULL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600448 ENGINE *e = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -0700449 int ret;
450
451 ret = rsa_init();
452 if (ret)
453 return ret;
454
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600455 if (info->engine_id) {
456 ret = rsa_engine_init(info->engine_id, &e);
457 if (ret)
Alexandru Gagniucfe68a672021-07-29 13:31:21 -0500458 return ret;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600459 }
460
Alexandru Gagniuc824ee742021-02-19 12:45:18 -0600461 ret = rsa_get_priv_key(info->keydir, info->keyname, info->keyfile,
Chan, Donaldfbc77742021-04-01 22:42:36 +0000462 e, &pkey);
Simon Glass19c402a2013-06-13 15:10:02 -0700463 if (ret)
464 goto err_priv;
Chan, Donaldfbc77742021-04-01 22:42:36 +0000465 ret = rsa_sign_with_key(pkey, info->padding, info->checksum, region,
Heiko Schocher646257d2014-03-03 12:19:26 +0100466 region_count, sigp, sig_len);
Simon Glass19c402a2013-06-13 15:10:02 -0700467 if (ret)
468 goto err_sign;
469
Chan, Donaldfbc77742021-04-01 22:42:36 +0000470 EVP_PKEY_free(pkey);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600471 if (info->engine_id)
472 rsa_engine_remove(e);
Simon Glass19c402a2013-06-13 15:10:02 -0700473
474 return ret;
475
476err_sign:
Chan, Donaldfbc77742021-04-01 22:42:36 +0000477 EVP_PKEY_free(pkey);
Simon Glass19c402a2013-06-13 15:10:02 -0700478err_priv:
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600479 if (info->engine_id)
480 rsa_engine_remove(e);
Simon Glass19c402a2013-06-13 15:10:02 -0700481 return ret;
482}
483
484/*
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200485 * rsa_get_exponent(): - Get the public exponent from an RSA key
486 */
487static int rsa_get_exponent(RSA *key, uint64_t *e)
488{
489 int ret;
490 BIGNUM *bn_te;
Jelle van der Waac3b43282017-05-08 21:31:19 +0200491 const BIGNUM *key_e;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200492 uint64_t te;
493
494 ret = -EINVAL;
495 bn_te = NULL;
496
497 if (!e)
498 goto cleanup;
499
Jelle van der Waac3b43282017-05-08 21:31:19 +0200500 RSA_get0_key(key, NULL, &key_e, NULL);
501 if (BN_num_bits(key_e) > 64)
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200502 goto cleanup;
503
Jelle van der Waac3b43282017-05-08 21:31:19 +0200504 *e = BN_get_word(key_e);
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200505
Jelle van der Waac3b43282017-05-08 21:31:19 +0200506 if (BN_num_bits(key_e) < 33) {
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200507 ret = 0;
508 goto cleanup;
509 }
510
Jelle van der Waac3b43282017-05-08 21:31:19 +0200511 bn_te = BN_dup(key_e);
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200512 if (!bn_te)
513 goto cleanup;
514
515 if (!BN_rshift(bn_te, bn_te, 32))
516 goto cleanup;
517
518 if (!BN_mask_bits(bn_te, 32))
519 goto cleanup;
520
521 te = BN_get_word(bn_te);
522 te <<= 32;
523 *e |= te;
524 ret = 0;
525
526cleanup:
527 if (bn_te)
528 BN_free(bn_te);
529
530 return ret;
531}
532
533/*
Simon Glass19c402a2013-06-13 15:10:02 -0700534 * rsa_get_params(): - Get the important parameters of an RSA public key
535 */
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200536int rsa_get_params(RSA *key, uint64_t *exponent, uint32_t *n0_invp,
537 BIGNUM **modulusp, BIGNUM **r_squaredp)
Simon Glass19c402a2013-06-13 15:10:02 -0700538{
539 BIGNUM *big1, *big2, *big32, *big2_32;
540 BIGNUM *n, *r, *r_squared, *tmp;
Jelle van der Waac3b43282017-05-08 21:31:19 +0200541 const BIGNUM *key_n;
Simon Glass19c402a2013-06-13 15:10:02 -0700542 BN_CTX *bn_ctx = BN_CTX_new();
543 int ret = 0;
544
545 /* Initialize BIGNUMs */
546 big1 = BN_new();
547 big2 = BN_new();
548 big32 = BN_new();
549 r = BN_new();
550 r_squared = BN_new();
551 tmp = BN_new();
552 big2_32 = BN_new();
553 n = BN_new();
554 if (!big1 || !big2 || !big32 || !r || !r_squared || !tmp || !big2_32 ||
555 !n) {
556 fprintf(stderr, "Out of memory (bignum)\n");
557 return -ENOMEM;
558 }
559
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200560 if (0 != rsa_get_exponent(key, exponent))
561 ret = -1;
562
Jelle van der Waac3b43282017-05-08 21:31:19 +0200563 RSA_get0_key(key, &key_n, NULL, NULL);
564 if (!BN_copy(n, key_n) || !BN_set_word(big1, 1L) ||
Simon Glass19c402a2013-06-13 15:10:02 -0700565 !BN_set_word(big2, 2L) || !BN_set_word(big32, 32L))
566 ret = -1;
567
568 /* big2_32 = 2^32 */
569 if (!BN_exp(big2_32, big2, big32, bn_ctx))
570 ret = -1;
571
572 /* Calculate n0_inv = -1 / n[0] mod 2^32 */
573 if (!BN_mod_inverse(tmp, n, big2_32, bn_ctx) ||
574 !BN_sub(tmp, big2_32, tmp))
575 ret = -1;
576 *n0_invp = BN_get_word(tmp);
577
578 /* Calculate R = 2^(# of key bits) */
579 if (!BN_set_word(tmp, BN_num_bits(n)) ||
580 !BN_exp(r, big2, tmp, bn_ctx))
581 ret = -1;
582
583 /* Calculate r_squared = R^2 mod n */
584 if (!BN_copy(r_squared, r) ||
585 !BN_mul(tmp, r_squared, r, bn_ctx) ||
586 !BN_mod(r_squared, tmp, n, bn_ctx))
587 ret = -1;
588
589 *modulusp = n;
590 *r_squaredp = r_squared;
591
592 BN_free(big1);
593 BN_free(big2);
594 BN_free(big32);
595 BN_free(r);
596 BN_free(tmp);
597 BN_free(big2_32);
598 if (ret) {
599 fprintf(stderr, "Bignum operations failed\n");
600 return -ENOMEM;
601 }
602
603 return ret;
604}
605
Simon Glass19c402a2013-06-13 15:10:02 -0700606int rsa_add_verify_data(struct image_sign_info *info, void *keydest)
607{
608 BIGNUM *modulus, *r_squared;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200609 uint64_t exponent;
Simon Glass19c402a2013-06-13 15:10:02 -0700610 uint32_t n0_inv;
611 int parent, node;
612 char name[100];
613 int ret;
614 int bits;
615 RSA *rsa;
Chan, Donaldfbc77742021-04-01 22:42:36 +0000616 EVP_PKEY *pkey = NULL;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600617 ENGINE *e = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -0700618
619 debug("%s: Getting verification data\n", __func__);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600620 if (info->engine_id) {
621 ret = rsa_engine_init(info->engine_id, &e);
622 if (ret)
623 return ret;
624 }
Chan, Donaldfbc77742021-04-01 22:42:36 +0000625 ret = rsa_get_pub_key(info->keydir, info->keyname, e, &pkey);
Simon Glass19c402a2013-06-13 15:10:02 -0700626 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600627 goto err_get_pub_key;
Alexandru Gagniucfe68a672021-07-29 13:31:21 -0500628
Chan, Donaldfbc77742021-04-01 22:42:36 +0000629 rsa = EVP_PKEY_get0_RSA(pkey);
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200630 ret = rsa_get_params(rsa, &exponent, &n0_inv, &modulus, &r_squared);
Simon Glass19c402a2013-06-13 15:10:02 -0700631 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600632 goto err_get_params;
Simon Glass19c402a2013-06-13 15:10:02 -0700633 bits = BN_num_bits(modulus);
634 parent = fdt_subnode_offset(keydest, 0, FIT_SIG_NODENAME);
635 if (parent == -FDT_ERR_NOTFOUND) {
636 parent = fdt_add_subnode(keydest, 0, FIT_SIG_NODENAME);
637 if (parent < 0) {
Simon Glass597a8b22014-06-12 07:24:42 -0600638 ret = parent;
639 if (ret != -FDT_ERR_NOSPACE) {
640 fprintf(stderr, "Couldn't create signature node: %s\n",
641 fdt_strerror(parent));
642 }
Simon Glass19c402a2013-06-13 15:10:02 -0700643 }
644 }
Simon Glass597a8b22014-06-12 07:24:42 -0600645 if (ret)
646 goto done;
Simon Glass19c402a2013-06-13 15:10:02 -0700647
648 /* Either create or overwrite the named key node */
649 snprintf(name, sizeof(name), "key-%s", info->keyname);
650 node = fdt_subnode_offset(keydest, parent, name);
651 if (node == -FDT_ERR_NOTFOUND) {
652 node = fdt_add_subnode(keydest, parent, name);
653 if (node < 0) {
Simon Glass597a8b22014-06-12 07:24:42 -0600654 ret = node;
655 if (ret != -FDT_ERR_NOSPACE) {
656 fprintf(stderr, "Could not create key subnode: %s\n",
657 fdt_strerror(node));
658 }
Simon Glass19c402a2013-06-13 15:10:02 -0700659 }
660 } else if (node < 0) {
661 fprintf(stderr, "Cannot select keys parent: %s\n",
662 fdt_strerror(node));
Simon Glass597a8b22014-06-12 07:24:42 -0600663 ret = node;
Simon Glass19c402a2013-06-13 15:10:02 -0700664 }
665
Simon Glass597a8b22014-06-12 07:24:42 -0600666 if (!ret) {
Simon Glass72188f52020-03-18 11:44:06 -0600667 ret = fdt_setprop_string(keydest, node, FIT_KEY_HINT,
668 info->keyname);
Simon Glass597a8b22014-06-12 07:24:42 -0600669 }
Simon Glass4f427a42014-06-02 22:04:51 -0600670 if (!ret)
671 ret = fdt_setprop_u32(keydest, node, "rsa,num-bits", bits);
672 if (!ret)
673 ret = fdt_setprop_u32(keydest, node, "rsa,n0-inverse", n0_inv);
674 if (!ret) {
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200675 ret = fdt_setprop_u64(keydest, node, "rsa,exponent", exponent);
676 }
677 if (!ret) {
Simon Glass4f427a42014-06-02 22:04:51 -0600678 ret = fdt_add_bignum(keydest, node, "rsa,modulus", modulus,
679 bits);
680 }
681 if (!ret) {
682 ret = fdt_add_bignum(keydest, node, "rsa,r-squared", r_squared,
683 bits);
684 }
685 if (!ret) {
686 ret = fdt_setprop_string(keydest, node, FIT_ALGO_PROP,
Andrew Duda83dd98e2016-11-08 18:53:41 +0000687 info->name);
Simon Glass4f427a42014-06-02 22:04:51 -0600688 }
mario.six@gdsys.cc2b9ec762016-07-19 11:07:07 +0200689 if (!ret && info->require_keys) {
Simon Glass72188f52020-03-18 11:44:06 -0600690 ret = fdt_setprop_string(keydest, node, FIT_KEY_REQUIRED,
Simon Glass4f427a42014-06-02 22:04:51 -0600691 info->require_keys);
Simon Glass19c402a2013-06-13 15:10:02 -0700692 }
Simon Glass597a8b22014-06-12 07:24:42 -0600693done:
Simon Glass19c402a2013-06-13 15:10:02 -0700694 BN_free(modulus);
695 BN_free(r_squared);
696 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600697 ret = ret == -FDT_ERR_NOSPACE ? -ENOSPC : -EIO;
698err_get_params:
Chan, Donaldfbc77742021-04-01 22:42:36 +0000699 EVP_PKEY_free(pkey);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600700err_get_pub_key:
701 if (info->engine_id)
702 rsa_engine_remove(e);
Simon Glass19c402a2013-06-13 15:10:02 -0700703
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600704 return ret;
Simon Glass19c402a2013-06-13 15:10:02 -0700705}