blob: 6d7abb82bd72b85a861e3524a7b92c34e853817a [file] [log] [blame]
Stephen Warren967a99a2014-06-12 10:27:39 -06001#!/bin/bash
Simon Glass041bca52013-06-13 15:10:11 -07002#
3# Copyright (c) 2013, Google Inc.
4#
5# Simple Verified Boot Test Script
6#
Wolfgang Denk1a459662013-07-08 09:37:19 +02007# SPDX-License-Identifier: GPL-2.0+
Simon Glass041bca52013-06-13 15:10:11 -07008
9set -e
10
11# Run U-Boot and report the result
12# Args:
13# $1: Test message
14run_uboot() {
15 echo -n "Test Verified Boot Run: $1: "
16 ${uboot} -d sandbox-u-boot.dtb >${tmp} -c '
Stephen Warren4d907022014-06-12 10:28:32 -060017sb load hostfs - 100 test.fit;
Simon Glass041bca52013-06-13 15:10:11 -070018fdt addr 100;
19bootm 100;
20reset'
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
31echo "Simple Verified Boot Test"
32echo "========================="
33echo
34echo "Please see doc/uImage.FIT/verified-boot.txt for more information"
35echo
36
37err=0
38tmp=/tmp/vboot_test.$$
39
40dir=$(dirname $0)
41
42if [ -z ${O} ]; then
43 O=.
44fi
45O=$(readlink -f ${O})
46
47dtc="-I dts -O dtb -p 2000"
48uboot="${O}/u-boot"
49mkimage="${O}/tools/mkimage"
Heiko Schocher29a23f92014-03-03 12:19:30 +010050fit_check_sign="${O}/tools/fit_check_sign"
Simon Glass041bca52013-06-13 15:10:11 -070051keys="${dir}/dev-keys"
52echo ${mkimage} -D "${dtc}"
53
54echo "Build keys"
55mkdir -p ${keys}
56
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +020057PUBLIC_EXPONENT=${1}
58
59if [ -z "${PUBLIC_EXPONENT}" ]; then
60 PUBLIC_EXPONENT=65537
61fi
62
Simon Glass041bca52013-06-13 15:10:11 -070063# Create an RSA key pair
Michael van der Westhuizene0f2f152014-07-02 10:17:26 +020064openssl genpkey -algorithm RSA -out ${keys}/dev.key \
65 -pkeyopt rsa_keygen_bits:2048 \
66 -pkeyopt rsa_keygen_pubexp:${PUBLIC_EXPONENT} 2>/dev/null
Simon Glass041bca52013-06-13 15:10:11 -070067
68# Create a certificate containing the public key
69openssl req -batch -new -x509 -key ${keys}/dev.key -out ${keys}/dev.crt
70
71pushd ${dir} >/dev/null
72
Heiko Schocher646257d2014-03-03 12:19:26 +010073function do_test {
74 echo do $sha test
75 # Compile our device tree files for kernel and U-Boot
76 dtc -p 0x1000 sandbox-kernel.dts -O dtb -o sandbox-kernel.dtb
77 dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb
Simon Glass041bca52013-06-13 15:10:11 -070078
Heiko Schocher646257d2014-03-03 12:19:26 +010079 # Create a number kernel image with zeroes
80 head -c 5000 /dev/zero >test-kernel.bin
Simon Glass041bca52013-06-13 15:10:11 -070081
Heiko Schocher646257d2014-03-03 12:19:26 +010082 # Build the FIT, but don't sign anything yet
83 echo Build FIT with signed images
84 ${mkimage} -D "${dtc}" -f sign-images-$sha.its test.fit >${tmp}
Simon Glass041bca52013-06-13 15:10:11 -070085
Heiko Schocher646257d2014-03-03 12:19:26 +010086 run_uboot "unsigned signatures:" "dev-"
Simon Glass041bca52013-06-13 15:10:11 -070087
Heiko Schocher646257d2014-03-03 12:19:26 +010088 # Sign images with our dev keys
89 echo Sign images
90 ${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb \
91 -r test.fit >${tmp}
Simon Glass041bca52013-06-13 15:10:11 -070092
Heiko Schocher646257d2014-03-03 12:19:26 +010093 run_uboot "signed images" "dev+"
Simon Glass041bca52013-06-13 15:10:11 -070094
95
Heiko Schocher646257d2014-03-03 12:19:26 +010096 # Create a fresh .dtb without the public keys
97 dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb
Simon Glass041bca52013-06-13 15:10:11 -070098
Heiko Schocher646257d2014-03-03 12:19:26 +010099 echo Build FIT with signed configuration
100 ${mkimage} -D "${dtc}" -f sign-configs-$sha.its test.fit >${tmp}
Simon Glass041bca52013-06-13 15:10:11 -0700101
Heiko Schocher646257d2014-03-03 12:19:26 +0100102 run_uboot "unsigned config" $sha"+ OK"
Simon Glass041bca52013-06-13 15:10:11 -0700103
Heiko Schocher646257d2014-03-03 12:19:26 +0100104 # Sign images with our dev keys
105 echo Sign images
106 ${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb \
107 -r test.fit >${tmp}
Simon Glass041bca52013-06-13 15:10:11 -0700108
Heiko Schocher646257d2014-03-03 12:19:26 +0100109 run_uboot "signed config" "dev+"
Simon Glass041bca52013-06-13 15:10:11 -0700110
Heiko Schocher29a23f92014-03-03 12:19:30 +0100111 echo check signed config on the host
112 if ! ${fit_check_sign} -f test.fit -k sandbox-u-boot.dtb >${tmp}; then
113 echo
114 echo "Verified boot key check on host failed, output follows:"
115 cat ${tmp}
116 false
117 else
118 if ! grep -q "dev+" ${tmp}; then
119 echo
120 echo "Verified boot key check failed, output follows:"
121 cat ${tmp}
122 false
123 else
124 echo "OK"
125 fi
126 fi
127
128 run_uboot "signed config" "dev+"
129
Heiko Schocher646257d2014-03-03 12:19:26 +0100130 # Increment the first byte of the signature, which should cause failure
131 sig=$(fdtget -t bx test.fit /configurations/conf@1/signature@1 value)
132 newbyte=$(printf %x $((0x${sig:0:2} + 1)))
133 sig="${newbyte} ${sig:2}"
134 fdtput -t bx test.fit /configurations/conf@1/signature@1 value ${sig}
Simon Glass041bca52013-06-13 15:10:11 -0700135
Heiko Schocher646257d2014-03-03 12:19:26 +0100136 run_uboot "signed config with bad hash" "Bad Data Hash"
137}
138
139sha=sha1
140do_test
141sha=sha256
142do_test
Simon Glass041bca52013-06-13 15:10:11 -0700143
144popd >/dev/null
145
146echo
147if ${ok}; then
148 echo "Test passed"
149else
150 echo "Test failed"
151fi