1 // SPDX-License-Identifier: GPL-2.0+
3 * UEFI Shell-like command
5 * Copyright (c) 2018 AKASHI Takahiro, Linaro Limited
10 #include <dm/device.h>
11 #include <efi_dt_fixup.h>
12 #include <efi_load_initrd.h>
13 #include <efi_loader.h>
15 #include <efi_variable.h>
24 #include <linux/ctype.h>
25 #include <linux/err.h>
27 #define BS systab.boottime
29 #ifdef CONFIG_EFI_HAVE_CAPSULE_SUPPORT
31 * do_efi_capsule_update() - process a capsule update
33 * @cmdtp: Command table
35 * @argc: Number of arguments
36 * @argv: Argument array
37 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
39 * Implement efidebug "capsule update" sub-command.
40 * process a capsule update.
42 * efidebug capsule update [-v] <capsule address>
44 static int do_efi_capsule_update(struct cmd_tbl *cmdtp, int flag,
45 int argc, char * const argv[])
47 struct efi_capsule_header *capsule;
52 if (argc != 2 && argc != 3)
56 if (strcmp(argv[1], "-v"))
64 capsule = (typeof(capsule))hextoul(argv[1], &endp);
65 if (endp == argv[1]) {
66 printf("Invalid address: %s", argv[1]);
67 return CMD_RET_FAILURE;
71 printf("Capsule guid: %pUl\n", &capsule->capsule_guid);
72 printf("Capsule flags: 0x%x\n", capsule->flags);
73 printf("Capsule header size: 0x%x\n", capsule->header_size);
74 printf("Capsule image size: 0x%x\n",
75 capsule->capsule_image_size);
78 ret = EFI_CALL(efi_update_capsule(&capsule, 1, 0));
80 printf("Cannot handle a capsule at %p\n", capsule);
81 return CMD_RET_FAILURE;
84 return CMD_RET_SUCCESS;
87 #ifdef CONFIG_EFI_CAPSULE_ON_DISK
88 static int do_efi_capsule_on_disk_update(struct cmd_tbl *cmdtp, int flag,
89 int argc, char * const argv[])
93 ret = efi_launch_capsules();
95 return ret == EFI_SUCCESS ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
100 * do_efi_capsule_show() - show capsule information
102 * @cmdtp: Command table
103 * @flag: Command flag
104 * @argc: Number of arguments
105 * @argv: Argument array
106 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
108 * Implement efidebug "capsule show" sub-command.
109 * show capsule information.
111 * efidebug capsule show <capsule address>
113 static int do_efi_capsule_show(struct cmd_tbl *cmdtp, int flag,
114 int argc, char * const argv[])
116 struct efi_capsule_header *capsule;
120 return CMD_RET_USAGE;
122 capsule = (typeof(capsule))hextoul(argv[1], &endp);
123 if (endp == argv[1]) {
124 printf("Invalid address: %s", argv[1]);
125 return CMD_RET_FAILURE;
128 printf("Capsule guid: %pUl\n", &capsule->capsule_guid);
129 printf("Capsule flags: 0x%x\n", capsule->flags);
130 printf("Capsule header size: 0x%x\n", capsule->header_size);
131 printf("Capsule image size: 0x%x\n",
132 capsule->capsule_image_size);
134 return CMD_RET_SUCCESS;
137 #ifdef CONFIG_EFI_ESRT
139 #define EFI_ESRT_FW_TYPE_NUM 4
140 char *efi_fw_type_str[EFI_ESRT_FW_TYPE_NUM] = {"unknown", "system FW", "device FW",
143 #define EFI_ESRT_UPDATE_STATUS_NUM 9
144 char *efi_update_status_str[EFI_ESRT_UPDATE_STATUS_NUM] = {"success", "unsuccessful",
145 "insufficient resources", "incorrect version", "invalid format",
146 "auth error", "power event (AC)", "power event (batt)",
147 "unsatisfied dependencies"};
149 #define EFI_FW_TYPE_STR_GET(idx) (\
150 EFI_ESRT_FW_TYPE_NUM > (idx) ? efi_fw_type_str[(idx)] : "error"\
153 #define EFI_FW_STATUS_STR_GET(idx) (\
154 EFI_ESRT_UPDATE_STATUS_NUM > (idx) ? efi_update_status_str[(idx)] : "error"\
158 * do_efi_capsule_esrt() - manage UEFI capsules
160 * @cmdtp: Command table
161 * @flag: Command flag
162 * @argc: Number of arguments
163 * @argv: Argument array
164 * Return: CMD_RET_SUCCESS on success,
165 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
167 * Implement efidebug "capsule esrt" sub-command.
168 * The prints the current ESRT table.
170 * efidebug capsule esrt
172 static int do_efi_capsule_esrt(struct cmd_tbl *cmdtp, int flag,
173 int argc, char * const argv[])
175 struct efi_system_resource_table *esrt;
178 return CMD_RET_USAGE;
180 esrt = efi_get_configuration_table(&efi_esrt_guid);
182 log_info("ESRT: table not present\n");
183 return CMD_RET_SUCCESS;
186 printf("========================================\n");
187 printf("ESRT: fw_resource_count=%d\n", esrt->fw_resource_count);
188 printf("ESRT: fw_resource_count_max=%d\n", esrt->fw_resource_count_max);
189 printf("ESRT: fw_resource_version=%lld\n", esrt->fw_resource_version);
191 for (int idx = 0; idx < esrt->fw_resource_count; idx++) {
192 printf("[entry %d]==============================\n", idx);
193 printf("ESRT: fw_class=%pUL\n", &esrt->entries[idx].fw_class);
194 printf("ESRT: fw_type=%s\n", EFI_FW_TYPE_STR_GET(esrt->entries[idx].fw_type));
195 printf("ESRT: fw_version=%d\n", esrt->entries[idx].fw_version);
196 printf("ESRT: lowest_supported_fw_version=%d\n",
197 esrt->entries[idx].lowest_supported_fw_version);
198 printf("ESRT: capsule_flags=%d\n",
199 esrt->entries[idx].capsule_flags);
200 printf("ESRT: last_attempt_version=%d\n",
201 esrt->entries[idx].last_attempt_version);
202 printf("ESRT: last_attempt_status=%s\n",
203 EFI_FW_STATUS_STR_GET(esrt->entries[idx].last_attempt_status));
205 printf("========================================\n");
207 return CMD_RET_SUCCESS;
209 #endif /* CONFIG_EFI_ESRT */
211 * do_efi_capsule_res() - show a capsule update result
213 * @cmdtp: Command table
214 * @flag: Command flag
215 * @argc: Number of arguments
216 * @argv: Argument array
217 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
219 * Implement efidebug "capsule result" sub-command.
220 * show a capsule update result.
221 * If result number is not specified, CapsuleLast will be shown.
223 * efidebug capsule result [<capsule result number>]
225 static int do_efi_capsule_res(struct cmd_tbl *cmdtp, int flag,
226 int argc, char * const argv[])
232 struct efi_capsule_result_variable_header *result = NULL;
236 if (argc != 1 && argc != 2)
237 return CMD_RET_USAGE;
239 guid = efi_guid_capsule_report;
241 size = sizeof(var_name16);
242 ret = efi_get_variable_int(u"CapsuleLast", &guid, NULL,
243 &size, var_name16, NULL);
245 if (ret != EFI_SUCCESS) {
246 if (ret == EFI_NOT_FOUND)
247 printf("CapsuleLast doesn't exist\n");
249 printf("Failed to get CapsuleLast\n");
251 return CMD_RET_FAILURE;
253 printf("CapsuleLast is %ls\n", var_name16);
258 capsule_id = hextoul(argv[0], &endp);
259 if (capsule_id < 0 || capsule_id > 0xffff)
260 return CMD_RET_USAGE;
262 efi_create_indexed_name(var_name16, sizeof(var_name16),
263 "Capsule", capsule_id);
267 ret = efi_get_variable_int(var_name16, &guid, NULL, &size, NULL, NULL);
268 if (ret == EFI_BUFFER_TOO_SMALL) {
269 result = malloc(size);
271 return CMD_RET_FAILURE;
272 ret = efi_get_variable_int(var_name16, &guid, NULL, &size,
275 if (ret != EFI_SUCCESS) {
277 printf("Failed to get %ls\n", var_name16);
279 return CMD_RET_FAILURE;
282 printf("Result total size: 0x%x\n", result->variable_total_size);
283 printf("Capsule guid: %pUl\n", &result->capsule_guid);
284 printf("Time processed: %04d-%02d-%02d %02d:%02d:%02d\n",
285 result->capsule_processed.year, result->capsule_processed.month,
286 result->capsule_processed.day, result->capsule_processed.hour,
287 result->capsule_processed.minute,
288 result->capsule_processed.second);
289 printf("Capsule status: 0x%lx\n", result->capsule_status);
293 return CMD_RET_SUCCESS;
296 static struct cmd_tbl cmd_efidebug_capsule_sub[] = {
297 U_BOOT_CMD_MKENT(update, CONFIG_SYS_MAXARGS, 1, do_efi_capsule_update,
299 U_BOOT_CMD_MKENT(show, CONFIG_SYS_MAXARGS, 1, do_efi_capsule_show,
301 #ifdef CONFIG_EFI_ESRT
302 U_BOOT_CMD_MKENT(esrt, CONFIG_SYS_MAXARGS, 1, do_efi_capsule_esrt,
305 #ifdef CONFIG_EFI_CAPSULE_ON_DISK
306 U_BOOT_CMD_MKENT(disk-update, 0, 0, do_efi_capsule_on_disk_update,
309 U_BOOT_CMD_MKENT(result, CONFIG_SYS_MAXARGS, 1, do_efi_capsule_res,
314 * do_efi_capsule() - manage UEFI capsules
316 * @cmdtp: Command table
317 * @flag: Command flag
318 * @argc: Number of arguments
319 * @argv: Argument array
320 * Return: CMD_RET_SUCCESS on success,
321 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
323 * Implement efidebug "capsule" sub-command.
325 static int do_efi_capsule(struct cmd_tbl *cmdtp, int flag,
326 int argc, char * const argv[])
331 return CMD_RET_USAGE;
335 cp = find_cmd_tbl(argv[0], cmd_efidebug_capsule_sub,
336 ARRAY_SIZE(cmd_efidebug_capsule_sub));
338 return CMD_RET_USAGE;
340 return cp->cmd(cmdtp, flag, argc, argv);
342 #endif /* CONFIG_EFI_HAVE_CAPSULE_SUPPORT */
344 #define EFI_HANDLE_WIDTH ((int)sizeof(efi_handle_t) * 2)
346 static const char spc[] = " ";
347 static const char sep[] = "================";
350 * efi_get_driver_handle_info() - get information of UEFI driver
352 * @handle: Handle of UEFI device
353 * @driver_name: Driver name
354 * @image_path: Pointer to text of device path
355 * Return: 0 on success, -1 on failure
357 * Currently return no useful information as all UEFI drivers are
360 static int efi_get_driver_handle_info(efi_handle_t handle, u16 **driver_name,
363 struct efi_handler *handler;
364 struct efi_loaded_image *image;
369 * TODO: support EFI_COMPONENT_NAME2_PROTOCOL
374 ret = efi_search_protocol(handle, &efi_guid_loaded_image, &handler);
375 if (ret != EFI_SUCCESS) {
380 image = handler->protocol_interface;
381 *image_path = efi_dp_str(image->file_path);
387 * do_efi_show_drivers() - show UEFI drivers
389 * @cmdtp: Command table
390 * @flag: Command flag
391 * @argc: Number of arguments
392 * @argv: Argument array
393 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
395 * Implement efidebug "drivers" sub-command.
396 * Show all UEFI drivers and their information.
398 static int do_efi_show_drivers(struct cmd_tbl *cmdtp, int flag,
399 int argc, char *const argv[])
401 efi_handle_t *handles;
403 u16 *driver_name, *image_path_text;
406 ret = EFI_CALL(efi_locate_handle_buffer(
407 BY_PROTOCOL, &efi_guid_driver_binding_protocol,
408 NULL, &num, &handles));
409 if (ret != EFI_SUCCESS)
410 return CMD_RET_FAILURE;
413 return CMD_RET_SUCCESS;
415 printf("Driver%.*s Name Image Path\n",
416 EFI_HANDLE_WIDTH - 6, spc);
417 printf("%.*s ==================== ====================\n",
418 EFI_HANDLE_WIDTH, sep);
419 for (i = 0; i < num; i++) {
420 if (!efi_get_driver_handle_info(handles[i], &driver_name,
423 printf("%p %-20ls %ls\n", handles[i],
424 driver_name, image_path_text);
426 printf("%p %-20ls <built-in>\n",
427 handles[i], driver_name);
428 efi_free_pool(driver_name);
429 efi_free_pool(image_path_text);
433 efi_free_pool(handles);
435 return CMD_RET_SUCCESS;
439 * do_efi_show_handles() - show UEFI handles
441 * @cmdtp: Command table
442 * @flag: Command flag
443 * @argc: Number of arguments
444 * @argv: Argument array
445 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
447 * Implement efidebug "dh" sub-command.
448 * Show all UEFI handles and their information, currently all protocols
451 static int do_efi_show_handles(struct cmd_tbl *cmdtp, int flag,
452 int argc, char *const argv[])
454 efi_handle_t *handles;
456 efi_uintn_t num, count, i, j;
459 ret = EFI_CALL(efi_locate_handle_buffer(ALL_HANDLES, NULL, NULL,
461 if (ret != EFI_SUCCESS)
462 return CMD_RET_FAILURE;
465 return CMD_RET_SUCCESS;
467 for (i = 0; i < num; i++) {
468 struct efi_handler *handler;
470 printf("\n%p", handles[i]);
472 printf(" (%s)", handles[i]->dev->name);
474 /* Print device path */
475 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
477 if (ret == EFI_SUCCESS)
478 printf(" %pD\n", handler->protocol_interface);
479 ret = EFI_CALL(BS->protocols_per_handle(handles[i], &guid,
481 /* Print other protocols */
482 for (j = 0; j < count; j++) {
483 if (guidcmp(guid[j], &efi_guid_device_path))
484 printf(" %pUs\n", guid[j]);
489 efi_free_pool(handles);
491 return CMD_RET_SUCCESS;
495 * do_efi_show_images() - show UEFI images
497 * @cmdtp: Command table
498 * @flag: Command flag
499 * @argc: Number of arguments
500 * @argv: Argument array
501 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
503 * Implement efidebug "images" sub-command.
504 * Show all UEFI loaded images and their information.
506 static int do_efi_show_images(struct cmd_tbl *cmdtp, int flag,
507 int argc, char *const argv[])
509 efi_print_image_infos(NULL);
511 return CMD_RET_SUCCESS;
514 static const char * const efi_mem_type_string[] = {
515 [EFI_RESERVED_MEMORY_TYPE] = "RESERVED",
516 [EFI_LOADER_CODE] = "LOADER CODE",
517 [EFI_LOADER_DATA] = "LOADER DATA",
518 [EFI_BOOT_SERVICES_CODE] = "BOOT CODE",
519 [EFI_BOOT_SERVICES_DATA] = "BOOT DATA",
520 [EFI_RUNTIME_SERVICES_CODE] = "RUNTIME CODE",
521 [EFI_RUNTIME_SERVICES_DATA] = "RUNTIME DATA",
522 [EFI_CONVENTIONAL_MEMORY] = "CONVENTIONAL",
523 [EFI_UNUSABLE_MEMORY] = "UNUSABLE MEM",
524 [EFI_ACPI_RECLAIM_MEMORY] = "ACPI RECLAIM MEM",
525 [EFI_ACPI_MEMORY_NVS] = "ACPI NVS",
526 [EFI_MMAP_IO] = "IO",
527 [EFI_MMAP_IO_PORT] = "IO PORT",
528 [EFI_PAL_CODE] = "PAL",
529 [EFI_PERSISTENT_MEMORY_TYPE] = "PERSISTENT",
532 static const struct efi_mem_attrs {
535 } efi_mem_attrs[] = {
536 {EFI_MEMORY_UC, "UC"},
537 {EFI_MEMORY_UC, "UC"},
538 {EFI_MEMORY_WC, "WC"},
539 {EFI_MEMORY_WT, "WT"},
540 {EFI_MEMORY_WB, "WB"},
541 {EFI_MEMORY_UCE, "UCE"},
542 {EFI_MEMORY_WP, "WP"},
543 {EFI_MEMORY_RP, "RP"},
544 {EFI_MEMORY_XP, "WP"},
545 {EFI_MEMORY_NV, "NV"},
546 {EFI_MEMORY_MORE_RELIABLE, "REL"},
547 {EFI_MEMORY_RO, "RO"},
548 {EFI_MEMORY_SP, "SP"},
549 {EFI_MEMORY_RUNTIME, "RT"},
553 * print_memory_attributes() - print memory map attributes
555 * @attributes: Attribute value
557 * Print memory map attributes
559 static void print_memory_attributes(u64 attributes)
563 for (sep = 0, i = 0; i < ARRAY_SIZE(efi_mem_attrs); i++)
564 if (attributes & efi_mem_attrs[i].bit) {
571 puts(efi_mem_attrs[i].text);
575 #define EFI_PHYS_ADDR_WIDTH (int)(sizeof(efi_physical_addr_t) * 2)
578 * do_efi_show_memmap() - show UEFI memory map
580 * @cmdtp: Command table
581 * @flag: Command flag
582 * @argc: Number of arguments
583 * @argv: Argument array
584 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
586 * Implement efidebug "memmap" sub-command.
587 * Show UEFI memory map.
589 static int do_efi_show_memmap(struct cmd_tbl *cmdtp, int flag,
590 int argc, char *const argv[])
592 struct efi_mem_desc *memmap, *map;
593 efi_uintn_t map_size;
598 ret = efi_get_memory_map_alloc(&map_size, &memmap);
599 if (ret != EFI_SUCCESS)
600 return CMD_RET_FAILURE;
602 printf("Type Start%.*s End%.*s Attributes\n",
603 EFI_PHYS_ADDR_WIDTH - 5, spc, EFI_PHYS_ADDR_WIDTH - 3, spc);
604 printf("================ %.*s %.*s ==========\n",
605 EFI_PHYS_ADDR_WIDTH, sep, EFI_PHYS_ADDR_WIDTH, sep);
607 * Coverity check: dereferencing null pointer "map."
608 * This is a false positive as memmap will always be
609 * populated by allocate_pool() above.
611 for (i = 0, map = memmap; i < map_size / sizeof(*map); map++, i++) {
612 if (map->type < ARRAY_SIZE(efi_mem_type_string))
613 type = efi_mem_type_string[map->type];
617 printf("%-16s %.*llx-%.*llx", type,
619 (u64)map_to_sysmem((void *)(uintptr_t)
620 map->physical_start),
622 (u64)map_to_sysmem((void *)(uintptr_t)
623 (map->physical_start +
624 map->num_pages * EFI_PAGE_SIZE)));
626 print_memory_attributes(map->attribute);
630 efi_free_pool(memmap);
632 return CMD_RET_SUCCESS;
636 * do_efi_show_tables() - show UEFI configuration tables
638 * @cmdtp: Command table
639 * @flag: Command flag
640 * @argc: Number of arguments
641 * @argv: Argument array
642 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
644 * Implement efidebug "tables" sub-command.
645 * Show UEFI configuration tables.
647 static int do_efi_show_tables(struct cmd_tbl *cmdtp, int flag,
648 int argc, char *const argv[])
650 efi_show_tables(&systab);
652 return CMD_RET_SUCCESS;
656 * create_initrd_dp() - create a special device for our Boot### option
659 * @part: disk partition
661 * @shortform: create short form device path
662 * Return: pointer to the device path or ERR_PTR
665 struct efi_device_path *create_initrd_dp(const char *dev, const char *part,
666 const char *file, int shortform)
669 struct efi_device_path *tmp_dp = NULL, *tmp_fp = NULL, *short_fp = NULL;
670 struct efi_device_path *initrd_dp = NULL;
672 const struct efi_initrd_dp id_dp = {
675 DEVICE_PATH_TYPE_MEDIA_DEVICE,
676 DEVICE_PATH_SUB_TYPE_VENDOR_PATH,
677 sizeof(id_dp.vendor),
679 EFI_INITRD_MEDIA_GUID,
682 DEVICE_PATH_TYPE_END,
683 DEVICE_PATH_SUB_TYPE_END,
688 ret = efi_dp_from_name(dev, part, file, &tmp_dp, &tmp_fp);
689 if (ret != EFI_SUCCESS) {
690 printf("Cannot create device path for \"%s %s\"\n", part, file);
694 short_fp = efi_dp_shorten(tmp_fp);
698 initrd_dp = efi_dp_concat((const struct efi_device_path *)&id_dp,
702 efi_free_pool(tmp_dp);
703 efi_free_pool(tmp_fp);
708 * efi_boot_add_uri() - set URI load option
710 * @argc: Number of arguments
711 * @argv: Argument array
712 * @var_name16: variable name buffer
713 * @var_name16_size: variable name buffer size
714 * @lo: pointer to the load option
715 * @file_path: buffer to set the generated device path pointer
716 * @fp_size: file_path size
717 * Return: CMD_RET_SUCCESS on success,
718 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
720 static int efi_boot_add_uri(int argc, char *const argv[], u16 *var_name16,
721 size_t var_name16_size, struct efi_load_option *lo,
722 struct efi_device_path **file_path,
723 efi_uintn_t *fp_size)
729 efi_uintn_t uridp_len;
730 struct efi_device_path_uri *uridp;
732 if (argc < 3 || lo->label)
733 return CMD_RET_USAGE;
735 id = (int)hextoul(argv[1], &endp);
736 if (*endp != '\0' || id > 0xffff)
737 return CMD_RET_USAGE;
739 label = efi_convert_string(argv[2]);
741 return CMD_RET_FAILURE;
743 if (!wget_validate_uri(argv[3])) {
744 printf("ERROR: invalid URI\n");
745 return CMD_RET_FAILURE;
748 efi_create_indexed_name(var_name16, var_name16_size, "Boot", id);
751 uridp_len = sizeof(struct efi_device_path) + strlen(argv[3]) + 1;
752 uridp = efi_alloc(uridp_len + sizeof(END));
754 log_err("Out of memory\n");
755 return CMD_RET_FAILURE;
757 uridp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
758 uridp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_URI;
759 uridp->dp.length = uridp_len;
760 strcpy(uridp->uri, argv[3]);
761 pos = (char *)uridp + uridp_len;
762 memcpy(pos, &END, sizeof(END));
764 *file_path = &uridp->dp;
765 *fp_size += uridp_len + sizeof(END);
767 return CMD_RET_SUCCESS;
771 * do_efi_boot_add() - set UEFI load option
773 * @cmdtp: Command table
774 * @flag: Command flag
775 * @argc: Number of arguments
776 * @argv: Argument array
777 * Return: CMD_RET_SUCCESS on success,
778 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
780 * Implement efidebug "boot add" sub-command. Create or change UEFI load option.
782 * efidebug boot add -b <id> <label> <interface> <devnum>[:<part>] <file>
783 * -i <file> <interface2> <devnum2>[:<part>] <initrd>
786 static int do_efi_boot_add(struct cmd_tbl *cmdtp, int flag,
787 int argc, char *const argv[])
794 struct efi_device_path *file_path = NULL;
795 struct efi_device_path *fp_free = NULL;
796 struct efi_device_path *final_fp = NULL;
797 struct efi_device_path *initrd_dp = NULL;
798 struct efi_load_option lo;
801 efi_uintn_t fp_size = 0;
803 int r = CMD_RET_SUCCESS;
805 guid = efi_global_variable_guid;
808 lo.attributes = LOAD_OPTION_ACTIVE; /* always ACTIVE */
809 lo.optional_data = NULL;
814 for (; argc > 0; argc--, argv++) {
817 if (*argv[0] != '-' || strlen(argv[0]) != 2) {
822 switch (argv[0][1]) {
827 if (argc < 5 || lo.label) {
831 id = (int)hextoul(argv[1], &endp);
832 if (*endp != '\0' || id > 0xffff)
833 return CMD_RET_USAGE;
835 efi_create_indexed_name(var_name16, sizeof(var_name16),
839 label = efi_convert_string(argv[2]);
841 return CMD_RET_FAILURE;
842 lo.label = label; /* label will be changed below */
845 ret = efi_dp_from_name(argv[3], argv[4], argv[5],
847 if (ret != EFI_SUCCESS) {
848 printf("Cannot create device path for \"%s %s\"\n",
854 file_path = efi_dp_shorten(fp_free);
857 fp_size += efi_dp_size(file_path) +
858 sizeof(struct efi_device_path);
866 if (argc < 3 || initrd_dp) {
871 initrd_dp = create_initrd_dp(argv[1], argv[2], argv[3],
874 printf("Cannot add an initrd\n");
880 fp_size += efi_dp_size(initrd_dp) +
881 sizeof(struct efi_device_path);
884 if (argc < 1 || lo.optional_data) {
888 lo.optional_data = (const u8 *)argv[1];
893 if (IS_ENABLED(CONFIG_EFI_HTTP_BOOT)) {
894 r = efi_boot_add_uri(argc, argv, var_name16,
895 sizeof(var_name16), &lo,
896 &file_path, &fp_size);
897 if (r != CMD_RET_SUCCESS)
914 printf("Missing binary\n");
919 final_fp = efi_dp_concat(file_path, initrd_dp, true);
921 printf("Cannot create final device path\n");
926 lo.file_path = final_fp;
927 lo.file_path_length = fp_size;
929 size = efi_serialize_load_option(&lo, (u8 **)&data);
935 ret = efi_set_variable_int(var_name16, &guid,
936 EFI_VARIABLE_NON_VOLATILE |
937 EFI_VARIABLE_BOOTSERVICE_ACCESS |
938 EFI_VARIABLE_RUNTIME_ACCESS,
940 if (ret != EFI_SUCCESS) {
941 printf("Cannot set %ls\n", var_name16);
947 efi_free_pool(final_fp);
948 efi_free_pool(initrd_dp);
949 efi_free_pool(fp_free);
956 * do_efi_boot_rm() - delete UEFI load options
958 * @cmdtp: Command table
959 * @flag: Command flag
960 * @argc: Number of arguments
961 * @argv: Argument array
962 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
964 * Implement efidebug "boot rm" sub-command.
965 * Delete UEFI load options.
967 * efidebug boot rm <id> ...
969 static int do_efi_boot_rm(struct cmd_tbl *cmdtp, int flag,
970 int argc, char *const argv[])
979 return CMD_RET_USAGE;
981 guid = efi_global_variable_guid;
982 for (i = 1; i < argc; i++, argv++) {
983 id = (int)hextoul(argv[1], &endp);
984 if (*endp != '\0' || id > 0xffff)
985 return CMD_RET_FAILURE;
987 efi_create_indexed_name(var_name16, sizeof(var_name16),
989 ret = efi_set_variable_int(var_name16, &guid, 0, 0, NULL,
992 printf("Cannot remove %ls\n", var_name16);
993 return CMD_RET_FAILURE;
997 return CMD_RET_SUCCESS;
1001 * show_efi_boot_opt_data() - dump UEFI load option
1003 * @varname16: variable name
1004 * @data: value of UEFI load option variable
1005 * @size: size of the boot option
1007 * Decode the value of UEFI load option variable and print information.
1009 static void show_efi_boot_opt_data(u16 *varname16, void *data, size_t *size)
1011 struct efi_device_path *initrd_path = NULL;
1012 struct efi_load_option lo;
1015 ret = efi_deserialize_load_option(&lo, data, size);
1016 if (ret != EFI_SUCCESS) {
1017 printf("%ls: invalid load option\n", varname16);
1021 printf("%ls:\nattributes: %c%c%c (0x%08x)\n",
1024 lo.attributes & LOAD_OPTION_ACTIVE ? 'A' : '-',
1025 /* FORCE RECONNECT */
1026 lo.attributes & LOAD_OPTION_FORCE_RECONNECT ? 'R' : '-',
1028 lo.attributes & LOAD_OPTION_HIDDEN ? 'H' : '-',
1030 printf(" label: %ls\n", lo.label);
1032 printf(" file_path: %pD\n", lo.file_path);
1034 initrd_path = efi_dp_from_lo(&lo, &efi_lf2_initrd_guid);
1036 printf(" initrd_path: %pD\n", initrd_path);
1037 efi_free_pool(initrd_path);
1041 print_hex_dump(" ", DUMP_PREFIX_OFFSET, 16, 1,
1042 lo.optional_data, *size, true);
1046 * show_efi_boot_opt() - dump UEFI load option
1048 * @varname16: variable name
1050 * Dump information defined by UEFI load option.
1052 static void show_efi_boot_opt(u16 *varname16)
1059 ret = efi_get_variable_int(varname16, &efi_global_variable_guid,
1060 NULL, &size, NULL, NULL);
1061 if (ret == EFI_BUFFER_TOO_SMALL) {
1062 data = malloc(size);
1064 printf("ERROR: Out of memory\n");
1067 ret = efi_get_variable_int(varname16, &efi_global_variable_guid,
1068 NULL, &size, data, NULL);
1069 if (ret == EFI_SUCCESS)
1070 show_efi_boot_opt_data(varname16, data, &size);
1076 * show_efi_boot_dump() - dump all UEFI load options
1078 * @cmdtp: Command table
1079 * @flag: Command flag
1080 * @argc: Number of arguments
1081 * @argv: Argument array
1082 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
1084 * Implement efidebug "boot dump" sub-command.
1085 * Dump information of all UEFI load options defined.
1087 * efidebug boot dump
1089 static int do_efi_boot_dump(struct cmd_tbl *cmdtp, int flag,
1090 int argc, char *const argv[])
1092 u16 *var_name16, *p;
1093 efi_uintn_t buf_size, size;
1098 return CMD_RET_USAGE;
1101 var_name16 = malloc(buf_size);
1103 return CMD_RET_FAILURE;
1108 ret = efi_get_next_variable_name_int(&size, var_name16, &guid);
1109 if (ret == EFI_NOT_FOUND)
1111 if (ret == EFI_BUFFER_TOO_SMALL) {
1113 p = realloc(var_name16, buf_size);
1116 return CMD_RET_FAILURE;
1119 ret = efi_get_next_variable_name_int(&size, var_name16,
1122 if (ret != EFI_SUCCESS) {
1124 return CMD_RET_FAILURE;
1127 if (efi_varname_is_load_option(var_name16, NULL))
1128 show_efi_boot_opt(var_name16);
1133 return CMD_RET_SUCCESS;
1137 * show_efi_boot_order() - show order of UEFI load options
1139 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
1141 * Show order of UEFI load options defined by BootOrder variable.
1143 static int show_efi_boot_order(void)
1150 struct efi_load_option lo;
1154 ret = efi_get_variable_int(u"BootOrder", &efi_global_variable_guid,
1155 NULL, &size, NULL, NULL);
1156 if (ret != EFI_BUFFER_TOO_SMALL) {
1157 if (ret == EFI_NOT_FOUND) {
1158 printf("BootOrder not defined\n");
1159 return CMD_RET_SUCCESS;
1161 return CMD_RET_FAILURE;
1164 bootorder = malloc(size);
1166 printf("ERROR: Out of memory\n");
1167 return CMD_RET_FAILURE;
1169 ret = efi_get_variable_int(u"BootOrder", &efi_global_variable_guid,
1170 NULL, &size, bootorder, NULL);
1171 if (ret != EFI_SUCCESS) {
1172 ret = CMD_RET_FAILURE;
1176 num = size / sizeof(u16);
1177 for (i = 0; i < num; i++) {
1178 efi_create_indexed_name(var_name16, sizeof(var_name16),
1179 "Boot", bootorder[i]);
1182 ret = efi_get_variable_int(var_name16,
1183 &efi_global_variable_guid, NULL,
1185 if (ret != EFI_BUFFER_TOO_SMALL) {
1186 printf("%2d: %ls: (not defined)\n", i + 1, var_name16);
1190 data = malloc(size);
1192 ret = CMD_RET_FAILURE;
1195 ret = efi_get_variable_int(var_name16,
1196 &efi_global_variable_guid, NULL,
1198 if (ret != EFI_SUCCESS) {
1200 ret = CMD_RET_FAILURE;
1204 ret = efi_deserialize_load_option(&lo, data, &size);
1205 if (ret != EFI_SUCCESS) {
1206 printf("%ls: invalid load option\n", var_name16);
1207 ret = CMD_RET_FAILURE;
1211 printf("%2d: %ls: %ls\n", i + 1, var_name16, lo.label);
1222 * do_efi_boot_next() - manage UEFI BootNext variable
1224 * @cmdtp: Command table
1225 * @flag: Command flag
1226 * @argc: Number of arguments
1227 * @argv: Argument array
1228 * Return: CMD_RET_SUCCESS on success,
1229 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1231 * Implement efidebug "boot next" sub-command.
1232 * Set BootNext variable.
1234 * efidebug boot next <id>
1236 static int do_efi_boot_next(struct cmd_tbl *cmdtp, int flag,
1237 int argc, char *const argv[])
1244 int r = CMD_RET_SUCCESS;
1247 return CMD_RET_USAGE;
1249 bootnext = (u16)hextoul(argv[1], &endp);
1251 printf("invalid value: %s\n", argv[1]);
1252 r = CMD_RET_FAILURE;
1256 guid = efi_global_variable_guid;
1258 ret = efi_set_variable_int(u"BootNext", &guid,
1259 EFI_VARIABLE_NON_VOLATILE |
1260 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1261 EFI_VARIABLE_RUNTIME_ACCESS,
1262 size, &bootnext, false);
1263 if (ret != EFI_SUCCESS) {
1264 printf("Cannot set BootNext\n");
1265 r = CMD_RET_FAILURE;
1272 * do_efi_boot_order() - manage UEFI BootOrder variable
1274 * @cmdtp: Command table
1275 * @flag: Command flag
1276 * @argc: Number of arguments
1277 * @argv: Argument array
1278 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
1280 * Implement efidebug "boot order" sub-command.
1281 * Show order of UEFI load options, or change it in BootOrder variable.
1283 * efidebug boot order [<id> ...]
1285 static int do_efi_boot_order(struct cmd_tbl *cmdtp, int flag,
1286 int argc, char *const argv[])
1288 u16 *bootorder = NULL;
1294 int r = CMD_RET_SUCCESS;
1297 return show_efi_boot_order();
1302 size = argc * sizeof(u16);
1303 bootorder = malloc(size);
1305 return CMD_RET_FAILURE;
1307 for (i = 0; i < argc; i++) {
1308 id = (int)hextoul(argv[i], &endp);
1309 if (*endp != '\0' || id > 0xffff) {
1310 printf("invalid value: %s\n", argv[i]);
1311 r = CMD_RET_FAILURE;
1315 bootorder[i] = (u16)id;
1318 guid = efi_global_variable_guid;
1319 ret = efi_set_variable_int(u"BootOrder", &guid,
1320 EFI_VARIABLE_NON_VOLATILE |
1321 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1322 EFI_VARIABLE_RUNTIME_ACCESS,
1323 size, bootorder, true);
1324 if (ret != EFI_SUCCESS) {
1325 printf("Cannot set BootOrder\n");
1326 r = CMD_RET_FAILURE;
1334 static struct cmd_tbl cmd_efidebug_boot_sub[] = {
1335 U_BOOT_CMD_MKENT(add, CONFIG_SYS_MAXARGS, 1, do_efi_boot_add, "", ""),
1336 U_BOOT_CMD_MKENT(rm, CONFIG_SYS_MAXARGS, 1, do_efi_boot_rm, "", ""),
1337 U_BOOT_CMD_MKENT(dump, CONFIG_SYS_MAXARGS, 1, do_efi_boot_dump, "", ""),
1338 U_BOOT_CMD_MKENT(next, CONFIG_SYS_MAXARGS, 1, do_efi_boot_next, "", ""),
1339 U_BOOT_CMD_MKENT(order, CONFIG_SYS_MAXARGS, 1, do_efi_boot_order,
1344 * do_efi_boot_opt() - manage UEFI load options
1346 * @cmdtp: Command table
1347 * @flag: Command flag
1348 * @argc: Number of arguments
1349 * @argv: Argument array
1350 * Return: CMD_RET_SUCCESS on success,
1351 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1353 * Implement efidebug "boot" sub-command.
1355 static int do_efi_boot_opt(struct cmd_tbl *cmdtp, int flag,
1356 int argc, char *const argv[])
1361 return CMD_RET_USAGE;
1365 cp = find_cmd_tbl(argv[0], cmd_efidebug_boot_sub,
1366 ARRAY_SIZE(cmd_efidebug_boot_sub));
1368 return CMD_RET_USAGE;
1370 return cp->cmd(cmdtp, flag, argc, argv);
1374 * do_efi_test_bootmgr() - run simple bootmgr for test
1376 * @cmdtp: Command table
1377 * @flag: Command flag
1378 * @argc: Number of arguments
1379 * @argv: Argument array
1380 * Return: CMD_RET_SUCCESS on success,
1381 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1383 * Implement efidebug "test bootmgr" sub-command.
1384 * Run simple bootmgr for test.
1386 * efidebug test bootmgr
1388 static __maybe_unused int do_efi_test_bootmgr(struct cmd_tbl *cmdtp, int flag,
1389 int argc, char * const argv[])
1392 efi_uintn_t exit_data_size = 0;
1393 u16 *exit_data = NULL;
1395 void *load_options = NULL;
1397 ret = efi_bootmgr_load(&image, &load_options);
1398 printf("efi_bootmgr_load() returned: %ld\n", ret & ~EFI_ERROR_MASK);
1399 if (ret != EFI_SUCCESS)
1400 return CMD_RET_SUCCESS;
1402 /* We call efi_start_image() even if error for test purpose. */
1403 ret = EFI_CALL(efi_start_image(image, &exit_data_size, &exit_data));
1404 printf("efi_start_image() returned: %ld\n", ret & ~EFI_ERROR_MASK);
1405 if (ret && exit_data)
1406 efi_free_pool(exit_data);
1409 return CMD_RET_SUCCESS;
1412 static struct cmd_tbl cmd_efidebug_test_sub[] = {
1413 #ifdef CONFIG_EFI_BOOTMGR
1414 U_BOOT_CMD_MKENT(bootmgr, CONFIG_SYS_MAXARGS, 1, do_efi_test_bootmgr,
1420 * do_efi_test() - manage UEFI load options
1422 * @cmdtp: Command table
1423 * @flag: Command flag
1424 * @argc: Number of arguments
1425 * @argv: Argument array
1426 * Return: CMD_RET_SUCCESS on success,
1427 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1429 * Implement efidebug "test" sub-command.
1431 static int do_efi_test(struct cmd_tbl *cmdtp, int flag,
1432 int argc, char * const argv[])
1437 return CMD_RET_USAGE;
1441 cp = find_cmd_tbl(argv[0], cmd_efidebug_test_sub,
1442 ARRAY_SIZE(cmd_efidebug_test_sub));
1444 return CMD_RET_USAGE;
1446 return cp->cmd(cmdtp, flag, argc, argv);
1450 * do_efi_query_info() - QueryVariableInfo EFI service
1452 * @cmdtp: Command table
1453 * @flag: Command flag
1454 * @argc: Number of arguments
1455 * @argv: Argument array
1456 * Return: CMD_RET_SUCCESS on success,
1457 * CMD_RET_USAGE or CMD_RET_FAILURE on failure
1459 * Implement efidebug "test" sub-command.
1462 static int do_efi_query_info(struct cmd_tbl *cmdtp, int flag,
1463 int argc, char * const argv[])
1467 u64 max_variable_storage_size;
1468 u64 remain_variable_storage_size;
1469 u64 max_variable_size;
1472 for (i = 1; i < argc; i++) {
1473 if (!strcmp(argv[i], "-bs"))
1474 attr |= EFI_VARIABLE_BOOTSERVICE_ACCESS;
1475 else if (!strcmp(argv[i], "-rt"))
1476 attr |= EFI_VARIABLE_RUNTIME_ACCESS;
1477 else if (!strcmp(argv[i], "-nv"))
1478 attr |= EFI_VARIABLE_NON_VOLATILE;
1479 else if (!strcmp(argv[i], "-at"))
1481 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS;
1484 ret = efi_query_variable_info_int(attr, &max_variable_storage_size,
1485 &remain_variable_storage_size,
1486 &max_variable_size);
1487 if (ret != EFI_SUCCESS) {
1488 printf("Error: Cannot query UEFI variables, r = %lu\n",
1489 ret & ~EFI_ERROR_MASK);
1490 return CMD_RET_FAILURE;
1493 printf("Max storage size %llu\n", max_variable_storage_size);
1494 printf("Remaining storage size %llu\n", remain_variable_storage_size);
1495 printf("Max variable size %llu\n", max_variable_size);
1497 return CMD_RET_SUCCESS;
1500 static struct cmd_tbl cmd_efidebug_sub[] = {
1501 U_BOOT_CMD_MKENT(boot, CONFIG_SYS_MAXARGS, 1, do_efi_boot_opt, "", ""),
1502 #ifdef CONFIG_EFI_HAVE_CAPSULE_SUPPORT
1503 U_BOOT_CMD_MKENT(capsule, CONFIG_SYS_MAXARGS, 1, do_efi_capsule,
1506 U_BOOT_CMD_MKENT(drivers, CONFIG_SYS_MAXARGS, 1, do_efi_show_drivers,
1508 U_BOOT_CMD_MKENT(dh, CONFIG_SYS_MAXARGS, 1, do_efi_show_handles,
1510 U_BOOT_CMD_MKENT(images, CONFIG_SYS_MAXARGS, 1, do_efi_show_images,
1512 U_BOOT_CMD_MKENT(memmap, CONFIG_SYS_MAXARGS, 1, do_efi_show_memmap,
1514 U_BOOT_CMD_MKENT(tables, CONFIG_SYS_MAXARGS, 1, do_efi_show_tables,
1516 U_BOOT_CMD_MKENT(test, CONFIG_SYS_MAXARGS, 1, do_efi_test,
1518 U_BOOT_CMD_MKENT(query, CONFIG_SYS_MAXARGS, 1, do_efi_query_info,
1523 * do_efidebug() - display and configure UEFI environment
1525 * @cmdtp: Command table
1526 * @flag: Command flag
1527 * @argc: Number of arguments
1528 * @argv: Argument array
1529 * Return: CMD_RET_SUCCESS on success,
1530 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1532 * Implement efidebug command which allows us to display and
1533 * configure UEFI environment.
1535 static int do_efidebug(struct cmd_tbl *cmdtp, int flag,
1536 int argc, char *const argv[])
1542 return CMD_RET_USAGE;
1546 /* Initialize UEFI drivers */
1547 r = efi_init_obj_list();
1548 if (r != EFI_SUCCESS) {
1549 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
1550 r & ~EFI_ERROR_MASK);
1551 return CMD_RET_FAILURE;
1554 cp = find_cmd_tbl(argv[0], cmd_efidebug_sub,
1555 ARRAY_SIZE(cmd_efidebug_sub));
1557 return CMD_RET_USAGE;
1559 return cp->cmd(cmdtp, flag, argc, argv);
1562 U_BOOT_LONGHELP(efidebug,
1563 " - UEFI Shell-like interface to configure UEFI environment\n"
1565 "efidebug boot add - set UEFI BootXXXX variable\n"
1566 " -b|-B <bootid> <label> <interface> <devnum>[:<part>] <file path>\n"
1567 " -i|-I <interface> <devnum>[:<part>] <initrd file path>\n"
1568 " (-b, -i for short form device path)\n"
1569 #if (IS_ENABLED(CONFIG_EFI_HTTP_BOOT))
1570 " -u <bootid> <label> <uri>\n"
1572 " -s '<optional data>'\n"
1573 "efidebug boot rm <bootid#1> [<bootid#2> [<bootid#3> [...]]]\n"
1574 " - delete UEFI BootXXXX variables\n"
1575 "efidebug boot dump\n"
1576 " - dump all UEFI BootXXXX variables\n"
1577 "efidebug boot next <bootid>\n"
1578 " - set UEFI BootNext variable\n"
1579 "efidebug boot order [<bootid#1> [<bootid#2> [<bootid#3> [...]]]]\n"
1580 " - set/show UEFI boot order\n"
1582 #ifdef CONFIG_EFI_HAVE_CAPSULE_SUPPORT
1583 "efidebug capsule update [-v] <capsule address>\n"
1584 " - process a capsule\n"
1585 "efidebug capsule disk-update\n"
1586 " - update a capsule from disk\n"
1587 "efidebug capsule show <capsule address>\n"
1588 " - show capsule information\n"
1589 "efidebug capsule result [<capsule result var>]\n"
1590 " - show a capsule update result\n"
1591 #ifdef CONFIG_EFI_ESRT
1592 "efidebug capsule esrt\n"
1593 " - print the ESRT\n"
1597 "efidebug drivers\n"
1598 " - show UEFI drivers\n"
1600 " - show UEFI handles\n"
1602 " - show loaded images\n"
1604 " - show UEFI memory map\n"
1606 " - show UEFI configuration tables\n"
1607 #ifdef CONFIG_EFI_BOOTMGR
1608 "efidebug test bootmgr\n"
1609 " - run simple bootmgr for test\n"
1611 "efidebug query [-nv][-bs][-rt][-at]\n"
1612 " - show size of UEFI variables store\n");
1615 efidebug, CONFIG_SYS_MAXARGS, 0, do_efidebug,
1616 "Configure UEFI environment",