blob: bb2c6051c8a41bb7d82214dad884d27d6c2570f9 [file] [log] [blame]
Simon Glass041bca52013-06-13 15:10:11 -07001#!/bin/sh
2#
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 '
17sb load host 0 100 test.fit;
18fdt 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"
50keys="${dir}/dev-keys"
51echo ${mkimage} -D "${dtc}"
52
53echo "Build keys"
54mkdir -p ${keys}
55
56# Create an RSA key pair
57openssl genrsa -F4 -out ${keys}/dev.key 2048 2>/dev/null
58
59# Create a certificate containing the public key
60openssl req -batch -new -x509 -key ${keys}/dev.key -out ${keys}/dev.crt
61
62pushd ${dir} >/dev/null
63
64# Compile our device tree files for kernel and U-Boot (CONFIG_OF_CONTROL)
65dtc -p 0x1000 sandbox-kernel.dts -O dtb -o sandbox-kernel.dtb
66dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb
67
68# Create a number kernel image with zeroes
69head -c 5000 /dev/zero >test-kernel.bin
70
71# Build the FIT, but don't sign anything yet
72echo Build FIT with signed images
73${mkimage} -D "${dtc}" -f sign-images.its test.fit >${tmp}
74
75run_uboot "unsigned signatures:" "dev-"
76
77# Sign images with our dev keys
78echo Sign images
79${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb -r test.fit >${tmp}
80
81run_uboot "signed images" "dev+"
82
83
84# Create a fresh .dtb without the public keys
85dtc -p 0x1000 sandbox-u-boot.dts -O dtb -o sandbox-u-boot.dtb
86
87echo Build FIT with signed configuration
88${mkimage} -D "${dtc}" -f sign-configs.its test.fit >${tmp}
89
90run_uboot "unsigned config" "sha1+ OK"
91
92# Sign images with our dev keys
93echo Sign images
94${mkimage} -D "${dtc}" -F -k dev-keys -K sandbox-u-boot.dtb -r test.fit >${tmp}
95
96run_uboot "signed config" "dev+"
97
98# Increment the first byte of the signature, which should cause failure
99sig=$(fdtget -t bx test.fit /configurations/conf@1/signature@1 value)
100newbyte=$(printf %x $((0x${sig:0:2} + 1)))
101sig="${newbyte} ${sig:2}"
102fdtput -t bx test.fit /configurations/conf@1/signature@1 value ${sig}
103
104run_uboot "signed config with bad hash" "Bad Data Hash"
105
106popd >/dev/null
107
108echo
109if ${ok}; then
110 echo "Test passed"
111else
112 echo "Test failed"
113fi