Simon Glass | 041bca5 | 2013-06-13 15:10:11 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2013, Google Inc. |
| 4 | # |
| 5 | # Simple Verified Boot Test Script |
| 6 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 041bca5 | 2013-06-13 15:10:11 -0700 | [diff] [blame] | 8 | |
| 9 | set -e |
| 10 | |
| 11 | # Run U-Boot and report the result |
| 12 | # Args: |
| 13 | # $1: Test message |
| 14 | run_uboot() { |
| 15 | echo -n "Test Verified Boot Run: $1: " |
| 16 | ${uboot} -d sandbox-u-boot.dtb >${tmp} -c ' |
| 17 | sb load host 0 100 test.fit; |
| 18 | fdt addr 100; |
| 19 | bootm 100; |
| 20 | reset' |
| 21 | if ! grep -q "$2" ${tmp}; then |
| 22 | echo |
| 23 | echo "Verified boot key check failed, output follows:" |
| 24 | cat ${tmp} |
| 25 | false |
| 26 | else |
| 27 | echo "OK" |
| 28 | fi |
| 29 | } |
| 30 | |
| 31 | echo "Simple Verified Boot Test" |
| 32 | echo "=========================" |
| 33 | echo |
| 34 | echo "Please see doc/uImage.FIT/verified-boot.txt for more information" |
| 35 | echo |
| 36 | |
| 37 | err=0 |
| 38 | tmp=/tmp/vboot_test.$$ |
| 39 | |
| 40 | dir=$(dirname $0) |
| 41 | |
| 42 | if [ -z ${O} ]; then |
| 43 | O=. |
| 44 | fi |
| 45 | O=$(readlink -f ${O}) |
| 46 | |
| 47 | dtc="-I dts -O dtb -p 2000" |
| 48 | uboot="${O}/u-boot" |
| 49 | mkimage="${O}/tools/mkimage" |
| 50 | keys="${dir}/dev-keys" |
| 51 | echo ${mkimage} -D "${dtc}" |
| 52 | |
| 53 | echo "Build keys" |
| 54 | mkdir -p ${keys} |
| 55 | |
| 56 | # Create an RSA key pair |
| 57 | openssl genrsa -F4 -out ${keys}/dev.key 2048 2>/dev/null |
| 58 | |
| 59 | # Create a certificate containing the public key |
| 60 | openssl req -batch -new -x509 -key ${keys}/dev.key -out ${keys}/dev.crt |
| 61 | |
| 62 | pushd ${dir} >/dev/null |
| 63 | |
| 64 | # Compile our device tree files for kernel and U-Boot (CONFIG_OF_CONTROL) |
| 65 | dtc -p 0x1000 sandbox-kernel.dts -O dtb -o sandbox-kernel.dtb |
| 66 | dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb |
| 67 | |
| 68 | # Create a number kernel image with zeroes |
| 69 | head -c 5000 /dev/zero >test-kernel.bin |
| 70 | |
| 71 | # Build the FIT, but don't sign anything yet |
| 72 | echo Build FIT with signed images |
| 73 | ${mkimage} -D "${dtc}" -f sign-images.its test.fit >${tmp} |
| 74 | |
| 75 | run_uboot "unsigned signatures:" "dev-" |
| 76 | |
| 77 | # Sign images with our dev keys |
| 78 | echo Sign images |
| 79 | ${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb -r test.fit >${tmp} |
| 80 | |
| 81 | run_uboot "signed images" "dev+" |
| 82 | |
| 83 | |
| 84 | # Create a fresh .dtb without the public keys |
| 85 | dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb |
| 86 | |
| 87 | echo Build FIT with signed configuration |
| 88 | ${mkimage} -D "${dtc}" -f sign-configs.its test.fit >${tmp} |
| 89 | |
| 90 | run_uboot "unsigned config" "sha1+ OK" |
| 91 | |
| 92 | # Sign images with our dev keys |
| 93 | echo Sign images |
| 94 | ${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb -r test.fit >${tmp} |
| 95 | |
| 96 | run_uboot "signed config" "dev+" |
| 97 | |
| 98 | # Increment the first byte of the signature, which should cause failure |
| 99 | sig=$(fdtget -t bx test.fit /configurations/conf@1/signature@1 value) |
| 100 | newbyte=$(printf %x $((0x${sig:0:2} + 1))) |
| 101 | sig="${newbyte} ${sig:2}" |
| 102 | fdtput -t bx test.fit /configurations/conf@1/signature@1 value ${sig} |
| 103 | |
| 104 | run_uboot "signed config with bad hash" "Bad Data Hash" |
| 105 | |
| 106 | popd >/dev/null |
| 107 | |
| 108 | echo |
| 109 | if ${ok}; then |
| 110 | echo "Test passed" |
| 111 | else |
| 112 | echo "Test failed" |
| 113 | fi |