2016-07-03 15:40:46 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2018-05-06 21:58:06 +00:00
|
|
|
# Copyright (c) 2016, Google Inc.
|
2016-07-03 15:40:46 +00:00
|
|
|
#
|
|
|
|
# U-Boot Verified Boot Test
|
|
|
|
|
|
|
|
"""
|
|
|
|
This tests verified boot in the following ways:
|
|
|
|
|
|
|
|
For image verification:
|
|
|
|
- Create FIT (unsigned) with mkimage
|
|
|
|
- Check that verification shows that no keys are verified
|
|
|
|
- Sign image
|
|
|
|
- Check that verification shows that a key is now verified
|
|
|
|
|
|
|
|
For configuration verification:
|
|
|
|
- Corrupt signature and check for failure
|
|
|
|
- Create FIT (with unsigned configuration) with mkimage
|
2016-07-31 23:35:04 +00:00
|
|
|
- Check that image verification works
|
2016-07-03 15:40:46 +00:00
|
|
|
- Sign the FIT and mark the key as 'required' for verification
|
|
|
|
- Check that image verification works
|
|
|
|
- Corrupt the signature
|
|
|
|
- Check that image verification no-longer works
|
|
|
|
|
|
|
|
Tests run with both SHA1 and SHA256 hashing.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import sys
|
2018-06-09 15:38:05 +00:00
|
|
|
import struct
|
2016-07-03 15:40:46 +00:00
|
|
|
import u_boot_utils as util
|
|
|
|
|
2016-07-18 06:49:08 +00:00
|
|
|
@pytest.mark.boardspec('sandbox')
|
2016-07-03 15:40:46 +00:00
|
|
|
@pytest.mark.buildconfigspec('fit_signature')
|
2017-09-18 17:11:49 +00:00
|
|
|
@pytest.mark.requiredtool('dtc')
|
|
|
|
@pytest.mark.requiredtool('fdtget')
|
|
|
|
@pytest.mark.requiredtool('fdtput')
|
|
|
|
@pytest.mark.requiredtool('openssl')
|
2016-07-03 15:40:46 +00:00
|
|
|
def test_vboot(u_boot_console):
|
|
|
|
"""Test verified boot signing with mkimage and verification with 'bootm'.
|
|
|
|
|
|
|
|
This works using sandbox only as it needs to update the device tree used
|
|
|
|
by U-Boot to hold public keys from the signing process.
|
|
|
|
|
|
|
|
The SHA1 and SHA256 tests are combined into a single test since the
|
|
|
|
key-generation process is quite slow and we want to avoid doing it twice.
|
|
|
|
"""
|
|
|
|
def dtc(dts):
|
2016-07-31 23:35:04 +00:00
|
|
|
"""Run the device tree compiler to compile a .dts file
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
The output file will be the same as the input file but with a .dtb
|
|
|
|
extension.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
dts: Device tree file to compile.
|
|
|
|
"""
|
|
|
|
dtb = dts.replace('.dts', '.dtb')
|
2016-07-31 23:35:05 +00:00
|
|
|
util.run_and_log(cons, 'dtc %s %s%s -O dtb '
|
|
|
|
'-o %s%s' % (dtc_args, datadir, dts, tmpdir, dtb))
|
2016-07-03 15:40:46 +00:00
|
|
|
|
2016-09-18 13:46:58 +00:00
|
|
|
def run_bootm(sha_algo, test_type, expect_string, boots):
|
2016-07-03 15:40:46 +00:00
|
|
|
"""Run a 'bootm' command U-Boot.
|
|
|
|
|
|
|
|
This always starts a fresh U-Boot instance since the device tree may
|
|
|
|
contain a new public key.
|
|
|
|
|
|
|
|
Args:
|
2016-07-31 23:35:06 +00:00
|
|
|
test_type: A string identifying the test type.
|
|
|
|
expect_string: A string which is expected in the output.
|
|
|
|
sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
|
|
|
|
use.
|
2016-09-18 13:46:58 +00:00
|
|
|
boots: A boolean that is True if Linux should boot and False if
|
|
|
|
we are expected to not boot
|
2016-07-03 15:40:46 +00:00
|
|
|
"""
|
2016-07-31 23:35:08 +00:00
|
|
|
cons.restart_uboot()
|
2016-07-31 23:35:07 +00:00
|
|
|
with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)):
|
|
|
|
output = cons.run_command_list(
|
2018-11-16 01:44:02 +00:00
|
|
|
['host load hostfs - 100 %stest.fit' % tmpdir,
|
2016-07-31 23:35:07 +00:00
|
|
|
'fdt addr 100',
|
|
|
|
'bootm 100'])
|
2016-07-31 23:35:09 +00:00
|
|
|
assert(expect_string in ''.join(output))
|
2016-09-18 13:46:58 +00:00
|
|
|
if boots:
|
|
|
|
assert('sandbox: continuing, as we cannot run' in ''.join(output))
|
2019-09-18 14:04:53 +00:00
|
|
|
else:
|
|
|
|
assert('sandbox: continuing, as we cannot run' not in ''.join(output))
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
def make_fit(its):
|
2016-07-31 23:35:04 +00:00
|
|
|
"""Make a new FIT from the .its source file.
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
This runs 'mkimage -f' to create a new FIT.
|
|
|
|
|
|
|
|
Args:
|
2016-07-31 23:35:04 +00:00
|
|
|
its: Filename containing .its source.
|
2016-07-03 15:40:46 +00:00
|
|
|
"""
|
|
|
|
util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f',
|
|
|
|
'%s%s' % (datadir, its), fit])
|
|
|
|
|
2016-07-31 23:35:06 +00:00
|
|
|
def sign_fit(sha_algo):
|
2016-07-03 15:40:46 +00:00
|
|
|
"""Sign the FIT
|
|
|
|
|
|
|
|
Signs the FIT and writes the signature into it. It also writes the
|
|
|
|
public key into the dtb.
|
2016-07-31 23:35:06 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
|
|
|
|
use.
|
2016-07-03 15:40:46 +00:00
|
|
|
"""
|
2016-07-31 23:35:06 +00:00
|
|
|
cons.log.action('%s: Sign images' % sha_algo)
|
2016-07-03 15:40:46 +00:00
|
|
|
util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb,
|
|
|
|
'-r', fit])
|
|
|
|
|
2019-09-18 14:04:53 +00:00
|
|
|
def sign_fit_norequire(sha_algo):
|
|
|
|
"""Sign the FIT
|
|
|
|
|
|
|
|
Signs the FIT and writes the signature into it. It also writes the
|
|
|
|
public key into the dtb.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
|
|
|
|
use.
|
|
|
|
"""
|
|
|
|
cons.log.action('%s: Sign images' % sha_algo)
|
|
|
|
util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb,
|
|
|
|
fit])
|
|
|
|
|
2018-06-09 15:38:05 +00:00
|
|
|
def replace_fit_totalsize(size):
|
|
|
|
"""Replace FIT header's totalsize with something greater.
|
|
|
|
|
|
|
|
The totalsize must be less than or equal to FIT_SIGNATURE_MAX_SIZE.
|
|
|
|
If the size is greater, the signature verification should return false.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
size: The new totalsize of the header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
prev_size: The previous totalsize read from the header
|
|
|
|
"""
|
|
|
|
total_size = 0
|
|
|
|
with open(fit, 'r+b') as handle:
|
|
|
|
handle.seek(4)
|
|
|
|
total_size = handle.read(4)
|
|
|
|
handle.seek(4)
|
|
|
|
handle.write(struct.pack(">I", size))
|
|
|
|
return struct.unpack(">I", total_size)[0]
|
|
|
|
|
2018-11-14 12:51:04 +00:00
|
|
|
def test_with_algo(sha_algo, padding):
|
2016-07-31 23:35:04 +00:00
|
|
|
"""Test verified boot with the given hash algorithm.
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
This is the main part of the test code. The same procedure is followed
|
|
|
|
for both hashing algorithms.
|
|
|
|
|
|
|
|
Args:
|
2016-07-31 23:35:06 +00:00
|
|
|
sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
|
|
|
|
use.
|
2016-07-03 15:40:46 +00:00
|
|
|
"""
|
2016-07-31 23:35:02 +00:00
|
|
|
# Compile our device tree files for kernel and U-Boot. These are
|
|
|
|
# regenerated here since mkimage will modify them (by adding a
|
|
|
|
# public key) below.
|
2016-07-03 15:40:46 +00:00
|
|
|
dtc('sandbox-kernel.dts')
|
|
|
|
dtc('sandbox-u-boot.dts')
|
|
|
|
|
|
|
|
# Build the FIT, but don't sign anything yet
|
2016-07-31 23:35:06 +00:00
|
|
|
cons.log.action('%s: Test FIT with signed images' % sha_algo)
|
2018-11-14 12:51:04 +00:00
|
|
|
make_fit('sign-images-%s%s.its' % (sha_algo , padding))
|
2016-09-18 13:46:58 +00:00
|
|
|
run_bootm(sha_algo, 'unsigned images', 'dev-', True)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
# Sign images with our dev keys
|
2016-07-31 23:35:06 +00:00
|
|
|
sign_fit(sha_algo)
|
2016-09-18 13:46:58 +00:00
|
|
|
run_bootm(sha_algo, 'signed images', 'dev+', True)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
# Create a fresh .dtb without the public keys
|
|
|
|
dtc('sandbox-u-boot.dts')
|
|
|
|
|
2016-07-31 23:35:06 +00:00
|
|
|
cons.log.action('%s: Test FIT with signed configuration' % sha_algo)
|
2018-11-14 12:51:04 +00:00
|
|
|
make_fit('sign-configs-%s%s.its' % (sha_algo , padding))
|
2016-09-18 13:46:58 +00:00
|
|
|
run_bootm(sha_algo, 'unsigned config', '%s+ OK' % sha_algo, True)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
# Sign images with our dev keys
|
2016-07-31 23:35:06 +00:00
|
|
|
sign_fit(sha_algo)
|
2016-09-18 13:46:58 +00:00
|
|
|
run_bootm(sha_algo, 'signed config', 'dev+', True)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
2016-07-31 23:35:06 +00:00
|
|
|
cons.log.action('%s: Check signed config on the host' % sha_algo)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
util.run_and_log(cons, [fit_check_sign, '-f', fit, '-k', tmpdir,
|
|
|
|
'-k', dtb])
|
|
|
|
|
2018-06-09 15:38:05 +00:00
|
|
|
# Replace header bytes
|
|
|
|
bcfg = u_boot_console.config.buildconfig
|
|
|
|
max_size = int(bcfg.get('config_fit_signature_max_size', 0x10000000), 0)
|
|
|
|
existing_size = replace_fit_totalsize(max_size + 1)
|
|
|
|
run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', False)
|
|
|
|
cons.log.action('%s: Check overflowed FIT header totalsize' % sha_algo)
|
|
|
|
|
|
|
|
# Replace with existing header bytes
|
|
|
|
replace_fit_totalsize(existing_size)
|
|
|
|
run_bootm(sha_algo, 'signed config', 'dev+', True)
|
|
|
|
cons.log.action('%s: Check default FIT header totalsize' % sha_algo)
|
|
|
|
|
2016-07-03 15:40:46 +00:00
|
|
|
# Increment the first byte of the signature, which should cause failure
|
2016-07-31 23:35:05 +00:00
|
|
|
sig = util.run_and_log(cons, 'fdtget -t bx %s %s value' %
|
|
|
|
(fit, sig_node))
|
2016-07-03 15:40:46 +00:00
|
|
|
byte_list = sig.split()
|
|
|
|
byte = int(byte_list[0], 16)
|
2016-07-31 23:35:02 +00:00
|
|
|
byte_list[0] = '%x' % (byte + 1)
|
2016-07-03 15:40:46 +00:00
|
|
|
sig = ' '.join(byte_list)
|
2016-07-31 23:35:05 +00:00
|
|
|
util.run_and_log(cons, 'fdtput -t bx %s %s value %s' %
|
|
|
|
(fit, sig_node, sig))
|
2016-07-03 15:40:46 +00:00
|
|
|
|
2016-09-18 13:46:58 +00:00
|
|
|
run_bootm(sha_algo, 'Signed config with bad hash', 'Bad Data Hash', False)
|
2016-07-03 15:40:46 +00:00
|
|
|
|
2016-07-31 23:35:06 +00:00
|
|
|
cons.log.action('%s: Check bad config on the host' % sha_algo)
|
2016-07-03 15:40:46 +00:00
|
|
|
util.run_and_log_expect_exception(cons, [fit_check_sign, '-f', fit,
|
|
|
|
'-k', dtb], 1, 'Failed to verify required signature')
|
|
|
|
|
2019-09-18 14:04:53 +00:00
|
|
|
def test_required_key(sha_algo, padding):
|
|
|
|
"""Test verified boot with the given hash algorithm.
|
|
|
|
|
|
|
|
This function test if u-boot reject an image when a required
|
|
|
|
key isn't used to sign a FIT.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
sha_algo: Either 'sha1' or 'sha256', to select the algorithm to
|
|
|
|
use.
|
|
|
|
"""
|
|
|
|
# Compile our device tree files for kernel and U-Boot. These are
|
|
|
|
# regenerated here since mkimage will modify them (by adding a
|
|
|
|
# public key) below.
|
|
|
|
dtc('sandbox-kernel.dts')
|
|
|
|
dtc('sandbox-u-boot.dts')
|
|
|
|
|
|
|
|
# Build the FIT with prod key (keys required)
|
|
|
|
# Build the FIT with dev key (keys NOT required)
|
|
|
|
# The dtb contain the key prod and dev and the key prod are set as required.
|
|
|
|
# Then try to boot the FIT with dev key
|
|
|
|
# This FIT should not be accepted by u-boot because the key prod is required
|
|
|
|
cons.log.action('%s: Test FIT with configs images' % sha_algo)
|
|
|
|
make_fit('sign-configs-%s%s-prod.its' % (sha_algo , padding))
|
|
|
|
sign_fit(sha_algo)
|
|
|
|
make_fit('sign-configs-%s%s.its' % (sha_algo , padding))
|
|
|
|
sign_fit(sha_algo)
|
|
|
|
|
|
|
|
run_bootm(sha_algo, 'signed configs', '', False)
|
|
|
|
|
2016-07-03 15:40:46 +00:00
|
|
|
cons = u_boot_console
|
|
|
|
tmpdir = cons.config.result_dir + '/'
|
|
|
|
tmp = tmpdir + 'vboot.tmp'
|
2016-07-18 16:07:25 +00:00
|
|
|
datadir = cons.config.source_dir + '/test/py/tests/vboot/'
|
2016-07-03 15:40:46 +00:00
|
|
|
fit = '%stest.fit' % tmpdir
|
|
|
|
mkimage = cons.config.build_dir + '/tools/mkimage'
|
|
|
|
fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign'
|
|
|
|
dtc_args = '-I dts -O dtb -i %s' % tmpdir
|
|
|
|
dtb = '%ssandbox-u-boot.dtb' % tmpdir
|
2018-11-14 12:51:05 +00:00
|
|
|
sig_node = '/configurations/conf-1/signature'
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
# Create an RSA key pair
|
|
|
|
public_exponent = 65537
|
2016-07-31 23:35:05 +00:00
|
|
|
util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %sdev.key '
|
|
|
|
'-pkeyopt rsa_keygen_bits:2048 '
|
2017-09-14 21:34:50 +00:00
|
|
|
'-pkeyopt rsa_keygen_pubexp:%d' %
|
|
|
|
(tmpdir, public_exponent))
|
2016-07-03 15:40:46 +00:00
|
|
|
|
|
|
|
# Create a certificate containing the public key
|
2016-07-31 23:35:05 +00:00
|
|
|
util.run_and_log(cons, 'openssl req -batch -new -x509 -key %sdev.key -out '
|
|
|
|
'%sdev.crt' % (tmpdir, tmpdir))
|
2016-07-03 15:40:46 +00:00
|
|
|
|
2019-09-18 14:04:53 +00:00
|
|
|
# Create an RSA key pair (prod)
|
|
|
|
public_exponent = 65537
|
|
|
|
util.run_and_log(cons, 'openssl genpkey -algorithm RSA -out %sprod.key '
|
|
|
|
'-pkeyopt rsa_keygen_bits:2048 '
|
|
|
|
'-pkeyopt rsa_keygen_pubexp:%d' %
|
|
|
|
(tmpdir, public_exponent))
|
|
|
|
|
|
|
|
# Create a certificate containing the public key (prod)
|
|
|
|
util.run_and_log(cons, 'openssl req -batch -new -x509 -key %sprod.key -out '
|
|
|
|
'%sprod.crt' % (tmpdir, tmpdir))
|
|
|
|
|
2016-07-03 15:40:46 +00:00
|
|
|
# Create a number kernel image with zeroes
|
|
|
|
with open('%stest-kernel.bin' % tmpdir, 'w') as fd:
|
|
|
|
fd.write(5000 * chr(0))
|
|
|
|
|
|
|
|
try:
|
|
|
|
# We need to use our own device tree file. Remember to restore it
|
|
|
|
# afterwards.
|
|
|
|
old_dtb = cons.config.dtb
|
|
|
|
cons.config.dtb = dtb
|
2018-11-14 12:51:04 +00:00
|
|
|
test_with_algo('sha1','')
|
|
|
|
test_with_algo('sha1','-pss')
|
|
|
|
test_with_algo('sha256','')
|
|
|
|
test_with_algo('sha256','-pss')
|
2019-09-18 14:04:53 +00:00
|
|
|
test_required_key('sha256','-pss')
|
2016-07-03 15:40:46 +00:00
|
|
|
finally:
|
2016-07-31 23:35:08 +00:00
|
|
|
# Go back to the original U-Boot with the correct dtb.
|
2016-07-03 15:40:46 +00:00
|
|
|
cons.config.dtb = old_dtb
|
2016-07-31 23:35:08 +00:00
|
|
|
cons.restart_uboot()
|