blob: 9c41ee56b151ce7e4afeae4918578ab9c22235ce [file] [log] [blame]
Simon Glassd977ecd2016-07-03 09:40:46 -06001# SPDX-License-Identifier: GPL-2.0+
Tom Rini10e47792018-05-06 17:58:06 -04002# Copyright (c) 2016, Google Inc.
Simon Glassd977ecd2016-07-03 09:40:46 -06003#
4# U-Boot Verified Boot Test
5
6"""
7This tests verified boot in the following ways:
8
9For image verification:
10- Create FIT (unsigned) with mkimage
11- Check that verification shows that no keys are verified
12- Sign image
13- Check that verification shows that a key is now verified
14
15For configuration verification:
16- Corrupt signature and check for failure
17- Create FIT (with unsigned configuration) with mkimage
Simon Glassd5deca02016-07-31 17:35:04 -060018- Check that image verification works
Simon Glassd977ecd2016-07-03 09:40:46 -060019- Sign the FIT and mark the key as 'required' for verification
20- Check that image verification works
21- Corrupt the signature
22- Check that image verification no-longer works
23
24Tests run with both SHA1 and SHA256 hashing.
25"""
26
27import pytest
28import sys
Teddy Reede6a47832018-06-09 11:38:05 -040029import struct
Simon Glassd977ecd2016-07-03 09:40:46 -060030import u_boot_utils as util
31
Michal Simek6e035ab2016-07-18 08:49:08 +020032@pytest.mark.boardspec('sandbox')
Simon Glassd977ecd2016-07-03 09:40:46 -060033@pytest.mark.buildconfigspec('fit_signature')
Stephen Warren2079db32017-09-18 11:11:49 -060034@pytest.mark.requiredtool('dtc')
35@pytest.mark.requiredtool('fdtget')
36@pytest.mark.requiredtool('fdtput')
37@pytest.mark.requiredtool('openssl')
Simon Glassd977ecd2016-07-03 09:40:46 -060038def test_vboot(u_boot_console):
39 """Test verified boot signing with mkimage and verification with 'bootm'.
40
41 This works using sandbox only as it needs to update the device tree used
42 by U-Boot to hold public keys from the signing process.
43
44 The SHA1 and SHA256 tests are combined into a single test since the
45 key-generation process is quite slow and we want to avoid doing it twice.
46 """
47 def dtc(dts):
Simon Glassd5deca02016-07-31 17:35:04 -060048 """Run the device tree compiler to compile a .dts file
Simon Glassd977ecd2016-07-03 09:40:46 -060049
50 The output file will be the same as the input file but with a .dtb
51 extension.
52
53 Args:
54 dts: Device tree file to compile.
55 """
56 dtb = dts.replace('.dts', '.dtb')
Simon Glassba8116c2016-07-31 17:35:05 -060057 util.run_and_log(cons, 'dtc %s %s%s -O dtb '
58 '-o %s%s' % (dtc_args, datadir, dts, tmpdir, dtb))
Simon Glassd977ecd2016-07-03 09:40:46 -060059
Tom Rinib65ce462016-09-18 09:46:58 -040060 def run_bootm(sha_algo, test_type, expect_string, boots):
Simon Glassd977ecd2016-07-03 09:40:46 -060061 """Run a 'bootm' command U-Boot.
62
63 This always starts a fresh U-Boot instance since the device tree may
64 contain a new public key.
65
66 Args:
Simon Glassf223c732016-07-31 17:35:06 -060067 test_type: A string identifying the test type.
68 expect_string: A string which is expected in the output.
69 sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
70 use.
Tom Rinib65ce462016-09-18 09:46:58 -040071 boots: A boolean that is True if Linux should boot and False if
72 we are expected to not boot
Simon Glassd977ecd2016-07-03 09:40:46 -060073 """
Simon Glass37c2ce12016-07-31 17:35:08 -060074 cons.restart_uboot()
Simon Glass2a40d832016-07-31 17:35:07 -060075 with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)):
76 output = cons.run_command_list(
Simon Glassf250d472018-11-15 18:44:02 -070077 ['host load hostfs - 100 %stest.fit' % tmpdir,
Simon Glass2a40d832016-07-31 17:35:07 -060078 'fdt addr 100',
79 'bootm 100'])
Simon Glass2ca73112016-07-31 17:35:09 -060080 assert(expect_string in ''.join(output))
Tom Rinib65ce462016-09-18 09:46:58 -040081 if boots:
82 assert('sandbox: continuing, as we cannot run' in ''.join(output))
Philippe Reynes1d5ef522019-09-18 16:04:53 +020083 else:
84 assert('sandbox: continuing, as we cannot run' not in ''.join(output))
Simon Glassd977ecd2016-07-03 09:40:46 -060085
86 def make_fit(its):
Simon Glassd5deca02016-07-31 17:35:04 -060087 """Make a new FIT from the .its source file.
Simon Glassd977ecd2016-07-03 09:40:46 -060088
89 This runs 'mkimage -f' to create a new FIT.
90
91 Args:
Simon Glassd5deca02016-07-31 17:35:04 -060092 its: Filename containing .its source.
Simon Glassd977ecd2016-07-03 09:40:46 -060093 """
94 util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f',
95 '%s%s' % (datadir, its), fit])
96
Simon Glassf223c732016-07-31 17:35:06 -060097 def sign_fit(sha_algo):
Simon Glassd977ecd2016-07-03 09:40:46 -060098 """Sign the FIT
99
100 Signs the FIT and writes the signature into it. It also writes the
101 public key into the dtb.
Simon Glassf223c732016-07-31 17:35:06 -0600102
103 Args:
104 sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
105 use.
Simon Glassd977ecd2016-07-03 09:40:46 -0600106 """
Simon Glassf223c732016-07-31 17:35:06 -0600107 cons.log.action('%s: Sign images' % sha_algo)
Simon Glassd977ecd2016-07-03 09:40:46 -0600108 util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb,
109 '-r', fit])
110
Philippe Reynes1d5ef522019-09-18 16:04:53 +0200111 def sign_fit_norequire(sha_algo):
112 """Sign the FIT
113
114 Signs the FIT and writes the signature into it. It also writes the
115 public key into the dtb.
116
117 Args:
118 sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
119 use.
120 """
121 cons.log.action('%s: Sign images' % sha_algo)
122 util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb,
123 fit])
124
Teddy Reede6a47832018-06-09 11:38:05 -0400125 def replace_fit_totalsize(size):
126 """Replace FIT header's totalsize with something greater.
127
128 The totalsize must be less than or equal to FIT_SIGNATURE_MAX_SIZE.
129 If the size is greater, the signature verification should return false.
130
131 Args:
132 size: The new totalsize of the header
133
134 Returns:
135 prev_size: The previous totalsize read from the header
136 """
137 total_size = 0
138 with open(fit, 'r+b') as handle:
139 handle.seek(4)
140 total_size = handle.read(4)
141 handle.seek(4)
142 handle.write(struct.pack(">I", size))
143 return struct.unpack(">I", total_size)[0]
144
Philippe Reynesafdbcdb2018-11-14 13:51:04 +0100145 def test_with_algo(sha_algo, padding):
Simon Glassd5deca02016-07-31 17:35:04 -0600146 """Test verified boot with the given hash algorithm.
Simon Glassd977ecd2016-07-03 09:40:46 -0600147
148 This is the main part of the test code. The same procedure is followed
149 for both hashing algorithms.
150
151 Args:
Simon Glassf223c732016-07-31 17:35:06 -0600152 sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
153 use.
Simon Glassd977ecd2016-07-03 09:40:46 -0600154 """
Simon Glassdc3ab7e2016-07-31 17:35:02 -0600155 # Compile our device tree files for kernel and U-Boot. These are
156 # regenerated here since mkimage will modify them (by adding a
157 # public key) below.
Simon Glassd977ecd2016-07-03 09:40:46 -0600158 dtc('sandbox-kernel.dts')
159 dtc('sandbox-u-boot.dts')
160
161 # Build the FIT, but don't sign anything yet
Simon Glassf223c732016-07-31 17:35:06 -0600162 cons.log.action('%s: Test FIT with signed images' % sha_algo)
Philippe Reynesafdbcdb2018-11-14 13:51:04 +0100163 make_fit('sign-images-%s%s.its' % (sha_algo , padding))
Tom Rinib65ce462016-09-18 09:46:58 -0400164 run_bootm(sha_algo, 'unsigned images', 'dev-', True)
Simon Glassd977ecd2016-07-03 09:40:46 -0600165
166 # Sign images with our dev keys
Simon Glassf223c732016-07-31 17:35:06 -0600167 sign_fit(sha_algo)
Tom Rinib65ce462016-09-18 09:46:58 -0400168 run_bootm(sha_algo, 'signed images', 'dev+', True)
Simon Glassd977ecd2016-07-03 09:40:46 -0600169
170 # Create a fresh .dtb without the public keys
171 dtc('sandbox-u-boot.dts')
172
Simon Glassf223c732016-07-31 17:35:06 -0600173 cons.log.action('%s: Test FIT with signed configuration' % sha_algo)
Philippe Reynesafdbcdb2018-11-14 13:51:04 +0100174 make_fit('sign-configs-%s%s.its' % (sha_algo , padding))
Tom Rinib65ce462016-09-18 09:46:58 -0400175 run_bootm(sha_algo, 'unsigned config', '%s+ OK' % sha_algo, True)
Simon Glassd977ecd2016-07-03 09:40:46 -0600176
177 # Sign images with our dev keys
Simon Glassf223c732016-07-31 17:35:06 -0600178 sign_fit(sha_algo)
Tom Rinib65ce462016-09-18 09:46:58 -0400179 run_bootm(sha_algo, 'signed config', 'dev+', True)
Simon Glassd977ecd2016-07-03 09:40:46 -0600180
Simon Glassf223c732016-07-31 17:35:06 -0600181 cons.log.action('%s: Check signed config on the host' % sha_algo)
Simon Glassd977ecd2016-07-03 09:40:46 -0600182
183 util.run_and_log(cons, [fit_check_sign, '-f', fit, '-k', tmpdir,
184 '-k', dtb])
185
Teddy Reede6a47832018-06-09 11:38:05 -0400186 # Replace header bytes
187 bcfg = u_boot_console.config.buildconfig
188 max_size = int(bcfg.get('config_fit_signature_max_size', 0x10000000), 0)
189 existing_size = replace_fit_totalsize(max_size + 1)
190 run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', False)
191 cons.log.action('%s: Check overflowed FIT header totalsize' % sha_algo)
192
193 # Replace with existing header bytes
194 replace_fit_totalsize(existing_size)
195 run_bootm(sha_algo, 'signed config', 'dev+', True)
196 cons.log.action('%s: Check default FIT header totalsize' % sha_algo)
197
Simon Glassd977ecd2016-07-03 09:40:46 -0600198 # Increment the first byte of the signature, which should cause failure
Simon Glassba8116c2016-07-31 17:35:05 -0600199 sig = util.run_and_log(cons, 'fdtget -t bx %s %s value' %
200 (fit, sig_node))
Simon Glassd977ecd2016-07-03 09:40:46 -0600201 byte_list = sig.split()
202 byte = int(byte_list[0], 16)
Simon Glassdc3ab7e2016-07-31 17:35:02 -0600203 byte_list[0] = '%x' % (byte + 1)
Simon Glassd977ecd2016-07-03 09:40:46 -0600204 sig = ' '.join(byte_list)
Simon Glassba8116c2016-07-31 17:35:05 -0600205 util.run_and_log(cons, 'fdtput -t bx %s %s value %s' %
206 (fit, sig_node, sig))
Simon Glassd977ecd2016-07-03 09:40:46 -0600207
Tom Rinib65ce462016-09-18 09:46:58 -0400208 run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', False)
Simon Glassd977ecd2016-07-03 09:40:46 -0600209
Simon Glassf223c732016-07-31 17:35:06 -0600210 cons.log.action('%s: Check bad config on the host' % sha_algo)
Simon Glassd977ecd2016-07-03 09:40:46 -0600211 util.run_and_log_expect_exception(cons, [fit_check_sign, '-f', fit,
212 '-k', dtb], 1, 'Failed to verify required signature')
213
Philippe Reynes1d5ef522019-09-18 16:04:53 +0200214 def test_required_key(sha_algo, padding):
215 """Test verified boot with the given hash algorithm.
216
217 This function test if u-boot reject an image when a required
218 key isn't used to sign a FIT.
219
220 Args:
221 sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
222 use.
223 """
224 # Compile our device tree files for kernel and U-Boot. These are
225 # regenerated here since mkimage will modify them (by adding a
226 # public key) below.
227 dtc('sandbox-kernel.dts')
228 dtc('sandbox-u-boot.dts')
229
230 # Build the FIT with prod key (keys required)
231 # Build the FIT with dev key (keys NOT required)
232 # The dtb contain the key prod and dev and the key prod are set as required.
233 # Then try to boot the FIT with dev key
234 # This FIT should not be accepted by u-boot because the key prod is required
235 cons.log.action('%s: Test FIT with configs images' % sha_algo)
236 make_fit('sign-configs-%s%s-prod.its' % (sha_algo , padding))
237 sign_fit(sha_algo)
238 make_fit('sign-configs-%s%s.its' % (sha_algo , padding))
239 sign_fit(sha_algo)
240
241 run_bootm(sha_algo, 'signed configs', '', False)
242
Simon Glassd977ecd2016-07-03 09:40:46 -0600243 cons = u_boot_console
244 tmpdir = cons.config.result_dir + '/'
245 tmp = tmpdir + 'vboot.tmp'
Stephen Warren7047d952016-07-18 10:07:25 -0600246 datadir = cons.config.source_dir + '/test/py/tests/vboot/'
Simon Glassd977ecd2016-07-03 09:40:46 -0600247 fit = '%stest.fit' % tmpdir
248 mkimage = cons.config.build_dir + '/tools/mkimage'
249 fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign'
250 dtc_args = '-I dts -O dtb -i %s' % tmpdir
251 dtb = '%ssandbox-u-boot.dtb' % tmpdir
Philippe Reynesa28e9222018-11-14 13:51:05 +0100252 sig_node = '/configurations/conf-1/signature'
Simon Glassd977ecd2016-07-03 09:40:46 -0600253
254 # Create an RSA key pair
255 public_exponent = 65537
Simon Glassba8116c2016-07-31 17:35:05 -0600256 util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %sdev.key '
257 '-pkeyopt rsa_keygen_bits:2048 '
Paul Burton2662c822017-09-14 14:34:50 -0700258 '-pkeyopt rsa_keygen_pubexp:%d' %
259 (tmpdir, public_exponent))
Simon Glassd977ecd2016-07-03 09:40:46 -0600260
261 # Create a certificate containing the public key
Simon Glassba8116c2016-07-31 17:35:05 -0600262 util.run_and_log(cons, 'openssl req -batch -new -x509 -key %sdev.key -out '
263 '%sdev.crt' % (tmpdir, tmpdir))
Simon Glassd977ecd2016-07-03 09:40:46 -0600264
Philippe Reynes1d5ef522019-09-18 16:04:53 +0200265 # Create an RSA key pair (prod)
266 public_exponent = 65537
267 util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %sprod.key '
268 '-pkeyopt rsa_keygen_bits:2048 '
269 '-pkeyopt rsa_keygen_pubexp:%d' %
270 (tmpdir, public_exponent))
271
272 # Create a certificate containing the public key (prod)
273 util.run_and_log(cons, 'openssl req -batch -new -x509 -key %sprod.key -out '
274 '%sprod.crt' % (tmpdir, tmpdir))
275
Simon Glassd977ecd2016-07-03 09:40:46 -0600276 # Create a number kernel image with zeroes
277 with open('%stest-kernel.bin' % tmpdir, 'w') as fd:
278 fd.write(5000 * chr(0))
279
280 try:
281 # We need to use our own device tree file. Remember to restore it
282 # afterwards.
283 old_dtb = cons.config.dtb
284 cons.config.dtb = dtb
Philippe Reynesafdbcdb2018-11-14 13:51:04 +0100285 test_with_algo('sha1','')
286 test_with_algo('sha1','-pss')
287 test_with_algo('sha256','')
288 test_with_algo('sha256','-pss')
Philippe Reynes1d5ef522019-09-18 16:04:53 +0200289 test_required_key('sha256','-pss')
Simon Glassd977ecd2016-07-03 09:40:46 -0600290 finally:
Simon Glass37c2ce12016-07-31 17:35:08 -0600291 # Go back to the original U-Boot with the correct dtb.
Simon Glassd977ecd2016-07-03 09:40:46 -0600292 cons.config.dtb = old_dtb
Simon Glass37c2ce12016-07-31 17:35:08 -0600293 cons.restart_uboot()