blob: d944d0ff4e3cc1f2363b9e5fce2653ee986e0607 [file] [log] [blame]
Simon Glass604f23d2013-05-07 06:11:54 +00001/*
2 * Copyright (c) 2013, Google Inc.
3 *
4 * (C) Copyright 2008 Semihalf
5 *
6 * (C) Copyright 2000-2006
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include "mkimage.h"
29#include <bootstage.h>
30#include <image.h>
31#include <sha1.h>
32#include <time.h>
33#include <u-boot/crc.h>
34#include <u-boot/md5.h>
35
36/**
Simon Glassb7260912013-05-07 06:11:56 +000037 * fit_set_hash_value - set hash value in requested has node
38 * @fit: pointer to the FIT format image header
39 * @noffset: hash node offset
40 * @value: hash value to be set
41 * @value_len: hash value length
42 *
43 * fit_set_hash_value() attempts to set hash value in a node at offset
44 * given and returns operation status to the caller.
45 *
46 * returns
47 * 0, on success
48 * -1, on failure
49 */
50static int fit_set_hash_value(void *fit, int noffset, uint8_t *value,
51 int value_len)
52{
53 int ret;
54
55 ret = fdt_setprop(fit, noffset, FIT_VALUE_PROP, value, value_len);
56 if (ret) {
57 printf("Can't set hash '%s' property for '%s' node(%s)\n",
58 FIT_VALUE_PROP, fit_get_name(fit, noffset, NULL),
59 fdt_strerror(ret));
60 return -1;
61 }
62
63 return 0;
64}
65
66/**
Simon Glass94e5fa42013-05-07 06:11:55 +000067 * fit_image_process_hash - Process a single subnode of the images/ node
68 *
69 * Check each subnode and process accordingly. For hash nodes we generate
70 * a hash of the supplised data and store it in the node.
71 *
72 * @fit: pointer to the FIT format image header
73 * @image_name: name of image being processes (used to display errors)
74 * @noffset: subnode offset
75 * @data: data to process
76 * @size: size of data in bytes
77 * @return 0 if ok, -1 on error
78 */
79static int fit_image_process_hash(void *fit, const char *image_name,
80 int noffset, const void *data, size_t size)
81{
82 uint8_t value[FIT_MAX_HASH_LEN];
Simon Glassbbb467d2013-05-07 06:12:01 +000083 const char *node_name;
Simon Glass94e5fa42013-05-07 06:11:55 +000084 int value_len;
85 char *algo;
86
Simon Glassbbb467d2013-05-07 06:12:01 +000087 node_name = fit_get_name(fit, noffset, NULL);
Simon Glass94e5fa42013-05-07 06:11:55 +000088
89 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
90 printf("Can't get hash algo property for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +000091 node_name, image_name);
Simon Glass94e5fa42013-05-07 06:11:55 +000092 return -1;
93 }
94
95 if (calculate_hash(data, size, algo, value, &value_len)) {
96 printf("Unsupported hash algorithm (%s) for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +000097 algo, node_name, image_name);
Simon Glass94e5fa42013-05-07 06:11:55 +000098 return -1;
99 }
100
Simon Glassb7260912013-05-07 06:11:56 +0000101 if (fit_set_hash_value(fit, noffset, value, value_len)) {
Simon Glass94e5fa42013-05-07 06:11:55 +0000102 printf("Can't set hash value for '%s' hash node in '%s' image node\n",
Simon Glassbbb467d2013-05-07 06:12:01 +0000103 node_name, image_name);
Simon Glass94e5fa42013-05-07 06:11:55 +0000104 return -1;
105 }
106
107 return 0;
108}
109
110/**
Simon Glassbbb467d2013-05-07 06:12:01 +0000111 * fit_image_add_verification_data() - calculate/set hash data for image node
Simon Glass604f23d2013-05-07 06:11:54 +0000112 *
Simon Glassbbb467d2013-05-07 06:12:01 +0000113 * This adds hash values for a component image node.
114 *
115 * All existing hash subnodes are checked, if algorithm property is set to
116 * one of the supported hash algorithms, hash value is computed and
117 * corresponding hash node property is set, for example:
Simon Glass604f23d2013-05-07 06:11:54 +0000118 *
119 * Input component image node structure:
120 *
121 * o image@1 (at image_noffset)
122 * | - data = [binary data]
123 * o hash@1
124 * |- algo = "sha1"
125 *
126 * Output component image node structure:
127 *
128 * o image@1 (at image_noffset)
129 * | - data = [binary data]
130 * o hash@1
131 * |- algo = "sha1"
132 * |- value = sha1(data)
133 *
Simon Glassbbb467d2013-05-07 06:12:01 +0000134 * For signature details, please see doc/uImage.FIT/signature.txt
135 *
136 * @fit: Pointer to the FIT format image header
137 * @image_noffset: Requested component image node
138 * @return: 0 on success, <0 on failure
Simon Glass604f23d2013-05-07 06:11:54 +0000139 */
Simon Glassbbb467d2013-05-07 06:12:01 +0000140int fit_image_add_verification_data(void *fit, int image_noffset)
Simon Glass604f23d2013-05-07 06:11:54 +0000141{
Simon Glassbbb467d2013-05-07 06:12:01 +0000142 const char *image_name;
Simon Glass604f23d2013-05-07 06:11:54 +0000143 const void *data;
144 size_t size;
Simon Glass604f23d2013-05-07 06:11:54 +0000145 int noffset;
Simon Glass604f23d2013-05-07 06:11:54 +0000146
147 /* Get image data and data length */
148 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
149 printf("Can't get image data/size\n");
150 return -1;
151 }
152
Simon Glass94e5fa42013-05-07 06:11:55 +0000153 image_name = fit_get_name(fit, image_noffset, NULL);
154
Simon Glass604f23d2013-05-07 06:11:54 +0000155 /* Process all hash subnodes of the component image node */
Simon Glassbbb467d2013-05-07 06:12:01 +0000156 for (noffset = fdt_first_subnode(fit, image_noffset);
157 noffset >= 0;
158 noffset = fdt_next_subnode(fit, noffset)) {
159 const char *node_name;
160 int ret = 0;
161
162 /*
163 * Check subnode name, must be equal to "hash" or "signature".
164 * Multiple hash nodes require unique unit node
165 * names, e.g. hash@1, hash@2, signature@1, etc.
166 */
167 node_name = fit_get_name(fit, noffset, NULL);
168 if (!strncmp(node_name, FIT_HASH_NODENAME,
169 strlen(FIT_HASH_NODENAME))) {
170 ret = fit_image_process_hash(fit, image_name, noffset,
171 data, size);
Simon Glass604f23d2013-05-07 06:11:54 +0000172 }
Simon Glassbbb467d2013-05-07 06:12:01 +0000173 if (ret)
174 return -1;
175 }
176
177 return 0;
178}
179
180int fit_add_verification_data(void *fit)
181{
182 int images_noffset;
183 int noffset;
184 int ret;
185
186 /* Find images parent node offset */
187 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
188 if (images_noffset < 0) {
189 printf("Can't find images parent node '%s' (%s)\n",
190 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
191 return images_noffset;
192 }
193
194 /* Process its subnodes, print out component images details */
195 for (noffset = fdt_first_subnode(fit, images_noffset);
196 noffset >= 0;
197 noffset = fdt_next_subnode(fit, noffset)) {
198 /*
199 * Direct child node of the images parent node,
200 * i.e. component image node.
201 */
202 ret = fit_image_add_verification_data(fit, noffset);
203 if (ret)
204 return ret;
Simon Glass604f23d2013-05-07 06:11:54 +0000205 }
206
207 return 0;
208}