Simon Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 1 | # Copyright (c) 2016, Google Inc. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 2 | # |
| 3 | # SPDX-License-Identifier: GPL-2.0+ |
| 4 | # |
| 5 | # U-Boot Verified Boot Test |
| 6 | |
| 7 | """ |
| 8 | This tests verified boot in the following ways: |
| 9 | |
| 10 | For image verification: |
| 11 | - Create FIT (unsigned) with mkimage |
| 12 | - Check that verification shows that no keys are verified |
| 13 | - Sign image |
| 14 | - Check that verification shows that a key is now verified |
| 15 | |
| 16 | For configuration verification: |
| 17 | - Corrupt signature and check for failure |
| 18 | - Create FIT (with unsigned configuration) with mkimage |
Simon Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 19 | - Check that image verification works |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 20 | - Sign the FIT and mark the key as 'required' for verification |
| 21 | - Check that image verification works |
| 22 | - Corrupt the signature |
| 23 | - Check that image verification no-longer works |
| 24 | |
| 25 | Tests run with both SHA1 and SHA256 hashing. |
| 26 | """ |
| 27 | |
| 28 | import pytest |
| 29 | import sys |
| 30 | import u_boot_utils as util |
| 31 | |
Michal Simek | 04a4786 | 2016-07-18 08:49:08 +0200 | [diff] [blame] | 32 | @pytest.mark.boardspec('sandbox') |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 33 | @pytest.mark.buildconfigspec('fit_signature') |
Stephen Warren | 2d26bf6 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 34 | @pytest.mark.requiredtool('dtc') |
| 35 | @pytest.mark.requiredtool('fdtget') |
| 36 | @pytest.mark.requiredtool('fdtput') |
| 37 | @pytest.mark.requiredtool('openssl') |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 38 | def 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 Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 48 | """Run the device tree compiler to compile a .dts file |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 49 | |
| 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 Glass | ec70f8a | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 57 | util.run_and_log(cons, 'dtc %s %s%s -O dtb ' |
| 58 | '-o %s%s' % (dtc_args, datadir, dts, tmpdir, dtb)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 59 | |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 60 | def run_bootm(sha_algo, test_type, expect_string, boots): |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 61 | """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 Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 67 | 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 Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 71 | boots: A boolean that is True if Linux should boot and False if |
| 72 | we are expected to not boot |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 73 | """ |
Simon Glass | 27c087d | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 74 | cons.restart_uboot() |
Simon Glass | 851271a | 2016-07-31 17:35:07 -0600 | [diff] [blame] | 75 | with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)): |
| 76 | output = cons.run_command_list( |
| 77 | ['sb load hostfs - 100 %stest.fit' % tmpdir, |
| 78 | 'fdt addr 100', |
| 79 | 'bootm 100']) |
Simon Glass | f6d3465 | 2016-07-31 17:35:09 -0600 | [diff] [blame] | 80 | assert(expect_string in ''.join(output)) |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 81 | if boots: |
| 82 | assert('sandbox: continuing, as we cannot run' in ''.join(output)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 83 | |
| 84 | def make_fit(its): |
Simon Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 85 | """Make a new FIT from the .its source file. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 86 | |
| 87 | This runs 'mkimage -f' to create a new FIT. |
| 88 | |
| 89 | Args: |
Simon Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 90 | its: Filename containing .its source. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 91 | """ |
| 92 | util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f', |
| 93 | '%s%s' % (datadir, its), fit]) |
| 94 | |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 95 | def sign_fit(sha_algo): |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 96 | """Sign the FIT |
| 97 | |
| 98 | Signs the FIT and writes the signature into it. It also writes the |
| 99 | public key into the dtb. |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 100 | |
| 101 | Args: |
| 102 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 103 | use. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 104 | """ |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 105 | cons.log.action('%s: Sign images' % sha_algo) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 106 | util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb, |
| 107 | '-r', fit]) |
| 108 | |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 109 | def test_with_algo(sha_algo): |
Simon Glass | 72f5226 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 110 | """Test verified boot with the given hash algorithm. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 111 | |
| 112 | This is the main part of the test code. The same procedure is followed |
| 113 | for both hashing algorithms. |
| 114 | |
| 115 | Args: |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 116 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 117 | use. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 118 | """ |
Simon Glass | bcbd0c8 | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 119 | # Compile our device tree files for kernel and U-Boot. These are |
| 120 | # regenerated here since mkimage will modify them (by adding a |
| 121 | # public key) below. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 122 | dtc('sandbox-kernel.dts') |
| 123 | dtc('sandbox-u-boot.dts') |
| 124 | |
| 125 | # Build the FIT, but don't sign anything yet |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 126 | cons.log.action('%s: Test FIT with signed images' % sha_algo) |
| 127 | make_fit('sign-images-%s.its' % sha_algo) |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 128 | run_bootm(sha_algo, 'unsigned images', 'dev-', True) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 129 | |
| 130 | # Sign images with our dev keys |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 131 | sign_fit(sha_algo) |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 132 | run_bootm(sha_algo, 'signed images', 'dev+', True) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 133 | |
| 134 | # Create a fresh .dtb without the public keys |
| 135 | dtc('sandbox-u-boot.dts') |
| 136 | |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 137 | cons.log.action('%s: Test FIT with signed configuration' % sha_algo) |
| 138 | make_fit('sign-configs-%s.its' % sha_algo) |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 139 | run_bootm(sha_algo, 'unsigned config', '%s+ OK' % sha_algo, True) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 140 | |
| 141 | # Sign images with our dev keys |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 142 | sign_fit(sha_algo) |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 143 | run_bootm(sha_algo, 'signed config', 'dev+', True) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 144 | |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 145 | cons.log.action('%s: Check signed config on the host' % sha_algo) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 146 | |
| 147 | util.run_and_log(cons, [fit_check_sign, '-f', fit, '-k', tmpdir, |
| 148 | '-k', dtb]) |
| 149 | |
| 150 | # Increment the first byte of the signature, which should cause failure |
Simon Glass | ec70f8a | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 151 | sig = util.run_and_log(cons, 'fdtget -t bx %s %s value' % |
| 152 | (fit, sig_node)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 153 | byte_list = sig.split() |
| 154 | byte = int(byte_list[0], 16) |
Simon Glass | bcbd0c8 | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 155 | byte_list[0] = '%x' % (byte + 1) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 156 | sig = ' '.join(byte_list) |
Simon Glass | ec70f8a | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 157 | util.run_and_log(cons, 'fdtput -t bx %s %s value %s' % |
| 158 | (fit, sig_node, sig)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 159 | |
Tom Rini | de4be9e | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 160 | run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', False) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 161 | |
Simon Glass | ac9a23c | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 162 | cons.log.action('%s: Check bad config on the host' % sha_algo) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 163 | util.run_and_log_expect_exception(cons, [fit_check_sign, '-f', fit, |
| 164 | '-k', dtb], 1, 'Failed to verify required signature') |
| 165 | |
| 166 | cons = u_boot_console |
| 167 | tmpdir = cons.config.result_dir + '/' |
| 168 | tmp = tmpdir + 'vboot.tmp' |
Stephen Warren | c9ba60c | 2016-07-18 10:07:25 -0600 | [diff] [blame] | 169 | datadir = cons.config.source_dir + '/test/py/tests/vboot/' |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 170 | fit = '%stest.fit' % tmpdir |
| 171 | mkimage = cons.config.build_dir + '/tools/mkimage' |
| 172 | fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign' |
| 173 | dtc_args = '-I dts -O dtb -i %s' % tmpdir |
| 174 | dtb = '%ssandbox-u-boot.dtb' % tmpdir |
| 175 | sig_node = '/configurations/conf@1/signature@1' |
| 176 | |
| 177 | # Create an RSA key pair |
| 178 | public_exponent = 65537 |
Simon Glass | ec70f8a | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 179 | util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %sdev.key ' |
| 180 | '-pkeyopt rsa_keygen_bits:2048 ' |
| 181 | '-pkeyopt rsa_keygen_pubexp:%d ' |
| 182 | '2>/dev/null' % (tmpdir, public_exponent)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 183 | |
| 184 | # Create a certificate containing the public key |
Simon Glass | ec70f8a | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 185 | util.run_and_log(cons, 'openssl req -batch -new -x509 -key %sdev.key -out ' |
| 186 | '%sdev.crt' % (tmpdir, tmpdir)) |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 187 | |
| 188 | # Create a number kernel image with zeroes |
| 189 | with open('%stest-kernel.bin' % tmpdir, 'w') as fd: |
| 190 | fd.write(5000 * chr(0)) |
| 191 | |
| 192 | try: |
| 193 | # We need to use our own device tree file. Remember to restore it |
| 194 | # afterwards. |
| 195 | old_dtb = cons.config.dtb |
| 196 | cons.config.dtb = dtb |
| 197 | test_with_algo('sha1') |
| 198 | test_with_algo('sha256') |
| 199 | finally: |
Simon Glass | 27c087d | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 200 | # Go back to the original U-Boot with the correct dtb. |
Simon Glass | 8729d58 | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 201 | cons.config.dtb = old_dtb |
Simon Glass | 27c087d | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 202 | cons.restart_uboot() |