1 // SPDX-License-Identifier: GPL-2.0+
3 * Test for bootdev functions. All start with 'bootdev'
5 * Copyright 2021 Google LLC
19 #include <test/suites.h>
21 #include "bootstd_common.h"
23 static int inject_response(struct unit_test_state *uts)
26 * The image being booted presents a menu of options:
28 * Fedora-Workstation-armhfp-31-1.9 Boot Options.
29 * 1: Fedora-Workstation-armhfp-31-1.9 (5.3.7-301.fc31.armv7hl)
32 * Provide input for this, to avoid waiting two seconds for a timeout.
34 ut_asserteq(2, console_in_puts("1\n"));
39 /* Check 'bootflow scan/list' commands */
40 static int bootflow_cmd(struct unit_test_state *uts)
42 console_record_reset_enable();
43 ut_assertok(run_command("bootdev select 1", 0));
44 ut_assert_console_end();
45 ut_assertok(run_command("bootflow scan -l", 0));
46 ut_assert_nextline("Scanning for bootflows in bootdev 'mmc1.bootdev'");
47 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
48 ut_assert_nextlinen("---");
49 ut_assert_nextline(" 0 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
50 ut_assert_nextlinen("---");
51 ut_assert_nextline("(1 bootflow, 1 valid)");
52 ut_assert_console_end();
54 ut_assertok(run_command("bootflow list", 0));
55 ut_assert_nextline("Showing bootflows for bootdev 'mmc1.bootdev'");
56 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
57 ut_assert_nextlinen("---");
58 ut_assert_nextline(" 0 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
59 ut_assert_nextlinen("---");
60 ut_assert_nextline("(1 bootflow, 1 valid)");
61 ut_assert_console_end();
65 BOOTSTD_TEST(bootflow_cmd, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
67 /* Check 'bootflow scan' with a name / label / seq */
68 static int bootflow_cmd_label(struct unit_test_state *uts)
70 console_record_reset_enable();
71 ut_assertok(run_command("bootflow scan -l mmc1", 0));
72 ut_assert_nextline("Scanning for bootflows in bootdev 'mmc1.bootdev'");
73 ut_assert_skip_to_line("(1 bootflow, 1 valid)");
74 ut_assert_console_end();
76 ut_assertok(run_command("bootflow scan -l mmc0.bootdev", 0));
77 ut_assert_nextline("Scanning for bootflows in bootdev 'mmc0.bootdev'");
78 ut_assert_skip_to_line("(0 bootflows, 0 valid)");
79 ut_assert_console_end();
81 ut_assertok(run_command("bootflow scan -l 0", 0));
82 ut_assert_nextline("Scanning for bootflows in bootdev 'mmc2.bootdev'");
83 ut_assert_skip_to_line("(0 bootflows, 0 valid)");
84 ut_assert_console_end();
88 BOOTSTD_TEST(bootflow_cmd_label, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
90 /* Check 'bootflow scan/list' commands using all bootdevs */
91 static int bootflow_cmd_glob(struct unit_test_state *uts)
93 ut_assertok(bootstd_test_drop_bootdev_order(uts));
95 console_record_reset_enable();
96 ut_assertok(run_command("bootflow scan -lG", 0));
97 ut_assert_nextline("Scanning for bootflows in all bootdevs");
98 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
99 ut_assert_nextlinen("---");
100 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
101 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
102 ut_assert_nextline(" 0 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
103 ut_assert_nextline("Scanning bootdev 'mmc0.bootdev':");
104 ut_assert_nextline("No more bootdevs");
105 ut_assert_nextlinen("---");
106 ut_assert_nextline("(1 bootflow, 1 valid)");
107 ut_assert_console_end();
109 ut_assertok(run_command("bootflow list", 0));
110 ut_assert_nextline("Showing all bootflows");
111 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
112 ut_assert_nextlinen("---");
113 ut_assert_nextline(" 0 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
114 ut_assert_nextlinen("---");
115 ut_assert_nextline("(1 bootflow, 1 valid)");
116 ut_assert_console_end();
120 BOOTSTD_TEST(bootflow_cmd_glob, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
122 /* Check 'bootflow scan -e' */
123 static int bootflow_cmd_scan_e(struct unit_test_state *uts)
125 ut_assertok(bootstd_test_drop_bootdev_order(uts));
127 console_record_reset_enable();
128 ut_assertok(run_command("bootflow scan -aleG", 0));
129 ut_assert_nextline("Scanning for bootflows in all bootdevs");
130 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
131 ut_assert_nextlinen("---");
132 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
133 ut_assert_nextline(" 0 syslinux media mmc 0 mmc2.bootdev.whole <NULL>");
134 ut_assert_nextline(" ** No partition found, err=-93");
135 ut_assert_nextline(" 1 efi media mmc 0 mmc2.bootdev.whole <NULL>");
136 ut_assert_nextline(" ** No partition found, err=-93");
138 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
139 ut_assert_nextline(" 2 syslinux media mmc 0 mmc1.bootdev.whole <NULL>");
140 ut_assert_nextline(" ** No partition found, err=-2");
141 ut_assert_nextline(" 3 efi media mmc 0 mmc1.bootdev.whole <NULL>");
142 ut_assert_nextline(" ** No partition found, err=-2");
143 ut_assert_nextline(" 4 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
144 ut_assert_nextline(" 5 efi fs mmc 1 mmc1.bootdev.part_1 efi/boot/bootsbox.efi");
146 ut_assert_skip_to_line("Scanning bootdev 'mmc0.bootdev':");
147 ut_assert_skip_to_line(" 3f efi media mmc 0 mmc0.bootdev.whole <NULL>");
148 ut_assert_nextline(" ** No partition found, err=-93");
149 ut_assert_nextline("No more bootdevs");
150 ut_assert_nextlinen("---");
151 ut_assert_nextline("(64 bootflows, 1 valid)");
152 ut_assert_console_end();
154 ut_assertok(run_command("bootflow list", 0));
155 ut_assert_nextline("Showing all bootflows");
156 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
157 ut_assert_nextlinen("---");
158 ut_assert_nextline(" 0 syslinux media mmc 0 mmc2.bootdev.whole <NULL>");
159 ut_assert_nextline(" 1 efi media mmc 0 mmc2.bootdev.whole <NULL>");
160 ut_assert_skip_to_line(" 4 syslinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
161 ut_assert_skip_to_line(" 3f efi media mmc 0 mmc0.bootdev.whole <NULL>");
162 ut_assert_nextlinen("---");
163 ut_assert_nextline("(64 bootflows, 1 valid)");
164 ut_assert_console_end();
168 BOOTSTD_TEST(bootflow_cmd_scan_e, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
170 /* Check 'bootflow info' */
171 static int bootflow_cmd_info(struct unit_test_state *uts)
173 console_record_reset_enable();
174 ut_assertok(run_command("bootdev select 1", 0));
175 ut_assert_console_end();
176 ut_assertok(run_command("bootflow scan", 0));
177 ut_assert_console_end();
178 ut_assertok(run_command("bootflow select 0", 0));
179 ut_assert_console_end();
180 ut_assertok(run_command("bootflow info", 0));
181 ut_assert_nextline("Name: mmc1.bootdev.part_1");
182 ut_assert_nextline("Device: mmc1.bootdev");
183 ut_assert_nextline("Block dev: mmc1.blk");
184 ut_assert_nextline("Method: syslinux");
185 ut_assert_nextline("State: ready");
186 ut_assert_nextline("Partition: 1");
187 ut_assert_nextline("Subdir: (none)");
188 ut_assert_nextline("Filename: /extlinux/extlinux.conf");
189 ut_assert_nextlinen("Buffer: ");
190 ut_assert_nextline("Size: 253 (595 bytes)");
191 ut_assert_nextline("Error: 0");
192 ut_assert_console_end();
194 ut_assertok(run_command("bootflow info -d", 0));
195 ut_assert_nextline("Name: mmc1.bootdev.part_1");
196 ut_assert_skip_to_line("Error: 0");
197 ut_assert_nextline("Contents:");
198 ut_assert_nextline("%s", "");
199 ut_assert_nextline("# extlinux.conf generated by appliance-creator");
200 ut_assert_skip_to_line(" initrd /initramfs-5.3.7-301.fc31.armv7hl.img");
201 ut_assert_console_end();
205 BOOTSTD_TEST(bootflow_cmd_info, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
207 /* Check 'bootflow scan -b' to boot the first available bootdev */
208 static int bootflow_scan_boot(struct unit_test_state *uts)
210 console_record_reset_enable();
211 ut_assertok(inject_response(uts));
212 ut_assertok(run_command("bootflow scan -b", 0));
214 "** Booting bootflow 'mmc1.bootdev.part_1' with syslinux");
215 ut_assert_nextline("Ignoring unknown command: ui");
218 * We expect it to get through to boot although sandbox always returns
219 * -EFAULT as it cannot actually boot the kernel
221 ut_assert_skip_to_line("sandbox: continuing, as we cannot run Linux");
222 ut_assert_nextline("Boot failed (err=-14)");
223 ut_assert_console_end();
227 BOOTSTD_TEST(bootflow_scan_boot, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
229 /* Check iterating through available bootflows */
230 static int bootflow_iter(struct unit_test_state *uts)
232 struct bootflow_iter iter;
233 struct bootflow bflow;
235 bootstd_clear_glob();
237 /* The first device is mmc2.bootdev which has no media */
238 ut_asserteq(-EPROTONOSUPPORT,
239 bootflow_scan_first(&iter, BOOTFLOWF_ALL | BOOTFLOWF_SKIP_GLOBAL, &bflow));
240 ut_asserteq(2, iter.num_methods);
241 ut_asserteq(0, iter.cur_method);
242 ut_asserteq(0, iter.part);
243 ut_asserteq(0, iter.max_part);
244 ut_asserteq_str("syslinux", iter.method->name);
245 ut_asserteq(0, bflow.err);
248 * This shows MEDIA even though there is none, since in
249 * bootdev_find_in_blk() we call part_get_info() which returns
250 * -EPROTONOSUPPORT. Ideally it would return -EEOPNOTSUPP and we would
253 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
255 ut_asserteq(-EPROTONOSUPPORT, bootflow_scan_next(&iter, &bflow));
256 ut_asserteq(2, iter.num_methods);
257 ut_asserteq(1, iter.cur_method);
258 ut_asserteq(0, iter.part);
259 ut_asserteq(0, iter.max_part);
260 ut_asserteq_str("efi", iter.method->name);
261 ut_asserteq(0, bflow.err);
262 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
263 bootflow_free(&bflow);
265 /* The next device is mmc1.bootdev - at first we use the whole device */
266 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
267 ut_asserteq(2, iter.num_methods);
268 ut_asserteq(0, iter.cur_method);
269 ut_asserteq(0, iter.part);
270 ut_asserteq(0x1e, iter.max_part);
271 ut_asserteq_str("syslinux", iter.method->name);
272 ut_asserteq(0, bflow.err);
273 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
274 bootflow_free(&bflow);
276 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
277 ut_asserteq(2, iter.num_methods);
278 ut_asserteq(1, iter.cur_method);
279 ut_asserteq(0, iter.part);
280 ut_asserteq(0x1e, iter.max_part);
281 ut_asserteq_str("efi", iter.method->name);
282 ut_asserteq(0, bflow.err);
283 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
284 bootflow_free(&bflow);
286 /* Then more to partition 1 where we find something */
287 ut_assertok(bootflow_scan_next(&iter, &bflow));
288 ut_asserteq(2, iter.num_methods);
289 ut_asserteq(0, iter.cur_method);
290 ut_asserteq(1, iter.part);
291 ut_asserteq(0x1e, iter.max_part);
292 ut_asserteq_str("syslinux", iter.method->name);
293 ut_asserteq(0, bflow.err);
294 ut_asserteq(BOOTFLOWST_READY, bflow.state);
295 bootflow_free(&bflow);
297 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
298 ut_asserteq(2, iter.num_methods);
299 ut_asserteq(1, iter.cur_method);
300 ut_asserteq(1, iter.part);
301 ut_asserteq(0x1e, iter.max_part);
302 ut_asserteq_str("efi", iter.method->name);
303 ut_asserteq(0, bflow.err);
304 ut_asserteq(BOOTFLOWST_FS, bflow.state);
305 bootflow_free(&bflow);
307 /* Then more to partition 2 which doesn't exist */
308 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
309 ut_asserteq(2, iter.num_methods);
310 ut_asserteq(0, iter.cur_method);
311 ut_asserteq(2, iter.part);
312 ut_asserteq(0x1e, iter.max_part);
313 ut_asserteq_str("syslinux", iter.method->name);
314 ut_asserteq(0, bflow.err);
315 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
316 bootflow_free(&bflow);
318 bootflow_iter_uninit(&iter);
320 ut_assert_console_end();
324 BOOTSTD_TEST(bootflow_iter, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
326 #if defined(CONFIG_SANDBOX) && defined(CONFIG_BOOTMETH_GLOBAL)
327 /* Check using the system bootdev */
328 static int bootflow_system(struct unit_test_state *uts)
332 if (!IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR))
334 ut_assertok(uclass_get_device_by_name(UCLASS_BOOTMETH, "efi_mgr",
336 sandbox_set_fake_efi_mgr_dev(dev, true);
338 /* We should get a single 'bootmgr' method right at the end */
339 bootstd_clear_glob();
340 console_record_reset_enable();
341 ut_assertok(run_command("bootflow scan -l", 0));
342 ut_assert_skip_to_line(
343 " 0 efi_mgr ready (none) 0 <NULL> <NULL>");
344 ut_assert_skip_to_line("No more bootdevs");
345 ut_assert_skip_to_line("(5 bootflows, 5 valid)");
346 ut_assert_console_end();
350 BOOTSTD_TEST(bootflow_system, UT_TESTF_DM | UT_TESTF_SCAN_PDATA |
354 /* Check disabling a bootmethod if it requests it */
355 static int bootflow_iter_disable(struct unit_test_state *uts)
357 struct udevice *bootstd, *dev;
358 struct bootflow_iter iter;
359 struct bootflow bflow;
362 /* Add the EFI bootmgr driver */
363 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
364 ut_assertok(device_bind_driver(bootstd, "bootmeth_sandbox", "sandbox",
367 ut_assertok(bootstd_test_drop_bootdev_order(uts));
369 bootstd_clear_glob();
370 console_record_reset_enable();
371 ut_assertok(inject_response(uts));
372 ut_assertok(run_command("bootflow scan -lb", 0));
374 /* Try to boot the bootmgr flow, which will fail */
375 console_record_reset_enable();
376 ut_assertok(bootflow_scan_first(&iter, 0, &bflow));
377 ut_asserteq(3, iter.num_methods);
378 ut_asserteq_str("sandbox", iter.method->name);
379 ut_assertok(inject_response(uts));
380 ut_asserteq(-ENOTSUPP, bootflow_run_boot(&iter, &bflow));
382 ut_assert_skip_to_line("Boot method 'sandbox' failed and will not be retried");
383 ut_assert_console_end();
385 /* Check that the sandbox bootmeth has been removed */
386 ut_asserteq(2, iter.num_methods);
387 for (i = 0; i < iter.num_methods; i++)
388 ut_assert(strcmp("sandbox", iter.method_order[i]->name));
392 BOOTSTD_TEST(bootflow_iter_disable, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
394 /* Check 'bootflow scan' with a bootmeth ordering including a global bootmeth */
395 static int bootflow_scan_glob_bootmeth(struct unit_test_state *uts)
397 if (!IS_ENABLED(CONFIG_BOOTMETH_GLOBAL))
400 ut_assertok(bootstd_test_drop_bootdev_order(uts));
403 * Make sure that the -G flag makes the scan fail, since this is not
404 * supported when an ordering is provided
406 console_record_reset_enable();
407 ut_assertok(bootmeth_set_order("efi firmware0"));
408 ut_assertok(run_command("bootflow scan -lG", 0));
409 ut_assert_nextline("Scanning for bootflows in all bootdevs");
411 "Seq Method State Uclass Part Name Filename");
412 ut_assert_nextlinen("---");
413 ut_assert_nextlinen("---");
414 ut_assert_nextline("(0 bootflows, 0 valid)");
415 ut_assert_console_end();
417 ut_assertok(run_command("bootflow scan -l", 0));
418 ut_assert_nextline("Scanning for bootflows in all bootdevs");
420 "Seq Method State Uclass Part Name Filename");
421 ut_assert_nextlinen("---");
422 ut_assert_nextline("Scanning global bootmeth 'firmware0':");
423 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
424 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
425 ut_assert_nextline("Scanning bootdev 'mmc0.bootdev':");
426 ut_assert_nextline("No more bootdevs");
427 ut_assert_nextlinen("---");
428 ut_assert_nextline("(0 bootflows, 0 valid)");
429 ut_assert_console_end();
433 BOOTSTD_TEST(bootflow_scan_glob_bootmeth, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
435 /* Check 'bootflow boot' to boot a selected bootflow */
436 static int bootflow_cmd_boot(struct unit_test_state *uts)
438 console_record_reset_enable();
439 ut_assertok(run_command("bootdev select 1", 0));
440 ut_assert_console_end();
441 ut_assertok(run_command("bootflow scan", 0));
442 ut_assert_console_end();
443 ut_assertok(run_command("bootflow select 0", 0));
444 ut_assert_console_end();
446 ut_assertok(inject_response(uts));
447 ut_asserteq(1, run_command("bootflow boot", 0));
449 "** Booting bootflow 'mmc1.bootdev.part_1' with syslinux");
450 ut_assert_nextline("Ignoring unknown command: ui");
453 * We expect it to get through to boot although sandbox always returns
454 * -EFAULT as it cannot actually boot the kernel
456 ut_assert_skip_to_line("sandbox: continuing, as we cannot run Linux");
457 ut_assert_nextline("Boot failed (err=-14)");
458 ut_assert_console_end();
462 BOOTSTD_TEST(bootflow_cmd_boot, UT_TESTF_DM | UT_TESTF_SCAN_FDT);