blob: dd338db687ee07e1d123a8075112ab380562fbcc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +02002/*
3 * EFI efi_selftest
4 *
5 * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +02006 */
7
8#include <efi_selftest.h>
9#include <vsprintf.h>
10
Simon Glass404ea592018-06-18 08:08:21 -060011/* Constants for test step bitmap */
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +020012#define EFI_ST_SETUP 1
13#define EFI_ST_EXECUTE 2
14#define EFI_ST_TEARDOWN 4
15
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020016static const struct efi_system_table *systable;
17static const struct efi_boot_services *boottime;
18static const struct efi_runtime_services *runtime;
19static efi_handle_t handle;
20static u16 reset_message[] = L"Selftest completed";
21
22/*
23 * Exit the boot services.
24 *
25 * The size of the memory map is determined.
26 * Pool memory is allocated to copy the memory map.
Simon Glass404ea592018-06-18 08:08:21 -060027 * The memory map is copied and the map key is obtained.
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020028 * The map key is used to exit the boot services.
29 */
30void efi_st_exit_boot_services(void)
31{
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +010032 efi_uintn_t map_size = 0;
33 efi_uintn_t map_key;
34 efi_uintn_t desc_size;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020035 u32 desc_version;
36 efi_status_t ret;
37 struct efi_mem_desc *memory_map;
38
39 ret = boottime->get_memory_map(&map_size, NULL, &map_key, &desc_size,
40 &desc_version);
41 if (ret != EFI_BUFFER_TOO_SMALL) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +020042 efi_st_error(
43 "GetMemoryMap did not return EFI_BUFFER_TOO_SMALL\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020044 return;
45 }
46 /* Allocate extra space for newly allocated memory */
47 map_size += sizeof(struct efi_mem_desc);
48 ret = boottime->allocate_pool(EFI_BOOT_SERVICES_DATA, map_size,
49 (void **)&memory_map);
50 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +020051 efi_st_error("AllocatePool did not return EFI_SUCCESS\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020052 return;
53 }
54 ret = boottime->get_memory_map(&map_size, memory_map, &map_key,
55 &desc_size, &desc_version);
56 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +020057 efi_st_error("GetMemoryMap did not return EFI_SUCCESS\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020058 return;
59 }
60 ret = boottime->exit_boot_services(handle, map_key);
61 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +020062 efi_st_error("ExitBootServices did not return EFI_SUCCESS\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020063 return;
64 }
Heinrich Schuchardt853540c2018-01-11 08:15:54 +010065 efi_st_printc(EFI_WHITE, "\nBoot services terminated\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020066}
67
68/*
69 * Set up a test.
70 *
71 * @test the test to be executed
72 * @failures counter that will be incremented if a failure occurs
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020073 * @return EFI_ST_SUCCESS for success
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020074 */
75static int setup(struct efi_unit_test *test, unsigned int *failures)
76{
Heinrich Schuchardtb5cd6872018-04-16 07:59:03 +020077 if (!test->setup) {
78 test->setup_ok = EFI_ST_SUCCESS;
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020079 return EFI_ST_SUCCESS;
Heinrich Schuchardtb5cd6872018-04-16 07:59:03 +020080 }
Heinrich Schuchardt853540c2018-01-11 08:15:54 +010081 efi_st_printc(EFI_LIGHTBLUE, "\nSetting up '%s'\n", test->name);
Heinrich Schuchardtb5cd6872018-04-16 07:59:03 +020082 test->setup_ok = test->setup(handle, systable);
83 if (test->setup_ok != EFI_ST_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +020084 efi_st_error("Setting up '%s' failed\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020085 ++*failures;
86 } else {
Heinrich Schuchardt853540c2018-01-11 08:15:54 +010087 efi_st_printc(EFI_LIGHTGREEN,
88 "Setting up '%s' succeeded\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020089 }
Heinrich Schuchardtb5cd6872018-04-16 07:59:03 +020090 return test->setup_ok;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020091}
92
93/*
94 * Execute a test.
95 *
96 * @test the test to be executed
97 * @failures counter that will be incremented if a failure occurs
Heinrich Schuchardte67e7242017-10-04 15:31:26 +020098 * @return EFI_ST_SUCCESS for success
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +020099 */
100static int execute(struct efi_unit_test *test, unsigned int *failures)
101{
102 int ret;
103
104 if (!test->execute)
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200105 return EFI_ST_SUCCESS;
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100106 efi_st_printc(EFI_LIGHTBLUE, "\nExecuting '%s'\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200107 ret = test->execute();
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200108 if (ret != EFI_ST_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +0200109 efi_st_error("Executing '%s' failed\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200110 ++*failures;
111 } else {
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100112 efi_st_printc(EFI_LIGHTGREEN,
113 "Executing '%s' succeeded\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200114 }
115 return ret;
116}
117
118/*
119 * Tear down a test.
120 *
121 * @test the test to be torn down
122 * @failures counter that will be incremented if a failure occurs
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200123 * @return EFI_ST_SUCCESS for success
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200124 */
125static int teardown(struct efi_unit_test *test, unsigned int *failures)
126{
127 int ret;
128
129 if (!test->teardown)
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200130 return EFI_ST_SUCCESS;
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100131 efi_st_printc(EFI_LIGHTBLUE, "\nTearing down '%s'\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200132 ret = test->teardown();
Heinrich Schuchardte67e7242017-10-04 15:31:26 +0200133 if (ret != EFI_ST_SUCCESS) {
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +0200134 efi_st_error("Tearing down '%s' failed\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200135 ++*failures;
136 } else {
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100137 efi_st_printc(EFI_LIGHTGREEN,
138 "Tearing down '%s' succeeded\n", test->name);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200139 }
140 return ret;
141}
142
143/*
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200144 * Check that a test exists.
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200145 *
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200146 * @testname: name of the test
Simon Glass404ea592018-06-18 08:08:21 -0600147 * @return: test, or NULL if not found
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200148 */
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200149static struct efi_unit_test *find_test(const u16 *testname)
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200150{
151 struct efi_unit_test *test;
152
153 for (test = ll_entry_start(struct efi_unit_test, efi_unit_test);
154 test < ll_entry_end(struct efi_unit_test, efi_unit_test); ++test) {
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200155 if (!efi_st_strcmp_16_8(testname, test->name))
156 return test;
157 }
158 efi_st_printf("\nTest '%ps' not found\n", testname);
159 return NULL;
160}
161
162/*
163 * List all available tests.
164 */
165static void list_all_tests(void)
166{
167 struct efi_unit_test *test;
168
169 /* List all tests */
170 efi_st_printf("\nAvailable tests:\n");
171 for (test = ll_entry_start(struct efi_unit_test, efi_unit_test);
172 test < ll_entry_end(struct efi_unit_test, efi_unit_test); ++test) {
173 efi_st_printf("'%s'%s\n", test->name,
174 test->on_request ? " - on request" : "");
175 }
176}
177
178/*
179 * Execute test steps of one phase.
180 *
181 * @testname name of a single selected test or NULL
182 * @phase test phase
Simon Glass404ea592018-06-18 08:08:21 -0600183 * @steps steps to execute (mask with bits from EFI_ST_...)
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200184 * failures returns EFI_ST_SUCCESS if all test steps succeeded
185 */
186void efi_st_do_tests(const u16 *testname, unsigned int phase,
187 unsigned int steps, unsigned int *failures)
188{
189 struct efi_unit_test *test;
190
191 for (test = ll_entry_start(struct efi_unit_test, efi_unit_test);
192 test < ll_entry_end(struct efi_unit_test, efi_unit_test); ++test) {
193 if (testname ?
194 efi_st_strcmp_16_8(testname, test->name) : test->on_request)
195 continue;
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200196 if (test->phase != phase)
197 continue;
198 if (steps & EFI_ST_SETUP)
199 setup(test, failures);
Heinrich Schuchardtb5cd6872018-04-16 07:59:03 +0200200 if (steps & EFI_ST_EXECUTE && test->setup_ok == EFI_ST_SUCCESS)
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200201 execute(test, failures);
202 if (steps & EFI_ST_TEARDOWN)
203 teardown(test, failures);
204 }
205}
206
207/*
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200208 * Execute selftest of the EFI API
209 *
210 * This is the main entry point of the EFI selftest application.
211 *
212 * All tests use a driver model and are run in three phases:
213 * setup, execute, teardown.
214 *
215 * A test may be setup and executed at boottime,
216 * it may be setup at boottime and executed at runtime,
217 * or it may be setup and executed at runtime.
218 *
219 * After executing all tests the system is reset.
220 *
221 * @image_handle: handle of the loaded EFI image
222 * @systab: EFI system table
223 */
224efi_status_t EFIAPI efi_selftest(efi_handle_t image_handle,
225 struct efi_system_table *systab)
226{
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200227 unsigned int failures = 0;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200228 const u16 *testname = NULL;
229 struct efi_loaded_image *loaded_image;
230 efi_status_t ret;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200231
232 systable = systab;
233 boottime = systable->boottime;
234 runtime = systable->runtime;
235 handle = image_handle;
236 con_out = systable->con_out;
237 con_in = systable->con_in;
238
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200239 ret = boottime->handle_protocol(image_handle, &efi_guid_loaded_image,
240 (void **)&loaded_image);
241 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtc51e7df2017-11-26 14:05:19 +0100242 efi_st_error("Cannot open loaded image protocol\n");
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200243 return ret;
244 }
245
246 if (loaded_image->load_options)
247 testname = (u16 *)loaded_image->load_options;
248
249 if (testname) {
250 if (!efi_st_strcmp_16_8(testname, "list") ||
251 !find_test(testname)) {
252 list_all_tests();
253 /*
254 * TODO:
255 * Once the Exit boottime service is correctly
256 * implemented we should call
257 * boottime->exit(image_handle, EFI_SUCCESS, 0, NULL);
258 * here, cf.
259 * https://lists.denx.de/pipermail/u-boot/2017-October/308720.html
260 */
261 return EFI_SUCCESS;
262 }
263 }
264
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100265 efi_st_printc(EFI_WHITE, "\nTesting EFI API implementation\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200266
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200267 if (testname)
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100268 efi_st_printc(EFI_WHITE, "\nSelected test: '%ps'\n", testname);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200269 else
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100270 efi_st_printc(EFI_WHITE, "\nNumber of tests to execute: %u\n",
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200271 ll_entry_count(struct efi_unit_test,
272 efi_unit_test));
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200273
274 /* Execute boottime tests */
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200275 efi_st_do_tests(testname, EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200276 EFI_ST_SETUP | EFI_ST_EXECUTE | EFI_ST_TEARDOWN,
277 &failures);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200278
279 /* Execute mixed tests */
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200280 efi_st_do_tests(testname, EFI_SETUP_BEFORE_BOOTTIME_EXIT,
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200281 EFI_ST_SETUP, &failures);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200282
283 efi_st_exit_boot_services();
284
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200285 efi_st_do_tests(testname, EFI_SETUP_BEFORE_BOOTTIME_EXIT,
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200286 EFI_ST_EXECUTE | EFI_ST_TEARDOWN, &failures);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200287
288 /* Execute runtime tests */
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200289 efi_st_do_tests(testname, EFI_SETUP_AFTER_BOOTTIME_EXIT,
Heinrich Schuchardt1f66a122017-10-18 18:13:12 +0200290 EFI_ST_SETUP | EFI_ST_EXECUTE | EFI_ST_TEARDOWN,
291 &failures);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200292
293 /* Give feedback */
Heinrich Schuchardt853540c2018-01-11 08:15:54 +0100294 efi_st_printc(EFI_WHITE, "\nSummary: %u failures\n\n", failures);
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200295
296 /* Reset system */
Simon Glass404ea592018-06-18 08:08:21 -0600297 efi_st_printf("Preparing for reset. Press any key...\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200298 efi_st_get_key();
299 runtime->reset_system(EFI_RESET_WARM, EFI_NOT_READY,
300 sizeof(reset_message), reset_message);
Heinrich Schuchardt037ee6f2017-10-04 12:37:02 +0200301 efi_st_printf("\n");
Simon Glass404ea592018-06-18 08:08:21 -0600302 efi_st_error("Reset failed\n");
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200303
304 return EFI_UNSUPPORTED;
305}