blob: 78e348eeea0927d046c7b3e32c073e8b22e16854 [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"
7#include <stdio.h>
8#include <string.h>
Simon Glass19c402a2013-06-13 15:10:02 -07009#include <image.h>
10#include <time.h>
Jelle van der Waac3b43282017-05-08 21:31:19 +020011#include <openssl/bn.h>
Simon Glass19c402a2013-06-13 15:10:02 -070012#include <openssl/rsa.h>
13#include <openssl/pem.h>
14#include <openssl/err.h>
15#include <openssl/ssl.h>
16#include <openssl/evp.h>
George McCollisterf1ca1fd2017-01-06 13:14:17 -060017#include <openssl/engine.h>
Simon Glass19c402a2013-06-13 15:10:02 -070018
19#if OPENSSL_VERSION_NUMBER >= 0x10000000L
20#define HAVE_ERR_REMOVE_THREAD_STATE
21#endif
22
Caliph Nomble7ac1a432018-07-25 22:13:03 -040023#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
24 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
Jelle van der Waac3b43282017-05-08 21:31:19 +020025static void RSA_get0_key(const RSA *r,
26 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
27{
28 if (n != NULL)
29 *n = r->n;
30 if (e != NULL)
31 *e = r->e;
32 if (d != NULL)
33 *d = r->d;
34}
35#endif
36
Simon Glass19c402a2013-06-13 15:10:02 -070037static int rsa_err(const char *msg)
38{
39 unsigned long sslErr = ERR_get_error();
40
41 fprintf(stderr, "%s", msg);
42 fprintf(stderr, ": %s\n",
43 ERR_error_string(sslErr, 0));
44
45 return -1;
46}
47
48/**
George McCollisterf1ca1fd2017-01-06 13:14:17 -060049 * rsa_pem_get_pub_key() - read a public key from a .crt file
Simon Glass19c402a2013-06-13 15:10:02 -070050 *
51 * @keydir: Directory containins the key
52 * @name Name of key file (will have a .crt extension)
53 * @rsap Returns RSA object, or NULL on failure
54 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
55 */
George McCollisterf1ca1fd2017-01-06 13:14:17 -060056static int rsa_pem_get_pub_key(const char *keydir, const char *name, RSA **rsap)
Simon Glass19c402a2013-06-13 15:10:02 -070057{
58 char path[1024];
59 EVP_PKEY *key;
60 X509 *cert;
61 RSA *rsa;
62 FILE *f;
63 int ret;
64
65 *rsap = NULL;
66 snprintf(path, sizeof(path), "%s/%s.crt", keydir, name);
67 f = fopen(path, "r");
68 if (!f) {
69 fprintf(stderr, "Couldn't open RSA certificate: '%s': %s\n",
70 path, strerror(errno));
71 return -EACCES;
72 }
73
74 /* Read the certificate */
75 cert = NULL;
76 if (!PEM_read_X509(f, &cert, NULL, NULL)) {
77 rsa_err("Couldn't read certificate");
78 ret = -EINVAL;
79 goto err_cert;
80 }
81
82 /* Get the public key from the certificate. */
83 key = X509_get_pubkey(cert);
84 if (!key) {
85 rsa_err("Couldn't read public key\n");
86 ret = -EINVAL;
87 goto err_pubkey;
88 }
89
90 /* Convert to a RSA_style key. */
91 rsa = EVP_PKEY_get1_RSA(key);
92 if (!rsa) {
93 rsa_err("Couldn't convert to a RSA style key");
Simon Glass54267162014-07-30 10:00:17 -060094 ret = -EINVAL;
Simon Glass19c402a2013-06-13 15:10:02 -070095 goto err_rsa;
96 }
97 fclose(f);
98 EVP_PKEY_free(key);
99 X509_free(cert);
100 *rsap = rsa;
101
102 return 0;
103
104err_rsa:
105 EVP_PKEY_free(key);
106err_pubkey:
107 X509_free(cert);
108err_cert:
109 fclose(f);
110 return ret;
111}
112
113/**
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600114 * rsa_engine_get_pub_key() - read a public key from given engine
Simon Glass19c402a2013-06-13 15:10:02 -0700115 *
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600116 * @keydir: Key prefix
117 * @name Name of key
118 * @engine Engine to use
119 * @rsap Returns RSA object, or NULL on failure
120 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
121 */
122static int rsa_engine_get_pub_key(const char *keydir, const char *name,
123 ENGINE *engine, RSA **rsap)
124{
125 const char *engine_id;
126 char key_id[1024];
127 EVP_PKEY *key;
128 RSA *rsa;
129 int ret;
130
131 *rsap = NULL;
132
133 engine_id = ENGINE_get_id(engine);
134
135 if (engine_id && !strcmp(engine_id, "pkcs11")) {
136 if (keydir)
137 snprintf(key_id, sizeof(key_id),
138 "pkcs11:%s;object=%s;type=public",
139 keydir, name);
140 else
141 snprintf(key_id, sizeof(key_id),
142 "pkcs11:object=%s;type=public",
143 name);
144 } else {
145 fprintf(stderr, "Engine not supported\n");
146 return -ENOTSUP;
147 }
148
149 key = ENGINE_load_public_key(engine, key_id, NULL, NULL);
150 if (!key)
151 return rsa_err("Failure loading public key from engine");
152
153 /* Convert to a RSA_style key. */
154 rsa = EVP_PKEY_get1_RSA(key);
155 if (!rsa) {
156 rsa_err("Couldn't convert to a RSA style key");
157 ret = -EINVAL;
158 goto err_rsa;
159 }
160
161 EVP_PKEY_free(key);
162 *rsap = rsa;
163
164 return 0;
165
166err_rsa:
167 EVP_PKEY_free(key);
168 return ret;
169}
170
171/**
172 * rsa_get_pub_key() - read a public key
173 *
174 * @keydir: Directory containing the key (PEM file) or key prefix (engine)
175 * @name Name of key file (will have a .crt extension)
176 * @engine Engine to use
177 * @rsap Returns RSA object, or NULL on failure
178 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
179 */
180static int rsa_get_pub_key(const char *keydir, const char *name,
181 ENGINE *engine, RSA **rsap)
182{
183 if (engine)
184 return rsa_engine_get_pub_key(keydir, name, engine, rsap);
185 return rsa_pem_get_pub_key(keydir, name, rsap);
186}
187
188/**
189 * rsa_pem_get_priv_key() - read a private key from a .key file
190 *
191 * @keydir: Directory containing the key
Simon Glass19c402a2013-06-13 15:10:02 -0700192 * @name Name of key file (will have a .key extension)
193 * @rsap Returns RSA object, or NULL on failure
194 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
195 */
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600196static int rsa_pem_get_priv_key(const char *keydir, const char *name,
197 RSA **rsap)
Simon Glass19c402a2013-06-13 15:10:02 -0700198{
199 char path[1024];
200 RSA *rsa;
201 FILE *f;
202
203 *rsap = NULL;
204 snprintf(path, sizeof(path), "%s/%s.key", keydir, name);
205 f = fopen(path, "r");
206 if (!f) {
207 fprintf(stderr, "Couldn't open RSA private key: '%s': %s\n",
208 path, strerror(errno));
209 return -ENOENT;
210 }
211
212 rsa = PEM_read_RSAPrivateKey(f, 0, NULL, path);
213 if (!rsa) {
214 rsa_err("Failure reading private key");
215 fclose(f);
216 return -EPROTO;
217 }
218 fclose(f);
219 *rsap = rsa;
220
221 return 0;
222}
223
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600224/**
225 * rsa_engine_get_priv_key() - read a private key from given engine
226 *
227 * @keydir: Key prefix
228 * @name Name of key
229 * @engine Engine to use
230 * @rsap Returns RSA object, or NULL on failure
231 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
232 */
233static int rsa_engine_get_priv_key(const char *keydir, const char *name,
234 ENGINE *engine, RSA **rsap)
235{
236 const char *engine_id;
237 char key_id[1024];
238 EVP_PKEY *key;
239 RSA *rsa;
240 int ret;
241
242 *rsap = NULL;
243
244 engine_id = ENGINE_get_id(engine);
245
246 if (engine_id && !strcmp(engine_id, "pkcs11")) {
247 if (keydir)
248 snprintf(key_id, sizeof(key_id),
249 "pkcs11:%s;object=%s;type=private",
250 keydir, name);
251 else
252 snprintf(key_id, sizeof(key_id),
253 "pkcs11:object=%s;type=private",
254 name);
255 } else {
256 fprintf(stderr, "Engine not supported\n");
257 return -ENOTSUP;
258 }
259
260 key = ENGINE_load_private_key(engine, key_id, NULL, NULL);
261 if (!key)
262 return rsa_err("Failure loading private key from engine");
263
264 /* Convert to a RSA_style key. */
265 rsa = EVP_PKEY_get1_RSA(key);
266 if (!rsa) {
267 rsa_err("Couldn't convert to a RSA style key");
268 ret = -EINVAL;
269 goto err_rsa;
270 }
271
272 EVP_PKEY_free(key);
273 *rsap = rsa;
274
275 return 0;
276
277err_rsa:
278 EVP_PKEY_free(key);
279 return ret;
280}
281
282/**
283 * rsa_get_priv_key() - read a private key
284 *
285 * @keydir: Directory containing the key (PEM file) or key prefix (engine)
286 * @name Name of key
287 * @engine Engine to use for signing
288 * @rsap Returns RSA object, or NULL on failure
289 * @return 0 if ok, -ve on error (in which case *rsap will be set to NULL)
290 */
291static int rsa_get_priv_key(const char *keydir, const char *name,
292 ENGINE *engine, RSA **rsap)
293{
294 if (engine)
295 return rsa_engine_get_priv_key(keydir, name, engine, rsap);
296 return rsa_pem_get_priv_key(keydir, name, rsap);
297}
298
Simon Glass19c402a2013-06-13 15:10:02 -0700299static int rsa_init(void)
300{
301 int ret;
302
Caliph Nomble7ac1a432018-07-25 22:13:03 -0400303#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
304 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
Simon Glass19c402a2013-06-13 15:10:02 -0700305 ret = SSL_library_init();
Jelle van der Waac3b43282017-05-08 21:31:19 +0200306#else
307 ret = OPENSSL_init_ssl(0, NULL);
308#endif
Simon Glass19c402a2013-06-13 15:10:02 -0700309 if (!ret) {
310 fprintf(stderr, "Failure to init SSL library\n");
311 return -1;
312 }
Caliph Nomble7ac1a432018-07-25 22:13:03 -0400313#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
314 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
Simon Glass19c402a2013-06-13 15:10:02 -0700315 SSL_load_error_strings();
316
317 OpenSSL_add_all_algorithms();
318 OpenSSL_add_all_digests();
319 OpenSSL_add_all_ciphers();
Jelle van der Waac3b43282017-05-08 21:31:19 +0200320#endif
Simon Glass19c402a2013-06-13 15:10:02 -0700321
322 return 0;
323}
324
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600325static int rsa_engine_init(const char *engine_id, ENGINE **pe)
326{
327 ENGINE *e;
328 int ret;
329
330 ENGINE_load_builtin_engines();
331
332 e = ENGINE_by_id(engine_id);
333 if (!e) {
334 fprintf(stderr, "Engine isn't available\n");
335 ret = -1;
336 goto err_engine_by_id;
337 }
338
339 if (!ENGINE_init(e)) {
340 fprintf(stderr, "Couldn't initialize engine\n");
341 ret = -1;
342 goto err_engine_init;
343 }
344
345 if (!ENGINE_set_default_RSA(e)) {
346 fprintf(stderr, "Couldn't set engine as default for RSA\n");
347 ret = -1;
348 goto err_set_rsa;
349 }
350
351 *pe = e;
352
353 return 0;
354
355err_set_rsa:
356 ENGINE_finish(e);
357err_engine_init:
358 ENGINE_free(e);
359err_engine_by_id:
Caliph Nomble7ac1a432018-07-25 22:13:03 -0400360#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
361 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600362 ENGINE_cleanup();
Jelle van der Waac3b43282017-05-08 21:31:19 +0200363#endif
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600364 return ret;
365}
366
Simon Glass19c402a2013-06-13 15:10:02 -0700367static void rsa_remove(void)
368{
Caliph Nomble7ac1a432018-07-25 22:13:03 -0400369#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
370 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
Simon Glass19c402a2013-06-13 15:10:02 -0700371 CRYPTO_cleanup_all_ex_data();
372 ERR_free_strings();
373#ifdef HAVE_ERR_REMOVE_THREAD_STATE
374 ERR_remove_thread_state(NULL);
375#else
376 ERR_remove_state(0);
377#endif
378 EVP_cleanup();
Jelle van der Waac3b43282017-05-08 21:31:19 +0200379#endif
Simon Glass19c402a2013-06-13 15:10:02 -0700380}
381
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600382static void rsa_engine_remove(ENGINE *e)
383{
384 if (e) {
385 ENGINE_finish(e);
386 ENGINE_free(e);
387 }
388}
389
Heiko Schocher646257d2014-03-03 12:19:26 +0100390static int rsa_sign_with_key(RSA *rsa, struct checksum_algo *checksum_algo,
391 const struct image_region region[], int region_count,
392 uint8_t **sigp, uint *sig_size)
Simon Glass19c402a2013-06-13 15:10:02 -0700393{
394 EVP_PKEY *key;
395 EVP_MD_CTX *context;
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100396 int ret = 0;
397 size_t size;
Simon Glass19c402a2013-06-13 15:10:02 -0700398 uint8_t *sig;
399 int i;
400
401 key = EVP_PKEY_new();
402 if (!key)
403 return rsa_err("EVP_PKEY object creation failed");
404
405 if (!EVP_PKEY_set1_RSA(key, rsa)) {
406 ret = rsa_err("EVP key setup failed");
407 goto err_set;
408 }
409
410 size = EVP_PKEY_size(key);
411 sig = malloc(size);
412 if (!sig) {
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100413 fprintf(stderr, "Out of memory for signature (%zu bytes)\n",
Simon Glass19c402a2013-06-13 15:10:02 -0700414 size);
415 ret = -ENOMEM;
416 goto err_alloc;
417 }
418
419 context = EVP_MD_CTX_create();
420 if (!context) {
421 ret = rsa_err("EVP context creation failed");
422 goto err_create;
423 }
424 EVP_MD_CTX_init(context);
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100425 if (EVP_DigestSignInit(context, NULL,
426 checksum_algo->calculate_sign(),
427 NULL, key) <= 0) {
Simon Glass19c402a2013-06-13 15:10:02 -0700428 ret = rsa_err("Signer setup failed");
429 goto err_sign;
430 }
431
432 for (i = 0; i < region_count; i++) {
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100433 if (!EVP_DigestSignUpdate(context, region[i].data,
434 region[i].size)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700435 ret = rsa_err("Signing data failed");
436 goto err_sign;
437 }
438 }
439
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100440 if (!EVP_DigestSignFinal(context, sig, &size)) {
Simon Glass19c402a2013-06-13 15:10:02 -0700441 ret = rsa_err("Could not obtain signature");
442 goto err_sign;
443 }
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100444
Caliph Nomble7ac1a432018-07-25 22:13:03 -0400445 #if OPENSSL_VERSION_NUMBER < 0x10100000L || \
446 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02070000fL)
Jelle van der Waac3b43282017-05-08 21:31:19 +0200447 EVP_MD_CTX_cleanup(context);
448 #else
449 EVP_MD_CTX_reset(context);
450 #endif
Simon Glass19c402a2013-06-13 15:10:02 -0700451 EVP_MD_CTX_destroy(context);
452 EVP_PKEY_free(key);
453
Philippe Reynes3b5d6972018-11-14 13:50:59 +0100454 debug("Got signature: %d bytes, expected %zu\n", *sig_size, size);
Simon Glass19c402a2013-06-13 15:10:02 -0700455 *sigp = sig;
456 *sig_size = size;
457
458 return 0;
459
460err_sign:
461 EVP_MD_CTX_destroy(context);
462err_create:
463 free(sig);
464err_alloc:
465err_set:
466 EVP_PKEY_free(key);
467 return ret;
468}
469
470int rsa_sign(struct image_sign_info *info,
471 const struct image_region region[], int region_count,
472 uint8_t **sigp, uint *sig_len)
473{
474 RSA *rsa;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600475 ENGINE *e = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -0700476 int ret;
477
478 ret = rsa_init();
479 if (ret)
480 return ret;
481
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600482 if (info->engine_id) {
483 ret = rsa_engine_init(info->engine_id, &e);
484 if (ret)
485 goto err_engine;
486 }
487
488 ret = rsa_get_priv_key(info->keydir, info->keyname, e, &rsa);
Simon Glass19c402a2013-06-13 15:10:02 -0700489 if (ret)
490 goto err_priv;
Andrew Duda83dd98e2016-11-08 18:53:41 +0000491 ret = rsa_sign_with_key(rsa, info->checksum, region,
Heiko Schocher646257d2014-03-03 12:19:26 +0100492 region_count, sigp, sig_len);
Simon Glass19c402a2013-06-13 15:10:02 -0700493 if (ret)
494 goto err_sign;
495
496 RSA_free(rsa);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600497 if (info->engine_id)
498 rsa_engine_remove(e);
Simon Glass19c402a2013-06-13 15:10:02 -0700499 rsa_remove();
500
501 return ret;
502
503err_sign:
504 RSA_free(rsa);
505err_priv:
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600506 if (info->engine_id)
507 rsa_engine_remove(e);
508err_engine:
Simon Glass19c402a2013-06-13 15:10:02 -0700509 rsa_remove();
510 return ret;
511}
512
513/*
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200514 * rsa_get_exponent(): - Get the public exponent from an RSA key
515 */
516static int rsa_get_exponent(RSA *key, uint64_t *e)
517{
518 int ret;
519 BIGNUM *bn_te;
Jelle van der Waac3b43282017-05-08 21:31:19 +0200520 const BIGNUM *key_e;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200521 uint64_t te;
522
523 ret = -EINVAL;
524 bn_te = NULL;
525
526 if (!e)
527 goto cleanup;
528
Jelle van der Waac3b43282017-05-08 21:31:19 +0200529 RSA_get0_key(key, NULL, &key_e, NULL);
530 if (BN_num_bits(key_e) > 64)
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200531 goto cleanup;
532
Jelle van der Waac3b43282017-05-08 21:31:19 +0200533 *e = BN_get_word(key_e);
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200534
Jelle van der Waac3b43282017-05-08 21:31:19 +0200535 if (BN_num_bits(key_e) < 33) {
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200536 ret = 0;
537 goto cleanup;
538 }
539
Jelle van der Waac3b43282017-05-08 21:31:19 +0200540 bn_te = BN_dup(key_e);
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200541 if (!bn_te)
542 goto cleanup;
543
544 if (!BN_rshift(bn_te, bn_te, 32))
545 goto cleanup;
546
547 if (!BN_mask_bits(bn_te, 32))
548 goto cleanup;
549
550 te = BN_get_word(bn_te);
551 te <<= 32;
552 *e |= te;
553 ret = 0;
554
555cleanup:
556 if (bn_te)
557 BN_free(bn_te);
558
559 return ret;
560}
561
562/*
Simon Glass19c402a2013-06-13 15:10:02 -0700563 * rsa_get_params(): - Get the important parameters of an RSA public key
564 */
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200565int rsa_get_params(RSA *key, uint64_t *exponent, uint32_t *n0_invp,
566 BIGNUM **modulusp, BIGNUM **r_squaredp)
Simon Glass19c402a2013-06-13 15:10:02 -0700567{
568 BIGNUM *big1, *big2, *big32, *big2_32;
569 BIGNUM *n, *r, *r_squared, *tmp;
Jelle van der Waac3b43282017-05-08 21:31:19 +0200570 const BIGNUM *key_n;
Simon Glass19c402a2013-06-13 15:10:02 -0700571 BN_CTX *bn_ctx = BN_CTX_new();
572 int ret = 0;
573
574 /* Initialize BIGNUMs */
575 big1 = BN_new();
576 big2 = BN_new();
577 big32 = BN_new();
578 r = BN_new();
579 r_squared = BN_new();
580 tmp = BN_new();
581 big2_32 = BN_new();
582 n = BN_new();
583 if (!big1 || !big2 || !big32 || !r || !r_squared || !tmp || !big2_32 ||
584 !n) {
585 fprintf(stderr, "Out of memory (bignum)\n");
586 return -ENOMEM;
587 }
588
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200589 if (0 != rsa_get_exponent(key, exponent))
590 ret = -1;
591
Jelle van der Waac3b43282017-05-08 21:31:19 +0200592 RSA_get0_key(key, &key_n, NULL, NULL);
593 if (!BN_copy(n, key_n) || !BN_set_word(big1, 1L) ||
Simon Glass19c402a2013-06-13 15:10:02 -0700594 !BN_set_word(big2, 2L) || !BN_set_word(big32, 32L))
595 ret = -1;
596
597 /* big2_32 = 2^32 */
598 if (!BN_exp(big2_32, big2, big32, bn_ctx))
599 ret = -1;
600
601 /* Calculate n0_inv = -1 / n[0] mod 2^32 */
602 if (!BN_mod_inverse(tmp, n, big2_32, bn_ctx) ||
603 !BN_sub(tmp, big2_32, tmp))
604 ret = -1;
605 *n0_invp = BN_get_word(tmp);
606
607 /* Calculate R = 2^(# of key bits) */
608 if (!BN_set_word(tmp, BN_num_bits(n)) ||
609 !BN_exp(r, big2, tmp, bn_ctx))
610 ret = -1;
611
612 /* Calculate r_squared = R^2 mod n */
613 if (!BN_copy(r_squared, r) ||
614 !BN_mul(tmp, r_squared, r, bn_ctx) ||
615 !BN_mod(r_squared, tmp, n, bn_ctx))
616 ret = -1;
617
618 *modulusp = n;
619 *r_squaredp = r_squared;
620
621 BN_free(big1);
622 BN_free(big2);
623 BN_free(big32);
624 BN_free(r);
625 BN_free(tmp);
626 BN_free(big2_32);
627 if (ret) {
628 fprintf(stderr, "Bignum operations failed\n");
629 return -ENOMEM;
630 }
631
632 return ret;
633}
634
635static int fdt_add_bignum(void *blob, int noffset, const char *prop_name,
636 BIGNUM *num, int num_bits)
637{
638 int nwords = num_bits / 32;
639 int size;
640 uint32_t *buf, *ptr;
641 BIGNUM *tmp, *big2, *big32, *big2_32;
642 BN_CTX *ctx;
643 int ret;
644
645 tmp = BN_new();
646 big2 = BN_new();
647 big32 = BN_new();
648 big2_32 = BN_new();
Simon Glass8a682e02018-06-12 00:05:00 -0600649
650 /*
651 * Note: This code assumes that all of the above succeed, or all fail.
652 * In practice memory allocations generally do not fail (unless the
653 * process is killed), so it does not seem worth handling each of these
654 * as a separate case. Technicaly this could leak memory on failure,
655 * but a) it won't happen in practice, and b) it doesn't matter as we
656 * will immediately exit with a failure code.
657 */
Simon Glass19c402a2013-06-13 15:10:02 -0700658 if (!tmp || !big2 || !big32 || !big2_32) {
659 fprintf(stderr, "Out of memory (bignum)\n");
660 return -ENOMEM;
661 }
662 ctx = BN_CTX_new();
663 if (!tmp) {
664 fprintf(stderr, "Out of memory (bignum context)\n");
665 return -ENOMEM;
666 }
667 BN_set_word(big2, 2L);
668 BN_set_word(big32, 32L);
669 BN_exp(big2_32, big2, big32, ctx); /* B = 2^32 */
670
671 size = nwords * sizeof(uint32_t);
672 buf = malloc(size);
673 if (!buf) {
674 fprintf(stderr, "Out of memory (%d bytes)\n", size);
675 return -ENOMEM;
676 }
677
678 /* Write out modulus as big endian array of integers */
679 for (ptr = buf + nwords - 1; ptr >= buf; ptr--) {
680 BN_mod(tmp, num, big2_32, ctx); /* n = N mod B */
681 *ptr = cpu_to_fdt32(BN_get_word(tmp));
682 BN_rshift(num, num, 32); /* N = N/B */
683 }
684
mario.six@gdsys.cc713fb2d2016-07-22 08:58:40 +0200685 /*
686 * We try signing with successively increasing size values, so this
687 * might fail several times
688 */
Simon Glass19c402a2013-06-13 15:10:02 -0700689 ret = fdt_setprop(blob, noffset, prop_name, buf, size);
Simon Glass19c402a2013-06-13 15:10:02 -0700690 free(buf);
691 BN_free(tmp);
692 BN_free(big2);
693 BN_free(big32);
694 BN_free(big2_32);
695
Simon Glass8a682e02018-06-12 00:05:00 -0600696 return ret ? -FDT_ERR_NOSPACE : 0;
Simon Glass19c402a2013-06-13 15:10:02 -0700697}
698
699int rsa_add_verify_data(struct image_sign_info *info, void *keydest)
700{
701 BIGNUM *modulus, *r_squared;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200702 uint64_t exponent;
Simon Glass19c402a2013-06-13 15:10:02 -0700703 uint32_t n0_inv;
704 int parent, node;
705 char name[100];
706 int ret;
707 int bits;
708 RSA *rsa;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600709 ENGINE *e = NULL;
Simon Glass19c402a2013-06-13 15:10:02 -0700710
711 debug("%s: Getting verification data\n", __func__);
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600712 if (info->engine_id) {
713 ret = rsa_engine_init(info->engine_id, &e);
714 if (ret)
715 return ret;
716 }
717 ret = rsa_get_pub_key(info->keydir, info->keyname, e, &rsa);
Simon Glass19c402a2013-06-13 15:10:02 -0700718 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600719 goto err_get_pub_key;
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200720 ret = rsa_get_params(rsa, &exponent, &n0_inv, &modulus, &r_squared);
Simon Glass19c402a2013-06-13 15:10:02 -0700721 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600722 goto err_get_params;
Simon Glass19c402a2013-06-13 15:10:02 -0700723 bits = BN_num_bits(modulus);
724 parent = fdt_subnode_offset(keydest, 0, FIT_SIG_NODENAME);
725 if (parent == -FDT_ERR_NOTFOUND) {
726 parent = fdt_add_subnode(keydest, 0, FIT_SIG_NODENAME);
727 if (parent < 0) {
Simon Glass597a8b22014-06-12 07:24:42 -0600728 ret = parent;
729 if (ret != -FDT_ERR_NOSPACE) {
730 fprintf(stderr, "Couldn't create signature node: %s\n",
731 fdt_strerror(parent));
732 }
Simon Glass19c402a2013-06-13 15:10:02 -0700733 }
734 }
Simon Glass597a8b22014-06-12 07:24:42 -0600735 if (ret)
736 goto done;
Simon Glass19c402a2013-06-13 15:10:02 -0700737
738 /* Either create or overwrite the named key node */
739 snprintf(name, sizeof(name), "key-%s", info->keyname);
740 node = fdt_subnode_offset(keydest, parent, name);
741 if (node == -FDT_ERR_NOTFOUND) {
742 node = fdt_add_subnode(keydest, parent, name);
743 if (node < 0) {
Simon Glass597a8b22014-06-12 07:24:42 -0600744 ret = node;
745 if (ret != -FDT_ERR_NOSPACE) {
746 fprintf(stderr, "Could not create key subnode: %s\n",
747 fdt_strerror(node));
748 }
Simon Glass19c402a2013-06-13 15:10:02 -0700749 }
750 } else if (node < 0) {
751 fprintf(stderr, "Cannot select keys parent: %s\n",
752 fdt_strerror(node));
Simon Glass597a8b22014-06-12 07:24:42 -0600753 ret = node;
Simon Glass19c402a2013-06-13 15:10:02 -0700754 }
755
Simon Glass597a8b22014-06-12 07:24:42 -0600756 if (!ret) {
757 ret = fdt_setprop_string(keydest, node, "key-name-hint",
Simon Glass19c402a2013-06-13 15:10:02 -0700758 info->keyname);
Simon Glass597a8b22014-06-12 07:24:42 -0600759 }
Simon Glass4f427a42014-06-02 22:04:51 -0600760 if (!ret)
761 ret = fdt_setprop_u32(keydest, node, "rsa,num-bits", bits);
762 if (!ret)
763 ret = fdt_setprop_u32(keydest, node, "rsa,n0-inverse", n0_inv);
764 if (!ret) {
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +0200765 ret = fdt_setprop_u64(keydest, node, "rsa,exponent", exponent);
766 }
767 if (!ret) {
Simon Glass4f427a42014-06-02 22:04:51 -0600768 ret = fdt_add_bignum(keydest, node, "rsa,modulus", modulus,
769 bits);
770 }
771 if (!ret) {
772 ret = fdt_add_bignum(keydest, node, "rsa,r-squared", r_squared,
773 bits);
774 }
775 if (!ret) {
776 ret = fdt_setprop_string(keydest, node, FIT_ALGO_PROP,
Andrew Duda83dd98e2016-11-08 18:53:41 +0000777 info->name);
Simon Glass4f427a42014-06-02 22:04:51 -0600778 }
mario.six@gdsys.cc2b9ec762016-07-19 11:07:07 +0200779 if (!ret && info->require_keys) {
Simon Glass4f427a42014-06-02 22:04:51 -0600780 ret = fdt_setprop_string(keydest, node, "required",
781 info->require_keys);
Simon Glass19c402a2013-06-13 15:10:02 -0700782 }
Simon Glass597a8b22014-06-12 07:24:42 -0600783done:
Simon Glass19c402a2013-06-13 15:10:02 -0700784 BN_free(modulus);
785 BN_free(r_squared);
786 if (ret)
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600787 ret = ret == -FDT_ERR_NOSPACE ? -ENOSPC : -EIO;
788err_get_params:
789 RSA_free(rsa);
790err_get_pub_key:
791 if (info->engine_id)
792 rsa_engine_remove(e);
Simon Glass19c402a2013-06-13 15:10:02 -0700793
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600794 return ret;
Simon Glass19c402a2013-06-13 15:10:02 -0700795}