1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013, Google Inc.
13 DECLARE_GLOBAL_DATA_PTR;
14 #endif /* !USE_HOSTCC*/
15 #include <fdt_region.h>
17 #include <u-boot/rsa.h>
18 #include <u-boot/rsa-checksum.h>
20 #define IMAGE_MAX_HASHED_NODES 100
25 void image_set_host_blob(void *blob)
30 void *image_get_host_blob(void)
37 * fit_region_make_list() - Make a list of image regions
39 * Given a list of fdt_regions, create a list of image_regions. This is a
40 * simple conversion routine since the FDT and image code use different
44 * @fdt_regions: Pointer to FDT regions
45 * @count: Number of FDT regions
46 * @region: Pointer to image regions, which must hold @count records. If
47 * region is NULL, then (except for an SPL build) the array will be
49 * @return: Pointer to image regions
51 struct image_region *fit_region_make_list(const void *fit,
52 struct fdt_region *fdt_regions,
54 struct image_region *region)
58 debug("Hash regions:\n");
59 debug("%10s %10s\n", "Offset", "Size");
62 * Use malloc() except in SPL (to save code size). In SPL the caller
63 * must allocate the array.
65 #ifndef CONFIG_SPL_BUILD
67 region = calloc(sizeof(*region), count);
71 for (i = 0; i < count; i++) {
72 debug("%10x %10x\n", fdt_regions[i].offset,
74 region[i].data = fit + fdt_regions[i].offset;
75 region[i].size = fdt_regions[i].size;
81 static int fit_image_setup_verify(struct image_sign_info *info,
82 const void *fit, int noffset,
83 int required_keynode, char **err_msgp)
86 const char *padding_name;
88 if (fdt_totalsize(fit) > CONFIG_FIT_SIGNATURE_MAX_SIZE) {
89 *err_msgp = "Total size too large";
93 if (fit_image_hash_get_algo(fit, noffset, &algo_name)) {
94 *err_msgp = "Can't get hash algo property";
98 padding_name = fdt_getprop(fit, noffset, "padding", NULL);
100 padding_name = RSA_DEFAULT_PADDING_NAME;
102 memset(info, '\0', sizeof(*info));
103 info->keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
104 info->fit = (void *)fit;
105 info->node_offset = noffset;
106 info->name = algo_name;
107 info->checksum = image_get_checksum_algo(algo_name);
108 info->crypto = image_get_crypto_algo(algo_name);
109 info->padding = image_get_padding_algo(padding_name);
110 info->fdt_blob = gd_fdt_blob();
111 info->required_keynode = required_keynode;
112 printf("%s:%s", algo_name, info->keyname);
114 if (!info->checksum || !info->crypto || !info->padding) {
115 *err_msgp = "Unknown signature algorithm";
122 int fit_image_check_sig(const void *fit, int noffset, const void *data,
123 size_t size, int required_keynode, char **err_msgp)
125 struct image_sign_info info;
126 struct image_region region;
131 if (fit_image_setup_verify(&info, fit, noffset, required_keynode,
135 if (fit_image_hash_get_value(fit, noffset, &fit_value,
137 *err_msgp = "Can't get hash value property";
144 if (info.crypto->verify(&info, ®ion, 1, fit_value, fit_value_len)) {
145 *err_msgp = "Verification failed";
152 static int fit_image_verify_sig(const void *fit, int image_noffset,
153 const char *data, size_t size,
154 const void *sig_blob, int sig_offset)
161 /* Process all hash subnodes of the component image node */
162 fdt_for_each_subnode(noffset, fit, image_noffset) {
163 const char *name = fit_get_name(fit, noffset, NULL);
165 if (!strncmp(name, FIT_SIG_NODENAME,
166 strlen(FIT_SIG_NODENAME))) {
167 ret = fit_image_check_sig(fit, noffset, data,
179 if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) {
180 err_msg = "Corrupted or truncated tree";
184 return verified ? 0 : -EPERM;
187 printf(" error!\n%s for '%s' hash node in '%s' image node\n",
188 err_msg, fit_get_name(fit, noffset, NULL),
189 fit_get_name(fit, image_noffset, NULL));
193 int fit_image_verify_required_sigs(const void *fit, int image_noffset,
194 const char *data, size_t size,
195 const void *sig_blob, int *no_sigsp)
197 int verify_count = 0;
201 /* Work out what we need to verify */
203 sig_node = fdt_subnode_offset(sig_blob, 0, FIT_SIG_NODENAME);
205 debug("%s: No signature node found: %s\n", __func__,
206 fdt_strerror(sig_node));
210 fdt_for_each_subnode(noffset, sig_blob, sig_node) {
211 const char *required;
214 required = fdt_getprop(sig_blob, noffset, FIT_KEY_REQUIRED,
216 if (!required || strcmp(required, "image"))
218 ret = fit_image_verify_sig(fit, image_noffset, data, size,
221 printf("Failed to verify required signature '%s'\n",
222 fit_get_name(sig_blob, noffset, NULL));
235 * fit_config_check_sig() - Check the signature of a config
238 * @noffset: Offset of configuration node (e.g. /configurations/conf-1)
239 * @required_keynode: Offset in the control FDT of the required key node,
240 * if any. If this is given, then the configuration wil not
241 * pass verification unless that key is used. If this is
242 * -1 then any signature will do.
243 * @conf_noffset: Offset of the configuration subnode being checked (e.g.
244 * /configurations/conf-1/kernel)
245 * @err_msgp: In the event of an error, this will be pointed to a
246 * help error string to display to the user.
247 * @return 0 if all verified ok, <0 on error
249 static int fit_config_check_sig(const void *fit, int noffset,
250 int required_keynode, int conf_noffset,
253 char * const exc_prop[] = {"data", "data-size", "data-position"};
254 const char *prop, *end, *name;
255 struct image_sign_info info;
256 const uint32_t *strings;
257 const char *config_name;
266 config_name = fit_get_name(fit, conf_noffset, NULL);
267 debug("%s: fdt=%p, conf='%s', sig='%s'\n", __func__, gd_fdt_blob(),
268 fit_get_name(fit, noffset, NULL),
269 fit_get_name(gd_fdt_blob(), required_keynode, NULL));
271 if (fit_image_setup_verify(&info, fit, noffset, required_keynode,
275 if (fit_image_hash_get_value(fit, noffset, &fit_value,
277 *err_msgp = "Can't get hash value property";
281 /* Count the number of strings in the property */
282 prop = fdt_getprop(fit, noffset, "hashed-nodes", &prop_len);
283 end = prop ? prop + prop_len : prop;
284 for (name = prop, count = 0; name < end; name++)
288 *err_msgp = "Can't get hashed-nodes property";
292 if (prop && prop_len > 0 && prop[prop_len - 1] != '\0') {
293 *err_msgp = "hashed-nodes property must be null-terminated";
297 /* Add a sanity check here since we are using the stack */
298 if (count > IMAGE_MAX_HASHED_NODES) {
299 *err_msgp = "Number of hashed nodes exceeds maximum";
303 /* Create a list of node names from those strings */
304 char *node_inc[count];
306 debug("Hash nodes (%d):\n", count);
307 found_config = false;
308 for (name = prop, i = 0; name < end; name += strlen(name) + 1, i++) {
309 debug(" '%s'\n", name);
310 node_inc[i] = (char *)name;
311 if (!strncmp(FIT_CONFS_PATH, name, strlen(FIT_CONFS_PATH)) &&
312 name[sizeof(FIT_CONFS_PATH) - 1] == '/' &&
313 !strcmp(name + sizeof(FIT_CONFS_PATH), config_name)) {
314 debug(" (found config node %s)", config_name);
319 *err_msgp = "Selected config not in hashed nodes";
324 * Each node can generate one region for each sub-node. Allow for
325 * 7 sub-nodes (hash-1, signature-1, etc.) and some extra.
327 max_regions = 20 + count * 7;
328 struct fdt_region fdt_regions[max_regions];
330 /* Get a list of regions to hash */
331 count = fdt_find_regions(fit, node_inc, count,
332 exc_prop, ARRAY_SIZE(exc_prop),
333 fdt_regions, max_regions - 1,
334 path, sizeof(path), 0);
336 *err_msgp = "Failed to hash configuration";
340 *err_msgp = "No data to hash";
343 if (count >= max_regions - 1) {
344 *err_msgp = "Too many hash regions";
348 /* Add the strings */
349 strings = fdt_getprop(fit, noffset, "hashed-strings", NULL);
352 * The strings region offset must be a static 0x0.
353 * This is set in tool/image-host.c
355 fdt_regions[count].offset = fdt_off_dt_strings(fit);
356 fdt_regions[count].size = fdt32_to_cpu(strings[1]);
360 /* Allocate the region list on the stack */
361 struct image_region region[count];
363 fit_region_make_list(fit, fdt_regions, count, region);
364 if (info.crypto->verify(&info, region, count, fit_value,
366 *err_msgp = "Verification failed";
373 static int fit_config_verify_sig(const void *fit, int conf_noffset,
374 const void *sig_blob, int sig_offset)
381 /* Process all hash subnodes of the component conf node */
382 fdt_for_each_subnode(noffset, fit, conf_noffset) {
383 const char *name = fit_get_name(fit, noffset, NULL);
385 if (!strncmp(name, FIT_SIG_NODENAME,
386 strlen(FIT_SIG_NODENAME))) {
387 ret = fit_config_check_sig(fit, noffset, sig_offset,
388 conf_noffset, &err_msg);
399 if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) {
400 err_msg = "Corrupted or truncated tree";
408 printf(" error!\n%s for '%s' hash node in '%s' config node\n",
409 err_msg, fit_get_name(fit, noffset, NULL),
410 fit_get_name(fit, conf_noffset, NULL));
414 int fit_config_verify_required_sigs(const void *fit, int conf_noffset,
415 const void *sig_blob)
421 bool reqd_policy_all = true;
422 const char *reqd_mode;
424 /* Work out what we need to verify */
425 sig_node = fdt_subnode_offset(sig_blob, 0, FIT_SIG_NODENAME);
427 debug("%s: No signature node found: %s\n", __func__,
428 fdt_strerror(sig_node));
432 /* Get required-mode policy property from DTB */
433 reqd_mode = fdt_getprop(sig_blob, sig_node, "required-mode", NULL);
434 if (reqd_mode && !strcmp(reqd_mode, "any"))
435 reqd_policy_all = false;
437 debug("%s: required-mode policy set to '%s'\n", __func__,
438 reqd_policy_all ? "all" : "any");
440 fdt_for_each_subnode(noffset, sig_blob, sig_node) {
441 const char *required;
444 required = fdt_getprop(sig_blob, noffset, FIT_KEY_REQUIRED,
446 if (!required || strcmp(required, "conf"))
451 ret = fit_config_verify_sig(fit, conf_noffset, sig_blob,
454 if (reqd_policy_all) {
455 printf("Failed to verify required signature '%s'\n",
456 fit_get_name(sig_blob, noffset, NULL));
461 if (!reqd_policy_all)
466 if (reqd_sigs && !verified) {
467 printf("Failed to verify 'any' of the required signature(s)\n");
474 int fit_config_verify(const void *fit, int conf_noffset)
476 return fit_config_verify_required_sigs(fit, conf_noffset,