Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # Copyright (c) 2016, Google Inc. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 3 | # |
| 4 | # U-Boot Verified Boot Test |
| 5 | |
| 6 | """ |
| 7 | This tests verified boot in the following ways: |
| 8 | |
| 9 | For 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 | |
| 15 | For configuration verification: |
| 16 | - Corrupt signature and check for failure |
| 17 | - Create FIT (with unsigned configuration) with mkimage |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 18 | - Check that image verification works |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 19 | - 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 | |
| 24 | Tests run with both SHA1 and SHA256 hashing. |
| 25 | """ |
| 26 | |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 27 | import struct |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 28 | import pytest |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 29 | import u_boot_utils as util |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 30 | import vboot_forge |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 31 | |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 32 | TESTDATA = [ |
| 33 | ['sha1', '', False], |
| 34 | ['sha1', '-pss', False], |
| 35 | ['sha256', '', False], |
| 36 | ['sha256', '-pss', False], |
| 37 | ['sha256', '-pss', True], |
| 38 | ] |
| 39 | |
Michal Simek | 6e035ab | 2016-07-18 08:49:08 +0200 | [diff] [blame] | 40 | @pytest.mark.boardspec('sandbox') |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 41 | @pytest.mark.buildconfigspec('fit_signature') |
Stephen Warren | 2079db3 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 42 | @pytest.mark.requiredtool('dtc') |
| 43 | @pytest.mark.requiredtool('fdtget') |
| 44 | @pytest.mark.requiredtool('fdtput') |
| 45 | @pytest.mark.requiredtool('openssl') |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 46 | @pytest.mark.parametrize("sha_algo,padding,required", TESTDATA) |
| 47 | def test_vboot(u_boot_console, sha_algo, padding, required): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 48 | """Test verified boot signing with mkimage and verification with 'bootm'. |
| 49 | |
| 50 | This works using sandbox only as it needs to update the device tree used |
| 51 | by U-Boot to hold public keys from the signing process. |
| 52 | |
| 53 | The SHA1 and SHA256 tests are combined into a single test since the |
| 54 | key-generation process is quite slow and we want to avoid doing it twice. |
| 55 | """ |
| 56 | def dtc(dts): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 57 | """Run the device tree compiler to compile a .dts file |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 58 | |
| 59 | The output file will be the same as the input file but with a .dtb |
| 60 | extension. |
| 61 | |
| 62 | Args: |
| 63 | dts: Device tree file to compile. |
| 64 | """ |
| 65 | dtb = dts.replace('.dts', '.dtb') |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 66 | util.run_and_log(cons, 'dtc %s %s%s -O dtb ' |
| 67 | '-o %s%s' % (dtc_args, datadir, dts, tmpdir, dtb)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 68 | |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 69 | def run_bootm(sha_algo, test_type, expect_string, boots): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 70 | """Run a 'bootm' command U-Boot. |
| 71 | |
| 72 | This always starts a fresh U-Boot instance since the device tree may |
| 73 | contain a new public key. |
| 74 | |
| 75 | Args: |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 76 | test_type: A string identifying the test type. |
| 77 | expect_string: A string which is expected in the output. |
| 78 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 79 | use. |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 80 | boots: A boolean that is True if Linux should boot and False if |
| 81 | we are expected to not boot |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 82 | """ |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 83 | cons.restart_uboot() |
Simon Glass | 2a40d83 | 2016-07-31 17:35:07 -0600 | [diff] [blame] | 84 | with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)): |
| 85 | output = cons.run_command_list( |
Simon Glass | f250d47 | 2018-11-15 18:44:02 -0700 | [diff] [blame] | 86 | ['host load hostfs - 100 %stest.fit' % tmpdir, |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 87 | 'fdt addr 100', |
| 88 | 'bootm 100']) |
| 89 | assert expect_string in ''.join(output) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 90 | if boots: |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 91 | assert 'sandbox: continuing, as we cannot run' in ''.join(output) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 92 | else: |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 93 | assert('sandbox: continuing, as we cannot run' |
| 94 | not in ''.join(output)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 95 | |
| 96 | def make_fit(its): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 97 | """Make a new FIT from the .its source file. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 98 | |
| 99 | This runs 'mkimage -f' to create a new FIT. |
| 100 | |
| 101 | Args: |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 102 | its: Filename containing .its source. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 103 | """ |
| 104 | util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f', |
| 105 | '%s%s' % (datadir, its), fit]) |
| 106 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 107 | def sign_fit(sha_algo): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 108 | """Sign the FIT |
| 109 | |
| 110 | Signs the FIT and writes the signature into it. It also writes the |
| 111 | public key into the dtb. |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 112 | |
| 113 | Args: |
| 114 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 115 | use. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 116 | """ |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 117 | cons.log.action('%s: Sign images' % sha_algo) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 118 | util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb, |
| 119 | '-r', fit]) |
| 120 | |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 121 | def replace_fit_totalsize(size): |
| 122 | """Replace FIT header's totalsize with something greater. |
| 123 | |
| 124 | The totalsize must be less than or equal to FIT_SIGNATURE_MAX_SIZE. |
| 125 | If the size is greater, the signature verification should return false. |
| 126 | |
| 127 | Args: |
| 128 | size: The new totalsize of the header |
| 129 | |
| 130 | Returns: |
| 131 | prev_size: The previous totalsize read from the header |
| 132 | """ |
| 133 | total_size = 0 |
| 134 | with open(fit, 'r+b') as handle: |
| 135 | handle.seek(4) |
| 136 | total_size = handle.read(4) |
| 137 | handle.seek(4) |
| 138 | handle.write(struct.pack(">I", size)) |
| 139 | return struct.unpack(">I", total_size)[0] |
| 140 | |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 141 | def create_rsa_pair(name): |
| 142 | """Generate a new RSA key paid and certificate |
| 143 | |
| 144 | Args: |
| 145 | name: Name of of the key (e.g. 'dev') |
| 146 | """ |
| 147 | public_exponent = 65537 |
| 148 | util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %s%s.key ' |
| 149 | '-pkeyopt rsa_keygen_bits:2048 ' |
| 150 | '-pkeyopt rsa_keygen_pubexp:%d' % |
| 151 | (tmpdir, name, public_exponent)) |
| 152 | |
| 153 | # Create a certificate containing the public key |
| 154 | util.run_and_log(cons, 'openssl req -batch -new -x509 -key %s%s.key ' |
| 155 | '-out %s%s.crt' % (tmpdir, name, tmpdir, name)) |
| 156 | |
Philippe Reynes | afdbcdb | 2018-11-14 13:51:04 +0100 | [diff] [blame] | 157 | def test_with_algo(sha_algo, padding): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 158 | """Test verified boot with the given hash algorithm. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 159 | |
| 160 | This is the main part of the test code. The same procedure is followed |
| 161 | for both hashing algorithms. |
| 162 | |
| 163 | Args: |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 164 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 165 | use. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 166 | """ |
Simon Glass | dc3ab7e | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 167 | # Compile our device tree files for kernel and U-Boot. These are |
| 168 | # regenerated here since mkimage will modify them (by adding a |
| 169 | # public key) below. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 170 | dtc('sandbox-kernel.dts') |
| 171 | dtc('sandbox-u-boot.dts') |
| 172 | |
| 173 | # Build the FIT, but don't sign anything yet |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 174 | cons.log.action('%s: Test FIT with signed images' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 175 | make_fit('sign-images-%s%s.its' % (sha_algo, padding)) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 176 | run_bootm(sha_algo, 'unsigned images', 'dev-', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 177 | |
| 178 | # Sign images with our dev keys |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 179 | sign_fit(sha_algo) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 180 | run_bootm(sha_algo, 'signed images', 'dev+', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 181 | |
| 182 | # Create a fresh .dtb without the public keys |
| 183 | dtc('sandbox-u-boot.dts') |
| 184 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 185 | cons.log.action('%s: Test FIT with signed configuration' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 186 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 187 | run_bootm(sha_algo, 'unsigned config', '%s+ OK' % sha_algo, True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 188 | |
| 189 | # Sign images with our dev keys |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 190 | sign_fit(sha_algo) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 191 | run_bootm(sha_algo, 'signed config', 'dev+', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 192 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 193 | cons.log.action('%s: Check signed config on the host' % sha_algo) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 194 | |
Simon Glass | f411a89 | 2020-03-18 11:43:58 -0600 | [diff] [blame] | 195 | util.run_and_log(cons, [fit_check_sign, '-f', fit, '-k', dtb]) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 196 | |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 197 | # Make sure that U-Boot checks that the config is in the list of hashed |
| 198 | # nodes. If it isn't, a security bypass is possible. |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 199 | with open(fit, 'rb') as fd: |
| 200 | root, strblock = vboot_forge.read_fdt(fd) |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 201 | root, strblock = vboot_forge.manipulate(root, strblock) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 202 | with open(fit, 'w+b') as fd: |
| 203 | vboot_forge.write_fdt(root, strblock, fd) |
| 204 | util.run_and_log_expect_exception( |
| 205 | cons, [fit_check_sign, '-f', fit, '-k', dtb], |
| 206 | 1, 'Failed to verify required signature') |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 207 | |
| 208 | run_bootm(sha_algo, 'forged config', 'Bad Data Hash', False) |
| 209 | |
| 210 | # Create a new properly signed fit and replace header bytes |
| 211 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
| 212 | sign_fit(sha_algo) |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 213 | bcfg = u_boot_console.config.buildconfig |
| 214 | max_size = int(bcfg.get('config_fit_signature_max_size', 0x10000000), 0) |
| 215 | existing_size = replace_fit_totalsize(max_size + 1) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 216 | run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', |
| 217 | False) |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 218 | cons.log.action('%s: Check overflowed FIT header totalsize' % sha_algo) |
| 219 | |
| 220 | # Replace with existing header bytes |
| 221 | replace_fit_totalsize(existing_size) |
| 222 | run_bootm(sha_algo, 'signed config', 'dev+', True) |
| 223 | cons.log.action('%s: Check default FIT header totalsize' % sha_algo) |
| 224 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 225 | # Increment the first byte of the signature, which should cause failure |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 226 | sig = util.run_and_log(cons, 'fdtget -t bx %s %s value' % |
| 227 | (fit, sig_node)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 228 | byte_list = sig.split() |
| 229 | byte = int(byte_list[0], 16) |
Simon Glass | dc3ab7e | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 230 | byte_list[0] = '%x' % (byte + 1) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 231 | sig = ' '.join(byte_list) |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 232 | util.run_and_log(cons, 'fdtput -t bx %s %s value %s' % |
| 233 | (fit, sig_node, sig)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 234 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 235 | run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', |
| 236 | False) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 237 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 238 | cons.log.action('%s: Check bad config on the host' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 239 | util.run_and_log_expect_exception( |
| 240 | cons, [fit_check_sign, '-f', fit, '-k', dtb], |
| 241 | 1, 'Failed to verify required signature') |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 242 | |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 243 | def test_required_key(sha_algo, padding): |
| 244 | """Test verified boot with the given hash algorithm. |
| 245 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 246 | This function tests if U-Boot rejects an image when a required key isn't |
| 247 | used to sign a FIT. |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 248 | |
| 249 | Args: |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 250 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to use |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 251 | """ |
| 252 | # Compile our device tree files for kernel and U-Boot. These are |
| 253 | # regenerated here since mkimage will modify them (by adding a |
| 254 | # public key) below. |
| 255 | dtc('sandbox-kernel.dts') |
| 256 | dtc('sandbox-u-boot.dts') |
| 257 | |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 258 | cons.log.action('%s: Test FIT with configs images' % sha_algo) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 259 | |
| 260 | # Build the FIT with prod key (keys required) and sign it. This puts the |
| 261 | # signature into sandbox-u-boot.dtb, marked 'required' |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 262 | make_fit('sign-configs-%s%s-prod.its' % (sha_algo, padding)) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 263 | sign_fit(sha_algo) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 264 | |
| 265 | # Build the FIT with dev key (keys NOT required). This adds the |
| 266 | # signature into sandbox-u-boot.dtb, NOT marked 'required'. |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 267 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 268 | sign_fit(sha_algo) |
| 269 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 270 | # So now sandbox-u-boot.dtb two signatures, for the prod and dev keys. |
| 271 | # Only the prod key is set as 'required'. But FIT we just built has |
| 272 | # a dev signature only (sign_fit() overwrites the FIT). |
| 273 | # Try to boot the FIT with dev key. This FIT should not be accepted by |
| 274 | # U-Boot because the prod key is required. |
| 275 | run_bootm(sha_algo, 'required key', '', False) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 276 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 277 | cons = u_boot_console |
| 278 | tmpdir = cons.config.result_dir + '/' |
Stephen Warren | 7047d95 | 2016-07-18 10:07:25 -0600 | [diff] [blame] | 279 | datadir = cons.config.source_dir + '/test/py/tests/vboot/' |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 280 | fit = '%stest.fit' % tmpdir |
| 281 | mkimage = cons.config.build_dir + '/tools/mkimage' |
| 282 | fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign' |
| 283 | dtc_args = '-I dts -O dtb -i %s' % tmpdir |
| 284 | dtb = '%ssandbox-u-boot.dtb' % tmpdir |
Philippe Reynes | a28e922 | 2018-11-14 13:51:05 +0100 | [diff] [blame] | 285 | sig_node = '/configurations/conf-1/signature' |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 286 | |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 287 | create_rsa_pair('dev') |
| 288 | create_rsa_pair('prod') |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 289 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 290 | # Create a number kernel image with zeroes |
| 291 | with open('%stest-kernel.bin' % tmpdir, 'w') as fd: |
Simon Glass | 9be531f | 2020-03-18 11:44:08 -0600 | [diff] [blame] | 292 | fd.write(500 * chr(0)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 293 | |
| 294 | try: |
| 295 | # We need to use our own device tree file. Remember to restore it |
| 296 | # afterwards. |
| 297 | old_dtb = cons.config.dtb |
| 298 | cons.config.dtb = dtb |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 299 | if required: |
| 300 | test_required_key(sha_algo, padding) |
| 301 | else: |
| 302 | test_with_algo(sha_algo, padding) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 303 | finally: |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 304 | # Go back to the original U-Boot with the correct dtb. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 305 | cons.config.dtb = old_dtb |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 306 | cons.restart_uboot() |