Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | // SPDX-License-Identifier: GPL-2.0+ /* * Tests for bootctl * * For now this is just samples, showing how the different functions can be * tested * * Copyright 2025 Canonical Ltd * Written by Simon Glass <simon.glass@canonical.com> */ #include <stdbool.h> #include <bootctl.h> #include <bootflow.h> #include <bootmeth.h> #include <bootstd.h> #include <dm.h> #include <expo.h> #include <os.h> #include <test/ut.h> #include <test/video.h> #include "bootctl_common.h" #include <bootctl/logic.h> #include <bootctl/measure.h> #include <bootctl/oslist.h> #include <bootctl/state.h> #include <bootctl/ui.h> #include <dm/lists.h> #include "../bootstd_common.h" /* test that expected devices are available and can be probed */ static int bootctl_base(struct unit_test_state *uts) { struct udevice *dev; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_UI, &dev)); ut_asserteq_str("ui-multi", dev->name); ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_OSLIST, &dev)); ut_asserteq_str("oslist-extlinux", dev->name); ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_STATE, &dev)); ut_asserteq_str("state", dev->name); return 0; } BOOTCTL_TEST(bootctl_base, UTF_DM | UTF_SCAN_FDT); /* test finding an OS */ static int bootctl_oslist(struct unit_test_state *uts) { struct oslist_iter iter; struct osinfo info; struct bootflow *bflow = &info.bflow; struct udevice *dev; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_OSLIST, &dev)); ut_asserteq_str("oslist-extlinux", dev->name); /* initially we should only see Fedora */ bc_oslist_setup_iter(&iter); ut_assertok(bc_oslist_next(dev, &iter, &info)); ut_asserteq_str("mmc1.bootdev.part_1", bflow->name); ut_asserteq_strn("Fedora-Workstation", bflow->os_name); ut_asserteq(-ENODEV, bc_oslist_next(dev, &iter, &info)); return 0; } BOOTCTL_TEST(bootctl_oslist, UTF_DM | UTF_SCAN_FDT); /* test finding OSes on mmc and usb */ static int bootctl_oslist_usb(struct unit_test_state *uts) { struct oslist_iter iter; struct osinfo info; struct bootflow *bflow = &info.bflow; struct udevice *dev; test_set_skip_delays(true); bootstd_reset_usb(); ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_OSLIST, &dev)); ut_asserteq_str("oslist-extlinux", dev->name); /* include usb in the bootdev order */ ut_assertok(bootdev_set_order("mmc usb")); bc_oslist_setup_iter(&iter); ut_assertok(bc_oslist_next(dev, &iter, &info)); ut_asserteq_str("mmc1.bootdev.part_1", bflow->name); ut_assertok(bc_oslist_next(dev, &iter, &info)); ut_asserteq_str("hub1.p4.usb_mass_storage.lun0.bootdev.part_1", bflow->name); ut_asserteq(-ENODEV, bc_oslist_next(dev, &iter, &info)); return 0; } BOOTCTL_TEST(bootctl_oslist_usb, UTF_DM | UTF_SCAN_FDT); /* test basic use of state */ static int bootctl_simple_state_base(struct unit_test_state *uts) { struct udevice *dev; const char *sval; struct abuf buf; bool bval; long ival; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_STATE, &dev)); ut_assertok(bc_state_write_bool(dev, "fred", false)); ut_assertok(bc_state_write_bool(dev, "mary", true)); ut_assertok(bc_state_write_int(dev, "alex", 123)); ut_assertok(bc_state_write_str(dev, "john", "abc")); ut_assertok(bc_state_read_bool(dev, "fred", &bval)); ut_asserteq(false, bval); ut_assertok(bc_state_read_bool(dev, "mary", &bval)); ut_asserteq(true, bval); ut_assertok(bc_state_read_int(dev, "alex", &ival)); ut_asserteq(123, ival); ut_assertok(bc_state_read_str(dev, "john", &sval)); ut_asserteq_str("abc", sval); /* check the buffer contents, including the nul terminator */ ut_assertok(bc_state_save_to_buf(dev, &buf)); ut_asserteq_str("fred=0\nmary=1\nalex=123\njohn=abc\n", buf.data); ut_asserteq(strlen("fred=0\nmary=1\nalex=123\njohn=abc\n") + 1, buf.size); ut_asserteq(0, *((char *)buf.data + buf.size - 1)); abuf_uninit(&buf); /* overwrite */ ut_assertok(bc_state_write_str(dev, "fred", "def")); ut_assertok(bc_state_read_str(dev, "fred", &sval)); ut_asserteq_str("def", sval); ut_assertok(bc_state_clear(dev)); ut_asserteq(-ENOENT, bc_state_read_bool(dev, "fred", &bval)); ut_asserteq(-ENOENT, bc_state_read_bool(dev, "mary", &bval)); ut_asserteq(-ENOENT, bc_state_read_bool(dev, "john", &bval)); ut_asserteq(-ENOENT, bc_state_read_bool(dev, "alex", &bval)); return 0; } BOOTCTL_TEST(bootctl_simple_state_base, UTF_DM | UTF_SCAN_FDT); /* test loading / saving state */ static int bootctl_simple_state_loadsave(struct unit_test_state *uts) { struct udevice *dev; char *buf; int size; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_STATE, &dev)); ut_assertok(bc_state_write_bool(dev, "fred", false)); ut_assertok(bc_state_write_bool(dev, "mary", true)); ut_assertok(bc_state_save(dev)); /* check the file contents, including the nul terminator */ ut_assertok(os_read_file("bootctl.ini", (void **)&buf, &size)); ut_asserteq_str("fred=0\nmary=1\n", buf); ut_asserteq(strlen("fred=0\nmary=1\n") + 1, size); ut_asserteq(0, buf[size - 1]); os_free(buf); ut_assertok(bc_state_load(dev)); return 0; } BOOTCTL_TEST(bootctl_simple_state_loadsave, UTF_DM | UTF_SCAN_FDT); /* test limits */ static int bootctl_simple_state_limits(struct unit_test_state *uts) { struct udevice *dev; char long_key[32]; /* avoid using constants from impl */ struct abuf buf; char *data; int ch; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_STATE, &dev)); /* cannot use NULL as a key or value */ ut_asserteq(-EINVAL, bc_state_write_bool(dev, NULL, false)); ut_asserteq(-EINVAL, bc_state_write_str(dev, "key", NULL)); /* empty key and value */ ut_asserteq(-EINVAL, bc_state_write_str(dev, "", "val")); ut_assertok(bc_state_write_str(dev, "empty", "")); /* no spaces allowed in a key */ ut_asserteq(-EKEYREJECTED, bc_state_write_str(dev, "my key", "val")); /* check key characters */ for (ch = 1; ch < 256; ch++) { char key[4] = "key"; bool ok; ok = ch == '_' || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9'); key[1] = ch; printf("checking ch %x\n", ch); if (ok) ut_assertok(bc_state_write_str(dev, key, "val")); else ut_asserteq(-EKEYREJECTED, bc_state_write_str(dev, key, "val")); } /* key too long */ strcpy(long_key, "1234567890123456789012345678901"); ut_asserteq(-EKEYREJECTED, bc_state_write_str(dev, long_key, "val")); long_key[30] = '\0'; ut_assertok(bc_state_write_str(dev, long_key, "val")); /* value too long */ abuf_init(&buf); ut_asserteq(true, abuf_realloc(&buf, 0x1002)); data = buf.data; memset(data, 'x', 0x1001); data[0x1001] = '\0'; ut_asserteq(-E2BIG, bc_state_write_str(dev, "try", data)); data[0x1000] = '\0'; ut_assertok(bc_state_write_str(dev, "try", data)); abuf_uninit(&buf); return 0; } BOOTCTL_TEST(bootctl_simple_state_limits, UTF_DM | UTF_SCAN_FDT); /* test integers */ static int bootctl_simple_state_int(struct unit_test_state *uts) { struct udevice *dev; long ival; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_STATE, &dev)); /* basic integers */ ut_assertok(bc_state_write_int(dev, "val", 0)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq(0, ival); ut_assertok(bc_state_write_int(dev, "val", 1)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq(1, ival); ut_assertok(bc_state_write_int(dev, "val", -1)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq(-1, ival); /* large ints */ ut_assertok(bc_state_write_int(dev, "val", 0xffffffffl)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq(0xffffffffl, ival); ut_assertok(bc_state_write_int(dev, "val", -0xffffffffl)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq_64(-0xffffffffl, ival); ut_assertok(bc_state_write_int(dev, "val", 0x7fffffffffffffffll)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq_64(0x7fffffffffffffffll, ival); ut_assertok(bc_state_write_int(dev, "val", -0x7fffffffffffffffll)); ut_assertok(bc_state_read_int(dev, "val", &ival)); ut_asserteq_64(-0x7fffffffffffffffll, ival); return 0; } BOOTCTL_TEST(bootctl_simple_state_int, UTF_DM | UTF_SCAN_FDT); /* test measurement */ static int bootctl_simple_measure(struct unit_test_state *uts) { struct bootflow_img *img[3]; struct osinfo osinfo; struct bootflow *bflow = &osinfo.bflow; const struct measure_info *info; struct udevice *dev; struct alist result; ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_MEASURE, &dev)); ut_assertok(bc_measure_start(dev)); /* set up some data */ memset(&osinfo, '\0', sizeof(struct osinfo)); alist_init_struct(&bflow->images, struct bootflow_img); /* add a few images */ img[0] = bootflow_img_add(bflow, "kernel", (enum bootflow_img_t)IH_TYPE_KERNEL, 0, 0x100); ut_assertnonnull(img); img[1] = bootflow_img_add(bflow, "initrd", (enum bootflow_img_t)IH_TYPE_RAMDISK, 0x100, 0x200); ut_assertnonnull(img); /* the fdt is missing so this should fail */ ut_asserteq(-ENOENT, bc_measure_process(dev, &osinfo, &result)); if (IS_ENABLED(CONFIG_LOGF_FUNC)) ut_assert_nextline(" simple_process() Missing image 'flat_dt'"); else ut_assert_nextline("Missing image 'flat_dt'"); ut_assert_console_end(); alist_uninit(&result); img[2] = bootflow_img_add(bflow, "fdt", (enum bootflow_img_t)IH_TYPE_FLATDT, 0x300, 0x30); ut_assertok(bc_measure_process(dev, &osinfo, &result)); /* check the result */ ut_asserteq(3, result.count); info = alist_get(&result, 0, struct measure_info); ut_asserteq_ptr(img[0], info[0].img); ut_asserteq_ptr(img[1], info[1].img); ut_asserteq_ptr(img[2], info[2].img); /* TODO: We should also a) read out the TPM log and b) check TPM PCRs */ ut_assertnonnull(img); return 0; } BOOTCTL_TEST(bootctl_simple_measure, UTF_DM | UTF_SCAN_FDT | UTF_CONSOLE); static int check_multiboot_ui(struct unit_test_state *uts, struct bootstd_priv *std) { struct udevice *oslist_dev, *ui_dev, *vid_dev; struct membuf buf1, buf2, buf3, buf4; char *data1, *data2, *data3, *data4; struct bc_ui_priv *uc_priv; struct udevice *logic_dev; struct logic_priv *lpriv; struct oslist_iter iter; struct osinfo info[2]; int len; test_set_skip_delays(true); bootstd_reset_usb(); /* get the oslist device and find two OSes */ ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL_OSLIST, &oslist_dev)); ut_asserteq_str("oslist-extlinux", oslist_dev->name); bc_oslist_setup_iter(&iter); ut_assertok(bc_oslist_next(oslist_dev, &iter, &info[0])); ut_asserteq_str("mmc11.bootdev.part_1", info[0].bflow.name); ut_assertok(bc_oslist_next(oslist_dev, &iter, &info[1])); ut_asserteq_str("hub1.p4.usb_mass_storage.lun0.bootdev.part_1", info[1].bflow.name); test_set_skip_delays(false); /* first use simple_ui as baseline */ ut_assertok(uclass_get_device_by_name(UCLASS_BOOTCTL_UI, "ui-simple", &ui_dev)); ut_assertok(bc_ui_show(ui_dev)); ut_assertok(bc_ui_add(ui_dev, &info[0])); ut_assertok(bc_ui_add(ui_dev, &info[1])); ut_assertok(bc_ui_render(ui_dev)); ut_assertok(uclass_first_device_err(UCLASS_VIDEO, &vid_dev)); ut_asserteq(22656, video_compress_fb(uts, vid_dev, false)); /* dump the simple_ui expo - buf1 is golden for simple_ui */ uc_priv = dev_get_uclass_priv(ui_dev); ut_assertok(membuf_new(&buf1, 4096)); expo_dump(uc_priv->expo, &buf1); len = membuf_getraw(&buf1, -1, false, &data1); ut_assert(len > 0); if (_DEBUG) ut_assertok(os_write_file("simple_ui.txt", data1, len)); /* clear out osinfo and bootflows before using ui2 */ ut_assertok(bootctl_get_dev(UCLASS_BOOTCTL, &logic_dev)); lpriv = dev_get_priv(logic_dev); alist_empty(&lpriv->osinfo); alist_empty(&std->bootflows); /* now use multiboot_ui - this is the initial multiboot state */ ut_assertok(uclass_get_device_by_name(UCLASS_BOOTCTL_UI, "ui-multi", &ui_dev)); ut_assertok(bc_ui_show(ui_dev)); ut_assertok(bc_ui_add(ui_dev, &info[0])); ut_assertok(bc_ui_add(ui_dev, &info[1])); ut_assertok(bc_ui_render(ui_dev)); ut_asserteq(16645, video_compress_fb(uts, vid_dev, false)); /* dump after render - buf2 is golden for multiboot_ui */ uc_priv = dev_get_uclass_priv(ui_dev); ut_assertok(membuf_new(&buf2, 4096)); expo_dump(uc_priv->expo, &buf2); len = membuf_getraw(&buf2, -1, false, &data2); ut_assert(len > 0); if (_DEBUG) ut_assertok(os_write_file("multiboot_ui.txt", data2, len)); /* switch to simple_ui layout and check against buf1 */ ut_assertok(bc_ui_switch_layout(ui_dev)); ut_assertok(bc_ui_render(ui_dev)); ut_asserteq(22656, video_compress_fb(uts, vid_dev, false)); /* dump after switch to simple_ui - buf3 should match buf1 */ ut_assertok(membuf_new(&buf3, 4096)); expo_dump(uc_priv->expo, &buf3); len = membuf_getraw(&buf3, -1, false, &data3); ut_assert(len > 0); if (_DEBUG) ut_assertok(os_write_file("multiboot_ui_switched.txt", data3, len)); /* compare buf3 against buf1 (simple_ui golden) */ if (strcmp(data1, data3)) { printf("Expo dumps differ after switch to simple_ui!\n"); if (_DEBUG) { puts("simple_ui:\n"); puts(data1); puts("multiboot_ui_switched:\n"); puts(data3); } } /* switch back to multiboot UI style and check against buf2 */ ut_assertok(bc_ui_switch_layout(ui_dev)); ut_assertok(bc_ui_render(ui_dev)); ut_asserteq(16645, video_compress_fb(uts, vid_dev, false)); /* dump after switch back to multiboot - buf4 should match buf2 */ ut_assertok(membuf_new(&buf4, 4096)); expo_dump(uc_priv->expo, &buf4); len = membuf_getraw(&buf4, -1, false, &data4); ut_assert(len > 0); if (_DEBUG) ut_assertok(os_write_file("multiboot_ui_switched_back.txt", data4, len)); /* compare buf4 against buf2 (multiboot_ui golden) */ if (strcmp(data2, data4)) { printf("Expo dumps differ after switch back to multiboot!\n"); if (_DEBUG) { puts("multiboot_ui:\n"); puts(data2); puts("multiboot_ui_switched_back:\n"); puts(data4); } } membuf_dispose(&buf1); membuf_dispose(&buf2); membuf_dispose(&buf3); membuf_dispose(&buf4); return 0; } /* test creating multiboot_ui with two OSes */ static int bootctl_multiboot_ui(struct unit_test_state *uts) { static const char *order[3]; struct bootstd_priv *std; const char **old_order; struct udevice *dev; ofnode root, node; int ret; order[0] = "mmc11"; order[1] = "usb3"; order[2] = NULL; /* Enable the requested mmc node since we need a second bootflow */ root = oftree_root(oftree_default()); node = ofnode_find_subnode(root, "mmc11"); ut_assert(ofnode_valid(node)); ut_assertok(lists_bind_fdt(gd->dm_root, node, &dev, NULL, false)); /* Change the order to include the device */ ut_assertok(bootstd_get_priv(&std)); old_order = std->bootdev_order; std->bootdev_order = order; ret = check_multiboot_ui(uts, std); std->bootdev_order = old_order; ut_assertok(ret); return 0; } BOOTCTL_TEST(bootctl_multiboot_ui, UTF_DM | UTF_SCAN_FDT); |