1 // SPDX-License-Identifier: GPL-2.0+
3 * UEFI Shell-like command
5 * Copyright (c) 2018 AKASHI Takahiro, Linaro Limited
11 #include <efi_loader.h>
17 #include <linux/ctype.h>
19 #define BS systab.boottime
22 * efi_get_device_handle_info() - get information of UEFI device
24 * @handle: Handle of UEFI device
25 * @dev_path_text: Pointer to text of device path
26 * Return: 0 on success, -1 on failure
28 * Currently return a formatted text of device path.
30 static int efi_get_device_handle_info(efi_handle_t handle, u16 **dev_path_text)
32 struct efi_device_path *dp;
35 ret = EFI_CALL(BS->open_protocol(handle, &efi_guid_device_path,
36 (void **)&dp, NULL /* FIXME */, NULL,
37 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
38 if (ret == EFI_SUCCESS) {
39 *dev_path_text = efi_dp_str(dp);
46 #define EFI_HANDLE_WIDTH ((int)sizeof(efi_handle_t) * 2)
48 static const char spc[] = " ";
49 static const char sep[] = "================";
52 * do_efi_show_devices() - show UEFI devices
54 * @cmdtp: Command table
56 * @argc: Number of arguments
57 * @argv: Argument array
58 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
60 * Implement efidebug "devices" sub-command.
61 * Show all UEFI devices and their information.
63 static int do_efi_show_devices(cmd_tbl_t *cmdtp, int flag,
64 int argc, char * const argv[])
66 efi_handle_t *handles;
71 ret = EFI_CALL(efi_locate_handle_buffer(ALL_HANDLES, NULL, NULL,
73 if (ret != EFI_SUCCESS)
74 return CMD_RET_FAILURE;
77 return CMD_RET_SUCCESS;
79 printf("Device%.*s Device Path\n", EFI_HANDLE_WIDTH - 6, spc);
80 printf("%.*s ====================\n", EFI_HANDLE_WIDTH, sep);
81 for (i = 0; i < num; i++) {
82 if (!efi_get_device_handle_info(handles[i], &dev_path_text)) {
83 printf("%p %ls\n", handles[i], dev_path_text);
84 efi_free_pool(dev_path_text);
88 efi_free_pool(handles);
90 return CMD_RET_SUCCESS;
94 * efi_get_driver_handle_info() - get information of UEFI driver
96 * @handle: Handle of UEFI device
97 * @driver_name: Driver name
98 * @image_path: Pointer to text of device path
99 * Return: 0 on success, -1 on failure
101 * Currently return no useful information as all UEFI drivers are
104 static int efi_get_driver_handle_info(efi_handle_t handle, u16 **driver_name,
107 struct efi_handler *handler;
108 struct efi_loaded_image *image;
113 * TODO: support EFI_COMPONENT_NAME2_PROTOCOL
118 ret = efi_search_protocol(handle, &efi_guid_loaded_image, &handler);
119 if (ret != EFI_SUCCESS) {
124 image = handler->protocol_interface;
125 *image_path = efi_dp_str(image->file_path);
131 * do_efi_show_drivers() - show UEFI drivers
133 * @cmdtp: Command table
134 * @flag: Command flag
135 * @argc: Number of arguments
136 * @argv: Argument array
137 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
139 * Implement efidebug "drivers" sub-command.
140 * Show all UEFI drivers and their information.
142 static int do_efi_show_drivers(cmd_tbl_t *cmdtp, int flag,
143 int argc, char * const argv[])
145 efi_handle_t *handles;
147 u16 *driver_name, *image_path_text;
150 ret = EFI_CALL(efi_locate_handle_buffer(
151 BY_PROTOCOL, &efi_guid_driver_binding_protocol,
152 NULL, &num, &handles));
153 if (ret != EFI_SUCCESS)
154 return CMD_RET_FAILURE;
157 return CMD_RET_SUCCESS;
159 printf("Driver%.*s Name Image Path\n",
160 EFI_HANDLE_WIDTH - 6, spc);
161 printf("%.*s ==================== ====================\n",
162 EFI_HANDLE_WIDTH, sep);
163 for (i = 0; i < num; i++) {
164 if (!efi_get_driver_handle_info(handles[i], &driver_name,
167 printf("%p %-20ls %ls\n", handles[i],
168 driver_name, image_path_text);
170 printf("%p %-20ls <built-in>\n",
171 handles[i], driver_name);
172 efi_free_pool(driver_name);
173 efi_free_pool(image_path_text);
177 efi_free_pool(handles);
179 return CMD_RET_SUCCESS;
182 static const struct {
184 const efi_guid_t guid;
188 EFI_DEVICE_PATH_PROTOCOL_GUID,
191 "Device Path To Text",
192 EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID,
195 "Device Path Utilities",
196 EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID,
199 "Unicode Collation 2",
200 EFI_UNICODE_COLLATION_PROTOCOL2_GUID,
204 EFI_DRIVER_BINDING_PROTOCOL_GUID,
208 EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID,
211 "Simple Text Input Ex",
212 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID,
215 "Simple Text Output",
216 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID,
220 EFI_BLOCK_IO_PROTOCOL_GUID,
223 "Simple File System",
224 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID,
228 EFI_LOADED_IMAGE_PROTOCOL_GUID,
232 EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID,
236 EFI_HII_STRING_PROTOCOL_GUID,
240 EFI_HII_DATABASE_PROTOCOL_GUID,
243 "HII Config Routing",
244 EFI_HII_CONFIG_ROUTING_PROTOCOL_GUID,
248 EFI_LOAD_FILE2_PROTOCOL_GUID,
252 EFI_SIMPLE_NETWORK_PROTOCOL_GUID,
256 EFI_PXE_BASE_CODE_PROTOCOL_GUID,
258 /* Configuration table GUIDs */
272 "Runtime properties",
273 EFI_RT_PROPERTIES_TABLE_GUID,
278 * get_guid_text - get string of GUID
280 * Return description of GUID.
283 * Return: description of GUID or NULL
285 static const char *get_guid_text(const void *guid)
289 for (i = 0; i < ARRAY_SIZE(guid_list); i++) {
291 * As guidcmp uses memcmp() we can safely accept unaligned
294 if (!guidcmp(&guid_list[i].guid, guid))
295 return guid_list[i].text;
302 * do_efi_show_handles() - show UEFI handles
304 * @cmdtp: Command table
305 * @flag: Command flag
306 * @argc: Number of arguments
307 * @argv: Argument array
308 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
310 * Implement efidebug "dh" sub-command.
311 * Show all UEFI handles and their information, currently all protocols
314 static int do_efi_show_handles(cmd_tbl_t *cmdtp, int flag,
315 int argc, char * const argv[])
317 efi_handle_t *handles;
319 efi_uintn_t num, count, i, j;
320 const char *guid_text;
323 ret = EFI_CALL(efi_locate_handle_buffer(ALL_HANDLES, NULL, NULL,
325 if (ret != EFI_SUCCESS)
326 return CMD_RET_FAILURE;
329 return CMD_RET_SUCCESS;
331 printf("Handle%.*s Protocols\n", EFI_HANDLE_WIDTH - 6, spc);
332 printf("%.*s ====================\n", EFI_HANDLE_WIDTH, sep);
333 for (i = 0; i < num; i++) {
334 printf("%p", handles[i]);
335 ret = EFI_CALL(BS->protocols_per_handle(handles[i], &guid,
342 for (j = 0; j < count; j++) {
348 guid_text = get_guid_text(guid[j]);
352 printf("%pUl", guid[j]);
357 efi_free_pool(handles);
359 return CMD_RET_SUCCESS;
363 * do_efi_show_images() - show UEFI images
365 * @cmdtp: Command table
366 * @flag: Command flag
367 * @argc: Number of arguments
368 * @argv: Argument array
369 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
371 * Implement efidebug "images" sub-command.
372 * Show all UEFI loaded images and their information.
374 static int do_efi_show_images(cmd_tbl_t *cmdtp, int flag,
375 int argc, char * const argv[])
377 efi_print_image_infos(NULL);
379 return CMD_RET_SUCCESS;
382 static const char * const efi_mem_type_string[] = {
383 [EFI_RESERVED_MEMORY_TYPE] = "RESERVED",
384 [EFI_LOADER_CODE] = "LOADER CODE",
385 [EFI_LOADER_DATA] = "LOADER DATA",
386 [EFI_BOOT_SERVICES_CODE] = "BOOT CODE",
387 [EFI_BOOT_SERVICES_DATA] = "BOOT DATA",
388 [EFI_RUNTIME_SERVICES_CODE] = "RUNTIME CODE",
389 [EFI_RUNTIME_SERVICES_DATA] = "RUNTIME DATA",
390 [EFI_CONVENTIONAL_MEMORY] = "CONVENTIONAL",
391 [EFI_UNUSABLE_MEMORY] = "UNUSABLE MEM",
392 [EFI_ACPI_RECLAIM_MEMORY] = "ACPI RECLAIM MEM",
393 [EFI_ACPI_MEMORY_NVS] = "ACPI NVS",
394 [EFI_MMAP_IO] = "IO",
395 [EFI_MMAP_IO_PORT] = "IO PORT",
396 [EFI_PAL_CODE] = "PAL",
397 [EFI_PERSISTENT_MEMORY_TYPE] = "PERSISTENT",
400 static const struct efi_mem_attrs {
403 } efi_mem_attrs[] = {
404 {EFI_MEMORY_UC, "UC"},
405 {EFI_MEMORY_UC, "UC"},
406 {EFI_MEMORY_WC, "WC"},
407 {EFI_MEMORY_WT, "WT"},
408 {EFI_MEMORY_WB, "WB"},
409 {EFI_MEMORY_UCE, "UCE"},
410 {EFI_MEMORY_WP, "WP"},
411 {EFI_MEMORY_RP, "RP"},
412 {EFI_MEMORY_XP, "WP"},
413 {EFI_MEMORY_NV, "NV"},
414 {EFI_MEMORY_MORE_RELIABLE, "REL"},
415 {EFI_MEMORY_RO, "RO"},
416 {EFI_MEMORY_RUNTIME, "RT"},
420 * print_memory_attributes() - print memory map attributes
422 * @attributes: Attribute value
424 * Print memory map attributes
426 static void print_memory_attributes(u64 attributes)
430 for (sep = 0, i = 0; i < ARRAY_SIZE(efi_mem_attrs); i++)
431 if (attributes & efi_mem_attrs[i].bit) {
438 puts(efi_mem_attrs[i].text);
442 #define EFI_PHYS_ADDR_WIDTH (int)(sizeof(efi_physical_addr_t) * 2)
445 * do_efi_show_memmap() - show UEFI memory map
447 * @cmdtp: Command table
448 * @flag: Command flag
449 * @argc: Number of arguments
450 * @argv: Argument array
451 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
453 * Implement efidebug "memmap" sub-command.
454 * Show UEFI memory map.
456 static int do_efi_show_memmap(cmd_tbl_t *cmdtp, int flag,
457 int argc, char * const argv[])
459 struct efi_mem_desc *memmap = NULL, *map;
460 efi_uintn_t map_size = 0;
465 ret = efi_get_memory_map(&map_size, memmap, NULL, NULL, NULL);
466 if (ret == EFI_BUFFER_TOO_SMALL) {
467 map_size += sizeof(struct efi_mem_desc); /* for my own */
468 ret = efi_allocate_pool(EFI_LOADER_DATA, map_size,
470 if (ret != EFI_SUCCESS)
471 return CMD_RET_FAILURE;
472 ret = efi_get_memory_map(&map_size, memmap, NULL, NULL, NULL);
474 if (ret != EFI_SUCCESS) {
475 efi_free_pool(memmap);
476 return CMD_RET_FAILURE;
479 printf("Type Start%.*s End%.*s Attributes\n",
480 EFI_PHYS_ADDR_WIDTH - 5, spc, EFI_PHYS_ADDR_WIDTH - 3, spc);
481 printf("================ %.*s %.*s ==========\n",
482 EFI_PHYS_ADDR_WIDTH, sep, EFI_PHYS_ADDR_WIDTH, sep);
483 for (i = 0, map = memmap; i < map_size / sizeof(*map); map++, i++) {
484 if (map->type < ARRAY_SIZE(efi_mem_type_string))
485 type = efi_mem_type_string[map->type];
489 printf("%-16s %.*llx-%.*llx", type,
491 (u64)map_to_sysmem((void *)(uintptr_t)
492 map->physical_start),
494 (u64)map_to_sysmem((void *)(uintptr_t)
495 (map->physical_start +
496 map->num_pages * EFI_PAGE_SIZE)));
498 print_memory_attributes(map->attribute);
502 efi_free_pool(memmap);
504 return CMD_RET_SUCCESS;
508 * do_efi_show_tables() - show UEFI configuration tables
510 * @cmdtp: Command table
511 * @flag: Command flag
512 * @argc: Number of arguments
513 * @argv: Argument array
514 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
516 * Implement efidebug "tables" sub-command.
517 * Show UEFI configuration tables.
519 static int do_efi_show_tables(cmd_tbl_t *cmdtp, int flag,
520 int argc, char * const argv[])
523 const char *guid_str;
525 for (i = 0; i < systab.nr_tables; ++i) {
526 guid_str = get_guid_text(&systab.tables[i].guid);
529 printf("%pUl %s\n", &systab.tables[i].guid, guid_str);
532 return CMD_RET_SUCCESS;
536 * do_efi_boot_add() - set UEFI load option
538 * @cmdtp: Command table
539 * @flag: Command flag
540 * @argc: Number of arguments
541 * @argv: Argument array
542 * Return: CMD_RET_SUCCESS on success,
543 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
545 * Implement efidebug "boot add" sub-command. Create or change UEFI load option.
547 * efidebug boot add <id> <label> <interface> <devnum>[:<part>] <file> <options>
549 static int do_efi_boot_add(cmd_tbl_t *cmdtp, int flag,
550 int argc, char * const argv[])
555 u16 var_name16[9], *p;
557 size_t label_len, label_len16;
559 struct efi_device_path *device_path = NULL, *file_path = NULL;
560 struct efi_load_option lo;
564 int r = CMD_RET_SUCCESS;
566 if (argc < 6 || argc > 7)
567 return CMD_RET_USAGE;
569 id = (int)simple_strtoul(argv[1], &endp, 16);
570 if (*endp != '\0' || id > 0xffff)
571 return CMD_RET_USAGE;
573 sprintf(var_name, "Boot%04X", id);
575 utf8_utf16_strncpy(&p, var_name, 9);
577 guid = efi_global_variable_guid;
580 lo.attributes = LOAD_OPTION_ACTIVE; /* always ACTIVE */
583 label_len = strlen(argv[2]);
584 label_len16 = utf8_utf16_strnlen(argv[2], label_len);
585 label = malloc((label_len16 + 1) * sizeof(u16));
587 return CMD_RET_FAILURE;
588 lo.label = label; /* label will be changed below */
589 utf8_utf16_strncpy(&label, argv[2], label_len);
592 ret = efi_dp_from_name(argv[3], argv[4], argv[5], &device_path,
594 if (ret != EFI_SUCCESS) {
595 printf("Cannot create device path for \"%s %s\"\n",
600 lo.file_path = file_path;
601 lo.file_path_length = efi_dp_size(file_path)
602 + sizeof(struct efi_device_path); /* for END */
606 lo.optional_data = NULL;
608 lo.optional_data = (const u8 *)argv[6];
610 size = efi_serialize_load_option(&lo, (u8 **)&data);
616 ret = EFI_CALL(efi_set_variable(var_name16, &guid,
617 EFI_VARIABLE_NON_VOLATILE |
618 EFI_VARIABLE_BOOTSERVICE_ACCESS |
619 EFI_VARIABLE_RUNTIME_ACCESS,
621 if (ret != EFI_SUCCESS) {
622 printf("Cannot set %ls\n", var_name16);
627 efi_free_pool(device_path);
628 efi_free_pool(file_path);
635 * do_efi_boot_rm() - delete UEFI load options
637 * @cmdtp: Command table
638 * @flag: Command flag
639 * @argc: Number of arguments
640 * @argv: Argument array
641 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
643 * Implement efidebug "boot rm" sub-command.
644 * Delete UEFI load options.
646 * efidebug boot rm <id> ...
648 static int do_efi_boot_rm(cmd_tbl_t *cmdtp, int flag,
649 int argc, char * const argv[])
655 u16 var_name16[9], *p;
659 return CMD_RET_USAGE;
661 guid = efi_global_variable_guid;
662 for (i = 1; i < argc; i++, argv++) {
663 id = (int)simple_strtoul(argv[1], &endp, 16);
664 if (*endp != '\0' || id > 0xffff)
665 return CMD_RET_FAILURE;
667 sprintf(var_name, "Boot%04X", id);
669 utf8_utf16_strncpy(&p, var_name, 9);
671 ret = EFI_CALL(efi_set_variable(var_name16, &guid, 0, 0, NULL));
673 printf("Cannot remove %ls\n", var_name16);
674 return CMD_RET_FAILURE;
678 return CMD_RET_SUCCESS;
682 * show_efi_boot_opt_data() - dump UEFI load option
684 * @varname16: variable name
685 * @data: value of UEFI load option variable
686 * @size: size of the boot option
688 * Decode the value of UEFI load option variable and print information.
690 static void show_efi_boot_opt_data(u16 *varname16, void *data, size_t size)
692 struct efi_load_option lo;
694 size_t label_len16, label_len;
697 efi_deserialize_load_option(&lo, data);
699 label_len16 = u16_strlen(lo.label);
700 label_len = utf16_utf8_strnlen(lo.label, label_len16);
701 label = malloc(label_len + 1);
705 utf16_utf8_strncpy(&p, lo.label, label_len16);
707 printf("%ls:\nattributes: %c%c%c (0x%08x)\n",
710 lo.attributes & LOAD_OPTION_ACTIVE ? 'A' : '-',
711 /* FORCE RECONNECT */
712 lo.attributes & LOAD_OPTION_FORCE_RECONNECT ? 'R' : '-',
714 lo.attributes & LOAD_OPTION_HIDDEN ? 'H' : '-',
716 printf(" label: %s\n", label);
718 dp_str = efi_dp_str(lo.file_path);
719 printf(" file_path: %ls\n", dp_str);
720 efi_free_pool(dp_str);
723 print_hex_dump(" ", DUMP_PREFIX_OFFSET, 16, 1,
724 lo.optional_data, size + (u8 *)data -
725 (u8 *)lo.optional_data, true);
730 * show_efi_boot_opt() - dump UEFI load option
732 * @varname16: variable name
734 * Dump information defined by UEFI load option.
736 static void show_efi_boot_opt(u16 *varname16)
743 ret = EFI_CALL(efi_get_variable(varname16, &efi_global_variable_guid,
745 if (ret == EFI_BUFFER_TOO_SMALL) {
748 printf("ERROR: Out of memory\n");
751 ret = EFI_CALL(efi_get_variable(varname16,
752 &efi_global_variable_guid,
754 if (ret == EFI_SUCCESS)
755 show_efi_boot_opt_data(varname16, data, size);
760 static int u16_tohex(u16 c)
762 if (c >= '0' && c <= '9')
764 if (c >= 'A' && c <= 'F')
767 /* not hexadecimal */
772 * show_efi_boot_dump() - dump all UEFI load options
774 * @cmdtp: Command table
775 * @flag: Command flag
776 * @argc: Number of arguments
777 * @argv: Argument array
778 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
780 * Implement efidebug "boot dump" sub-command.
781 * Dump information of all UEFI load options defined.
785 static int do_efi_boot_dump(cmd_tbl_t *cmdtp, int flag,
786 int argc, char * const argv[])
789 efi_uintn_t buf_size, size;
795 return CMD_RET_USAGE;
798 var_name16 = malloc(buf_size);
800 return CMD_RET_FAILURE;
805 ret = EFI_CALL(efi_get_next_variable_name(&size, var_name16,
807 if (ret == EFI_NOT_FOUND)
809 if (ret == EFI_BUFFER_TOO_SMALL) {
811 p = realloc(var_name16, buf_size);
814 return CMD_RET_FAILURE;
817 ret = EFI_CALL(efi_get_next_variable_name(&size,
821 if (ret != EFI_SUCCESS) {
823 return CMD_RET_FAILURE;
826 if (memcmp(var_name16, L"Boot", 8))
829 for (id = 0, i = 0; i < 4; i++) {
830 digit = u16_tohex(var_name16[4 + i]);
833 id = (id << 4) + digit;
835 if (i == 4 && !var_name16[8])
836 show_efi_boot_opt(var_name16);
841 return CMD_RET_SUCCESS;
845 * show_efi_boot_order() - show order of UEFI load options
847 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
849 * Show order of UEFI load options defined by BootOrder variable.
851 static int show_efi_boot_order(void)
857 u16 var_name16[9], *p16;
859 struct efi_load_option lo;
861 size_t label_len16, label_len;
865 ret = EFI_CALL(efi_get_variable(L"BootOrder", &efi_global_variable_guid,
867 if (ret != EFI_BUFFER_TOO_SMALL) {
868 if (ret == EFI_NOT_FOUND) {
869 printf("BootOrder not defined\n");
870 return CMD_RET_SUCCESS;
872 return CMD_RET_FAILURE;
875 bootorder = malloc(size);
877 printf("ERROR: Out of memory\n");
878 return CMD_RET_FAILURE;
880 ret = EFI_CALL(efi_get_variable(L"BootOrder", &efi_global_variable_guid,
881 NULL, &size, bootorder));
882 if (ret != EFI_SUCCESS) {
883 ret = CMD_RET_FAILURE;
887 num = size / sizeof(u16);
888 for (i = 0; i < num; i++) {
889 sprintf(var_name, "Boot%04X", bootorder[i]);
891 utf8_utf16_strncpy(&p16, var_name, 9);
894 ret = EFI_CALL(efi_get_variable(var_name16,
895 &efi_global_variable_guid, NULL,
897 if (ret != EFI_BUFFER_TOO_SMALL) {
898 printf("%2d: %s: (not defined)\n", i + 1, var_name);
904 ret = CMD_RET_FAILURE;
907 ret = EFI_CALL(efi_get_variable(var_name16,
908 &efi_global_variable_guid, NULL,
910 if (ret != EFI_SUCCESS) {
912 ret = CMD_RET_FAILURE;
916 efi_deserialize_load_option(&lo, data);
918 label_len16 = u16_strlen(lo.label);
919 label_len = utf16_utf8_strnlen(lo.label, label_len16);
920 label = malloc(label_len + 1);
923 ret = CMD_RET_FAILURE;
927 utf16_utf8_strncpy(&p, lo.label, label_len16);
928 printf("%2d: %s: %s\n", i + 1, var_name, label);
940 * do_efi_boot_next() - manage UEFI BootNext variable
942 * @cmdtp: Command table
943 * @flag: Command flag
944 * @argc: Number of arguments
945 * @argv: Argument array
946 * Return: CMD_RET_SUCCESS on success,
947 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
949 * Implement efidebug "boot next" sub-command.
950 * Set BootNext variable.
952 * efidebug boot next <id>
954 static int do_efi_boot_next(cmd_tbl_t *cmdtp, int flag,
955 int argc, char * const argv[])
962 int r = CMD_RET_SUCCESS;
965 return CMD_RET_USAGE;
967 bootnext = (u16)simple_strtoul(argv[1], &endp, 16);
968 if (*endp != '\0' || bootnext > 0xffff) {
969 printf("invalid value: %s\n", argv[1]);
974 guid = efi_global_variable_guid;
976 ret = EFI_CALL(efi_set_variable(L"BootNext", &guid,
977 EFI_VARIABLE_NON_VOLATILE |
978 EFI_VARIABLE_BOOTSERVICE_ACCESS |
979 EFI_VARIABLE_RUNTIME_ACCESS,
981 if (ret != EFI_SUCCESS) {
982 printf("Cannot set BootNext\n");
990 * do_efi_boot_order() - manage UEFI BootOrder variable
992 * @cmdtp: Command table
993 * @flag: Command flag
994 * @argc: Number of arguments
995 * @argv: Argument array
996 * Return: CMD_RET_SUCCESS on success, CMD_RET_RET_FAILURE on failure
998 * Implement efidebug "boot order" sub-command.
999 * Show order of UEFI load options, or change it in BootOrder variable.
1001 * efidebug boot order [<id> ...]
1003 static int do_efi_boot_order(cmd_tbl_t *cmdtp, int flag,
1004 int argc, char * const argv[])
1006 u16 *bootorder = NULL;
1012 int r = CMD_RET_SUCCESS;
1015 return show_efi_boot_order();
1020 size = argc * sizeof(u16);
1021 bootorder = malloc(size);
1023 return CMD_RET_FAILURE;
1025 for (i = 0; i < argc; i++) {
1026 id = (int)simple_strtoul(argv[i], &endp, 16);
1027 if (*endp != '\0' || id > 0xffff) {
1028 printf("invalid value: %s\n", argv[i]);
1029 r = CMD_RET_FAILURE;
1033 bootorder[i] = (u16)id;
1036 guid = efi_global_variable_guid;
1037 ret = EFI_CALL(efi_set_variable(L"BootOrder", &guid,
1038 EFI_VARIABLE_NON_VOLATILE |
1039 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1040 EFI_VARIABLE_RUNTIME_ACCESS,
1042 if (ret != EFI_SUCCESS) {
1043 printf("Cannot set BootOrder\n");
1044 r = CMD_RET_FAILURE;
1052 static cmd_tbl_t cmd_efidebug_boot_sub[] = {
1053 U_BOOT_CMD_MKENT(add, CONFIG_SYS_MAXARGS, 1, do_efi_boot_add, "", ""),
1054 U_BOOT_CMD_MKENT(rm, CONFIG_SYS_MAXARGS, 1, do_efi_boot_rm, "", ""),
1055 U_BOOT_CMD_MKENT(dump, CONFIG_SYS_MAXARGS, 1, do_efi_boot_dump, "", ""),
1056 U_BOOT_CMD_MKENT(next, CONFIG_SYS_MAXARGS, 1, do_efi_boot_next, "", ""),
1057 U_BOOT_CMD_MKENT(order, CONFIG_SYS_MAXARGS, 1, do_efi_boot_order,
1062 * do_efi_boot_opt() - manage UEFI load options
1064 * @cmdtp: Command table
1065 * @flag: Command flag
1066 * @argc: Number of arguments
1067 * @argv: Argument array
1068 * Return: CMD_RET_SUCCESS on success,
1069 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1071 * Implement efidebug "boot" sub-command.
1073 static int do_efi_boot_opt(cmd_tbl_t *cmdtp, int flag,
1074 int argc, char * const argv[])
1079 return CMD_RET_USAGE;
1083 cp = find_cmd_tbl(argv[0], cmd_efidebug_boot_sub,
1084 ARRAY_SIZE(cmd_efidebug_boot_sub));
1086 return CMD_RET_USAGE;
1088 return cp->cmd(cmdtp, flag, argc, argv);
1092 * do_efi_test_bootmgr() - run simple bootmgr for test
1094 * @cmdtp: Command table
1095 * @flag: Command flag
1096 * @argc: Number of arguments
1097 * @argv: Argument array
1098 * Return: CMD_RET_SUCCESS on success,
1099 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1101 * Implement efidebug "test bootmgr" sub-command.
1102 * Run simple bootmgr for test.
1104 * efidebug test bootmgr
1106 static int do_efi_test_bootmgr(cmd_tbl_t *cmdtp, int flag,
1107 int argc, char * const argv[])
1110 efi_uintn_t exit_data_size = 0;
1111 u16 *exit_data = NULL;
1114 ret = efi_bootmgr_load(&image);
1115 printf("efi_bootmgr_load() returned: %ld\n", ret & ~EFI_ERROR_MASK);
1117 /* We call efi_start_image() even if error for test purpose. */
1118 ret = EFI_CALL(efi_start_image(image, &exit_data_size, &exit_data));
1119 printf("efi_start_image() returned: %ld\n", ret & ~EFI_ERROR_MASK);
1120 if (ret && exit_data)
1121 efi_free_pool(exit_data);
1125 return CMD_RET_SUCCESS;
1128 static cmd_tbl_t cmd_efidebug_test_sub[] = {
1129 U_BOOT_CMD_MKENT(bootmgr, CONFIG_SYS_MAXARGS, 1, do_efi_test_bootmgr,
1134 * do_efi_test() - manage UEFI load options
1136 * @cmdtp: Command table
1137 * @flag: Command flag
1138 * @argc: Number of arguments
1139 * @argv: Argument array
1140 * Return: CMD_RET_SUCCESS on success,
1141 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1143 * Implement efidebug "test" sub-command.
1145 static int do_efi_test(cmd_tbl_t *cmdtp, int flag,
1146 int argc, char * const argv[])
1151 return CMD_RET_USAGE;
1155 cp = find_cmd_tbl(argv[0], cmd_efidebug_test_sub,
1156 ARRAY_SIZE(cmd_efidebug_test_sub));
1158 return CMD_RET_USAGE;
1160 return cp->cmd(cmdtp, flag, argc, argv);
1163 static cmd_tbl_t cmd_efidebug_sub[] = {
1164 U_BOOT_CMD_MKENT(boot, CONFIG_SYS_MAXARGS, 1, do_efi_boot_opt, "", ""),
1165 U_BOOT_CMD_MKENT(devices, CONFIG_SYS_MAXARGS, 1, do_efi_show_devices,
1167 U_BOOT_CMD_MKENT(drivers, CONFIG_SYS_MAXARGS, 1, do_efi_show_drivers,
1169 U_BOOT_CMD_MKENT(dh, CONFIG_SYS_MAXARGS, 1, do_efi_show_handles,
1171 U_BOOT_CMD_MKENT(images, CONFIG_SYS_MAXARGS, 1, do_efi_show_images,
1173 U_BOOT_CMD_MKENT(memmap, CONFIG_SYS_MAXARGS, 1, do_efi_show_memmap,
1175 U_BOOT_CMD_MKENT(tables, CONFIG_SYS_MAXARGS, 1, do_efi_show_tables,
1177 U_BOOT_CMD_MKENT(test, CONFIG_SYS_MAXARGS, 1, do_efi_test,
1182 * do_efidebug() - display and configure UEFI environment
1184 * @cmdtp: Command table
1185 * @flag: Command flag
1186 * @argc: Number of arguments
1187 * @argv: Argument array
1188 * Return: CMD_RET_SUCCESS on success,
1189 * CMD_RET_USAGE or CMD_RET_RET_FAILURE on failure
1191 * Implement efidebug command which allows us to display and
1192 * configure UEFI environment.
1194 static int do_efidebug(cmd_tbl_t *cmdtp, int flag,
1195 int argc, char * const argv[])
1201 return CMD_RET_USAGE;
1205 /* Initialize UEFI drivers */
1206 r = efi_init_obj_list();
1207 if (r != EFI_SUCCESS) {
1208 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
1209 r & ~EFI_ERROR_MASK);
1210 return CMD_RET_FAILURE;
1213 cp = find_cmd_tbl(argv[0], cmd_efidebug_sub,
1214 ARRAY_SIZE(cmd_efidebug_sub));
1216 return CMD_RET_USAGE;
1218 return cp->cmd(cmdtp, flag, argc, argv);
1221 #ifdef CONFIG_SYS_LONGHELP
1222 static char efidebug_help_text[] =
1223 " - UEFI Shell-like interface to configure UEFI environment\n"
1225 "efidebug boot add <bootid> <label> <interface> <devnum>[:<part>] <file path> [<load options>]\n"
1226 " - set UEFI BootXXXX variable\n"
1227 " <load options> will be passed to UEFI application\n"
1228 "efidebug boot rm <bootid#1> [<bootid#2> [<bootid#3> [...]]]\n"
1229 " - delete UEFI BootXXXX variables\n"
1230 "efidebug boot dump\n"
1231 " - dump all UEFI BootXXXX variables\n"
1232 "efidebug boot next <bootid>\n"
1233 " - set UEFI BootNext variable\n"
1234 "efidebug boot order [<bootid#1> [<bootid#2> [<bootid#3> [...]]]]\n"
1235 " - set/show UEFI boot order\n"
1237 "efidebug devices\n"
1238 " - show UEFI devices\n"
1239 "efidebug drivers\n"
1240 " - show UEFI drivers\n"
1242 " - show UEFI handles\n"
1244 " - show loaded images\n"
1246 " - show UEFI memory map\n"
1248 " - show UEFI configuration tables\n"
1249 "efidebug test bootmgr\n"
1250 " - run simple bootmgr for test\n";
1254 efidebug, 10, 0, do_efidebug,
1255 "Configure UEFI environment",