blob: bf27d995b1c2034e488a10b2034a2097cc943735 [file] [log] [blame]
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09001# SPDX-License-Identifier: GPL-2.0+
2# Copyright (c) 2019, Linaro Limited
3# Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
4
5import os
6import os.path
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09007from subprocess import call, check_call, check_output, CalledProcessError
AKASHI Takahirobe5dbf02020-07-08 14:01:59 +09008import pytest
AKASHI Takahiro58c95c22020-04-14 11:51:49 +09009from defs import *
10
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090011
12#
13# Fixture for UEFI secure boot test
14#
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090015
16
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090017@pytest.fixture(scope='session')
18def efi_boot_env(request, u_boot_config):
19 """Set up a file system to be used in UEFI secure boot test.
20
21 Args:
22 request: Pytest request object.
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090023 u_boot_config: U-boot configuration.
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090024
25 Return:
26 A path to disk image to be used for testing
27 """
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090028 image_path = u_boot_config.persistent_data_dir
AKASHI Takahiro6834fda2020-07-21 19:35:23 +090029 image_path = image_path + '/test_efi_secboot.img'
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090030
31 try:
Heinrich Schuchardt33424ea2020-07-11 23:05:18 +020032 mnt_point = u_boot_config.build_dir + '/mnt_efisecure'
33 check_call('rm -rf {}'.format(mnt_point), shell=True)
Heinrich Schuchardtb7e1d652020-04-21 18:44:39 +020034 check_call('mkdir -p {}'.format(mnt_point), shell=True)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090035
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090036 # suffix
37 # *.key: RSA private key in PEM
38 # *.crt: X509 certificate (self-signed) in PEM
39 # *.esl: signature list
40 # *.hash: message digest of image as signature list
41 # *.auth: signed signature list in signature database format
42 # *.efi: UEFI image
43 # *.efi.signed: signed UEFI image
44
45 # Create signature database
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090046 # PK
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090047 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_PK/ -keyout PK.key -out PK.crt -nodes -days 365'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090048 % mnt_point, shell=True)
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020049 check_call('cd %s; %scert-to-efi-sig-list -g %s PK.crt PK.esl; %ssign-efi-sig-list -t "2020-04-01" -c PK.crt -k PK.key PK PK.esl PK.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090050 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
51 shell=True)
52 # PK_null for deletion
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020053 check_call('cd %s; touch PK_null.esl; %ssign-efi-sig-list -t "2020-04-02" -c PK.crt -k PK.key PK PK_null.esl PK_null.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090054 % (mnt_point, EFITOOLS_PATH), shell=True)
55 # KEK
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090056 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_KEK/ -keyout KEK.key -out KEK.crt -nodes -days 365'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090057 % mnt_point, shell=True)
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020058 check_call('cd %s; %scert-to-efi-sig-list -g %s KEK.crt KEK.esl; %ssign-efi-sig-list -t "2020-04-03" -c PK.crt -k PK.key KEK KEK.esl KEK.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090059 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
60 shell=True)
61 # db
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090062 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_db/ -keyout db.key -out db.crt -nodes -days 365'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090063 % mnt_point, shell=True)
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020064 check_call('cd %s; %scert-to-efi-sig-list -g %s db.crt db.esl; %ssign-efi-sig-list -t "2020-04-04" -c KEK.crt -k KEK.key db db.esl db.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090065 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
66 shell=True)
67 # db1
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090068 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_db1/ -keyout db1.key -out db1.crt -nodes -days 365'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090069 % mnt_point, shell=True)
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020070 check_call('cd %s; %scert-to-efi-sig-list -g %s db1.crt db1.esl; %ssign-efi-sig-list -t "2020-04-05" -c KEK.crt -k KEK.key db db1.esl db1.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090071 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
72 shell=True)
73 # db1-update
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020074 check_call('cd %s; %ssign-efi-sig-list -t "2020-04-06" -a -c KEK.crt -k KEK.key db db1.esl db1-update.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090075 % (mnt_point, EFITOOLS_PATH), shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +090076 # dbx (TEST_dbx certificate)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090077 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_dbx/ -keyout dbx.key -out dbx.crt -nodes -days 365'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090078 % mnt_point, shell=True)
Heinrich Schuchardt446b1482020-07-02 08:25:46 +020079 check_call('cd %s; %scert-to-efi-sig-list -g %s dbx.crt dbx.esl; %ssign-efi-sig-list -t "2020-04-05" -c KEK.crt -k KEK.key dbx dbx.esl dbx.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090080 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
81 shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +090082 # dbx_hash (digest of TEST_db certificate)
AKASHI Takahirod4ece532020-07-08 14:02:01 +090083 check_call('cd %s; %scert-to-efi-hash-list -g %s -t 0 -s 256 db.crt dbx_hash.crl; %ssign-efi-sig-list -t "2020-04-05" -c KEK.crt -k KEK.key dbx dbx_hash.crl dbx_hash.auth'
84 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
85 shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +090086 # dbx_hash1 (digest of TEST_db1 certificate)
AKASHI Takahirodb20a3e2020-07-08 14:02:02 +090087 check_call('cd %s; %scert-to-efi-hash-list -g %s -t 0 -s 256 db1.crt dbx_hash1.crl; %ssign-efi-sig-list -t "2020-04-05" -c KEK.crt -k KEK.key dbx dbx_hash1.crl dbx_hash1.auth'
88 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
89 shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +090090 # dbx_db (with TEST_db certificate)
AKASHI Takahiro0f6e3eb2020-07-08 14:02:03 +090091 check_call('cd %s; %ssign-efi-sig-list -t "2020-04-05" -c KEK.crt -k KEK.key dbx db.esl dbx_db.auth'
92 % (mnt_point, EFITOOLS_PATH),
93 shell=True)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090094
95 # Copy image
AKASHI Takahiro6834fda2020-07-21 19:35:23 +090096 check_call('cp %s/lib/efi_loader/helloworld.efi %s' %
97 (u_boot_config.build_dir, mnt_point), shell=True)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +090098
AKASHI Takahiro719e89d2020-07-08 14:01:58 +090099 # Sign image
AKASHI Takahiro58c95c22020-04-14 11:51:49 +0900100 check_call('cd %s; sbsign --key db.key --cert db.crt helloworld.efi'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +0900101 % mnt_point, shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +0900102 # Sign already-signed image with another key
AKASHI Takahirodb20a3e2020-07-08 14:02:02 +0900103 check_call('cd %s; sbsign --key db1.key --cert db1.crt --output helloworld.efi.signed_2sigs helloworld.efi.signed'
104 % mnt_point, shell=True)
AKASHI Takahiro798f3062020-07-20 15:33:39 +0900105 # Digest image
Heinrich Schuchardt446b1482020-07-02 08:25:46 +0200106 check_call('cd %s; %shash-to-efi-sig-list helloworld.efi db_hello.hash; %ssign-efi-sig-list -t "2020-04-07" -c KEK.crt -k KEK.key db db_hello.hash db_hello.auth'
AKASHI Takahiro719e89d2020-07-08 14:01:58 +0900107 % (mnt_point, EFITOOLS_PATH, EFITOOLS_PATH),
108 shell=True)
AKASHI Takahiro0f6e3eb2020-07-08 14:02:03 +0900109 check_call('cd %s; %shash-to-efi-sig-list helloworld.efi.signed db_hello_signed.hash; %ssign-efi-sig-list -t "2020-04-03" -c KEK.crt -k KEK.key db db_hello_signed.hash db_hello_signed.auth'
110 % (mnt_point, EFITOOLS_PATH, EFITOOLS_PATH),
111 shell=True)
112 check_call('cd %s; %ssign-efi-sig-list -t "2020-04-07" -c KEK.crt -k KEK.key dbx db_hello_signed.hash dbx_hello_signed.auth'
113 % (mnt_point, EFITOOLS_PATH),
114 shell=True)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +0900115
AKASHI Takahiro798f3062020-07-20 15:33:39 +0900116 check_call('virt-make-fs --partition=gpt --size=+1M --type=vfat {} {}'.format(
117 mnt_point, image_path), shell=True)
Heinrich Schuchardt33424ea2020-07-11 23:05:18 +0200118 check_call('rm -rf {}'.format(mnt_point), shell=True)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +0900119
AKASHI Takahirobe5dbf02020-07-08 14:01:59 +0900120 except CalledProcessError as exception:
121 pytest.skip('Setup failed: %s' % exception.cmd)
AKASHI Takahiro58c95c22020-04-14 11:51:49 +0900122 return
123 else:
124 yield image_path
125 finally:
126 call('rm -f %s' % image_path, shell=True)
AKASHI Takahiro79f428e2020-07-21 19:35:24 +0900127
128#
129# Fixture for UEFI secure boot test of intermediate certificates
130#
131
132
133@pytest.fixture(scope='session')
134def efi_boot_env_intca(request, u_boot_config):
135 """Set up a file system to be used in UEFI secure boot test
136 of intermediate certificates.
137
138 Args:
139 request: Pytest request object.
140 u_boot_config: U-boot configuration.
141
142 Return:
143 A path to disk image to be used for testing
144 """
145 image_path = u_boot_config.persistent_data_dir
146 image_path = image_path + '/test_efi_secboot_intca.img'
147
148 try:
149 mnt_point = u_boot_config.persistent_data_dir + '/mnt_efi_secboot_intca'
150 check_call('rm -rf {}'.format(mnt_point), shell=True)
151 check_call('mkdir -p {}'.format(mnt_point), shell=True)
152
153 # Create signature database
154 # PK
155 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_PK/ -keyout PK.key -out PK.crt -nodes -days 365'
156 % mnt_point, shell=True)
157 check_call('cd %s; %scert-to-efi-sig-list -g %s PK.crt PK.esl; %ssign-efi-sig-list -c PK.crt -k PK.key PK PK.esl PK.auth'
158 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
159 shell=True)
160 # KEK
161 check_call('cd %s; openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_KEK/ -keyout KEK.key -out KEK.crt -nodes -days 365'
162 % mnt_point, shell=True)
163 check_call('cd %s; %scert-to-efi-sig-list -g %s KEK.crt KEK.esl; %ssign-efi-sig-list -c PK.crt -k PK.key KEK KEK.esl KEK.auth'
164 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
165 shell=True)
166
167 # We will have three-tier hierarchy of certificates:
168 # TestRoot: Root CA (self-signed)
169 # TestSub: Intermediate CA (signed by Root CA)
170 # TestCert: User certificate (signed by Intermediate CA, and used
171 # for signing an image)
172 #
173 # NOTE:
174 # I consulted the following EDK2 document for certificate options:
175 # BaseTools/Source/Python/Pkcs7Sign/Readme.md
176 # Please not use them as they are in product system. They are
177 # for test purpose only.
178
179 # TestRoot
180 check_call('cp %s/test/py/tests/test_efi_secboot/openssl.cnf %s'
181 % (u_boot_config.source_dir, mnt_point), shell=True)
182 check_call('cd %s; export OPENSSL_CONF=./openssl.cnf; openssl genrsa -out TestRoot.key 2048; openssl req -extensions v3_ca -new -x509 -days 365 -key TestRoot.key -out TestRoot.crt -subj "/CN=TEST_root/"; touch index.txt; touch index.txt.attr'
183 % mnt_point, shell=True)
184 # TestSub
185 check_call('cd %s; touch serial.new; export OPENSSL_CONF=./openssl.cnf; openssl genrsa -out TestSub.key 2048; openssl req -new -key TestSub.key -out TestSub.csr -subj "/CN=TEST_sub/"; openssl ca -in TestSub.csr -out TestSub.crt -extensions v3_int_ca -days 365 -batch -rand_serial -cert TestRoot.crt -keyfile TestRoot.key'
186 % mnt_point, shell=True)
187 # TestCert
188 check_call('cd %s; touch serial.new; export OPENSSL_CONF=./openssl.cnf; openssl genrsa -out TestCert.key 2048; openssl req -new -key TestCert.key -out TestCert.csr -subj "/CN=TEST_cert/"; openssl ca -in TestCert.csr -out TestCert.crt -extensions usr_cert -days 365 -batch -rand_serial -cert TestSub.crt -keyfile TestSub.key'
189 % mnt_point, shell=True)
190 # db
191 # for TestCert
192 check_call('cd %s; %scert-to-efi-sig-list -g %s TestCert.crt TestCert.esl; %ssign-efi-sig-list -c KEK.crt -k KEK.key db TestCert.esl db_a.auth'
193 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
194 shell=True)
195 # for TestSub
196 check_call('cd %s; %scert-to-efi-sig-list -g %s TestSub.crt TestSub.esl; %ssign-efi-sig-list -t "2020-07-16" -c KEK.crt -k KEK.key db TestSub.esl db_b.auth'
197 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
198 shell=True)
199 # for TestRoot
200 check_call('cd %s; %scert-to-efi-sig-list -g %s TestRoot.crt TestRoot.esl; %ssign-efi-sig-list -t "2020-07-17" -c KEK.crt -k KEK.key db TestRoot.esl db_c.auth'
201 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
202 shell=True)
203 ## dbx (hash of certificate with revocation time)
204 # for TestCert
205 check_call('cd %s; %scert-to-efi-hash-list -g %s -t "2020-07-20" -s 256 TestCert.crt TestCert.crl; %ssign-efi-sig-list -c KEK.crt -k KEK.key dbx TestCert.crl dbx_a.auth'
206 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
207 shell=True)
208 # for TestSub
209 check_call('cd %s; %scert-to-efi-hash-list -g %s -t "2020-07-21" -s 256 TestSub.crt TestSub.crl; %ssign-efi-sig-list -t "2020-07-18" -c KEK.crt -k KEK.key dbx TestSub.crl dbx_b.auth'
210 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
211 shell=True)
212 # for TestRoot
213 check_call('cd %s; %scert-to-efi-hash-list -g %s -t "2020-07-22" -s 256 TestRoot.crt TestRoot.crl; %ssign-efi-sig-list -t "2020-07-19" -c KEK.crt -k KEK.key dbx TestRoot.crl dbx_c.auth'
214 % (mnt_point, EFITOOLS_PATH, GUID, EFITOOLS_PATH),
215 shell=True)
216
217 # Sign image
218 # additional intermediate certificates may be included
219 # in SignedData
220
221 check_call('cp %s/lib/efi_loader/helloworld.efi %s' %
222 (u_boot_config.build_dir, mnt_point), shell=True)
223 # signed by TestCert
224 check_call('cd %s; %ssbsign --key TestCert.key --cert TestCert.crt --out helloworld.efi.signed_a helloworld.efi'
225 % (mnt_point, SBSIGN_PATH), shell=True)
226 # signed by TestCert with TestSub in signature
227 check_call('cd %s; %ssbsign --key TestCert.key --cert TestCert.crt --addcert TestSub.crt --out helloworld.efi.signed_ab helloworld.efi'
228 % (mnt_point, SBSIGN_PATH), shell=True)
229 # signed by TestCert with TestSub and TestRoot in signature
230 check_call('cd %s; cat TestSub.crt TestRoot.crt > TestSubRoot.crt; %ssbsign --key TestCert.key --cert TestCert.crt --addcert TestSubRoot.crt --out helloworld.efi.signed_abc helloworld.efi'
231 % (mnt_point, SBSIGN_PATH), shell=True)
232
233 check_call('virt-make-fs --partition=gpt --size=+1M --type=vfat {} {}'.format(mnt_point, image_path), shell=True)
234 check_call('rm -rf {}'.format(mnt_point), shell=True)
235
236 except CalledProcessError as e:
237 pytest.skip('Setup failed: %s' % e.cmd)
238 return
239 else:
240 yield image_path
241 finally:
242 call('rm -f %s' % image_path, shell=True)