blob: 104f49deef2af577f9a63c87c14ba35cc508bcb3 [file] [log] [blame]
Simon Glassfb1451b2022-04-24 23:31:24 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Test for bootdev functions. All start with 'bootdev'
4 *
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#include <common.h>
10#include <bootdev.h>
11#include <bootflow.h>
Simon Glass0917f772022-07-30 15:52:34 -060012#include <bootmeth.h>
Simon Glassfb1451b2022-04-24 23:31:24 -060013#include <bootstd.h>
Simon Glassd985f1d2023-01-06 08:52:41 -060014#include <cli.h>
Simon Glassfb1451b2022-04-24 23:31:24 -060015#include <dm.h>
Simon Glasse64c2952023-01-06 08:52:42 -060016#include <expo.h>
Simon Glass11361c52022-07-30 15:52:36 -060017#ifdef CONFIG_SANDBOX
Simon Glass2662b542022-07-30 15:52:22 -060018#include <asm/test.h>
Simon Glass11361c52022-07-30 15:52:36 -060019#endif
Simon Glassd985f1d2023-01-06 08:52:41 -060020#include <dm/device-internal.h>
Simon Glassfb1451b2022-04-24 23:31:24 -060021#include <dm/lists.h>
22#include <test/suites.h>
23#include <test/ut.h>
24#include "bootstd_common.h"
Simon Glasse64c2952023-01-06 08:52:42 -060025#include "../../boot/bootflow_internal.h"
26#include "../../boot/scene_internal.h"
Simon Glassfb1451b2022-04-24 23:31:24 -060027
Simon Glassd985f1d2023-01-06 08:52:41 -060028DECLARE_GLOBAL_DATA_PTR;
29
Simon Glassd08db022023-08-24 13:55:41 -060030extern U_BOOT_DRIVER(bootmeth_cros);
Simon Glass5986d462023-08-19 16:49:35 -060031extern U_BOOT_DRIVER(bootmeth_2script);
Simon Glassd985f1d2023-01-06 08:52:41 -060032
Simon Glassf25f5752022-07-30 15:52:16 -060033static int inject_response(struct unit_test_state *uts)
34{
35 /*
36 * The image being booted presents a menu of options:
37 *
38 * Fedora-Workstation-armhfp-31-1.9 Boot Options.
39 * 1: Fedora-Workstation-armhfp-31-1.9 (5.3.7-301.fc31.armv7hl)
40 * Enter choice:
41 *
42 * Provide input for this, to avoid waiting two seconds for a timeout.
43 */
44 ut_asserteq(2, console_in_puts("1\n"));
45
46 return 0;
47}
48
Simon Glassfb1451b2022-04-24 23:31:24 -060049/* Check 'bootflow scan/list' commands */
50static int bootflow_cmd(struct unit_test_state *uts)
51{
52 console_record_reset_enable();
53 ut_assertok(run_command("bootdev select 1", 0));
54 ut_assert_console_end();
Simon Glass18552d22023-01-17 10:48:13 -070055 ut_assertok(run_command("bootflow scan -lH", 0));
Simon Glassfb1451b2022-04-24 23:31:24 -060056 ut_assert_nextline("Scanning for bootflows in bootdev 'mmc1.bootdev'");
57 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
58 ut_assert_nextlinen("---");
Simon Glass47aedc22023-01-17 10:48:14 -070059 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
60 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
Simon Glass79f66352023-05-10 16:34:46 -060061 ut_assert_nextline(" 0 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glass47aedc22023-01-17 10:48:14 -070062 ut_assert_nextline("No more bootdevs");
Simon Glassfb1451b2022-04-24 23:31:24 -060063 ut_assert_nextlinen("---");
64 ut_assert_nextline("(1 bootflow, 1 valid)");
65 ut_assert_console_end();
66
67 ut_assertok(run_command("bootflow list", 0));
68 ut_assert_nextline("Showing bootflows for bootdev 'mmc1.bootdev'");
69 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
70 ut_assert_nextlinen("---");
Simon Glass79f66352023-05-10 16:34:46 -060071 ut_assert_nextline(" 0 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glassfb1451b2022-04-24 23:31:24 -060072 ut_assert_nextlinen("---");
73 ut_assert_nextline("(1 bootflow, 1 valid)");
74 ut_assert_console_end();
75
76 return 0;
77}
78BOOTSTD_TEST(bootflow_cmd, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
79
Simon Glass47aedc22023-01-17 10:48:14 -070080/* Check 'bootflow scan' with a label / seq */
Simon Glassfb1451b2022-04-24 23:31:24 -060081static int bootflow_cmd_label(struct unit_test_state *uts)
82{
Simon Glass47aedc22023-01-17 10:48:14 -070083 test_set_eth_enable(false);
84
Simon Glassfb1451b2022-04-24 23:31:24 -060085 console_record_reset_enable();
Simon Glass18552d22023-01-17 10:48:13 -070086 ut_assertok(run_command("bootflow scan -lH mmc1", 0));
Simon Glass47aedc22023-01-17 10:48:14 -070087 ut_assert_nextline("Scanning for bootflows with label 'mmc1'");
Simon Glassfb1451b2022-04-24 23:31:24 -060088 ut_assert_skip_to_line("(1 bootflow, 1 valid)");
89 ut_assert_console_end();
90
Simon Glass47aedc22023-01-17 10:48:14 -070091 ut_assertok(run_command("bootflow scan -lH 0", 0));
92 ut_assert_nextline("Scanning for bootflows with label '0'");
Simon Glassfb1451b2022-04-24 23:31:24 -060093 ut_assert_skip_to_line("(0 bootflows, 0 valid)");
94 ut_assert_console_end();
95
Simon Glass47aedc22023-01-17 10:48:14 -070096 /*
97 * with ethernet enabled we have 8 devices ahead of the mmc ones:
98 *
99 * ut_assertok(run_command("bootdev list", 0));
100 * Seq Probed Status Uclass Name
101 * --- ------ ------ -------- ------------------
102 * 0 [ + ] OK ethernet eth@10002000.bootdev
103 * 1 [ ] OK ethernet eth@10003000.bootdev
104 * 2 [ ] OK ethernet sbe5.bootdev
105 * 3 [ ] OK ethernet eth@10004000.bootdev
106 * 4 [ ] OK ethernet phy-test-eth.bootdev
107 * 5 [ ] OK ethernet dsa-test-eth.bootdev
108 * 6 [ ] OK ethernet dsa-test@0.bootdev
109 * 7 [ ] OK ethernet dsa-test@1.bootdev
110 * 8 [ ] OK mmc mmc2.bootdev
111 * 9 [ + ] OK mmc mmc1.bootdev
112 * a [ ] OK mmc mmc0.bootdev
113 */
114 ut_assertok(run_command("bootflow scan -lH 9", 0));
115 ut_assert_nextline("Scanning for bootflows with label '9'");
116 ut_assert_skip_to_line("(1 bootflow, 1 valid)");
117
Simon Glass18552d22023-01-17 10:48:13 -0700118 ut_assertok(run_command("bootflow scan -lH 0", 0));
Simon Glass47aedc22023-01-17 10:48:14 -0700119 ut_assert_nextline("Scanning for bootflows with label '0'");
Simon Glassfb1451b2022-04-24 23:31:24 -0600120 ut_assert_skip_to_line("(0 bootflows, 0 valid)");
121 ut_assert_console_end();
122
123 return 0;
124}
Simon Glass47aedc22023-01-17 10:48:14 -0700125BOOTSTD_TEST(bootflow_cmd_label, UT_TESTF_DM | UT_TESTF_SCAN_FDT |
126 UT_TESTF_ETH_BOOTDEV);
Simon Glassfb1451b2022-04-24 23:31:24 -0600127
128/* Check 'bootflow scan/list' commands using all bootdevs */
129static int bootflow_cmd_glob(struct unit_test_state *uts)
130{
131 ut_assertok(bootstd_test_drop_bootdev_order(uts));
132
133 console_record_reset_enable();
Simon Glass18552d22023-01-17 10:48:13 -0700134 ut_assertok(run_command("bootflow scan -lGH", 0));
Simon Glassfb1451b2022-04-24 23:31:24 -0600135 ut_assert_nextline("Scanning for bootflows in all bootdevs");
136 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
137 ut_assert_nextlinen("---");
138 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
139 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
Simon Glass79f66352023-05-10 16:34:46 -0600140 ut_assert_nextline(" 0 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glassfb1451b2022-04-24 23:31:24 -0600141 ut_assert_nextline("Scanning bootdev 'mmc0.bootdev':");
142 ut_assert_nextline("No more bootdevs");
143 ut_assert_nextlinen("---");
144 ut_assert_nextline("(1 bootflow, 1 valid)");
145 ut_assert_console_end();
146
147 ut_assertok(run_command("bootflow list", 0));
148 ut_assert_nextline("Showing all bootflows");
149 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
150 ut_assert_nextlinen("---");
Simon Glass79f66352023-05-10 16:34:46 -0600151 ut_assert_nextline(" 0 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glassfb1451b2022-04-24 23:31:24 -0600152 ut_assert_nextlinen("---");
153 ut_assert_nextline("(1 bootflow, 1 valid)");
154 ut_assert_console_end();
155
156 return 0;
157}
158BOOTSTD_TEST(bootflow_cmd_glob, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
159
160/* Check 'bootflow scan -e' */
161static int bootflow_cmd_scan_e(struct unit_test_state *uts)
162{
163 ut_assertok(bootstd_test_drop_bootdev_order(uts));
164
165 console_record_reset_enable();
Simon Glass18552d22023-01-17 10:48:13 -0700166 ut_assertok(run_command("bootflow scan -aleGH", 0));
Simon Glassfb1451b2022-04-24 23:31:24 -0600167 ut_assert_nextline("Scanning for bootflows in all bootdevs");
168 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
169 ut_assert_nextlinen("---");
170 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
Simon Glassc3867e22023-08-24 13:55:39 -0600171 ut_assert_nextline(" 0 extlinux media mmc 0 mmc2.bootdev.whole ");
Simon Glassc8894342023-05-10 16:34:26 -0600172 ut_assert_nextline(" ** No partition found, err=-93: Protocol not supported");
Simon Glassc3867e22023-08-24 13:55:39 -0600173 ut_assert_nextline(" 1 efi media mmc 0 mmc2.bootdev.whole ");
Simon Glassc8894342023-05-10 16:34:26 -0600174 ut_assert_nextline(" ** No partition found, err=-93: Protocol not supported");
Simon Glassfb1451b2022-04-24 23:31:24 -0600175
176 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
Simon Glassc3867e22023-08-24 13:55:39 -0600177 ut_assert_nextline(" 2 extlinux media mmc 0 mmc1.bootdev.whole ");
Simon Glassc8894342023-05-10 16:34:26 -0600178 ut_assert_nextline(" ** No partition found, err=-2: No such file or directory");
Simon Glassc3867e22023-08-24 13:55:39 -0600179 ut_assert_nextline(" 3 efi media mmc 0 mmc1.bootdev.whole ");
Simon Glassc8894342023-05-10 16:34:26 -0600180 ut_assert_nextline(" ** No partition found, err=-2: No such file or directory");
Simon Glass79f66352023-05-10 16:34:46 -0600181 ut_assert_nextline(" 4 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glassfb1451b2022-04-24 23:31:24 -0600182 ut_assert_nextline(" 5 efi fs mmc 1 mmc1.bootdev.part_1 efi/boot/bootsbox.efi");
183
184 ut_assert_skip_to_line("Scanning bootdev 'mmc0.bootdev':");
Simon Glassc3867e22023-08-24 13:55:39 -0600185 ut_assert_skip_to_line(
186 " 3f efi media mmc 0 mmc0.bootdev.whole ");
Simon Glassc8894342023-05-10 16:34:26 -0600187 ut_assert_nextline(" ** No partition found, err=-93: Protocol not supported");
Simon Glassfb1451b2022-04-24 23:31:24 -0600188 ut_assert_nextline("No more bootdevs");
189 ut_assert_nextlinen("---");
190 ut_assert_nextline("(64 bootflows, 1 valid)");
191 ut_assert_console_end();
192
193 ut_assertok(run_command("bootflow list", 0));
194 ut_assert_nextline("Showing all bootflows");
195 ut_assert_nextline("Seq Method State Uclass Part Name Filename");
196 ut_assert_nextlinen("---");
Simon Glassc3867e22023-08-24 13:55:39 -0600197 ut_assert_nextline(" 0 extlinux media mmc 0 mmc2.bootdev.whole ");
198 ut_assert_nextline(" 1 efi media mmc 0 mmc2.bootdev.whole ");
199 ut_assert_skip_to_line(
200 " 4 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
201 ut_assert_skip_to_line(" 3f efi media mmc 0 mmc0.bootdev.whole ");
Simon Glassfb1451b2022-04-24 23:31:24 -0600202 ut_assert_nextlinen("---");
203 ut_assert_nextline("(64 bootflows, 1 valid)");
204 ut_assert_console_end();
205
206 return 0;
207}
208BOOTSTD_TEST(bootflow_cmd_scan_e, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
209
210/* Check 'bootflow info' */
211static int bootflow_cmd_info(struct unit_test_state *uts)
212{
213 console_record_reset_enable();
214 ut_assertok(run_command("bootdev select 1", 0));
215 ut_assert_console_end();
216 ut_assertok(run_command("bootflow scan", 0));
217 ut_assert_console_end();
218 ut_assertok(run_command("bootflow select 0", 0));
219 ut_assert_console_end();
220 ut_assertok(run_command("bootflow info", 0));
221 ut_assert_nextline("Name: mmc1.bootdev.part_1");
222 ut_assert_nextline("Device: mmc1.bootdev");
223 ut_assert_nextline("Block dev: mmc1.blk");
Simon Glass79f66352023-05-10 16:34:46 -0600224 ut_assert_nextline("Method: extlinux");
Simon Glassfb1451b2022-04-24 23:31:24 -0600225 ut_assert_nextline("State: ready");
226 ut_assert_nextline("Partition: 1");
227 ut_assert_nextline("Subdir: (none)");
228 ut_assert_nextline("Filename: /extlinux/extlinux.conf");
229 ut_assert_nextlinen("Buffer: ");
230 ut_assert_nextline("Size: 253 (595 bytes)");
Simon Glass2175e762023-01-06 08:52:33 -0600231 ut_assert_nextline("OS: Fedora-Workstation-armhfp-31-1.9 (5.3.7-301.fc31.armv7hl)");
Simon Glassf4a91652023-07-12 09:04:34 -0600232 ut_assert_nextline("Cmdline: (none)");
Simon Glass24d8e1b2023-01-06 08:52:34 -0600233 ut_assert_nextline("Logo: (none)");
Simon Glass7638c852023-01-17 10:47:56 -0700234 ut_assert_nextline("FDT: <NULL>");
Simon Glassfb1451b2022-04-24 23:31:24 -0600235 ut_assert_nextline("Error: 0");
236 ut_assert_console_end();
237
238 ut_assertok(run_command("bootflow info -d", 0));
239 ut_assert_nextline("Name: mmc1.bootdev.part_1");
240 ut_assert_skip_to_line("Error: 0");
241 ut_assert_nextline("Contents:");
242 ut_assert_nextline("%s", "");
243 ut_assert_nextline("# extlinux.conf generated by appliance-creator");
244 ut_assert_skip_to_line(" initrd /initramfs-5.3.7-301.fc31.armv7hl.img");
245 ut_assert_console_end();
246
247 return 0;
248}
249BOOTSTD_TEST(bootflow_cmd_info, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
250
251/* Check 'bootflow scan -b' to boot the first available bootdev */
252static int bootflow_scan_boot(struct unit_test_state *uts)
253{
254 console_record_reset_enable();
Simon Glassf25f5752022-07-30 15:52:16 -0600255 ut_assertok(inject_response(uts));
Simon Glassfb1451b2022-04-24 23:31:24 -0600256 ut_assertok(run_command("bootflow scan -b", 0));
257 ut_assert_nextline(
Simon Glass79f66352023-05-10 16:34:46 -0600258 "** Booting bootflow 'mmc1.bootdev.part_1' with extlinux");
Simon Glassfb1451b2022-04-24 23:31:24 -0600259 ut_assert_nextline("Ignoring unknown command: ui");
260
261 /*
262 * We expect it to get through to boot although sandbox always returns
263 * -EFAULT as it cannot actually boot the kernel
264 */
265 ut_assert_skip_to_line("sandbox: continuing, as we cannot run Linux");
266 ut_assert_nextline("Boot failed (err=-14)");
267 ut_assert_console_end();
268
269 return 0;
270}
271BOOTSTD_TEST(bootflow_scan_boot, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
272
273/* Check iterating through available bootflows */
274static int bootflow_iter(struct unit_test_state *uts)
275{
276 struct bootflow_iter iter;
277 struct bootflow bflow;
278
279 bootstd_clear_glob();
280
281 /* The first device is mmc2.bootdev which has no media */
282 ut_asserteq(-EPROTONOSUPPORT,
Simon Glass4b7cb052023-01-17 10:48:16 -0700283 bootflow_scan_first(NULL, NULL, &iter,
Simon Glass4f806f32023-02-22 12:17:03 -0700284 BOOTFLOWIF_ALL | BOOTFLOWIF_SKIP_GLOBAL, &bflow));
Simon Glassfb1451b2022-04-24 23:31:24 -0600285 ut_asserteq(2, iter.num_methods);
286 ut_asserteq(0, iter.cur_method);
287 ut_asserteq(0, iter.part);
288 ut_asserteq(0, iter.max_part);
Simon Glass79f66352023-05-10 16:34:46 -0600289 ut_asserteq_str("extlinux", iter.method->name);
Simon Glassfb1451b2022-04-24 23:31:24 -0600290 ut_asserteq(0, bflow.err);
291
292 /*
Simon Glass0917f772022-07-30 15:52:34 -0600293 * This shows MEDIA even though there is none, since in
Simon Glassfb1451b2022-04-24 23:31:24 -0600294 * bootdev_find_in_blk() we call part_get_info() which returns
295 * -EPROTONOSUPPORT. Ideally it would return -EEOPNOTSUPP and we would
296 * know.
297 */
298 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
299
300 ut_asserteq(-EPROTONOSUPPORT, bootflow_scan_next(&iter, &bflow));
301 ut_asserteq(2, iter.num_methods);
302 ut_asserteq(1, iter.cur_method);
303 ut_asserteq(0, iter.part);
304 ut_asserteq(0, iter.max_part);
305 ut_asserteq_str("efi", iter.method->name);
306 ut_asserteq(0, bflow.err);
307 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
308 bootflow_free(&bflow);
309
310 /* The next device is mmc1.bootdev - at first we use the whole device */
311 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
312 ut_asserteq(2, iter.num_methods);
313 ut_asserteq(0, iter.cur_method);
314 ut_asserteq(0, iter.part);
315 ut_asserteq(0x1e, iter.max_part);
Simon Glass79f66352023-05-10 16:34:46 -0600316 ut_asserteq_str("extlinux", iter.method->name);
Simon Glassfb1451b2022-04-24 23:31:24 -0600317 ut_asserteq(0, bflow.err);
318 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
319 bootflow_free(&bflow);
320
321 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
322 ut_asserteq(2, iter.num_methods);
323 ut_asserteq(1, iter.cur_method);
324 ut_asserteq(0, iter.part);
325 ut_asserteq(0x1e, iter.max_part);
326 ut_asserteq_str("efi", iter.method->name);
327 ut_asserteq(0, bflow.err);
328 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
329 bootflow_free(&bflow);
330
331 /* Then more to partition 1 where we find something */
332 ut_assertok(bootflow_scan_next(&iter, &bflow));
333 ut_asserteq(2, iter.num_methods);
334 ut_asserteq(0, iter.cur_method);
335 ut_asserteq(1, iter.part);
336 ut_asserteq(0x1e, iter.max_part);
Simon Glass79f66352023-05-10 16:34:46 -0600337 ut_asserteq_str("extlinux", iter.method->name);
Simon Glassfb1451b2022-04-24 23:31:24 -0600338 ut_asserteq(0, bflow.err);
339 ut_asserteq(BOOTFLOWST_READY, bflow.state);
340 bootflow_free(&bflow);
341
342 ut_asserteq(-ENOENT, bootflow_scan_next(&iter, &bflow));
343 ut_asserteq(2, iter.num_methods);
344 ut_asserteq(1, iter.cur_method);
345 ut_asserteq(1, iter.part);
346 ut_asserteq(0x1e, iter.max_part);
347 ut_asserteq_str("efi", iter.method->name);
348 ut_asserteq(0, bflow.err);
349 ut_asserteq(BOOTFLOWST_FS, bflow.state);
350 bootflow_free(&bflow);
351
Simon Glassdcffa442023-01-17 10:47:41 -0700352 /* Then more to partition 2 which exists but is not bootable */
Simon Glassf0e358f2023-01-17 10:47:42 -0700353 ut_asserteq(-EINVAL, bootflow_scan_next(&iter, &bflow));
Simon Glassfb1451b2022-04-24 23:31:24 -0600354 ut_asserteq(2, iter.num_methods);
355 ut_asserteq(0, iter.cur_method);
356 ut_asserteq(2, iter.part);
357 ut_asserteq(0x1e, iter.max_part);
Simon Glass79f66352023-05-10 16:34:46 -0600358 ut_asserteq_str("extlinux", iter.method->name);
Simon Glassfb1451b2022-04-24 23:31:24 -0600359 ut_asserteq(0, bflow.err);
Simon Glassf0e358f2023-01-17 10:47:42 -0700360 ut_asserteq(BOOTFLOWST_MEDIA, bflow.state);
Simon Glassfb1451b2022-04-24 23:31:24 -0600361 bootflow_free(&bflow);
362
363 bootflow_iter_uninit(&iter);
364
365 ut_assert_console_end();
366
367 return 0;
368}
369BOOTSTD_TEST(bootflow_iter, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
370
Simon Glass11361c52022-07-30 15:52:36 -0600371#if defined(CONFIG_SANDBOX) && defined(CONFIG_BOOTMETH_GLOBAL)
Simon Glassfb1451b2022-04-24 23:31:24 -0600372/* Check using the system bootdev */
373static int bootflow_system(struct unit_test_state *uts)
374{
Simon Glassecb274c2023-01-17 10:47:23 -0700375 struct udevice *bootstd, *dev;
Simon Glassfb1451b2022-04-24 23:31:24 -0600376
AKASHI Takahiro7017fc52023-11-21 10:29:46 +0900377 if (!IS_ENABLED(CONFIG_BOOTEFI_BOOTMGR))
Simon Glassc43635b2022-10-20 18:22:49 -0600378 return -EAGAIN;
Simon Glassecb274c2023-01-17 10:47:23 -0700379 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
380 ut_assertok(device_bind(bootstd, DM_DRIVER_GET(bootmeth_efi_mgr),
381 "efi_mgr", 0, ofnode_null(), &dev));
382 ut_assertok(device_probe(dev));
Simon Glass2662b542022-07-30 15:52:22 -0600383 sandbox_set_fake_efi_mgr_dev(dev, true);
Simon Glassfb1451b2022-04-24 23:31:24 -0600384
Simon Glassfb1451b2022-04-24 23:31:24 -0600385 /* We should get a single 'bootmgr' method right at the end */
386 bootstd_clear_glob();
387 console_record_reset_enable();
Simon Glass18552d22023-01-17 10:48:13 -0700388 ut_assertok(run_command("bootflow scan -lH", 0));
Simon Glassc627cfc2022-07-30 15:52:27 -0600389 ut_assert_skip_to_line(
Simon Glassc3867e22023-08-24 13:55:39 -0600390 " 0 efi_mgr ready (none) 0 <NULL> ");
Simon Glassc627cfc2022-07-30 15:52:27 -0600391 ut_assert_skip_to_line("No more bootdevs");
Simon Glassecb274c2023-01-17 10:47:23 -0700392 ut_assert_skip_to_line("(2 bootflows, 2 valid)");
Simon Glassfb1451b2022-04-24 23:31:24 -0600393 ut_assert_console_end();
394
395 return 0;
396}
Simon Glassbd18b692022-07-30 15:52:28 -0600397BOOTSTD_TEST(bootflow_system, UT_TESTF_DM | UT_TESTF_SCAN_PDATA |
398 UT_TESTF_SCAN_FDT);
Simon Glass11361c52022-07-30 15:52:36 -0600399#endif
Simon Glassfb1451b2022-04-24 23:31:24 -0600400
401/* Check disabling a bootmethod if it requests it */
402static int bootflow_iter_disable(struct unit_test_state *uts)
403{
404 struct udevice *bootstd, *dev;
405 struct bootflow_iter iter;
406 struct bootflow bflow;
407 int i;
408
409 /* Add the EFI bootmgr driver */
410 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
411 ut_assertok(device_bind_driver(bootstd, "bootmeth_sandbox", "sandbox",
412 &dev));
413
Simon Glassfb1451b2022-04-24 23:31:24 -0600414 ut_assertok(bootstd_test_drop_bootdev_order(uts));
415
416 bootstd_clear_glob();
Simon Glassf25f5752022-07-30 15:52:16 -0600417 console_record_reset_enable();
418 ut_assertok(inject_response(uts));
Simon Glass18552d22023-01-17 10:48:13 -0700419 ut_assertok(run_command("bootflow scan -lbH", 0));
Simon Glassfb1451b2022-04-24 23:31:24 -0600420
421 /* Try to boot the bootmgr flow, which will fail */
422 console_record_reset_enable();
Simon Glass4b7cb052023-01-17 10:48:16 -0700423 ut_assertok(bootflow_scan_first(NULL, NULL, &iter, 0, &bflow));
Simon Glassfb1451b2022-04-24 23:31:24 -0600424 ut_asserteq(3, iter.num_methods);
425 ut_asserteq_str("sandbox", iter.method->name);
Simon Glassf25f5752022-07-30 15:52:16 -0600426 ut_assertok(inject_response(uts));
Simon Glassfb1451b2022-04-24 23:31:24 -0600427 ut_asserteq(-ENOTSUPP, bootflow_run_boot(&iter, &bflow));
428
429 ut_assert_skip_to_line("Boot method 'sandbox' failed and will not be retried");
430 ut_assert_console_end();
431
432 /* Check that the sandbox bootmeth has been removed */
433 ut_asserteq(2, iter.num_methods);
434 for (i = 0; i < iter.num_methods; i++)
435 ut_assert(strcmp("sandbox", iter.method_order[i]->name));
436
437 return 0;
438}
439BOOTSTD_TEST(bootflow_iter_disable, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
440
Simon Glass0917f772022-07-30 15:52:34 -0600441/* Check 'bootflow scan' with a bootmeth ordering including a global bootmeth */
442static int bootflow_scan_glob_bootmeth(struct unit_test_state *uts)
443{
Simon Glass11361c52022-07-30 15:52:36 -0600444 if (!IS_ENABLED(CONFIG_BOOTMETH_GLOBAL))
Simon Glassc43635b2022-10-20 18:22:49 -0600445 return -EAGAIN;
Simon Glass11361c52022-07-30 15:52:36 -0600446
Simon Glass0917f772022-07-30 15:52:34 -0600447 ut_assertok(bootstd_test_drop_bootdev_order(uts));
448
449 /*
450 * Make sure that the -G flag makes the scan fail, since this is not
451 * supported when an ordering is provided
452 */
453 console_record_reset_enable();
454 ut_assertok(bootmeth_set_order("efi firmware0"));
Simon Glass18552d22023-01-17 10:48:13 -0700455 ut_assertok(run_command("bootflow scan -lGH", 0));
Simon Glass0917f772022-07-30 15:52:34 -0600456 ut_assert_nextline("Scanning for bootflows in all bootdevs");
457 ut_assert_nextline(
458 "Seq Method State Uclass Part Name Filename");
459 ut_assert_nextlinen("---");
460 ut_assert_nextlinen("---");
461 ut_assert_nextline("(0 bootflows, 0 valid)");
462 ut_assert_console_end();
463
Simon Glass18552d22023-01-17 10:48:13 -0700464 ut_assertok(run_command("bootflow scan -lH", 0));
Simon Glass0917f772022-07-30 15:52:34 -0600465 ut_assert_nextline("Scanning for bootflows in all bootdevs");
466 ut_assert_nextline(
467 "Seq Method State Uclass Part Name Filename");
468 ut_assert_nextlinen("---");
469 ut_assert_nextline("Scanning global bootmeth 'firmware0':");
470 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
471 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
472 ut_assert_nextline("Scanning bootdev 'mmc0.bootdev':");
473 ut_assert_nextline("No more bootdevs");
474 ut_assert_nextlinen("---");
475 ut_assert_nextline("(0 bootflows, 0 valid)");
476 ut_assert_console_end();
477
478 return 0;
479}
480BOOTSTD_TEST(bootflow_scan_glob_bootmeth, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
481
Simon Glassfb1451b2022-04-24 23:31:24 -0600482/* Check 'bootflow boot' to boot a selected bootflow */
483static int bootflow_cmd_boot(struct unit_test_state *uts)
484{
485 console_record_reset_enable();
486 ut_assertok(run_command("bootdev select 1", 0));
487 ut_assert_console_end();
488 ut_assertok(run_command("bootflow scan", 0));
489 ut_assert_console_end();
490 ut_assertok(run_command("bootflow select 0", 0));
491 ut_assert_console_end();
Simon Glassf25f5752022-07-30 15:52:16 -0600492
493 ut_assertok(inject_response(uts));
Simon Glassfb1451b2022-04-24 23:31:24 -0600494 ut_asserteq(1, run_command("bootflow boot", 0));
495 ut_assert_nextline(
Simon Glass79f66352023-05-10 16:34:46 -0600496 "** Booting bootflow 'mmc1.bootdev.part_1' with extlinux");
Simon Glassfb1451b2022-04-24 23:31:24 -0600497 ut_assert_nextline("Ignoring unknown command: ui");
498
499 /*
500 * We expect it to get through to boot although sandbox always returns
501 * -EFAULT as it cannot actually boot the kernel
502 */
503 ut_assert_skip_to_line("sandbox: continuing, as we cannot run Linux");
504 ut_assert_nextline("Boot failed (err=-14)");
505 ut_assert_console_end();
506
507 return 0;
508}
509BOOTSTD_TEST(bootflow_cmd_boot, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
Simon Glassd985f1d2023-01-06 08:52:41 -0600510
Simon Glasse64c2952023-01-06 08:52:42 -0600511/**
Simon Glass2b9adca2023-08-24 13:55:40 -0600512 * prep_mmc_bootdev() - Set up an mmc bootdev so we can access other distros
Simon Glasse64c2952023-01-06 08:52:42 -0600513 *
Simon Glassbaea7ec2023-10-01 19:14:37 -0600514 * After calling this function, set std->bootdev_order to *@old_orderp to
515 * restore normal operation of bootstd (i.e. with the original bootdev order)
516 *
Simon Glasse64c2952023-01-06 08:52:42 -0600517 * @uts: Unit test state
Simon Glassbaea7ec2023-10-01 19:14:37 -0600518 * @mmc_dev: MMC device to use, e.g. "mmc4". Note that this must remain valid
519 * in the caller until
520 * @bind_cros: true to bind the ChromiumOS bootmeth
521 * @old_orderp: Returns the original bootdev order, which must be restored
Simon Glasse64c2952023-01-06 08:52:42 -0600522 * Returns 0 on success, -ve on failure
523 */
Simon Glassd08db022023-08-24 13:55:41 -0600524static int prep_mmc_bootdev(struct unit_test_state *uts, const char *mmc_dev,
Simon Glassbaea7ec2023-10-01 19:14:37 -0600525 bool bind_cros, const char ***old_orderp)
Simon Glassd985f1d2023-01-06 08:52:41 -0600526{
Simon Glassbaea7ec2023-10-01 19:14:37 -0600527 static const char *order[] = {"mmc2", "mmc1", NULL, NULL};
Simon Glassd985f1d2023-01-06 08:52:41 -0600528 struct udevice *dev, *bootstd;
529 struct bootstd_priv *std;
530 const char **old_order;
Simon Glass2b9adca2023-08-24 13:55:40 -0600531 ofnode root, node;
Simon Glassd985f1d2023-01-06 08:52:41 -0600532
Simon Glassbaea7ec2023-10-01 19:14:37 -0600533 order[2] = mmc_dev;
534
Simon Glassd985f1d2023-01-06 08:52:41 -0600535 /* Enable the mmc4 node since we need a second bootflow */
Simon Glass2b9adca2023-08-24 13:55:40 -0600536 root = oftree_root(oftree_default());
537 node = ofnode_find_subnode(root, mmc_dev);
538 ut_assert(ofnode_valid(node));
Simon Glassd985f1d2023-01-06 08:52:41 -0600539 ut_assertok(lists_bind_fdt(gd->dm_root, node, &dev, NULL, false));
540
541 /* Enable the script bootmeth too */
542 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
Simon Glass5986d462023-08-19 16:49:35 -0600543 ut_assertok(device_bind(bootstd, DM_DRIVER_REF(bootmeth_2script),
Simon Glassd985f1d2023-01-06 08:52:41 -0600544 "bootmeth_script", 0, ofnode_null(), &dev));
545
Simon Glassd08db022023-08-24 13:55:41 -0600546 /* Enable the cros bootmeth if needed */
547 if (bind_cros) {
548 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
549 ut_assertok(device_bind(bootstd, DM_DRIVER_REF(bootmeth_cros),
550 "cros", 0, ofnode_null(), &dev));
551 }
552
Simon Glass2b9adca2023-08-24 13:55:40 -0600553 /* Change the order to include the device */
Simon Glassd985f1d2023-01-06 08:52:41 -0600554 std = dev_get_priv(bootstd);
555 old_order = std->bootdev_order;
556 std->bootdev_order = order;
Simon Glassbaea7ec2023-10-01 19:14:37 -0600557 *old_orderp = old_order;
558
559 return 0;
560}
561
562/**
563 * scan_mmc_bootdev() - Set up an mmc bootdev so we can access other distros
564 *
565 * @uts: Unit test state
566 * @mmc_dev: MMC device to use, e.g. "mmc4"
567 * @bind_cros: true to bind the ChromiumOS bootmeth
568 * Returns 0 on success, -ve on failure
569 */
570static int scan_mmc_bootdev(struct unit_test_state *uts, const char *mmc_dev,
571 bool bind_cros)
572{
573 struct bootstd_priv *std;
574 struct udevice *bootstd;
575 const char **old_order;
576
577 ut_assertok(prep_mmc_bootdev(uts, mmc_dev, bind_cros, &old_order));
Simon Glassd985f1d2023-01-06 08:52:41 -0600578
579 console_record_reset_enable();
580 ut_assertok(run_command("bootflow scan", 0));
581 ut_assert_console_end();
582
583 /* Restore the order used by the device tree */
Simon Glassbaea7ec2023-10-01 19:14:37 -0600584 ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
585 std = dev_get_priv(bootstd);
Simon Glassd985f1d2023-01-06 08:52:41 -0600586 std->bootdev_order = old_order;
587
Simon Glasse64c2952023-01-06 08:52:42 -0600588 return 0;
589}
590
Simon Glass2b9adca2023-08-24 13:55:40 -0600591/**
Simon Glassbaea7ec2023-10-01 19:14:37 -0600592 * scan_mmc4_bootdev() - Set up the mmc4 bootdev so we can access a fake Armbian
Simon Glass2b9adca2023-08-24 13:55:40 -0600593 *
594 * @uts: Unit test state
595 * Returns 0 on success, -ve on failure
596 */
Simon Glassbaea7ec2023-10-01 19:14:37 -0600597static int scan_mmc4_bootdev(struct unit_test_state *uts)
Simon Glass2b9adca2023-08-24 13:55:40 -0600598{
Simon Glassbaea7ec2023-10-01 19:14:37 -0600599 ut_assertok(scan_mmc_bootdev(uts, "mmc4", false));
Simon Glass2b9adca2023-08-24 13:55:40 -0600600
601 return 0;
602}
603
Simon Glasse64c2952023-01-06 08:52:42 -0600604/* Check 'bootflow menu' to select a bootflow */
605static int bootflow_cmd_menu(struct unit_test_state *uts)
606{
Simon Glass3fa53b92023-10-01 19:14:38 -0600607 struct bootstd_priv *std;
Simon Glasse64c2952023-01-06 08:52:42 -0600608 char prev[3];
609
Simon Glass3fa53b92023-10-01 19:14:38 -0600610 /* get access to the current bootflow */
611 ut_assertok(bootstd_get_priv(&std));
612
Simon Glassbaea7ec2023-10-01 19:14:37 -0600613 ut_assertok(scan_mmc4_bootdev(uts));
Simon Glasse64c2952023-01-06 08:52:42 -0600614
Simon Glassd985f1d2023-01-06 08:52:41 -0600615 /* Add keypresses to move to and select the second one in the list */
616 prev[0] = CTL_CH('n');
617 prev[1] = '\r';
618 prev[2] = '\0';
619 ut_asserteq(2, console_in_puts(prev));
620
621 ut_assertok(run_command("bootflow menu", 0));
622 ut_assert_nextline("Selected: Armbian");
Simon Glass3fa53b92023-10-01 19:14:38 -0600623 ut_assertnonnull(std->cur_bootflow);
624 ut_assert_console_end();
625
626 /* Check not selecting anything */
627 prev[0] = '\e';
628 prev[1] = '\0';
629 ut_asserteq(1, console_in_puts(prev));
630
631 ut_asserteq(1, run_command("bootflow menu", 0));
632 ut_assertnull(std->cur_bootflow);
633 ut_assert_nextline("Nothing chosen");
Simon Glassd985f1d2023-01-06 08:52:41 -0600634 ut_assert_console_end();
635
636 return 0;
637}
638BOOTSTD_TEST(bootflow_cmd_menu, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
Simon Glasse64c2952023-01-06 08:52:42 -0600639
Simon Glassa4bee0b2023-10-01 19:15:25 -0600640/* Check 'bootflow scan -m' to select a bootflow using a menu */
641static int bootflow_scan_menu(struct unit_test_state *uts)
642{
643 struct bootstd_priv *std;
644 const char **old_order, **new_order;
645 char prev[3];
646
647 /* get access to the current bootflow */
648 ut_assertok(bootstd_get_priv(&std));
649
650 ut_assertok(prep_mmc_bootdev(uts, "mmc4", false, &old_order));
651
652 /* Add keypresses to move to and select the second one in the list */
653 prev[0] = CTL_CH('n');
654 prev[1] = '\r';
655 prev[2] = '\0';
656 ut_asserteq(2, console_in_puts(prev));
657
658 ut_assertok(run_command("bootflow scan -lm", 0));
659 new_order = std->bootdev_order;
660 std->bootdev_order = old_order;
661
662 ut_assert_skip_to_line("No more bootdevs");
663 ut_assert_nextlinen("--");
664 ut_assert_nextline("(2 bootflows, 2 valid)");
665
666 ut_assert_nextline("Selected: Armbian");
667 ut_assertnonnull(std->cur_bootflow);
668 ut_assert_console_end();
669
670 /* Check not selecting anything */
671 prev[0] = '\e';
672 prev[1] = '\0';
673 ut_asserteq(1, console_in_puts(prev));
674
675 std->bootdev_order = new_order; /* Blue Monday */
676 ut_assertok(run_command("bootflow scan -lm", 0));
677 std->bootdev_order = old_order;
678
679 ut_assertnull(std->cur_bootflow);
680 ut_assert_skip_to_line("(2 bootflows, 2 valid)");
681 ut_assert_nextline("Nothing chosen");
682 ut_assert_console_end();
683
684 return 0;
685}
686BOOTSTD_TEST(bootflow_scan_menu,
687 UT_TESTF_DM | UT_TESTF_SCAN_FDT | UT_TESTF_CONSOLE_REC);
688
689/* Check 'bootflow scan -mb' to select and boot a bootflow using a menu */
690static int bootflow_scan_menu_boot(struct unit_test_state *uts)
691{
692 struct bootstd_priv *std;
693 const char **old_order;
694 char prev[3];
695
696 /* get access to the current bootflow */
697 ut_assertok(bootstd_get_priv(&std));
698
699 ut_assertok(prep_mmc_bootdev(uts, "mmc4", false, &old_order));
700
701 /* Add keypresses to move to and select the second one in the list */
702 prev[0] = CTL_CH('n');
703 prev[1] = '\r';
704 prev[2] = '\0';
705 ut_asserteq(2, console_in_puts(prev));
706
707 ut_assertok(run_command("bootflow scan -lmb", 0));
708 std->bootdev_order = old_order;
709
710 ut_assert_skip_to_line("(2 bootflows, 2 valid)");
711
712 ut_assert_nextline("Selected: Armbian");
Francis Laniel3ea3c572023-12-22 22:02:35 +0100713
714 if (gd->flags & GD_FLG_HUSH_OLD_PARSER) {
715 /*
716 * With old hush, despite booti failing to boot, i.e. returning
717 * CMD_RET_FAILURE, run_command() returns 0 which leads bootflow_boot(), as
718 * we are using bootmeth_script here, to return -EFAULT.
719 */
720 ut_assert_skip_to_line("Boot failed (err=-14)");
721 } else if (gd->flags & GD_FLG_HUSH_MODERN_PARSER) {
722 /*
723 * While with modern one, run_command() propagates CMD_RET_FAILURE returned
724 * by booti, so we get 1 here.
725 */
726 ut_assert_skip_to_line("Boot failed (err=1)");
727 }
Simon Glassa4bee0b2023-10-01 19:15:25 -0600728 ut_assertnonnull(std->cur_bootflow);
729 ut_assert_console_end();
730
731 return 0;
732}
733BOOTSTD_TEST(bootflow_scan_menu_boot,
734 UT_TESTF_DM | UT_TESTF_SCAN_FDT | UT_TESTF_CONSOLE_REC);
735
Simon Glass91943ff2023-01-17 10:48:15 -0700736/* Check searching for a single bootdev using the hunters */
737static int bootflow_cmd_hunt_single(struct unit_test_state *uts)
738{
739 struct bootstd_priv *std;
740
741 /* get access to the used hunters */
742 ut_assertok(bootstd_get_priv(&std));
743
744 ut_assertok(bootstd_test_drop_bootdev_order(uts));
745
746 console_record_reset_enable();
747 ut_assertok(run_command("bootflow scan -l mmc1", 0));
748 ut_assert_nextline("Scanning for bootflows with label 'mmc1'");
749 ut_assert_skip_to_line("(1 bootflow, 1 valid)");
750 ut_assert_console_end();
751
752 /* check that the hunter was used */
753 ut_asserteq(BIT(MMC_HUNTER) | BIT(1), std->hunters_used);
754
755 return 0;
756}
757BOOTSTD_TEST(bootflow_cmd_hunt_single, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
758
759/* Check searching for a uclass label using the hunters */
760static int bootflow_cmd_hunt_label(struct unit_test_state *uts)
761{
762 struct bootstd_priv *std;
763
764 /* get access to the used hunters */
765 ut_assertok(bootstd_get_priv(&std));
766
767 test_set_skip_delays(true);
768 test_set_eth_enable(false);
769 ut_assertok(bootstd_test_drop_bootdev_order(uts));
770
771 console_record_reset_enable();
772 ut_assertok(run_command("bootflow scan -l mmc", 0));
773
774 /* check that the hunter was used */
775 ut_asserteq(BIT(MMC_HUNTER) | BIT(1), std->hunters_used);
776
777 /* check that we got the mmc1 bootflow */
778 ut_assert_nextline("Scanning for bootflows with label 'mmc'");
779 ut_assert_nextlinen("Seq");
780 ut_assert_nextlinen("---");
781 ut_assert_nextline("Hunting with: simple_bus");
782 ut_assert_nextline("Found 2 extension board(s).");
783 ut_assert_nextline("Hunting with: mmc");
784 ut_assert_nextline("Scanning bootdev 'mmc2.bootdev':");
785 ut_assert_nextline("Scanning bootdev 'mmc1.bootdev':");
786 ut_assert_nextline(
Simon Glass79f66352023-05-10 16:34:46 -0600787 " 0 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf");
Simon Glass91943ff2023-01-17 10:48:15 -0700788 ut_assert_nextline("Scanning bootdev 'mmc0.bootdev':");
789 ut_assert_skip_to_line("(1 bootflow, 1 valid)");
790 ut_assert_console_end();
791
792 return 0;
793}
794BOOTSTD_TEST(bootflow_cmd_hunt_label, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
795
Simon Glasse64c2952023-01-06 08:52:42 -0600796/**
797 * check_font() - Check that the font size for an item matches expectations
798 *
799 * @uts: Unit test state
800 * @scn: Scene containing the text object
801 * @id: ID of the text object
802 * Returns 0 on success, -ve on failure
803 */
804static int check_font(struct unit_test_state *uts, struct scene *scn, uint id,
805 int font_size)
806{
807 struct scene_obj_txt *txt;
808
809 txt = scene_obj_find(scn, id, SCENEOBJT_TEXT);
810 ut_assertnonnull(txt);
811
812 ut_asserteq(font_size, txt->font_size);
813
814 return 0;
815}
816
817/* Check themes work with a bootflow menu */
818static int bootflow_menu_theme(struct unit_test_state *uts)
819{
820 const int font_size = 30;
821 struct scene *scn;
822 struct expo *exp;
823 ofnode node;
824 int i;
825
Simon Glassbaea7ec2023-10-01 19:14:37 -0600826 ut_assertok(scan_mmc4_bootdev(uts));
Simon Glasse64c2952023-01-06 08:52:42 -0600827
828 ut_assertok(bootflow_menu_new(&exp));
829 node = ofnode_path("/bootstd/theme");
830 ut_assert(ofnode_valid(node));
831 ut_assertok(bootflow_menu_apply_theme(exp, node));
832
833 scn = expo_lookup_scene_id(exp, MAIN);
834 ut_assertnonnull(scn);
835
836 /*
837 * Check that the txt objects have the correct font size from the
838 * device tree node: bootstd/theme
839 *
840 * Check both menu items, since there are two bootflows
841 */
842 ut_assertok(check_font(uts, scn, OBJ_PROMPT, font_size));
843 ut_assertok(check_font(uts, scn, OBJ_POINTER, font_size));
844 for (i = 0; i < 2; i++) {
845 ut_assertok(check_font(uts, scn, ITEM_DESC + i, font_size));
846 ut_assertok(check_font(uts, scn, ITEM_KEY + i, font_size));
847 ut_assertok(check_font(uts, scn, ITEM_LABEL + i, font_size));
848 }
849
850 expo_destroy(exp);
851
852 return 0;
853}
854BOOTSTD_TEST(bootflow_menu_theme, UT_TESTF_DM | UT_TESTF_SCAN_FDT);
Simon Glassd07861c2023-07-12 09:04:38 -0600855
856/**
857 * check_arg() - Check both the normal case and the buffer-overflow case
858 *
859 * @uts: Unit-test state
860 * @expect_ret: Expected return value (i.e. buffer length)
861 * @expect_str: String expected to be returned
862 * @buf: Buffer to use
863 * @from: Original cmdline to update
864 * @arg: Argument to update (e.g. "console")
865 * @val: Value to set (e.g. "ttyS2") or NULL to delete the argument if present,
866 * "" to set it to an empty value (e.g. "console=") and BOOTFLOWCL_EMPTY to add
867 * it without any value ("initrd")
868 */
869static int check_arg(struct unit_test_state *uts, int expect_ret,
870 const char *expect_str, char *buf, const char *from,
871 const char *arg, const char *val)
872{
873 /* check for writing outside the reported bounds */
874 buf[expect_ret] = '[';
875 ut_asserteq(expect_ret,
876 cmdline_set_arg(buf, expect_ret, from, arg, val, NULL));
877 ut_asserteq_str(expect_str, buf);
878 ut_asserteq('[', buf[expect_ret]);
879
880 /* do the test again but with one less byte in the buffer */
881 ut_asserteq(-E2BIG, cmdline_set_arg(buf, expect_ret - 1, from, arg,
882 val, NULL));
883
884 return 0;
885}
886
887/* Test of bootflow_cmdline_set_arg() */
888static int test_bootflow_cmdline_set(struct unit_test_state *uts)
889{
890 char buf[50];
891 const int size = sizeof(buf);
892
893 /*
894 * note that buffer-overflow tests are immediately each test case, just
895 * top keep the code together
896 */
897
898 /* add an arg that doesn't already exist, starting from empty */
899 ut_asserteq(-ENOENT, cmdline_set_arg(buf, size, NULL, "me", NULL,
900 NULL));
901
902 ut_assertok(check_arg(uts, 3, "me", buf, NULL, "me", BOOTFLOWCL_EMPTY));
903 ut_assertok(check_arg(uts, 4, "me=", buf, NULL, "me", ""));
904 ut_assertok(check_arg(uts, 8, "me=fred", buf, NULL, "me", "fred"));
905
906 /* add an arg that doesn't already exist, starting from non-empty */
907 ut_assertok(check_arg(uts, 11, "arg=123 me", buf, "arg=123", "me",
908 BOOTFLOWCL_EMPTY));
909 ut_assertok(check_arg(uts, 12, "arg=123 me=", buf, "arg=123", "me",
910 ""));
911 ut_assertok(check_arg(uts, 16, "arg=123 me=fred", buf, "arg=123", "me",
912 "fred"));
913
914 /* update an arg at the start */
915 ut_assertok(check_arg(uts, 1, "", buf, "arg=123", "arg", NULL));
916 ut_assertok(check_arg(uts, 4, "arg", buf, "arg=123", "arg",
917 BOOTFLOWCL_EMPTY));
918 ut_assertok(check_arg(uts, 5, "arg=", buf, "arg=123", "arg", ""));
919 ut_assertok(check_arg(uts, 6, "arg=1", buf, "arg=123", "arg", "1"));
920 ut_assertok(check_arg(uts, 9, "arg=1234", buf, "arg=123", "arg",
921 "1234"));
922
923 /* update an arg at the end */
924 ut_assertok(check_arg(uts, 5, "mary", buf, "mary arg=123", "arg",
925 NULL));
926 ut_assertok(check_arg(uts, 9, "mary arg", buf, "mary arg=123", "arg",
927 BOOTFLOWCL_EMPTY));
928 ut_assertok(check_arg(uts, 10, "mary arg=", buf, "mary arg=123", "arg",
929 ""));
930 ut_assertok(check_arg(uts, 11, "mary arg=1", buf, "mary arg=123", "arg",
931 "1"));
932 ut_assertok(check_arg(uts, 14, "mary arg=1234", buf, "mary arg=123",
933 "arg", "1234"));
934
935 /* update an arg in the middle */
936 ut_assertok(check_arg(uts, 16, "mary=abc john=2", buf,
937 "mary=abc arg=123 john=2", "arg", NULL));
938 ut_assertok(check_arg(uts, 20, "mary=abc arg john=2", buf,
939 "mary=abc arg=123 john=2", "arg",
940 BOOTFLOWCL_EMPTY));
941 ut_assertok(check_arg(uts, 21, "mary=abc arg= john=2", buf,
942 "mary=abc arg=123 john=2", "arg", ""));
943 ut_assertok(check_arg(uts, 22, "mary=abc arg=1 john=2", buf,
944 "mary=abc arg=123 john=2", "arg", "1"));
945 ut_assertok(check_arg(uts, 25, "mary=abc arg=1234 john=2", buf,
946 "mary=abc arg=123 john=2", "arg", "1234"));
947
948 /* handle existing args with quotes */
949 ut_assertok(check_arg(uts, 16, "mary=\"abc\" john", buf,
950 "mary=\"abc\" arg=123 john", "arg", NULL));
951
952 /* handle existing args with quoted spaces */
953 ut_assertok(check_arg(uts, 20, "mary=\"abc def\" john", buf,
954 "mary=\"abc def\" arg=123 john", "arg", NULL));
955
956 ut_assertok(check_arg(uts, 34, "mary=\"abc def\" arg=123 john def=4",
957 buf, "mary=\"abc def\" arg=123 john", "def",
958 "4"));
959
960 /* quote at the start */
961 ut_asserteq(-EBADF, cmdline_set_arg(buf, size,
962 "mary=\"abc def\" arg=\"123 456\"",
963 "arg", "\"4 5 6", NULL));
964
965 /* quote at the end */
966 ut_asserteq(-EBADF, cmdline_set_arg(buf, size,
967 "mary=\"abc def\" arg=\"123 456\"",
968 "arg", "4 5 6\"", NULL));
969
970 /* quote in the middle */
971 ut_asserteq(-EBADF, cmdline_set_arg(buf, size,
972 "mary=\"abc def\" arg=\"123 456\"",
973 "arg", "\"4 \"5 6\"", NULL));
974
975 /* handle updating a quoted arg */
976 ut_assertok(check_arg(uts, 27, "mary=\"abc def\" arg=\"4 5 6\"", buf,
977 "mary=\"abc def\" arg=\"123 456\"", "arg",
978 "4 5 6"));
979
980 /* changing a quoted arg to a non-quoted arg */
981 ut_assertok(check_arg(uts, 23, "mary=\"abc def\" arg=789", buf,
982 "mary=\"abc def\" arg=\"123 456\"", "arg",
983 "789"));
984
985 /* changing a non-quoted arg to a quoted arg */
986 ut_assertok(check_arg(uts, 29, "mary=\"abc def\" arg=\"456 789\"", buf,
987 "mary=\"abc def\" arg=123", "arg", "456 789"));
988
989 /* handling of spaces */
990 ut_assertok(check_arg(uts, 8, "arg=123", buf, " ", "arg", "123"));
991 ut_assertok(check_arg(uts, 8, "arg=123", buf, " ", "arg", "123"));
992 ut_assertok(check_arg(uts, 13, "john arg=123", buf, " john ", "arg",
993 "123"));
994 ut_assertok(check_arg(uts, 13, "john arg=123", buf, " john arg=123 ",
995 "arg", "123"));
996 ut_assertok(check_arg(uts, 18, "john arg=123 mary", buf,
997 " john arg=123 mary ", "arg", "123"));
998
999 /* unchanged arg */
1000 ut_assertok(check_arg(uts, 3, "me", buf, "me", "me", BOOTFLOWCL_EMPTY));
1001
1002 /* arg which starts with the same name */
1003 ut_assertok(check_arg(uts, 28, "mary=abc johnathon=2 john=3", buf,
1004 "mary=abc johnathon=2 john=1", "john", "3"));
1005
1006 return 0;
1007}
1008BOOTSTD_TEST(test_bootflow_cmdline_set, 0);
Simon Glass82c09382023-07-12 09:04:39 -06001009
1010/* Test of bootflow_cmdline_set_arg() */
1011static int bootflow_set_arg(struct unit_test_state *uts)
1012{
1013 struct bootflow s_bflow, *bflow = &s_bflow;
1014 ulong mem_start;
1015
1016 ut_assertok(env_set("bootargs", NULL));
1017
1018 mem_start = ut_check_delta(0);
1019
1020 /* Do a simple sanity check. Rely on bootflow_cmdline() for the rest */
1021 bflow->cmdline = NULL;
1022 ut_assertok(bootflow_cmdline_set_arg(bflow, "fred", "123", false));
1023 ut_asserteq_str(bflow->cmdline, "fred=123");
1024
1025 ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", "and here", false));
1026 ut_asserteq_str(bflow->cmdline, "fred=123 mary=\"and here\"");
1027
1028 ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", NULL, false));
1029 ut_asserteq_str(bflow->cmdline, "fred=123");
1030 ut_assertok(bootflow_cmdline_set_arg(bflow, "fred", NULL, false));
1031 ut_asserteq_ptr(bflow->cmdline, NULL);
1032
1033 ut_asserteq(0, ut_check_delta(mem_start));
1034
1035 ut_assertok(bootflow_cmdline_set_arg(bflow, "mary", "here", true));
1036 ut_asserteq_str("mary=here", env_get("bootargs"));
1037 ut_assertok(env_set("bootargs", NULL));
1038
1039 return 0;
1040}
1041BOOTSTD_TEST(bootflow_set_arg, 0);
1042
1043/* Test of bootflow_cmdline_get_arg() */
1044static int bootflow_cmdline_get(struct unit_test_state *uts)
1045{
1046 int pos;
1047
1048 /* empty string */
1049 ut_asserteq(-ENOENT, cmdline_get_arg("", "fred", &pos));
1050
1051 /* arg with empty value */
1052 ut_asserteq(0, cmdline_get_arg("fred= mary", "fred", &pos));
1053 ut_asserteq(5, pos);
1054
1055 /* arg with a value */
1056 ut_asserteq(2, cmdline_get_arg("fred=23", "fred", &pos));
1057 ut_asserteq(5, pos);
1058
1059 /* arg with a value */
1060 ut_asserteq(3, cmdline_get_arg("mary=1 fred=234", "fred", &pos));
1061 ut_asserteq(12, pos);
1062
1063 /* arg with a value, after quoted arg */
1064 ut_asserteq(3, cmdline_get_arg("mary=\"1 2\" fred=234", "fred", &pos));
1065 ut_asserteq(16, pos);
1066
1067 /* arg in the middle */
1068 ut_asserteq(0, cmdline_get_arg("mary=\"1 2\" fred john=23", "fred",
1069 &pos));
1070 ut_asserteq(15, pos);
1071
1072 /* quoted arg */
1073 ut_asserteq(3, cmdline_get_arg("mary=\"1 2\" fred=\"3 4\" john=23",
1074 "fred", &pos));
1075 ut_asserteq(17, pos);
1076
1077 /* args starting with the same prefix */
1078 ut_asserteq(1, cmdline_get_arg("mary=abc johnathon=3 john=1", "john",
1079 &pos));
1080 ut_asserteq(26, pos);
1081
1082 return 0;
1083}
1084BOOTSTD_TEST(bootflow_cmdline_get, 0);
1085
1086static int bootflow_cmdline(struct unit_test_state *uts)
1087{
1088 ut_assertok(run_command("bootflow scan mmc", 0));
1089 ut_assertok(run_command("bootflow sel 0", 0));
1090 console_record_reset_enable();
1091
1092 ut_asserteq(1, run_command("bootflow cmdline get fred", 0));
1093 ut_assert_nextline("Argument not found");
1094 ut_assert_console_end();
1095
1096 ut_asserteq(0, run_command("bootflow cmdline set fred 123", 0));
1097 ut_asserteq(0, run_command("bootflow cmdline get fred", 0));
1098 ut_assert_nextline("123");
1099
1100 ut_asserteq(0, run_command("bootflow cmdline set mary abc", 0));
1101 ut_asserteq(0, run_command("bootflow cmdline get mary", 0));
1102 ut_assert_nextline("abc");
1103
1104 ut_asserteq(0, run_command("bootflow cmdline delete fred", 0));
1105 ut_asserteq(1, run_command("bootflow cmdline get fred", 0));
1106 ut_assert_nextline("Argument not found");
1107
1108 ut_asserteq(0, run_command("bootflow cmdline clear mary", 0));
1109 ut_asserteq(0, run_command("bootflow cmdline get mary", 0));
1110 ut_assert_nextline_empty();
1111
Simon Glass921f63e2023-11-29 10:31:19 -07001112 ut_asserteq(0, run_command("bootflow cmdline set mary abc", 0));
1113 ut_asserteq(0, run_command("bootflow cmdline set mary", 0));
1114 ut_assert_nextline_empty();
1115
Simon Glass82c09382023-07-12 09:04:39 -06001116 ut_assert_console_end();
1117
1118 return 0;
1119}
1120BOOTSTD_TEST(bootflow_cmdline, 0);
Simon Glassd08db022023-08-24 13:55:41 -06001121
Simon Glass19248dc2023-10-25 07:17:36 +13001122/* test a few special changes to a long command line */
1123static int bootflow_cmdline_special(struct unit_test_state *uts)
1124{
1125 char buf[500];
1126 int pos;
1127
1128 /*
1129 * check handling of an argument which has an embedded '=', as well as
1130 * handling of a argument which partially matches ("ro" and "root")
1131 */
1132 ut_asserteq(32, cmdline_set_arg(
1133 buf, sizeof(buf),
1134 "loglevel=7 root=PARTUUID=d68352e3 rootwait ro noinitrd",
1135 "root", NULL, &pos));
1136 ut_asserteq_str("loglevel=7 rootwait ro noinitrd", buf);
1137
1138 return 0;
1139}
1140BOOTSTD_TEST(bootflow_cmdline_special, 0);
1141
Simon Glassd08db022023-08-24 13:55:41 -06001142/* Test ChromiumOS bootmeth */
1143static int bootflow_cros(struct unit_test_state *uts)
1144{
Simon Glassbaea7ec2023-10-01 19:14:37 -06001145 ut_assertok(scan_mmc_bootdev(uts, "mmc5", true));
Simon Glassd08db022023-08-24 13:55:41 -06001146 ut_assertok(run_command("bootflow list", 0));
1147
1148 ut_assert_nextlinen("Showing all");
1149 ut_assert_nextlinen("Seq");
1150 ut_assert_nextlinen("---");
1151 ut_assert_nextlinen(" 0 extlinux");
Simon Glass71f634b2023-08-24 13:55:45 -06001152 ut_assert_nextlinen(" 1 cros ready mmc 2 mmc5.bootdev.part_2 ");
1153 ut_assert_nextlinen(" 2 cros ready mmc 4 mmc5.bootdev.part_4 ");
Simon Glassd08db022023-08-24 13:55:41 -06001154 ut_assert_nextlinen("---");
Simon Glass71f634b2023-08-24 13:55:45 -06001155 ut_assert_skip_to_line("(3 bootflows, 3 valid)");
Simon Glassd08db022023-08-24 13:55:41 -06001156
1157 ut_assert_console_end();
1158
1159 return 0;
1160}
1161BOOTSTD_TEST(bootflow_cros, 0);