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 | |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 24 | For pre-load header verification: |
| 25 | - Create FIT image with a pre-load header |
| 26 | - Check that signature verification succeeds |
| 27 | - Corrupt the FIT image |
| 28 | - Check that signature verification fails |
| 29 | - Launch an FIT image without a pre-load header |
| 30 | - Check that image verification fails |
| 31 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 32 | Tests run with both SHA1 and SHA256 hashing. |
| 33 | """ |
| 34 | |
Simon Glass | e9eeca8 | 2021-09-19 15:14:48 -0600 | [diff] [blame] | 35 | import os |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 36 | import shutil |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 37 | import struct |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 38 | import pytest |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 39 | import u_boot_utils as util |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 40 | import vboot_forge |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 41 | import vboot_evil |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 42 | |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 43 | # Only run the full suite on a few combinations, since it doesn't add any more |
| 44 | # test coverage. |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 45 | TESTDATA = [ |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 46 | ['sha1-basic', 'sha1', '', None, False, True, False, False], |
| 47 | ['sha1-pad', 'sha1', '', '-E -p 0x10000', False, False, False, False], |
| 48 | ['sha1-pss', 'sha1', '-pss', None, False, False, False, False], |
| 49 | ['sha1-pss-pad', 'sha1', '-pss', '-E -p 0x10000', False, False, False, False], |
| 50 | ['sha256-basic', 'sha256', '', None, False, False, False, False], |
| 51 | ['sha256-pad', 'sha256', '', '-E -p 0x10000', False, False, False, False], |
| 52 | ['sha256-pss', 'sha256', '-pss', None, False, False, False, False], |
| 53 | ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x10000', False, False, False, False], |
| 54 | ['sha256-pss-required', 'sha256', '-pss', None, True, False, False, False], |
| 55 | ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x10000', True, True, False, False], |
| 56 | ['sha384-basic', 'sha384', '', None, False, False, False, False], |
| 57 | ['sha384-pad', 'sha384', '', '-E -p 0x10000', False, False, False, False], |
| 58 | ['algo-arg', 'algo-arg', '', '-o sha256,rsa2048', False, False, True, False], |
| 59 | ['sha256-global-sign', 'sha256', '', '', False, False, False, True], |
| 60 | ['sha256-global-sign-pss', 'sha256', '-pss', '', False, False, False, True], |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 61 | ] |
| 62 | |
Michal Simek | 6e035ab | 2016-07-18 08:49:08 +0200 | [diff] [blame] | 63 | @pytest.mark.boardspec('sandbox') |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 64 | @pytest.mark.buildconfigspec('fit_signature') |
Stephen Warren | 2079db3 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 65 | @pytest.mark.requiredtool('dtc') |
| 66 | @pytest.mark.requiredtool('fdtget') |
| 67 | @pytest.mark.requiredtool('fdtput') |
| 68 | @pytest.mark.requiredtool('openssl') |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 69 | @pytest.mark.parametrize("name,sha_algo,padding,sign_options,required,full_test,algo_arg,global_sign", |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 70 | TESTDATA) |
Simon Glass | e9eeca8 | 2021-09-19 15:14:48 -0600 | [diff] [blame] | 71 | def test_vboot(u_boot_console, name, sha_algo, padding, sign_options, required, |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 72 | full_test, algo_arg, global_sign): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 73 | """Test verified boot signing with mkimage and verification with 'bootm'. |
| 74 | |
| 75 | This works using sandbox only as it needs to update the device tree used |
| 76 | by U-Boot to hold public keys from the signing process. |
| 77 | |
| 78 | The SHA1 and SHA256 tests are combined into a single test since the |
| 79 | key-generation process is quite slow and we want to avoid doing it twice. |
| 80 | """ |
| 81 | def dtc(dts): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 82 | """Run the device tree compiler to compile a .dts file |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 83 | |
| 84 | The output file will be the same as the input file but with a .dtb |
| 85 | extension. |
| 86 | |
| 87 | Args: |
| 88 | dts: Device tree file to compile. |
| 89 | """ |
| 90 | dtb = dts.replace('.dts', '.dtb') |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 91 | util.run_and_log(cons, 'dtc %s %s%s -O dtb ' |
| 92 | '-o %s%s' % (dtc_args, datadir, dts, tmpdir, dtb)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 93 | |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 94 | def dtc_options(dts, options): |
| 95 | """Run the device tree compiler to compile a .dts file |
| 96 | |
| 97 | The output file will be the same as the input file but with a .dtb |
| 98 | extension. |
| 99 | |
| 100 | Args: |
| 101 | dts: Device tree file to compile. |
| 102 | options: Options provided to the compiler. |
| 103 | """ |
| 104 | dtb = dts.replace('.dts', '.dtb') |
| 105 | util.run_and_log(cons, 'dtc %s %s%s -O dtb ' |
| 106 | '-o %s%s %s' % (dtc_args, datadir, dts, tmpdir, dtb, options)) |
| 107 | |
| 108 | def run_binman(dtb): |
| 109 | """Run binman to build an image |
| 110 | |
| 111 | Args: |
| 112 | dtb: Device tree file used as input file. |
| 113 | """ |
| 114 | pythonpath = os.environ.get('PYTHONPATH', '') |
| 115 | os.environ['PYTHONPATH'] = pythonpath + ':' + '%s/../scripts/dtc/pylibfdt' % tmpdir |
| 116 | util.run_and_log(cons, [binman, 'build', '-d', "%s/%s" % (tmpdir,dtb), |
| 117 | '-a', "pre-load-key-path=%s" % tmpdir, '-O', |
| 118 | tmpdir, '-I', tmpdir]) |
| 119 | os.environ['PYTHONPATH'] = pythonpath |
| 120 | |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 121 | def run_bootm(sha_algo, test_type, expect_string, boots, fit=None): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 122 | """Run a 'bootm' command U-Boot. |
| 123 | |
| 124 | This always starts a fresh U-Boot instance since the device tree may |
| 125 | contain a new public key. |
| 126 | |
| 127 | Args: |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 128 | test_type: A string identifying the test type. |
| 129 | expect_string: A string which is expected in the output. |
| 130 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 131 | use. |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 132 | boots: A boolean that is True if Linux should boot and False if |
| 133 | we are expected to not boot |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 134 | fit: FIT filename to load and verify |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 135 | """ |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 136 | if not fit: |
| 137 | fit = '%stest.fit' % tmpdir |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 138 | cons.restart_uboot() |
Simon Glass | 2a40d83 | 2016-07-31 17:35:07 -0600 | [diff] [blame] | 139 | with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)): |
| 140 | output = cons.run_command_list( |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 141 | ['host load hostfs - 100 %s' % fit, |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 142 | 'fdt addr 100', |
| 143 | 'bootm 100']) |
| 144 | assert expect_string in ''.join(output) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 145 | if boots: |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 146 | assert 'sandbox: continuing, as we cannot run' in ''.join(output) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 147 | else: |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 148 | assert('sandbox: continuing, as we cannot run' |
| 149 | not in ''.join(output)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 150 | |
| 151 | def make_fit(its): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 152 | """Make a new FIT from the .its source file. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 153 | |
| 154 | This runs 'mkimage -f' to create a new FIT. |
| 155 | |
| 156 | Args: |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 157 | its: Filename containing .its source. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 158 | """ |
| 159 | util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f', |
| 160 | '%s%s' % (datadir, its), fit]) |
| 161 | |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 162 | def sign_fit(sha_algo, options): |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 163 | """Sign the FIT |
| 164 | |
| 165 | Signs the FIT and writes the signature into it. It also writes the |
| 166 | public key into the dtb. |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 167 | |
| 168 | Args: |
| 169 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 170 | use. |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 171 | options: Options to provide to mkimage. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 172 | """ |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 173 | args = [mkimage, '-F', '-k', tmpdir, '-K', dtb, '-r', fit] |
| 174 | if options: |
| 175 | args += options.split(' ') |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 176 | cons.log.action('%s: Sign images' % sha_algo) |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 177 | util.run_and_log(cons, args) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 178 | |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 179 | def sign_fit_dtb(sha_algo, options, dtb): |
| 180 | """Sign the FIT |
| 181 | |
| 182 | Signs the FIT and writes the signature into it. It also writes the |
| 183 | public key into the dtb. |
| 184 | |
| 185 | Args: |
| 186 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 187 | use. |
| 188 | options: Options to provide to mkimage. |
| 189 | """ |
| 190 | args = [mkimage, '-F', '-k', tmpdir, '-K', dtb, '-r', fit] |
| 191 | if options: |
| 192 | args += options.split(' ') |
| 193 | cons.log.action('%s: Sign images' % sha_algo) |
| 194 | util.run_and_log(cons, args) |
| 195 | |
Thirupathaiah Annapureddy | 7e703f7 | 2020-08-16 23:01:10 -0700 | [diff] [blame] | 196 | def sign_fit_norequire(sha_algo, options): |
| 197 | """Sign the FIT |
| 198 | |
| 199 | Signs the FIT and writes the signature into it. It also writes the |
| 200 | public key into the dtb. It does not mark key as 'required' in dtb. |
| 201 | |
| 202 | Args: |
| 203 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 204 | use. |
| 205 | options: Options to provide to mkimage. |
| 206 | """ |
| 207 | args = [mkimage, '-F', '-k', tmpdir, '-K', dtb, fit] |
| 208 | if options: |
| 209 | args += options.split(' ') |
| 210 | cons.log.action('%s: Sign images' % sha_algo) |
| 211 | util.run_and_log(cons, args) |
| 212 | |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 213 | def replace_fit_totalsize(size): |
| 214 | """Replace FIT header's totalsize with something greater. |
| 215 | |
| 216 | The totalsize must be less than or equal to FIT_SIGNATURE_MAX_SIZE. |
| 217 | If the size is greater, the signature verification should return false. |
| 218 | |
| 219 | Args: |
| 220 | size: The new totalsize of the header |
| 221 | |
| 222 | Returns: |
| 223 | prev_size: The previous totalsize read from the header |
| 224 | """ |
| 225 | total_size = 0 |
| 226 | with open(fit, 'r+b') as handle: |
| 227 | handle.seek(4) |
| 228 | total_size = handle.read(4) |
| 229 | handle.seek(4) |
| 230 | handle.write(struct.pack(">I", size)) |
| 231 | return struct.unpack(">I", total_size)[0] |
| 232 | |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 233 | def corrupt_file(fit, offset, value): |
| 234 | """Corrupt a file |
| 235 | |
| 236 | To corrupt a file, a value is written at the specified offset |
| 237 | |
| 238 | Args: |
| 239 | fit: The file to corrupt |
| 240 | offset: Offset to write |
| 241 | value: Value written |
| 242 | """ |
| 243 | with open(fit, 'r+b') as handle: |
| 244 | handle.seek(offset) |
| 245 | handle.write(struct.pack(">I", value)) |
| 246 | |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 247 | def create_rsa_pair(name): |
| 248 | """Generate a new RSA key paid and certificate |
| 249 | |
| 250 | Args: |
| 251 | name: Name of of the key (e.g. 'dev') |
| 252 | """ |
| 253 | public_exponent = 65537 |
Jamin Lin | 5975ad7 | 2022-01-19 16:23:21 +0800 | [diff] [blame] | 254 | |
| 255 | if sha_algo == "sha384": |
| 256 | rsa_keygen_bits = 3072 |
| 257 | else: |
| 258 | rsa_keygen_bits = 2048 |
| 259 | |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 260 | util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %s%s.key ' |
Jamin Lin | 5975ad7 | 2022-01-19 16:23:21 +0800 | [diff] [blame] | 261 | '-pkeyopt rsa_keygen_bits:%d ' |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 262 | '-pkeyopt rsa_keygen_pubexp:%d' % |
Jamin Lin | 5975ad7 | 2022-01-19 16:23:21 +0800 | [diff] [blame] | 263 | (tmpdir, name, rsa_keygen_bits, public_exponent)) |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 264 | |
| 265 | # Create a certificate containing the public key |
| 266 | util.run_and_log(cons, 'openssl req -batch -new -x509 -key %s%s.key ' |
| 267 | '-out %s%s.crt' % (tmpdir, name, tmpdir, name)) |
| 268 | |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 269 | def test_with_algo(sha_algo, padding, sign_options): |
Simon Glass | d5deca0 | 2016-07-31 17:35:04 -0600 | [diff] [blame] | 270 | """Test verified boot with the given hash algorithm. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 271 | |
| 272 | This is the main part of the test code. The same procedure is followed |
| 273 | for both hashing algorithms. |
| 274 | |
| 275 | Args: |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 276 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to |
| 277 | use. |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 278 | padding: Either '' or '-pss', to select the padding to use for the |
| 279 | rsa signature algorithm. |
| 280 | sign_options: Options to mkimage when signing a fit image. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 281 | """ |
Simon Glass | dc3ab7e | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 282 | # Compile our device tree files for kernel and U-Boot. These are |
| 283 | # regenerated here since mkimage will modify them (by adding a |
| 284 | # public key) below. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 285 | dtc('sandbox-kernel.dts') |
| 286 | dtc('sandbox-u-boot.dts') |
| 287 | |
| 288 | # Build the FIT, but don't sign anything yet |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 289 | cons.log.action('%s: Test FIT with signed images' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 290 | make_fit('sign-images-%s%s.its' % (sha_algo, padding)) |
Jan Kiszka | 30f6465 | 2022-02-03 21:43:50 +0100 | [diff] [blame] | 291 | run_bootm(sha_algo, 'unsigned images', ' - OK' if algo_arg else 'dev-', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 292 | |
| 293 | # Sign images with our dev keys |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 294 | sign_fit(sha_algo, sign_options) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 295 | run_bootm(sha_algo, 'signed images', 'dev+', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 296 | |
| 297 | # Create a fresh .dtb without the public keys |
| 298 | dtc('sandbox-u-boot.dts') |
| 299 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 300 | cons.log.action('%s: Test FIT with signed configuration' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 301 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
Jan Kiszka | 30f6465 | 2022-02-03 21:43:50 +0100 | [diff] [blame] | 302 | run_bootm(sha_algo, 'unsigned config', '%s+ OK' % ('sha256' if algo_arg else sha_algo), True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 303 | |
| 304 | # Sign images with our dev keys |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 305 | sign_fit(sha_algo, sign_options) |
Tom Rini | b65ce46 | 2016-09-18 09:46:58 -0400 | [diff] [blame] | 306 | run_bootm(sha_algo, 'signed config', 'dev+', True) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 307 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 308 | cons.log.action('%s: Check signed config on the host' % sha_algo) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 309 | |
Simon Glass | f411a89 | 2020-03-18 11:43:58 -0600 | [diff] [blame] | 310 | util.run_and_log(cons, [fit_check_sign, '-f', fit, '-k', dtb]) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 311 | |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 312 | if full_test: |
Simon Glass | b823daa | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 313 | # Make sure that U-Boot checks that the config is in the list of |
| 314 | # hashed nodes. If it isn't, a security bypass is possible. |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 315 | ffit = '%stest.forged.fit' % tmpdir |
| 316 | shutil.copyfile(fit, ffit) |
| 317 | with open(ffit, 'rb') as fd: |
| 318 | root, strblock = vboot_forge.read_fdt(fd) |
| 319 | root, strblock = vboot_forge.manipulate(root, strblock) |
| 320 | with open(ffit, 'w+b') as fd: |
| 321 | vboot_forge.write_fdt(root, strblock, fd) |
| 322 | util.run_and_log_expect_exception( |
| 323 | cons, [fit_check_sign, '-f', ffit, '-k', dtb], |
| 324 | 1, 'Failed to verify required signature') |
| 325 | |
| 326 | run_bootm(sha_algo, 'forged config', 'Bad Data Hash', False, ffit) |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 327 | |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 328 | # Try adding an evil root node. This should be detected. |
| 329 | efit = '%stest.evilf.fit' % tmpdir |
| 330 | shutil.copyfile(fit, efit) |
| 331 | vboot_evil.add_evil_node(fit, efit, evil_kernel, 'fakeroot') |
| 332 | |
| 333 | util.run_and_log_expect_exception( |
| 334 | cons, [fit_check_sign, '-f', efit, '-k', dtb], |
| 335 | 1, 'Failed to verify required signature') |
Simon Glass | 19d2c02 | 2021-02-15 17:08:11 -0700 | [diff] [blame] | 336 | run_bootm(sha_algo, 'evil fakeroot', 'Bad FIT kernel image format', |
| 337 | False, efit) |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 338 | |
| 339 | # Try adding an @ to the kernel node name. This should be detected. |
| 340 | efit = '%stest.evilk.fit' % tmpdir |
| 341 | shutil.copyfile(fit, efit) |
| 342 | vboot_evil.add_evil_node(fit, efit, evil_kernel, 'kernel@') |
| 343 | |
Simon Glass | b823daa | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 344 | msg = 'Signature checking prevents use of unit addresses (@) in nodes' |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 345 | util.run_and_log_expect_exception( |
| 346 | cons, [fit_check_sign, '-f', efit, '-k', dtb], |
Simon Glass | b823daa | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 347 | 1, msg) |
| 348 | run_bootm(sha_algo, 'evil kernel@', msg, False, efit) |
Simon Glass | c35df8f | 2020-03-18 11:43:59 -0600 | [diff] [blame] | 349 | |
| 350 | # Create a new properly signed fit and replace header bytes |
| 351 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 352 | sign_fit(sha_algo, sign_options) |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 353 | bcfg = u_boot_console.config.buildconfig |
| 354 | max_size = int(bcfg.get('config_fit_signature_max_size', 0x10000000), 0) |
| 355 | existing_size = replace_fit_totalsize(max_size + 1) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 356 | run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', |
| 357 | False) |
Teddy Reed | e6a4783 | 2018-06-09 11:38:05 -0400 | [diff] [blame] | 358 | cons.log.action('%s: Check overflowed FIT header totalsize' % sha_algo) |
| 359 | |
| 360 | # Replace with existing header bytes |
| 361 | replace_fit_totalsize(existing_size) |
| 362 | run_bootm(sha_algo, 'signed config', 'dev+', True) |
| 363 | cons.log.action('%s: Check default FIT header totalsize' % sha_algo) |
| 364 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 365 | # Increment the first byte of the signature, which should cause failure |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 366 | sig = util.run_and_log(cons, 'fdtget -t bx %s %s value' % |
| 367 | (fit, sig_node)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 368 | byte_list = sig.split() |
| 369 | byte = int(byte_list[0], 16) |
Simon Glass | dc3ab7e | 2016-07-31 17:35:02 -0600 | [diff] [blame] | 370 | byte_list[0] = '%x' % (byte + 1) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 371 | sig = ' '.join(byte_list) |
Simon Glass | ba8116c | 2016-07-31 17:35:05 -0600 | [diff] [blame] | 372 | util.run_and_log(cons, 'fdtput -t bx %s %s value %s' % |
| 373 | (fit, sig_node, sig)) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 374 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 375 | run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', |
| 376 | False) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 377 | |
Simon Glass | f223c73 | 2016-07-31 17:35:06 -0600 | [diff] [blame] | 378 | cons.log.action('%s: Check bad config on the host' % sha_algo) |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 379 | util.run_and_log_expect_exception( |
| 380 | cons, [fit_check_sign, '-f', fit, '-k', dtb], |
| 381 | 1, 'Failed to verify required signature') |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 382 | |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 383 | def test_required_key(sha_algo, padding, sign_options): |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 384 | """Test verified boot with the given hash algorithm. |
| 385 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 386 | This function tests if U-Boot rejects an image when a required key isn't |
| 387 | used to sign a FIT. |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 388 | |
| 389 | Args: |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 390 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to use |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 391 | padding: Either '' or '-pss', to select the padding to use for the |
| 392 | rsa signature algorithm. |
| 393 | sign_options: Options to mkimage when signing a fit image. |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 394 | """ |
| 395 | # Compile our device tree files for kernel and U-Boot. These are |
| 396 | # regenerated here since mkimage will modify them (by adding a |
| 397 | # public key) below. |
| 398 | dtc('sandbox-kernel.dts') |
| 399 | dtc('sandbox-u-boot.dts') |
| 400 | |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 401 | cons.log.action('%s: Test FIT with configs images' % sha_algo) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 402 | |
| 403 | # Build the FIT with prod key (keys required) and sign it. This puts the |
| 404 | # signature into sandbox-u-boot.dtb, marked 'required' |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 405 | make_fit('sign-configs-%s%s-prod.its' % (sha_algo, padding)) |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 406 | sign_fit(sha_algo, sign_options) |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 407 | |
| 408 | # Build the FIT with dev key (keys NOT required). This adds the |
| 409 | # signature into sandbox-u-boot.dtb, NOT marked 'required'. |
Simon Glass | 861b504 | 2020-03-18 11:44:05 -0600 | [diff] [blame] | 410 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
Thirupathaiah Annapureddy | 7e703f7 | 2020-08-16 23:01:10 -0700 | [diff] [blame] | 411 | sign_fit_norequire(sha_algo, sign_options) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 412 | |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 413 | # So now sandbox-u-boot.dtb two signatures, for the prod and dev keys. |
| 414 | # Only the prod key is set as 'required'. But FIT we just built has |
Thirupathaiah Annapureddy | 7e703f7 | 2020-08-16 23:01:10 -0700 | [diff] [blame] | 415 | # a dev signature only (sign_fit_norequire() overwrites the FIT). |
Simon Glass | 724c03b | 2020-03-18 11:44:04 -0600 | [diff] [blame] | 416 | # Try to boot the FIT with dev key. This FIT should not be accepted by |
| 417 | # U-Boot because the prod key is required. |
| 418 | run_bootm(sha_algo, 'required key', '', False) |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 419 | |
Thirupathaiah Annapureddy | 7e703f7 | 2020-08-16 23:01:10 -0700 | [diff] [blame] | 420 | # Build the FIT with dev key (keys required) and sign it. This puts the |
| 421 | # signature into sandbox-u-boot.dtb, marked 'required'. |
| 422 | make_fit('sign-configs-%s%s.its' % (sha_algo, padding)) |
| 423 | sign_fit(sha_algo, sign_options) |
| 424 | |
| 425 | # Set the required-mode policy to "any". |
| 426 | # So now sandbox-u-boot.dtb two signatures, for the prod and dev keys. |
| 427 | # Both the dev and prod key are set as 'required'. But FIT we just built has |
| 428 | # a dev signature only (sign_fit() overwrites the FIT). |
| 429 | # Try to boot the FIT with dev key. This FIT should be accepted by |
| 430 | # U-Boot because the dev key is required and policy is "any" required key. |
| 431 | util.run_and_log(cons, 'fdtput -t s %s /signature required-mode any' % |
| 432 | (dtb)) |
| 433 | run_bootm(sha_algo, 'multi required key', 'dev+', True) |
| 434 | |
| 435 | # Set the required-mode policy to "all". |
| 436 | # So now sandbox-u-boot.dtb two signatures, for the prod and dev keys. |
| 437 | # Both the dev and prod key are set as 'required'. But FIT we just built has |
| 438 | # a dev signature only (sign_fit() overwrites the FIT). |
| 439 | # Try to boot the FIT with dev key. This FIT should not be accepted by |
| 440 | # U-Boot because the prod key is required and policy is "all" required key |
| 441 | util.run_and_log(cons, 'fdtput -t s %s /signature required-mode all' % |
| 442 | (dtb)) |
| 443 | run_bootm(sha_algo, 'multi required key', '', False) |
| 444 | |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 445 | def test_global_sign(sha_algo, padding, sign_options): |
| 446 | """Test global image signature with the given hash algorithm and padding. |
| 447 | |
| 448 | Args: |
| 449 | sha_algo: Either 'sha1' or 'sha256', to select the algorithm to use |
| 450 | padding: Either '' or '-pss', to select the padding to use for the |
| 451 | rsa signature algorithm. |
| 452 | """ |
| 453 | |
| 454 | dtb = '%ssandbox-u-boot-global%s.dtb' % (tmpdir, padding) |
| 455 | cons.config.dtb = dtb |
| 456 | |
| 457 | # Compile our device tree files for kernel and U-Boot. These are |
| 458 | # regenerated here since mkimage will modify them (by adding a |
| 459 | # public key) below. |
| 460 | dtc('sandbox-kernel.dts') |
| 461 | dtc_options('sandbox-u-boot-global%s.dts' % padding, '-p 1024') |
| 462 | |
| 463 | # Build the FIT with dev key (keys NOT required). This adds the |
| 464 | # signature into sandbox-u-boot.dtb, NOT marked 'required'. |
| 465 | make_fit('simple-images.its') |
| 466 | sign_fit_dtb(sha_algo, '', dtb) |
| 467 | |
| 468 | # Build the dtb for binman that define the pre-load header |
| 469 | # with the global sigature. |
| 470 | dtc('sandbox-binman%s.dts' % padding) |
| 471 | |
| 472 | # Run binman to create the final image with the not signed fit |
| 473 | # and the pre-load header that contains the global signature. |
| 474 | run_binman('sandbox-binman%s.dtb' % padding) |
| 475 | |
| 476 | # Check that the signature is correctly verified by u-boot |
| 477 | run_bootm(sha_algo, 'global image signature', |
| 478 | 'signature check has succeed', True, "%ssandbox.img" % tmpdir) |
| 479 | |
| 480 | # Corrupt the image (just one byte after the pre-load header) |
| 481 | corrupt_file("%ssandbox.img" % tmpdir, 4096, 255); |
| 482 | |
| 483 | # Check that the signature verification fails |
| 484 | run_bootm(sha_algo, 'global image signature', |
| 485 | 'signature check has failed', False, "%ssandbox.img" % tmpdir) |
| 486 | |
| 487 | # Check that the boot fails if the global signature is not provided |
| 488 | run_bootm(sha_algo, 'global image signature', 'signature is mandatory', False) |
| 489 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 490 | cons = u_boot_console |
Simon Glass | e9eeca8 | 2021-09-19 15:14:48 -0600 | [diff] [blame] | 491 | tmpdir = os.path.join(cons.config.result_dir, name) + '/' |
| 492 | if not os.path.exists(tmpdir): |
| 493 | os.mkdir(tmpdir) |
Stephen Warren | 7047d95 | 2016-07-18 10:07:25 -0600 | [diff] [blame] | 494 | datadir = cons.config.source_dir + '/test/py/tests/vboot/' |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 495 | fit = '%stest.fit' % tmpdir |
| 496 | mkimage = cons.config.build_dir + '/tools/mkimage' |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 497 | binman = cons.config.source_dir + '/tools/binman/binman' |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 498 | fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign' |
| 499 | dtc_args = '-I dts -O dtb -i %s' % tmpdir |
| 500 | dtb = '%ssandbox-u-boot.dtb' % tmpdir |
Philippe Reynes | a28e922 | 2018-11-14 13:51:05 +0100 | [diff] [blame] | 501 | sig_node = '/configurations/conf-1/signature' |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 502 | |
Simon Glass | b4a2f6a | 2020-03-18 11:44:07 -0600 | [diff] [blame] | 503 | create_rsa_pair('dev') |
| 504 | create_rsa_pair('prod') |
Philippe Reynes | 1d5ef52 | 2019-09-18 16:04:53 +0200 | [diff] [blame] | 505 | |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 506 | # Create a number kernel image with zeroes |
Simon Glass | 5e942f7 | 2021-02-15 17:08:08 -0700 | [diff] [blame] | 507 | with open('%stest-kernel.bin' % tmpdir, 'wb') as fd: |
| 508 | fd.write(500 * b'\0') |
| 509 | |
| 510 | # Create a second kernel image with ones |
| 511 | evil_kernel = '%stest-kernel1.bin' % tmpdir |
| 512 | with open(evil_kernel, 'wb') as fd: |
| 513 | fd.write(500 * b'\x01') |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 514 | |
| 515 | try: |
| 516 | # We need to use our own device tree file. Remember to restore it |
| 517 | # afterwards. |
| 518 | old_dtb = cons.config.dtb |
| 519 | cons.config.dtb = dtb |
Philippe Reynes | 5d472d3 | 2022-03-28 22:57:06 +0200 | [diff] [blame] | 520 | if global_sign: |
| 521 | test_global_sign(sha_algo, padding, sign_options) |
| 522 | elif required: |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 523 | test_required_key(sha_algo, padding, sign_options) |
Simon Glass | a0ba39d | 2020-03-18 11:44:00 -0600 | [diff] [blame] | 524 | else: |
Philippe Reynes | 2fbd17c | 2020-04-29 15:26:16 +0200 | [diff] [blame] | 525 | test_with_algo(sha_algo, padding, sign_options) |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 526 | finally: |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 527 | # Go back to the original U-Boot with the correct dtb. |
Simon Glass | d977ecd | 2016-07-03 09:40:46 -0600 | [diff] [blame] | 528 | cons.config.dtb = old_dtb |
Simon Glass | 37c2ce1 | 2016-07-31 17:35:08 -0600 | [diff] [blame] | 529 | cons.restart_uboot() |