1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013, Google Inc.
12 DECLARE_GLOBAL_DATA_PTR;
13 #endif /* !USE_HOSTCC*/
15 #include <u-boot/rsa.h>
16 #include <u-boot/rsa-checksum.h>
18 #define IMAGE_MAX_HASHED_NODES 100
23 void image_set_host_blob(void *blob)
28 void *image_get_host_blob(void)
35 * fit_region_make_list() - Make a list of image regions
37 * Given a list of fdt_regions, create a list of image_regions. This is a
38 * simple conversion routine since the FDT and image code use different
42 * @fdt_regions: Pointer to FDT regions
43 * @count: Number of FDT regions
44 * @region: Pointer to image regions, which must hold @count records. If
45 * region is NULL, then (except for an SPL build) the array will be
47 * @return: Pointer to image regions
49 struct image_region *fit_region_make_list(const void *fit,
50 struct fdt_region *fdt_regions,
52 struct image_region *region)
56 debug("Hash regions:\n");
57 debug("%10s %10s\n", "Offset", "Size");
60 * Use malloc() except in SPL (to save code size). In SPL the caller
61 * must allocate the array.
63 #ifndef CONFIG_SPL_BUILD
65 region = calloc(sizeof(*region), count);
69 for (i = 0; i < count; i++) {
70 debug("%10x %10x\n", fdt_regions[i].offset,
72 region[i].data = fit + fdt_regions[i].offset;
73 region[i].size = fdt_regions[i].size;
79 static int fit_image_setup_verify(struct image_sign_info *info,
80 const void *fit, int noffset,
81 int required_keynode, char **err_msgp)
84 const char *padding_name;
86 if (fdt_totalsize(fit) > CONFIG_FIT_SIGNATURE_MAX_SIZE) {
87 *err_msgp = "Total size too large";
91 if (fit_image_hash_get_algo(fit, noffset, &algo_name)) {
92 *err_msgp = "Can't get hash algo property";
96 padding_name = fdt_getprop(fit, noffset, "padding", NULL);
98 padding_name = RSA_DEFAULT_PADDING_NAME;
100 memset(info, '\0', sizeof(*info));
101 info->keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
102 info->fit = (void *)fit;
103 info->node_offset = noffset;
104 info->name = algo_name;
105 info->checksum = image_get_checksum_algo(algo_name);
106 info->crypto = image_get_crypto_algo(algo_name);
107 info->padding = image_get_padding_algo(padding_name);
108 info->fdt_blob = gd_fdt_blob();
109 info->required_keynode = required_keynode;
110 printf("%s:%s", algo_name, info->keyname);
112 if (!info->checksum || !info->crypto || !info->padding) {
113 *err_msgp = "Unknown signature algorithm";
120 int fit_image_check_sig(const void *fit, int noffset, const void *data,
121 size_t size, int required_keynode, char **err_msgp)
123 struct image_sign_info info;
124 struct image_region region;
129 if (fit_image_setup_verify(&info, fit, noffset, required_keynode,
133 if (fit_image_hash_get_value(fit, noffset, &fit_value,
135 *err_msgp = "Can't get hash value property";
142 if (info.crypto->verify(&info, ®ion, 1, fit_value, fit_value_len)) {
143 *err_msgp = "Verification failed";
150 static int fit_image_verify_sig(const void *fit, int image_noffset,
151 const char *data, size_t size,
152 const void *sig_blob, int sig_offset)
159 /* Process all hash subnodes of the component image node */
160 fdt_for_each_subnode(noffset, fit, image_noffset) {
161 const char *name = fit_get_name(fit, noffset, NULL);
163 if (!strncmp(name, FIT_SIG_NODENAME,
164 strlen(FIT_SIG_NODENAME))) {
165 ret = fit_image_check_sig(fit, noffset, data,
177 if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) {
178 err_msg = "Corrupted or truncated tree";
182 return verified ? 0 : -EPERM;
185 printf(" error!\n%s for '%s' hash node in '%s' image node\n",
186 err_msg, fit_get_name(fit, noffset, NULL),
187 fit_get_name(fit, image_noffset, NULL));
191 int fit_image_verify_required_sigs(const void *fit, int image_noffset,
192 const char *data, size_t size,
193 const void *sig_blob, int *no_sigsp)
195 int verify_count = 0;
199 /* Work out what we need to verify */
201 sig_node = fdt_subnode_offset(sig_blob, 0, FIT_SIG_NODENAME);
203 debug("%s: No signature node found: %s\n", __func__,
204 fdt_strerror(sig_node));
208 fdt_for_each_subnode(noffset, sig_blob, sig_node) {
209 const char *required;
212 required = fdt_getprop(sig_blob, noffset, FIT_KEY_REQUIRED,
214 if (!required || strcmp(required, "image"))
216 ret = fit_image_verify_sig(fit, image_noffset, data, size,
219 printf("Failed to verify required signature '%s'\n",
220 fit_get_name(sig_blob, noffset, NULL));
233 * fit_config_check_sig() - Check the signature of a config
236 * @noffset: Offset of configuration node (e.g. /configurations/conf-1)
237 * @required_keynode: Offset in the control FDT of the required key node,
238 * if any. If this is given, then the configuration wil not
239 * pass verification unless that key is used. If this is
240 * -1 then any signature will do.
241 * @conf_noffset: Offset of the configuration subnode being checked (e.g.
242 * /configurations/conf-1/kernel)
243 * @err_msgp: In the event of an error, this will be pointed to a
244 * help error string to display to the user.
245 * @return 0 if all verified ok, <0 on error
247 static int fit_config_check_sig(const void *fit, int noffset,
248 int required_keynode, int conf_noffset,
251 char * const exc_prop[] = {"data"};
252 const char *prop, *end, *name;
253 struct image_sign_info info;
254 const uint32_t *strings;
255 const char *config_name;
264 config_name = fit_get_name(fit, conf_noffset, NULL);
265 debug("%s: fdt=%p, conf='%s', sig='%s'\n", __func__, gd_fdt_blob(),
266 fit_get_name(fit, noffset, NULL),
267 fit_get_name(gd_fdt_blob(), required_keynode, NULL));
269 if (fit_image_setup_verify(&info, fit, noffset, required_keynode,
273 if (fit_image_hash_get_value(fit, noffset, &fit_value,
275 *err_msgp = "Can't get hash value property";
279 /* Count the number of strings in the property */
280 prop = fdt_getprop(fit, noffset, "hashed-nodes", &prop_len);
281 end = prop ? prop + prop_len : prop;
282 for (name = prop, count = 0; name < end; name++)
286 *err_msgp = "Can't get hashed-nodes property";
290 if (prop && prop_len > 0 && prop[prop_len - 1] != '\0') {
291 *err_msgp = "hashed-nodes property must be null-terminated";
295 /* Add a sanity check here since we are using the stack */
296 if (count > IMAGE_MAX_HASHED_NODES) {
297 *err_msgp = "Number of hashed nodes exceeds maximum";
301 /* Create a list of node names from those strings */
302 char *node_inc[count];
304 debug("Hash nodes (%d):\n", count);
305 found_config = false;
306 for (name = prop, i = 0; name < end; name += strlen(name) + 1, i++) {
307 debug(" '%s'\n", name);
308 node_inc[i] = (char *)name;
309 if (!strncmp(FIT_CONFS_PATH, name, strlen(FIT_CONFS_PATH)) &&
310 name[sizeof(FIT_CONFS_PATH) - 1] == '/' &&
311 !strcmp(name + sizeof(FIT_CONFS_PATH), config_name)) {
312 debug(" (found config node %s)", config_name);
317 *err_msgp = "Selected config not in hashed nodes";
322 * Each node can generate one region for each sub-node. Allow for
323 * 7 sub-nodes (hash-1, signature-1, etc.) and some extra.
325 max_regions = 20 + count * 7;
326 struct fdt_region fdt_regions[max_regions];
328 /* Get a list of regions to hash */
329 count = fdt_find_regions(fit, node_inc, count,
330 exc_prop, ARRAY_SIZE(exc_prop),
331 fdt_regions, max_regions - 1,
332 path, sizeof(path), 0);
334 *err_msgp = "Failed to hash configuration";
338 *err_msgp = "No data to hash";
341 if (count >= max_regions - 1) {
342 *err_msgp = "Too many hash regions";
346 /* Add the strings */
347 strings = fdt_getprop(fit, noffset, "hashed-strings", NULL);
350 * The strings region offset must be a static 0x0.
351 * This is set in tool/image-host.c
353 fdt_regions[count].offset = fdt_off_dt_strings(fit);
354 fdt_regions[count].size = fdt32_to_cpu(strings[1]);
358 /* Allocate the region list on the stack */
359 struct image_region region[count];
361 fit_region_make_list(fit, fdt_regions, count, region);
362 if (info.crypto->verify(&info, region, count, fit_value,
364 *err_msgp = "Verification failed";
371 static int fit_config_verify_sig(const void *fit, int conf_noffset,
372 const void *sig_blob, int sig_offset)
379 /* Process all hash subnodes of the component conf node */
380 fdt_for_each_subnode(noffset, fit, conf_noffset) {
381 const char *name = fit_get_name(fit, noffset, NULL);
383 if (!strncmp(name, FIT_SIG_NODENAME,
384 strlen(FIT_SIG_NODENAME))) {
385 ret = fit_config_check_sig(fit, noffset, sig_offset,
386 conf_noffset, &err_msg);
397 if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) {
398 err_msg = "Corrupted or truncated tree";
406 printf(" error!\n%s for '%s' hash node in '%s' config node\n",
407 err_msg, fit_get_name(fit, noffset, NULL),
408 fit_get_name(fit, conf_noffset, NULL));
412 int fit_config_verify_required_sigs(const void *fit, int conf_noffset,
413 const void *sig_blob)
418 /* Work out what we need to verify */
419 sig_node = fdt_subnode_offset(sig_blob, 0, FIT_SIG_NODENAME);
421 debug("%s: No signature node found: %s\n", __func__,
422 fdt_strerror(sig_node));
426 fdt_for_each_subnode(noffset, sig_blob, sig_node) {
427 const char *required;
430 required = fdt_getprop(sig_blob, noffset, FIT_KEY_REQUIRED,
432 if (!required || strcmp(required, "conf"))
434 ret = fit_config_verify_sig(fit, conf_noffset, sig_blob,
437 printf("Failed to verify required signature '%s'\n",
438 fit_get_name(sig_blob, noffset, NULL));
446 int fit_config_verify(const void *fit, int conf_noffset)
448 return fit_config_verify_required_sigs(fit, conf_noffset,