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 | // SPDX-License-Identifier: GPL-2.0+ /* * Verified Boot for Embedded (VBE) command * * Copyright 2022 Google LLC * Written by Simon Glass <sjg@chromium.org> */ #include <bloblist.h> #include <bootmeth.h> #include <bootstd.h> #include <command.h> #include <spl.h> #include <vbe.h> static int do_vbe_list(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { vbe_list(); return 0; } static int do_vbe_select(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct bootstd_priv *std; struct udevice *dev; int ret; ret = bootstd_get_priv(&std); if (ret) return CMD_RET_FAILURE; if (argc < 2) { std->vbe_bootmeth = NULL; return 0; } if (vbe_find_by_any(argv[1], &dev)) return CMD_RET_FAILURE; std->vbe_bootmeth = dev; return 0; } static int do_vbe_info(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct bootstd_priv *std; char buf[256]; int ret, len; ret = bootstd_get_priv(&std); if (ret) return CMD_RET_FAILURE; if (!std->vbe_bootmeth) { printf("No VBE bootmeth selected\n"); return CMD_RET_FAILURE; } ret = bootmeth_get_state_desc(std->vbe_bootmeth, buf, sizeof(buf)); if (ret) { printf("Failed (err=%d)\n", ret); return CMD_RET_FAILURE; } len = strnlen(buf, sizeof(buf)); if (len >= sizeof(buf)) { printf("Buffer overflow\n"); return CMD_RET_FAILURE; } puts(buf); if (buf[len] != '\n') putc('\n'); return 0; } static int do_vbe_state(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct vbe_handoff *handoff = NULL; int i; if (IS_ENABLED(CONFIG_BLOBLIST)) { handoff = bloblist_find(BLOBLISTT_VBE, sizeof(struct vbe_handoff)); } if (!handoff) { printf("No VBE state\n"); return CMD_RET_FAILURE; } printf("Phases:"); for (i = PHASE_NONE; i < PHASE_COUNT; i++) { if (handoff->phases & (1 << i)) printf(" %s", xpl_name(i)); } if (!handoff->phases) printf(" (none)"); printf("\n"); return 0; } U_BOOT_LONGHELP(vbe, "list - list VBE bootmeths\n" "vbe select - select a VBE bootmeth by sequence or name\n" "vbe info - show information about a VBE bootmeth\n" "vbe state - show VBE state"); U_BOOT_CMD_WITH_SUBCMDS(vbe, "Verified Boot for Embedded", vbe_help_text, U_BOOT_SUBCMD_MKENT(list, 1, 1, do_vbe_list), U_BOOT_SUBCMD_MKENT(select, 2, 1, do_vbe_select), U_BOOT_SUBCMD_MKENT(state, 2, 1, do_vbe_state), U_BOOT_SUBCMD_MKENT(info, 2, 1, do_vbe_info)); |