blob: 4e57ddea969cb614b6ff60b22d9f44fe64147610 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass604f23d2013-05-07 06:11:54 +00002/*
3 * Copyright (c) 2013, Google Inc.
4 *
5 * (C) Copyright 2008 Semihalf
6 *
7 * (C) Copyright 2000-2006
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass604f23d2013-05-07 06:11:54 +00009 */
10
11#include "mkimage.h"
Simon Glassce1400f2014-06-12 07:24:53 -060012#include <bootm.h>
Simon Glass604f23d2013-05-07 06:11:54 +000013#include <image.h>
Simon Glass56518e72013-06-13 15:10:01 -070014#include <version.h>
Simon Glass604f23d2013-05-07 06:11:54 +000015
16/**
Simon Glassb7260912013-05-07 06:11:56 +000017 * fit_set_hash_value - set hash value in requested has node
18 * @fit: pointer to the FIT format image header
19 * @noffset: hash node offset
20 * @value: hash value to be set
21 * @value_len: hash value length
22 *
23 * fit_set_hash_value() attempts to set hash value in a node at offset
24 * given and returns operation status to the caller.
25 *
26 * returns
27 * 0, on success
28 * -1, on failure
29 */
30static int fit_set_hash_value(void *fit, int noffset, uint8_t *value,
31 int value_len)
32{
33 int ret;
34
35 ret = fdt_setprop(fit, noffset, FIT_VALUE_PROP, value, value_len);
36 if (ret) {
37 printf("Can't set hash '%s' property for '%s' node(%s)\n",
38 FIT_VALUE_PROP, fit_get_name(fit, noffset, NULL),
39 fdt_strerror(ret));
Simon Glass1152a052016-07-03 09:40:44 -060040 return ret == -FDT_ERR_NOSPACE ? -ENOSPC : -EIO;
Simon Glassb7260912013-05-07 06:11:56 +000041 }
42
43 return 0;
44}
45
46/**
Simon Glass94e5fa42013-05-07 06:11:55 +000047 * fit_image_process_hash - Process a single subnode of the images/ node
48 *
49 * Check each subnode and process accordingly. For hash nodes we generate
50 * a hash of the supplised data and store it in the node.
51 *
52 * @fit: pointer to the FIT format image header
53 * @image_name: name of image being processes (used to display errors)
54 * @noffset: subnode offset
55 * @data: data to process
56 * @size: size of data in bytes
57 * @return 0 if ok, -1 on error
58 */
59static int fit_image_process_hash(void *fit, const char *image_name,
60 int noffset, const void *data, size_t size)
61{
62 uint8_t value[FIT_MAX_HASH_LEN];
Simon Glassbbb467d2013-05-07 06:12:01 +000063 const char *node_name;
Simon Glass94e5fa42013-05-07 06:11:55 +000064 int value_len;
65 char *algo;
Simon Glass1152a052016-07-03 09:40:44 -060066 int ret;
Simon Glass94e5fa42013-05-07 06:11:55 +000067
Simon Glassbbb467d2013-05-07 06:12:01 +000068 node_name = fit_get_name(fit, noffset, NULL);
Simon Glass94e5fa42013-05-07 06:11:55 +000069
70 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
71 printf("Can't get hash algo property for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +000072 node_name, image_name);
Simon Glass1152a052016-07-03 09:40:44 -060073 return -ENOENT;
Simon Glass94e5fa42013-05-07 06:11:55 +000074 }
75
76 if (calculate_hash(data, size, algo, value, &value_len)) {
77 printf("Unsupported hash algorithm (%s) for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +000078 algo, node_name, image_name);
Simon Glass1152a052016-07-03 09:40:44 -060079 return -EPROTONOSUPPORT;
Simon Glass94e5fa42013-05-07 06:11:55 +000080 }
81
Simon Glass1152a052016-07-03 09:40:44 -060082 ret = fit_set_hash_value(fit, noffset, value, value_len);
83 if (ret) {
Simon Glass94e5fa42013-05-07 06:11:55 +000084 printf("Can't set hash value for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +000085 node_name, image_name);
Simon Glass1152a052016-07-03 09:40:44 -060086 return ret;
Simon Glass94e5fa42013-05-07 06:11:55 +000087 }
88
89 return 0;
90}
91
92/**
Simon Glass56518e72013-06-13 15:10:01 -070093 * fit_image_write_sig() - write the signature to a FIT
Simon Glass604f23d2013-05-07 06:11:54 +000094 *
Simon Glass56518e72013-06-13 15:10:01 -070095 * This writes the signature and signer data to the FIT.
96 *
97 * @fit: pointer to the FIT format image header
98 * @noffset: hash node offset
99 * @value: signature value to be set
100 * @value_len: signature value length
101 * @comment: Text comment to write (NULL for none)
102 *
103 * returns
104 * 0, on success
105 * -FDT_ERR_..., on failure
106 */
107static int fit_image_write_sig(void *fit, int noffset, uint8_t *value,
108 int value_len, const char *comment, const char *region_prop,
Alex Kiernan795f4522018-06-20 20:10:52 +0000109 int region_proplen, const char *cmdname)
Simon Glass56518e72013-06-13 15:10:01 -0700110{
111 int string_size;
112 int ret;
113
114 /*
115 * Get the current string size, before we update the FIT and add
116 * more
117 */
118 string_size = fdt_size_dt_strings(fit);
119
120 ret = fdt_setprop(fit, noffset, FIT_VALUE_PROP, value, value_len);
121 if (!ret) {
122 ret = fdt_setprop_string(fit, noffset, "signer-name",
123 "mkimage");
124 }
125 if (!ret) {
126 ret = fdt_setprop_string(fit, noffset, "signer-version",
127 PLAIN_VERSION);
128 }
129 if (comment && !ret)
130 ret = fdt_setprop_string(fit, noffset, "comment", comment);
Alex Kiernan795f4522018-06-20 20:10:52 +0000131 if (!ret) {
132 time_t timestamp = imagetool_get_source_date(cmdname,
133 time(NULL));
134
135 ret = fit_set_timestamp(fit, noffset, timestamp);
136 }
Simon Glass56518e72013-06-13 15:10:01 -0700137 if (region_prop && !ret) {
138 uint32_t strdata[2];
139
140 ret = fdt_setprop(fit, noffset, "hashed-nodes",
141 region_prop, region_proplen);
Teddy Reed7346c1e2018-06-09 11:45:20 -0400142 /* This is a legacy offset, it is unused, and must remain 0. */
Simon Glass56518e72013-06-13 15:10:01 -0700143 strdata[0] = 0;
144 strdata[1] = cpu_to_fdt32(string_size);
145 if (!ret) {
146 ret = fdt_setprop(fit, noffset, "hashed-strings",
147 strdata, sizeof(strdata));
148 }
149 }
150
151 return ret;
152}
153
154static int fit_image_setup_sig(struct image_sign_info *info,
155 const char *keydir, void *fit, const char *image_name,
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600156 int noffset, const char *require_keys, const char *engine_id)
Simon Glass56518e72013-06-13 15:10:01 -0700157{
158 const char *node_name;
159 char *algo_name;
Philippe Reynes20031562018-11-14 13:51:00 +0100160 const char *padding_name;
Simon Glass56518e72013-06-13 15:10:01 -0700161
162 node_name = fit_get_name(fit, noffset, NULL);
163 if (fit_image_hash_get_algo(fit, noffset, &algo_name)) {
164 printf("Can't get algo property for '%s' signature node in '%s' image node\n",
165 node_name, image_name);
166 return -1;
167 }
168
Philippe Reynes20031562018-11-14 13:51:00 +0100169 padding_name = fdt_getprop(fit, noffset, "padding", NULL);
170
Simon Glass56518e72013-06-13 15:10:01 -0700171 memset(info, '\0', sizeof(*info));
172 info->keydir = keydir;
Simon Glass72188f52020-03-18 11:44:06 -0600173 info->keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
Simon Glass56518e72013-06-13 15:10:01 -0700174 info->fit = fit;
175 info->node_offset = noffset;
Masahiro Yamada1d88a992017-10-27 13:25:21 +0900176 info->name = strdup(algo_name);
Andrew Duda83dd98e2016-11-08 18:53:41 +0000177 info->checksum = image_get_checksum_algo(algo_name);
178 info->crypto = image_get_crypto_algo(algo_name);
Philippe Reynes20031562018-11-14 13:51:00 +0100179 info->padding = image_get_padding_algo(padding_name);
Simon Glass56518e72013-06-13 15:10:01 -0700180 info->require_keys = require_keys;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600181 info->engine_id = engine_id;
Andrew Duda83dd98e2016-11-08 18:53:41 +0000182 if (!info->checksum || !info->crypto) {
Simon Glass56518e72013-06-13 15:10:01 -0700183 printf("Unsupported signature algorithm (%s) for '%s' signature node in '%s' image node\n",
184 algo_name, node_name, image_name);
185 return -1;
186 }
187
188 return 0;
189}
190
191/**
192 * fit_image_process_sig- Process a single subnode of the images/ node
193 *
194 * Check each subnode and process accordingly. For signature nodes we
195 * generate a signed hash of the supplised data and store it in the node.
196 *
197 * @keydir: Directory containing keys to use for signing
198 * @keydest: Destination FDT blob to write public keys into
199 * @fit: pointer to the FIT format image header
200 * @image_name: name of image being processes (used to display errors)
201 * @noffset: subnode offset
202 * @data: data to process
203 * @size: size of data in bytes
204 * @comment: Comment to add to signature nodes
205 * @require_keys: Mark all keys as 'required'
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600206 * @engine_id: Engine to use for signing
Simon Glass56518e72013-06-13 15:10:01 -0700207 * @return 0 if ok, -1 on error
208 */
209static int fit_image_process_sig(const char *keydir, void *keydest,
210 void *fit, const char *image_name,
211 int noffset, const void *data, size_t size,
Alex Kiernan795f4522018-06-20 20:10:52 +0000212 const char *comment, int require_keys, const char *engine_id,
213 const char *cmdname)
Simon Glass56518e72013-06-13 15:10:01 -0700214{
215 struct image_sign_info info;
216 struct image_region region;
217 const char *node_name;
218 uint8_t *value;
219 uint value_len;
220 int ret;
221
222 if (fit_image_setup_sig(&info, keydir, fit, image_name, noffset,
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600223 require_keys ? "image" : NULL, engine_id))
Simon Glass56518e72013-06-13 15:10:01 -0700224 return -1;
225
226 node_name = fit_get_name(fit, noffset, NULL);
227 region.data = data;
228 region.size = size;
Andrew Duda83dd98e2016-11-08 18:53:41 +0000229 ret = info.crypto->sign(&info, &region, 1, &value, &value_len);
Simon Glass56518e72013-06-13 15:10:01 -0700230 if (ret) {
231 printf("Failed to sign '%s' signature node in '%s' image node: %d\n",
232 node_name, image_name, ret);
233
234 /* We allow keys to be missing */
235 if (ret == -ENOENT)
236 return 0;
237 return -1;
238 }
239
240 ret = fit_image_write_sig(fit, noffset, value, value_len, comment,
Alex Kiernan795f4522018-06-20 20:10:52 +0000241 NULL, 0, cmdname);
Simon Glass56518e72013-06-13 15:10:01 -0700242 if (ret) {
Simon Glassa9468112014-06-02 22:04:53 -0600243 if (ret == -FDT_ERR_NOSPACE)
244 return -ENOSPC;
245 printf("Can't write signature for '%s' signature node in '%s' conf node: %s\n",
Simon Glass56518e72013-06-13 15:10:01 -0700246 node_name, image_name, fdt_strerror(ret));
247 return -1;
248 }
249 free(value);
250
251 /* Get keyname again, as FDT has changed and invalidated our pointer */
Simon Glass72188f52020-03-18 11:44:06 -0600252 info.keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
Simon Glass56518e72013-06-13 15:10:01 -0700253
mario.six@gdsys.cc713fb2d2016-07-22 08:58:40 +0200254 /*
255 * Write the public key into the supplied FDT file; this might fail
mario.six@gdsys.ccc236ebd2016-07-19 11:07:06 +0200256 * several times, since we try signing with successively increasing
mario.six@gdsys.cc713fb2d2016-07-22 08:58:40 +0200257 * size values
258 */
Masahiro Yamada6793d012017-10-27 15:04:20 +0900259 if (keydest) {
260 ret = info.crypto->add_verify_data(&info, keydest);
261 if (ret) {
262 printf("Failed to add verification data for '%s' signature node in '%s' image node\n",
263 node_name, image_name);
264 return ret;
265 }
266 }
Simon Glass56518e72013-06-13 15:10:01 -0700267
268 return 0;
269}
270
Philippe Reynes7298e422019-12-18 18:25:41 +0100271static int fit_image_read_data(char *filename, unsigned char *data,
272 int expected_size)
273{
274 struct stat sbuf;
275 int fd, ret = -1;
276 ssize_t n;
277
278 /* Open file */
279 fd = open(filename, O_RDONLY | O_BINARY);
280 if (fd < 0) {
281 printf("Can't open file %s (err=%d => %s)\n",
282 filename, errno, strerror(errno));
283 return -1;
284 }
285
286 /* Compute file size */
287 if (fstat(fd, &sbuf) < 0) {
288 printf("Can't fstat file %s (err=%d => %s)\n",
289 filename, errno, strerror(errno));
290 goto err;
291 }
292
293 /* Check file size */
294 if (sbuf.st_size != expected_size) {
295 printf("File %s don't have the expected size (size=%ld, expected=%d)\n",
296 filename, sbuf.st_size, expected_size);
297 goto err;
298 }
299
300 /* Read data */
301 n = read(fd, data, sbuf.st_size);
302 if (n < 0) {
303 printf("Can't read file %s (err=%d => %s)\n",
304 filename, errno, strerror(errno));
305 goto err;
306 }
307
308 /* Check that we have read all the file */
309 if (n != sbuf.st_size) {
310 printf("Can't read all file %s (read %ld bytes, expexted %ld)\n",
311 filename, n, sbuf.st_size);
312 goto err;
313 }
314
315 ret = 0;
316
317err:
318 close(fd);
319 return ret;
320}
321
322static int fit_image_setup_cipher(struct image_cipher_info *info,
323 const char *keydir, void *fit,
324 const char *image_name, int image_noffset,
325 const char *node_name, int noffset)
326{
327 char *algo_name;
328 char filename[128];
329 int ret = -1;
330
331 if (fit_image_cipher_get_algo(fit, noffset, &algo_name)) {
332 printf("Can't get algo name for cipher '%s' in image '%s'\n",
333 node_name, image_name);
334 goto out;
335 }
336
337 info->keydir = keydir;
338
339 /* Read the key name */
Simon Glass72188f52020-03-18 11:44:06 -0600340 info->keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
Philippe Reynes7298e422019-12-18 18:25:41 +0100341 if (!info->keyname) {
342 printf("Can't get key name for cipher '%s' in image '%s'\n",
343 node_name, image_name);
344 goto out;
345 }
346
347 /* Read the IV name */
348 info->ivname = fdt_getprop(fit, noffset, "iv-name-hint", NULL);
349 if (!info->ivname) {
350 printf("Can't get iv name for cipher '%s' in image '%s'\n",
351 node_name, image_name);
352 goto out;
353 }
354
355 info->fit = fit;
356 info->node_noffset = noffset;
357 info->name = algo_name;
358
359 info->cipher = image_get_cipher_algo(algo_name);
360 if (!info->cipher) {
361 printf("Can't get algo for cipher '%s'\n", image_name);
362 goto out;
363 }
364
365 /* Read the key in the file */
366 snprintf(filename, sizeof(filename), "%s/%s%s",
367 info->keydir, info->keyname, ".bin");
368 info->key = malloc(info->cipher->key_len);
369 if (!info->key) {
370 printf("Can't allocate memory for key\n");
371 ret = -1;
372 goto out;
373 }
374 ret = fit_image_read_data(filename, (unsigned char *)info->key,
375 info->cipher->key_len);
376 if (ret < 0)
377 goto out;
378
379 /* Read the IV in the file */
380 snprintf(filename, sizeof(filename), "%s/%s%s",
381 info->keydir, info->ivname, ".bin");
382 info->iv = malloc(info->cipher->iv_len);
383 if (!info->iv) {
384 printf("Can't allocate memory for iv\n");
385 ret = -1;
386 goto out;
387 }
388 ret = fit_image_read_data(filename, (unsigned char *)info->iv,
389 info->cipher->iv_len);
390
391 out:
392 return ret;
393}
394
395int fit_image_write_cipher(void *fit, int image_noffset, int noffset,
396 const void *data, size_t size,
397 unsigned char *data_ciphered, int data_ciphered_len)
398{
399 int ret = -1;
400
401 /* Remove unciphered data */
402 ret = fdt_delprop(fit, image_noffset, FIT_DATA_PROP);
403 if (ret) {
404 printf("Can't remove data (err = %d)\n", ret);
405 goto out;
406 }
407
408 /* Add ciphered data */
409 ret = fdt_setprop(fit, image_noffset, FIT_DATA_PROP,
410 data_ciphered, data_ciphered_len);
411 if (ret) {
412 printf("Can't add ciphered data (err = %d)\n", ret);
413 goto out;
414 }
415
416 /* add non ciphered data size */
417 ret = fdt_setprop_u32(fit, image_noffset, "data-size-unciphered", size);
418 if (ret) {
419 printf("Can't add unciphered data size (err = %d)\n", ret);
420 goto out;
421 }
422
423 out:
424 return ret;
425}
426
427static int
428fit_image_process_cipher(const char *keydir, void *keydest, void *fit,
429 const char *image_name, int image_noffset,
430 const char *node_name, int node_noffset,
431 const void *data, size_t size,
432 const char *cmdname)
433{
434 struct image_cipher_info info;
435 unsigned char *data_ciphered = NULL;
436 int data_ciphered_len;
437 int ret;
438
439 memset(&info, 0, sizeof(info));
440
441 ret = fit_image_setup_cipher(&info, keydir, fit, image_name,
442 image_noffset, node_name, node_noffset);
443 if (ret)
444 goto out;
445
446 ret = info.cipher->encrypt(&info, data, size,
447 &data_ciphered, &data_ciphered_len);
448 if (ret)
449 goto out;
450
451 /*
452 * Write the public key into the supplied FDT file; this might fail
453 * several times, since we try signing with successively increasing
454 * size values
455 */
456 if (keydest) {
457 ret = info.cipher->add_cipher_data(&info, keydest);
458 if (ret) {
459 printf("Failed to add verification data for cipher '%s' in image '%s'\n",
460 info.keyname, image_name);
461 goto out;
462 }
463 }
464
465 ret = fit_image_write_cipher(fit, image_noffset, node_noffset,
466 data, size,
467 data_ciphered, data_ciphered_len);
468
469 out:
470 free(data_ciphered);
471 free((void *)info.key);
472 free((void *)info.iv);
473 return ret;
474}
475
476int fit_image_cipher_data(const char *keydir, void *keydest,
477 void *fit, int image_noffset, const char *comment,
478 int require_keys, const char *engine_id,
479 const char *cmdname)
480{
481 const char *image_name;
482 const void *data;
483 size_t size;
484 int node_noffset;
485
486 /* Get image name */
487 image_name = fit_get_name(fit, image_noffset, NULL);
488 if (!image_name) {
489 printf("Can't get image name\n");
490 return -1;
491 }
492
493 /* Get image data and data length */
494 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
495 printf("Can't get image data/size\n");
496 return -1;
497 }
498
499 /* Process all hash subnodes of the component image node */
500 for (node_noffset = fdt_first_subnode(fit, image_noffset);
501 node_noffset >= 0;
502 node_noffset = fdt_next_subnode(fit, node_noffset)) {
503 const char *node_name;
504 int ret = 0;
505
506 node_name = fit_get_name(fit, node_noffset, NULL);
507 if (!node_name) {
508 printf("Can't get node name\n");
509 return -1;
510 }
511
512 if (IMAGE_ENABLE_ENCRYPT && keydir &&
513 !strncmp(node_name, FIT_CIPHER_NODENAME,
514 strlen(FIT_CIPHER_NODENAME)))
515 ret = fit_image_process_cipher(keydir, keydest,
516 fit, image_name,
517 image_noffset,
518 node_name, node_noffset,
519 data, size, cmdname);
520 if (ret)
521 return ret;
522 }
523
524 return 0;
525}
526
Simon Glass56518e72013-06-13 15:10:01 -0700527/**
528 * fit_image_add_verification_data() - calculate/set verig. data for image node
529 *
530 * This adds hash and signature values for an component image node.
Simon Glassbbb467d2013-05-07 06:12:01 +0000531 *
532 * All existing hash subnodes are checked, if algorithm property is set to
533 * one of the supported hash algorithms, hash value is computed and
534 * corresponding hash node property is set, for example:
Simon Glass604f23d2013-05-07 06:11:54 +0000535 *
536 * Input component image node structure:
537 *
Andre Przywarab2267e82017-12-04 02:05:10 +0000538 * o image-1 (at image_noffset)
Simon Glass604f23d2013-05-07 06:11:54 +0000539 * | - data = [binary data]
Andre Przywarab2267e82017-12-04 02:05:10 +0000540 * o hash-1
Simon Glass604f23d2013-05-07 06:11:54 +0000541 * |- algo = "sha1"
542 *
543 * Output component image node structure:
544 *
Andre Przywarab2267e82017-12-04 02:05:10 +0000545 * o image-1 (at image_noffset)
Simon Glass604f23d2013-05-07 06:11:54 +0000546 * | - data = [binary data]
Andre Przywarab2267e82017-12-04 02:05:10 +0000547 * o hash-1
Simon Glass604f23d2013-05-07 06:11:54 +0000548 * |- algo = "sha1"
549 * |- value = sha1(data)
550 *
Simon Glassbbb467d2013-05-07 06:12:01 +0000551 * For signature details, please see doc/uImage.FIT/signature.txt
552 *
Simon Glass56518e72013-06-13 15:10:01 -0700553 * @keydir Directory containing *.key and *.crt files (or NULL)
554 * @keydest FDT Blob to write public keys into (NULL if none)
Simon Glassbbb467d2013-05-07 06:12:01 +0000555 * @fit: Pointer to the FIT format image header
556 * @image_noffset: Requested component image node
Simon Glass56518e72013-06-13 15:10:01 -0700557 * @comment: Comment to add to signature nodes
558 * @require_keys: Mark all keys as 'required'
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600559 * @engine_id: Engine to use for signing
Simon Glassbbb467d2013-05-07 06:12:01 +0000560 * @return: 0 on success, <0 on failure
Simon Glass604f23d2013-05-07 06:11:54 +0000561 */
Simon Glass56518e72013-06-13 15:10:01 -0700562int fit_image_add_verification_data(const char *keydir, void *keydest,
563 void *fit, int image_noffset, const char *comment,
Alex Kiernan795f4522018-06-20 20:10:52 +0000564 int require_keys, const char *engine_id, const char *cmdname)
Simon Glass604f23d2013-05-07 06:11:54 +0000565{
Simon Glassbbb467d2013-05-07 06:12:01 +0000566 const char *image_name;
Simon Glass604f23d2013-05-07 06:11:54 +0000567 const void *data;
568 size_t size;
Simon Glass604f23d2013-05-07 06:11:54 +0000569 int noffset;
Simon Glass604f23d2013-05-07 06:11:54 +0000570
571 /* Get image data and data length */
572 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
573 printf("Can't get image data/size\n");
574 return -1;
575 }
576
Simon Glass94e5fa42013-05-07 06:11:55 +0000577 image_name = fit_get_name(fit, image_noffset, NULL);
578
Simon Glass604f23d2013-05-07 06:11:54 +0000579 /* Process all hash subnodes of the component image node */
Simon Glassbbb467d2013-05-07 06:12:01 +0000580 for (noffset = fdt_first_subnode(fit, image_noffset);
581 noffset >= 0;
582 noffset = fdt_next_subnode(fit, noffset)) {
583 const char *node_name;
584 int ret = 0;
585
586 /*
587 * Check subnode name, must be equal to "hash" or "signature".
588 * Multiple hash nodes require unique unit node
Andre Przywarab2267e82017-12-04 02:05:10 +0000589 * names, e.g. hash-1, hash-2, signature-1, etc.
Simon Glassbbb467d2013-05-07 06:12:01 +0000590 */
591 node_name = fit_get_name(fit, noffset, NULL);
592 if (!strncmp(node_name, FIT_HASH_NODENAME,
593 strlen(FIT_HASH_NODENAME))) {
594 ret = fit_image_process_hash(fit, image_name, noffset,
595 data, size);
Simon Glass56518e72013-06-13 15:10:01 -0700596 } else if (IMAGE_ENABLE_SIGN && keydir &&
597 !strncmp(node_name, FIT_SIG_NODENAME,
598 strlen(FIT_SIG_NODENAME))) {
599 ret = fit_image_process_sig(keydir, keydest,
600 fit, image_name, noffset, data, size,
Alex Kiernan795f4522018-06-20 20:10:52 +0000601 comment, require_keys, engine_id, cmdname);
Simon Glass604f23d2013-05-07 06:11:54 +0000602 }
Simon Glassbbb467d2013-05-07 06:12:01 +0000603 if (ret)
Simon Glass1152a052016-07-03 09:40:44 -0600604 return ret;
Simon Glassbbb467d2013-05-07 06:12:01 +0000605 }
606
607 return 0;
608}
609
Simon Glass4d098522013-06-13 15:10:09 -0700610struct strlist {
611 int count;
612 char **strings;
613};
614
615static void strlist_init(struct strlist *list)
616{
617 memset(list, '\0', sizeof(*list));
618}
619
620static void strlist_free(struct strlist *list)
621{
622 int i;
623
624 for (i = 0; i < list->count; i++)
625 free(list->strings[i]);
626 free(list->strings);
627}
628
629static int strlist_add(struct strlist *list, const char *str)
630{
631 char *dup;
632
633 dup = strdup(str);
634 list->strings = realloc(list->strings,
635 (list->count + 1) * sizeof(char *));
636 if (!list || !str)
637 return -1;
638 list->strings[list->count++] = dup;
639
640 return 0;
641}
642
643static const char *fit_config_get_image_list(void *fit, int noffset,
644 int *lenp, int *allow_missingp)
645{
646 static const char default_list[] = FIT_KERNEL_PROP "\0"
647 FIT_FDT_PROP;
648 const char *prop;
649
650 /* If there is an "image" property, use that */
651 prop = fdt_getprop(fit, noffset, "sign-images", lenp);
652 if (prop) {
653 *allow_missingp = 0;
654 return *lenp ? prop : NULL;
655 }
656
657 /* Default image list */
658 *allow_missingp = 1;
659 *lenp = sizeof(default_list);
660
661 return default_list;
662}
663
664static int fit_config_get_hash_list(void *fit, int conf_noffset,
665 int sig_offset, struct strlist *node_inc)
666{
667 int allow_missing;
668 const char *prop, *iname, *end;
669 const char *conf_name, *sig_name;
670 char name[200], path[200];
671 int image_count;
672 int ret, len;
673
674 conf_name = fit_get_name(fit, conf_noffset, NULL);
675 sig_name = fit_get_name(fit, sig_offset, NULL);
676
677 /*
678 * Build a list of nodes we need to hash. We always need the root
679 * node and the configuration.
680 */
681 strlist_init(node_inc);
682 snprintf(name, sizeof(name), "%s/%s", FIT_CONFS_PATH, conf_name);
683 if (strlist_add(node_inc, "/") ||
684 strlist_add(node_inc, name))
685 goto err_mem;
686
687 /* Get a list of images that we intend to sign */
Heiko Schocher66b36f82014-03-03 12:19:23 +0100688 prop = fit_config_get_image_list(fit, sig_offset, &len,
Simon Glass4d098522013-06-13 15:10:09 -0700689 &allow_missing);
690 if (!prop)
691 return 0;
692
693 /* Locate the images */
694 end = prop + len;
695 image_count = 0;
696 for (iname = prop; iname < end; iname += strlen(iname) + 1) {
697 int noffset;
698 int image_noffset;
699 int hash_count;
700
701 image_noffset = fit_conf_get_prop_node(fit, conf_noffset,
702 iname);
703 if (image_noffset < 0) {
704 printf("Failed to find image '%s' in configuration '%s/%s'\n",
705 iname, conf_name, sig_name);
706 if (allow_missing)
707 continue;
708
709 return -ENOENT;
710 }
711
712 ret = fdt_get_path(fit, image_noffset, path, sizeof(path));
713 if (ret < 0)
714 goto err_path;
715 if (strlist_add(node_inc, path))
716 goto err_mem;
717
718 snprintf(name, sizeof(name), "%s/%s", FIT_CONFS_PATH,
719 conf_name);
720
721 /* Add all this image's hashes */
722 hash_count = 0;
723 for (noffset = fdt_first_subnode(fit, image_noffset);
724 noffset >= 0;
725 noffset = fdt_next_subnode(fit, noffset)) {
726 const char *name = fit_get_name(fit, noffset, NULL);
727
728 if (strncmp(name, FIT_HASH_NODENAME,
729 strlen(FIT_HASH_NODENAME)))
730 continue;
731 ret = fdt_get_path(fit, noffset, path, sizeof(path));
732 if (ret < 0)
733 goto err_path;
734 if (strlist_add(node_inc, path))
735 goto err_mem;
736 hash_count++;
737 }
738
739 if (!hash_count) {
740 printf("Failed to find any hash nodes in configuration '%s/%s' image '%s' - without these it is not possible to verify this image\n",
741 conf_name, sig_name, iname);
742 return -ENOMSG;
743 }
744
745 image_count++;
746 }
747
748 if (!image_count) {
749 printf("Failed to find any images for configuration '%s/%s'\n",
750 conf_name, sig_name);
751 return -ENOMSG;
752 }
753
754 return 0;
755
756err_mem:
757 printf("Out of memory processing configuration '%s/%s'\n", conf_name,
758 sig_name);
759 return -ENOMEM;
760
761err_path:
762 printf("Failed to get path for image '%s' in configuration '%s/%s': %s\n",
763 iname, conf_name, sig_name, fdt_strerror(ret));
764 return -ENOENT;
765}
766
767static int fit_config_get_data(void *fit, int conf_noffset, int noffset,
768 struct image_region **regionp, int *region_countp,
769 char **region_propp, int *region_proplen)
770{
771 char * const exc_prop[] = {"data"};
772 struct strlist node_inc;
773 struct image_region *region;
774 struct fdt_region fdt_regions[100];
775 const char *conf_name, *sig_name;
776 char path[200];
777 int count, i;
778 char *region_prop;
779 int ret, len;
780
781 conf_name = fit_get_name(fit, conf_noffset, NULL);
Masahiro Yamada16067e62017-10-19 19:16:21 +0900782 sig_name = fit_get_name(fit, noffset, NULL);
Simon Glass4d098522013-06-13 15:10:09 -0700783 debug("%s: conf='%s', sig='%s'\n", __func__, conf_name, sig_name);
784
785 /* Get a list of nodes we want to hash */
786 ret = fit_config_get_hash_list(fit, conf_noffset, noffset, &node_inc);
787 if (ret)
788 return ret;
789
790 /* Get a list of regions to hash */
791 count = fdt_find_regions(fit, node_inc.strings, node_inc.count,
792 exc_prop, ARRAY_SIZE(exc_prop),
793 fdt_regions, ARRAY_SIZE(fdt_regions),
794 path, sizeof(path), 1);
795 if (count < 0) {
796 printf("Failed to hash configuration '%s/%s': %s\n", conf_name,
797 sig_name, fdt_strerror(ret));
798 return -EIO;
799 }
800 if (count == 0) {
801 printf("No data to hash for configuration '%s/%s': %s\n",
802 conf_name, sig_name, fdt_strerror(ret));
803 return -EINVAL;
804 }
805
806 /* Build our list of data blocks */
807 region = fit_region_make_list(fit, fdt_regions, count, NULL);
808 if (!region) {
809 printf("Out of memory hashing configuration '%s/%s'\n",
810 conf_name, sig_name);
811 return -ENOMEM;
812 }
813
814 /* Create a list of all hashed properties */
815 debug("Hash nodes:\n");
816 for (i = len = 0; i < node_inc.count; i++) {
817 debug(" %s\n", node_inc.strings[i]);
818 len += strlen(node_inc.strings[i]) + 1;
819 }
820 region_prop = malloc(len);
821 if (!region_prop) {
822 printf("Out of memory setting up regions for configuration '%s/%s'\n",
823 conf_name, sig_name);
824 return -ENOMEM;
825 }
826 for (i = len = 0; i < node_inc.count;
827 len += strlen(node_inc.strings[i]) + 1, i++)
828 strcpy(region_prop + len, node_inc.strings[i]);
829 strlist_free(&node_inc);
830
831 *region_countp = count;
832 *regionp = region;
833 *region_propp = region_prop;
834 *region_proplen = len;
835
836 return 0;
837}
838
839static int fit_config_process_sig(const char *keydir, void *keydest,
840 void *fit, const char *conf_name, int conf_noffset,
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600841 int noffset, const char *comment, int require_keys,
Alex Kiernan795f4522018-06-20 20:10:52 +0000842 const char *engine_id, const char *cmdname)
Simon Glass4d098522013-06-13 15:10:09 -0700843{
844 struct image_sign_info info;
845 const char *node_name;
846 struct image_region *region;
847 char *region_prop;
848 int region_proplen;
849 int region_count;
850 uint8_t *value;
851 uint value_len;
852 int ret;
853
854 node_name = fit_get_name(fit, noffset, NULL);
855 if (fit_config_get_data(fit, conf_noffset, noffset, &region,
856 &region_count, &region_prop, &region_proplen))
857 return -1;
858
859 if (fit_image_setup_sig(&info, keydir, fit, conf_name, noffset,
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600860 require_keys ? "conf" : NULL, engine_id))
Simon Glass4d098522013-06-13 15:10:09 -0700861 return -1;
862
Andrew Duda83dd98e2016-11-08 18:53:41 +0000863 ret = info.crypto->sign(&info, region, region_count, &value,
864 &value_len);
Simon Glass4d098522013-06-13 15:10:09 -0700865 free(region);
866 if (ret) {
867 printf("Failed to sign '%s' signature node in '%s' conf node\n",
868 node_name, conf_name);
869
870 /* We allow keys to be missing */
871 if (ret == -ENOENT)
872 return 0;
873 return -1;
874 }
875
Simon Glassa9468112014-06-02 22:04:53 -0600876 ret = fit_image_write_sig(fit, noffset, value, value_len, comment,
Alex Kiernan795f4522018-06-20 20:10:52 +0000877 region_prop, region_proplen, cmdname);
Simon Glassa9468112014-06-02 22:04:53 -0600878 if (ret) {
879 if (ret == -FDT_ERR_NOSPACE)
880 return -ENOSPC;
881 printf("Can't write signature for '%s' signature node in '%s' conf node: %s\n",
882 node_name, conf_name, fdt_strerror(ret));
Simon Glass4d098522013-06-13 15:10:09 -0700883 return -1;
884 }
885 free(value);
886 free(region_prop);
887
888 /* Get keyname again, as FDT has changed and invalidated our pointer */
Simon Glass72188f52020-03-18 11:44:06 -0600889 info.keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
Simon Glass4d098522013-06-13 15:10:09 -0700890
891 /* Write the public key into the supplied FDT file */
Simon Glassa9468112014-06-02 22:04:53 -0600892 if (keydest) {
Andrew Duda83dd98e2016-11-08 18:53:41 +0000893 ret = info.crypto->add_verify_data(&info, keydest);
Simon Glassa9468112014-06-02 22:04:53 -0600894 if (ret) {
Masahiro Yamada76b9cba2017-10-27 15:04:21 +0900895 printf("Failed to add verification data for '%s' signature node in '%s' configuration node\n",
Simon Glassa9468112014-06-02 22:04:53 -0600896 node_name, conf_name);
Simon Glassa9468112014-06-02 22:04:53 -0600897 }
Simon Glass597a8b22014-06-12 07:24:42 -0600898 return ret;
Simon Glass4d098522013-06-13 15:10:09 -0700899 }
900
901 return 0;
902}
903
904static int fit_config_add_verification_data(const char *keydir, void *keydest,
905 void *fit, int conf_noffset, const char *comment,
Alex Kiernan795f4522018-06-20 20:10:52 +0000906 int require_keys, const char *engine_id, const char *cmdname)
Simon Glass4d098522013-06-13 15:10:09 -0700907{
908 const char *conf_name;
909 int noffset;
910
911 conf_name = fit_get_name(fit, conf_noffset, NULL);
912
913 /* Process all hash subnodes of the configuration node */
914 for (noffset = fdt_first_subnode(fit, conf_noffset);
915 noffset >= 0;
916 noffset = fdt_next_subnode(fit, noffset)) {
917 const char *node_name;
918 int ret = 0;
919
920 node_name = fit_get_name(fit, noffset, NULL);
921 if (!strncmp(node_name, FIT_SIG_NODENAME,
922 strlen(FIT_SIG_NODENAME))) {
923 ret = fit_config_process_sig(keydir, keydest,
924 fit, conf_name, conf_noffset, noffset, comment,
Alex Kiernan795f4522018-06-20 20:10:52 +0000925 require_keys, engine_id, cmdname);
Simon Glass4d098522013-06-13 15:10:09 -0700926 }
927 if (ret)
928 return ret;
929 }
930
931 return 0;
932}
933
Philippe Reynes7298e422019-12-18 18:25:41 +0100934int fit_cipher_data(const char *keydir, void *keydest, void *fit,
935 const char *comment, int require_keys,
936 const char *engine_id, const char *cmdname)
937{
938 int images_noffset;
939 int noffset;
940 int ret;
941
942 /* Find images parent node offset */
943 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
944 if (images_noffset < 0) {
945 printf("Can't find images parent node '%s' (%s)\n",
946 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
947 return images_noffset;
948 }
949
950 /* Process its subnodes, print out component images details */
951 for (noffset = fdt_first_subnode(fit, images_noffset);
952 noffset >= 0;
953 noffset = fdt_next_subnode(fit, noffset)) {
954 /*
955 * Direct child node of the images parent node,
956 * i.e. component image node.
957 */
958 ret = fit_image_cipher_data(keydir, keydest,
959 fit, noffset, comment,
960 require_keys, engine_id,
961 cmdname);
962 if (ret)
963 return ret;
964 }
965
966 return 0;
967}
968
Simon Glass56518e72013-06-13 15:10:01 -0700969int fit_add_verification_data(const char *keydir, void *keydest, void *fit,
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600970 const char *comment, int require_keys,
Alex Kiernan795f4522018-06-20 20:10:52 +0000971 const char *engine_id, const char *cmdname)
Simon Glassbbb467d2013-05-07 06:12:01 +0000972{
Simon Glass4d098522013-06-13 15:10:09 -0700973 int images_noffset, confs_noffset;
Simon Glassbbb467d2013-05-07 06:12:01 +0000974 int noffset;
975 int ret;
976
977 /* Find images parent node offset */
978 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
979 if (images_noffset < 0) {
980 printf("Can't find images parent node '%s' (%s)\n",
981 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
982 return images_noffset;
983 }
984
985 /* Process its subnodes, print out component images details */
986 for (noffset = fdt_first_subnode(fit, images_noffset);
987 noffset >= 0;
988 noffset = fdt_next_subnode(fit, noffset)) {
989 /*
990 * Direct child node of the images parent node,
991 * i.e. component image node.
992 */
Simon Glass56518e72013-06-13 15:10:01 -0700993 ret = fit_image_add_verification_data(keydir, keydest,
Alex Kiernan795f4522018-06-20 20:10:52 +0000994 fit, noffset, comment, require_keys, engine_id,
995 cmdname);
Simon Glassbbb467d2013-05-07 06:12:01 +0000996 if (ret)
997 return ret;
Simon Glass604f23d2013-05-07 06:11:54 +0000998 }
999
Simon Glass4d098522013-06-13 15:10:09 -07001000 /* If there are no keys, we can't sign configurations */
1001 if (!IMAGE_ENABLE_SIGN || !keydir)
1002 return 0;
1003
1004 /* Find configurations parent node offset */
1005 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
1006 if (confs_noffset < 0) {
1007 printf("Can't find images parent node '%s' (%s)\n",
Heiko Schocher04a710a2014-08-11 11:02:17 +02001008 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
Simon Glass4d098522013-06-13 15:10:09 -07001009 return -ENOENT;
1010 }
1011
1012 /* Process its subnodes, print out component images details */
1013 for (noffset = fdt_first_subnode(fit, confs_noffset);
1014 noffset >= 0;
1015 noffset = fdt_next_subnode(fit, noffset)) {
1016 ret = fit_config_add_verification_data(keydir, keydest,
1017 fit, noffset, comment,
George McCollisterf1ca1fd2017-01-06 13:14:17 -06001018 require_keys,
Alex Kiernan795f4522018-06-20 20:10:52 +00001019 engine_id, cmdname);
Simon Glass4d098522013-06-13 15:10:09 -07001020 if (ret)
1021 return ret;
1022 }
1023
Simon Glass604f23d2013-05-07 06:11:54 +00001024 return 0;
1025}
Heiko Schocher29a23f92014-03-03 12:19:30 +01001026
1027#ifdef CONFIG_FIT_SIGNATURE
Simon Glassc3aa81e2020-03-18 11:44:03 -06001028int fit_check_sign(const void *fit, const void *key,
1029 const char *fit_uname_config)
Heiko Schocher29a23f92014-03-03 12:19:30 +01001030{
1031 int cfg_noffset;
1032 int ret;
1033
Simon Glassc3aa81e2020-03-18 11:44:03 -06001034 cfg_noffset = fit_conf_get_node(fit, fit_uname_config);
Heiko Schocher29a23f92014-03-03 12:19:30 +01001035 if (!cfg_noffset)
1036 return -1;
1037
Simon Glass382cf622020-03-18 11:43:56 -06001038 printf("Verifying Hash Integrity for node '%s'... ",
1039 fdt_get_name(fit, cfg_noffset, NULL));
Simon Glassce1400f2014-06-12 07:24:53 -06001040 ret = fit_config_verify(fit, cfg_noffset);
1041 if (ret)
1042 return ret;
Simon Glassc3aa81e2020-03-18 11:44:03 -06001043 printf("Verified OK, loading images\n");
Simon Glassce1400f2014-06-12 07:24:53 -06001044 ret = bootm_host_load_images(fit, cfg_noffset);
1045
Heiko Schocher29a23f92014-03-03 12:19:30 +01001046 return ret;
1047}
1048#endif